home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.txt < prev    next >
Text File  |  2020-01-01  |  34MB  |  768,049 lines

  1. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!library.ucla.edu!ihnp4.ucsd.edu!munnari.oz.au!news.uwa.edu.au!newsman.csu.murdoch.edu.au!csuvax1!anson
  2. From: anson@csuvax1.csu.murdoch.edu.au (Binh Anson)
  3. Newsgroups: comp.protocols.kermit.misc
  4. Subject: [HELP] Slow Kermit Transfer ?!
  5. Date: 19 Sep 1994 11:09:16 GMT
  6. Lines: 13
  7.  
  8.  
  9. G'day,
  10.  
  11. I used Kermit 3.13 for my PC, my modem has a speed of 14.4 K, but I found that the downloading rate from the mainframe to my PC was still very slow! I tried Telix with SZ (Z-Modem Protocol), and it was very fast compared to Kermit. Is there a way to accelerate Kermit transfer ?
  12.  
  13. Thanks,
  14. Binh.
  15. --
  16. -------------------------------------------------------------------------
  17.   Binh Anson            FAX: (61-9) 244 4726 (Perth, Australia)
  18.                 Email: anson@csuvax1.murdoch.edu.au
  19. -------------------------------------------------------------------------
  20.         
  21. Path: news.columbia.edu!usenet
  22. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  23. Newsgroups: comp.protocols.kermit.misc
  24. Subject: Re: [HELP] Slow Kermit Transfer ?!
  25. Date: 19 Sep 1994 14:15:42 GMT
  26. Organization: Columbia University
  27. Lines: 153
  28. Distribution: World
  29. References: <35jrgsINNdq2@newsman.csu.murdoch.edu.au>
  30. Keywords: Kermit, Performance, Slow, Fast
  31.  
  32. In article <35jrgsINNdq2@newsman.csu.murdoch.edu.au>
  33. anson@csuvax1.csu.murdoch.edu.au (Binh Anson) writes:
  34. > I used Kermit 3.13 for my PC, my modem has a speed of 14.4 K, but I found
  35. > that the downloading rate from the mainframe to my PC was still very slow!
  36. > I tried Telix with SZ (Z-Modem Protocol), and it was very fast compared to
  37. > Kermit. Is there a way to accelerate Kermit transfer ?
  38. Yes.
  39.  
  40. But first, welcome to comp.protocols.kermit.misc.  This is the first
  41. day of operation of this unmoderated newsgroup.  I hope it will prove
  42. beneficial to all Kermit users.
  43.  
  44. To answer your question, somewhat longwindedly, since this Question is
  45. Asked so Frequently :-) ...
  46.  
  47. Zmodem is optimized for speed on the assumption that it has a clear 8-bit
  48. transparent channel with no blockages (small buffers, etc), and so, out of
  49. the box, when it works it goes fast.  The tradeoff is that it often does
  50. not work at all, in which case you have to configure it in various ways --
  51. escaping of control characters, changing window size, etc.  In some cases
  52. it can't be made to work at all, either because of the nature of the
  53. connection, or because of one or both of the computers on the two ends.
  54.  
  55. Kermit, on the other hand, is configured to work -- i.e. transfer files --
  56. out of the box, even under hostile conditions.  By default, it does not 
  57. assume that control characters pass through transparently, nor that large
  58. buffers are available.  It does not even assume a full-duplex connection.
  59. The tradeoff is speed.
  60.  
  61. In a perfect world, there would be no tradeoffs, but the world is far from
  62. perfect.  7-bit transmission is still extremely common, small buffers are
  63. very common, even in modern terminal servers and other communications
  64. processors, flow control is rarely implemented correctly and effectively,
  65. telephone lines are still noisy, and we still have a bewildering array
  66. of communication methods needed for accessing different kinds of hosts and
  67. services.  Most PCs are still shipped with non-buffered UARTs; many PCs
  68. have interrupt conflicts, noisy buses, etc; many modern modems are buggy.
  69. The list goes on.  This is by way of demonstrating that Kermit's default
  70. tuning is not crazy, and goes a long way towards explaining its justified
  71. reputation for dependability.
  72.  
  73. Unfortunately, because of the tradeoffs necessary to achieve its
  74. reliability, Kermit has a reputation for slowness:
  75.  
  76.   Yes, Kermit transfers are slow if you use the default tuning.
  77.  
  78. However, you can make Kermit go as fast the communication path will permit
  79. by changing a few parameters.  But first, here are some general principles
  80. that apply to all communications software:
  81.  
  82.  1. Ensure that you have an effective means of flow control enabled at
  83.     every juncture along the communication path (this applies to any file
  84.     transfer protocol).  For example, when using high-speed,
  85.     error-correcting modems, you should use some form of hardware flow
  86.     control, most commonly RTS/CTS.  You have to tell the software to use
  87.     it, AND you have to tell the modem to use it too -- if the flow
  88.     control methods of the PC and the modem do not agree, then data will
  89.     be lost.
  90.  
  91.  2. If your modem is capable of data compression, use it.  Fix the
  92.     interface speed of the software to four times the connection speed if
  93.     possible -- e.g. for a V.32bis 14400 bps connection, use an interface
  94.     speed of 57600, or else the modem's compression capacity is likely to
  95.     be wasted.
  96.  
  97.  3. On network connections (e.g. TCP/IP), it is usually best to turn off
  98.     flow control entirely, because the underlying networking method
  99.     supplies fully effective flow control.
  100.  
  101. Now, to make Kermit go fast, follow these steps:
  102.  
  103.  1. Use real Kermit software, not the many shareware and commercial
  104.     packages, most of whose Kermit protocol implementations lack the
  105.     performance features listed below and/or the means for the user to
  106.     control them.
  107.  
  108.  2. Use long packets.  Kermit's default packet length is 94.  You can
  109.     increase it to a theoretical maximum of 9024.  Give the following
  110.     command to the file receiver:
  111.  
  112.       SET RECEIVE PACKET-LENGTH 2000  ; (or other length)
  113.  
  114.     The longer you make the packets, the more efficient the file transfer
  115.     will be... IF IT WORKS.  If you make packets longer than some buffer
  116.     somewhere along the line, and effective flow control is lacking, the
  117.     transfer might not work.  Also, the longer the packet, the greater
  118.     the chance it will be hit by noise, and the longer it takes to
  119.     retransmit.
  120.  
  121.  3. On full duplex connections, use sliding windows.  Sliding windows
  122.     allow packets to be transmitted in a continuous stream, rather than
  123.     "stop and wait" style.  The command is:
  124.  
  125.       SET WINDOW 4 ; (or other number)
  126.  
  127.     The maximum is 32 (or less, depending on the implementation).  Give
  128.     this command to *both* Kermit programs.
  129.  
  130. For text files and uncompressed binary files, this should give you very
  131. good performance -- efficiencies in the 85%-100% range.  For compressed
  132. files, and certain other types of binary files, you can squeeze out
  133. another 20-25% efficiency by telling Kermit not to prefix a given list of
  134. control characters.  A typical sequence might be:
  135.  
  136.   SET CONTROL UNPREFIX ALL  ;  Unprefix all control characters.
  137.   SET CONTROL PREFIX 0 1 13 129 141 ...  ; Add back prefixes for these.
  138.  
  139. This requires a lot of trial and error because there is no way that a
  140. communication software program can know what characters are safe and
  141. which ones are not on a particular connection.  For example, you might be
  142. going through an X.25 PAD where Ctrl-P will pop you back to the PAD
  143. prompt.  Or you might be going through a TELNET terminal server where
  144. Ctrl-] or Ctrl-^ will pop you back to the terminal server prompt.  Or the
  145. connection might be using Xon/Xoff flow control, and sending Ctrl-S as a
  146. data character might freeze the connection.
  147.  
  148. If you take all of these steps, using optimal packet lengths, window
  149. sizes, and unprefixing, you should achieve transfer rates comparable to,
  150. and often better than, the Zmodem implementations that you find in Telix,
  151. Procomm, and similar shareware and commercial packages; for example, on a
  152. V.32bis/V.42/V.42bis connection, RTS/CTS flow control, no parity, 57600
  153. bps interface speed:
  154.  
  155.   Typical text files:        3500 cps (characters per second)
  156.   Uncompressed binary files: 2400 cps (e.g. PC KERMIT.EXE)
  157.   Compressed files:          1600 cps (e.g. ZIP files)
  158.  
  159. These figures come from Kermit News #5, June 1993, which is available via
  160. anonymous ftp from kermit.columbia.edu, directory kermit/e, file
  161. newsn5.txt (ASCII) or newsn5.ps (PostScript).  Also see newsn4.txt (.ps)
  162. for a detailed discussion of long packets and sliding windows.
  163.  
  164. Kermit software is available via anonymous ftp to kermit.columbia.edu
  165. [128.59.39.2], directory kermit and its subdirectories.  There are
  166. literally hundreds of different Kermit programs for *almost* every machine
  167. and operating system imaginable.  The most widely used Kermit programs
  168. are:
  169.  
  170.  . MS-DOS Kermit 3.13 for DOS and Windows.
  171.    No, this is not a native Windows application, but yes, this
  172.    is the software we recommend for Windows.
  173.    File: kermit/bin/msvib.zip.
  174.  
  175.  . C-Kermit 5A(189) for UNIX, VMS, OS/2, AOS/VS, the Commodore Amiga, etc.
  176.    UNIX: kermit/bin/cku190.tar.Z.
  177.    VMS: Get kermit/b/ckvaaa.hlp, read it, take it from there.
  178.    Others: Get kermit/b/ckaaaa.hlp, read it, take it from there.
  179.  
  180.  . IBM Mainframe Kermit-370 for VM/CMS, MVS/TSO, CICS, and MUSIC.
  181.    kermit/b/ik*.*.
  182.  
  183. - Frank
  184.  
  185. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!vixen.cso.uiuc.edu!adam
  186. From: adam@symcom.math.uiuc.edu (Adam H. Lewenberg)
  187. Newsgroups: comp.protocols.kermit.misc
  188. Subject: FILE COLLISION UPDATE problem
  189. Date: 19 Sep 1994 12:18:43 GMT
  190. Organization: Math Dept., University of Illinois at Urbana/Champaign
  191. Lines: 23
  192. Distribution: na
  193.  
  194. I am having a problem with the SET FILE COLLISION UPDATE setting.  I
  195. send files from my home computer (OS/2 CKermit 5A(160) alpha.16) to
  196. the computer at school (Ckermit 5A(188)) with the FILE COLLISION set
  197. to UPDATE. Thus, I would expect that only those files on my home
  198. commputer that are newer than the files on the school computer will be
  199. transfered. And that is what happens...mostly. There are a few files
  200. that constantly get transfered. Although I have not touched the
  201. files on either system for months, everytime I run the transfer script
  202. these few files get transfered. I have checked the dates on both
  203. machines and they are identical, at least to the minute. Perhaps the
  204. seconds are different? 
  205.  
  206. In any case, one way around this that would even be useful in other
  207. situations would be a FILE COLLISION setting which only transfered
  208. files that were newer by a certain amount. For example, if one issued
  209. the command SET FILE COLLISION UPDATEBY 60, then only those files that
  210. were newer by at least one hour would be transfered. Comments?
  211.  
  212.                      Adam H. Lewenberg adam@math.uiuc.edu
  213. -- 
  214. University of Illinois at Champaign-Urbana, Dept. Of Mathematics
  215. INTERNET: adam@math.uiuc.edu   or    a-lewenberg@uiuc.edu
  216.  
  217. Path: news.columbia.edu!usenet
  218. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  219. Newsgroups: comp.protocols.kermit.misc
  220. Subject: Re: FILE COLLISION UPDATE problem
  221. Date: 19 Sep 1994 14:23:34 GMT
  222. Organization: Columbia University
  223. Lines: 24
  224. Distribution: World
  225. References: <35jvj3$b0u@vixen.cso.uiuc.edu>
  226.  
  227. In article <35jvj3$b0u@vixen.cso.uiuc.edu> adam@symcom.math.uiuc.edu (Adam H.  
  228. Lewenberg) writes:
  229. > I am having a problem with the SET FILE COLLISION UPDATE setting.  I
  230. > send files from my home computer (OS/2 CKermit 5A(160) alpha.16) to
  231. > the computer at school (Ckermit 5A(188)) with the FILE COLLISION set
  232. > to UPDATE. ...
  233. >
  234. An OS/2 FAT file system records the time to a precision of 2 seconds,
  235. whereas most other file systems record the time to a precision of
  236. one second or less.  This the file times for the same file can differ
  237. by one second.  In this case, Kermit takes the conservative approach
  238. and transfers the file.  Workarounds: (1) "touch" the file on the
  239. receiving end to force it to be newer (not recommended); (2) use an
  240. HPFS file system instead of a FAT file system.
  241.  
  242. These comments apply also to DOS and Windows, but suggestion (2)
  243. does not apply :-(.
  244.  
  245. Also, the latest version of OS/2 C-Kermit is 5A(190) Beta.23,
  246. available via anonymous ftp from kermit.columbia.edu, directory
  247. kermit/test/bin, binary mode, file cko190.zip.  It works a lot better
  248. than the earlier Alpha versions.
  249.  
  250. - Frank
  251.  
  252. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!zip.eecs.umich.edu!gmi.edu!ellis
  253. From: ellis@nova.gmi.edu (R. Stewart Ellis)
  254. Newsgroups: comp.protocols.kermit.misc
  255. Subject: Re: FTP for Current MS-DOS Kermit?
  256. Date: 19 Sep 94 01:25:10 GMT
  257. Organization: GMI Engineering&Management Institute, Flint, MI
  258. Lines: 29
  259. References: <35i2ta$qgp@sundog.tiac.net>
  260.  
  261. conover@max.tiac.net (Harry H Conover) writes:
  262.  
  263.  
  264.  >I'm current using Kermit as my primary communications package, as
  265.  >I have for the past 10 years or so.  So far, the program has survived
  266.  >an IBM XT, '286, '386' and '486, and is now going strong on the 
  267.  >Internet.  Sadly, it lacks certain features such as automatic
  268.  >re-dial, the ability to automatically log-off on completion of
  269.  >batch file transfers, etc.  
  270.  
  271.  >It identifies itself as: IBM PC KERMIT-MS V2.28....
  272.  
  273.  >Can anyone point me to an FTP site that has a more recent MS-DOS
  274.  >version available?
  275.  
  276.  >Thanks.   
  277.  
  278.  >                              Harry C.
  279.  
  280.  
  281. The regular place for kermit the last time I checked was
  282. watsun.cc.columbia.edu.  Oak.oakland.edu is the best general PC place.  The
  283. latest I know of is 3.13 with a couple of patches.
  284.  
  285. -- 
  286.   R.Stewart(Stew) Ellis, Assoc.Prof., (Off)313-762-9765   ___________________
  287.   Humanities & Social Science,  GMI Eng.& Mgmt. Inst.    /   _____  ______ 
  288.   Flint, MI 48504      ellis@nova.gmi.edu               /        / /  /  / /
  289.   Gopher,chimera,nn,tin,jove,modems, free code is best!/________/ /  /  / /
  290.  
  291. Path: news.columbia.edu!usenet
  292. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  293. Newsgroups: comp.protocols.kermit.misc
  294. Subject: Re: FTP for Current MS-DOS Kermit?
  295. Date: 19 Sep 1994 14:30:48 GMT
  296. Organization: Columbia University
  297. Lines: 43
  298. Distribution: World
  299. References: <ellis.779937910@gmi.edu>
  300.  
  301. In article <ellis.779937910@gmi.edu> ellis@nova.gmi.edu (R. Stewart Ellis)  
  302. writes:
  303. > conover@max.tiac.net (Harry H Conover) writes:
  304. >  >I'm current using Kermit as my primary communications package, as
  305. >  >I have for the past 10 years or so.  So far, the program has survived
  306. >  >an IBM XT, '286, '386' and '486, and is now going strong on the 
  307. >  >Internet.  Sadly, it lacks certain features such as automatic
  308. >  >re-dial
  309. >
  310. No it doesn't.  The dialing scripts that come with MS-DOS Kermit
  311. automatically redial for you.
  312.  
  313. >  >... the ability to automatically log-off on completion of
  314. >  >batch file transfers, etc.  
  315. Not at all.  Please read the documentation.  MS-DOS Kermit includes a
  316. script programming language that lets you set up any automated procedures
  317. you like.
  318.  
  319. >  >It identifies itself as: IBM PC KERMIT-MS V2.28....
  320. Well...  That would explain it.  Version 2.28 dates from 1986.  We've
  321. been working on it for a solid eight years since then!  (Has it been
  322. eight years already ???!)  The current version is 3.13, and 3.14 will
  323. be announced for beta testing soon.  Watch comp.protocols.kermit.announce.
  324.  
  325. >  >Can anyone point me to an FTP site that has a more recent MS-DOS
  326. >  >version available?
  327. >  >                              Harry C.
  328. > The regular place for kermit the last time I checked was
  329. > watsun.cc.columbia.edu.  Oak.oakland.edu is the best general PC place.  The
  330. > latest I know of is 3.13 with a couple of patches.
  331. To clarify, the ONE AND ONLY source for Kermit software on the Internet
  332. is kermit.columbia.edu (which, indeed, at the present, happens to be the
  333. same as watus.cc.columbia.edu, but might not always be, so use the
  334. kermit name to be safe).  Please don't pick up Kermit from other sites
  335. because we can't support it that way -- we don't know where it's been,
  336. what's been done to it, how old it is, whether the file sets are complete,
  337. etc etc.
  338.  
  339. - Frank
  340.  
  341. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!malgudi.oar.net!swiss.ans.net!gatech!udel!MathWorks.Com!news.kei.com!travelers.mail.cornell.edu!tuba.cit.cornell.edu!crux3!rf13
  342. From: rf13@crux3.cit.cornell.edu (Ramin Farzaneh)
  343. Newsgroups: comp.protocols.kermit.misc
  344. Subject: Help Request: Download Speed
  345. Date: 19 Sep 1994 03:39:19 GMT
  346. Organization: Cornell University
  347. Lines: 33
  348.  
  349. I have been trying to improve the file transfer speed I get while
  350. downloading from a workstation to my PC using C Kermit and MS Kermit.
  351. The highest rate that I've gotten for a .zip file has been ~1320 cps 
  352. (I'm using a USR 14.4K modem which achieves ~1600cps with zmodem).
  353. Here's  what I've done so far:
  354.  
  355. - Played around with the packet length and window parameters.  By
  356.   trial and error I found that 4 sliding windows and a packet length
  357.   of around 900 bytes give me the best speed with the least number
  358.   of retries.
  359.  
  360. - Disabled the modem's compression.  This improved the speed by about
  361.   50 cps.
  362.  
  363. - Downloaded several differend types of files (with no modem compression
  364.   and 'set file type binary' given to both Kermits) and measured the cps.
  365.   I got ~1300 or a .zip file, ~1550 for an ASCII file, and ~1150 for a unix 
  366.   executable.
  367.  
  368. - By looking at Kermit's statistics (show statistics in MS Kermit) it
  369.   turned out that while the serial port speed is the same in each case
  370.   (~16900 bits/sec), the number of characters actually sent is proportionally
  371.   higher for the .zip file compared to the text file.  So the ratio
  372.   (chars sent/file size) is ~93% for text and ~75% for a .zip file (and
  373.   even lower for the unix executable).
  374.  
  375. So how can I improve the efficiency?  I looks like Kermit is applying
  376. some sort of compression (or maybe binary->ASCII encoding? or both?) that is 
  377. inflating the size of .zip files. Is this the case, and if so how
  378. can I turn it off?  Is this a bug or a feature? :-)
  379.  
  380. Thanks,
  381. Ramin
  382.  
  383. Path: news.columbia.edu!usenet
  384. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  385. Newsgroups: comp.protocols.kermit.misc
  386. Subject: Re: Help Request: Download Speed
  387. Date: 19 Sep 1994 14:40:34 GMT
  388. Organization: Columbia University
  389. Lines: 41
  390. Distribution: World
  391. References: <35j157$23n@tuba.cit.cornell.edu>
  392. Keywords: Performance, Fast, Slow, Speed
  393.  
  394. In article <35j157$23n@tuba.cit.cornell.edu> rf13@crux3.cit.cornell.edu  
  395. (Ramin Farzaneh) writes:
  396. > I have been trying to improve the file transfer speed I get while
  397. > downloading from a workstation to my PC using C Kermit and MS Kermit.
  398. > The highest rate that I've gotten for a .zip file has been ~1320 cps 
  399. > (I'm using a USR 14.4K modem which achieves ~1600cps with zmodem).
  400. > Here's  what I've done so far:
  401. > ...
  402. > - By looking at Kermit's statistics (show statistics in MS Kermit) it
  403. >   turned out that while the serial port speed is the same in each case
  404. >   (~16900 bits/sec), the number of characters actually sent is 
  405. >   proportionally higher for the .zip file compared to the text file.
  406. >   So the ratio (chars sent/file size) is ~93% for text and ~75% for a
  407. >  .zip file (and even lower for the unix executable).
  408. See my earlier posting.  You have got the packet-length and window-size
  409. business right, but zip files and other forms of compressed files have
  410. a much higher proportion of control characters than do other types of files,
  411. and therefore incur a higher control-character-prefixing penalty, and so
  412. are transferred less efficiently.  Also note that since these files are
  413. already compressed, Kermit can't compress them any further, and neither
  414. can your modem.  However, in my experience, turning off Kermit's 
  415. compression (SET REPEAT COUNTS OFF) or the modem's results in only a
  416. marginal improvement.
  417.  
  418. The big gain comes in (a) (obviously) making sure you have an 8-bit
  419. no-parity connection (you probably do), and (b) telling Kermit to "unprefix"
  420. most control characters, i.e. all the ones that are safe to unprefix.
  421.  
  422. C-Kermit 5A(189) or later and MS-DOS Kermit 3.13 or later are required
  423. for control-character unprefixing.  See the CKCKER.UPD file that comes
  424. with C-Kermit or the KERMIT.UPD file that comes with MS-DOS Kermit for
  425. details about this feature.
  426.  
  427. For more detailed discussions of Kermit file transfer performance, please
  428. read the manuals: "Using MS-DOS Kermit" and/or "Using C-Kermit", and the
  429. articles on performance in Kermit News numbers 4 and 5, available via
  430. anonymous ftp from kermit.columbia.edu, directory kermit/b, files
  431. newsn4.txt and newsn5.txt (ASCII, also .ps for PostScript).
  432.  
  433. - Frank
  434.  
  435. Newsgroups: comp.protocols.kermit.misc
  436. Path: news.columbia.edu!panix!zip.eecs.umich.edu!yeshua.marcam.com!news.kei.com!eff!news.duke.edu!news-feed-1.peachnet.edu!gatech!howland.reston.ans.net!EU.net!sunic!news.funet.fi!cs.joensuu.fi!news
  437. From: hounsell@cc.joensuu.fi (Paul Hounsell)
  438. Subject: Is anybody working on kermit for windows?
  439. Sender: news@cs.joensuu.fi
  440. Organization: Joensuu University Language Center
  441. Date: Mon, 19 Sep 1994 12:23:08 GMT
  442. Lines: 17
  443.  
  444.     Hello developers
  445.  
  446.     I would like to know if anybody is working on kermit to run under windows
  447. winsocket. I really like kermit for telnet and terminal emulation so I would like to see
  448. version  3.13 done as a windows program. Is there anybody out there working on it? Within
  449. a year or so DOS will be obselete with the arrival of windows 4.1. I know most people will
  450. not upgrade at once but DOSs days are numbered.  Most versions kermit for windows that I 
  451. have seen seem to be very old versions of kermit and thus suffer in many areas.
  452.  
  453.     TIA
  454.     Paul
  455. =======================================================================
  456.  Paul Hounsell                      |disclaimer: 
  457.  Joensuu University Language Center |   Of course I have opinions, I am 
  458.  Joensuu Finland                    |   just not responsible for them
  459.  hounsell@cc.joensuu.fi             |   and neither is anybody else!
  460. =======================================================================
  461.  
  462. Path: news.columbia.edu!usenet
  463. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  464. Newsgroups: comp.protocols.kermit.misc
  465. Subject: Re: Is anybody working on kermit for windows?
  466. Date: 19 Sep 1994 14:47:37 GMT
  467. Organization: Columbia University
  468. Lines: 35
  469. Distribution: World
  470. References: <1994Sep19.122308.19077@cs.joensuu.fi>
  471.  
  472. In article <1994Sep19.122308.19077@cs.joensuu.fi> hounsell@cc.joensuu.fi
  473. (Paul Hounsell) writes:
  474. > I would like to know if anybody is working on kermit to run under windows
  475. > winsocket. I really like kermit for telnet and terminal emulation so I
  476. > would like to see version 3.13 done as a windows program.
  477. >
  478. Wouldn't everybody!
  479.  
  480. > Is there anybody out there working on it? Within a year or so DOS will be
  481. > obselete with the arrival of windows 4.1.
  482. >
  483. Maybe, maybe not.
  484.  
  485. > I know most people will not upgrade at once but DOSs
  486. > days are numbered.  Most versions kermit for windows that I have seen seem
  487. > to be very old versions of kermit and thus suffer in many areas.
  488. That's correct.  We don't recommend any of them.  They are mainly
  489. "proof of concept" exercises with minimal functionality, and not well
  490. supported -- well... not supported at all.
  491.  
  492. We, the Kermit developers, intend to produce a fully functional version of
  493. Kermit for Windows.  In fact, we have always intended to do this.  It is
  494. very high on our list of things to do.  It is also a VERY BIG JOB, and
  495. therefore keeps getting put off.
  496.  
  497. Meanwhile, we recommend using MS-DOS Kermit in Windows.  We support 100%.
  498. It works fine, in a window, it can use all sorts of networking methods,
  499. including its own built-in TCP/IP stack, but no, it does not work with
  500. Winsock because Winsock is only available to fully 100% native Windows apps.
  501.  
  502. There may be some new developments in this area in the next few months.
  503. Watch this space for announcements.
  504.  
  505. - Frank
  506.  
  507. Path: news.columbia.edu!panix!zip.eecs.umich.edu!newsxfer.itd.umich.edu!jobone!news1.oakland.edu!rcsuna.gmr.com!ilium!heifetz.msen.com!jamaican
  508. From: jamaican@garnet.msen.com (Dwight Hugget)
  509. Newsgroups: comp.protocols.kermit.misc
  510. Subject: KERMIT & PCMCIA
  511. Date: 16 Sep 1994 18:12:20 GMT
  512. Organization: Msen, Inc. -- Ann Arbor, MI (account info: +1 313 998-4562)
  513. Lines: 27
  514.  
  515.  
  516.  
  517. Has anyone ever configured Intel's 14.4 fax/data PCMCIA card to work with
  518. kermit ???
  519. If so, how do you handle the setting of the COMn port while trying to 
  520. use IRQ5???
  521.  
  522. Is there any tweaking necessary in any of the .SCR files and which do
  523. I use.
  524. So far, I've tried HAYES and the SPORT ones. I don't know whatelse
  525. to do.
  526.  
  527. I get into terminal mode and he (the PCMCIA card) wont even speak
  528. to me in AT.
  529.  
  530. thanks for any hints.
  531.  
  532. baffled
  533. dwight
  534. --
  535. =======================================================================
  536. =             "Artist seeks Boss with vision impairment."             =
  537. =  0/       __o                                              ,,,      = 
  538. = <|      _`\< _                                            (o o)     =
  539. = / >  --(_)/ (_)------- jamaican@garnet.msen.com -------ooO-(_)-Ooo- = 
  540. =======================================================================
  541.  
  542. Newsgroups: comp.protocols.kermit.misc
  543. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!charnel.ecst.csuchico.edu!olivea!decwrl!decwrl!netcomsv!medicus!bill
  544. From: bill@medicus.com (Bill Chinn)
  545. Subject: Kermit for Windows/NT
  546. Organization: Medicus Clinical Data Systems, Alameda, CA
  547. Date: Mon, 19 Sep 1994 07:14:45 GMT
  548. Lines: 14
  549.  
  550. Hello,
  551.  
  552. I was wondering if anyone is working on porting Kermit to
  553. Windows/NT?  
  554.  
  555. If anyone is working on an NT port, I know some people here
  556. who would love to beta test it.
  557.  
  558. I'm also wondering if anyone is planning on adding support 
  559. for the new Microsoft TCP/IP stack into Kermit.
  560.  
  561. Thanks for any info and if anyone else is interested in this
  562. info I'll post a summary of whatever info I get.
  563. --Bill
  564.  
  565. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  566. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  567. Newsgroups: comp.protocols.kermit.misc
  568. Subject: Re: Kermit for Windows/NT
  569. Date: 19 Sep 1994 12:28:18 GMT
  570. Organization: Columbia University
  571. Lines: 28
  572. References: <1994Sep19.071445.15802@medicus.com>
  573.  
  574. In article <1994Sep19.071445.15802@medicus.com>,
  575. Bill Chinn <bill@medicus.com> wrote:
  576. >Hello,
  577. >
  578. >I was wondering if anyone is working on porting Kermit to
  579. >Windows/NT?  
  580.  
  581. Currently, we recommend using the 16-bit OS/2 version on Windows NT.
  582.  
  583. >If anyone is working on an NT port, I know some people here
  584. >who would love to beta test it.
  585.  
  586. There are plans to create an NT version at some point in the future.
  587.  
  588. >I'm also wondering if anyone is planning on adding support 
  589. >for the new Microsoft TCP/IP stack into Kermit.
  590.  
  591. When a NT version is created we will support the standard TCP/IP stacks.
  592.  
  593. >Thanks for any info and if anyone else is interested in this
  594. >info I'll post a summary of whatever info I get.
  595. >--Bill
  596.  
  597.  
  598. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  599. "C-Kermit: available on more platforms than any other communications software."
  600. "Kermit FTP: sending files whenever and wherever they are needed."
  601. OS/2 version 189 via ftp from watsun.cc.columbia.edu /kermit/bin/ckoker.zip 
  602.  
  603. Path: news.columbia.edu!usenet
  604. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  605. Newsgroups: comp.protocols.kermit.misc
  606. Subject: C-Kermit OS/2 with TCP/IP
  607. Date: 19 Sep 1994 15:47:35 GMT
  608. Organization: Columbia University
  609. Lines: 37
  610. Distribution: World
  611. Keywords: OS/2, TCP/IP
  612.  
  613. Date: Mon, 19 Sep 94 11:13:01 EDT
  614. From: Frank da Cruz <fdc@watsun.cc.columbia.edu>
  615. To: "Bryan H. Hodgson" <0003627745@mcimail.com>
  616. Subject: Re: CKermit-OS2 w/TCP-IP
  617. In-Reply-To: Your message of Mon, 19 Sep 94 09:20 EST
  618.  
  619. > I've got PC/Kermit working very successfully over TCP/IP to connect to
  620. > our Unix boxes while users are simultaneously logged onto Novell
  621. > servers.  Great stuff.
  622. >  
  623. Yup, thanks.
  624.  
  625. > Now I'm trying to solve the same problem with OS2/CKermit.  And I'm
  626. > trying to avoid springing for IBM's OS/2 product.  Are you aware of
  627. > shareware or public domain alternatives for OS/2 TCP/IP drivers that
  628. > will work with CKermit?
  629. >  
  630. Nope.  This question is asked about 100 times a day on the OS/2
  631. newsgroups, and the answer is always no.  A number of commercial TCP/IP
  632. products are available, and OS/2 C-Kermit works with most of them.
  633.  
  634. C-Kermit 5A(190) Beta works with the following:
  635.  
  636.   IBM TCP/IP 1.2.1 (C-Kermit edit 189 and later)
  637.   IBM TCP/IP 2.0 (edit 190)
  638.   Essex Systems TCP/2 (edit 189 and later)
  639.   FTP Software's PC/TCP for OS/2 (edit 190)
  640.   IP-Switch Vantage IP (edit 190)
  641.  
  642. It does not work with Novell LAN Workplace for OS/2, although there is
  643. some slight chance that we might be able to add this support before
  644. leaving Beta.
  645.  
  646. anonymous ftp to kermit.columbia.edu, directory kermit/test/bin, binary
  647. mode, file cko190.zip.  Unzip and run the install script (INSTALL.CMD).
  648.  
  649. - Frank
  650.  
  651. Newsgroups: comp.protocols.kermit.misc
  652. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!vixen.cso.uiuc.edu!uchinews!iitmax!thssjyh
  653. From: thssjyh@iitmax.iit.edu (Jianqing Hu)
  654. Subject: Re: [HELP] Slow Kermit Transfer ?!
  655. Organization: Illinois Institute of Technology, Chicago
  656. References: <35jrgsINNdq2@newsman.csu.murdoch.edu.au>
  657. Date: Mon, 19 Sep 94 14:19:01 GMT
  658. Lines: 40
  659.  
  660. In article <35jrgsINNdq2@newsman.csu.murdoch.edu.au> anson@csuvax1.csu.murdoch.edu.au (Binh Anson) writes:
  661. >
  662. >G'day,
  663. >
  664. >I used Kermit 3.13 for my PC, my modem has a speed of 14.4 K, but I found that the downloading rate from the mainframe to my PC was still very slow! I tried Telix with SZ (Z-Modem Protocol), and it was very fast compared to Kermit. Is there a way to accelerate Kermit transfer ?
  665. >
  666. >Thanks,
  667. >Binh.
  668. >--
  669.  
  670.   You could use sz within kermit
  671.  
  672.   or
  673.  
  674.   Set following on both end of kermit
  675.  
  676.   set receive packet 2000
  677.   set windows 3
  678.   set con u all
  679.   set con p 0 1
  680.  
  681.   See DOC for correct syntax.
  682.  
  683.   You need MS-Kermit 3.13 and C-Kermit 5A (189) or up
  684.  
  685.   But don't push kermit too hard. In some cases, it will leave errors undetect
  686.   (At least on our unix box)
  687.  
  688. Jianqing Hu                         |  Internet: thssjyh@iitmax.acc.iit.edu
  689. ECE Dept.  Illinois Inst. of Tech.  |  
  690. Chicago, IL 60616                   |  Office phone: 312-567-6971
  691.  
  692.  
  693. >-------------------------------------------------------------------------
  694. >  Binh Anson            FAX: (61-9) 244 4726 (Perth, Australia)
  695. >                Email: anson@csuvax1.murdoch.edu.au
  696. >-------------------------------------------------------------------------
  697. >        
  698.  
  699. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!gumby!wupost!simtel.coast.net!w8sdz
  700. From: w8sdz@SimTel.Coast.NET (Keith Petersen)
  701. Newsgroups: comp.protocols.kermit.misc
  702. Subject: Re: [HELP] Slow Kermit Transfer ?!
  703. Date: Mon, 19 Sep 1994 15:17:50 GMT
  704. Organization: SimTel, the Coast to Coast Software Repository (tm)
  705. References: <35jrgsINNdq2@newsman.csu.murdoch.edu.au> <1994Sep19.141901.3102@iitmax.iit.edu>
  706. Lines: 15
  707.  
  708. thssjyh@iitmax.iit.edu (Jianqing Hu) writes:
  709. > ... don't push kermit too hard. In some cases, it will leave errors undetect
  710. > (At least on our unix box)
  711.  
  712. This should fix the problem:
  713.  
  714. set blo 3
  715.  
  716. which is short for "set block-check-type 3-char-crc-ccitt".
  717.  
  718. Keith
  719. --
  720. Keith Petersen
  721. Internet: w8sdz@SimTel.Coast.NET    or      w8sdz@Vela.ACS.Oakland.Edu
  722. Uucp: uunet!umich!vela!w8sdz                     BITNET: w8sdz@OAKLAND
  723.  
  724. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!news.sprintlink.net!dsm6.dsmnet.com!dsm1.dsmnet.com!RICH
  725. From: rich@dsm1.dsmnet.com
  726. Newsgroups: comp.protocols.kermit.misc
  727. Subject: Re: Dumb question...
  728. Date: 19 Sep 1994 14:52:21 GMT
  729. Organization: DES MOINES INTERNET, DES MOINES, IA
  730. Lines: 17
  731. References: <35ghag$274@telerama.lm.com>
  732. Reply-To: rich@dsm1.dsmnet.com
  733.  
  734. In article <35ghag$274@telerama.lm.com>, huzacec@telerama.lm.com writes:
  735. >
  736. >Can someone please tell me where I can FTP C-Kermit for DOS?
  737. >
  738. >Thanks.
  739. >Mike
  740. >
  741. >(please e-mail me)
  742. >huzacec@telerama.lm.com
  743.  
  744. Try Anonymous FTP from kermit.columbia.edu and read the file read.me
  745. (P. 9 of "Using Ckermit" by Frank da Cruz and Christine M. Gianone)
  746.  
  747.     Richard L. Philpott          |  E-MAIL:  rich@dsmnet.com
  748.     Des Moines Internet          |  All opinions are just that, opinions!!
  749.     5911 Meredith Drive, Suite B |  All opinions are mine only and not
  750.     Urbandale, IA 50322          |  those of DES MOINES INTERNET
  751.  
  752. Path: news.columbia.edu!usenet
  753. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  754. Newsgroups: comp.protocols.kermit.misc
  755. Subject: Re: Dumb question...
  756. Date: 19 Sep 1994 20:48:10 GMT
  757. Organization: Columbia University
  758. Lines: 16
  759. Distribution: World
  760. References: <35k8j5$mph@dsm6.dsmnet.com>
  761.  
  762. In article <35k8j5$mph@dsm6.dsmnet.com> rich@dsm1.dsmnet.com writes:
  763. > In article <35ghag$274@telerama.lm.com>, huzacec@telerama.lm.com writes:
  764. > > Can someone please tell me where I can FTP C-Kermit for DOS?
  765. >
  766. > Try Anonymous FTP from kermit.columbia.edu and read the file read.me
  767. > (P. 9 of "Using Ckermit" by Frank da Cruz and Christine M. Gianone)
  768. Actually, this might have been a trick question: There is no C-Kermit
  769. for DOS.  There is MS-DOS Kermit for DOS (and Windows), and C-Kermit for
  770. OS/2 (and UNIX, and VMS, and ... and ...).  The mere act of trying to
  771. ftp something does not necessarily make it spring forth into existence :-)
  772.  
  773. But yes, once again, the definitive source for all Kermit software on the
  774. Internet is kermit.columbia.edu.
  775.  
  776. - Frank
  777.  
  778. Path: news.columbia.edu!usenet
  779. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  780. Newsgroups: comp.protocols.kermit.misc
  781. Subject: Re: [HELP] Slow Kermit Transfer ?!
  782. Date: 19 Sep 1994 20:55:57 GMT
  783. Organization: Columbia University
  784. Lines: 32
  785. Distribution: World
  786. References: <9409191517.AA21171@SimTel.Coast.NET>
  787.  
  788. In article <9409191517.AA21171@SimTel.Coast.NET> w8sdz@SimTel.Coast.NET  
  789. (Keith Petersen) writes:
  790. > thssjyh@iitmax.iit.edu (Jianqing Hu) writes:
  791. > > ... don't push kermit too hard. In some cases, it will leave errors 
  792. > > undetected (At least on our unix box)
  793. > This should fix the problem:
  794. > set blo 3
  795. > which is short for "set block-check-type 3-char-crc-ccitt".
  796. Yes, SET BLOCK 3 should always be used.  It catches errors much better
  797. than the lower-numbered block checks, as explained in the documentation.
  798.  
  799. For example, I once ran across a terminal server that actually swapped
  800. characters occasionally when its was under heavy load.  Type 1 and 2
  801. block checks (which are simple checksums) would not catch this, but type 3
  802. (a Cyclic Redundancy Check) does.
  803.  
  804. However (mea culpa) it should be pointed out that C-Kermit 5A(190) could
  805. introduce errors into incoming files if control-character unprefixing was
  806. used on the characters Ctrl-O, Ctrl-N, or Ctrl-P, AND the file actually
  807. contained these characters, AND the connection was a 7-bit, rather than
  808. 8-bit, connection (i.e. PARITY was not NONE), AND locking shift protocol
  809. had been successfully negotiated.  This problem is fixed in C-Kermit 5A(190),
  810. which will be released shortly, and is available now for Beta testing.
  811.  
  812. Folks, if you have problems like the one mentioned above, for goodness'
  813. sakes, report them!  We support our work.
  814.  
  815. - Frank
  816.  
  817. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!wupost!news.miami.edu!spindler
  818. From: spindler@heron.rsmas.miami.edu (todd spindler)
  819. Newsgroups: comp.protocols.kermit.misc
  820. Subject: Re: [HELP] Slow Kermit Transfer ?!
  821. Date: 19 Sep 1994 12:49:18 -0400
  822. Organization: U of Miami/RSMAS
  823. Lines: 39
  824. Distribution: world
  825. References: <35jrgsINNdq2@newsman.csu.murdoch.edu.au>
  826. Reply-To: spindler@heron.rsmas.miami.edu (todd spindler)
  827.  
  828.  
  829. In article <35jrgsINNdq2@newsman.csu.murdoch.edu.au>, anson@csuvax1.csu.murdoch.edu.au (Binh Anson) writes:
  830. >
  831. >G'day,
  832. >
  833. >I used Kermit 3.13 for my PC, my modem has a speed of 14.4 K, but I found 
  834. >that the downloading rate from the mainframe to my PC was still very slow! 
  835. >I tried Telix with SZ (Z-Modem Protocol), and it was very fast compared to 
  836. >Kermit. Is there a way to accelerate Kermit transfer ?
  837.  
  838. Assuming that your modem supports hardware error correction (MNP5 or LAP-M) 
  839. then you can tune Kermit for quite fast file transfers.  With 
  840. error-correction handled in hardware by the modem, you can turn down the 
  841. processing Kermit uses for error-correction.  In addition, turn off the 
  842. Xon/Xoff flow control for Kermit as it is unneeded.  Increase packet 
  843. size to the maximum allowed by your Kermit applications.  The following 
  844. lines added to your .kermrc might help.
  845.  
  846. set send packet 9024
  847. set rec packet 9024
  848. set block 1
  849. set flow none
  850.  
  851. On the average, assuming a fairly clean phone line, I can download about
  852. 4Mb/hour.  Your mileage may vary.
  853.  
  854. There are additional tweaks that you can try regarding 8th bit prefixing, 
  855. but I haven't got them to work just yet. You can also play with sliding 
  856. windows, if your Kermit supports them, to increase throughput, but here
  857. again I haven't had much success with them.
  858.  
  859. -- 
  860. Todd Spindler            |Rosenstiel School of Marine & Atmospheric Science
  861. TSpindler@rsmas.miami.edu|Dept. of Meteorol & Phys Oceanography /U of Miami
  862. ---------------------------------------------------------------------------
  863. Beyond the ken of mortal men, beneath the wind and waves, / Lies a land of
  864. shells and sand, of chasms, crags, and caves, / Where coral castles climb
  865. and soar, where swaying seaweeds grow, / While all around, without a sound,
  866. the ocean currents flow...         _Sign of the Seahorse_ by Graeme Base
  867.  
  868. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!MathWorks.Com!europa.eng.gtefsd.com!newsxfer.itd.umich.edu!jobone!opeo!iao.ford.com!jamulla
  869. From: jamulla@iao.ford.com (John Jamulla)
  870. Newsgroups: comp.protocols.kermit.misc
  871. Subject: Exiting kermit without modem hangup
  872. Date: 19 Sep 1994 19:21:38 GMT
  873. Organization: Ford Motor Company -- standard disclaimers apply
  874. Lines: 15
  875. Distribution: world
  876. Reply-To: jamulla@cadcam.pms.ford.com
  877.  
  878.  
  879. Is it possible to exit kermit without dropping the phone line?
  880.  
  881. I'd like to use linux's "term" program and I already have kermit
  882. all set up for my needs. I need kermit to stop buffering and
  883. looking at the link without dropping the phone line
  884.  
  885. Please reply to below address.
  886.  
  887. Thanks in advance,
  888. John J.
  889. _________________________________________________________________________
  890. jamulla@cadcam.pms.ford.com               John Jamulla - Dearborn, MI USA
  891. PROFS:JJAMULLA JAMULLA -ON D1D1           Ford - Car Product Development
  892. Bldg3 2nd Floor #2638 (313) 337-9951      CAD/CAM, Dearborn, MI 48121
  893.  
  894. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!news.sprintlink.net!sundog.tiac.net!max.tiac.net!conover
  895. From: conover@max.tiac.net (Harry H Conover)
  896. Newsgroups: comp.protocols.kermit.misc
  897. Subject: Re: FTP for Current MS-DOS Kermit?
  898. Date: 20 Sep 1994 04:42:18 GMT
  899. Organization: The Internet Access Company
  900. Lines: 9
  901. Distribution: World
  902. References: <ellis.779937910@gmi.edu> <35k7ao$9bc@apakabar.cc.columbia.edu>
  903.  
  904. Thanks to all for the pointers on Kermit FTP sites.  I have it now.
  905.  
  906. If 3.13 proves as good a piece of software as 2.28, I'll likely end up
  907. using it well into the 21st century.
  908.  
  909. Again, many thanks.
  910.  
  911.                                     Harry Conover
  912.  
  913. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!charnel.ecst.csuchico.edu!nic-nac.CSU.net!usc!howland.reston.ans.net!swiss.ans.net!hermes.louisville.edu!homer.louisville.edu!jlmcad01
  914. From: jlmcad01@homer.louisville.edu (Jeff McAdams (J McA))
  915. Newsgroups: comp.protocols.kermit.misc
  916. Subject: Re: Kermit Access/Availability
  917. Date: 20 Sep 1994 03:59:58 GMT
  918. Organization: University of Louisville, Louisville KY USA
  919. Lines: 53
  920. References: <35i0o4$6s@cville-srv.wam.umd.edu> <1994Sep18.190019.26900@iglou.com>
  921.  
  922. In <1994Sep18.190019.26900@iglou.com> wakep@iglou.iglou.com (J. Wakeley Purple) writes:
  923.  
  924. >MDESOUZA (mdesouza@wam.umd.edu) wrote:
  925. >: Hello All,
  926. >:     I want to use download files from my host (umd) to my home pc.
  927.  
  928. >: home, but the computer center guys say Kermit is way better.  they have
  929. >: a disk, but i remember that one could download the "latest" kermit 
  930.  
  931. >We at U of Louisville have an 'official' release of kermit you can get by 
  932. >copying it to your diskette.  It's got several scripts for it to ease 
  933. >access to several systems (mainframe, vax VMS, unix).
  934.  
  935. >For that reason, it's probably better to use their version and 
  936. >installation process even if it's an 'old' version.  The new versions 
  937. >mostly have networking improvements that you're not likely to use.
  938.  
  939. Ok, I work in the computer lab at the above mentioned U of Louisville.
  940. "Our" version of kermit is the latest that is released (we just released
  941. "our" 3.13) with scripts written to automate connections to our
  942. mainframes.
  943.  
  944. On the machine that I am on right now, we have zmodem installed, and on
  945. comparison, I have found zmodem to be approximately twice as fast at
  946. transferring files as kermit is.
  947.  
  948. Your computer center guys proly told you kermit is better for one or
  949. more of the following reasons (brainstorming as I write):
  950.  
  951. 1)  They have kermit setup as we do to automate connection procedures
  952. 2)  Kermit is almost universally supported as a file transfer
  953. 3)  They can get it free or very inexpensively from Columbia and so give
  954. that out to users
  955.  
  956. As a note for #2.  Please keep in mind that kermit originally was just a
  957. file transfer protocol, and still can be used for that.  Nearly ALL
  958. communications programs have a kermit protocol to use.  Kermit was
  959. originally developed so that files could be tranfered without regard to
  960. what system was sending or recieving those files.  Before kermit, ppl
  961. had to find a protocol that they had in common and fiddle with it to get
  962. it to work, after kermit, everyone just starts up kermit, and sends the
  963. file.  VERY robust.
  964.  
  965. So in short (yeah right, too late for that I know) kermit is a very good
  966. tool to have because if all else fails, kermit WILL work, but other comm
  967. programs could be better depending on your setup.  I would suggest
  968. trying some out to see which fits your needs best.  Personally, I use
  969. telix, but I'm not exactly a power modem user.  (only 2400 bps in fact).
  970.  
  971. Chill,
  972. J McA
  973.  
  974. Hope I've helped and haven't run too long on the subject.
  975.  
  976. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!concert!news.wfu.edu!matthews
  977. From: matthews@wfu.edu (Rick Matthews)
  978. Newsgroups: comp.protocols.kermit.misc
  979. Subject: Re: Kermit Access/Availability
  980. Date: 20 Sep 1994 12:30:38 GMT
  981. Organization: Wake Forest University
  982. Lines: 74
  983. References: <35i0o4$6s@cville-srv.wam.umd.edu> <1994Sep18.190019.26900@iglou.com> <35lmnu$pp9@hermes.louisville.edu>
  984.  
  985. Jeff McAdams (J McA) (jlmcad01@homer.louisville.edu) wrote:
  986. : On the machine that I am on right now, we have zmodem installed, and on
  987. : comparison, I have found zmodem to be approximately twice as fast at
  988. : transferring files as kermit is.
  989.  
  990. Old versions of kermit were much slower than zmodem on binary files,
  991. but current versions are not.  If you are using the current versions
  992. of kermit (C-kermit 5A on Unix and most other hosts, MS-Kermit 3.13
  993. for DOS), you can get file transfers slightly faster than zmodem.
  994.  
  995. The *default* file tranfer parameters are very conservative, and must
  996. be changed to get high throughput.  The update file that comes with
  997. MS-Kermit 3.13 describes this is some detail.  With the host I
  998. download from, I use the following ".kermrc" file, and get fast
  999. reliable transfers:
  1000.  
  1001.  
  1002. set control unprefix all
  1003. set control prefix 0 1 129
  1004. set window 5
  1005. set file type binary
  1006. set receive packet 2000
  1007.  
  1008.  
  1009. ..kermrc is an initialization script that C-Kermit reads when first
  1010. run.  The first two lines above are what is new with recent versions.
  1011. Kermit assumes by default that many codes, including all eight-bit
  1012. codes, will cause problems with communication between the two
  1013. machines.  Since more than a few systems use 7 data bits, this is not
  1014. an unreasonable assumption, and it allows kermit to work when zmodem
  1015. would fail, by sending eight-bit codes as two (or more?) seven-bit codes.
  1016.  
  1017. If your system supports eight data bits, then this is unnecessary.
  1018. "Set unprefix all" disables all such tricks.  The second line of my
  1019. ..kermrc restores prefixing to only the three codes that cause problems
  1020. on my host.
  1021.  
  1022. : Your computer center guys proly told you kermit is better for one or
  1023. : more of the following reasons (brainstorming as I write):
  1024.  
  1025. : 1)  They have kermit setup as we do to automate connection procedures
  1026. : 2)  Kermit is almost universally supported as a file transfer
  1027. : 3)  They can get it free or very inexpensively from Columbia and so give
  1028. : that out to users.
  1029.  
  1030. I like using MS-Kermit as my terminal emulator, because
  1031.  
  1032.     1.  It provides excellent VT100 emulation.
  1033.     2.  All keys are reprogrammable.  We have reprogrammed our
  1034.             function keys, PageUp, PageDown, etc.  so that they
  1035.             work the same way in emacs and WordPerfect.
  1036.     3.  It provides excellent Tektronix graphics emulation, 
  1037.             toggling into that mode automatically from VT100 mode.
  1038.     4.  It can be used with either serial/modem connections or 
  1039.             with ethernet connections.  With ethernet connections 
  1040.             it supports multiple sessions.
  1041.     5.  It's free, so we can give it away to our students.
  1042.  
  1043. Disadvantage:
  1044.  
  1045.     1.  It's not menu driven.
  1046.  
  1047. For file transfers, I use Zmodem when connecting to BBS's, because
  1048. most of these do not support the current higher speed version of the
  1049. kermit protocol.  When attaching to Unix hosts, I use kermit, because
  1050. Zmodem is unreliable on enough Unix systems that I have tired of
  1051. experimenting, and offers no speed advantage.
  1052.  
  1053.  
  1054. --
  1055. Rick Matthews                     matthews@wfu.edu            Ham radio:
  1056. Wake Forest University            910-759-5340   (Voice)      WA4GSP
  1057. Winston-Salem, NC 27109-7507      910-759-6142   (FAX)
  1058.  
  1059. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!MathWorks.Com!udel!news-4.nss.udel.edu!strauss.udel.edu!not-for-mail
  1060. From: darkstar@strauss.udel.edu (Jerry Alexandratos)
  1061. Newsgroups: comp.protocols.kermit.misc
  1062. Subject: Re: Kermit And FTP
  1063. Date: 19 Sep 1994 14:21:54 -0400
  1064. Organization: Broken Toys Unlimited
  1065. Lines: 43
  1066. References: <35abck$6gc@louie.udel.edu> <35d5gi$6lm@chopin.udel.edu>
  1067.  
  1068. In article <35d5gi$6lm@chopin.udel.edu>,
  1069. Sigurd Andersen <sigurd@chopin.udel.edu> wrote:
  1070. :In article <35abck$6gc@louie.udel.edu>,
  1071. :Jerry Alexandratos <alexandr@stimpy.eecis.udel.edu> wrote:
  1072. :: Has anyone out there been able to successfully multiplex packets so
  1073. :: that you can use kermit and another TCPIP application?  ...
  1074. :: 
  1075. :: I'm using Kermit v3.13 on Novell v3.11 server with the latest ODI
  1076. :: drivers, and PCTCP v2.31 odipkt.
  1077. :: ...
  1078. :: 
  1079. ::     --Jerry       ...
  1080. :: 
  1081. :Jerry,
  1082. :     An answer from the campus from which you sent your question --
  1083. :PC/TCP software from FTP, Inc. includes a program called TNGLASS
  1084. :which does all the underlying packet handling, yet allows some other
  1085. :program to provide the user interface.  The DOS command to get these
  1086. :to work together is
  1087. :     TNGLASS <ip number> -E kermit.exe -F custom.ini
  1088. :where <ip number> refers to the system to which you wish to connect.
  1089. :"-E" tells TNGLASS to use the following program as the user interface.
  1090. :"-F" tells MS-KERMIT to use the specified INI file.
  1091. :
  1092. :     This has allowed people here to make use of MS-Kermit's VT220,
  1093. :VT320, and/or Tektronix 4010 terminal emulation, or to use the Kermit
  1094. :for communications concurrently with other processes (e.g., FTP).
  1095.  
  1096. Ah, but by using tnglass, I am limited to one connection.  If I use
  1097. Kermit in raw TCPIP mode, I can get multiple connections, and better
  1098. throughput.  Plus, if I shell to dos, I have more room to work with.
  1099. The only thing I'm looking for is a way to get better file transer
  1100. performance by using ftp instead, without having to give up any of the
  1101. goodies that I prefer to use kermit for.
  1102.  
  1103.     --Jerry
  1104.  
  1105.  
  1106.  
  1107. -- 
  1108. |>  Jerry Alexandratos             **  "vengo de la tierra del    <|
  1109. |>  darkstar@strauss.udel.edu      **   fuego ten cuidado cuando  <|
  1110. |>  darkstar@canary.cns.udel.edu   **   llamas mi nombre..."      <|
  1111.  
  1112. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!torn!mcshub!informer1.cis.McMaster.CA!muss.cis.McMaster.CA!not-for-mail
  1113. From: dfraser@muss.cis.McMaster.CA (Doug Fraser)
  1114. Newsgroups: comp.protocols.kermit.misc
  1115. Subject: Re: Kermit and Zmodem?
  1116. Date: 19 Sep 1994 19:06:18 -0400
  1117. Organization: McMaster University, Hamilton, Ontario, Canada.
  1118. Lines: 36
  1119. References: <35i5nc$eq9@larry.rice.edu>
  1120.  
  1121. In article <35i5nc$eq9@larry.rice.edu>,
  1122. Steven Patrick Iltis <iltiss@rice.edu> wrote:
  1123. >
  1124. >Is it possible to use zmodem (or rz and sz) with kermit? I use Kermit
  1125. >on Linux to log on to systems, and would like to use zmodem with
  1126. >Kermit.
  1127. >
  1128. >If I can't get these to work together, how can I get the fastest
  1129. >transfers with Kermit? Currently, I can only get about 1200 cps on a
  1130. >14.4 modem. 
  1131.  
  1132. This has been the subject of much discussion at my site.  I can get about 
  1133. 1000 cps on a 9600 transferring a zip file to a 486 DX 66 Mhz pc without 
  1134. the good uart chip (16450 or 16550, I forget).
  1135.  
  1136. I also added a kermit control file on the source computer.  I forget the 
  1137. exact name of the control file (probably .kermitrc for a unix computer)
  1138.     set control-character unprefixed all
  1139.     set control-character prefixed 0,1,129,17,29
  1140. This is discussed in the documentation but I didn't fully appreciate the 
  1141. social economic impact of doing so.  I think that kermit does something 
  1142. special with binary characters (prefixes them) which adds extra 
  1143. characters to transfer.  I noticed that the number of characters that 
  1144. kermit was transferring was less than the block size.  btw, this is done 
  1145. on the source (where the file comes from).
  1146.  
  1147. As well, be sure to use long blocks (but not too long).  My modem has 7k 
  1148. of ram buffer.  A 9k block is too long, a 6k block is good.
  1149.  
  1150. The set windows did nothing for me and I think it is for more internet 
  1151. transfers than modem transfers.
  1152.  
  1153.  
  1154. Doug Fraser
  1155.  
  1156. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!news.uoregon.edu!cs.uoregon.edu!usenet.ee.pdx.edu!not-for-mail
  1157. From: rkwee@ee.pdx.edu (Roland Kwee)
  1158. Newsgroups: comp.protocols.kermit.misc
  1159. Subject: Re: Kermit and Zmodem?
  1160. Date: 19 Sep 1994 20:26:02 -0700
  1161. Lines: 17
  1162. References: <35i5nc$eq9@larry.rice.edu>
  1163.  
  1164. iltiss@rice.edu (Steven Patrick Iltis) writes:
  1165.  
  1166. >Is it possible to use zmodem (or rz and sz) with kermit?
  1167. > with Kermit ... , I can only get about 1200 cps on a
  1168. >14.4 modem. 
  1169.  
  1170. This is an old discussion. In short, why do you think zmodem will do
  1171. better than Kermit? Your throughput is already 83 %, and could
  1172. THEORETICALLY only improve 17 %. However, the bottleneck may not be
  1173. Kermit, but your UART, the host computer, line noise, etc, all
  1174. factors that will also slow down zmodem.
  1175.  
  1176. Last year's Kermit News had a performance test that showed Kermit
  1177. superior over zmodem, and I haven't seen any counter-tests. If you
  1178. convincingly measure zmodem to be faster, please publish.
  1179.  
  1180. --Roland        email: RolandKwee@ACM.org 
  1181.  
  1182. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!pipex!lyra.csx.cam.ac.uk!warwick!news.shef.ac.uk!sunc!jp1ek
  1183. From: jp1ek@sunc.sheffield.ac.uk (Earl H. Kinmonth)
  1184. Newsgroups: comp.protocols.kermit.misc
  1185. Subject: Kermit for DOS/V
  1186. Date: 20 Sep 1994 06:41:22 GMT
  1187. Organization: Centre for Japanese Studies, Univ. of Sheffield
  1188. Lines: 10
  1189. Reply-To: jp1ek@sunc.shef.ac.uk
  1190.  
  1191. Does anyone know the current state of kermit for DOS/V (the
  1192. IBM/Microsoft dual mode version for Japanese/English)?  I have a 3.13
  1193. beta from a site in Japan, but it has one bug that renders it almost
  1194. unusable.  The code conversion does not work properly for Old-Jis
  1195. coding as used by Japan's largest commercial database vendor, Nikkei
  1196. Telecom.
  1197.  
  1198. --
  1199. Earl H. Kinmonth, Centre for Japanese Studies, University of Sheffield,
  1200. Sheffield, England S10 2TN jp1ek@sunc.sheffield.ac.uk
  1201.  
  1202. Path: news.columbia.edu!usenet
  1203. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  1204. Newsgroups: comp.protocols.kermit.misc
  1205. Subject: Re: Exiting kermit without modem hangup
  1206. Date: 20 Sep 1994 18:28:06 GMT
  1207. Organization: Columbia University
  1208. Lines: 52
  1209. Distribution: world
  1210. References: <35koc2INNvl@ope001.iao.ford.com>
  1211. Keywords: term
  1212.  
  1213. In article <35koc2INNvl@ope001.iao.ford.com> jamulla@iao.ford.com (John  
  1214. Jamulla) writes:
  1215. > Is it possible to exit kermit without dropping the phone line?
  1216. Remember there are hundreds of different Kermit programs.  For some the
  1217. answer is yes, for others it is no.  In UNIX, of course, the answer is no.
  1218. A fundamental aspect of the UNIX operating system is that when a process
  1219. exits, all of its open files are closed.  There is no way around it.
  1220. But this is not really the question you wanted to ask.
  1221.  
  1222. > I'd like to use linux's "term" program and I already have kermit
  1223. > all set up for my needs. I need kermit to stop buffering and
  1224. > looking at the link without dropping the phone line
  1225. The real question is: How do I use Kermit with term?  Here is the answer,
  1226. from the ckuker.bwr file that is being prepared for the forthcoming C-Kermit
  1227. 5A(190) release:
  1228.  
  1229. (11.3) USING C-KERMIT WITH TERM
  1230.  
  1231. The "term" program provides an error-corrected, multiplexed connection
  1232. between two UNIX systems, allowing you to run multiple applications over
  1233. a single connection, for example several terminal windows and a file
  1234. transfer simultaneously.  Term depends on a communications application
  1235. (such as C-Kermit) to make the connection and then redirect it to term's
  1236. standard i/o.  The advantages of using C-Kermit rather than other
  1237. communication programs for this include:
  1238.  
  1239.  . C-Kermit's script language lets you automate the entire process.
  1240.  
  1241.  . With C-Kermit's REDIRECT command, term sessions are not limited to
  1242.    serial connections, but can work over network connections (TCP/IP,
  1243.    X.25) too.
  1244.  
  1245. Here is an example showing how to set up a term session between two UNIX
  1246. systems with with C-Kermit (assuming the connection has already been
  1247. made by C-Kermit, e.g. by dialing up):
  1248.  
  1249.   C-Kermit> connect
  1250.   login: xxx
  1251.   Password: xxx
  1252.   $ exec term -r -s 38400 -A
  1253.   ^\c (escape back)
  1254.   C-Kermit>redirect term -s 38400 -A &
  1255.   C-Kermit>push
  1256.   $ 
  1257.  
  1258. Now you can run term clients such as trsh and tupload at the local shell
  1259. prompt.
  1260.  
  1261. - Frank
  1262.  
  1263. Path: news.columbia.edu!usenet
  1264. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  1265. Newsgroups: comp.protocols.kermit.misc
  1266. Subject: Re: kermit for Psion 3a
  1267. Date: 20 Sep 1994 19:21:33 GMT
  1268. Organization: Columbia University
  1269. Lines: 21
  1270. Distribution: world
  1271. References: <35mv65$pa9@ukwsv2.ggr.co.uk>
  1272. Keywords: Psion
  1273.  
  1274. In article <35mv65$pa9@ukwsv2.ggr.co.uk> w0400@ggr.co.uk (Wodehouse Lord) 
  1275. writes:
  1276. > Has anyone though about a kermit for the Psion 3a?
  1277. There is no Psion version of Kermit in our archives, nobody has ever
  1278. mentioned this system before, and I never heard of it.  When posting
  1279. messages like this:
  1280.  
  1281.   Is there a Kermit program for <name-of-system>
  1282.  
  1283. it might also be a good idea to include a brief description of the
  1284. system -- processor, languages available, operating system, etc, so at
  1285. least we could point you to something close.
  1286.  
  1287. You can find a concise list of Kermit versions in the Kermit archive
  1288. at kermit.columbia.edu, directory kermit/a (or b, c, d, or e) in the
  1289. files aav*.hlp, where * is a 3-letter phrase indicating how the file
  1290. is sorted -- by system name, OS name, programming language, date, etc.
  1291. There are presently about 450 entries in this list.
  1292.  
  1293. - Frank
  1294. From news@columbia.edu Tue Sep 20 19:51:48 1994
  1295. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02804
  1296.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 20 Sep 1994 15:51:56 -0400
  1297. Received: by apakabar.cc.columbia.edu id AA26920
  1298.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 20 Sep 1994 15:51:54 -0400
  1299. Path: news.columbia.edu!usenet
  1300. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  1301. Newsgroups: comp.protocols.kermit.misc
  1302. Subject: Testing 1 2 3
  1303. Date: 20 Sep 1994 19:51:48 GMT
  1304. Organization: Columbia University
  1305. Lines: 11
  1306. Distribution: World
  1307. Message-Id: <35negk$q93@apakabar.cc.columbia.edu>
  1308. Nntp-Posting-Host: fdc.cc.columbia.edu
  1309. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  1310.  
  1311. This is a test, please ignore...  Execpt I'm wondering if any of my
  1312. postings are making it out to the world, since all the questions I answered
  1313. yesterday are being asked again today.  Maybe it's just propogation delay.
  1314.  
  1315. But I would appreciate a *few* replies (by email, direct to me at
  1316. fdc@columbia.edu) to let me know if you have seen this message, especially
  1317. if you are far away from New York City.
  1318.  
  1319. Thanks.
  1320.  
  1321. - Frank
  1322.  
  1323. From news@columbia.edu Tue Sep 20 14:26:10 1994
  1324. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09218
  1325.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 20 Sep 1994 17:21:51 -0400
  1326. Received: by apakabar.cc.columbia.edu id AA03357
  1327.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 20 Sep 1994 17:21:49 -0400
  1328. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!gatech!psuvax1!news.cc.swarthmore.edu!netnews.upenn.edu!netnews.CC.Lehigh.EDU!CS1.CC.Lehigh.EDU!cdl0
  1329. From: cdl0@CS1.CC.Lehigh.EDU (CONRAD DANIEL LLOYD-KNIGHT)
  1330. Newsgroups: comp.protocols.kermit.misc
  1331. Subject: MacKermit questions....
  1332. Date: 20 Sep 1994 14:26:10 GMT
  1333. Organization: Lehigh University
  1334. Lines: 22
  1335. Message-Id: <35mre2$1224@fidoii.cc.lehigh.edu>
  1336. Nntp-Posting-Host: cs1.cc.lehigh.edu
  1337. X-Newsreader: TIN [version 1.2 PL2]
  1338. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  1339.  
  1340.  
  1341. just a few quick questions about MacKermit.....
  1342.  
  1343. does anyone know when version 1.0 will be released???? 
  1344.  
  1345. i'm currently using 0.9(188). i got 0.9(190) a while ago, but this
  1346. gave me endless problems when i tried to download stuff with it. anyone
  1347. else experienced this? what's wrong with it?
  1348.  
  1349. hope someone can answer these!
  1350.  
  1351. Later,
  1352. -Smoke.
  1353.  
  1354. -- bye!  :) -- pgp2 key available - just ask. or finger cdl0@cs1.cc.lehigh.edu
  1355.  
  1356. With friends surrounded
  1357. The dawn mist glowing
  1358. The water flowing
  1359. The endless river
  1360. Forever and ever
  1361.                     -"High Hopes", Pink Floyd.
  1362.  
  1363. From news@columbia.edu Tue Sep 20 21:46:14 1994
  1364. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10991
  1365.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 20 Sep 1994 17:46:35 -0400
  1366. Received: by apakabar.cc.columbia.edu id AA05038
  1367.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 20 Sep 1994 17:46:31 -0400
  1368. Path: news.columbia.edu!usenet
  1369. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  1370. Newsgroups: comp.protocols.kermit.misc
  1371. Subject: Re: MacKermit questions....
  1372. Date: 20 Sep 1994 21:46:14 GMT
  1373. Organization: Columbia University
  1374. Lines: 27
  1375. Distribution: World
  1376. Message-Id: <35nl78$4sg@apakabar.cc.columbia.edu>
  1377. References: <35mre2$1224@fidoii.cc.lehigh.edu>
  1378. Nntp-Posting-Host: fdc.cc.columbia.edu
  1379. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  1380.  
  1381. In article <35mre2$1224@fidoii.cc.lehigh.edu> cdl0@CS1.CC.Lehigh.EDU
  1382. (CONRAD DANIEL LLOYD-KNIGHT) writes:
  1383. > does anyone know when version 1.0 will be released???? 
  1384. No.  As of now, and for the past four years or so, nobody has been available
  1385. on the Mac-Specific aspects of Mac Kermit, at least not for enough time to
  1386. take care of all the deficiencies that badly need attention before a final
  1387. 1.0 release can be announced.
  1388.  
  1389. Anybody who is already comfortable programming the Macintosh in MPW C
  1390. and has a fair amount of time to devote bringing Mac Kermit into fold is
  1391. more than welcome to step forward!
  1392.  
  1393. > i'm currently using 0.9(188). i got 0.9(190) a while ago, but this
  1394. > gave me endless problems when i tried to download stuff with it. anyone
  1395. > else experienced this? what's wrong with it?
  1396. I was able to fix this problem a few weeks ago.  What was wrong was:
  1397. a file-system call that used to work in Mac OS 7.0 and earlier -- all the
  1398. way back to the very earliest Mac OS's -- stopped working in 7.1.
  1399.  
  1400. Pick up the fixed -- but still not release-quality -- Mac Kermit from
  1401. kermit.columbia.edu, directory kermit/test/text, text mode, file
  1402. ckm190.hqx.  Un-binHex with BinHex 4.0.  Please also get the ckmker.bwr
  1403. file and read it.
  1404.  
  1405. - Frank
  1406.  
  1407. From news@columbia.edu Tue Sep 20 22:32:12 1994
  1408. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13861
  1409.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 20 Sep 1994 18:32:27 -0400
  1410. Received: by apakabar.cc.columbia.edu id AA08278
  1411.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 20 Sep 1994 18:32:23 -0400
  1412. Path: news.columbia.edu!usenet
  1413. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  1414. Newsgroups: comp.protocols.kermit.misc
  1415. Subject: Correction
  1416. Date: 20 Sep 1994 22:32:12 GMT
  1417. Organization: Columbia University
  1418. Lines: 14
  1419. Distribution: World
  1420. Message-Id: <35nntc$825@apakabar.cc.columbia.edu>
  1421. Nntp-Posting-Host: fdc.cc.columbia.edu
  1422. Keywords: Bug
  1423. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  1424.  
  1425. Date: Tue, 20 Sep 94 18:06:24 EDT
  1426. From: Frank da Cruz <fdc@watsun.cc.columbia.edu>
  1427. To: Sigurd Andersen <sigurd@strauss.udel.edu>
  1428. Subject: Re: Testing 1 2 3
  1429. In-Reply-To: Your message of Tue, 20 Sep 1994 18:03:43 -0400
  1430.  
  1431. > In one of your postings, I think you inadvertantly included a typo
  1432. > which might confuse some ... you said that C-Kermit 5A(190) can introduce
  1433. > errors under some odd circumstances, and that C-Kermit 5A(190) fixes
  1434. > that bug.  The identical version can't do both ...
  1435. Right.  C-Kermit 5A(189) had the bug.  Previous and later versions do not.
  1436.  
  1437. - Frank
  1438.  
  1439. From news@columbia.edu Tue Sep 20 15:54:00 1994
  1440. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14335
  1441.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 20 Sep 1994 18:43:27 -0400
  1442. Received: by apakabar.cc.columbia.edu id AA08910
  1443.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 20 Sep 1994 18:43:25 -0400
  1444. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!panix!zip.eecs.umich.edu!buzzard.eecs.umich.edu!rjones
  1445. From: rjones@buzzard.eecs.umich.edu (Randolph M. Jones)
  1446. Newsgroups: comp.protocols.kermit.misc
  1447. Subject: Kermit with expanded memory manager
  1448. Date: 20 Sep 1994 15:54:00 GMT
  1449. Organization: University of Michigan EECS Dept.
  1450. Lines: 7
  1451. Distribution: World
  1452. Message-Id: <35n0io$ddt@zip.eecs.umich.edu>
  1453. Nntp-Posting-Host: buzzard.eecs.umich.edu
  1454. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  1455.  
  1456. Perhaps this is in the documentation somewhere, but I missed it.  When
  1457. I run Kermit and I have an expanded memory manager running, I get a lot
  1458. of noise in the connection.  Lots of beeps and missing characters, and there's
  1459. just no way to transfer a file, because too many retries are necessary.
  1460. I have old slow (8250?) UARTs, and I'm connecting at 14,400 bps.  Does
  1461. anyone have an idea what's going on?  Is there any way to fix it short of
  1462. turning of the expanded memory manager?
  1463.  
  1464. From news@columbia.edu Tue Sep 20 16:11:57 1994
  1465. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16742
  1466.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 20 Sep 1994 19:20:20 -0400
  1467. Received: by apakabar.cc.columbia.edu id AA10894
  1468.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 20 Sep 1994 19:20:18 -0400
  1469. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!usc!nic-nac.CSU.net!nermal!sthoemke
  1470. From: sthoemke@nermal.santarosa.edu (Steve Thoemke)
  1471. Newsgroups: comp.protocols.kermit.misc
  1472. Subject: specifying port number
  1473. Date: 20 Sep 1994 16:11:57 GMT
  1474. Organization: Santa Rosa Junior College, Santa Rosa, CA
  1475. Lines: 10
  1476. Message-Id: <35n1kd$o00@nic-nac.CSU.net>
  1477. Nntp-Posting-Host: nermal.santarosa.edu
  1478. X-Newsreader: TIN [version 1.2 PL2]
  1479. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  1480.  
  1481.  
  1482.  
  1483. --
  1484. I am using Mac Kermit .98(62). How do I specify a port number when
  1485. telneting?
  1486.  
  1487. Any help would be appreciated,
  1488.  
  1489. (Steve Thoemke) sthoemke@nermal.santarosa.edu
  1490.  
  1491.  
  1492. From news@columbia.edu Tue Sep 20 23:25:12 1994
  1493. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17042
  1494.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 20 Sep 1994 19:25:22 -0400
  1495. Received: by apakabar.cc.columbia.edu id AA11147
  1496.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 20 Sep 1994 19:25:21 -0400
  1497. Path: news.columbia.edu!usenet
  1498. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  1499. Newsgroups: comp.protocols.kermit.misc
  1500. Subject: Re: specifying port number
  1501. Date: 20 Sep 1994 23:25:12 GMT
  1502. Organization: Columbia University
  1503. Lines: 10
  1504. Distribution: World
  1505. Message-Id: <35nr0o$as2@apakabar.cc.columbia.edu>
  1506. References: <35n1kd$o00@nic-nac.CSU.net>
  1507. Nntp-Posting-Host: fdc.cc.columbia.edu
  1508. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  1509.  
  1510. In article <35n1kd$o00@nic-nac.CSU.net> sthoemke@nermal.santarosa.edu (Steve  
  1511. Thoemke) writes:
  1512. > I am using Mac Kermit .98(62). How do I specify a port number when
  1513. > telneting?  Any help would be appreciated,
  1514. Maybe not :-)  Mac Kermit -- any version (yours is ancient) does not
  1515. make TELNET connections.  There is no TCP/IP support in Mac Kermit.
  1516. Perhaps some day.
  1517.  
  1518. - Frank
  1519.  
  1520. From news@columbia.edu Tue Sep 20 23:44:16 1994
  1521. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17927
  1522.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 20 Sep 1994 19:44:23 -0400
  1523. Received: by apakabar.cc.columbia.edu id AA12424
  1524.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 20 Sep 1994 19:44:20 -0400
  1525. Path: news.columbia.edu!usenet
  1526. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  1527. Newsgroups: comp.protocols.kermit.misc
  1528. Subject: Re: Kermit with expanded memory manager
  1529. Date: 20 Sep 1994 23:44:16 GMT
  1530. Organization: Columbia University
  1531. Lines: 66
  1532. Distribution: World
  1533. Message-Id: <35ns4g$c44@apakabar.cc.columbia.edu>
  1534. References: <35n0io$ddt@zip.eecs.umich.edu>
  1535. Nntp-Posting-Host: fdc.cc.columbia.edu
  1536. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  1537.  
  1538. In article <35n0io$ddt@zip.eecs.umich.edu> rjones@buzzard.eecs.umich.edu
  1539. (Randolph M. Jones) writes:
  1540. > Perhaps this is in the documentation somewhere, but I missed it.  When
  1541. > I run Kermit and I have an expanded memory manager running, I get a lot
  1542. > of noise in the connection.  Lots of beeps and missing characters, and 
  1543. > there's just no way to transfer a file, because too many retries are 
  1544. > necessary.  I have old slow (8250?) UARTs, and I'm connecting at 14,400
  1545. > bps.  Does anyone have an idea what's going on?  Is there any way to fix
  1546. > it short of turning of the expanded memory manager?
  1547. >
  1548. From Joe Doupnik (author of MS-DOS Kermit):
  1549.  
  1550. Randolf,
  1551.  
  1552. Columbia rescued your query while I await Pony Express (sic) delivery of
  1553. the new comp.protocols.kermit.misc group to my campus. Any year now.
  1554.  
  1555. Let's take a few guesses.  Expanded memory needs a 64KB chunk of upper
  1556. memory block and you need to pin down where with a FRAME= command
  1557. argument to your memory manager.  Segment E000 is a common spot, but
  1558. ensure nothing gets into A000-BFFF video.  Do the same in Windows'
  1559. SYSTEM.INI, [enhanced] section. And be generous with the "exclude="
  1560. phrases to protect your machine.
  1561.  
  1562. Memory managers differ a lot about how a machine is switched between
  1563. real and protected mode, and the switch is needed to make visible the
  1564. big chunk of memory devoted to expanded memory (even though only a 64KB
  1565. piece is visible at one time).  If you have competing TSRs which use
  1566. expanded memory (disk caches come to mind) then they will beat up on the
  1567. machine.  Print spoolers are well known hazards for comms programs.  So
  1568. you may need to do a little local tuning to minimize the interference.
  1569.  
  1570. Next, be really sure there is nothing else using the IRQs of your serial
  1571. port.  Some network boards default to IRQ 3 (COM2), for example.  There
  1572. can be no sharing, else trouble.  While doing this, check port address
  1573. blocks for conflicts too; a serial port wants 8 port values starting at
  1574. the stated base, say \x03f8, and overlaps with other boards are possible
  1575. but fatal.
  1576.  
  1577. Please do watch any disk cache because those gems gather bytes for a
  1578. while then take a huge slice of cpu time (with interrupt recognition
  1579. defeated) to hand them out to the disk drive.  My suggestion is remove
  1580. such caching, but you can experiment to see if that is the cause.
  1581.  
  1582. You have probably read a lot about the 16550A buffered UART chips.  They
  1583. do work very well indeed covering up the holes created by greedy TSRs,
  1584. and I recommend you investigate available boards.  Kermit has supported
  1585. that chip in FIFO mode for many years.  For positively difficult outage
  1586. cases you might look into more expensive serial boards which simulate a
  1587. 16550A but with a 1KB buffer rather than the 16 Byte kind on the chip;
  1588. the Hayes ESP board is one I use here.
  1589.  
  1590. Finally, look out for other TSRs such as screen savers and keyboard
  1591. helpers and FAX drivers. Each of them can cause trouble to serial comms
  1592. gear.
  1593.  
  1594.     Joe D.
  1595.  
  1596. [I would only add that MS-DOS Kermit works just fine with expanded memory
  1597. turned on, on thousands of PCs that have 8250 UARTs, including my own, so
  1598. the problem Randolph reports is not endemic to Kermit, but a peculiarity
  1599. of his setup, an unfortunate byproduct of PC architecture.  By the way,
  1600. a big advantage of expanded memory is that Kermit can take advantage of
  1601. it to store your rollback screens, so you can have literally thousands
  1602. of them.  Also...  Be sure to read the section on memory management in
  1603. the KERMIT.BWR file that comes on the MS-DOS Kermit diskette.  - Frank]
  1604.  
  1605. From news@columbia.edu Tue Sep 20 23:57:08 1994
  1606. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18362
  1607.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 20 Sep 1994 19:57:16 -0400
  1608. Received: by apakabar.cc.columbia.edu id AA13050
  1609.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 20 Sep 1994 19:57:13 -0400
  1610. Path: news.columbia.edu!usenet
  1611. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  1612. Newsgroups: comp.protocols.kermit.misc
  1613. Subject: OS/2 C-Kermit and SET CARRIER
  1614. Date: 20 Sep 1994 23:57:08 GMT
  1615. Organization: Columbia University
  1616. Lines: 27
  1617. Distribution: World
  1618. Message-Id: <35nssk$cnl@apakabar.cc.columbia.edu>
  1619. Nntp-Posting-Host: fdc.cc.columbia.edu
  1620. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  1621.  
  1622. In article <35mobr$ubl@hermes.acs.ryerson.ca> mhemswor@acs.ryerson.ca writes:
  1623. > In <35kvu0$i89@gabriel.keele.ac.uk>, poa02@cc.keele.ac.uk (R. Kimber)  
  1624. writes:
  1625. > >I have a new machine and am trying to get C-Kermit working, using COM2. 
  1626. > >When I try to connect I get a message something like "Carrier not 
  1627. > >detected". 
  1628. > Try "set carrier off" at the C-kermit command prompt.
  1629. It's all in the documentation.  This is normal behavior.  The question is,
  1630. what do you want carrier to do?  Most people want to know that the
  1631. connection has dropped if carrier goes off.  This is what Kermit is set up
  1632. to do by default.  The conundrum is: "If I can't communicate with carrier
  1633. is off, then how am I supposed to make a connection?"  Answer: the DIAL
  1634. command, of course.  C-Kermit's default CARRIER setting is AUTO, meaning
  1635. that carrier is not to be required by the DIAL command (makes sense,
  1636. right?), but it is required by the CONNECT command.
  1637.  
  1638. If you don't want to use the DIAL command, but would rather CONNECT to
  1639. the modem and type AT commands at it, then SET CARRIER OFF before giving
  1640. the CONNECT command.  But remember that when CARRIER is OFF, Kermit will
  1641. not notice if the carrier signal drops.
  1642.  
  1643. Version 5A(190) of C-Kermit gives you a message that pretty much tells
  1644. you this story if you attempt to CONNECT to a serial device that is not
  1645. presenting the carrier signal when Kermit's CARRIER setting is ON or AUTO.
  1646.  
  1647. - Frank
  1648.  
  1649. From news@columbia.edu Tue Sep 20 23:27:27 1994
  1650. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20783
  1651.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 20 Sep 1994 20:36:57 -0400
  1652. Received: by apakabar.cc.columbia.edu id AA15604
  1653.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 20 Sep 1994 20:36:55 -0400
  1654. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!swrinde!news.dell.com!tadpole.com!uunet!psinntp!adam.cc.sunysb.edu!brook!gene
  1655. From: gene@brook.physics.sunysb.edu (Eugene Tyurin)
  1656. Newsgroups: comp.protocols.kermit.misc
  1657. Subject: Which is the latest Kermit for MacOS?
  1658. Date: 20 Sep 1994 23:27:27 GMT
  1659. Organization: Institute for Theoretical Physics, Stony Brook University
  1660. Lines: 14
  1661. Message-Id: <35nr4v$rd4@adam.cc.sunysb.edu>
  1662. Reply-To: gene@insti.physics.sunysb.edu (Eugene Tyurin)
  1663. Nntp-Posting-Host: brook.physics.sunysb.edu
  1664. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  1665.  
  1666. Hi netters,
  1667.  
  1668. I'm confused: I tried to find Mac binary on kermit.columbia.edu, but
  1669. found none, on umich.edu they have kermit and mackermit files: I took
  1670. the latest one and info said: "Alpha Development version". It was
  1671. 0.99 pl 190 (?) and was dated Nov. '93.
  1672.  
  1673. In a nutshell: where can I get latest kermit binary for MacOS ver. 6?
  1674.  
  1675. Thanks in advance,
  1676. -- 
  1677.   Eugene Tyurin ( ITP, Stony Brook Univ. )
  1678.   E-mail: gene@insti.physics.sunysb.edu ( MIME mail is welcome! )
  1679.      WWW: http://www.physics.sunysb.edu:80/~gene/plan.html
  1680.  
  1681. From news@columbia.edu Wed Sep 21 00:48:36 1994
  1682. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21633
  1683.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 20 Sep 1994 20:48:41 -0400
  1684. Received: by apakabar.cc.columbia.edu id AA16169
  1685.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 20 Sep 1994 20:48:40 -0400
  1686. Path: news.columbia.edu!usenet
  1687. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  1688. Newsgroups: comp.protocols.kermit.misc
  1689. Subject: Re: Which is the latest Kermit for MacOS?
  1690. Date: 21 Sep 1994 00:48:36 GMT
  1691. Organization: Columbia University
  1692. Lines: 54
  1693. Distribution: World
  1694. Message-Id: <35nvt4$fp4@apakabar.cc.columbia.edu>
  1695. References: <35nr4v$rd4@adam.cc.sunysb.edu>
  1696. Nntp-Posting-Host: fdc.cc.columbia.edu
  1697. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  1698.  
  1699. In article <35nr4v$rd4@adam.cc.sunysb.edu> gene@brook.physics.sunysb.edu 
  1700. (Eugene Tyurin) writes:
  1701. > I'm confused: I tried to find Mac binary on kermit.columbia.edu, but
  1702. > found none, on umich.edu they have kermit and mackermit files: I took
  1703. > the latest one and info said: "Alpha Development version". It was
  1704. > 0.99 pl 190 (?) and was dated Nov. '93.
  1705. > In a nutshell: where can I get latest kermit binary for MacOS ver. 6?
  1706. Mac Kermit 0.991(190) dated 16 August 1994 or later fixes the problem
  1707. with downloading under newer System releases (7.1.x).  Now files can be
  1708. downloaded on newer systems such as Centris 660 AV with OS 7.1, Power
  1709. Mac 7100/66 with OS 7.1.2, etc, without bombs or other nasty effects.
  1710. It should also fix certain binary/text-mode confusion that seemed to
  1711. result in corrupted files when downloading in binary mode.
  1712.  
  1713. The last formal release of Mac Kermit was 0.9(40) in 1988.
  1714. Unfortunately, it does not work very well on newer Macintoshes or
  1715. Systems.  However, newer versions are too big for 512K Macs or below, so
  1716. you'll have to run 0.9(40) on these old models.
  1717.  
  1718. A great deal of work has been done on the program since 1988, but the
  1719. result (so far) is still not of release quality, though it is quite
  1720. suitable for most purposes.
  1721.  
  1722. The current pre-pre-release of Mac Kermit (still far from a final
  1723. release) is 0.991(190), based on C-Kermit 5A(190) Beta.  It is available
  1724. via anonymous FTP from kermit.columbia.edu [128.59.39.2], directory
  1725. kermit/test/text.
  1726.  
  1727. A comprehensive user manual will be published when the final 1.0 release
  1728. is complete.  Sorry, I can't give any reasonable estimate about when
  1729. that will be.  Watch the Kermit Digest (or comp.protocols.kermit, same
  1730. thing) for further announcements.  You can subscribe to the Kermit
  1731. Digest by sending email to LISTSERV@CUVMA.BITNET (or
  1732. LISTSERV@CUVMA.CC.COLUMBIA.EDU) containing the text:
  1733.  
  1734.   SUBSCRIBE I$KERMIT your-personal-name-here
  1735.  
  1736. Mac Kermit files, ftp from kermit.columbia.edu in text mode from the
  1737. kermit/test/text directory:
  1738.  
  1739.   ckm190.hqx -- current prerelease of Mac Kermit in BinHex 4.0 format
  1740.   ckmker.doc -- user documentation for 0.9(40), the previous release (1988)
  1741.   ckmker.ps  -- PostScript version of user documentation for 0.9(40)
  1742.   ckmker.bwr -- Notes about the current prerelease, FAQ's, etc
  1743.   ckmker.fon -- Notes about the new Mac Kermit terminal emulation font
  1744.  
  1745. and in the kermit/charsets directory:
  1746.  
  1747.   maclatin.* -- The new Mac Kermit font itself
  1748.  
  1749. Read the ckmker.bwr ("beware") file for further details.
  1750.  
  1751. (End of ckmaaa.hlp)
  1752.  
  1753. From news@columbia.edu Tue Sep 20 23:47:45 1994
  1754. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22836
  1755.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 20 Sep 1994 21:08:37 -0400
  1756. Received: by apakabar.cc.columbia.edu id AA17204
  1757.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 20 Sep 1994 21:08:35 -0400
  1758. Newsgroups: comp.protocols.kermit.misc
  1759. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!gatech!swiss.ans.net!malgudi.oar.net!utnetw.utoledo.edu!jupiter!crszczub
  1760. From: crszczub@cse.utoledo.edu (craig szczublewski)
  1761. Subject: Re: C-Kermit for DOS questions
  1762. Message-Id: <CwGCrM.LIB@utnetw.utoledo.edu>
  1763. Sender: news@utnetw.utoledo.edu (News Manager)
  1764. Organization: University of Toledo
  1765. X-Newsreader: TIN [version 1.2 PL0]
  1766. References: <CwCI2q.286@murdoch.acc.Virginia.EDU>
  1767. Date: Tue, 20 Sep 1994 23:47:45 GMT
  1768. Lines: 18
  1769. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  1770.  
  1771. : Is their a version of Kermit for DOS that supports dynamic
  1772. : blocks?  And where can that be obtained?
  1773.  
  1774. try kermit.columbia.edu (anonymous ftp)
  1775. the latest version for dos supports extended length packets
  1776. and sliding windows.
  1777.  
  1778. just follow the directions from there.
  1779.  
  1780. --
  1781.   +---------------------------+      +------------------------------------+
  1782.   |     Craig Szczublewski    |+     |  crszczub@jupiter.cse.utoledo.edu  |+
  1783.   |    Unique Systems, Inc.   ||     |   4gen!unique!craig%uunet.uu.net   ||
  1784.   | 5610 Monroe St. Suite 210 ||     |------------------------------------||
  1785.   |     Sylvania, OH 43560    ||     | A few munce ugo i cudn't evin spel || 
  1786.   |       (419) 882-1113      ||     |      injunear, now i ar won.       ||
  1787.   +---------------------------+|     +------------------------------------+|
  1788.    +---------------------------+      +------------------------------------+
  1789.  
  1790. From news@columbia.edu Tue Sep 20 23:52:39 1994
  1791. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22845
  1792.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 20 Sep 1994 21:08:49 -0400
  1793. Received: by apakabar.cc.columbia.edu id AA17214
  1794.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 20 Sep 1994 21:08:48 -0400
  1795. Newsgroups: comp.protocols.kermit.misc
  1796. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!gatech!swiss.ans.net!malgudi.oar.net!utnetw.utoledo.edu!jupiter!crszczub
  1797. From: crszczub@cse.utoledo.edu (craig szczublewski)
  1798. Subject: Re: "script" command in C Kermit
  1799. Message-Id: <CwGCzs.MLs@utnetw.utoledo.edu>
  1800. Sender: news@utnetw.utoledo.edu (News Manager)
  1801. Organization: University of Toledo
  1802. X-Newsreader: TIN [version 1.2 PL0]
  1803. References: <35i6s4$3is@cmcl2.NYU.EDU>
  1804. Date: Tue, 20 Sep 1994 23:52:39 GMT
  1805. Lines: 20
  1806. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  1807.  
  1808. As a brief example, it is script expect send
  1809.  
  1810. example: (logging into a unix machine)
  1811.  
  1812.     script ~0 ~r                  <- does not wait for anything, send a <cr>
  1813.     script ~w30login: me          <- wait for 30 sec. for login; send name
  1814.     script password: blahblah     <- wait (default time) and send password
  1815.  
  1816. I recommend de Cruz's (sp?) using C-Kermit book.  It is chock full of
  1817. usefull stuff and examples for building c-kermit scripts.
  1818.  
  1819. --
  1820.   +---------------------------+      +------------------------------------+
  1821.   |     Craig Szczublewski    |+     |  crszczub@jupiter.cse.utoledo.edu  |+
  1822.   |    Unique Systems, Inc.   ||     |   4gen!unique!craig%uunet.uu.net   ||
  1823.   | 5610 Monroe St. Suite 210 ||     |------------------------------------||
  1824.   |     Sylvania, OH 43560    ||     | A few munce ugo i cudn't evin spel || 
  1825.   |       (419) 882-1113      ||     |      injunear, now i ar won.       ||
  1826.   +---------------------------+|     +------------------------------------+|
  1827.    +---------------------------+      +------------------------------------+
  1828.  
  1829. From news@columbia.edu Tue Sep 20 13:14:47 1994
  1830. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24390
  1831.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 20 Sep 1994 21:39:00 -0400
  1832. Received: by apakabar.cc.columbia.edu id AA19075
  1833.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 20 Sep 1994 21:38:56 -0400
  1834. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!swrinde!cs.utexas.edu!uunet!ftpbox!mothost!delphinium.cig.mot.com!reindeer!kreidler
  1835. From: kreidler@reindeer.cig.mot.com (Joe Kreidler)
  1836. Newsgroups: comp.protocols.kermit.misc
  1837. Subject: Sending Binary Files
  1838. Date: 20 Sep 94 13:14:47 GMT
  1839. Organization: Motorola Cellular Infrastructure Group
  1840. Lines: 14
  1841. Message-Id: <kreidler.780066887@reindeer>
  1842. Nntp-Posting-Host: reindeer.rtsg.mot.com
  1843. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  1844.  
  1845. Can someone inform me how to transfer a binary file with Kermit. I have
  1846. not had any luck.
  1847.  
  1848. Thanks in Advance,
  1849.  
  1850. ---------------------------------------------------------------
  1851. Joe Kreidler                    1501 W Shure Drive - Room 1315
  1852. Motorola Cellular        Arlington Heights, IL 60004
  1853. kreidler@cig.mot.com        708-632-4656
  1854.                 FAX: 708-632-6519
  1855.  
  1856. network: an advanced version of "connect the dots."
  1857. ---------------------------------------------------------------
  1858.  
  1859.  
  1860. From news@columbia.edu Tue Sep 20 20:55:20 1994
  1861. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03884
  1862.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 21 Sep 1994 00:36:47 -0400
  1863. Received: by apakabar.cc.columbia.edu id AA28299
  1864.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 21 Sep 1994 00:36:46 -0400
  1865. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!vixen.cso.uiuc.edu!newsrelay.iastate.edu!news.iastate.edu!tflynn
  1866. From: tflynn@iastate.edu (Timothy John Flynn)
  1867. Newsgroups: comp.protocols.kermit.misc
  1868. Subject: Re: FTP - KERMIT ==>Problems
  1869. Date: 20 Sep 1994 20:55:20 GMT
  1870. Organization: Iowa State University, Ames, IA
  1871. Lines: 11
  1872. Message-Id: <35ni7o$5hq@news.iastate.edu>
  1873. References: <35dkpa$jud@knot.queensu.ca>
  1874. Nntp-Posting-Host: des1.iastate.edu
  1875. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  1876.  
  1877.  
  1878.  
  1879.  
  1880. make sure you type set file type binary on both sides of kermit, host
  1881. and local.
  1882. -- 
  1883. Timothy J Flynn                         
  1884. (tflynn@iastate.edu)                  
  1885. Fine Arts &                                        
  1886. Computer Science                     
  1887. Larch 1349 Cunningham, Ames, Iowa 50013-0008    phone (515)-294-9022
  1888.  
  1889. From news@columbia.edu Tue Sep 20 20:58:01 1994
  1890. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03928
  1891.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 21 Sep 1994 00:37:11 -0400
  1892. Received: by apakabar.cc.columbia.edu id AA28314
  1893.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 21 Sep 1994 00:37:10 -0400
  1894. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!vixen.cso.uiuc.edu!newsrelay.iastate.edu!news.iastate.edu!tflynn
  1895. From: tflynn@iastate.edu (Timothy John Flynn)
  1896. Newsgroups: comp.protocols.kermit.misc
  1897. Subject: Newest Kermit Version????
  1898. Date: 20 Sep 1994 20:58:01 GMT
  1899. Organization: Iowa State University, Ames, IA
  1900. Lines: 10
  1901. Message-Id: <35nicp$5kj@news.iastate.edu>
  1902. References: <35dkpa$jud@knot.queensu.ca> <35ni7o$5hq@news.iastate.edu>
  1903. Nntp-Posting-Host: des1.iastate.edu
  1904. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  1905.  
  1906.  
  1907.  
  1908.     What is the most recent kermit version made for IBM?? 
  1909. Please email me only...thanks!
  1910. -- 
  1911. Timothy J Flynn                         
  1912. (tflynn@iastate.edu)                  
  1913. Fine Arts &                                        
  1914. Computer Science                     
  1915. Larch 1349 Cunningham, Ames, Iowa 50013-0008    phone (515)-294-9022
  1916.  
  1917. From news@columbia.edu Tue Sep 20 21:01:16 1994
  1918. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04699
  1919.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 21 Sep 1994 00:47:19 -0400
  1920. Received: by apakabar.cc.columbia.edu id AA28580
  1921.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 21 Sep 1994 00:47:17 -0400
  1922. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!vixen.cso.uiuc.edu!newsrelay.iastate.edu!news.iastate.edu!tflynn
  1923. From: tflynn@iastate.edu (Timothy John Flynn)
  1924. Newsgroups: comp.protocols.kermit.misc
  1925. Subject: Kermit + Windows for Workgroups??
  1926. Date: 20 Sep 1994 21:01:16 GMT
  1927. Organization: Iowa State University, Ames, IA
  1928. Lines: 11
  1929. Message-Id: <35niis$5q1@news.iastate.edu>
  1930. References: <35dkpa$jud@knot.queensu.ca> <35ni7o$5hq@news.iastate.edu>
  1931. Nntp-Posting-Host: des1.iastate.edu
  1932. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  1933.  
  1934. What is  the best kermit setup for use with windows.  I seem to get alot
  1935. of retry messages when I use these two together...
  1936.  
  1937. please respond by email only!
  1938.  
  1939. -- 
  1940. Timothy J Flynn                         
  1941. (tflynn@iastate.edu)                  
  1942. Fine Arts &                                        
  1943. Computer Science                     
  1944. Larch 1349 Cunningham, Ames, Iowa 50013-0008    phone (515)-294-9022
  1945.  
  1946. From news@columbia.edu Tue Sep 20 23:09:19 1994
  1947. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05315
  1948.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 21 Sep 1994 00:55:43 -0400
  1949. Received: by apakabar.cc.columbia.edu id AA28820
  1950.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 21 Sep 1994 00:55:42 -0400
  1951. Path: news.columbia.edu!sol.ctr.columbia.edu!newsxfer.itd.umich.edu!isclient.merit.edu!msuinfo!netnews.upenn.edu!dsinc!newsfeed.pitt.edu!gatech!swrinde!howland.reston.ans.net!europa.eng.gtefsd.com!swiss.ans.net!prodigy.com!prodigy.com!not-for-mail
  1952. From: davidsen@usenety1.news.prodigy.com (Bill Davidsen)
  1953. Newsgroups: comp.protocols.kermit.misc
  1954. Subject: Re: Kermit and Zmodem?
  1955. Date: 20 Sep 1994 19:09:19 -0400
  1956. Organization: Prodigy Services
  1957. Lines: 20
  1958. Message-Id: <35nq2v$bmc@usenety1.news.prodigy.com>
  1959. References: <35i5nc$eq9@larry.rice.edu> <CwEpts.9w4@cfanews.harvard.edu>
  1960. Nntp-Posting-Host: loopback.news.prodigy.com
  1961. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  1962.  
  1963. In article <CwEpts.9w4@cfanews.harvard.edu>,
  1964. John Chandler <chandler@cfa0.harvard.edu> wrote:
  1965.  
  1966. :: If I can't get these to work together, how can I get the fastest
  1967. :: transfers with Kermit? Currently, I can only get about 1200 cps on a
  1968. :: 14.4 modem. 
  1969. :
  1970. :1200 cps = 12,000 bps.  That's not bad for a 14,400-bps modem.
  1971.  
  1972. Since all 14.4 modes have v.42 error correcting, the limit is of the
  1973. order of 9.3 bits/byte (V.42 uses 8/byte + overhead), the practical
  1974. limit is around 1550cps, assuming DTE (serial) rates set to 19.2k,
  1975. hardware flow control, measuring transfer of compressed data files.
  1976.  
  1977. I have seen higher, but this is what you might expect with no obvious
  1978. errors in your setup and zmodem or kermit with a bit of tuning.
  1979. -- 
  1980. Speaking *from* but never *for* Prodigy
  1981.     "Pain builds moral fiber"  -my dad
  1982.     "Pain hurts"  -me
  1983.  
  1984. From news@columbia.edu Tue Sep 20 23:04:38 1994
  1985. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09394
  1986.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 21 Sep 1994 02:29:44 -0400
  1987. Received: by apakabar.cc.columbia.edu id AA02303
  1988.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 21 Sep 1994 02:29:42 -0400
  1989. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!swiss.ans.net!prodigy.com!prodigy.com!not-for-mail
  1990. From: davidsen@usenety1.news.prodigy.com (Bill Davidsen)
  1991. Newsgroups: comp.protocols.kermit.misc
  1992. Subject: Re: Kermit Access/Availability
  1993. Date: 20 Sep 1994 19:04:38 -0400
  1994. Organization: Prodigy Services
  1995. Lines: 57
  1996. Message-Id: <35npq6$9a9@usenety1.news.prodigy.com>
  1997. References: <35i0o4$6s@cville-srv.wam.umd.edu> <1994Sep18.190019.26900@iglou.com> <35lmnu$pp9@hermes.louisville.edu> <35mkle$m0t@eis.wfunet.wfu.edu>
  1998. Nntp-Posting-Host: loopback.news.prodigy.com
  1999. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  2000.  
  2001. In article <35mkle$m0t@eis.wfunet.wfu.edu>,
  2002. Rick Matthews <matthews@wfu.edu> wrote:
  2003.  
  2004. :Old versions of kermit were much slower than zmodem on binary files,
  2005. :but current versions are not.  If you are using the current versions
  2006. :of kermit (C-kermit 5A on Unix and most other hosts, MS-Kermit 3.13
  2007. :for DOS), you can get file transfers slightly faster than zmodem.
  2008.  
  2009. Let's say that having used both protocols for many years, both the old
  2010. and current versions, both UNIX and DOS talking in various combinations,
  2011. using all of the tuning you mention below... I've never seen any
  2012. indication that this is possible, at least for transferring compressed
  2013. data files, which is all I care about.
  2014.  
  2015. I often use Kermit because I don't care about the speed for small files
  2016. and Kermit gives about 95-96% of zmodem speed, but that last few percent
  2017. always eludes me.
  2018.  
  2019. considering that my Kermit is always the latest and my zmodem is about
  2020. four years old, I think that means there are some tricks and
  2021. dependencies in getting the last little bit out of Kermit, and that
  2022. zmodem is a lot faster for the turnkey user.
  2023. :
  2024. :The *default* file transfer parameters are very conservative, and must
  2025. :be changed to get high throughput.  The update file that comes with
  2026. :MS-Kermit 3.13 describes this is some detail.  With the host I
  2027. :download from, I use the following ".kermrc" file, and get fast
  2028. :reliable transfers:
  2029. :
  2030. :
  2031. :set control unprefix all
  2032. :set control prefix 0 1 129
  2033. :set window 5
  2034. :set file type binary
  2035. :set receive packet 2000
  2036.  
  2037. A word about that, I believe that setting the packet size to about the
  2038. amount of data you transfer in one sec over a reliable link (v.42/TCP)
  2039. or about half that for an unreliable link (modem w/o error correction
  2040. and bad line) is optimal. On most systems further tuning gives 1-2% at
  2041. most.
  2042.  
  2043. You may have to set the total buffer size up (set buffers) to get this
  2044. with higher speeds.
  2045.  
  2046. Going through *some* terminal servers I have found that keeping the
  2047. packet size <=800 gives better performance. I set the total buffering
  2048. (packet size * window) to about 5-7 times the one second throughput of
  2049. the line. This is something which may help if you have a system which
  2050. just gives bad throughput all the time. You may have 10-15 windows doing
  2051. this, it works for me.
  2052.  
  2053. hope these experiences are useful to someone.
  2054. -- 
  2055. Speaking *from* but never *for* Prodigy
  2056.     "Pain builds moral fiber"  -my dad
  2057.     "Pain hurts"  -me
  2058.  
  2059. From news@columbia.edu Wed Sep 21 01:50:51 1994
  2060. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11572
  2061.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 21 Sep 1994 03:33:45 -0400
  2062. Received: by apakabar.cc.columbia.edu id AA03496
  2063.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 21 Sep 1994 03:33:41 -0400
  2064. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!MathWorks.Com!news.kei.com!news.byu.edu!news
  2065. From: haymoree@newt.ee.byu.edu (Ed Haymore)
  2066. Newsgroups: comp.protocols.kermit.misc
  2067. Subject: Re: Kermit and Zmodem?
  2068. Date: 21 Sep 1994 01:50:51 GMT
  2069. Organization: Brigham Young University
  2070. Lines: 15
  2071. Message-Id: <35o3hr$k0o@bones.et.byu.edu>
  2072. References: <35i5nc$eq9@larry.rice.edu> <CwEpts.9w4@cfanews.harvard.edu> <35nq2v$bmc@usenety1.news.prodigy.com>
  2073. Nntp-Posting-Host: newt.ee.byu.edu
  2074. X-Newsreader: TIN [version 1.2 PL2]
  2075. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  2076.  
  2077. Bill Davidsen (davidsen@usenety1.news.prodigy.com) wrote:
  2078. | In article <CwEpts.9w4@cfanews.harvard.edu>,
  2079. | :1200 cps = 12,000 bps.  That's not bad for a 14,400-bps modem.
  2080.  
  2081. | Since all 14.4 modes have v.42 error correcting, the limit is of the
  2082. | order of 9.3 bits/byte (V.42 uses 8/byte + overhead), the practical
  2083. | limit is around 1550cps, assuming DTE (serial) rates set to 19.2k,
  2084. | hardware flow control, measuring transfer of compressed data files.
  2085.  
  2086. I usually get above 1600cps on compressed files, with the DTE rate at
  2087. 38.4k.  How much overhead is there in V.42?
  2088.  
  2089. --
  2090. Ed Haymore   |   AA6EJ
  2091. ed@byu.edu   |   Linux -- a better OS than DOS.
  2092.  
  2093. From news@columbia.edu Wed Sep 21 01:55:06 1994
  2094. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11645
  2095.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 21 Sep 1994 03:36:58 -0400
  2096. Received: by apakabar.cc.columbia.edu id AA03589
  2097.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 21 Sep 1994 03:36:57 -0400
  2098. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!MathWorks.Com!news.kei.com!news.byu.edu!news
  2099. From: haymoree@newt.ee.byu.edu (Ed Haymore)
  2100. Newsgroups: comp.protocols.kermit.misc
  2101. Subject: Re: Exiting kermit without modem hangup
  2102. Date: 21 Sep 1994 01:55:06 GMT
  2103. Organization: Brigham Young University
  2104. Lines: 19
  2105. Distribution: world
  2106. Message-Id: <35o3pq$k0o@bones.et.byu.edu>
  2107. References: <35koc2INNvl@ope001.iao.ford.com> <35n9jm$kui@apakabar.cc.columbia.edu>
  2108. Nntp-Posting-Host: newt.ee.byu.edu
  2109. X-Newsreader: TIN [version 1.2 PL2]
  2110. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  2111.  
  2112. Frank da Cruz (fdc@fdc.cc.columbia.edu) wrote:
  2113. | In article <35koc2INNvl@ope001.iao.ford.com> jamulla@iao.ford.com (John  
  2114. | Jamulla) writes:
  2115. | > Is it possible to exit kermit without dropping the phone line?
  2116. | > 
  2117. | Remember there are hundreds of different Kermit programs.  For some the
  2118. | answer is yes, for others it is no.  In UNIX, of course, the answer is no.
  2119. | A fundamental aspect of the UNIX operating system is that when a process
  2120. | exits, all of its open files are closed.  There is no way around it.
  2121. | But this is not really the question you wanted to ask.
  2122.  
  2123. Actually, I used to exit kermit all the time without hanging up the
  2124. modem...  for my Zyxel, the command "at&d0" tells it not to hang up when
  2125. DTR is dropped.  But now I run term with kermit's shell command (!)
  2126. instead, often as part of my kermit startup script.
  2127.  
  2128. --
  2129. Ed Haymore    |   Duct tape is like the Force.  It has a light side
  2130. ed@byu.edu    |   and a dark side, and it holds the universe together.
  2131.  
  2132. From news@columbia.edu Wed Sep 21 16:58:43 1994
  2133. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09333
  2134.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 21 Sep 1994 12:58:58 -0400
  2135. Received: by apakabar.cc.columbia.edu id AA26186
  2136.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 21 Sep 1994 12:58:55 -0400
  2137. Path: news.columbia.edu!watsun.cc.columbia.edu!evarts
  2138. From: evarts@watsun.cc.columbia.edu (Maxwell E Evarts)
  2139. Newsgroups: comp.protocols.kermit.misc
  2140. Subject: Re: Kermit And FTP
  2141. Date: 21 Sep 1994 16:58:43 GMT
  2142. Organization: Columbia University
  2143. Lines: 49
  2144. Message-Id: <35poo3$pho@apakabar.cc.columbia.edu>
  2145. References: <35abck$6gc@louie.udel.edu> <35d5gi$6lm@chopin.udel.edu> <35kks2$r5u@strauss.udel.edu>
  2146. Nntp-Posting-Host: watsun.cc.columbia.edu
  2147. Summary: FTP owns the board...
  2148. Keywords: MS-Kermit TCP ETHDRV PC/TCP
  2149. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  2150.  
  2151. >Ah, but by using tnglass, I am limited to one connection.  If I use
  2152. >Kermit in raw TCPIP mode, I can get multiple connections, and better
  2153. >throughput.  Plus, if I shell to dos, I have more room to work with.
  2154. >The only thing I'm looking for is a way to get better file transer
  2155. >performance by using ftp instead, without having to give up any of the
  2156. >goodies that I prefer to use kermit for.
  2157.  
  2158. Unfortunately, the ETHDRV driver that PC/TCP loads owns the board, as it
  2159. sounds like you already understand.  Here's a clip from the the
  2160. MS-Kermit "beware" file that explains indicates PKTMUX as a possible
  2161. solution for the brave (or foolhardy :-) :
  2162.  
  2163. ------ Begin --------
  2164.  
  2165. Kermit always registers for the ARP and IP protocols.  In addition, but only
  2166. if you gave the command SET TCP ADDRESS RARP, it will also register for RARP.
  2167. Remember the rule:
  2168.  
  2169.   ONLY ONE APPLICATION PER PROTOCOL PER NETWORK BOARD!
  2170.  
  2171. That's why you can't run (say) PC-NFS and Kermit TCP/IP connections at
  2172. the same time.  Here are some hints for getting around this:
  2173.  
  2174.  . If PC-NFS comes with an Interrupt-14 redirector (similar to FTP
  2175.    Software's TNGLASS program), you can use that in conjunction with
  2176.    Kermit's SET PORT BIOS1.  Not as good Kermit's built-in TCP/IP
  2177.    TELNET, but better than nothing.
  2178.  
  2179.  . You can experiment with the PKTMUX driver.  This is supposed to let
  2180.    multiple TCP/IP stacks share the same network board.  Nobody knows
  2181.    very much about this, and a quick glance at the user manual is more
  2182.    than a little bit scary.  You can find PKTMUX on kermit.columbia.edu,
  2183.    directory packet-drivers/new, files pktdrv.exe and pktmux*.*.
  2184.  
  2185.  . You can install a second network board and give one to PC-NFS and
  2186.    the other to Kermit.  This is actually the best choice -- network
  2187.    boards don't cost much these days, especially compared to value of the
  2188.    amount of time you'd have to spend futzing with the other approaches.
  2189.  
  2190. ------ End -------
  2191.  
  2192.  
  2193. Hope this helps.
  2194.  
  2195. - Max
  2196. +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
  2197. Maxwell Evarts                     evarts@watsun.cc.columbia.edu
  2198. Kermit Distribution
  2199. Columbia University - AcIS         evarts@CUNIXF.BITNET
  2200.  
  2201. From news@columbia.edu Wed Sep 21 17:05:03 1994
  2202. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10044
  2203.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 21 Sep 1994 13:05:29 -0400
  2204. Received: by apakabar.cc.columbia.edu id AA26675
  2205.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 21 Sep 1994 13:05:23 -0400
  2206. Path: news.columbia.edu!usenet
  2207. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  2208. Newsgroups: comp.protocols.kermit.misc
  2209. Subject: Re: Kermit and Zmodem?
  2210. Date: 21 Sep 1994 17:05:03 GMT
  2211. Organization: Columbia University
  2212. Lines: 20
  2213. Distribution: World
  2214. Message-Id: <35pp3v$q0i@apakabar.cc.columbia.edu>
  2215. References: <jolomoCwHIIH.Jw7@netcom.com>
  2216. Nntp-Posting-Host: fdc.cc.columbia.edu
  2217. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  2218.  
  2219. In article <jolomoCwHIIH.Jw7@netcom.com> jolomo@netcom.com (Joe Morris)  
  2220. writes:
  2221. > On 18 Sep 1994 18:32:58 -0600 Kerry Schwab wrote:
  2222. > > Yes, look at the "REDIRECT" command.  Suppose you were trying to
  2223. > > recieve a file, you'd do "sz <file>", enter the kermit escape char,
  2224. > > then type "REDIRECT rz".
  2225. > Is this on the level? I'm using C-Kermit 5A(189) and don't have
  2226. > the redirect keyword -- which version do I need
  2227. 5A(190).  It's in Beta.
  2228.  
  2229. Anonymous ftp to kermit.columbia.edu, directory kermit/test/bin, binary
  2230. mode, file cku190.tar.Z (or .gz for gunzip).
  2231.  
  2232. In the archive, see the file ckurzsz.ini.
  2233.  
  2234. - Frank
  2235. x
  2236. x
  2237. x
  2238.  
  2239. From news@columbia.edu Wed Sep 21 16:37:17 1994
  2240. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27364
  2241.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 21 Sep 1994 16:37:17 -0400
  2242. Received: by apakabar.cc.columbia.edu id AA13383
  2243.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 21 Sep 1994 16:37:16 -0400
  2244. Path: news.columbia.edu!panix!MathWorks.Com!udel!nntp.sunbelt.net!pc164-10.org.tec.sc.us!gfoley
  2245. From: gfoley@org.tec.sc.us (Gary A. Foley)
  2246. Newsgroups: comp.protocols.kermit.misc
  2247. Subject: PRTSCRN
  2248. Date: Tue, 20 Sep 1994 15:46:47 UNDEFINED
  2249. Organization: Orangeburg-Calhoun TECH College
  2250. Lines: 2
  2251. Message-Id: <gfoley.13.0109606E@org.tec.sc.us>
  2252. Nntp-Posting-Host: pc164-10.org.tec.sc.us
  2253. X-Newsreader: Trumpet for Windows [Version 1.0 Rev B]
  2254. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  2255.  
  2256. How to print screen?  Using VT100.ini Control F2 turns on the printer and back 
  2257. off but I need to print the displayed screen.
  2258.  
  2259. From news@columbia.edu Wed Sep 21 21:04:50 1994
  2260. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29421
  2261.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 21 Sep 1994 17:05:19 -0400
  2262. Received: by apakabar.cc.columbia.edu id AA15427
  2263.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 21 Sep 1994 17:05:13 -0400
  2264. Path: news.columbia.edu!usenet
  2265. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  2266. Newsgroups: comp.protocols.kermit.misc
  2267. Subject: Re: PRTSCRN
  2268. Date: 21 Sep 1994 21:04:50 GMT
  2269. Organization: Columbia University
  2270. Lines: 26
  2271. Distribution: World
  2272. Message-Id: <35q75i$f0o@apakabar.cc.columbia.edu>
  2273. References: <gfoley.13.0109606E@org.tec.sc.us>
  2274. Nntp-Posting-Host: fdc.cc.columbia.edu
  2275. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  2276.  
  2277. In article <gfoley.13.0109606E@org.tec.sc.us> gfoley@org.tec.sc.us (Gary A.  
  2278. Foley) writes:
  2279. > How to print screen?  Using VT100.ini Control F2 turns on the printer and
  2280. > back off but I need to print the displayed screen.
  2281. >
  2282. Explained on pages 82-84 of "Using MS-DOS Kermit".  Very briefly, there
  2283. are two ways:
  2284.  
  2285.   1. Just push the Print Screen key.  This is a DOS function, having
  2286.       nothing to do with Kermit.
  2287.  
  2288.   2. Hold down the Ctrl key and press the End key on the numeric
  2289.      keypad.  This is a Kermit function.  By default, it does not
  2290.      actually print the screen, but rather copies it to a disk file
  2291.      whose name is (by default) KERMIT.SCN on the current disk and
  2292.      directory.
  2293.  
  2294. You can use method (2) to print the current screen on the printer by
  2295. first giving the command:
  2296.  
  2297.   SET DUMP PRN
  2298.  
  2299. to direct screen dumps to the PRN "file" (i.e. the printer).  For
  2300. additional details, please read the manual.
  2301.  
  2302. - Frank
  2303.  
  2304. From news@columbia.edu Wed Sep 21 17:14:00 1994
  2305. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01211
  2306.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 21 Sep 1994 17:27:59 -0400
  2307. Received: by apakabar.cc.columbia.edu id AA17152
  2308.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 21 Sep 1994 17:27:55 -0400
  2309. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!swrinde!cs.utexas.edu!uunet!newsflash.concordia.ca!pavo.concordia.ca!j_yates
  2310. From: j_yates@pavo.concordia.ca (YATES, JODYE)
  2311. Newsgroups: comp.protocols.kermit.misc
  2312. Subject: converting kermit downloads to ascii or WordPerf.
  2313. Date: 21 Sep 1994 12:14 -0500
  2314. Organization: Concordia University
  2315. Lines: 16
  2316. Distribution: world
  2317. Message-Id: <21SEP199412144358@pavo.concordia.ca>
  2318. Nntp-Posting-Host: pavo7.concordia.ca
  2319. News-Software: VAX/VMS VNEWS 1.41    
  2320. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  2321.  
  2322. Hi there. I use Kermit to download text files from somewhere. The problem is
  2323. that when I load the files with a simple text editor there are hard returns
  2324. inserted at the end of each line. Moreover, WordPerfect 6 doesn't even
  2325. recognize the file format when I try to convert these files and when I
  2326. load them straight into WP, there are hard returns all over the place, so
  2327. the text looks awful. My question therefore is how do I convert kermit
  2328. downloads (I think they are 7-bit) to either standard ascii or to WP?
  2329.  
  2330. All help would be appreciated.
  2331.  
  2332. Jodye.
  2333.  
  2334. email:J_Yates@pavo.concordia.ca
  2335.  
  2336.  
  2337.  
  2338.  
  2339. From news@columbia.edu Wed Sep 21 22:04:15 1994
  2340. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03725
  2341.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 21 Sep 1994 18:04:20 -0400
  2342. Received: by apakabar.cc.columbia.edu id AA19627
  2343.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 21 Sep 1994 18:04:18 -0400
  2344. Path: news.columbia.edu!watsun.cc.columbia.edu!evarts
  2345. From: evarts@watsun.cc.columbia.edu (Maxwell E Evarts)
  2346. Newsgroups: comp.protocols.kermit.misc
  2347. Subject: Re: converting kermit downloads to ascii or WordPerf.
  2348. Date: 21 Sep 1994 22:04:15 GMT
  2349. Organization: Columbia University
  2350. Lines: 28
  2351. Message-Id: <35qakv$j59@apakabar.cc.columbia.edu>
  2352. References: <21SEP199412144358@pavo.concordia.ca>
  2353. Nntp-Posting-Host: watsun.cc.columbia.edu
  2354. Summary: Uhh, not a Kermit problem...
  2355. Keywords: DOS CRLF WP Conversion
  2356. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  2357.  
  2358. In article <21SEP199412144358@pavo.concordia.ca>,
  2359. YATES, JODYE <j_yates@pavo.concordia.ca> wrote:
  2360. >Hi there. I use Kermit to download text files from somewhere. The problem is
  2361. >that when I load the files with a simple text editor there are hard returns
  2362. >inserted at the end of each line. Moreover, WordPerfect 6 doesn't even
  2363. >recognize the file format when I try to convert these files and when I
  2364. >load them straight into WP, there are hard returns all over the place, so
  2365. >the text looks awful. My question therefore is how do I convert kermit
  2366. >downloads (I think they are 7-bit) to either standard ascii or to WP?
  2367.  
  2368. Uhh, I don't think this is really a Kermit problem.  Standard ASCII
  2369. format for DOS means a CR-LF (carriage-return+line-feed) at the end of
  2370. each line, which translates into a "hard return" at the end of each line
  2371. in WP terms.  Any word processor worth its salt ought to be able read
  2372. ASCII text in such a way that converts CR-LF combos into whatever it's
  2373. internal end-of-line convention calls for.
  2374.  
  2375. I've never used WP 6, but in 5.1 you can do it by saying Ctrl-F5,1,3.
  2376.  
  2377. Hope this helps.
  2378.  
  2379. - Max
  2380.  
  2381.  
  2382. +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
  2383. Maxwell Evarts                     evarts@watsun.cc.columbia.edu
  2384. Kermit Distribution
  2385. Columbia University - AcIS         evarts@CUNIXF.BITNET
  2386.  
  2387. From news@columbia.edu Wed Sep 21 11:46:39 1994
  2388. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01555
  2389.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 21 Sep 1994 19:13:08 -0400
  2390. Received: by apakabar.cc.columbia.edu id AA24403
  2391.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 21 Sep 1994 19:13:07 -0400
  2392. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!malgudi.oar.net!swiss.ans.net!howland.reston.ans.net!cs.utexas.edu!news.unt.edu!jove!chrisl
  2393. From: chrisl@jove.acs.unt.edu (Lambright Christian P)
  2394. Newsgroups: comp.protocols.kermit.misc
  2395. Subject: Won't 'take mscustom.ini'
  2396. Date: 21 Sep 1994 11:46:39 GMT
  2397. Organization: University of North Texas
  2398. Lines: 13
  2399. Distribution: inet
  2400. Message-Id: <35p6ev$38e@hermes.unt.edu>
  2401. Nntp-Posting-Host: jove.acs.unt.edu
  2402. X-Newsreader: TIN [version 1.2 PL2]
  2403. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  2404.  
  2405. I'd appreciate any help from someone who know exactly how to get
  2406. the .ini files set in kermit 3.13. Supposedly the kermit.ini will
  2407. use the mscustom.ini if it's there, which it is, but when I try
  2408. it, it doesn't. I changed things in mscustom.ini as suggested but
  2409. repeatedly when invoking 'kermit', it doesn't seem to notice that
  2410. there even is a mscustom.ini. Only those things set/defined in the
  2411. kermit.ini file get called, and I notice that things change only if
  2412. I change them in that file.
  2413.  Also, I want to set up different .ini files to use for either a 
  2414. vax system or a unix. Is this necessary or even desirable?
  2415.  Any help will be appreciated. 
  2416. Thanks.
  2417. -Chris
  2418.  
  2419. From news@columbia.edu Wed Sep 21 11:47:04 1994
  2420. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01565
  2421.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 21 Sep 1994 19:13:21 -0400
  2422. Received: by apakabar.cc.columbia.edu id AA24409
  2423.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 21 Sep 1994 19:13:19 -0400
  2424. Newsgroups: comp.protocols.kermit.misc
  2425. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!malgudi.oar.net!swiss.ans.net!howland.reston.ans.net!EU.net!sunic!news.chalmers.se!news.gu.se!pew.psy.gu.se!psybk
  2426. From: psybk@pew.psy.gu.se (Bjorn Kihlberg)
  2427. Subject: Re: Sending Binary Files
  2428. Message-Id: <CwHA2I.FH0@news.gu.se>
  2429. Sender: news@news.gu.se (USENET News System)
  2430. Nntp-Posting-Host: pew.psy.gu.se
  2431. Organization: Gothenburg University
  2432. X-Newsreader: TIN [version 1.2 PL2]
  2433. References: <kreidler.780066887@reindeer>
  2434. Date: Wed, 21 Sep 1994 11:47:04 GMT
  2435. Lines: 23
  2436. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  2437.  
  2438. Joe Kreidler (kreidler@reindeer.cig.mot.com) wrote:
  2439. : Can someone inform me how to transfer a binary file with Kermit. I have
  2440. : not had any luck.
  2441.  
  2442. : Thanks in Advance,
  2443.  
  2444. : ---------------------------------------------------------------
  2445. : Joe Kreidler                    1501 W Shure Drive - Room 1315
  2446. : Motorola Cellular        Arlington Heights, IL 60004
  2447. : kreidler@cig.mot.com        708-632-4656
  2448. :                 FAX: 708-632-6519
  2449.  
  2450. : network: an advanced version of "connect the dots."
  2451. : ---------------------------------------------------------------
  2452.  
  2453. Put a line into .kermrc that says: set file type binary
  2454. Curiously enough it does not default to binary. Anyone know why?
  2455.  
  2456. --
  2457. --------------------------------------------------------------------
  2458.  Bjorn Kihlberg                 |    email:  bk@psy.gu.se
  2459.  (C) All Copyrighted            |            bjorn@trillium.se
  2460.  
  2461.  
  2462. From news@columbia.edu Wed Sep 21 23:48:05 1994
  2463. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03101
  2464.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 21 Sep 1994 19:48:20 -0400
  2465. Received: by apakabar.cc.columbia.edu id AA26599
  2466.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 21 Sep 1994 19:48:12 -0400
  2467. Path: news.columbia.edu!usenet
  2468. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  2469. Newsgroups: comp.protocols.kermit.misc
  2470. Subject: Re: Sending Binary Files
  2471. Date: 21 Sep 1994 23:48:05 GMT
  2472. Organization: Columbia University
  2473. Lines: 19
  2474. Distribution: World
  2475. Message-Id: <35qgnl$psp@apakabar.cc.columbia.edu>
  2476. References: <CwHA2I.FH0@news.gu.se>
  2477. Nntp-Posting-Host: fdc.cc.columbia.edu
  2478. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  2479.  
  2480. In article <CwHA2I.FH0@news.gu.se> psybk@pew.psy.gu.se (Bjorn Kihlberg)  
  2481. writes:
  2482. > Joe Kreidler (kreidler@reindeer.cig.mot.com) wrote:
  2483. > : Can someone inform me how to transfer a binary file with Kermit. I have
  2484. > : not had any luck.
  2485. > Put a line into .kermrc that says: set file type binary
  2486. > Curiously enough it does not default to binary. Anyone know why?
  2487. It has to default to something.  If you don't like it to default to text
  2488. (as it does), then by all means put "set file type binary" into your
  2489. Kermit initialization file (MSKERMIT.INI, .kermrc, CKERMIT.INI, etc,
  2490. depending on which Kermit version we're talking about).
  2491.  
  2492. - Frank
  2493.  
  2494. x
  2495. x
  2496. x
  2497. x
  2498.  
  2499. From news@columbia.edu Wed Sep 21 12:12:30 1994
  2500. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03134
  2501.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 21 Sep 1994 19:49:19 -0400
  2502. Received: by apakabar.cc.columbia.edu id AA26807
  2503.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 21 Sep 1994 19:49:17 -0400
  2504. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!MathWorks.Com!news.duke.edu!news-feed-1.peachnet.edu!concert!news.wfu.edu!matthews
  2505. From: matthews@wfu.edu (Rick Matthews)
  2506. Newsgroups: comp.protocols.kermit.misc
  2507. Subject: Re: Sending Binary Files
  2508. Date: 21 Sep 1994 12:12:30 GMT
  2509. Organization: Wake Forest University
  2510. Lines: 14
  2511. Message-Id: <35p7ve$9o4@eis.wfunet.wfu.edu>
  2512. References: <kreidler.780066887@reindeer>
  2513. Nntp-Posting-Host: acg60.wfunet.wfu.edu
  2514. X-Newsreader: TIN [version 1.2 PL2]
  2515. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  2516.  
  2517. Joe Kreidler (kreidler@reindeer.cig.mot.com) wrote:
  2518. : Can someone inform me how to transfer a binary file with Kermit. I have
  2519. : not had any luck.
  2520.  
  2521. Tell the sending kermit
  2522.  
  2523.     set file type binary
  2524.  
  2525.  
  2526. --
  2527. Rick Matthews                     matthews@wfu.edu            Ham radio:
  2528. Wake Forest University            910-759-5340   (Voice)      WA4GSP
  2529. Winston-Salem, NC 27109-7507      910-759-6142   (FAX)
  2530.  
  2531.  
  2532. From news@columbia.edu Wed Sep 21 23:49:46 1994
  2533. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03149
  2534.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 21 Sep 1994 19:49:54 -0400
  2535. Received: by apakabar.cc.columbia.edu id AA26872
  2536.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 21 Sep 1994 19:49:53 -0400
  2537. Path: news.columbia.edu!usenet
  2538. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  2539. Newsgroups: comp.protocols.kermit.misc
  2540. Subject: Re: Won't 'take mscustom.ini'
  2541. Date: 21 Sep 1994 23:49:46 GMT
  2542. Organization: Columbia University
  2543. Lines: 21
  2544. Distribution: World
  2545. Message-Id: <35qgqq$q7e@apakabar.cc.columbia.edu>
  2546. References: <35p6ev$38e@hermes.unt.edu>
  2547. Nntp-Posting-Host: fdc.cc.columbia.edu
  2548. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  2549.  
  2550. In article <35p6ev$38e@hermes.unt.edu> chrisl@jove.acs.unt.edu (Lambright  
  2551. Christian P) writes:
  2552. > I'd appreciate any help from someone who know exactly how to get
  2553. > the .ini files set in kermit 3.13. Supposedly the kermit.ini will
  2554. > use the mscustom.ini if it's there, which it is, but when I try
  2555. > it, it doesn't. I changed things in mscustom.ini as suggested but
  2556. > repeatedly when invoking 'kermit' ...
  2557. >
  2558. That's because the way that MSCUSTOM.INI gets executed is by a TAKE
  2559. command in MSKERMIT.INI.
  2560.  
  2561. We recommend that you NOT change MSKERMIT.INI, and that you put all of
  2562. your customizations into MSCUSTOM.INI.
  2563.  
  2564. Then you won't get into this kind of trouble.
  2565.  
  2566. - Frank
  2567.  
  2568. x
  2569. x
  2570. x
  2571.  
  2572. From news@columbia.edu Wed Sep 21 17:09:11 1994
  2573. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11626
  2574.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 21 Sep 1994 22:50:12 -0400
  2575. Received: by apakabar.cc.columbia.edu id AA09731
  2576.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 21 Sep 1994 22:50:10 -0400
  2577. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!swiss.ans.net!prodigy.com!prodigy.com!not-for-mail
  2578. From: davidsen@usenety1.news.prodigy.com (Bill Davidsen)
  2579. Newsgroups: comp.protocols.kermit.misc
  2580. Subject: Re: Kermit and Zmodem?
  2581. Date: 21 Sep 1994 13:09:11 -0400
  2582. Organization: Prodigy Services
  2583. Lines: 23
  2584. Message-Id: <35ppbn$cv9@usenety1.news.prodigy.com>
  2585. References: <35i5nc$eq9@larry.rice.edu> <CwEpts.9w4@cfanews.harvard.edu> <35nq2v$bmc@usenety1.news.prodigy.com> <35o3hr$k0o@bones.et.byu.edu>
  2586. Nntp-Posting-Host: loopback.news.prodigy.com
  2587. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  2588.  
  2589. In article <35o3hr$k0o@bones.et.byu.edu>,
  2590. Ed Haymore <haymoree@newt.ee.byu.edu> wrote:
  2591.  
  2592. :I usually get above 1600cps on compressed files, with the DTE rate at
  2593. :38.4k.  How much overhead is there in V.42?
  2594.  
  2595. Negative overhead, believe it or not. Without V.42 you send 10 bit/byte,
  2596. with start and stop bits. With V.42 you use synchronous data between the
  2597. modems, so you only have (from memory) about 8.3 bits/byte. Kermit
  2598. generally adds enough overhead to bring the overall speed dow to the
  2599. ballpark of 9.3 bits/byte, although fine tuning can improve on this
  2600. somewhat. At 1700cps you are getting about all the modem can give you.
  2601.  
  2602. I quoted 1550 as being a reasonable goal, compared to whatever the
  2603. original poster mentioned (1400?), rather than as an absolute limit. I
  2604. don't doubt that you can get a bit more if you work at it. For
  2605. compressed files I would not expect going above 19.2 to help, but if you
  2606. are running v.42bis (compression in the modem) you can get speeds up to
  2607. 115.2k (but more like 45k on any data I've thought was "typical").
  2608. -- 
  2609. Speaking *from* but never *for* Prodigy
  2610.     "Pain builds moral fiber"  -my dad
  2611.     "Pain hurts"  -me
  2612.  
  2613. From news@columbia.edu Thu Sep 22 00:37:58 1994
  2614. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19553
  2615.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 22 Sep 1994 01:19:54 -0400
  2616. Received: by apakabar.cc.columbia.edu id AA18152
  2617.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 22 Sep 1994 01:19:52 -0400
  2618. Path: news.columbia.edu!sol.ctr.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!news.sprintlink.net!indirect.com!monty
  2619. From: monty@indirect.com (Jim Monty)
  2620. Newsgroups: comp.protocols.kermit.misc
  2621. Subject: [?] MS-Kermit 3.13 and SLIP8250 11.7
  2622. Date: 22 Sep 1994 00:37:58 GMT
  2623. Organization: Internet Direct, Inc.
  2624. Lines: 42
  2625. Message-Id: <35qjl6$1ua@herald.indirect.com>
  2626. Nntp-Posting-Host: bud.indirect.com
  2627. X-Newsreader: TIN [version 1.2 PL2]
  2628. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  2629.  
  2630. Someone asked this question recently in comp.protocols.tcp-ip.ibmpc, but 
  2631. it was never answered:  Why doesn't version 11.7 of the Crynwyr SLIP 
  2632. packet driver SLIP8250 work with MS-Kermit 3.13?
  2633.  
  2634. I load the packet driver with this command:
  2635.  
  2636. C:\SLIP8250>slip8250 0x60 -h slip 4 0x3f8 57600
  2637.  
  2638. After successfully connecting to the remote SLIP server, I escape back to 
  2639. the MS-Kermit prompt and do this:
  2640.  
  2641. MS-Kermit>set port tcp/ip indirect.com
  2642. MS-Kermit>connect
  2643. Cannot attach to an Ethernet Packet Driver or a Novell ODI driver.
  2644.  Unable to initialize TCP/IP system, quitting
  2645. ?Cannot start the connection.
  2646. MS-Kermit>
  2647.  
  2648. I can, at this point, quit MS-Kermit, unload the SLIP8250 version 11.7 
  2649. driver, load SLIP8250 version 9.6, re-invoke MS-Kermit, then establish a 
  2650. TCP/IP connection without any problem.  What's different about the newer 
  2651. version of the packet driver?  I'd like to be able to use it instead of 
  2652. the older version because its -u option allows me to unload it from 
  2653. memory when I'm through with it; version 9.6 lacks this capability.
  2654.  
  2655. Is there a SLIP packet driver available that's any better than SLIP8250
  2656. and works well with MS-Kermit 3.13? 
  2657.  
  2658. And, in case anyone cares, I just started using MS-Kermit and have fallen
  2659. in love with it!  The VT-series terminal emulation is unsurpassed, and the
  2660. built-in TCP/IP ``stack'' (is that the right lingo?) has enabled me to
  2661. access the Internet via a SLIP connection from a wimpy i80386SX machine
  2662. with 2MB of RAM and a 40MB hard drive that doesn't ``do'' Microsoft
  2663. Windows.  The contributions to this news groups by Mr. da Cruz are superb,
  2664. as well.
  2665.  
  2666. Thanks for your help.
  2667.  
  2668.  
  2669. ---
  2670. Jim Monty
  2671. monty@indirect.com
  2672.  
  2673. From news@columbia.edu Wed Sep 21 19:29:59 1994
  2674. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23370
  2675.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 22 Sep 1994 03:08:17 -0400
  2676. Received: by apakabar.cc.columbia.edu id AA21004
  2677.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 22 Sep 1994 03:08:16 -0400
  2678. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!convex!convex!insosf1.infonet.net!usenet
  2679. From: phelanp@ins.infonet.net (Patrick Phelan)
  2680. Newsgroups: comp.protocols.kermit.misc
  2681. Subject: MS-Kermit with Intel Satisfaxtion 400/i
  2682. Date: 21 Sep 1994 19:29:59 GMT
  2683. Organization: INS Info Services, Des Moines, IA USA
  2684. Lines: 6
  2685. Message-Id: <35q1jn$nbs@insosf1.infonet.net>
  2686. Reply-To: phelanp@ins.infonet.net
  2687. Nntp-Posting-Host: ins.infonet.net
  2688. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  2689.  
  2690. Has anyone found the magic combination of settings to get MS-Kermit 3.13
  2691. to work with an Intel Satisfaxtion 400/i ?  I keep trying to get this to
  2692. work, but never have enough time to really see it through.
  2693.  
  2694. Thanks in advance for any ideas!
  2695. -PatP
  2696.  
  2697. From news@columbia.edu Wed Sep 21 19:56:12 1994
  2698. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23791
  2699.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 22 Sep 1994 03:20:58 -0400
  2700. Received: by apakabar.cc.columbia.edu id AA21457
  2701.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 22 Sep 1994 03:20:55 -0400
  2702. Control: newgroup comp.protocols.kermit.misc
  2703. Newsgroups: comp.protocols.kermit.misc
  2704. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!gatech!swrinde!news.dell.com!tadpole.com!uunet!tale
  2705. From: tale@uunet.uu.net (David C Lawrence)
  2706. Subject: newgroup comp.protocols.kermit.misc
  2707. Approved: tale@uunet.uu.net
  2708. Sender: tale@uunet.uu.net (David C Lawrence)
  2709. Date: Wed, 21 Sep 1994 19:56:12 GMT
  2710. Message-Id: <CwHwpp.Lvp@uunet.uu.net>
  2711. Lines: 19
  2712. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  2713.  
  2714. comp.protocols.kermit.misc is an unmoderated newsgroup which passed its vote
  2715. for creation by 233:28 as reported in news.announce.newgroups on 7 Sep 1994.
  2716.  
  2717. For your newsgroups file:
  2718. comp.protocols.kermit.misc    Kermit protocol and software.
  2719.  
  2720. The charter, culled from the call for votes:
  2721.  
  2722.   The unmoderated newsgroup comp.protocols.kermit.misc will be open to all
  2723.   topics related to Kermit protocol and software, including questions and
  2724.   answers regarding the acquisition and use of the software, and discussions
  2725.   of performance and protocol issues.  It is not intended as a software
  2726.   announcement forum or a software distribution method, e.g. posting of
  2727.   massive amounts of source code, although items such as short script
  2728.   programs (e.g. dialing scripts for new kinds of modems) of general interest
  2729.   can be posted, but with the understanding that the definitive source for
  2730.   Kermit software is the repository at Columbia University, and the act of
  2731.   posting an item to this newsgroup does not necessarily enter it into this
  2732.   repository.
  2733.  
  2734. From news@columbia.edu Thu Sep 22 00:34:12 1994
  2735. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27043
  2736.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 22 Sep 1994 04:40:41 -0400
  2737. Received: by apakabar.cc.columbia.edu id AA22757
  2738.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 22 Sep 1994 04:40:38 -0400
  2739. Path: news.columbia.edu!sol.ctr.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!gatech!howland.reston.ans.net!EU.net!sun4nl!news.nic.surfnet.nl!tudelft.nl!et.tudelft.nl!jbrhebergen
  2740. From: jbrhebergen@et.tudelft.nl
  2741. Newsgroups: comp.protocols.kermit.misc
  2742. Subject: Kermit/SLIP/modem <-- Question!
  2743. Message-Id: <1994Sep22.023412.4321@tudedv.et.tudelft.nl>
  2744. Date: 22 Sep 94 02:34:12 +0200
  2745. Organization: TU-Delft, dpt of Electrical Engineering
  2746. Lines: 21
  2747. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  2748.  
  2749. Hi there,
  2750.  
  2751. I've been using Kermit v3.13 for quite a while now on my 8086 8Mhz PC with a
  2752. 14k4 modem. Recently SLIP has become available here at our university. How do I
  2753. go about rigging Kermit for use with SLIP? Is it possible? Our sys admin says
  2754. no but I am not convinced. All I need is a slip-packetdriver right? and set
  2755. some kermit settings, right?
  2756.  
  2757. Can anyone enlighten me on this subject?
  2758.  
  2759. Thanks!
  2760.  
  2761. Jan
  2762.  
  2763.  
  2764. ------------------------------------------------------------------------------
  2765. J.B. Rhebergen (JayBee)                   tel: +31 15 144660
  2766. M. Gouweloospoort 8                       fax: +31 15 144660 (phone first)
  2767. 2611 JN  Delft                            e-mail-1: JBRHEBERGEN@et.tudelft.nl
  2768. The Netherlands                           e-mail-2: rheberg@morra.et.tudelft.nl
  2769. ------------------------------------------------------------------------------
  2770.  
  2771. From news@columbia.edu Thu Sep 22 07:37:07 1994
  2772. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12983
  2773.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 22 Sep 1994 07:24:36 -0400
  2774. Received: by apakabar.cc.columbia.edu id AA25147
  2775.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 22 Sep 1994 07:24:34 -0400
  2776. Path: news.columbia.edu!sol.ctr.columbia.edu!usc!howland.reston.ans.net!EU.net!Germany.EU.net!news.dfn.de!zeus.rbi.informatik.uni-frankfurt.de!terra.wiwi.uni-frankfurt.de!news.th-darmstadt.de!fauern!rz.unibw-muenchen.de!applsrv!p41bsmk
  2777. From: p41bsmk@applsrv.rz.unibw-muenchen.de (Peter Schmolck)
  2778. Newsgroups: comp.protocols.kermit.misc
  2779. Subject: 16550A, PCI (Was: Computer hangs when line is dropped)
  2780. Date: 22 Sep 1994 07:37:07 GMT
  2781. Organization: University of the Federal Armed Forces Munich
  2782. Lines: 52
  2783. Message-Id: <35rc73$l8s@archsrv.rz.unibw-muenchen.de>
  2784. References: <35pesr$sun@liberator.et.tudelft.nl>
  2785. Nntp-Posting-Host: applsrv.rz.unibw-muenchen.de
  2786. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  2787.  
  2788. >I recently got a new PC. I transferred Kermit and all the scripts
  2789. >it uses from my old to my new system. 
  2790. [......]
  2791. >On my old system (286, EMS, 16550A) this worked perfect. On my
  2792. >new system (486, PCI, EMM386, 16550A) the computer hangs as soon
  2793. >as the line is dropped after filling in all info.
  2794.  
  2795. >If I start Kermit under Windows, everything works just fine, but then
  2796. >the serial ports just look like 8250's and all benefits of high speed
  2797. >UARTS are therefore lost.
  2798.  
  2799. In another usegroup (can't rem. exact name, something like 
  2800. "ms-windows.comm") someone posted a Microsoft info file that sayed 16550A 
  2801. support for *DOS programs* is a new feature of WfW 3.11 that Win3.1 did 
  2802. not have.
  2803.  
  2804. [....]
  2805.  
  2806. >Are there any known problems with PCI systems, 16550A's and Kermit?
  2807.  
  2808. I also changed from my old (486, VESA, no 16550A, no ethernet card) to a
  2809. new PC (Pentium PCI system with 16550A, ethernet card) and also have 2 new
  2810. problems now: 
  2811.  
  2812. (1) Sometimes, but not very often, when I first start Kermit, the system
  2813. hangs, and the Ctrl-Alt-Del would not help. I guess this non-stable error
  2814. happens when Kermit analyses the Comm-Port. With my two former PCs I
  2815. already observed that Kermit *sometimes* (not very often) cannot correctly
  2816. initialize the Comm Port, with a message like "wrong hardware found for
  2817. port" or something similar. After exiting Kermit and restarting it for a
  2818. 2nd, sometimes third, time everything would work fine. 
  2819.  
  2820. (2) I used to run my connection with 19200 Baud before. This is still
  2821. possible with my new PC in terminal mode and when transferring
  2822. "non-binary" files, however when I try to download zip-Files I get lots of
  2823. retries. No problem with 9600 Baud. The 19200-Baud problem is independent
  2824. of whether or not I start Kermit under Windows (WfW3.11), and independent
  2825. of COM2Fifo=0/1 in system.ini. It also happens when I use Win-Kermit
  2826. (Win100) instead (although, due to the maximal block length 96, the chances
  2827. of getting the entire file before reaching the max retries limit are
  2828. better). 
  2829.  
  2830. So, I also would like to hear if there are known problems with PCI, 
  2831. 16550A and Kermit.
  2832.  
  2833. Thanx in advance
  2834. Peter
  2835. --
  2836. Peter Schmolck                                p41bsmk@rz.unibw-muenchen.de
  2837. Department of Education                       Phone :     +49-89-6004-2056
  2838. Univ. of the Federal Armed Forces Munich      Fax   :     +49-89-6004-3968
  2839. 85577 NEUBIBERG, GERMANY    
  2840.  
  2841. From news@columbia.edu Thu Sep 22 12:38:18 1994
  2842. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02612
  2843.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 22 Sep 1994 08:38:29 -0400
  2844. Received: by apakabar.cc.columbia.edu id AA26848
  2845.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 22 Sep 1994 08:38:25 -0400
  2846. Path: news.columbia.edu!usenet
  2847. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  2848. Newsgroups: comp.protocols.kermit.misc
  2849. Subject: Re: Kermit/SLIP/modem <-- Question!
  2850. Date: 22 Sep 1994 12:38:18 GMT
  2851. Organization: Columbia University
  2852. Lines: 50
  2853. Distribution: World
  2854. Message-Id: <35rtrq$q6s@apakabar.cc.columbia.edu>
  2855. References: <1994Sep22.023412.4321@tudedv.et.tudelft.nl>
  2856. Nntp-Posting-Host: fdc.cc.columbia.edu
  2857. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  2858.  
  2859. In article <1994Sep22.023412.4321@tudedv.et.tudelft.nl>  
  2860. jbrhebergen@et.tudelft.nl writes:
  2861. > I've been using Kermit v3.13 for quite a while now on my 8086 8Mhz PC with
  2862. > a 14k4 modem. Recently SLIP has become available here at our university.
  2863. > How do I go about rigging Kermit for use with SLIP? Is it possible? Our
  2864. > sys admin says no but I am not convinced. All I need is a slip-packetdriver
  2865. > right? and set some kermit settings, right?
  2866. Right.  From the KERMIT.HLP file on your MS-DOS Kermit 3.13 diskette:
  2867.  
  2868. MAKING SLIP CONNECTIONS
  2869.  
  2870. To make a SLIP (Serial Line IP) connection, follow these steps:
  2871.  
  2872. 1. SET PORT 1
  2873.    (or whichever serial port you will be using for the SLIP connection).
  2874.  
  2875. 2. SET SPEED 19200
  2876.    (or whatever speed you will be using)
  2877.  
  2878. 3. SET FLOW RTS/CTS (or NONE)
  2879.    Don't use Xon/Xoff flow control on a SLIP connection!  SLIP and Xon/Xoff
  2880.    are incompatible with each other.
  2881.  
  2882. 4. Establish a connection to the terminal server or other device that will be
  2883.    providing SLIP service.  Determine the IP address and other information
  2884.    (e.g. gateway address) that it has assigned to you.    Normally, these are
  2885.    displayed on your screen before the terminal server enters SLIP mode.
  2886.  
  2887. 5. Escape back to the MS-Kermit prompt and EXIT from MS-DOS Kermit.  The
  2888.    connection is left open.
  2889.  
  2890. 6. Start the SLIP8250 driver, telling it to use the same port (hex address
  2891.    and IRQ number must be supplied) and speed (decimal) used in (1) and
  2892.    (2) above, and to use hardware flow control (-h), for example:
  2893.  
  2894.       slip8250 0x60 -h slip 4 0x3f8 19200
  2895.  
  2896. 7. Start MS-DOS Kermit again.  Do NOT give it a SET PORT command for the
  2897.    serial port where SLIP is running.  Instead, give the SET TCP ADDRESS,
  2898.    SET TCP GATEWAY, and other necessary SET TCP commands.  Then, to make
  2899.    a connection, use SET PORT TCP <address>, where <address> is the IP
  2900.    hostname or address of the IP host you want to connect to.
  2901.  
  2902. Note: In version 3.13 and later, it is also possible to obtain BOOTP service
  2903. on a SLIP connection if your SLIP server is configured to provide it (for
  2904. example, Cisco terminal servers can do this).  Also, MS-DOS Kermit 3.13's
  2905. SHOW COMMUNICATIONS command will display the IP address of the BOOTP server.
  2906.  
  2907. - Frank
  2908.  
  2909. From news@columbia.edu Thu Sep 22 13:01:22 1994
  2910. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03707
  2911.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 22 Sep 1994 09:01:31 -0400
  2912. Received: by apakabar.cc.columbia.edu id AA27662
  2913.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 22 Sep 1994 09:01:29 -0400
  2914. Path: news.columbia.edu!usenet
  2915. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  2916. Newsgroups: comp.protocols.kermit.misc
  2917. Subject: Re: MS-Kermit with Intel Satisfaxtion 400/i
  2918. Date: 22 Sep 1994 13:01:22 GMT
  2919. Organization: Columbia University
  2920. Lines: 92
  2921. Distribution: World
  2922. Message-Id: <35rv72$r0c@apakabar.cc.columbia.edu>
  2923. References: <35q1jn$nbs@insosf1.infonet.net>
  2924. Nntp-Posting-Host: fdc.cc.columbia.edu
  2925. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  2926.  
  2927. In article <35q1jn$nbs@insosf1.infonet.net>
  2928. phelanp@ins.infonet.net (Patrick Phelan) writes:
  2929. > Has anyone found the magic combination of settings to get MS-Kermit 3.13
  2930. > to work with an Intel Satisfaxtion 400/i ?  I keep trying to get this to
  2931. > work, but never have enough time to really see it through.
  2932. Not to my knowledge, although we have had quite a few inquiries about it.
  2933. We do not have an Intel modem on hand, nor any documentation.  If we had
  2934. the documentation, we could easily adapt one of the existing modem dialing
  2935. scripts.  So could you.  Here is our current collection of modem scripts:
  2936.  
  2937.     Modem Type             DOS Filename  Internet
  2938.  
  2939.   *  AT&T DataPort 14400    DATAPORT.SCR  kermit/a/msmdatap.scr
  2940.   *  Boca 14.4 Faxmodem     BOCA.SCR      kermit/a/msmboca.scr
  2941.   *  Digicom Connection144+ CONN144P.SCR  kermit/a/msmc144p.scr
  2942.      Hayes 1200 or 2400     HAYES.SCR     kermit/a/msmhayes.scr
  2943.   *  Hayes Ultra 144        ULTRA144.SCR  kermit/a/msmultra.scr
  2944.   *  Multitech MT1432       MT1432.SCR    kermit/a/msmmt1432.scr
  2945.   *  Penril Alliance V.32   PENRIL.SCR    kermit/a/msmpenril.scr
  2946.   *  Practical Peripherals  PP14400.SCR   kermit/a/msmpp14400.scr
  2947.      Rolm CBX DCM           ROLM.SCR      kermit/a/msmrolm.scr
  2948.   *  SupraFAXmodem V.32bis  SUPRA.SCR     kermit/a/msmsupra.scr
  2949.   *  Telebit QBlazer V.32   QBLAZER.SCR   kermit/a/msmqblazer.scr
  2950.   *  Telebit T3000 V.32bis  T3000.SCR     kermit/a/msmt3000.scr
  2951.   *  US Robotics Sportster  SPORT.SCR     kermit/a/msmsport.scr
  2952.      Vadic VA2400PA         VA2400PA.SCR  kermit/a/msmva2400.scr
  2953.   ** VIVA 2442ef FAX/MODEM  VIVA.SCR      kermit/a/msmviva.scr
  2954.   *  Wang 14/14i or 14/14e  WANG14.SCR    kermit/a/msmwang14.scr
  2955.   *  Zoltrix Platinum 14400 PP14400.SCR   kermit/a/msmpp14400.scr
  2956.   *  Zoom Telephonics 14400 ZOOM.SCR      kermit/a/msmzoom.scr
  2957.   *  ZyXEL 1496             ZYXEL.SCR     kermit/a/msmzyxel.scr
  2958.  
  2959. The ones marked with a single asterisk are for high-speed modems.  They
  2960. are all constructed more or less according to the following steps:
  2961.  
  2962.  1. Get out your modem manual.
  2963.  
  2964.  2. Determine the highest speed at which your modem "autobauds", i.e.
  2965.     at which you can type "AT" and carriage return, and the AT echoes,
  2966.     and the modem prints OK.  Hopefully this will be 57600 or 38400.
  2967.     Include a SET SPEED command for this speed.
  2968.  
  2969.  3. Make sure the modem is set to echo and to return word result codes.
  2970.     The commands are usually E1 V1 Q0.
  2971.  
  2972.  4. Make sure your modem is set to hang up when the computer turns off
  2973.     the DTR signal.  The command is usually something like &D2.
  2974.  
  2975.  5. Make sure your modem is set to turn off its DCD (Data Carrier Detect)
  2976.     signal if the connection drops.  The command is usually &C1.  This
  2977.     doesn't actually make any difference in MS-DOS Kermit 3.13 and earlier,
  2978.     but it's good practice, and can be used with SET CARRIER ON in future
  2979.     releases of MS-DOS Kermit.
  2980.  
  2981.  6. Issue the commands to enable modulation negotiation starting at the
  2982.     highest level your modem supports (V.34 or V.32bis), and working down.
  2983.     The commands are highly modem-specific.  Unnecessary for modems that
  2984.     do this automatically based on the interface speed.
  2985.  
  2986.  7. Enable RTS/CTS hardware flow control.  This is ESSENTIAL when using
  2987.     error-correcting modems.  Again, the command is modem-specific.
  2988.  
  2989.  8. Make the modem pass the BREAK signal through transparently.
  2990.  
  2991.  9. Enable error correction with fallback, preferably V.42 with fallback
  2992.     to the various MNP levels.
  2993.  
  2994. 10. Enable data compression with fallback, preferably V.42bis with
  2995.     fallback to the various MNP levels.
  2996.  
  2997. 11. IMPORTANT: Enable "automatic speed buffering", i.e. make sure the
  2998.     modem's interface speed is fixed, i.e. does not change in response the
  2999.     modulation negotiation.
  3000.  
  3001. 12. Using any of the high-speed modem scripts as a template, substitute
  3002.     your modem's commands for the ones in the script.
  3003.  
  3004. 13. Check the remainder of the script to make sure the modem responses
  3005.     used there agree with those given by your modem (CONNECT, BUSY,
  3006.     NO DIALTONE, etc).
  3007.  
  3008. 14. Include comments saying what each command does.
  3009.  
  3010. 15. Test your script thoroughly, then send it by e-mail to
  3011.     kermit@columbia.edu so we can add it to our collection.  In the
  3012.     comment section, unless you have strenuous objections, include your
  3013.     name and e-mail address in case questions come up later.
  3014.  
  3015. That should do it.
  3016.  
  3017. - Frank
  3018.  
  3019. From news@columbia.edu Thu Sep 22 13:28:46 1994
  3020. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21810
  3021.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 22 Sep 1994 12:42:54 -0400
  3022. Received: by apakabar.cc.columbia.edu id AA10485
  3023.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 22 Sep 1994 12:42:52 -0400
  3024. Newsgroups: comp.protocols.kermit.misc
  3025. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!ub!acsu.buffalo.edu!cederman
  3026. From: cederman@cs.buffalo.edu (John D Cederman)
  3027. Subject: Uploading Text files
  3028. Message-Id: <CwJ9Fz.Mnn@acsu.buffalo.edu>
  3029. Sender: nntp@acsu.buffalo.edu
  3030. Nntp-Posting-Host: armstrong.cs.buffalo.edu
  3031. Organization: UB
  3032. X-Newsreader: TIN [version 1.2 PL2]
  3033. Date: Thu, 22 Sep 1994 13:28:46 GMT
  3034. Lines: 10
  3035. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  3036.  
  3037. Hello again,
  3038.      Here I am to talk about my solution for the problem with
  3039. Qmodem/Zmodem.  If you change your protocal to Kermit and use Kermit to
  3040. upload Text files...  You will not have any problems.  And don't worry
  3041. about a 0.0001 seconds of time one way or the other.
  3042.  
  3043.  
  3044. (cederman)
  3045.  
  3046.  
  3047.  
  3048. From news@columbia.edu Thu Sep 22 17:56:06 1994
  3049. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00310
  3050.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 22 Sep 1994 14:29:41 -0400
  3051. Received: by apakabar.cc.columbia.edu id AA17770
  3052.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 22 Sep 1994 14:29:38 -0400
  3053. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!swiss.ans.net!malgudi.oar.net!news.ysu.edu!yfn.ysu.edu!am856
  3054. From: am856@yfn.ysu.edu (Michael DeCosta III)
  3055. Newsgroups: comp.protocols.kermit.misc
  3056. Subject: Re: Won't 'take mscustom.ini'
  3057. Date: 22 Sep 1994 17:56:06 GMT
  3058. Organization: St. Elizabeth Hospital, Youngstown, OH
  3059. Lines: 35
  3060. Message-Id: <35sgfm$onn@news.ysu.edu>
  3061. References: <35qgqq$q7e@apakabar.cc.columbia.edu> <35p6ev$38e@hermes.unt.edu>
  3062. Reply-To: am856@yfn.ysu.edu (Michael DeCosta III)
  3063. Nntp-Posting-Host: yfn2.ysu.edu
  3064. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  3065.  
  3066.  
  3067. In a previous article, fdc@fdc.cc.columbia.edu (Frank da Cruz) says:
  3068.  
  3069. >In article <35p6ev$38e@hermes.unt.edu> chrisl@jove.acs.unt.edu (Lambright  
  3070. >Christian P) writes:
  3071. >> I'd appreciate any help from someone who know exactly how to get
  3072. >> the .ini files set in kermit 3.13. Supposedly the kermit.ini will
  3073. >> use the mscustom.ini if it's there, which it is, but when I try
  3074. >> it, it doesn't. I changed things in mscustom.ini as suggested but
  3075. >> repeatedly when invoking 'kermit' ...
  3076. >>
  3077. >That's because the way that MSCUSTOM.INI gets executed is by a TAKE
  3078. >command in MSKERMIT.INI.
  3079. >
  3080. >We recommend that you NOT change MSKERMIT.INI, and that you put all of
  3081. >your customizations into MSCUSTOM.INI.
  3082. >
  3083. >Then you won't get into this kind of trouble.
  3084. >
  3085. >- Frank
  3086. >
  3087. >x
  3088. >x
  3089. >x
  3090. >
  3091.  
  3092. It could also be that if you are using MSKERMIT.INI in a non-PC clone
  3093. MSDOS environment.
  3094.  
  3095. There is a minor bug in older MSKERMIT.INIs that will never  take
  3096. MSCUSTOM.INI if MSKERMIT determines it is not being called from
  3097. a Kermit that identifies itself as IBM PC version.
  3098.  
  3099. I sent Frank the fix a while back. I imagine it is in the lastest
  3100. release?
  3101.  
  3102. From news@columbia.edu Thu Sep 22 16:47:13 1994
  3103. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09245
  3104.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 22 Sep 1994 16:28:26 -0400
  3105. Received: by apakabar.cc.columbia.edu id AA25888
  3106.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 22 Sep 1994 16:28:24 -0400
  3107. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!uunet!heifetz.msen.com!jamaican
  3108. From: jamaican@garnet.msen.com (Dwight Hugget)
  3109. Newsgroups: comp.protocols.kermit.misc
  3110. Subject: Redialing, Divide overflow error
  3111. Date: 22 Sep 1994 16:47:13 GMT
  3112. Organization: Msen, Inc. -- Ann Arbor, MI (account info: +1 313 998-4562)
  3113. Lines: 43
  3114. Message-Id: <35sceh$dgt$1@heifetz.msen.com>
  3115. Nntp-Posting-Host: garnet.msen.com
  3116. X-Newsreader: TIN [version 1.2 PL2]
  3117. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  3118.  
  3119.  
  3120. I running kermit on my PC and I've tweaked the number of redial attempts
  3121. from the default to a high number (500 to be exact). I did this b/c
  3122. my local access number is usually busy so it's easier to keep trying.
  3123. I usually get connected after having some coffee or midnight snack.
  3124.  
  3125. I get a divide overflow after a varying number of attempts.
  3126. Any idea why???? I'll include a segment of my dialing script:
  3127. ____________________________________________________________
  3128.  
  3129. :BEGIN            ; Now DIAL.
  3130. clear          ; Clear INPUT buffer.
  3131. ;***********************************
  3132. ;*lets  stretch out the retry count*
  3133. ;***********************************
  3134. ;set count 5                     ; Dialing retry counter, 5 tries allowed.
  3135. set count 500        ; my count
  3136. echo Dialing \%1 on \v(line) at \v(speed) bps, wait...
  3137. echo
  3138. pause 1
  3139. goto dial                       ; 1st time, skip pause and Redialing message
  3140.  
  3141. :REDIAL
  3142. ;set alarm 30
  3143. ;pause 30       ; Wait 30 seconds before redialing.
  3144. ;****************************************
  3145. ;*lets be quicker about redials an so on*
  3146. ;*alarm and pause number should be =    *
  3147. ;****************************************
  3148. set alarm 3
  3149. pause 3
  3150. if not alarm errfail {Dialing canceled.}
  3151. echo Redialing...               ; Message for redialing.
  3152. pause 1
  3153. --------------------------------------------------------------
  3154.  
  3155. --
  3156. =======================================================================
  3157. =             "Artist seeks Boss with vision impairment."             =
  3158. =  0/       __o                                              ,,,      = 
  3159. = <|      _`\< _                                            (o o)     =
  3160. = / >  --(_)/ (_)------- jamaican@garnet.msen.com -------ooO-(_)-Ooo- = 
  3161. =======================================================================
  3162.  
  3163. From news@columbia.edu Thu Sep 22 03:27:31 1994
  3164. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15100
  3165.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 22 Sep 1994 17:35:59 -0400
  3166. Received: by apakabar.cc.columbia.edu id AA00785
  3167.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 22 Sep 1994 17:35:56 -0400
  3168. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!malgudi.oar.net!kira.cc.uakron.edu!neoucom.edu!news.ysu.edu!news.cps.udayton.edu!cis.ohio-state.edu!math.ohio-state.edu!cs.utexas.edu!swrinde!gatech!concert!news.wfu.edu!matthews
  3169. From: matthews@wfu.edu (Rick Matthews)
  3170. Newsgroups: comp.protocols.kermit.misc
  3171. Subject: Re: Kermit Access/Availability
  3172. Date: 22 Sep 1994 03:27:31 GMT
  3173. Organization: Wake Forest University
  3174. Lines: 33
  3175. Message-Id: <35qtj3$ms6@eis.wfunet.wfu.edu>
  3176. References: <35i0o4$6s@cville-srv.wam.umd.edu> <1994Sep18.190019.26900@iglou.com> <35lmnu$pp9@hermes.louisville.edu> <35mkle$m0t@eis.wfunet.wfu.edu> <35npq6$9a9@usenety1.news.prodigy.com>
  3177. Nntp-Posting-Host: acg60.wfunet.wfu.edu
  3178. X-Newsreader: TIN [version 1.2 PL2]
  3179. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  3180.  
  3181. Bill Davidsen (davidsen@usenety1.news.prodigy.com) wrote:
  3182. : In article <35mkle$m0t@eis.wfunet.wfu.edu>,
  3183. : Rick Matthews <matthews@wfu.edu> wrote:
  3184.  
  3185. : :Old versions of kermit were much slower than zmodem on binary files,
  3186. : :but current versions are not.  If you are using the current versions
  3187. : :of kermit (C-kermit 5A on Unix and most other hosts, MS-Kermit 3.13
  3188. : :for DOS), you can get file transfers slightly faster than zmodem.
  3189. <snip>
  3190. : I've never seen any
  3191. : indication that this is possible, at least for transferring compressed
  3192. : data files, which is all I care about.
  3193.  
  3194. : I often use Kermit because I don't care about the speed for small files
  3195. : and Kermit gives about 95-96% of zmodem speed, but that last few percent
  3196. : always eludes me.
  3197.  
  3198. I just transferred a GIF file and a text file, each about 180Kbytes.
  3199. On the GIF file, I timed Kermit at 96.5% of zmodem speed, close to
  3200. your experience with compressed files.  For the text file, Kermit was
  3201. 106.2% of zmodem speed.
  3202.  
  3203. : zmodem is a lot faster for the turnkey user.
  3204.  
  3205. Agreed.  Kermit is not for the turnkey user, unless the user is
  3206. unusually patient.  Creating the three-line ".kermrc" file is
  3207. essential for reasonable throughput with kermit.
  3208.  
  3209. --
  3210. Rick Matthews                     matthews@wfu.edu            Ham radio:
  3211. Wake Forest University            910-759-5340   (Voice)      WA4GSP
  3212. Winston-Salem, NC 27109-7507      910-759-6142   (FAX)
  3213.  
  3214.  
  3215. From news@columbia.edu Thu Sep 22 02:14:22 1994
  3216. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16159
  3217.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 22 Sep 1994 17:49:40 -0400
  3218. Received: by apakabar.cc.columbia.edu id AA01646
  3219.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 22 Sep 1994 17:49:31 -0400
  3220. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  3221. From: jrd@cc.usu.edu (Joe Doupnik)
  3222. Newsgroups: comp.protocols.kermit.misc
  3223. Subject: Re: Won't 'take mscustom.ini'
  3224. Message-Id: <1994Sep22.081422.27598@cc.usu.edu>
  3225. Date: 22 Sep 94 08:14:22 MDT
  3226. References: <35p6ev$38e@hermes.unt.edu>
  3227. Distribution: inet
  3228. Organization: Utah State University
  3229. Lines: 22
  3230. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  3231.  
  3232. In article <35p6ev$38e@hermes.unt.edu>, chrisl@jove.acs.unt.edu (Lambright Christian P) writes:
  3233. > I'd appreciate any help from someone who know exactly how to get
  3234. > the .ini files set in kermit 3.13. Supposedly the kermit.ini will
  3235. > use the mscustom.ini if it's there, which it is, but when I try
  3236. > it, it doesn't. I changed things in mscustom.ini as suggested but
  3237. > repeatedly when invoking 'kermit', it doesn't seem to notice that
  3238. > there even is a mscustom.ini. Only those things set/defined in the
  3239. > kermit.ini file get called, and I notice that things change only if
  3240. > I change them in that file.
  3241. >  Also, I want to set up different .ini files to use for either a 
  3242. > vax system or a unix. Is this necessary or even desirable?
  3243. >  Any help will be appreciated. 
  3244. > Thanks.
  3245. > -Chris
  3246. ----------
  3247.     Perhaps the name "kermit.ini" is the culprit. MS-DOS Kermit
  3248. expects name MSKERMIT.INI; that's built into the program. That file,
  3249. in turn, can contain a line saying TAKE MSCUSTOM.INI and so on.
  3250.     Joe D.
  3251. P.S. This group has just appeared in my (Utah State Univ) News reader
  3252. so I can now follow the conversations (or make a good try). Realize that
  3253. News may take one (my case) or two days to reach outlying districts.
  3254.  
  3255. From news@columbia.edu Thu Sep 22 13:30:48 1994
  3256. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02189
  3257.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 22 Sep 1994 23:21:57 -0400
  3258. Received: by apakabar.cc.columbia.edu id AA20732
  3259.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 22 Sep 1994 23:21:55 -0400
  3260. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!gatech!newsfeed.pitt.edu!dsinc!netnews.upenn.edu!msuinfo!harbinger.cc.monash.edu.au!news.cs.su.oz.au!news.adelaide.edu.au!gateway.dircsa.org.au!gateway.dircsa.org.au!not-for-mail
  3261. From: arthur@gateway.dircsa.org.au (Arthur Marsh)
  3262. Newsgroups: comp.protocols.kermit.misc
  3263. Subject: MS-Kermit with FOSSIL
  3264. Date: 22 Sep 1994 23:00:48 +0930
  3265. Organization: DIRCSA - Disability Information and Resource Centre
  3266. Lines: 15
  3267. Message-Id: <35s0u8$kds@gateway.dircsa.org.au>
  3268. Nntp-Posting-Host: gateway.dircsa.org.au
  3269. X-Newsreader: TIN [version 1.1 PL8]
  3270. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  3271.  
  3272. I currently use David Nugent's BNU 1.70 FOSSIL driver at home
  3273. with Binkleyterm, BGFAX and MS-Kermit, using the command line:
  3274.  
  3275.   Bnu /F+ /L:1=19200 /M- /T=256 /R=4096 /Z2
  3276.  
  3277. MS-Kermit is quite happy with a simple set port 2 command to
  3278. work with BNU loaded on COM2:.
  3279.  
  3280. Are there any pitfalls to using kermit this way?
  3281.  
  3282.  
  3283. -- 
  3284. Arthur Marsh, telephone +61-8-370-2365, fax +61-8-370-2133, +61-8-223-5082 
  3285.                arthur@gateway.dircsa.org.au, arthur@cswamp.apana.org.au
  3286. .endofsig
  3287.  
  3288. From news@columbia.edu Thu Sep 22 02:22:44 1994
  3289. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10134
  3290.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Sep 1994 01:50:20 -0400
  3291. Received: by apakabar.cc.columbia.edu id AA26751
  3292.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Sep 1994 01:50:18 -0400
  3293. Path: news.columbia.edu!sol.ctr.columbia.edu!usc!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  3294. From: jrd@cc.usu.edu (Joe Doupnik)
  3295. Newsgroups: comp.protocols.kermit.misc
  3296. Subject: Re: converting kermit downloads to ascii or WordPerf.
  3297. Message-Id: <1994Sep22.082245.27601@cc.usu.edu>
  3298. Date: 22 Sep 94 08:22:44 MDT
  3299. References: <21SEP199412144358@pavo.concordia.ca>
  3300. Distribution: world
  3301. Organization: Utah State University
  3302. Lines: 17
  3303. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  3304.  
  3305. In article <21SEP199412144358@pavo.concordia.ca>, j_yates@pavo.concordia.ca (YATES, JODYE) writes:
  3306. > Hi there. I use Kermit to download text files from somewhere. The problem is
  3307. > that when I load the files with a simple text editor there are hard returns
  3308. > inserted at the end of each line. Moreover, WordPerfect 6 doesn't even
  3309. > recognize the file format when I try to convert these files and when I
  3310. > load them straight into WP, there are hard returns all over the place, so
  3311. > the text looks awful. My question therefore is how do I convert kermit
  3312. > downloads (I think they are 7-bit) to either standard ascii or to WP?
  3313. > All help would be appreciated.
  3314. > Jodye.
  3315. ---------
  3316.     Word processor files are NOT TEXT(!), they are pure data for that
  3317. particular program. Which means they are loaded to the gills with binary
  3318. formatting and whatnot material throughout. Treat such files as BINARY.
  3319.     Joe D.
  3320.  
  3321. From news@columbia.edu Thu Sep 22 23:31:48 1994
  3322. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10665
  3323.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Sep 1994 02:04:09 -0400
  3324. Received: by apakabar.cc.columbia.edu id AA27060
  3325.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Sep 1994 02:04:08 -0400
  3326. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!not-for-mail
  3327. From: ramon@gcti.com (Ramon F Herrera)
  3328. Newsgroups: comp.protocols.kermit.misc
  3329. Subject: man page for kermit?
  3330. Date: 22 Sep 1994 18:31:48 -0500
  3331. Organization: UTexas Mail-to-News Gateway
  3332. Lines: 5
  3333. Sender: nobody@cs.utexas.edu
  3334. Message-Id: <199409222327.TAA20123@vega.gcti.com>
  3335. Nntp-Posting-Host: news.cs.utexas.edu
  3336. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  3337.  
  3338. Is there a man page for kermit somewhere??
  3339.  
  3340. -Ramon Herrera
  3341. GCT, Inc.
  3342.  
  3343.  
  3344. From news@columbia.edu Thu Sep 22 12:11:54 1994
  3345. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16240
  3346.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Sep 1994 04:37:39 -0400
  3347. Received: by apakabar.cc.columbia.edu id AA00301
  3348.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Sep 1994 04:37:37 -0400
  3349. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!MathWorks.Com!news.duke.edu!concert!news.wfu.edu!matthews
  3350. From: matthews@wfu.edu (Rick Matthews)
  3351. Newsgroups: comp.protocols.kermit.misc
  3352. Subject: Re: converting kermit downloads to ascii or WordPerf.
  3353. Date: 22 Sep 1994 12:11:54 GMT
  3354. Organization: Wake Forest University
  3355. Lines: 37
  3356. Distribution: world
  3357. Message-Id: <35rsaa$1dj@eis.wfunet.wfu.edu>
  3358. References: <21SEP199412144358@pavo.concordia.ca>
  3359. Nntp-Posting-Host: acg60.wfunet.wfu.edu
  3360. X-Newsreader: TIN [version 1.2 PL2]
  3361. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  3362.  
  3363. YATES, JODYE (j_yates@pavo.concordia.ca) wrote:
  3364. : Hi there. I use Kermit to download text files from somewhere. The problem is
  3365. : that when I load the files with a simple text editor there are hard returns
  3366. : inserted at the end of each line. Moreover, WordPerfect 6 doesn't even
  3367. : recognize the file format when I try to convert these files and when I
  3368. : load them straight into WP, there are hard returns all over the place, so
  3369. : the text looks awful. My question therefore is how do I convert kermit
  3370. : downloads (I think they are 7-bit) to either standard ascii or to WP?
  3371.  
  3372. You need to do a little homework to find out how your files differ
  3373. from standard ascii, and whether the hard returns exist in the
  3374. original file.  On a UNIX system you can use the command 
  3375.  
  3376.     xd -c filename
  3377.  
  3378. to view the file byte by byte, including control codes and codes
  3379. greater than 127.  If you see \n (linefeed) scattered through your
  3380. text, the hard returns are already there, so you may be stuck.
  3381.  
  3382. If there are other problems, you have a couple of options.  The UNIX
  3383. "col" command will strip backspaces and reverse line feeds from the
  3384. file.  If there are other control codes that are giving WordPerfect a
  3385. hard time, I have a short Fortran program that strips all control
  3386. codes except newline and all eight-bit codes from your file.  It also
  3387. corrects for backspaces, leaving only the "topmost" character in the
  3388. file.  The program does use the functions "getc" and "putc" for single
  3389. character I/O.  These commons are available on many systems, but are
  3390. certainly not standard Fortran and may not be available on your
  3391. system.  It would be a piece of cake for a C programmer to translate
  3392. program, and getc and putc are standard in C.  If you are interested,
  3393. I'll email it to you.
  3394.  
  3395. --
  3396. Rick Matthews                     matthews@wfu.edu            Ham radio:
  3397. Wake Forest University            910-759-5340   (Voice)      WA4GSP
  3398. Winston-Salem, NC 27109-7507      910-759-6142   (FAX)
  3399.  
  3400.  
  3401. From news@columbia.edu Thu Sep 22 21:26:37 1994
  3402. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16385
  3403.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Sep 1994 04:44:16 -0400
  3404. Received: by apakabar.cc.columbia.edu id AA00383
  3405.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Sep 1994 04:44:15 -0400
  3406. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!newsxfer.itd.umich.edu!news.itd.umich.edu!qiongw
  3407. From: qiongw@srvr1.engin.umich.edu (greek)
  3408. Newsgroups: comp.protocols.kermit.misc
  3409. Subject: Kermit changed the file name from lower case to upper case, why???
  3410. Date: 22 Sep 1994 21:26:37 GMT
  3411. Organization: University of Michigan
  3412. Lines: 4
  3413. Message-Id: <35ssqd$rud@lastactionhero.rs.itd.umich.edu>
  3414. Nntp-Posting-Host: greek.engin.umich.edu
  3415. X-Newsreader: TIN [version 1.2 PL2]
  3416. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  3417.  
  3418. I am using kermit on my linux box.  It changed the file name form lower case to upper case when I download files from remote host.  Any ideas?  How can I prevent this?  Thanks!
  3419.  
  3420.     -Joan
  3421.  
  3422.  
  3423. From news@columbia.edu Thu Sep 22 21:08:26 1994
  3424. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17279
  3425.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Sep 1994 05:13:58 -0400
  3426. Received: by apakabar.cc.columbia.edu id AA00624
  3427.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Sep 1994 05:13:57 -0400
  3428. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!EU.net!sun4nl!news.nic.surfnet.nl!tudelft.nl!liberator.et.tudelft.nl!dutepp6.et.tudelft.nl!richard
  3429. From: richard@dutepp6.et.tudelft.nl (Richard Kooijman)
  3430. Newsgroups: comp.protocols.kermit.misc
  3431. Subject: Re: Computer hangs when line is dropped.
  3432. Date: 22 Sep 1994 21:08:26 GMT
  3433. Organization: Delft University of Technology, Dept. of Electrical Engineering
  3434. Lines: 37
  3435. Distribution: World
  3436. Message-Id: <35sroa$26u@liberator.et.tudelft.nl>
  3437. References: <35pesr$sun@liberator.et.tudelft.nl> <35plgl$ldg@apakabar.cc.columbia.edu>
  3438. Nntp-Posting-Host: dutepp6.et.tudelft.nl
  3439. X-Newsreader: NN version 6.5.0 #1 (NOV)
  3440. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  3441.  
  3442. fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  3443.  
  3444. >> On my old system (286, EMS, 16550A) this worked perfect. On my
  3445. >> new system (486, PCI, EMM386, 16550A) the computer hangs as soon
  3446. >> as the line is dropped after filling in all info.
  3447. >> 
  3448. >This kind of thing is most typically caused by a system peculiarity:
  3449.  
  3450. > . Noisy bus.
  3451.  
  3452. As I said two other comm programs have absolutely no troubles using this
  3453. setup: Linux (minicom to be precise) and Terminate.
  3454.  
  3455. > . A TSR that is grabbing interrupts that Kermit is supposed to see;
  3456. >   unload all your TSRs, drivers, etc, to isolate the problem.
  3457.  
  3458. Done that, and again, other programs do work.
  3459.  
  3460. > . A buggy modem.  Many internal modems have been known to cause this
  3461. >   kind of behavior -- please read the KERMIT.BWR file.
  3462.  
  3463. I still have the external modem, the same as with the old system.
  3464.  
  3465. >Also, be sure you are using the current version of Kermit, 3.13, at 
  3466. >the current patch level, which is 21.
  3467.  
  3468. Used that one.
  3469.  
  3470. The symptoms I experience are the same as those reported in another follow-up
  3471. to my questions:
  3472.     1. Sometimes the computer locks immediately when Kermit starts
  3473.     2. But more often it hangs when the line is dropped by the modem
  3474.  
  3475. BTW although I have a PCI system, the multi-i/o card is 16-bit ISA.
  3476.  
  3477.  
  3478. Richard.
  3479.  
  3480. From news@columbia.edu Thu Sep 22 11:27:55 1994
  3481. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17367
  3482.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Sep 1994 05:16:45 -0400
  3483. Received: by apakabar.cc.columbia.edu id AA00840
  3484.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Sep 1994 05:16:43 -0400
  3485. Path: news.columbia.edu!sol.ctr.columbia.edu!math.ohio-state.edu!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  3486. From: jrd@cc.usu.edu (Joe Doupnik)
  3487. Newsgroups: comp.protocols.kermit.misc
  3488. Subject: Re: [?] MS-Kermit 3.13 and SLIP8250 11.7
  3489. Message-Id: <1994Sep22.172755.27645@cc.usu.edu>
  3490. Date: 22 Sep 94 17:27:55 MDT
  3491. References: <35qjl6$1ua@herald.indirect.com>
  3492. Organization: Utah State University
  3493. Lines: 47
  3494. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  3495.  
  3496. In article <35qjl6$1ua@herald.indirect.com>, monty@indirect.com (Jim Monty) writes:
  3497. > Someone asked this question recently in comp.protocols.tcp-ip.ibmpc, but 
  3498. > it was never answered:  Why doesn't version 11.7 of the Crynwyr SLIP 
  3499. > packet driver SLIP8250 work with MS-Kermit 3.13?
  3500. > I load the packet driver with this command:
  3501. > C:\SLIP8250>slip8250 0x60 -h slip 4 0x3f8 57600
  3502. > After successfully connecting to the remote SLIP server, I escape back to 
  3503. > the MS-Kermit prompt and do this:
  3504. > MS-Kermit>set port tcp/ip indirect.com
  3505. > MS-Kermit>connect
  3506. > Cannot attach to an Ethernet Packet Driver or a Novell ODI driver.
  3507. >  Unable to initialize TCP/IP system, quitting
  3508. > ?Cannot start the connection.
  3509. > MS-Kermit>
  3510. > I can, at this point, quit MS-Kermit, unload the SLIP8250 version 11.7 
  3511. > driver, load SLIP8250 version 9.6, re-invoke MS-Kermit, then establish a 
  3512. > TCP/IP connection without any problem.  What's different about the newer 
  3513. > version of the packet driver?  I'd like to be able to use it instead of 
  3514. > the older version because its -u option allows me to unload it from 
  3515. > memory when I'm through with it; version 9.6 lacks this capability.
  3516. ------------
  3517.     Ok, folks. I have the answer to the puzzle. SLIP8250.COM v11.x is
  3518. broken compared to earlier releases. In particular it fails to support
  3519. the request to obtain a hardware/MAC address. Older versions said none,
  3520. but no error, for slip. The v11.7 code does not seem to even want to
  3521. discuss the matter and returns an error for the function request.
  3522.     Kermit sees the error response and bails out.
  3523.     Suggestions and workarounds. For the moment I suggest one of: 
  3524.     - trying Etherslip, which makes an Ethernet framed pkt to the app 
  3525. and adds a fake Ethernet address for inquiring apps. I haven't tried v11.x
  3526. yet.
  3527.     - go back to SLIP8250.COM v9.x (the one without a transmit buffer, 
  3528. which will be my rewrite to work solidly, see below),
  3529.     - wait til we shove MSK v3.14 out the door with a workaround just 
  3530. written to deal with this Crynwr v11.x problem.
  3531.  
  3532.         Etherslip is file ethersl.com. Same core material as my stuff.
  3533. I placed a copy of my v9.1 SLIP8250.COM program in directory kermit
  3534. on netlab2.usu.edu in case you can't find a pre-v11.x copy. I don't
  3535. want to mix this with the v11.x archive for obvious reasons.
  3536.     Joe D.
  3537. P.S. Russ: let's unbreak SLIP8250 please. Tnx.
  3538.  
  3539. From news@columbia.edu Thu Sep 22 14:30:39 1994
  3540. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17975
  3541.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Sep 1994 05:38:00 -0400
  3542. Received: by apakabar.cc.columbia.edu id AA01020
  3543.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Sep 1994 05:37:58 -0400
  3544. Newsgroups: comp.protocols.kermit.misc
  3545. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!MathWorks.Com!europa.eng.gtefsd.com!newsxfer.itd.umich.edu!ncar!uchinews!iitmax!thssjyh
  3546. From: thssjyh@iitmax.acc.iit.edu (Jianqing Hu)
  3547. Subject: Re: 16550A, PCI (Was: Computer hangs when line is dropped)
  3548. Message-Id: <1994Sep22.143039.22376@iitmax.iit.edu>
  3549. Organization: Illinois Institute of Technology, Chicago
  3550. References: <35pesr$sun@liberator.et.tudelft.nl> <35rc73$l8s@archsrv.rz.unibw-muenchen.de>
  3551. Date: Thu, 22 Sep 94 14:30:39 GMT
  3552. Lines: 27
  3553. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  3554.  
  3555. In article <35rc73$l8s@archsrv.rz.unibw-muenchen.de> p41bsmk@applsrv.rz.unibw-muenchen.de (Peter Schmolck) writes:
  3556. >>I recently got a new PC. I transferred Kermit and all the scripts
  3557. >>it uses from my old to my new system. 
  3558. >[......]
  3559. >[....]
  3560. >
  3561. >>Are there any known problems with PCI systems, 16550A's and Kermit?
  3562. >
  3563. >I also changed from my old (486, VESA, no 16550A, no ethernet card) to a
  3564. >new PC (Pentium PCI system with 16550A, ethernet card) and also have 2 new
  3565. >problems now: 
  3566. >
  3567.  
  3568.  
  3569. Pentium 90 PCI mother board is at its very early stage, so there are a lot
  3570. of BIOS or mother board problems.
  3571.  
  3572. Your best bet is return to your dealer and ask for a New BIOS or exchange
  3573. for a new board.
  3574.  
  3575. One of my friend is a PC technician for a local PC store and he told me
  3576. this point. He himself bought a system and Windows wouldn't run if there
  3577. was a 5.25" floppy drive. He changed the board and the problem is gone.
  3578. However , the newer BIOS , the new board still has trouble to send strings
  3579. to COM port and as a result, comm program's auto dialer won't work for most
  3580. of time and zmodem never works.
  3581.  
  3582.  
  3583. From news@columbia.edu Thu Sep 22 15:07:00 1994
  3584. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18221
  3585.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Sep 1994 05:46:17 -0400
  3586. Received: by apakabar.cc.columbia.edu id AA01144
  3587.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Sep 1994 05:46:16 -0400
  3588. Newsgroups: comp.protocols.kermit.misc
  3589. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!MathWorks.Com!news.duke.edu!convex!cs.utexas.edu!utnut!erin.utoronto.ca!tuzo.erin!aveglio
  3590. From: aveglio@tuzo.erin (Andrew Veglio)
  3591. Subject: Kermit under Telix terminal program
  3592. Message-Id: <CwJDzp.7C4@credit.erin.utoronto.ca>
  3593. Sender: news@credit.erin.utoronto.ca (Usenet News)
  3594. Nntp-Posting-Host: tuzo.erin
  3595. Organization: Erindale College, University of Toronto, Canada
  3596. Date: Thu, 22 Sep 1994 15:07:00 GMT
  3597. Lines: 24
  3598. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  3599.  
  3600.   I have been having no luck in transfering files using the Kermit protocol 
  3601. as implemented under Telix V3.15.  This program works well with my system
  3602. using the other protocols (eg. Zmodem,Xmodem,etc.) but with kermit it 
  3603. does not seem to be abel to talk to the Sun Unix box at work.
  3604.   I can connect and use Telix terminal mode quite well to operate the 7E1 
  3605. Unix connection, but when I initiate a Kermit transfer Telix times-out 
  3606. without transfering anything.
  3607.   All help would be appreciated as Telix is quite popular here and Kermit 
  3608. is the only protocal supported on the Unix server.  
  3609.  
  3610. Many Thanks
  3611. Andrew
  3612.                         _      __
  3613. Andrew Veglio                 / \    / /\    aveglio@credit.erin.utoronto.ca    
  3614. Micro/Electronics Department    / ^ \  / / /                     (905)828-3715
  3615. University of Toronto           / ___ \/ / /                         CANADA    
  3616. Erindale College, Room 2004   /_/ __\__/ /                
  3617.                               \_\/  \___/          
  3618.  
  3619. -- 
  3620.                         _      __
  3621. Andrew Veglio                 / \    / /\    aveglio@credit.erin.utoronto.ca    
  3622. Micro/Electronics Department    / ^ \  / / /                     (905)828-3715
  3623. University of Toronto           / ___ \/ / /                         CANADA    
  3624.  
  3625.  some of those
  3626. require a matching terminating sequence before proceeding, and some can
  3627. turn on transparent printing (a favorite way of hanging the machine until
  3628. DOS itself finally gives up trying an unavailable printer). Modems ought
  3629. not do this, but there we are. To try bypassing the problems, try a) press
  3630. ALT =  to reset the terminal emulator, b) issue hangup at the Kermit prompt
  3631. to get there first.
  3632.     Joe D.
  3633.  
  3634. From news@columbia.edu Thu Sep 22 17:00:39 1994
  3635. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18681
  3636.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Sep 1994 06:04:13 -0400
  3637. Received: by apakabar.cc.columbia.edu id AA01293
  3638.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Sep 1994 06:04:11 -0400
  3639. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!gatech!gt-news!prism!prism!not-for-mail
  3640. From: dsrekrg@prism.gatech.edu (Rob Gibson)
  3641. Newsgroups: comp.protocols.kermit.misc
  3642. Subject: Re: MS-Kermit with Intel Satisfaxtion 400/i
  3643. Date: 22 Sep 1994 13:00:39 -0400
  3644. Organization: Georgia Institute of Technology
  3645. Lines: 5
  3646. Sender: dsrekrg@prism.gatech.edu
  3647. Message-Id: <35sd7n$1p8@acmey.gatech.edu>
  3648. References: <35q1jn$nbs@insosf1.infonet.net>
  3649. Nntp-Posting-Host: acmey.gatech.edu
  3650. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  3651.  
  3652. I have never had a problem using kermit with my Intel 400/i.
  3653. I have the 400/i set to use com1 and hardware flow control
  3654. and I have kermit set to use RTS/CTS flow control.
  3655. -- 
  3656. Rob Gibson   ARPA: dsrekrg@prism.gatech.edu
  3657.  
  3658. From news@columbia.edu Thu Sep 22 04:57:24 1994
  3659. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17989
  3660.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Sep 1994 07:39:24 -0400
  3661. Received: by apakabar.cc.columbia.edu id AA02614
  3662.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Sep 1994 07:39:23 -0400
  3663. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  3664. From: jrd@cc.usu.edu (Joe Doupnik)
  3665. Newsgroups: comp.protocols.kermit.misc
  3666. Subject: SLIP8250
  3667. Message-Id: <1994Sep22.105724.27621@cc.usu.edu>
  3668. Date: 22 Sep 94 10:57:24 MDT
  3669. Organization: Utah State University
  3670. Lines: 51
  3671. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  3672.  
  3673. >
  3674. >From: monty@indirect.com (Jim Monty)
  3675. >
  3676. >Someone asked this question recently in comp.protocols.tcp-ip.ibmpc, but 
  3677. >it was never answered:  Why doesn't version 11.7 of the Crynwyr SLIP 
  3678. >packet driver SLIP8250 work with MS-Kermit 3.13?
  3679. >
  3680. >I load the packet driver with this command:
  3681. >
  3682. >C:\SLIP8250>slip8250 0x60 -h slip 4 0x3f8 57600
  3683. >
  3684. >After successfully connecting to the remote SLIP server, I escape back to 
  3685. >the MS-Kermit prompt and do this:
  3686. >
  3687. >MS-Kermit>set port tcp/ip indirect.com
  3688. >MS-Kermit>connect
  3689. >Cannot attach to an Ethernet Packet Driver or a Novell ODI driver.
  3690. > Unable to initialize TCP/IP system, quitting
  3691. >?Cannot start the connection.
  3692. >MS-Kermit>
  3693. >
  3694. >I can, at this point, quit MS-Kermit, unload the SLIP8250 version 11.7 
  3695. >driver, load SLIP8250 version 9.6, re-invoke MS-Kermit, then establish a 
  3696. >TCP/IP connection without any problem.  What's different about the newer 
  3697. >version of the packet driver?  I'd like to be able to use it instead of 
  3698. >the older version because its -u option allows me to unload it from 
  3699. >memory when I'm through with it; version 9.6 lacks this capability.
  3700. >
  3701. >Is there a SLIP packet driver available that's any better than SLIP8250
  3702. >and works well with MS-Kermit 3.13? 
  3703. >
  3704. >And, in case anyone cares, I just started using MS-Kermit and have fallen
  3705. >in love with it!  The VT-series terminal emulation is unsurpassed, and the
  3706. >built-in TCP/IP ``stack'' (is that the right lingo?) has enabled me to
  3707. >access the Internet via a SLIP connection from a wimpy i80386SX machine
  3708. >with 2MB of RAM and a 40MB hard drive that doesn't ``do'' Microsoft
  3709. >Windows.  The contributions to this news groups by Mr. da Cruz are superb,
  3710. >as well.
  3711. >
  3712. >Thanks for your help.
  3713. >Jim Monty
  3714. >monty@indirect.com
  3715. -----------
  3716.     I may have to reissue the SLIP8250 Packet Driver I wrote and then
  3717. someone modified for the latest Crynwr release. What I did worked fine
  3718. here. But I have received reports from others that the latest Crynwr edition
  3719. has troubles. We will have to see how to offer my item without introducing
  3720. confusion in the PD arena. [Russ, if you are reading this lets get together
  3721. and solve the problem.]
  3722.         Joe D.
  3723.  
  3724.  
  3725. tart Kermit under Windows (WfW3.11), and independent
  3726. >of COM2Fifo=0/1 in system.ini. It also happens when I use Win-Kermit
  3727. >(Win100) instead (although, due to the maximal block length 96, the chances
  3728. >of getting the entire file before reaching the max retries limit are
  3729. >better). 
  3730.  
  3731.     Windows Kermit is embarassing to everyone. May we please suggest
  3732. that you get what we refer to as "the real thing", MS-DOS Kermit? MSK
  3733. runs nicely in Windows, even though it is a Windows-aware DOS program.
  3734.  
  3735. >So, I also would like to hear if there are known problems with PCI, 
  3736. >16550A and Kermit.
  3737.  
  3738.     The big square chip simulating 16550As on some Pentium machines,
  3739. SMC FDC37C665 UART, definitly has problems. Some vendors are issuing
  3740. special programs to clear the chip after a boot. MSK v3.14 does pretty
  3741. much the same job transparently, which you will see when MSK 3.14 comes out.
  3742.     Joe D.
  3743.  
  3744. >Peter Schmolck                                p41bsmk@rz.unibw-muenchen.de
  3745. >Department of Education                       Phone :     +49-89-6004-2056
  3746. >Univ. of the Federal Armed Forces Munich      Fax   :     +49-89-6004-3968
  3747. >85577 NEUBIBERG, GERMANY    
  3748.  
  3749.  
  3750.  
  3751.  
  3752. From news@columbia.edu Fri Sep 23 14:43:34 1994
  3753. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29581
  3754.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Sep 1994 10:44:27 -0400
  3755. Received: by apakabar.cc.columbia.edu id AA10100
  3756.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Sep 1994 10:44:24 -0400
  3757. Path: news.columbia.edu!usenet
  3758. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  3759. Newsgroups: comp.protocols.kermit.misc
  3760. Subject: Re: Kermit Access/Availability
  3761. Date: 23 Sep 1994 14:43:34 GMT
  3762. Organization: Columbia University
  3763. Lines: 28
  3764. Distribution: World
  3765. Message-Id: <35upim$9ol@apakabar.cc.columbia.edu>
  3766. References: <35qtj3$ms6@eis.wfunet.wfu.edu>
  3767. Nntp-Posting-Host: fdc.cc.columbia.edu
  3768. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  3769.  
  3770. In article <35qtj3$ms6@eis.wfunet.wfu.edu> matthews@wfu.edu (Rick Matthews)  
  3771. writes:
  3772. > : zmodem is a lot faster for the turnkey user.
  3773. > Agreed.  Kermit is not for the turnkey user, unless the user is
  3774. > unusually patient.  Creating the three-line ".kermrc" file is
  3775. > essential for reasonable throughput with kermit.
  3776. Matter of preference.  If by "turnkey user" you mean somebody who wants a 
  3777. file transfer to either be fast or else fail, you're right.  On the other 
  3778. hand, if a turnkey user is someone who wants a transfer to work out of the
  3779. box, even if it is slow, then I'd say Kermit is the ticket.
  3780.  
  3781. This is an old and neverending debate and there's no right or wrong.
  3782. In many situations, Zmodem is just fine -- particularly in the BBS world
  3783. where one does not find the many obstructions that exist on mainframes
  3784. and minicomputers, networks, and so on.  It works out of the box, and goes
  3785. fast.  But as soon as you bring multiuser computers, terminal servers,
  3786. networks, PADs, IBM mainframes, and assorted other factors besides just
  3787. two PCs and two modems into the picture, users have to do just as much 
  3788. tuning to get Zmodem to work as Kermit users have to do to get Kermit --
  3789. which already works in these environments -- to go fast.
  3790.  
  3791. It's not worth arguing about.  When there are variables -- like word size,
  3792. packet length, window size, etc -- they must have defaults.  If you don't
  3793. like the defaults, you can change them.  This applies equally to Kermit and
  3794. to Zmodem.
  3795.  
  3796. - Frank
  3797.  
  3798. From news@columbia.edu Fri Sep 23 14:48:03 1994
  3799. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29923
  3800.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Sep 1994 10:48:19 -0400
  3801. Received: by apakabar.cc.columbia.edu id AA10326
  3802.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Sep 1994 10:48:18 -0400
  3803. Path: news.columbia.edu!usenet
  3804. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  3805. Newsgroups: comp.protocols.kermit.misc
  3806. Subject: Re: Kermit changed the file name from lower case to upper case, why???
  3807. Date: 23 Sep 1994 14:48:03 GMT
  3808. Organization: Columbia University
  3809. Lines: 21
  3810. Distribution: World
  3811. Message-Id: <35upr3$a2d@apakabar.cc.columbia.edu>
  3812. References: <35ssqd$rud@lastactionhero.rs.itd.umich.edu>
  3813. Nntp-Posting-Host: fdc.cc.columbia.edu
  3814. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  3815.  
  3816. In article <35ssqd$rud@lastactionhero.rs.itd.umich.edu>  
  3817. qiongw@news-server.engin.umich.edu (greek) writes:
  3818. > I am using kermit on my linux box.  It changed the file name form lower
  3819. > case to upper case when I download files from remote host.  Any ideas?
  3820. > How can I prevent this?  Thanks!
  3821. >
  3822. Read in the documentation about the SET FILE NAMES command.
  3823.  
  3824. By default, Kermit converts filenames into an innocuous "canonical" form
  3825. during transfer, so as not to upset receiving systems that might not
  3826. support lowercase letters, multiple dots, wierd punctuation, etc.  If you
  3827. don't want Kermit to do that, simply tell it not to.
  3828.  
  3829. You already must have done something with the file names, because UNIX
  3830. C-Kermit (including Linux), unless you tell it otherwise, converts the
  3831. incoming "canonical form" (uppercase) filenme back to lowercase.
  3832.  
  3833. So if you had not messed with the defaults, you probably would not have
  3834. wound up with uppercase filenames.
  3835.  
  3836. - Frank
  3837.  
  3838. From news@columbia.edu Fri Sep 23 14:50:37 1994
  3839. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00177
  3840.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Sep 1994 10:50:45 -0400
  3841. Received: by apakabar.cc.columbia.edu id AA10461
  3842.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Sep 1994 10:50:43 -0400
  3843. Path: news.columbia.edu!usenet
  3844. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  3845. Newsgroups: comp.protocols.kermit.misc
  3846. Subject: Re: Kermit under Telix terminal program
  3847. Date: 23 Sep 1994 14:50:37 GMT
  3848. Organization: Columbia University
  3849. Lines: 28
  3850. Distribution: World
  3851. Message-Id: <35upvt$a6p@apakabar.cc.columbia.edu>
  3852. References: <CwJDzp.7C4@credit.erin.utoronto.ca>
  3853. Nntp-Posting-Host: fdc.cc.columbia.edu
  3854. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  3855.  
  3856. In article <CwJDzp.7C4@credit.erin.utoronto.ca> aveglio@tuzo.erin (Andrew  
  3857. Veglio) writes:
  3858. >   I have been having no luck in transfering files using the Kermit protocol 
  3859. > as implemented under Telix V3.15.  This program works well with my system
  3860. > using the other protocols (eg. Zmodem,Xmodem,etc.) but with kermit it 
  3861. > does not seem to be abel to talk to the Sun Unix box at work.
  3862. >   I can connect and use Telix terminal mode quite well to operate the 7E1 
  3863. > Unix connection, but when I initiate a Kermit transfer Telix times-out 
  3864. > without transfering anything.
  3865. >   All help would be appreciated as Telix is quite popular here and Kermit 
  3866. > is the only protocal supported on the Unix server.  
  3867. Try MS-DOS Kermit instead of Telix.  If it works and Telix doesn't, then
  3868. report the problem to the Telix people.
  3869.  
  3870. If MS-DOS Kermit doesn't work either, then report it to kermit@columbia.edu
  3871. and we'll be glad to help.
  3872.  
  3873. - Frank
  3874. x
  3875. x
  3876. x
  3877. x
  3878. x
  3879. x
  3880. x
  3881. x
  3882.  
  3883.  
  3884. From news@columbia.edu Fri Sep 23 14:53:53 1994
  3885. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00452
  3886.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Sep 1994 10:54:23 -0400
  3887. Received: by apakabar.cc.columbia.edu id AA10659
  3888.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Sep 1994 10:54:14 -0400
  3889. Path: news.columbia.edu!usenet
  3890. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  3891. Newsgroups: comp.protocols.kermit.misc
  3892. Subject: Re: man page for kermit?
  3893. Date: 23 Sep 1994 14:53:53 GMT
  3894. Organization: Columbia University
  3895. Lines: 11
  3896. Distribution: World
  3897. Message-Id: <35uq61$acb@apakabar.cc.columbia.edu>
  3898. References: <199409222327.TAA20123@vega.gcti.com>
  3899. Nntp-Posting-Host: fdc.cc.columbia.edu
  3900. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  3901.  
  3902. In article <199409222327.TAA20123@vega.gcti.com> ramon@gcti.com 
  3903. (Ramon F Herrera) writes:
  3904. > Is there a man page for kermit somewhere??
  3905. Since you say "man page", you are probably referring to UNIX C-Kermit?
  3906. Of course there's a man page.  It comes with C-Kermit.  If you ordered
  3907. it from us on tape or cartridge, it's there with all the other files.
  3908. If you ftp'd the ckuXXX.tar.Z file, it's in the tar archive.  The name
  3909. of the man page file is ckuker.nr.
  3910.  
  3911. - Frank
  3912.  
  3913. From news@columbia.edu Fri Sep 23 16:19:04 1994
  3914. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06804
  3915.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Sep 1994 12:19:23 -0400
  3916. Received: by apakabar.cc.columbia.edu id AA16282
  3917.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Sep 1994 12:19:22 -0400
  3918. Path: news.columbia.edu!usenet
  3919. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  3920. Newsgroups: comp.dcom.modems,comp.protocols.kermit.misc
  3921. Subject: Re: Modem Sharing Over TCP/IP
  3922. Date: 23 Sep 1994 16:19:04 GMT
  3923. Organization: Columbia University
  3924. Lines: 36
  3925. Distribution: World
  3926. Message-Id: <35uv5o$fs4@apakabar.cc.columbia.edu>
  3927. References: <35sr7b$6fk@Venus.mcs.com>
  3928. Nntp-Posting-Host: fdc.cc.columbia.edu
  3929. Xref: news.columbia.edu comp.dcom.modems:66334 comp.protocols.kermit.misc:110
  3930. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  3931.  
  3932. In article <35sr7b$6fk@Venus.mcs.com> les@MCS.COM (Leslie Mikesell) writes:
  3933. > In article <westesCwIInq.37r@netcom.com>, Will Estes <westes@netcom.com>
  3934. > wrote:
  3935. > >: I use cisco terminal servers, and have a modempool setup on the
  3936. > >: cs500. I am sure other terminal servers are perfectly capable of
  3937. > >: doing the same.
  3938. > >: Anyone can telnet to the IP address and gets the next modem in the
  3939. > >: rotary.
  3940. > >So how would this help to redirect COM1 on a DOS or Windows machine
  3941. > >to the modem pool?
  3942. > ...  Under DOS you could run ms-kermit over
  3943. > a packet driver and telnet to the modem's IP address, then chat with
  3944. > the modem to dial out.  A little extra work but since kermit's dialers
  3945. > are done with scripts anyway you could hide it all if you want.
  3946. Yup.  Also, C-Kermit (for UNIX, OS/2, VMS, AOS/VS, and Stratus VOS) supports
  3947. this too, in a very natural way.  First you "set host" to the terminal
  3948. server, then you "set modem" to the appropriate modem type, and then you
  3949. dial.  Real easy.  See "Using C-Kermit", Chapter 3, especially p.74, for
  3950. further details.
  3951.  
  3952. - Frank
  3953. x
  3954. x
  3955. x
  3956. x
  3957. x
  3958. x
  3959. x
  3960. x
  3961. x
  3962. x
  3963. x
  3964. x
  3965. x (Apologies for the x's - my news program made me do it...)
  3966.  
  3967. From news@columbia.edu Fri Sep 23 01:12:59 1994
  3968. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28438
  3969.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Sep 1994 17:11:59 -0400
  3970. Received: by apakabar.cc.columbia.edu id AA04646
  3971.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Sep 1994 17:11:58 -0400
  3972. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!malgudi.oar.net!kira.cc.uakron.edu!neoucom.edu!news.ysu.edu!news.cps.udayton.edu!cis.ohio-state.edu!math.ohio-state.edu!scipio.cyberstore.ca!vanbc.wimsey.com!unixg.ubc.ca!quartz.ucs.ualberta.ca!tribune.usask.ca!duke.usask.ca!lowey
  3973. From: lowey@duke.usask.ca (Kevin Lowey)
  3974. Newsgroups: comp.protocols.kermit.misc
  3975. Subject: Re: Kermit and Zmodem?
  3976. Date: 23 Sep 1994 01:12:59 GMT
  3977. Organization: University of Saskatchewan
  3978. Lines: 48
  3979. Message-Id: <35ta2r$smc@tribune.usask.ca>
  3980. References: <35i5nc$eq9@larry.rice.edu> <CwEpts.9w4@cfanews.harvard.edu>
  3981. Nntp-Posting-Host: duke.usask.ca
  3982. X-Newsreader: TIN [version 1.2 PL2]
  3983. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  3984.  
  3985. John Chandler (chandler@cfa0.harvard.edu) wrote:
  3986. : Steven Patrick Iltis (iltiss@rice.edu) wrote:
  3987.  
  3988. : : Is it possible to use zmodem (or rz and sz) with kermit?
  3989.  
  3990. : No, they are different protocols.
  3991.  
  3992. True, they are different protocols, but it is also true that you can use 
  3993. rz and sz with kermit, if you use an external Zmodem program like DSZ 
  3994. (for DOS). 
  3995.  
  3996. I use the OS/2 kermit, and an external SZ and RZ program. I start SZ 
  3997. going on the unix box, escape back to kermit, start the "rz" program 
  3998. running, and download my files. I can also go the other way.
  3999.  
  4000. I never use the Kermit protocol for downloading any more. I just use the 
  4001. Kermit program for the excellent terminal emulation.
  4002.  
  4003. : : If I can't get these to work together, how can I get the fastest
  4004. : : transfers with Kermit? Currently, I can only get about 1200 cps on a
  4005. : : 14.4 modem. 
  4006.  
  4007. : 1200 cps = 12,000 bps.  That's not bad for a 14,400-bps modem.
  4008.  
  4009. I have the 16550an uart in my computer, and use OS/2 2.11, and OS/2 
  4010. versions of Kermit and external Zmodem protocols. My Zyxel modem is 
  4011. locked at 57600bps between the modem and my serial port. I have a 486/33 cpu.
  4012.  
  4013. When I transfer pre-compressed .ZIP files between two 19200bps Zyxel 
  4014. modems, I consistantly get 2222cps. Even when running tasks in other windows.
  4015.  
  4016. When my Zyxel connects to a slower 14400bps modem, I usually get about 
  4017. 1550cps on .ZIP files.
  4018.  
  4019. Of course, all bets are off on text files. I've had some that have gone 
  4020. at up to 7000cps.
  4021.  
  4022. --
  4023. - Kevin Lowey (Kevin.Lowey@USask.CA, Client Services Educational Services Team)
  4024.   http://www.usask.ca/~lowey/  --- gopher skynet.usask.ca
  4025.   1982 CB650SC, DoD#975 - The ride is my true destination.
  4026.  
  4027.      I'm just collateral damage of the Political Correctness Movement
  4028.  
  4029.  
  4030. Steven Wright Says ...
  4031. My house is on the median strip of a highway.  You don't really notice,
  4032. except I have to leave the driveway doing 60 mph.
  4033.  
  4034. From news@columbia.edu Fri Sep 23 01:45:03 1994
  4035. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28799
  4036.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Sep 1994 17:18:01 -0400
  4037. Received: by apakabar.cc.columbia.edu id AA05220
  4038.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Sep 1994 17:17:59 -0400
  4039. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!MathWorks.Com!yeshua.marcam.com!news.kei.com!travelers.mail.cornell.edu!tuba.cit.cornell.edu!crux4!rf13
  4040. From: rf13@crux4.cit.cornell.edu (Ramin Farzaneh)
  4041. Newsgroups: comp.protocols.kermit.misc
  4042. Subject: Re: 16550A, PCI (Was: Computer hangs when line is dropped)
  4043. Date: 23 Sep 1994 01:45:03 GMT
  4044. Organization: Cornell University
  4045. Lines: 39
  4046. Message-Id: <35tbuv$854@tuba.cit.cornell.edu>
  4047. References: <35pesr$sun@liberator.et.tudelft.nl> <35rc73$l8s@archsrv.rz.unibw-muenchen.de>
  4048. Nntp-Posting-Host: 128.253.232.66
  4049. X-Newsreader: NN version 6.5.0 #6 (NOV)
  4050. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  4051.  
  4052. p41bsmk@applsrv.rz.unibw-muenchen.de (Peter Schmolck) writes:
  4053.  
  4054. >I also changed from my old (486, VESA, no 16550A, no ethernet card) to a
  4055. >new PC (Pentium PCI system with 16550A, ethernet card) and also have 2 new
  4056. >problems now: 
  4057.  
  4058. >(1) Sometimes, but not very often, when I first start Kermit, the system
  4059. >hangs, and the Ctrl-Alt-Del would not help. I guess this non-stable error
  4060. >happens when Kermit analyses the Comm-Port. With my two former PCs I
  4061. >already observed that Kermit *sometimes* (not very often) cannot correctly
  4062. >initialize the Comm Port, with a message like "wrong hardware found for
  4063. >port" or something similar. After exiting Kermit and restarting it for a
  4064. >2nd, sometimes third, time everything would work fine. 
  4065. [...]
  4066.  
  4067. >So, I also would like to hear if there are known problems with PCI, 
  4068. >16550A and Kermit.
  4069.  
  4070. I have a 486 DX2/66 with VESA local bus and 16550A UARTS, and I have 
  4071. the exact same problem.  I don't think it's Kermit's fault though, as 
  4072. I have seen it happen with other programs that access the COM ports (
  4073. including MSD).  I have noticed two things:
  4074.  
  4075. (1)  It happens less often if I don't load the dreaded EMM386 memory
  4076.      manager.  I don't use this "thing" when I use Kermit and/or
  4077.      Windows.
  4078.  
  4079. (2)  It is *much* more likely to happen if I turn the modem on after
  4080.      the computer has finished booting, or if I turn the modem on 
  4081.      and off at any other time. So now I first turn on my modem (an
  4082.      external USR Sportster 14.4K) then boot the computer, and only 
  4083.      turn the modem off at the end of the day.
  4084.  
  4085.  
  4086. I'd like to hear more about this matter, but I'm not sure this is 
  4087. the proper newsgroup for it.
  4088.  
  4089. Cheers,
  4090. Ramin
  4091.  
  4092. From news@columbia.edu Sun Sep 23 03:29:52 1994
  4093. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02909
  4094.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Sep 1994 18:22:37 -0400
  4095. Received: by apakabar.cc.columbia.edu id AA09412
  4096.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Sep 1994 18:22:35 -0400
  4097. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!malgudi.oar.net!kira.cc.uakron.edu!neoucom.edu!news.ysu.edu!news.cps.udayton.edu!cis.ohio-state.edu!math.ohio-state.edu!cs.utexas.edu!swrinde!howland.reston.ans.net!vixen.cso.uiuc.edu!news.uoregon.edu!cs.uoregon.edu!usenet.ee.pdx.edu!not-for-mail
  4098. From: rkwee@ee.pdx.edu (Roland Kwee)
  4099. Newsgroups: comp.protocols.kermit.misc
  4100. Subject: Re: Kermit changed the file name from lower case to upper case, why???
  4101. Date: 22 Sep 1994 20:29:52 -0700
  4102. Lines: 15
  4103. Message-Id: <35ti3g$4i6@cruella.ee.pdx.edu>
  4104. References: <35ssqd$rud@lastactionhero.rs.itd.umich.edu>
  4105. Nntp-Posting-Host: cruella.ee.pdx.edu
  4106. X-Newsreader: NN version 6.4.19 #2
  4107. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  4108.  
  4109. qiongw@news-server.engin.umich.edu (greek) writes:
  4110.  
  4111. >I am using kermit on my linux box.  It changed the file name form lower case to upper case when I download files from remote host.  Any ideas?  How can I prevent this?  Thanks!
  4112.  
  4113. >    -Joan
  4114.  
  4115. Using C-Kermit, Frank DaCruz, 1993, Digital Press, page 114:
  4116.    SET FILE NAMES LITERAL
  4117. Is probably also mentioned in the .hlp files with the Kermit distribution
  4118. (ftp kermit.columbia.edu).
  4119. Check also out the command:
  4120.    SET ATTRIBUTES ON
  4121.  
  4122. From news@columbia.edu Fri Sep 23 00:34:01 1994
  4123. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02915
  4124.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Sep 1994 18:22:45 -0400
  4125. Received: by apakabar.cc.columbia.edu id AA09416
  4126.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Sep 1994 18:22:43 -0400
  4127. Newsgroups: comp.protocols.kermit.misc
  4128. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!malgudi.oar.net!kira.cc.uakron.edu!neoucom.edu!news.ysu.edu!news.cps.udayton.edu!cis.ohio-state.edu!math.ohio-state.edu!cs.utexas.edu!swrinde!howland.reston.ans.net!news.cac.psu.edu!news.pop.psu.edu!psuvax1!hsdndev!cfanews!cfa0!chandler
  4129. From: chandler@cfa0.harvard.edu (John Chandler)
  4130. Subject: Re: Kermit and Zmodem?
  4131. Message-Id: <CwK48q.H8t@cfanews.harvard.edu>
  4132. Sender: news@cfanews.harvard.edu
  4133. Organization: Smithsonian Astrophysical Observatory, Cambridge, MA, USA
  4134. X-Newsreader: TIN [version 1.2 PL0]
  4135. References: <35i5nc$eq9@larry.rice.edu> <CwEpts.9w4@cfanews.harvard.edu> <CwFKxG.HJ5@news.gu.se>
  4136. Date: Fri, 23 Sep 1994 00:34:01 GMT
  4137. Lines: 18
  4138. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  4139.  
  4140. Bjorn Kihlberg (psybk@pew.psy.gu.se) wrote:
  4141. : John Chandler (chandler@cfa0.harvard.edu) wrote:
  4142. : : Steven Patrick Iltis (iltiss@rice.edu) wrote:
  4143.  
  4144. : I am myself forced (:-)) to use kermit instead of rz/sz and would love to get
  4145. : the same througput. What is the major obstruction? Packet length?
  4146.  
  4147. You need to tune the parameters according to the type of connection.  Yes,
  4148. set the packet length to a thousand or two, enable sliding windows, and
  4149. turn off flow control if you can get away without it.  If you have binary
  4150. files to transfer (but, then, you wouldn't likely get any compression out
  4151. of the modem!), you need to set up for 8-bit transmission if possible and
  4152. also to suppress prefixing for as many control characters as you can.
  4153. Obviously, the 8-bit consideration also applies if you have text files
  4154. with extended character sets.
  4155.  
  4156. --
  4157. John F. Chandler             chandler@cfa.harvard.edu
  4158.  
  4159. From news@columbia.edu Sun Sep 23 03:36:56 1994
  4160. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03228
  4161.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Sep 1994 18:26:45 -0400
  4162. Received: by apakabar.cc.columbia.edu id AA09686
  4163.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Sep 1994 18:26:43 -0400
  4164. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!malgudi.oar.net!kira.cc.uakron.edu!neoucom.edu!news.ysu.edu!news.cps.udayton.edu!cis.ohio-state.edu!math.ohio-state.edu!usc!howland.reston.ans.net!vixen.cso.uiuc.edu!news.uoregon.edu!cs.uoregon.edu!usenet.ee.pdx.edu!not-for-mail
  4165. From: rkwee@ee.pdx.edu (Roland Kwee)
  4166. Newsgroups: comp.protocols.kermit.misc
  4167. Subject: Re: Kermit under Telix terminal program
  4168. Date: 22 Sep 1994 20:36:56 -0700
  4169. Lines: 22
  4170. Message-Id: <35tigo$4j2@cruella.ee.pdx.edu>
  4171. References: <CwJDzp.7C4@credit.erin.utoronto.ca>
  4172. Nntp-Posting-Host: cruella.ee.pdx.edu
  4173. X-Newsreader: NN version 6.4.19 #2
  4174. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  4175.  
  4176. aveglio@tuzo.erin (Andrew Veglio) writes:
  4177.  
  4178. >  I have been having no luck in transfering files using the Kermit protocol 
  4179. >as implemented under Telix V3.15.  This program works well with my system
  4180. >using the other protocols (eg. Zmodem,Xmodem,etc.) but with kermit it 
  4181. >does not seem to be abel to talk to the Sun Unix box at work.
  4182. >  I can connect and use Telix terminal mode quite well to operate the 7E1 
  4183. >Unix connection, but when I initiate a Kermit transfer Telix times-out 
  4184. >without transfering anything.
  4185. >  All help would be appreciated as Telix is quite popular here and Kermit 
  4186. >is the only protocal supported on the Unix server.  
  4187.  
  4188. IMHO it doesn't make any sense to run the Kermit file transfer
  4189. protocol under Telix. Just use Kermit INSTEAD of Telix. So far, 
  4190. I have only heard of people that think Kermit file transfer
  4191. is slow (not true) and therefore want to run zmodem under Kermit.
  4192.  
  4193. Your 7E1 connection is exactly the reason why Kermit was invented in the
  4194. first place. Don't even think of downloading binary data with X/Y/Zmodem.
  4195.  
  4196. --Roland
  4197. email: RolandKwee@ACM.org
  4198.  
  4199. From news@columbia.edu Thu Sep 22 14:58:36 1994
  4200. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04022
  4201.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Sep 1994 18:40:42 -0400
  4202. Received: by apakabar.cc.columbia.edu id AA10461
  4203.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Sep 1994 18:40:39 -0400
  4204. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!malgudi.oar.net!kira.cc.uakron.edu!neoucom.edu!news.ysu.edu!news.cps.udayton.edu!cis.ohio-state.edu!math.ohio-state.edu!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  4205. From: jrd@cc.usu.edu (Joe Doupnik)
  4206. Newsgroups: comp.protocols.kermit.misc
  4207. Subject: Re: Redialing, Divide overflow error
  4208. Message-Id: <1994Sep22.205836.27653@cc.usu.edu>
  4209. Date: 22 Sep 94 20:58:36 MDT
  4210. References: <35sceh$dgt$1@heifetz.msen.com>
  4211. Organization: Utah State University
  4212. Lines: 54
  4213. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  4214.  
  4215. In article <35sceh$dgt$1@heifetz.msen.com>, jamaican@garnet.msen.com (Dwight Hugget) writes:
  4216. > I running kermit on my PC and I've tweaked the number of redial attempts
  4217. > from the default to a high number (500 to be exact). I did this b/c
  4218. > my local access number is usually busy so it's easier to keep trying.
  4219. > I usually get connected after having some coffee or midnight snack.
  4220.                               ^^^^^^^^------- Hmmm 
  4221. > I get a divide overflow after a varying number of attempts.
  4222. > Any idea why???? I'll include a segment of my dialing script:
  4223. > ____________________________________________________________
  4224. > :BEGIN            ; Now DIAL.
  4225. > clear          ; Clear INPUT buffer.
  4226. > ;***********************************
  4227. > ;*lets  stretch out the retry count*
  4228. > ;***********************************
  4229. > ;set count 5                     ; Dialing retry counter, 5 tries allowed.
  4230. > set count 500        ; my count
  4231. > echo Dialing \%1 on \v(line) at \v(speed) bps, wait...
  4232. > echo
  4233. > pause 1
  4234. > goto dial                       ; 1st time, skip pause and Redialing message
  4235. > :REDIAL
  4236. > ;set alarm 30
  4237. > ;pause 30       ; Wait 30 seconds before redialing.
  4238. > ;****************************************
  4239. > ;*lets be quicker about redials an so on*
  4240. > ;*alarm and pause number should be =    *
  4241. > ;****************************************
  4242. > set alarm 3
  4243. > pause 3
  4244. > if not alarm errfail {Dialing canceled.}
  4245. > echo Redialing...               ; Message for redialing.
  4246. > pause 1
  4247. > --------------------------------------------------------------
  4248. ------
  4249.     I am going to guess the timer stuff spanned midnight and the time
  4250. of day calculations failed (INPUT has a divide when converting seconds to 
  4251. HHMMSS stuff in t
  4252. e code). I am NOT going to sit up til midnight to find
  4253. out, thankyouverymuch. But I will inspect the code and try to catch the 
  4254. difficulty. 
  4255.     Just as a general warning, timers crossing midnight are going
  4256. to lead to confusion because I don't try to carry a day number around in
  4257. the code (it's expensive). I do try to follow the great circle path, but 
  4258. it may not be foolproof everywhere.
  4259.     Workaround: let's both get some sleep.
  4260.     Thanks for the "timely" remark since MSK 3.14 would have the
  4261. same problem.
  4262.     Joe D.
  4263.  
  4264. P.S. Another generality. It helps us a lot to know the version number of
  4265. the Kermit you are using (on both ends if that's the case). Please add
  4266. that information to your queries.
  4267.  
  4268. From news@columbia.edu Fri Sep 23 07:04:48 1994
  4269. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04923
  4270.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Sep 1994 18:51:35 -0400
  4271. Received: by apakabar.cc.columbia.edu id AA10925
  4272.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Sep 1994 18:51:27 -0400
  4273. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!news-feed-1.peachnet.edu!gatech!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  4274. From: jrd@cc.usu.edu (Joe Doupnik)
  4275. Newsgroups: comp.protocols.kermit.misc
  4276. Subject: Re: MS-Kermit with FOSSIL
  4277. Message-Id: <1994Sep23.130448.27699@cc.usu.edu>
  4278. Date: 23 Sep 94 13:04:48 MDT
  4279. References: <35s0u8$kds@gateway.dircsa.org.au>
  4280. Organization: Utah State University
  4281. Lines: 22
  4282. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  4283.  
  4284. In article <35s0u8$kds@gateway.dircsa.org.au>, arthur@gateway.dircsa.org.au (Arthur Marsh) writes:
  4285. > I currently use David Nugent's BNU 1.70 FOSSIL driver at home
  4286. > with Binkleyterm, BGFAX and MS-Kermit, using the command line:
  4287. >   Bnu /F+ /L:1=19200 /M- /T=256 /R=4096 /Z2
  4288. > MS-Kermit is quite happy with a simple set port 2 command to
  4289. > work with BNU loaded on COM2:.
  4290. > Are there any pitfalls to using kermit this way?
  4291. -------------
  4292.     If it works then the answer is no problem. Be sure to tell MSK
  4293. to use a BIOS serial port (SET PORT BIOSn, n=1..4) rather than the hardware 
  4294. port (COMx) so there will be no bus wars about hardware ownership. Your
  4295. example suggests that you told Kermit to use the hardware, which it is
  4296. able to do better than Fossil drivers. Since MSK tries to restore hardware
  4297. to its pre-use state (but leaves DTR high and the speed where Kermit last
  4298. used it, etc) you probably got away with stealing the port from BNU; no 
  4299. guarantees that this always works.
  4300.     The BNU docs should say that all applications should use it via
  4301. Bios serial port Int 14h functions. I don't know if they do.
  4302.     Joe D.
  4303.  
  4304. From news@columbia.edu Fri Sep 23 09:00:19 1994
  4305. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05009
  4306.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Sep 1994 18:53:24 -0400
  4307. Received: by apakabar.cc.columbia.edu id AA11012
  4308.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Sep 1994 18:53:23 -0400
  4309. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!news-feed-1.peachnet.edu!gatech!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  4310. From: jrd@cc.usu.edu (Joe Doupnik)
  4311. Newsgroups: comp.protocols.kermit.misc
  4312. Subject: Re: Pentia, Windows Kermit, etc
  4313. Message-Id: <1994Sep23.150019.27714@cc.usu.edu>
  4314. Date: 23 Sep 94 15:00:19 MDT
  4315. References: <1994Sep22.105326.27620@cc.usu.edu> <35v4gd$j7t@archsrv.rz.unibw-muenchen.de>
  4316. Organization: Utah State University
  4317. Lines: 30
  4318. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  4319.  
  4320. > I have checked for IRQ-conflicts. However, hoping that I'm not unduly 
  4321. > ignorant in that matter, could you, Joe, please expand on what one can 
  4322. > do to check on "excessiv bus speed on the serial stuff". I've looked around 
  4323. > in the CMOS setting and only found that the PCI bus is tacted at 8Mhz, 
  4324. > not 10, is this relevant here?
  4325.     That's relevant. The "standard" bus speed is 8.33MHz, and above
  4326. it all bets are off. Wait states are tweakable on some systems, and
  4327. maybe ought not to be. DMA transfer details can hog the bus if you have
  4328. a bus master board which uses that method (SCSI boards for example, and
  4329. sound boards).
  4330.  
  4331. > I'm using MS-Kermit 3.13 and C-Kermit 5A; "direct" serial connection to
  4332. > the distant Unix-server. And, to repeat, I get exessive numbers of retries
  4333. > only with 19200 Baud (not with 9600 Baud), only with binary files (not
  4334. > with text files, independent of transfer mode), and only when downloading
  4335. > files. With my former 486-66 PC I did not have that problem. Probably it
  4336. > isn't Kermit's fault, since WinKermit is affected as well (sorry, just
  4337. > forgot not to mention it again :)), but maybe there is a workaround. 
  4338.     It still looks like a flow control problem to me, or a disk cache
  4339. program effect (dumping its accumlation and taking its sweet time about
  4340. it). But there could be something strange on the Unix side which echos
  4341. XON/XOFF back to the DOS machine right in the middle of other bytes.
  4342. The way I do first tier diagnosis is by recording a packet log on both
  4343. ends and then wading through it looking for hints. That's the LOG PACKET
  4344. command. 
  4345.     If you have control codes unprefixed then that is a nice opening
  4346. for systems to play with the data stream. If you have a terminal server
  4347. or other piece of electronics in the path then that may need inspection
  4348. for byte-greed too.
  4349.         Joe D.
  4350.  
  4351. From news@columbia.edu Fri Sep 23 05:23:45 1994
  4352. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07604
  4353.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Sep 1994 19:46:59 -0400
  4354. Received: by apakabar.cc.columbia.edu id AA13614
  4355.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Sep 1994 19:46:58 -0400
  4356. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!malgudi.oar.net!swiss.ans.net!europa.eng.gtefsd.com!MathWorks.Com!news.kei.com!eff!neoucom.edu!news.ysu.edu!yfn.ysu.edu!am856
  4357. From: am856@yfn.ysu.edu (Michael DeCosta III)
  4358. Newsgroups: comp.protocols.kermit.misc
  4359. Subject: Microcom AX/9624c mnp class 6 dialing script?
  4360. Date: 23 Sep 1994 05:23:45 GMT
  4361. Organization: St. Elizabeth Hospital, Youngstown, OH
  4362. Lines: 2
  4363. Message-Id: <35top1$ccf@news.ysu.edu>
  4364. Reply-To: am856@yfn.ysu.edu (Michael DeCosta III)
  4365. Nntp-Posting-Host: yfn2.ysu.edu
  4366. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  4367.  
  4368.  
  4369. The subject says it all. Anyone have a dialing script for this neast?
  4370.  
  4371. From news@columbia.edu Fri Sep 23 06:41:57 1994
  4372. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09254
  4373.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Sep 1994 20:28:26 -0400
  4374. Received: by apakabar.cc.columbia.edu id AA15689
  4375.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Sep 1994 20:28:23 -0400
  4376. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!malgudi.oar.net!swiss.ans.net!gatech!newsxfer.itd.umich.edu!news1.oakland.edu!acsu.buffalo.edu!not-for-mail
  4377. Newsgroups: comp.protocols.kermit.misc
  4378. From: cederman@cs.buffalo.edu (John D Cederman)
  4379. Message-Id: <-CwKC6r.DrB@acsu.buffalo.edu>
  4380. Control: cancel <CwKC6r.DrB@acsu.buffalo.edu>
  4381. Sender: nntp@acsu.buffalo.edu
  4382. Organization: UB
  4383. Subject: cmsg cancel <CwKC6r.DrB@acsu.buffalo.edu>
  4384. Date: Fri, 23 Sep 1994 06:41:57 GMT
  4385. Approved: news@acsu.buffalo.edu
  4386. Lines: 1
  4387. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  4388.  
  4389. cancel <CwKC6r.DrB@acsu.buffalo.edu>
  4390.  
  4391. From news@columbia.edu Fri Sep 23 09:08:38 1994
  4392. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13166
  4393.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Sep 1994 21:39:16 -0400
  4394. Received: by apakabar.cc.columbia.edu id AA19323
  4395.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Sep 1994 21:39:15 -0400
  4396. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!zib-berlin.de!informatik.tu-muenchen.de!heun
  4397. From: heun@informatik.tu-muenchen.de (Volker Heun)
  4398. Newsgroups: comp.protocols.kermit.misc
  4399. Subject: MSKERMIT: IRQ5 on port 3
  4400. Date: 23 Sep 1994 09:08:38 GMT
  4401. Organization: Technische Universitaet Muenchen, Germany
  4402. Lines: 19
  4403. Distribution: world
  4404. Message-Id: <35u5um$gjt@hpsystem1.informatik.tu-muenchen.de>
  4405. Reply-To: heun@informatik.tu-muenchen.de
  4406. Nntp-Posting-Host: hpmayr2.informatik.tu-muenchen.de
  4407. Originator: heun@hpmayr2.informatik.tu-muenchen.de
  4408. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  4409.  
  4410.  
  4411. Hello,
  4412.  
  4413. does anybody know how to configure MSKERMIT such that  Kermit use IRQ 5
  4414. on COM3 instead of IRQ 4??
  4415. I'am using MSKERMIT Version 3.13
  4416. Thanks in advance
  4417.  
  4418. Volker
  4419.                               \\\//
  4420.                               (o-o)
  4421. ..........................oOO..\ /..OOo......................................
  4422. Volker Heun                     v       Email: heun@informatik.tu-muenchen.de
  4423. Institut f"ur Informatik                              Phone: +49-89-2105-2686
  4424. Technische Universit"at M"unchen                        Fax: +49-89-2105-5297
  4425. Arcisstr. 21                                                Room: (SB2) S2238
  4426. D-80290 M"unchen               WWW: http://hpmayr1.informatik.tu-muenchen.de/
  4427. Germany                                                    personen/heun.html
  4428. .............................................................................
  4429.  
  4430. From news@columbia.edu Fri Sep 23 15:04:47 1994
  4431. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13510
  4432.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Sep 1994 21:50:03 -0400
  4433. Received: by apakabar.cc.columbia.edu id AA19762
  4434.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Sep 1994 21:50:00 -0400
  4435. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!yeshua.marcam.com!zip.eecs.umich.edu!newsxfer.itd.umich.edu!europa.eng.gtefsd.com!howland.reston.ans.net!math.ohio-state.edu!magnus.acs.ohio-state.edu!csn!col.hp.com!news.dtc.hp.com!hpscit.sc.hp.com!lf.hp.com!degood
  4436. From: degood@lf.hp.com (John DeGood)
  4437. Newsgroups: comp.protocols.kermit.misc
  4438. Subject: Re: 16550A, PCI (Was: Computer hangs when line is dropped)
  4439. Date: 23 Sep 1994 15:04:47 GMT
  4440. Organization: Hewlett-Packard Little Falls Site
  4441. Lines: 27
  4442. Message-Id: <35uqqf$slk@hpavla.lf.hp.com>
  4443. References: <35pesr$sun@liberator.et.tudelft.nl> <35rc73$l8s@archsrv.rz.unibw-muenchen.de> <35tbuv$854@tuba.cit.cornell.edu>
  4444. Nntp-Posting-Host: hpavuu.lf.hp.com
  4445. X-Newsreader: TIN [version 1.2 PL2]
  4446. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  4447.  
  4448. Ramin Farzaneh (rf13@crux4.cit.cornell.edu) wrote:
  4449. : p41bsmk@applsrv.rz.unibw-muenchen.de (Peter Schmolck) writes:
  4450. : >I also changed from my old (486, VESA, no 16550A, no ethernet card) to a
  4451. : >new PC (Pentium PCI system with 16550A, ethernet card) and also have 2 new
  4452. : >problems now: 
  4453. :
  4454. : >(1) Sometimes, but not very often, when I first start Kermit, the system
  4455. : >hangs, and the Ctrl-Alt-Del would not help. I guess this non-stable error
  4456. : >happens when Kermit analyses the Comm-Port.
  4457. :
  4458. : I have a 486 DX2/66 with VESA local bus and 16550A UARTS, and I have 
  4459. : the exact same problem.
  4460.  
  4461. I have an IBM "Blue Lightning" motherboard (75 MHz clock tripled CPU)
  4462. with 16550 UARTs, and Kermit hangs 100% of the time on my system when it
  4463. first accesses the COM ports after a poweron.  I've discovered that if I
  4464. then do a hardware reset to force a reboot from the hung state that
  4465. Kermit runs perfectly until the next time I turn the power off.  If I
  4466. use a Windows terminal emulator the COM ports work fine, even the 1st
  4467. time after poweron.
  4468.  
  4469. I'm glad to see these other postings.  I had assumed this was a race
  4470. condition in my motherboard, but it sounds like there may be a race in
  4471. kermit's initialization code instead.
  4472.  
  4473. John DeGood  degood@LF.HP.COM
  4474. Hewlett-Packard Little Falls Site (Wilmington, Delaware)
  4475.  
  4476. From news@columbia.edu Fri Sep 23 10:13:54 1994
  4477. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15007
  4478.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Sep 1994 22:28:40 -0400
  4479. Received: by apakabar.cc.columbia.edu id AA21149
  4480.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Sep 1994 22:28:38 -0400
  4481. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!malgudi.oar.net!swiss.ans.net!howland.reston.ans.net!EU.net!sun4nl!news.nic.surfnet.nl!tudelft.nl!liberator.et.tudelft.nl!dutepp6.et.tudelft.nl!richard
  4482. From: richard@dutepp6.et.tudelft.nl (Richard Kooijman)
  4483. Newsgroups: comp.protocols.kermit.misc
  4484. Subject: Re: 16550A, PCI (Was: Computer hangs when line is dropped)
  4485. Date: 23 Sep 1994 10:13:54 GMT
  4486. Organization: Delft University of Technology, Dept. of Electrical Engineering
  4487. Lines: 26
  4488. Message-Id: <35u9p2$dej@liberator.et.tudelft.nl>
  4489. References: <35pesr$sun@liberator.et.tudelft.nl> <35rc73$l8s@archsrv.rz.unibw-muenchen.de> <1994Sep22.143039.22376@iitmax.iit.edu>
  4490. Nntp-Posting-Host: dutepp6.et.tudelft.nl
  4491. X-Newsreader: NN version 6.5.0 #1 (NOV)
  4492. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  4493.  
  4494. thssjyh@iitmax.iit.edu (Jianqing Hu) writes:
  4495.  
  4496. >Pentium 90 PCI mother board is at its very early stage, so there are a lot
  4497. >of BIOS or mother board problems.
  4498.  
  4499. First I have a DX2/66 PCI motherboard. Secondly, like Frank, you
  4500. overlook two other applications that run perfectly and furthermore
  4501. Kermit under Windows does work but it does see the COM ports as a simple
  4502. 8250 then.
  4503. So, I claim that there is a bug in Kermit dealing with 16550a's in pure
  4504. DOS under certain circumstances like faster CPU's or higher bus speeds.
  4505.  
  4506. While I use Terminate, I can download texts with 65% efficiency of 57600 bps
  4507. (v42.bis compression), play and change tracks of audio CD's, let
  4508. Terminate warn me through my Soundblaster and use my mouse.
  4509. I think that shows that there are no problems with this setup
  4510. and that IRQ conflicts are not there.
  4511. I get the same perfect results while using minicom under Linux:
  4512. expected 65% efficiency of 57600 bps while downloading with ZMODEM.
  4513.  
  4514. Kermit, however, fails using a single COM port.
  4515. What I didn't try yet was dialing and handling the callback by hand
  4516. so circumventing my automatic script. Any know problems in that area?
  4517.  
  4518.  
  4519. Richard.
  4520.  
  4521. From news@columbia.edu Fri Sep 23 17:50:05 1994
  4522. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16764
  4523.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Sep 1994 23:07:22 -0400
  4524. Received: by apakabar.cc.columbia.edu id AA22615
  4525.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Sep 1994 23:07:21 -0400
  4526. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!EU.net!Germany.EU.net!news.dfn.de!zeus.rbi.informatik.uni-frankfurt.de!terra.wiwi.uni-frankfurt.de!news.th-darmstadt.de!fauern!rz.unibw-muenchen.de!applsrv!p41bsmk
  4527. From: p41bsmk@applsrv.rz.unibw-muenchen.de (Peter Schmolck)
  4528. Newsgroups: comp.protocols.kermit.misc
  4529. Subject: Re: Pentia, Windows Kermit, etc
  4530. Date: 23 Sep 1994 17:50:05 GMT
  4531. Organization: University of the Federal Armed Forces Munich
  4532. Lines: 51
  4533. Message-Id: <35v4gd$j7t@archsrv.rz.unibw-muenchen.de>
  4534. References: <1994Sep22.105326.27620@cc.usu.edu>
  4535. Nntp-Posting-Host: applsrv.rz.unibw-muenchen.de
  4536. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  4537.  
  4538. Joe Doupnik's response to my posting was quite helpful with regard to one 
  4539. of two problems I'm experiencing with my new Pentium PC, namely, the 
  4540. reason for system hangs when starting Kermit for the first time after 
  4541. booting:
  4542.  
  4543. >    The big square chip simulating 16550As on some Pentium machines,
  4544. >SMC FDC37C665 UART, definitly has problems. Some vendors are issuing
  4545. >special programs to clear the chip after a boot. MSK v3.14 does pretty
  4546. >much the same job transparently, which you will see when MSK 3.14 comes out.
  4547.  
  4548. (msd says I've got a "16650AF" UART, the computer handbook calls 
  4549. it "SMC665", however)
  4550.  
  4551. Regarding the other problem (lots of retries when downloading binary 
  4552. files with 19200 Baud), what he sayed in the following quote seems 
  4553. relevant to me:
  4554.  
  4555. >Common suggestions include do thoroughly check
  4556. >for conflicts and excessive bus speed on the serial stuff. I have no PCI
  4557. >system myself so I can not run down the list of bugs in the current crop
  4558. >of motherboards.
  4559.  
  4560. I have checked for IRQ-conflicts. However, hoping that I'm not unduly 
  4561. ignorant in that matter, could you, Joe, please expand on what one can 
  4562. do to check on "excessiv bus speed on the serial stuff". I've looked around 
  4563. in the CMOS setting and only found that the PCI bus is tacted at 8Mhz, 
  4564. not 10, is this relevant here?
  4565.  
  4566. >    Windows Kermit is embarassing to everyone. May we please suggest
  4567. >that you get what we refer to as "the real thing", MS-DOS Kermit? MSK
  4568. >runs nicely in Windows, even though it is a Windows-aware DOS program.
  4569.  
  4570. I promise never to mention Windows Kermit again! :) (Actually I nearly 
  4571. only use it in cases when nothing else, e.g. Alt-' (German keyboard!), 
  4572. helps to clear the Comm port).
  4573.  
  4574. I'm using MS-Kermit 3.13 and C-Kermit 5A; "direct" serial connection to
  4575. the distant Unix-server. And, to repeat, I get exessive numbers of retries
  4576. only with 19200 Baud (not with 9600 Baud), only with binary files (not
  4577. with text files, independent of transfer mode), and only when downloading
  4578. files. With my former 486-66 PC I did not have that problem. Probably it
  4579. isn't Kermit's fault, since WinKermit is affected as well (sorry, just
  4580. forgot not to mention it again :)), but maybe there is a workaround. 
  4581.  
  4582. Thanks for all responses to my question, and also in advance,
  4583. Peter
  4584. --
  4585. Peter Schmolck                                p41bsmk@rz.unibw-muenchen.de
  4586. Department of Education                       Phone :     +49-89-6004-2056
  4587. Univ. of the Federal Armed Forces Munich      Fax   :     +49-89-6004-3968
  4588. 85577 NEUBIBERG, GERMANY    
  4589.  
  4590. From news@columbia.edu Fri Sep 23 14:52:29 1994
  4591. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22900
  4592.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 24 Sep 1994 00:56:53 -0400
  4593. Received: by apakabar.cc.columbia.edu id AA28459
  4594.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 24 Sep 1994 00:56:51 -0400
  4595. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!usc!news.service.uci.edu!rigel.oac.uci.edu!eaog136
  4596. From: eaog136@rigel.oac.uci.edu (Quan Nguyen)
  4597. Newsgroups: comp.protocols.kermit.misc
  4598. Subject: Re: MSKERMIT: IRQ5 on port 3
  4599. Date: 23 Sep 1994 14:52:29 GMT
  4600. Organization: University of California, Irvine
  4601. Lines: 18
  4602. Message-Id: <35uq3d$ue@news.service.uci.edu>
  4603. References: <35u5um$gjt@hpsystem1.informatik.tu-muenchen.de>
  4604. Nntp-Posting-Host: rigel.oac.uci.edu
  4605. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  4606.  
  4607. In article <35u5um$gjt@hpsystem1.informatik.tu-muenchen.de>,
  4608. Volker Heun <heun@informatik.tu-muenchen.de> wrote:
  4609. >
  4610. >Hello,
  4611. >
  4612. >does anybody know how to configure MSKERMIT such that  Kermit use IRQ 5
  4613. >on COM3 instead of IRQ 4??
  4614.  
  4615. set com3 \x03E8 5
  4616. set port 3
  4617.  
  4618.  
  4619.  
  4620. --
  4621. *X*X*X*X*X*X*X*X*X*X*X*X*X*X*X*X*X*X*X*X*X*X*X*X*X*X*X*X*X*X*X*X*X*X*X*X*X*X*X
  4622. Quan Nguyen                              eaog136@rigel.oac.uci.edu        
  4623. Program in Social Relations              qnguyen@orion.oac.uci.edu
  4624. University of California, Irvine         
  4625.  
  4626. From news@columbia.edu Fri Sep 23 15:21:51 1994
  4627. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23233
  4628.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 24 Sep 1994 01:04:40 -0400
  4629. Received: by apakabar.cc.columbia.edu id AA28639
  4630.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 24 Sep 1994 01:04:38 -0400
  4631. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!MathWorks.Com!panix!zip.eecs.umich.edu!newsxfer.itd.umich.edu!ncar!csn!col.hp.com!news.dtc.hp.com!hpscit.sc.hp.com!lf.hp.com!degood
  4632. From: degood@lf.hp.com (John DeGood)
  4633. Newsgroups: comp.protocols.kermit.misc
  4634. Subject: Re: 16550A, PCI (Was: Computer hangs when line is dropped)
  4635. Date: 23 Sep 1994 15:21:51 GMT
  4636. Organization: Hewlett-Packard Little Falls Site
  4637. Lines: 26
  4638. Message-Id: <35urqf$slk@hpavla.lf.hp.com>
  4639. References: <35pesr$sun@liberator.et.tudelft.nl> <35rc73$l8s@archsrv.rz.unibw-muenchen.de> <35tbuv$854@tuba.cit.cornell.edu> <35uqqf$slk@hpavla.lf.hp.com>
  4640. Nntp-Posting-Host: hpavuu.lf.hp.com
  4641. X-Newsreader: TIN [version 1.2 PL2]
  4642. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  4643.  
  4644. Following-up to my own post, I earlier wrote:
  4645. : I have an IBM "Blue Lightning" motherboard (75 MHz clock tripled CPU)
  4646. : with 16550 UARTs, and Kermit hangs 100% of the time on my system when it
  4647. : first accesses the COM ports after a poweron.  I've discovered that if I
  4648. : then do a hardware reset to force a reboot from the hung state that
  4649. : Kermit runs perfectly until the next time I turn the power off.  If I
  4650. : use a Windows terminal emulator the COM ports work fine, even the 1st
  4651. : time after poweron.
  4652. :
  4653. : I'm glad to see these other postings.  I had assumed this was a race
  4654. : condition in my motherboard, but it sounds like there may be a race in
  4655. : kermit's initialization code instead.
  4656.  
  4657. I just discovered in another posting:
  4658.  
  4659. In <1994Sep22.082102.27600@cc.usu.edu> Joe Doupnik (jrd@cc.usu.edu) wrote:
  4660. >     There are known bugs with the big square chip simulating 16550As
  4661. > on some Pentium systems, and MSK 3.14 (not out) works around them. The bug
  4662. > is normally associated with first use of a serial port after a boot.
  4663.  
  4664. My system is not Pentium-based, but perhaps "the big square chip" (or
  4665. the 16550 cell it contains) is also used on the other motherboards that
  4666. have been cited as experiencing kermit hangs on startup?
  4667.  
  4668. John DeGood  degood@LF.HP.COM
  4669. Hewlett-Packard Little Falls Site (Wilmington, Delaware)
  4670.  
  4671. From news@columbia.edu Fri Sep 23 04:46:05 1994
  4672. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26280
  4673.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 24 Sep 1994 02:48:06 -0400
  4674. Received: by apakabar.cc.columbia.edu id AA01115
  4675.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 24 Sep 1994 02:48:04 -0400
  4676. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!usc!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  4677. From: jrd@cc.usu.edu (Joe Doupnik)
  4678. Newsgroups: comp.protocols.kermit.misc
  4679. Subject: Re: 16550A, PCI (Was: Computer hangs when line is dropped)
  4680. Message-Id: <1994Sep23.104605.27691@cc.usu.edu>
  4681. Date: 23 Sep 94 10:46:05 MDT
  4682. References: <35pesr$sun@liberator.et.tudelft.nl> <35rc73$l8s@archsrv.rz.unibw-muenchen.de> <1994Sep22.143039.22376@iitmax.iit.edu> <35u9p2$dej@liberator.et.tudelft.nl>
  4683. Organization: Utah State University
  4684. Lines: 36
  4685. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  4686.  
  4687. In article <35u9p2$dej@liberator.et.tudelft.nl>, richard@dutepp6.et.tudelft.nl (Richard Kooijman) writes:
  4688. > thssjyh@iitmax.iit.edu (Jianqing Hu) writes:
  4689. >>Pentium 90 PCI mother board is at its very early stage, so there are a lot
  4690. >>of BIOS or mother board problems.
  4691. > First I have a DX2/66 PCI motherboard. Secondly, like Frank, you
  4692. > overlook two other applications that run perfectly and furthermore
  4693. > Kermit under Windows does work but it does see the COM ports as a simple
  4694. > 8250 then.
  4695. > So, I claim that there is a bug in Kermit dealing with 16550a's in pure
  4696. > DOS under certain circumstances like faster CPU's or higher bus speeds.
  4697.     <part omitted>
  4698. > Kermit, however, fails using a single COM port.
  4699. > What I didn't try yet was dialing and handling the callback by hand
  4700. > so circumventing my automatic script. Any know problems in that area?
  4701. > Richard.
  4702. ---------
  4703.     Kermit's handling of the 16550A chip is fine, has been ever since
  4704. the chips came out. But... motherboards and peripherals differ considerably,
  4705. and the single word "fail" is too general for me to do much with.
  4706.     Please note that Kermit actually safely tests your hardware before
  4707. using it, contrary to the "shoot first, ask questions later" technique of many
  4708. comms programs. If the test fails then the odds are in favor of something
  4709. being peculiar in your machine.
  4710.     I ask people to review the extensive material in text file MSKERM.BWR
  4711. and open the covers of their machine to ensure things are the way one thinks
  4712. they might be (check those jumpers). Watch out for TSRs hitting the ports,
  4713. mouse drivers and fax programs included. While I enjoy tinkering with hardware 
  4714. as much as the next person my crystal ball has a finite range; hence, I can't 
  4715. diagnose the machine by remote control. That has to be your concern.
  4716.         As in all complex situations the path to solutions is simplify
  4717. and isolate carefully. Divide and conquer (except when divide overflows).
  4718. Ask a friend to be a cross examiner during the process, and don't forget those
  4719. sacrifical chickens.
  4720.     Joe D.
  4721.  
  4722. From news@columbia.edu Sat Sep 24 06:29:25 1994
  4723. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26326
  4724.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 24 Sep 1994 02:49:54 -0400
  4725. Received: by apakabar.cc.columbia.edu id AA01142
  4726.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 24 Sep 1994 02:49:53 -0400
  4727. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!torn!hermes.acs.ryerson.ca!cuckoo!esiu
  4728. From: esiu@ee.ryerson.ca (Edmond Siu)
  4729. Newsgroups: comp.protocols.kermit.misc
  4730. Subject: Windows Modem setup
  4731. Date: 24 Sep 1994 06:29:25 GMT
  4732. Organization: Ryerson Polytechnic University
  4733. Lines: 5
  4734. Message-Id: <360h05$u6k@hermes.acs.ryerson.ca>
  4735. Nntp-Posting-Host: cuckoo.ee.ryerson.ca
  4736. X-Newsreader: TIN [version 1.2 PL2]
  4737. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  4738.  
  4739.  
  4740. Does anybody know what line I have to add to system.ini or win.ini for windows inorder to use com port 4? because if I run telix in windows on com 4. the computer crashes.. There is a special line I'm suppose to add to it inorder to make windows accept communication on com port 4.
  4741.  
  4742. plese reply if you know the solution
  4743.  
  4744.  
  4745. From news@columbia.edu Thu Sep 22 14:46:23 1994
  4746. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26975
  4747.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 24 Sep 1994 03:07:54 -0400
  4748. Received: by apakabar.cc.columbia.edu id AA01492
  4749.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 24 Sep 1994 03:07:53 -0400
  4750. Newsgroups: comp.protocols.kermit.misc
  4751. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!noc.near.net!black.clarku.edu!black.clarku.edu!kdesai
  4752. From: kdesai@black.clarku.edu (Kamalkumar R. Desai)
  4753. Subject: Re: kermit dialing help (3.1.3 on PC)
  4754. Message-Id: <kdesai.780245183@black.clarku.edu>
  4755. Organization: Clark University (Worcester, MA)
  4756. References: <35ckr8$s2s@coranto.ucs.mun.ca>
  4757. Date: 22 Sep 94 14:46:23 GMT
  4758. Lines: 21
  4759. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  4760.  
  4761. In <35ckr8$s2s@coranto.ucs.mun.ca> cstamp@morgan.ucs.mun.ca (Cliff Stamp) writes:
  4762.  
  4763. >Does anyone know how to tell kermit to redial after a set number
  4764. >of rings/busy signals. Right now it is set to around 25 and I would
  4765. >like to lower it to 2.
  4766. >
  4767. >Thanks for your time.
  4768. >-- 
  4769. >Cliff Stamp
  4770. >sstamp@morgan.physics.mun.ca
  4771. >
  4772.  
  4773.  
  4774. Try editing a file named "yourmod.SCR"
  4775. where yourmod is your modem name, or model filename 
  4776.  
  4777. You can edit MSKERMIT.INI to see which file sets your personnel settings
  4778. most probably in the end of the file with a statement TAKE 'MYFILE.INI'
  4779. where myfile is the file with personnel settings, this file will tell you
  4780. which model file it is using.
  4781.  
  4782.  
  4783. From news@columbia.edu Fri Sep 23 15:51:26 1994
  4784. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27295
  4785.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 24 Sep 1994 03:18:25 -0400
  4786. Received: by apakabar.cc.columbia.edu id AA01869
  4787.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 24 Sep 1994 03:18:23 -0400
  4788. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!math.ohio-state.edu!jussieu.fr!univ-lyon1.fr!ghost.dsi.unimi.it!galileo.polito.it!not-for-mail
  4789. From: mau@beatles.cselt.stet.it (Maurizio Codogno)
  4790. Newsgroups: comp.protocols.kermit.misc,alt.computers.folklore
  4791. Subject: BOO bootstrap
  4792. Followup-To: poster
  4793. Date: 23 Sep 1994 17:51:26 +0200
  4794. Organization: CSELT UF/DD - Torino Italy
  4795. Lines: 11
  4796. Message-Id: <35uthu$9lo@beatles.cselt.stet.it>
  4797. Nntp-Posting-Host: beatles.cselt.stet.it
  4798. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  4799.  
  4800. Yup, it's not a Kermit-related question but I am fairly sure that a lot of time
  4801. ago (6 years?) in the Kermit mailing list someone came out with a BOO.COM file
  4802. which was actually sendable via mail because it contained just printable
  4803. characters. Could you please send me a copy of it?
  4804.  
  4805. ciao, .mau.
  4806. -- 
  4807. Maurizio ".mau." Codogno - CSELT UF/DD - Torino - mau@beatles.cselt.stet.it
  4808.  
  4809.  Well, you can take it any way you want, ... It's a rock'n'roll symphony, 
  4810.  and it's gonna be the death of me.
  4811.  
  4812. From news@columbia.edu Fri Sep 23 04:29:37 1994
  4813. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27956
  4814.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 24 Sep 1994 03:43:34 -0400
  4815. Received: by apakabar.cc.columbia.edu id AA02198
  4816.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 24 Sep 1994 03:43:32 -0400
  4817. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!MathWorks.Com!zombie.ncsc.mil!news.duke.edu!convex!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  4818. From: jrd@cc.usu.edu (Joe Doupnik)
  4819. Newsgroups: comp.protocols.kermit.misc
  4820. Subject: Re: MSKERMIT: IRQ5 on port 3
  4821. Message-Id: <1994Sep23.102938.27688@cc.usu.edu>
  4822. Date: 23 Sep 94 10:29:37 MDT
  4823. References: <35u5um$gjt@hpsystem1.informatik.tu-muenchen.de>
  4824. Distribution: world
  4825. Organization: Utah State University
  4826. Lines: 14
  4827. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  4828.  
  4829. In article <35u5um$gjt@hpsystem1.informatik.tu-muenchen.de>, heun@Informatik.TU-Muenchen.DE (Volker Heun) writes:
  4830. > Hello,
  4831. > does anybody know how to configure MSKERMIT such that  Kermit use IRQ 5
  4832. > on COM3 instead of IRQ 4??
  4833. > I'am using MSKERMIT Version 3.13
  4834. > Thanks in advance
  4835. > Volker
  4836. -----------
  4837.     Please read release text file MSKERM.BWR, particularly the section
  4838. starting on line 202. SET COMx etc.
  4839.     Joe D.
  4840.  
  4841. From news@columbia.edu Thu Sep 22 16:53:17 1994
  4842. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28115
  4843.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 24 Sep 1994 03:50:31 -0400
  4844. Received: by apakabar.cc.columbia.edu id AA02287
  4845.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 24 Sep 1994 03:50:30 -0400
  4846. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!agate!forrest
  4847. From: forrest@toe.CS.Berkeley.EDU (Jon Forrest)
  4848. Newsgroups: comp.protocols.kermit.misc
  4849. Subject: Just Say "RTFM" To Documented Kermit Questions
  4850. Date: 22 Sep 1994 16:53:17 GMT
  4851. Organization: University of California, Berkeley
  4852. Lines: 18
  4853. Message-Id: <35scpt$lki@agate.berkeley.edu>
  4854. Nntp-Posting-Host: toe.cs.berkeley.edu
  4855. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  4856.  
  4857. There have been an alarming number of questions in this newsgroup
  4858. recently that are answered in the public litterature. Instead
  4859. of Joe and Frank (and others) wasting their time regurgating
  4860. this material, I suggest they simply say "RTFM, document X,
  4861. page Y, section Z".
  4862.  
  4863. This approach shouldn't apply to questions in which people say
  4864. "I've read document X, page Y, section Z and I don't understand
  4865. what they mean by ...". People who can't afford to buy the material
  4866. that costs money should also be excused.
  4867.  
  4868. There is enough to do without helping people who haven't done
  4869. their homework.
  4870.  
  4871. -- 
  4872. Anything you read here is my opinion and in no way represents the Univ. of Cal.
  4873. Jon Forrest WB6EDM     forrest@cs.berkeley.edu     510-643-6764
  4874. 377 Soda Hall, Univ. of Cal., Berkeley, CA. 94720-1776
  4875.  
  4876. From news@columbia.edu Fri Sep 23 13:27:20 1994
  4877. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28185
  4878.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 24 Sep 1994 03:54:57 -0400
  4879. Received: by apakabar.cc.columbia.edu id AA02322
  4880.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 24 Sep 1994 03:54:56 -0400
  4881. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!concert!hearst.acc.Virginia.EDU!gems.vcu.edu!agnew
  4882. From: agnew@gems.vcu.edu (Brainwave Surfer)
  4883. Newsgroups: comp.protocols.kermit.misc
  4884. Subject: Re: Just Say "RTFM" To Documented Kermit Questions
  4885. Message-Id: <1994Sep23.092720.1929@gems.vcu.edu>
  4886. Date: 23 Sep 94 09:27:20 -0400
  4887. References: <35scpt$lki@agate.berkeley.edu>
  4888. Organization: Medical College of Virginia
  4889. Lines: 20
  4890. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  4891.  
  4892. In article <35scpt$lki@agate.berkeley.edu>, forrest@toe.CS.Berkeley.EDU (Jon Forrest) writes:
  4893. > There have been an alarming number of questions in this newsgroup
  4894. > recently that are answered in the public litterature. Instead
  4895. > of Joe and Frank (and others) wasting their time regurgating
  4896. > this material, I suggest they simply say "RTFM, document X,
  4897.  
  4898.     snip....
  4899.  
  4900. maybe we could build a FAQ???
  4901.  
  4902. Good point, Jon....
  4903.  
  4904. Jim
  4905.  
  4906.          /^^^\   \ /   Jim Agnew         | AGNEW@RUBY.VCU.EDU  (Internet)
  4907.         /      >  ||   Neurosurgery,     | AGNEW@VCUVAX        (Bitnet)
  4908.    /\_/     '   \  /   MCV-VCU           | This disc will self destruct in
  4909.  /________________>    Richmond, VA, USA | five seconds.  Good luck, Jim..."
  4910.     ***error, brain i/o fault****
  4911.  
  4912.  
  4913. From news@columbia.edu Sat Sep 24 02:42:54 1994
  4914. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28968
  4915.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 24 Sep 1994 04:10:36 -0400
  4916. Received: by apakabar.cc.columbia.edu id AA02552
  4917.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 24 Sep 1994 04:10:35 -0400
  4918. Newsgroups: comp.protocols.kermit.misc
  4919. Path: news.columbia.edu!spcuna!uunet!usc!nic-nac.CSU.net!charnel.ecst.csuchico.edu!csusac!csus.edu!netcom.com!puma
  4920. From: puma@netcom.com (puma)
  4921. Subject: Re: Kermit and Zmodem?
  4922. Message-Id: <pumaCwM4vJ.4MK@netcom.com>
  4923. Organization: organized?? me?
  4924. References: <35i5nc$eq9@larry.rice.edu> <35lkoa$dde@cruella.ee.pdx.edu>
  4925. Date: Sat, 24 Sep 1994 02:42:54 GMT
  4926. Lines: 31
  4927. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  4928.  
  4929. In article <35lkoa$dde@cruella.ee.pdx.edu>,
  4930. Roland Kwee <rkwee@ee.pdx.edu> wrote:
  4931. >iltiss@rice.edu (Steven Patrick Iltis) writes:
  4932. >
  4933. >>Is it possible to use zmodem (or rz and sz) with kermit?
  4934. >> with Kermit ... , I can only get about 1200 cps on a
  4935. >>14.4 modem. 
  4936. >
  4937. >This is an old discussion. In short, why do you think zmodem will do
  4938. >better than Kermit? Your throughput is already 83 %, and could
  4939. >THEORETICALLY only improve 17 %. However, the bottleneck may not be
  4940. >Kermit, but your UART, the host computer, line noise, etc, all
  4941. >factors that will also slow down zmodem.
  4942.  
  4943.  
  4944. 1200 is not 83% of available.
  4945. The modem strips the start and stop bits, and sends the data between
  4946. modems in synchronous mode.  The potential throughput is actually
  4947. 10*14400/8, which is 1800 cps.
  4948.  
  4949. Now, you have to include bytes for controls, command exchanges between
  4950. the modems, block start and stop, CRCs, all of which reduce the space
  4951. available for 'real' data.  Using Ymodem-G, which doesn't wait between
  4952. blocks for ack's, I usually get about 1650 to 1680 cps on zip files, 
  4953. which are not really compressible, and much more on text files or
  4954. .exe files which contain large areas of blanks or zeroes.  That
  4955. improvement, however, is due to the compression.
  4956.  
  4957.  
  4958. -- 
  4959. puma@netcom.com
  4960.  
  4961. From news@columbia.edu Fri Sep 23 06:20:59 1994
  4962. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00564
  4963.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 24 Sep 1994 04:48:19 -0400
  4964. Received: by apakabar.cc.columbia.edu id AA03369
  4965.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 24 Sep 1994 04:48:17 -0400
  4966. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  4967. From: jrd@cc.usu.edu (Joe Doupnik)
  4968. Newsgroups: comp.protocols.kermit.misc
  4969. Subject: Re: 16550A, PCI (Was: Computer hangs when line is dropped)
  4970. Message-Id: <1994Sep23.122100.27695@cc.usu.edu>
  4971. Date: 23 Sep 94 12:20:59 MDT
  4972. References: <35pesr$sun@liberator.et.tudelft.nl> <35rc73$l8s@archsrv.rz.unibw-muenchen.de> <35tbuv$854@tuba.cit.cornell.edu> <35uqqf$slk@hpavla.lf.hp.com>
  4973. Organization: Utah State University
  4974. Lines: 46
  4975. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  4976.  
  4977. In article <35uqqf$slk@hpavla.lf.hp.com>, degood@lf.hp.com (John DeGood) writes:
  4978. > Ramin Farzaneh (rf13@crux4.cit.cornell.edu) wrote:
  4979. > : p41bsmk@applsrv.rz.unibw-muenchen.de (Peter Schmolck) writes:
  4980. > : >I also changed from my old (486, VESA, no 16550A, no ethernet card) to a
  4981. > : >new PC (Pentium PCI system with 16550A, ethernet card) and also have 2 new
  4982. > : >problems now: 
  4983. > I have an IBM "Blue Lightning" motherboard (75 MHz clock tripled CPU)
  4984. > with 16550 UARTs, and Kermit hangs 100% of the time on my system when it
  4985. > first accesses the COM ports after a poweron.  I've discovered that if I
  4986. > then do a hardware reset to force a reboot from the hung state that
  4987. > Kermit runs perfectly until the next time I turn the power off.  If I
  4988. > use a Windows terminal emulator the COM ports work fine, even the 1st
  4989. > time after poweron.
  4990. > I'm glad to see these other postings.  I had assumed this was a race
  4991. > condition in my motherboard, but it sounds like there may be a race in
  4992. > kermit's initialization code instead.
  4993. > John DeGood  degood@LF.HP.COM
  4994. > Hewlett-Packard Little Falls Site (Wilmington, Delaware)
  4995. -----------
  4996.  
  4997.     For the third or fourth time let me spell this out for you rich
  4998. guys with shinny new toys.
  4999.     There is a known chip design problem in at least one big square chip,
  5000. SMC FDC37C665 UART simulator. That item hangs comms programs if the chip is
  5001. not cleared somehow from the mess it creates for itself during system power
  5002. on. I don't know if the mistake has occurred in other chips, but it would
  5003. not surprize me (cellular designs sold here and there to other foundries).
  5004.     Various vendors have been posting notices about fixup programs for
  5005. their machines. MS-DOS Kermit v3.14 has its own code to do the fixup too,
  5006. and external reports say it works fine.
  5007.     Now this does not exclude other motherboard design mistakes which
  5008. may mess up things across the bus. There is abundant historical precedent
  5009. for them especially when an older design is stretched to new speeds. MSK 
  5010. 3.14 tries very hard to dodge potential goofs of this kind, but the hardware 
  5011. guys are very sharp and keep inventing new ones. Users of internal modems 
  5012. should assume that the firmware in their units are equally or more susceptible
  5013. to modem design mistakes of varying magnitude.
  5014.     MSK 3.13 is more vulnerable to this stuff, simply because it's a 
  5015. little older and did not have the hardware test base which is now available.
  5016. When 3.14 comes out for beta I hope you fellas will pound on it and let me
  5017. know what's wrong in as much detail as you can.
  5018.     Thanks,
  5019.     Joe D.
  5020.  
  5021.  
  5022. From news@columbia.edu Fri Sep 23 23:45:44 1994
  5023. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02595
  5024.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 24 Sep 1994 06:02:58 -0400
  5025. Received: by apakabar.cc.columbia.edu id AA04802
  5026.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 24 Sep 1994 06:02:57 -0400
  5027. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!gatech!newsxfer.itd.umich.edu!zip.eecs.umich.edu!yeshua.marcam.com!news.kei.com!travelers.mail.cornell.edu!tuba.cit.cornell.edu!crux3!rf13
  5028. From: rf13@crux3.cit.cornell.edu (Ramin Farzaneh)
  5029. Newsgroups: comp.protocols.kermit.misc
  5030. Subject: Re: 16550A, PCI (Was: Computer hangs when line is dropped)
  5031. Date: 23 Sep 1994 23:45:44 GMT
  5032. Organization: Cornell University
  5033. Lines: 19
  5034. Message-Id: <35vpb8$m9j@tuba.cit.cornell.edu>
  5035. References: <35pesr$sun@liberator.et.tudelft.nl> <35rc73$l8s@archsrv.rz.unibw-muenchen.de> <35tbuv$854@tuba.cit.cornell.edu> <35uqqf$slk@hpavla.lf.hp.com> <1994Sep23.122100.27695@cc.usu.edu>
  5036. Nntp-Posting-Host: 128.253.232.63
  5037. X-Newsreader: NN version 6.5.0 #6 (NOV)
  5038. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  5039.  
  5040. jrd@cc.usu.edu (Joe Doupnik) writes:
  5041.  
  5042. >In article <35uqqf$slk@hpavla.lf.hp.com>, degood@lf.hp.com (John DeGood) writes:
  5043. >> Ramin Farzaneh (rf13@crux4.cit.cornell.edu) wrote:
  5044. [stuff deleted]
  5045.  
  5046. >    For the third or fourth time let me spell this out for you rich
  5047. >guys with shinny new toys.
  5048. [...]
  5049. >    Joe D.
  5050.  
  5051. Having a bad day Joe?  My name appeared in this post even though none
  5052. of the stuff quoted was mine.  Still I don't see why you have to be
  5053. so rude.  For the record I am not rich and I don't have a shinny (sic)
  5054. toy.  Please control your tone in the future.
  5055.  
  5056. Have a nice day,
  5057. Ramin
  5058.  
  5059.  
  5060. From news@columbia.edu Sat Sep 24 16:00:56 1994
  5061. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10090
  5062.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 24 Sep 1994 12:00:58 -0400
  5063. Received: by apakabar.cc.columbia.edu id AA28274
  5064.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 24 Sep 1994 12:00:57 -0400
  5065. Path: news.columbia.edu!usenet
  5066. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  5067. Newsgroups: comp.protocols.kermit.misc
  5068. Subject: Re: Just Say "RTFM" To Documented Kermit Questions
  5069. Date: 24 Sep 1994 16:00:56 GMT
  5070. Organization: Columbia University
  5071. Lines: 181
  5072. Distribution: World
  5073. Message-Id: <361ifo$rje@apakabar.cc.columbia.edu>
  5074. References: <35scpt$lki@agate.berkeley.edu>
  5075. Nntp-Posting-Host: fdc.cc.columbia.edu
  5076. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  5077.  
  5078. In article <35scpt$lki@agate.berkeley.edu> forrest@toe.CS.Berkeley.EDU (Jon  
  5079. Forrest) writes:
  5080. > There have been an alarming number of questions in this newsgroup
  5081. > recently that are answered in the public litterature. Instead
  5082. > of Joe and Frank (and others) wasting their time regurgating
  5083. > this material, I suggest they simply say "RTFM, document X,
  5084. > page Y, section Z".
  5085. > This approach shouldn't apply to questions in which people say
  5086. > "I've read document X, page Y, section Z and I don't understand
  5087. > what they mean by ...". People who can't afford to buy the material
  5088. > that costs money should also be excused.
  5089. > There is enough to do without helping people who haven't done
  5090. > their homework.
  5091. Thank you, Jon.  We (Kermit developers) don't mind responding to queries
  5092. about new stuff, items that aren't clear from the documentation, etc, but
  5093. yes, people who use Kermit software a lot are heartily encouraged to
  5094. purchase the documentation because:
  5095.  
  5096.  1. It's not that expensive.
  5097.  
  5098.  2. It will answer most of your questions -- we put a lot of work into
  5099.     it -- hundreds of examples, step-by-step instructions, illustrations,
  5100.     tables, appendices, tutorials, glossaries, a comprehensive index.
  5101.  
  5102.  3. It relieves the load on the network.
  5103.  
  5104.  4. It frees up time of Kermit developers and tech support people to do
  5105.     more development and tech support.
  5106.  
  5107.  5. Most important of all, income from the sales of Kermit manuals is
  5108.     the primary source of income that funds the Kermit effort.
  5109.  
  5110.                            KERMIT BOOK LIST
  5111.  
  5112. -----------------------------------------------------------------------
  5113.  
  5114. MS-DOS Kermit, full-featured communications software for IBM and
  5115. compatible PCs with DOS or Windows, is documented in:
  5116.  
  5117.     Christine M. Gianone, Using MS-DOS Kermit, Second Edition, Digital
  5118.     Press / Butterworth-Heinemann, Woburn, MA, 1992, 345 pages, ISBN
  5119.     1-55558-082-3.  Packaged with version 3.13 of MS-DOS Kermit for the
  5120.     IBM PC, PS/2, and compatibles on a 3.5-inch diskette.  In computer
  5121.     and book stores, or order direct from Columbia University or from
  5122.     Digital Press.
  5123.  
  5124. A German-language edition is also available:
  5125.  
  5126.     Christine M. Gianone, MS-DOS Kermit, das universelle
  5127.     Kommunikationsprogramm, Verlag Heinz Heise, Hannover, Germany
  5128.     (1991), 414 pages.  Packaged with version 3.12 of MS-DOS Kermit for
  5129.     the IBM PC, PS/2, and compatibles on a 5.25-inch diskette,
  5130.     including German- language help files.  Deutsch von Gisbert W.
  5131.     Selke.  ISBN 3-88229-006-4.
  5132.  
  5133. And a French-language edition:
  5134.  
  5135.     Christine M. Gianone, Kermit MS-DOS mode d'emploi, Deuxieme
  5136.     edition, Heinz Schiefer & Cie., Versailles (1993), 406 pages.
  5137.     Packaged with version 3.11 of MS-DOS Kermit for the IBM PC, PS/2,
  5138.     and compatibles on a 5.25-inch diskette.  Adaption francaise: Jean
  5139.     Dutertre.  ISBN 2-901143-20-2.
  5140.  
  5141. There is also a Japanese book about MS-DOS Kermit, concentrating on the
  5142. NEC PC9801:
  5143.  
  5144.     Hirofumi Fujii and Fukuko Yuasa, MS-Kermit Nyumon, Computer Today
  5145.     Library 6, Saiensu-Sha Co., Ltd., publishers (1993), 160 pages.
  5146.     ISBN 4-7819-0669-9 C3355 P1854E.
  5147.  
  5148. -----------------------------------------------------------------------
  5149.  
  5150. C-Kermit 5A, full-function communication software for UNIX, VMS, OS/2,
  5151. AOS/VS, OS-9, Apollo Aegis, the Commodore Amiga, and the Atari ST is
  5152. documented in:
  5153.  
  5154.     Frank da Cruz and Christine M. Gianone, "Using C-Kermit", Digital
  5155.     Press / Butterworth-Heinemann, Woburn, MA, 1993, 514 pages, ISBN
  5156.     1-55558-108-0.  In computer and book stores, or order direct from
  5157.     Columbia University or from Digital Press.
  5158.  
  5159. A German-language edition is also available:
  5160.  
  5161.     Frank da Cruz und Christine M. Gianone, C-Kermit--Einfuhrung und
  5162.     Referenz, Verlag Heinz Heise, Hannover, Germany (1994).  ISBN
  5163.     3-88229-023-4.  Deutsch von Gisbert W. Selke.
  5164.  
  5165. -----------------------------------------------------------------------
  5166.  
  5167. The Kermit File transfer protocol is specified in the following book,
  5168. which also includes tutorials on computers, file systems, data
  5169. communications, and using Kermit:
  5170.  
  5171.     Frank da Cruz, Kermit, A File Transfer Protocol, Digital Press /
  5172.     Butterworth-Heinemann, Worburn, MA, 1987, 379 pages, ISBN
  5173.     0-932376-88-6.  In computer and book stores, or order direct from
  5174.     Columbia University or from Digital Press.
  5175.  
  5176. -----------------------------------------------------------------------
  5177.  
  5178. Kermit software for more than 400 different computers and operating
  5179. systems is available from Columbia University.  Contact Columbia for a
  5180. free Kermit software catalog.
  5181.  
  5182.  
  5183. -----------------------------------------------------------------------
  5184.  
  5185.                                  HOW TO ORDER
  5186.  
  5187. -----------------------------------------------------------------------
  5188.  
  5189. ENGLISH-LANGUAGE KERMIT BOOKS:
  5190.  
  5191.    1. In computer and book stores, or order direct from the publisher,
  5192.       Digital Press / Butterworth-Heinemann with MasterCard, Visa, or
  5193.       American Express:
  5194.  
  5195.           +1 800 366-2665     (Woburn, MA office for USA & Canada)
  5196.           +44 993 58521       (Rushden, England office for Europe)
  5197.           +61 02 372-5511     (Chatswood, NSW office for Australia & NZ)
  5198.           +65 220-3684        (Singapore office for Asia)
  5199.  
  5200.    2. From Columbia University:
  5201.  
  5202.           Kermit Development and Distribution
  5203.           Columbia University Academic Information Systems
  5204.           612 West 115th Street
  5205.           New York, NY  10025  USA
  5206.           Tel.  +1 212 854-3703
  5207.           Fax.  +1 212 663-8202
  5208.           E-Mail: kermit@columbia.edu
  5209.  
  5210.       Domestic and overseas orders accepted.  Add $5 US for shipping
  5211.       outside of North America.  Orders may be paid by MasterCard or
  5212.       Visa, or prepaid by check in US dollars.  Add $35 bank fee for
  5213.       checks not drawn on a US bank.  Price includes shipping.  Do not
  5214.       include sales tax.  Quantity discounts are available.
  5215.       Single-copy US prices (in US dollars):
  5216.  
  5217.           Using MS-DOS Kermit  . . . . . . . . . . . . . . . . .$ 34.95
  5218.           Using C-Kermit . . . . . . . . . . . . . . . . . . . .$ 34.95
  5219.           Kermit, A File Transfer Protocol . . . . . . . . . . .$ 29.95
  5220.           All three  . . . . . . . . . . . . . . . . . . . . . .$ 79.95
  5221.  
  5222. -----------------------------------------------------------------------
  5223.  
  5224. GERMAN-LANGUAGE KERMIT BOOKS:
  5225.  
  5226.         MS-DOS Kermit, das universelle Kommunikationsprogramm: DM 69,00
  5227.         C-Kermit--Einfuhrung und Referenz: . . . . . . . . . . DM 90,00
  5228.  
  5229.         Verlag Heinz Heise GmbH & Co. KG
  5230.         Helstorfer Strasse 7
  5231.         D-30625 Hannover, GERMANY
  5232.         Tel.  +49 (05 11) 53 52-0
  5233.         Fax.  +49 (05 11) 53 53-1 29
  5234.  
  5235. -----------------------------------------------------------------------
  5236.  
  5237. FRENCH:  Kermit MS-DOS Mode d'Emploi:  . . . . . . . . . . .  FF 495,00
  5238.  
  5239.         Heinz Schiefer & Cie.
  5240.         45 rue Henri de Regnier
  5241.         F-78000 Versailles, FRANCE
  5242.         Tel.  +33 39 53 95 26
  5243.         Fax.  +33 39 02 39 71
  5244.  
  5245. -----------------------------------------------------------------------
  5246.  
  5247. JAPANESE:  MS-Kermit Nyumon: . . . . . . . . . . . . . . . . .  1,800 Y
  5248.  
  5249.         Saiensu-Sha Co., Ltd.
  5250.         Abe-toku Building
  5251.         2-4 Kanda-suda cho, Chiyoda-ku
  5252.         Tokyo 101, JAPAN
  5253.         Tel.  +81-3-3256-1091
  5254.  
  5255. -----------------------------------------------------------------------
  5256.  
  5257. From news@columbia.edu Sat Sep 24 16:03:52 1994
  5258. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10182
  5259.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 24 Sep 1994 12:03:53 -0400
  5260. Received: by apakabar.cc.columbia.edu id AA28380
  5261.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 24 Sep 1994 12:03:53 -0400
  5262. Path: news.columbia.edu!usenet
  5263. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  5264. Newsgroups: comp.protocols.kermit.misc
  5265. Subject: Re: BOO bootstrap
  5266. Date: 24 Sep 1994 16:03:52 GMT
  5267. Organization: Columbia University
  5268. Lines: 18
  5269. Distribution: World
  5270. Message-Id: <361il8$rmq@apakabar.cc.columbia.edu>
  5271. References: <35uthu$9lo@beatles.cselt.stet.it>
  5272. Nntp-Posting-Host: fdc.cc.columbia.edu
  5273. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  5274.  
  5275. In article <35uthu$9lo@beatles.cselt.stet.it> mau@beatles.cselt.stet.it  
  5276. (Maurizio Codogno) writes:
  5277. > Yup, it's not a Kermit-related question but I am fairly sure that a lot
  5278. > of time ago (6 years?) in the Kermit mailing list someone came out with
  5279. > a BOO.COM file which was actually sendable via mail because it contained
  5280. > just printable characters. Could you please send me a copy of it?
  5281. Amazing, but true:
  5282. ---(cut here)---
  5283. XPHPD[0GG0G,0G51G31GB'(G+(G:u'0g?(G>(GE1G@arwIV_F*=US@<1|_,5wXNg-7muTu(4
  5284. 1m2?352t0osr2e3K1q2s0s3e0W1_F0:sss1@2G0t1k0s3p0@3T1m3>52f3>1k0t3<2C0@3T2
  5285. K1g2?0@3T1Fm3U51g3<1q0s3:0@3T1g3r1l0ts1>0I@3T1m3i52e0O2;h0L1_Eg352s0m3S2
  5286. j0W1g3of0<1;2?0r1m0s3:1>0m@3T2e0R1FH2E1m0s3:1>0B3^0=2g3=1g3s0@3T2e0@3^1t
  5287. 2e0<1>0m1m0s361>0e1l0s371g3r1:0P@3T1:0P2e1hDk0s3q0V1F2M1_3_c2o3Z1=0Y1=0c
  5288. 2s0o2Ag3H0CSCS1:0=F[1:0=2s0]352k0t1]2s0U390^3<1KL2D1Dc0sf1]2L0UE^1T2HfTZ
  5289. X3mS2@F5C6G3S2Y\_X3a25BB3W2HacTV^\aZ3S2gb3S2Y\_X3mSW28eebe3S2Whe\aZ3S2Y\
  5290. _X3S2<3b2B3W2Abg3S2XabhZ[3S2`X`bel3W4
  5291. ---(cut)---
  5292.  
  5293. From news@columbia.edu Sat Sep 24 16:06:13 1994
  5294. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10550
  5295.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 24 Sep 1994 12:12:33 -0400
  5296. Received: by apakabar.cc.columbia.edu id AA28796
  5297.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 24 Sep 1994 12:12:33 -0400
  5298. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!EU.net!Germany.EU.net!news.dfn.de!news.belwue.de!news.uni-ulm.de!gaissmai
  5299. From: karl.gaissmaier@rz.uni-ulm.de (Karl Gaissmaier)
  5300. Newsgroups: comp.protocols.kermit.misc
  5301. Subject: HELP: kermit stops upload binary files over two telnet connections
  5302. Date: 24 Sep 1994 16:06:13 GMT
  5303. Organization: Universitaet Ulm
  5304. Lines: 56
  5305. Sender: gaissmai%noc@apakabar.cc.columbia.edu (Karl Gaissmaier)
  5306. Distribution: world
  5307. Message-Id: <361ipm$6bj@wega.rz.uni-ulm.de>
  5308. Reply-To: karl.gaissmaier@rz.uni-ulm.de
  5309. Nntp-Posting-Host: noc.rz.uni-ulm.de
  5310. Keywords: kermit, telnet, download, retransmissions
  5311. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  5312.  
  5313. -- 
  5314.  
  5315. Hello kermit wizards,
  5316.  
  5317. kermit hangs if i try do upload binary files over two telnet connections:
  5318.  
  5319. (kermit) host1 --(telnet)--> host2 -- (telnet) --> host3 (kermit server)
  5320.  
  5321. if i try to UPLOAD a BINARY file from host1 to host3, kermit stops with
  5322. to much retransmissions. I have no problems with ascii files or
  5323. DOWNLOADING binary files.
  5324.  
  5325. Any hints?
  5326.  
  5327. Please don't ask me, why i didn't direct telnet from host1 to host3,
  5328. in my special case it is necessary:
  5329.  
  5330. PC --(modem)--terminalserver--(telnet)--gatehost--(telnet)--desthost
  5331.  
  5332.  
  5333. i tried to track down the problem with our Sniffer, but i have no
  5334. kermit protocol definition and i can't see any strange things in
  5335. the sniffer dump. Therefore my next questions:
  5336.  
  5337. How can i get the kermit protocol definition?
  5338. How can i get the zmodem protocol definition?
  5339.  
  5340. thanks in advance for any help
  5341.     Charly
  5342.  
  5343. PS: by the way, i use the following version on all unix boxes:
  5344.  
  5345. C-Kermit>sh version
  5346.  
  5347. Versions:
  5348.  
  5349.  C-Kermit 5A(189), 30 June 93
  5350.  Numeric: 501189
  5351.  UNIX Communications support, 5A(110), 26 Jun 93 for 4.2 BSD
  5352.  UNIX File support, 5A(074) 11 Jun 93 for 4.2 BSD
  5353.  C-Kermit Protocol Module 5A(055), 4 Jun 93
  5354.  C-Kermit functions, 5A(089) 11 Jun 93
  5355.  Command package 5A(053), 21 Nov 92
  5356.  User Interface 5A(103), 26 Jun 93
  5357.  Character Set Translation 5A(020), 2 May 93
  5358.  CONNECT Command for UNIX, 5A(054) 26 May 93
  5359.  Dial Command, 5A(050) 26 Jun 93
  5360.  Script Command, 5A(016) 26 Jun 93
  5361.  Network support, 5A(019) 8 Jun 93
  5362.  
  5363. =========================================================================
  5364. Universitaet Ulm                       karl.gaissmaier@rz.uni-ulm.de
  5365. Universitaetsrechenzentrum             postmaster, networkadministrator 
  5366. Karl Gaissmaier                        Telefon: (Germany) +49 731/5022499
  5367. D-89069 Ulm                            Telefax: (Germany) +49 731/5022471
  5368. =========================================================================
  5369.  
  5370. From news@columbia.edu Sat Sep 24 16:31:06 1994
  5371. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11203
  5372.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 24 Sep 1994 12:31:09 -0400
  5373. Received: by apakabar.cc.columbia.edu id AA29793
  5374.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 24 Sep 1994 12:31:08 -0400
  5375. Path: news.columbia.edu!usenet
  5376. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  5377. Newsgroups: comp.protocols.kermit.misc
  5378. Subject: Re: HELP: kermit stops upload binary files over two telnet connections
  5379. Date: 24 Sep 1994 16:31:06 GMT
  5380. Organization: Columbia University
  5381. Lines: 47
  5382. Distribution: world
  5383. Message-Id: <361k8a$t2t@apakabar.cc.columbia.edu>
  5384. References: <361ipm$6bj@wega.rz.uni-ulm.de>
  5385. Nntp-Posting-Host: fdc.cc.columbia.edu
  5386. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  5387.  
  5388. In article <361ipm$6bj@wega.rz.uni-ulm.de> karl.gaissmaier@rz.uni-ulm.de  
  5389. (Karl Gaissmaier) writes:
  5390. > kermit hangs if i try do upload binary files over two telnet connections:
  5391. > (kermit) host1 --(telnet)--> host2 -- (telnet) --> host3 (kermit server)
  5392. > if i try to UPLOAD a BINARY file from host1 to host3, kermit stops with
  5393. > to much retransmissions. I have no problems with ascii files or
  5394. > DOWNLOADING binary files.
  5395. The usual one:
  5396.  
  5397.   SET PARITY SPACE
  5398.  
  5399. and turn off any control-character unprefixing.  Of course, you can unprefix
  5400. whatever control characters are safe, but it's always best to start off
  5401. without it.  Control characters are prefixed by default for a reason!
  5402.  
  5403. > Please don't ask me, why i didn't direct telnet from host1 to host3,
  5404. > in my special case it is necessary:
  5405. > PC --(modem)--terminalserver--(telnet)--gatehost--(telnet)--desthost
  5406. Here's another idea for you -- it might work better than Telnet, provided
  5407. your Telnet servers are 8-bit clean:
  5408.  
  5409. Use C-Kermit instead of Telnet on the gatehost, and tell it to:
  5410.  
  5411.   SET TERMINAL BYTESIZE 8
  5412.   SET COMMAND BYTESIZE 8
  5413.   SET PARITY NONE
  5414.   SET FLOW-CONTROL NONE
  5415.   CONNECT
  5416.  
  5417. Make sure you are using C-Kermit 5A(190) here, because it is WAY more
  5418. efficient in this situation (in CONNECT mode between two other hosts that
  5419. are transferring files) than earlier releases.
  5420.  
  5421. To avoid confusion about which Kermit you are escaping back to, use SET
  5422. ESCAPE to set different escape characters on the different Kermit programs.
  5423.  
  5424. > [I'm using] C-Kermit 5A(189), 30 June 93
  5425. >
  5426. C-Kermit 5A(190) Beta is available via anonymous ftp from kermit.columbia.edu
  5427. directory kermit/test/bin, binary mode, file cku190.tar.Z (or .gz).
  5428.  
  5429. - Frank
  5430.  
  5431. From news@columbia.edu Sat Sep 24 17:27:11 1994
  5432. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13547
  5433.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 24 Sep 1994 13:27:15 -0400
  5434. Received: by apakabar.cc.columbia.edu id AA02743
  5435.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 24 Sep 1994 13:27:14 -0400
  5436. Path: news.columbia.edu!panix!zip.eecs.umich.edu!newsxfer.itd.umich.edu!gatech!howland.reston.ans.net!vixen.cso.uiuc.edu!adam
  5437. From: adam@symcom.math.uiuc.edu (Adam H. Lewenberg)
  5438. Newsgroups: comp.protocols.kermit.misc
  5439. Subject: FILE COLLISION UPDATE and file access times
  5440. Date: 24 Sep 1994 17:27:11 GMT
  5441. Organization: Math Dept., University of Illinois at Urbana/Champaign
  5442. Lines: 41
  5443. Distribution: na
  5444. Message-Id: <361nhf$7v@vixen.cso.uiuc.edu>
  5445. Nntp-Posting-Host: procyon.math.uiuc.edu
  5446. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  5447.  
  5448. I think I have figured it out. 
  5449.  
  5450. I was still having troubles with the SET FILE COLLISION UPDATE
  5451. setting. Files that were clearly newer on my home machine than the
  5452. files on the destination machine were being refused because of the
  5453. date. As I discovered, although the files on the destination machine
  5454. had an older last-wrote date, they had a newer last accessed-date. So,
  5455. for whatever reason, kermit is refusing to overwrite any file that has
  5456. a more recent last-accessed date. 
  5457.  
  5458. This can't be what people want. 
  5459.  
  5460.  
  5461.  
  5462. Here are the details:
  5463.  
  5464. home computer: 
  5465.    C-Kermit 5A(190) BETA.23, 18 Sep 94, for OS/2 2.11 32-bit  Numeric:
  5466.    501190  with a FAT file system
  5467.    
  5468.    DIR ANN3.TEX:
  5469.          ANN3.TEX         1332   9-24-94  12:17
  5470.  
  5471. destination computer:
  5472.    C-Kermit 5A(188), 23 Nov 92, SunOS 4.1 (BSD)
  5473.  
  5474.    ls -l ann3.tex:
  5475.       
  5476.         -rw-------   1 adam     academic     1293 Sep 24 12:15 ann3.tex
  5477.  
  5478.    ls -lu ann3.tex:
  5479.  
  5480.         -rw-------   1 adam     academic     1293 Sep 24 12:23 ann3.tex
  5481.  
  5482.  
  5483.  
  5484.                      Adam H. Lewenberg adam@math.uiuc.edu
  5485. -- 
  5486. University of Illinois at Champaign-Urbana, Dept. Of Mathematics
  5487. INTERNET: adam@math.uiuc.edu   or    a-lewenberg@uiuc.edu
  5488.  
  5489.  
  5490. From news@columbia.edu Sat Sep 24 17:32:14 1994
  5491. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13806
  5492.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 24 Sep 1994 13:32:17 -0400
  5493. Received: by apakabar.cc.columbia.edu id AA02936
  5494.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 24 Sep 1994 13:32:16 -0400
  5495. Path: news.columbia.edu!usenet
  5496. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  5497. Newsgroups: comp.protocols.kermit.misc
  5498. Subject: Re: Microcom AX/9624c mnp class 6 dialing script?
  5499. Date: 24 Sep 1994 17:32:14 GMT
  5500. Organization: Columbia University
  5501. Lines: 27
  5502. Distribution: World
  5503. Message-Id: <361nqu$2rj@apakabar.cc.columbia.edu>
  5504. References: <35top1$ccf@news.ysu.edu>
  5505. Nntp-Posting-Host: fdc.cc.columbia.edu
  5506. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  5507.  
  5508. In article <35top1$ccf@news.ysu.edu> am856@yfn.ysu.edu (Michael DeCosta III)  
  5509. writes:
  5510. > The subject says it all. Anyone have a dialing script for this neast?
  5511. >
  5512. None to my knowledge.
  5513.  
  5514. I posted a long message about MS-DOS Kermit dialing scripts yesterday.
  5515.  
  5516. They all follow a basic template.  Writing a dialing script for a new
  5517. kind of modem is fairly simple -- you pick a dialing script for a similar
  5518. kind of modem, sit down with your modem manual, and replace the modem-
  5519. specific commands for setting modulation, flow control, error correction,
  5520. compression, etc, with the ones for your modem.
  5521.  
  5522. MS-DOS Kermit dialing scripts are plain-text files, profusely commented.
  5523. They should be very easy to deal with by anybody who knows how to read
  5524. a modem manual and use a text editor.
  5525.  
  5526. Numerous working scripts are available via anonymous ftp to
  5527. kermit.columbia.edu, directory kermit/a, text mode, files msm*.*.
  5528.  
  5529. Anybody who adapts any of these scripts to a hitherto unsupported modem
  5530. is encouraged to send their work back to Columbia (via email to
  5531. kermit@columbia.edu) to be included in the collection, so that others
  5532. may use it too.
  5533.  
  5534. - Frank
  5535.  
  5536. From news@columbia.edu Sat Sep 24 17:36:43 1994
  5537. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13962
  5538.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 24 Sep 1994 13:36:44 -0400
  5539. Received: by apakabar.cc.columbia.edu id AA03232
  5540.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 24 Sep 1994 13:36:43 -0400
  5541. Path: news.columbia.edu!usenet
  5542. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  5543. Newsgroups: comp.protocols.kermit.misc
  5544. Subject: MS-DOS / VMS Transfer Performance
  5545. Date: 24 Sep 1994 17:36:43 GMT
  5546. Organization: Columbia University
  5547. Lines: 115
  5548. Distribution: World
  5549. Message-Id: <361o3b$34t@apakabar.cc.columbia.edu>
  5550. Nntp-Posting-Host: fdc.cc.columbia.edu
  5551. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  5552.  
  5553. I thought I would repost this oldie-but-goodie...
  5554.  
  5555. In article <s5$Oj86y-nB0055yn@faraday.clas.virginia.edu>
  5556. gap5u@faraday.clas.virginia.edu (Gregory Perron) writes:
  5557. > I'm downloading from a vax 4000-90 thru a terminal server of some sort
  5558. > to my PC.  14.4's at both ends: I have a cardinal internal; they have
  5559. > us robotics.  I get messages of 14.4, lapm, v.42bis, etc.  But,
  5560. > downloads have been hideous.
  5561. > I've given up on sz, because of too many aborted transfers.  I
  5562. > *think* the problem is w/ the vax, but I'm not sure.  [I get flawless
  5563. > 1600-1650 cps dl's on zipped files from a local bbs] Yes, I tried all
  5564. > the -ebrw permutations I could think of.
  5565. > On to kermit: I use procomm plus/dos 2.01 on my PC.  On the vax,
  5566. > ckermit pops up and says:
  5567. > Ckermit 5a(188) 23 NOV 92, OpenVMS Vax.
  5568. >
  5569. You'll get better results with C-Kermit 5A(189) or later, which has two
  5570. new features described below.  C-Kermit 5A(189) is available via
  5571. anonymous ftp to kermit.columbia.edu, directory kermit/b, get the file
  5572. ckvaaa.hlp, read it, take it from there.
  5573.  
  5574. > My ckermit.ini file has:
  5575. > set send pack 1000
  5576. >
  5577. This command is not needed; see the documentation.
  5578.  
  5579. > set receive pack 1000
  5580. > set buff 20000 20000
  5581. > set file type bin
  5582. > set windows 10
  5583. > set block 3
  5584. > Symptoms: max dl cps has been around 1100 for a zipped/jpg/gif file.
  5585. > And that's unusual: 950-1050 is more normal. It's almost like I'm
  5586. > only at 9600, modem report aside.
  5587. I can't speak for Procomm, but I ran some tests using MS-DOS Kermit 3.13
  5588. (the current version) on a 486/66 over a V.32bis/V.42/V.42bis dialup
  5589. connection to a Cisco terminal server, and from there to a VAXstation
  5590. 3100 running VMS 5.x and C-Kermit 5A. The calling modem is a Telebit
  5591. T3000, the answering modem is a USR Courier.
  5592.  
  5593. MS-DOS Kermit 3.13 is available via anonymous ftp to kermit.columbia.edu,
  5594. directory kermit/bin, binary mode, file msvibm.zip.
  5595.  
  5596. In these tests, I downloaded a 330K ZIP file (MSVIBM.ZIP -- the MS-DOS
  5597. Kermit 3.13 distribution).  My serial interface speed was 57600 bps, and
  5598. I used RTS/CTS flow control between my PC and the modem, and RTS/CTS was
  5599. also active between the answering modem and the terminal server.
  5600.  
  5601. In the first test (10 window slots x 1000-byte packets, same settings as
  5602. yours), I achieved an effective throughput of 1091 cps, like you got.
  5603.  
  5604. Since the connection between the terminal server and VMS is via TCP/IP
  5605. TELNET, and we know that TCP and IP will handle the flow control between
  5606. the VAX and the terminal server, I told C-Kermit to SET FLOW NONE (its
  5607. default setting is XON/XOFF) and ran the test again: 1136 cps.
  5608.  
  5609. Now that we've got the basics taken care of, we can work on tuning.
  5610. Next I tell C-Kermit to:
  5611.  
  5612.   SET CONTROL UNPREFIX ALL
  5613.   SET CONTROL PREFIX 1 129 255
  5614.  
  5615. (version 5A(189) or later is required for this; see the CKCKER.UPD file
  5616. for explanation) -- This removes control-character prefixing overhead
  5617. for all but 3 characters (4 really: NUL, Ctrl-A, Ctrl-A plus parity, and
  5618. the TELNET IAC character).  Now I get 1549 cps.  Note: control-character
  5619. unprefixing is of benefit primarily for precompressed files, secondarily
  5620. for uncompressed binaries, and has very little effect at all on text
  5621. files.
  5622.  
  5623. Well, the PC I was using is one of the new "high-speed, low-cost"
  5624. models, and so lacks a buffered UART.  All of the above transfers
  5625. suffered various amounts of retransmissions due to UART buffer overruns.
  5626. Switching to a much slower PC (a PS/2-70, 15MHz I think) that has a
  5627. 16550A buffered UART, same transfer, same parameters, the throughput
  5628. goes up to 1601 cps.
  5629.  
  5630. Now, since I don't have to worry about buffer overruns any more, I
  5631. increase Kermit's packet length to 5000 (SET RECEIVE PACKET-LENGTH
  5632. 5000).  Throughput: 1608 cps.
  5633.  
  5634. And now, since this is a precompressed file, I note that neither
  5635. Kermit's run-length compression, nor the modem's V.42bis compression
  5636. will do any good -- and some would say that they slow things down
  5637. a lot.  Let's see.  I turn both off:
  5638.  
  5639.   Kermit: SET REPEAT COUNTS OFF (C-Kermit 5A(189) or later required).
  5640.   Modem:  ATS190=0 (Telebit T3000)
  5641.  
  5642. and download the file again.  Result: 1616 cps.  Not a big difference.
  5643.  
  5644. Lessons (most of which apply mainly to this particular type of connection):
  5645.  
  5646.  1. Buffered UARTs are better than nonbuffered UARTs.
  5647.  2. Be sure to get the flow control right at both ends.
  5648.  3. Use long packets (1K - 5K, whatever works) and sliding windows
  5649.     (4 or more).
  5650.  4. Once you've got all that working optimally, you can squeeze out
  5651.     another 20-30% efficiency with control-character unprefixing.
  5652.  5. After that, don't bother too much with fine tuning, particularly
  5653.     with disabling modem or software compression - it makes very little
  5654.     difference.
  5655.  
  5656. Please, before we have another flurry of postings from people asking
  5657. for the "optimal" list of control characters to be unprefixed, THERE IS
  5658. NONE.  Every connection is different, with its own unique characteristics.
  5659. Read the documentation.  Ditto for all the other variables we have looked
  5660. at here: window size, packet length, flow control, etc.
  5661.  
  5662. - Frank
  5663.  
  5664. From news@columbia.edu Sat Sep 24 17:41:11 1994
  5665. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14208
  5666.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 24 Sep 1994 13:41:13 -0400
  5667. Received: by apakabar.cc.columbia.edu id AA03402
  5668.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 24 Sep 1994 13:41:12 -0400
  5669. Path: news.columbia.edu!usenet
  5670. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  5671. Newsgroups: comp.protocols.kermit.misc
  5672. Subject: Re: FILE COLLISION UPDATE and file access times
  5673. Date: 24 Sep 1994 17:41:11 GMT
  5674. Organization: Columbia University
  5675. Lines: 30
  5676. Distribution: World
  5677. Message-Id: <361obn$3a8@apakabar.cc.columbia.edu>
  5678. References: <361nhf$7v@vixen.cso.uiuc.edu>
  5679. Nntp-Posting-Host: fdc.cc.columbia.edu
  5680. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  5681.  
  5682. In article <361nhf$7v@vixen.cso.uiuc.edu> adam@symcom.math.uiuc.edu 
  5683. (Adam H. Lewenberg) writes:
  5684. > I was still having troubles with the SET FILE COLLISION UPDATE
  5685. > setting. Files that were clearly newer on my home machine than the
  5686. > files on the destination machine were being refused because of the
  5687. > date. As I discovered, although the files on the destination machine
  5688. > had an older last-wrote date, they had a newer last accessed-date. So,
  5689. > for whatever reason, kermit is refusing to overwrite any file that has
  5690. > a more recent last-accessed date. 
  5691. > ...
  5692. > destination computer:
  5693. >    C-Kermit 5A(188), 23 Nov 92, SunOS 4.1 (BSD)
  5694. >
  5695. Quite correct.  This was a bug in C-Kermit 5A(188), and it was fixed in
  5696. 5A(189).  If you replace the Kermit version on your Sun by the current
  5697. released version, 5A(189), or the soon-to-be-formally-released 5A(190),
  5698. which is in the final stages of Beta testing, the problem should (will)
  5699. go away.
  5700.  
  5701. - Frank
  5702. x
  5703. x
  5704. x
  5705. x
  5706. x
  5707. x
  5708. x
  5709. x
  5710. x
  5711. x's for my news poster, sorry.
  5712.  
  5713. From news@columbia.edu Sat Sep 24 18:06:05 1994
  5714. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15385
  5715.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 24 Sep 1994 14:06:07 -0400
  5716. Received: by apakabar.cc.columbia.edu id AA04608
  5717.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 24 Sep 1994 14:06:06 -0400
  5718. Path: news.columbia.edu!usenet
  5719. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  5720. Newsgroups: comp.protocols.kermit.misc
  5721. Subject: Chatting with Mac Kermit
  5722. Date: 24 Sep 1994 18:06:05 GMT
  5723. Organization: Columbia University
  5724. Lines: 40
  5725. Distribution: World
  5726. Message-Id: <361pqd$4fs@apakabar.cc.columbia.edu>
  5727. Nntp-Posting-Host: fdc.cc.columbia.edu
  5728. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  5729.  
  5730. > Hi, I am using Kermit on a MacPowerbook 160 with 10megs of ram and a
  5731. > Powerport Silver internal modem. I would like to set up a direct link to
  5732. > a friend of mine who has a Mac Plus with currently 1meg (plans to
  5733. > upgrade to 4) and an external Hayes modem. When I am saying direct link,
  5734. > I mean that I like to be able to type something on my screen that would
  5735. > then appear on his screen and vice-versa. His wife is deaf and he would
  5736. > like to be able to communicate with her long-distance. Can Kermit do
  5737. > this?
  5738. >
  5739. Yes.  One modem must be put in "answer mode", which is not the normal mode
  5740. for modems to be in.  This is generally done by giving it a command like:
  5741.  
  5742.   ATS0=2
  5743.  
  5744. (see your modem manual).  The steps on the answering end would be:
  5745.  
  5746.  1. Start Kermit on the Mac.
  5747.  2. In Communications Settings, set the appropriate speed.
  5748.  3. Type "ats0=2" (and Return) at the modem, in the terminal screen.
  5749.  4. In the Terminal Settings screen, set "Auto LF with CR" and "Local Echo"
  5750.  5. Wait for a call to come in.
  5751.  
  5752. This must be done before a call is placed.
  5753.  
  5754. On the calling end:
  5755.  
  5756.  1. Start Kermit on the Mac.
  5757.  2. In Communications Settings, set the appropriate speed.
  5758.  3. Type "atdt" and the phone number, and Return, in the terminal screen.
  5759.  4. In the Terminal settings screen, set "Auto LF with CR" and "Local Echo"
  5760.  5. Wait for call to be answered.
  5761.  
  5762. Now the two parties can chat.  When it's time to hang up, they should:
  5763.  
  5764.  1. Do nothing for at least one second.
  5765.  2. Type +++ in the terminal screen.
  5766.  3. Do nothing for at least one second.
  5767.  5. Type ATH0 and then Return, in the terminal screen, to hang up the phone.
  5768.  
  5769. - Frank
  5770.  
  5771. From news@columbia.edu Sat Sep 24 18:32:38 1994
  5772. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16319
  5773.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 24 Sep 1994 14:32:41 -0400
  5774. Received: by apakabar.cc.columbia.edu id AA06083
  5775.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 24 Sep 1994 14:32:39 -0400
  5776. Path: news.columbia.edu!usenet
  5777. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  5778. Newsgroups: comp.sys.sun.apps,comp.protocols.kermit.misc
  5779. Subject: Re: Scripted Telnet wanted
  5780. Date: 24 Sep 1994 18:32:38 GMT
  5781. Organization: Columbia University
  5782. Lines: 42
  5783. Distribution: World
  5784. Message-Id: <361rc6$5u1@apakabar.cc.columbia.edu>
  5785. References: <1994Sep20.182343.21582@netra.com>
  5786. Nntp-Posting-Host: fdc.cc.columbia.edu
  5787. Xref: news.columbia.edu comp.sys.sun.apps:9932 comp.protocols.kermit.misc:147
  5788. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  5789.  
  5790. In article <1994Sep20.182343.21582@netra.com> pnewman@netra.com
  5791. (Paul Newman) writes:
  5792. > Hi, I'm looking for a program that let's me do some programmatic telnet.
  5793. > That is, I'm looking for something like CrossTalk or Procomm (on PCs)
  5794. > except that I want it to use telnet for transport.  I want to send a
  5795. > command and look at the response programmatically, maybe with a shell
  5796. > like language, and then send another command based on the response.
  5797. C-Kermit 5A.  Anonymous ftp to kermit.columbia.edu.  The current version
  5798. is 5A(189):
  5799.  
  5800.   kermit/bin/cku189.tar.Z
  5801.  
  5802. Version 5A(190) is in Beta test; I'd encourage you to try it instead:
  5803.  
  5804.   kermit/test/bin/cku190.tar.Z (or .gz for gunzip)
  5805.  
  5806. It has a full-blown script programming language that does exactly what
  5807. you want, and also includes control structures (IF, WHILE, etc), variables,
  5808. arrays, built-in functions for string manipulation, access to all kinds
  5809. of system information (hostname, date, time, etc etc), and so on.
  5810.  
  5811. Since C-Kermit works not only on TCP/IP TELNET connections, but also
  5812. serial connections and (in certain implementations) also X.25, DECnet,
  5813. NETBIOS, and other types of connections, you have a single communication
  5814. software package that lets you automate all of your communications tasks
  5815. in a consistent way.
  5816.  
  5817. Furthermore, the script programs you write for C-Kermit on SunOS are
  5818. portable to any other UNIX variety as well as to all the other operating
  5819. systems where C-Kermit runs: VMS, OS/2, AOS/VS, etc etc.
  5820.  
  5821. Furthermore, C-Kermit's script programming language is highly (though
  5822. not totally) compatible with MS-DOS Kermit's language, and so the same
  5823. script programs are also portable to DOS and Windows and to the many
  5824. and varied networking methods supported by MS-DOS Kermit.
  5825.  
  5826. C-Kermit's script programming language is fully documented in Chapters
  5827. 11-13 of "Using C-Kermit".  MS-DOS Kermit's script programming language is
  5828. fully documented in Chapter 14 of "Using MS-DOS Kermit".
  5829.  
  5830. - Frank
  5831.  
  5832. From news@columbia.edu Sat Sep 24 12:55:58 1994
  5833. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22743
  5834.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 24 Sep 1994 17:08:00 -0400
  5835. Received: by apakabar.cc.columbia.edu id AA14028
  5836.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 24 Sep 1994 17:07:54 -0400
  5837. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!news.cac.psu.edu!psuvm!news.cuny.edu!wilhc
  5838. From: <WILHC@CUNYVM.CUNY.EDU>
  5839. Newsgroups: comp.protocols.kermit.misc
  5840. Subject: what is UART overrun
  5841. Date: Sat, 24 Sep 1994 16:55:58 EDT
  5842. Organization: City University of New York/University Computer Center
  5843. Lines: 2
  5844. Message-Id: <94267.165558WILHC@CUNYVM.CUNY.EDU>
  5845. Nntp-Posting-Host: cunyvm.cuny.edu
  5846. Disclaimer: Author bears full responsibility for this post
  5847. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  5848.  
  5849. Im getting this error message when I try to download from a mainframe to my ibm
  5850.  at home.
  5851.  
  5852. From news@columbia.edu Sat Sep 24 23:52:27 1994
  5853. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28671
  5854.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 24 Sep 1994 20:06:08 -0400
  5855. Received: by apakabar.cc.columbia.edu id AA22970
  5856.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 24 Sep 1994 20:06:06 -0400
  5857. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!charnel.ecst.csuchico.edu!nic-nac.CSU.net!news.Cerritos.edu!news.Arizona.EDU!jjr
  5858. From: jjr@mipl-gw.ece.arizona.edu (Jeffrey J. Rodriguez)
  5859. Newsgroups: comp.protocols.kermit.misc
  5860. Subject: When not "set file type binary" always?
  5861. Date: 24 Sep 1994 23:52:27 GMT
  5862. Organization: The University of Arizona, Dept. of ECE
  5863. Lines: 12
  5864. Message-Id: <362e3r$jef@news.CCIT.Arizona.EDU>
  5865. Nntp-Posting-Host: mipl-gw.ece.arizona.edu
  5866. X-Newsreader: TIN [version 1.2 PL2]
  5867. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  5868.  
  5869. Why not always do "set file type binary"?
  5870. Is there any reason to use text mode?
  5871. Binary mode seems to work fine for all types of files.
  5872. (I have the same question regarding ftp.)
  5873. Why is there a text mode at all?
  5874.  
  5875. --
  5876. Jeff Rodriguez
  5877.  
  5878. Electrical & Computer Engineering       rodriguez@ece.arizona.edu
  5879. The University of Arizona               Tel: (602) 621-8732 or 8963
  5880. Tucson, AZ 85721                        FAX: (602) 621-8076
  5881.  
  5882. From news@columbia.edu Sat Sep 24 12:38:34 1994
  5883. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00926
  5884.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 24 Sep 1994 21:13:33 -0400
  5885. Received: by apakabar.cc.columbia.edu id AA26016
  5886.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 24 Sep 1994 21:13:32 -0400
  5887. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  5888. From: jrd@cc.usu.edu (Joe Doupnik)
  5889. Newsgroups: comp.protocols.kermit.misc
  5890. Subject: Re: what is UART overrun
  5891. Message-Id: <1994Sep24.183834.27767@cc.usu.edu>
  5892. Date: 24 Sep 94 18:38:34 MDT
  5893. References: <94267.165558WILHC@CUNYVM.CUNY.EDU>
  5894. Organization: Utah State University
  5895. Lines: 10
  5896. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  5897.  
  5898. In article <94267.165558WILHC@CUNYVM.CUNY.EDU>, <WILHC@CUNYVM.CUNY.EDU> writes:
  5899. > Im getting this error message when I try to download from a mainframe to my ibm
  5900. >  at home.
  5901. ---------
  5902.     What program is showing you that message? MS-DOS Kermit does not
  5903. display it.
  5904.     It means a second byte arrived at the serial port from the outside
  5905. before the first byte could be read from the hardware. Flow control is
  5906. the solution.
  5907.     Joe D.
  5908.  
  5909. From news@columbia.edu Sat Sep 24 14:50:42 1994
  5910. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05235
  5911.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 24 Sep 1994 23:22:51 -0400
  5912. Received: by apakabar.cc.columbia.edu id AA01815
  5913.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 24 Sep 1994 23:22:50 -0400
  5914. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  5915. From: jrd@cc.usu.edu (Joe Doupnik)
  5916. Newsgroups: comp.protocols.kermit.misc
  5917. Subject: Re: When not "set file type binary" always?
  5918. Message-Id: <1994Sep24.205043.27777@cc.usu.edu>
  5919. Date: 24 Sep 94 20:50:42 MDT
  5920. References: <362e3r$jef@news.CCIT.Arizona.EDU>
  5921. Organization: Utah State University
  5922. Lines: 17
  5923. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  5924.  
  5925. In article <362e3r$jef@news.CCIT.Arizona.EDU>, jjr@mipl.ece.arizona.edu (Jeffrey J. Rodriguez) writes:
  5926. > Why not always do "set file type binary"?
  5927. > Is there any reason to use text mode?
  5928. > Binary mode seems to work fine for all types of files.
  5929. > (I have the same question regarding ftp.)
  5930. > Why is there a text mode at all?
  5931. > --
  5932. > Jeff Rodriguez
  5933. > Electrical & Computer Engineering       rodriguez@ece.arizona.edu
  5934. > The University of Arizona               Tel: (602) 621-8732 or 8963
  5935. > Tucson, AZ 85721                        FAX: (602) 621-8076
  5936. -----------
  5937.     Simple example: DOS ends lines in CR/LF, Unix ends text lines in LF,
  5938. Macs end lines in CR, and so on.
  5939.     Joe D.
  5940.  
  5941. From news@columbia.edu Sun Sep 25 04:24:52 1994
  5942. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07781
  5943.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 25 Sep 1994 00:23:03 -0400
  5944. Received: by apakabar.cc.columbia.edu id AA04590
  5945.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 25 Sep 1994 00:23:02 -0400
  5946. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!gatech!swrinde!sgiblab!sisters.cs.uoregon.edu!cs.uoregon.edu!usenet.ee.pdx.edu!not-for-mail
  5947. From: rkwee@ee.pdx.edu (Roland Kwee)
  5948. Newsgroups: comp.protocols.kermit.misc
  5949. Subject: Re: Just Say "RTFM" To Documented Kermit Questions
  5950. Date: 24 Sep 1994 21:24:52 -0700
  5951. Lines: 47
  5952. Distribution: World
  5953. Message-Id: <362u2k$70d@cruella.ee.pdx.edu>
  5954. References: <35scpt$lki@agate.berkeley.edu> <361ifo$rje@apakabar.cc.columbia.edu>
  5955. Nntp-Posting-Host: cruella.ee.pdx.edu
  5956. X-Newsreader: NN version 6.4.19 #2
  5957. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  5958.  
  5959. fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  5960.  
  5961. >In article <35scpt$lki@agate.berkeley.edu> forrest@toe.CS.Berkeley.EDU (Jon  
  5962. >Forrest) writes:
  5963. >> There have been an alarming number of questions in this newsgroup
  5964. >> recently that are answered in the public litterature. Instead
  5965. >> 
  5966. >Thank you, Jon.  We (Kermit developers) don't mind responding to queries
  5967. >about new stuff, items that aren't clear from the documentation, etc, but
  5968. >yes, people who use Kermit software a lot are heartily encouraged to
  5969. >purchase the documentation because:
  5970.  
  5971. (deleted a number of good reasons)
  5972.  
  5973. I like to attest to the validity of this point. While I like free software
  5974. partly because the price is right, I often feel a strong urge to buy
  5975. the accompanying books. In fact, I don't think those books are that
  5976. cheap, but spending, say, 70 dollars on the two main Kermit books is still
  5977. very cheap compared to paying for a single user license of any other
  5978. major software package. Look what you get if you buy two Kermit books:
  5979.  
  5980. Two nicely bound manuals that are very readable. They not only describe
  5981. the program, but also contain elaborate introductions to telecommunications
  5982. and data transmission, as well as to the inner workings of the
  5983. software.
  5984.  
  5985. This is typical for free software. Look at the books describing the
  5986. free TeX text formatter program. They even contain jokes, poems etc.
  5987. The books accompanying the free OS and programming language Oberon
  5988. are also much more readable than those of, say, Borland or Symantec
  5989. (no experience with Microsoft compilers). There is probably no editor
  5990. with a more rigorous manual than emacs.
  5991.  
  5992. Compare this with what you get for a couple hundred dollars spent at
  5993. such companies as Microsoft: totally boring manuals that often fail to
  5994. solve the actual problems that someone might have using the programs.
  5995. Plus diskettes with the software that you are not allowed to copy at will.
  5996.  
  5997. My motto: use free software unless you are sure the more expensive one
  5998. is better, and spend a small part of the money thus saved on those fine
  5999. books. Then, give away copies of the free software to whoever wants it,
  6000. and show those books so that they know they exist.
  6001.  
  6002. That's enough advertising for now, I guess.
  6003.  
  6004. --Roland
  6005. email: RolandKwee@ACM.org
  6006.  
  6007. From news@columbia.edu Fri Sep 23 12:49:01 1994
  6008. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12420
  6009.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 25 Sep 1994 02:01:04 -0400
  6010. Received: by apakabar.cc.columbia.edu id AA07033
  6011.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 25 Sep 1994 02:01:03 -0400
  6012. Newsgroups: comp.protocols.kermit.misc
  6013. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!library.ucla.edu!agate!msuinfo!netnews.upenn.edu!news.drexel.edu!news.ge.com!knight.vf.ge.com!not-for-mail
  6014. From: tcmayo@eng106.PSF.GE.COM (tom mayo)
  6015. Subject: Re: Kermit under Telix terminal program
  6016. Message-Id: <35uirt$gsb@eng106.PSF.GE.COM>
  6017. Lines: 43
  6018. Sender: news@knight.vf.ge.com
  6019. Nntp-Posting-Host: eng106.psf.ge.com
  6020. Organization: Martin Marietta Defense Systems
  6021. References: <CwJDzp.7C4@credit.erin.utoronto.ca> <1994Sep22.211430.27654@cc.usu.edu>
  6022. Date: Fri, 23 Sep 1994 12:49:01 GMT
  6023. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  6024.  
  6025. In article <1994Sep22.211430.27654@cc.usu.edu>,
  6026. Joe Doupnik <jrd@cc.usu.edu> wrote:
  6027. >In article <CwJDzp.7C4@credit.erin.utoronto.ca>, aveglio@tuzo.erin (Andrew Veglio) writes:
  6028. >>   I have been having no luck in transfering files using the Kermit protocol 
  6029. >> as implemented under Telix V3.15.  This program works well with my system
  6030. >> using the other protocols (eg. Zmodem,Xmodem,etc.) but with kermit it 
  6031. >> does not seem to be abel to talk to the Sun Unix box at work.
  6032. >>   I can connect and use Telix terminal mode quite well to operate the 7E1 
  6033. >> Unix connection, but when I initiate a Kermit transfer Telix times-out 
  6034. >> without transfering anything.
  6035. >>   All help would be appreciated as Telix is quite popular here and Kermit 
  6036. >> is the only protocal supported on the Unix server.  
  6037. >> 
  6038. >> Many Thanks
  6039. >> Andrew
  6040. >------------
  6041. >    Have to guess again. Here goes...
  6042. >    Might you have set Even parity just in the modem without telling
  6043. >Telix Kermit about it? If so there is a good chance that Telix and the
  6044. >remote Kermit negotiate an 8-bit connection and of course your modem chops
  6045. >the high bit without informing anyone. If this were true then it would be
  6046. >a classical case of "hidden comms boxes" nibbling at the data.
  6047. >    MS-DOS Kermit and C Kermit both try to unravel these cases as much
  6048. >as possible and may switch to using Even parity during the first packet
  6049. >exchange. It's clever. MSK expects the modem to stay out of the useless
  6050. >parity game and let Kermit do parity work in software (where there is
  6051. >full control and most importantly full knowledge to negotiate the proper
  6052. >bit-width during file transfers).
  6053. >    My suggestions are to look into these details, tell Telix about
  6054. >Even parity, and if things still don't work then also try MS-DOS Kermit 
  6055. >(it's faster and ...).
  6056. >    Joe D.
  6057.  
  6058. I have had similar trouble.  I am not fully satisfied that I explored
  6059. all avenues, but I did call the Telix support number and from what I
  6060. remember, they said that Telix does not support Kermit transfers over
  6061. 7-bit connections.
  6062.  
  6063. I have since switched to MS-DOS Kermit, and have been VERY happy with
  6064. it.  It is somewhat of a pain to get running at first, but it is at
  6065. least flexible and well-documented.
  6066.  
  6067. -Tom
  6068.  
  6069. From news@columbia.edu Sun Sep 25 06:33:57 1994
  6070. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13422
  6071.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 25 Sep 1994 02:34:46 -0400
  6072. Received: by apakabar.cc.columbia.edu id AA07896
  6073.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 25 Sep 1994 02:34:45 -0400
  6074. Path: news.columbia.edu!panix!MathWorks.Com!news2.near.net!bloom-beacon.mit.edu!senator-bedfellow.mit.edu!athena.mit.edu!raoul
  6075. From: raoul@athena.mit.edu (Nico Garcia)
  6076. Newsgroups: comp.protocols.kermit.misc
  6077. Subject: Re: When not "set file type binary" always?
  6078. Date: 25 Sep 1994 06:33:57 GMT
  6079. Organization: Massachusetts Institute of Technology
  6080. Lines: 18
  6081. Message-Id: <RAOUL.94Sep25023419@m4-167-7.mit.edu>
  6082. References: <362e3r$jef@news.CCIT.Arizona.EDU>
  6083. Nntp-Posting-Host: m4-167-7.mit.edu
  6084. In-Reply-To: jjr@mipl.ece.arizona.edu's message of 24 Sep 1994 23:52:27 GMT
  6085. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  6086.  
  6087. In article <362e3r$jef@news.CCIT.Arizona.EDU> jjr@mipl.ece.arizona.edu (Jeffrey J. Rodriguez) writes:
  6088.  
  6089.    Why not always do "set file type binary"?
  6090.    Is there any reason to use text mode?
  6091.    Binary mode seems to work fine for all types of files.
  6092.    (I have the same question regarding ftp.)
  6093.    Why is there a text mode at all?
  6094.  
  6095. That is an *excellent* question. The answer, for UNIX sys-admins like
  6096. me, is that when downloading lengthy text bug-patches and specifically
  6097. in downloading .bin files from certain Mac sites, they get corrupted
  6098. when downloaded in binary mode where they come over file where they
  6099. are fine in test mode.
  6100.  
  6101. This is the voice of embarassed experience.
  6102.  
  6103.                 Nico Garcia
  6104.                 raoul@athena.mit.edu
  6105.  
  6106. From news@columbia.edu Sun Sep 25 05:55:35 1994
  6107. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29240
  6108.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 25 Sep 1994 06:40:48 -0400
  6109. Received: by apakabar.cc.columbia.edu id AA12946
  6110.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 25 Sep 1994 06:40:47 -0400
  6111. Newsgroups: comp.protocols.kermit.misc
  6112. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!math.ohio-state.edu!news.acns.nwu.edu!raven.alaska.edu!orion.alaska.edu!fsbem
  6113. From: fsbem@orion.alaska.edu
  6114. Subject: Wtd: "Kermit, a file transfer protocol"
  6115. Message-Id: <1994Sep25.015535.1@orion.alaska.edu>
  6116. Lines: 7
  6117. Sender: news@raven.alaska.edu (USENET News System)
  6118. Organization: University of Alaska
  6119. Date: Sun, 25 Sep 1994 05:55:35 GMT
  6120. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  6121.  
  6122. Hi,
  6123. Looking for a copy of fdc's book "Kermit, a file transfer protocol"
  6124. If anybody has a copy they are not using anymore, drop me a line,
  6125.  
  6126. Thanks
  6127.  
  6128. blake
  6129.  
  6130. From news@columbia.edu Sun Sep 25 16:21:02 1994
  6131. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01286
  6132.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 25 Sep 1994 13:57:40 -0400
  6133. Received: by apakabar.cc.columbia.edu id AA10209
  6134.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 25 Sep 1994 13:57:38 -0400
  6135. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!pipex!sunic!trane.uninett.no!eunet.no!nuug!EU.net!uunet!gwu.edu!not-for-mail
  6136. From: pww@gwis2.circ.gwu.edu (Philip Wirtz)
  6137. Newsgroups: comp.protocols.kermit.misc
  6138. Subject: Kermit via tn3270
  6139. Date: 25 Sep 1994 12:21:02 -0400
  6140. Organization: The George Washington University
  6141. Lines: 17
  6142. Message-Id: <36481e$3bv@gwis2.circ.gwu.edu>
  6143. Nntp-Posting-Host: 128.164.127.252
  6144. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  6145.  
  6146. I use MSDOS Kermit on a PC-compatible machine to emulate a VT100 when
  6147. connecting (over a modem) to a Sun running Solaris.  I can upload,
  6148. download, and "transparent print" without problem.  When logged on to the
  6149. Sun, I use tn3270 to connect to an IBM mainframe running VM/CMS.  As an
  6150. alternative route to the IBM mainframe, I can use MSDOS Kermit to dial up
  6151. through a 7171 protocol emulator.  I have no problem using Kermit to
  6152. upload, download, or transparent print when I use the ALTERNATIVE route to
  6153. the IBM mainframe (i.e., dialing up through the 7171).  However, when
  6154. using the tn3270 route (which of course bypasses the 7171), I cannot
  6155. upload, download or transparent print.  Speculatively, it appears that
  6156. escape sequences are not being properly passed to the Sun (and therefore
  6157. to my PC), so (for example) the PC Kermit does not know that it needs to
  6158. pass subsequent characters through to the printer.  Does anyone have a
  6159. suggestion about how I can remediate this problem (...or, if this is the
  6160. incorrect forum for such a question, where it might be properly
  6161. raised...)?  Thanks. 
  6162.  
  6163.  
  6164. From news@columbia.edu Sun Sep 25 18:01:41 1994
  6165. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01543
  6166.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 25 Sep 1994 14:01:43 -0400
  6167. Received: by apakabar.cc.columbia.edu id AA10365
  6168.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 25 Sep 1994 14:01:42 -0400
  6169. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  6170. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  6171. Newsgroups: comp.protocols.kermit.misc
  6172. Subject: Re: HELP: kermit stops upload binary files over two telnet connections
  6173. Date: 25 Sep 1994 18:01:41 GMT
  6174. Organization: Columbia University
  6175. Lines: 30
  6176. Message-Id: <364du5$a3r@apakabar.cc.columbia.edu>
  6177. References: <361ipm$6bj@wega.rz.uni-ulm.de>
  6178. Nntp-Posting-Host: watsun.cc.columbia.edu
  6179. Keywords: kermit, telnet, download, retransmissions
  6180. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  6181.  
  6182. In article <361ipm$6bj@wega.rz.uni-ulm.de>,
  6183. Karl Gaissmaier <karl.gaissmaier@rz.uni-ulm.de> wrote:
  6184. >-- 
  6185. >
  6186. >Hello kermit wizards,
  6187. >
  6188. >kermit hangs if i try do upload binary files over two telnet connections:
  6189. >
  6190. >(kermit) host1 --(telnet)--> host2 -- (telnet) --> host3 (kermit server)
  6191. >
  6192. >if i try to UPLOAD a BINARY file from host1 to host3, kermit stops with
  6193. >to much retransmissions. I have no problems with ascii files or
  6194. >DOWNLOADING binary files.
  6195. >
  6196. >Any hints?
  6197.  
  6198.  
  6199. Try using small packets and no sliding windows.  If that works, then it is
  6200. a flow control problem somewhere between host1 and host3.
  6201.  
  6202. If it doesn't work, see where you are after the timeout errors.  Are you
  6203. still logged into host3, or are you on host2?  Make sure that all control
  6204. characters with special meanings are prefixed.  
  6205.  
  6206. What version of Kermit are you using on the PC?
  6207.  
  6208. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  6209. "C-Kermit: available on more platforms than any other communications software."
  6210. "Kermit FTP: sending files whenever and wherever they are needed."
  6211. OS/2 version 189 via ftp from watsun.cc.columbia.edu /kermit/bin/ckoker.zip 
  6212.  
  6213. From news@columbia.edu Sun Sep 25 18:15:21 1994
  6214. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01985
  6215.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 25 Sep 1994 14:15:23 -0400
  6216. Received: by apakabar.cc.columbia.edu id AA11073
  6217.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 25 Sep 1994 14:15:22 -0400
  6218. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  6219. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  6220. Newsgroups: comp.protocols.kermit.misc
  6221. Subject: MS-DOS Kermit hangs on newer machines - what is loaded high?
  6222. Date: 25 Sep 1994 18:15:21 GMT
  6223. Organization: Columbia University
  6224. Lines: 28
  6225. Message-Id: <364enp$apu@apakabar.cc.columbia.edu>
  6226. References: <35pesr$sun@liberator.et.tudelft.nl> <35rc73$l8s@archsrv.rz.unibw-muenchen.de> <1994Sep22.143039.22376@iitmax.iit.edu> <35u9p2$dej@liberator.et.tudelft.nl>
  6227. Nntp-Posting-Host: watsun.cc.columbia.edu
  6228. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  6229.  
  6230.  
  6231.  
  6232. For those of you who have benn reporting problems with MS-DOS Kermit on 
  6233. newer machines, I have one important question:  
  6234.  
  6235. What software do you have loaded high and what version of DOS are you using?
  6236.  
  6237. I have noticed significant problems with MS-DOS and IBM PC-DOS versions
  6238. 6.x which loading EMM386.EXE.  And then loading programs which affect timers
  6239. into high memory.  Example programs include MOUSE.COM and SMARTDRV.EXE.
  6240.  
  6241. The problems affect Token ring drivers, and serial devices which rely on
  6242. timers and interrupt driven I/O.
  6243.  
  6244. I believe the problems are causes by the need to switch from Real mode to 
  6245. protected mode in order to access the high memory safely.
  6246.  
  6247. For a simple test, boot off of a DOS diskette without EMM386 being loaded
  6248. and try out MS-DOS Kermit.  And then report back the results, it would not
  6249. surprise me if MS-DOS Kermit works fine under these conditions.
  6250.  
  6251. But until we discover the cause, there is not much that Joe can do the 
  6252. replicate it since he doesn't have access to the necessary hardware.
  6253.  
  6254. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  6255. "C-Kermit: available on more platforms than any other communications software."
  6256. "Kermit FTP: sending files whenever and wherever they are needed."
  6257. OS/2 version 189 via ftp from watsun.cc.columbia.edu /kermit/bin/ckoker.zip 
  6258.  
  6259. From news@columbia.edu Sun Sep 25 19:26:16 1994
  6260. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04805
  6261.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 25 Sep 1994 15:31:26 -0400
  6262. Received: by apakabar.cc.columbia.edu id AA14977
  6263.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 25 Sep 1994 15:31:25 -0400
  6264. Path: news.columbia.edu!panix!MathWorks.Com!solaris.cc.vt.edu!uunet!syko.cosmic.com!not-for-mail
  6265. From: marc@debris.cosmic.com (Marc Spitzer)
  6266. Newsgroups: comp.protocols.kermit.misc
  6267. Subject: where to get kermit and how to useit it?
  6268. Date: 25 Sep 1994 15:26:16 -0400
  6269. Organization: Cosmic Communications, Long Island, NY
  6270. Lines: 9
  6271. Message-Id: <364iso$gdl@debris.cosmic.com>
  6272. Nntp-Posting-Host: debris.cosmic.com
  6273. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  6274.  
  6275.  
  6276. Hello,
  6277.  
  6278. Where is kermit and how do you use it?  Pointers to ascii docs that i can 
  6279. ftp are what i would realy like. 
  6280.  
  6281. System 286 with 640 k herc moniter and st225 hd.
  6282.  
  6283. Thanks marc
  6284.  
  6285. From news@columbia.edu Sun Sep 25 21:28:29 1994
  6286. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09095
  6287.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 25 Sep 1994 17:28:37 -0400
  6288. Received: by apakabar.cc.columbia.edu id AA20901
  6289.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 25 Sep 1994 17:28:36 -0400
  6290. Path: news.columbia.edu!panix!ddsw1!not-for-mail
  6291. From: doug@MCS.COM (Douglas Harvey)
  6292. Newsgroups: comp.protocols.kermit.misc
  6293. Subject: a nice kermit icon?
  6294. Date: 25 Sep 1994 16:28:29 -0500
  6295. Organization: /usr/lib/news/organi[sz]ation
  6296. Lines: 13
  6297. Message-Id: <364q1t$f7d@Mercury.mcs.com>
  6298. Nntp-Posting-Host: mercury.mcs.com
  6299. Summary: where can I find one?
  6300. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  6301.  
  6302. I am looking for a nice Windows-format icon to use with Kermit.  I've looked
  6303. around and found only one (which I didn't like).  Don't you all agree that 
  6304. the kermit distribution should have an "official" kermit icon?
  6305.  
  6306. This is partially in fun, but who <does> have a nice kermit icon?
  6307.  
  6308. Doug
  6309. --
  6310. doug@mcs.com
  6311.  
  6312.  
  6313.  
  6314.  
  6315.  
  6316. From news@columbia.edu Sun Sep 25 23:06:05 1994
  6317. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15724
  6318.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 25 Sep 1994 19:52:06 -0400
  6319. Received: by apakabar.cc.columbia.edu id AA28076
  6320.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 25 Sep 1994 19:52:05 -0400
  6321. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!EU.net!sun4nl!news.nic.surfnet.nl!tudelft.nl!liberator.et.tudelft.nl!dutepp6.et.tudelft.nl!richard
  6322. From: richard@dutepp6.et.tudelft.nl (Richard Kooijman)
  6323. Newsgroups: comp.protocols.kermit.misc
  6324. Subject: Re: 16550A, PCI (Was: Computer hangs when line is dropped)
  6325. Date: 25 Sep 1994 23:06:05 GMT
  6326. Organization: Delft University of Technology, Dept. of Electrical Engineering
  6327. Lines: 45
  6328. Message-Id: <364vot$b3m@liberator.et.tudelft.nl>
  6329. References: <35pesr$sun@liberator.et.tudelft.nl> <35rc73$l8s@archsrv.rz.unibw-muenchen.de> <1994Sep22.143039.22376@iitmax.iit.edu> <35u9p2$dej@liberator.et.tudelft.nl> <1994Sep23.104605.27691@cc.usu.edu>
  6330. Nntp-Posting-Host: dutepp6.et.tudelft.nl
  6331. X-Newsreader: NN version 6.5.0 #1 (NOV)
  6332. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  6333.  
  6334. jrd@cc.usu.edu (Joe Doupnik) writes:
  6335.  
  6336. >> Kermit, however, fails using a single COM port.
  6337. >> What I didn't try yet was dialing and handling the callback by hand
  6338. >> so circumventing my automatic script. Any know problems in that area?
  6339. >> Richard.
  6340. >---------
  6341. >    Kermit's handling of the 16550A chip is fine, has been ever since
  6342. >the chips came out. But... motherboards and peripherals differ considerably,
  6343. >and the single word "fail" is too general for me to do much with.
  6344. >    Please note that Kermit actually safely tests your hardware before
  6345. >using it, contrary to the "shoot first, ask questions later" technique of many
  6346. >comms programs. If the test fails then the odds are in favor of something
  6347. >being peculiar in your machine.
  6348.  
  6349. Yeah right, I have seen this answer before, but Linux and Terminate
  6350. have zero, zilch, nada problems dealing with the hardware while Kermit
  6351. does have problems dealing with the chips. Maybe, just maybe I should
  6352. have said 'my chips' there, since you seem to think Kermit works flawless
  6353. with real 16550A's.
  6354. Other postings have proved otherwise, however.
  6355.  
  6356. >    I ask people to review the extensive material in text file MSKERM.BWR
  6357. >and open the covers of their machine to ensure things are the way one thinks
  6358. >they might be (check those jumpers). Watch out for TSRs hitting the ports,
  6359. >mouse drivers and fax programs included. While I enjoy tinkering with hardware 
  6360. >as much as the next person my crystal ball has a finite range; hence, I can't 
  6361. >diagnose the machine by remote control. That has to be your concern.
  6362.  
  6363. Sure, but the same (SAME as in equal) setup is OK with Terminate and Linux.
  6364. I don't need a crystal ball to tell me that apparently Kermit has a tinsy
  6365. little problem and not those other programs.
  6366. I have removed all TSR's and such, thank you, I am not a complete newbee.
  6367.  
  6368. >        As in all complex situations the path to solutions is simplify
  6369. >and isolate carefully. Divide and conquer (except when divide overflows).
  6370. >Ask a friend to be a cross examiner during the process, and don't forget those
  6371. >sacrifical chickens.
  6372.  
  6373. I have found the problem a while ago: MS-Kermit. Sorry, but that is just the
  6374. way it is.
  6375.  
  6376.  
  6377.  
  6378. Richard.
  6379.  
  6380. From news@columbia.edu Mon Sep 26 00:50:01 1994
  6381. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21360
  6382.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 25 Sep 1994 20:51:38 -0400
  6383. Received: by apakabar.cc.columbia.edu id AA01430
  6384.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 25 Sep 1994 20:51:31 -0400
  6385. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!vixen.cso.uiuc.edu!newsrelay.iastate.edu!news.iastate.edu!tflynn
  6386. From: tflynn@iastate.edu (Timothy John Flynn)
  6387. Newsgroups: comp.protocols.kermit.misc
  6388. Subject: Problems with Kermit and Windows for Workgroups
  6389. Date: 26 Sep 1994 00:50:01 GMT
  6390. Organization: Iowa State University, Ames, IA
  6391. Lines: 28
  6392. Message-Id: <3655rp$blv@news.iastate.edu>
  6393. Nntp-Posting-Host: des1.iastate.edu
  6394. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  6395.  
  6396.  
  6397.     I am using kermit with windows for workgroups.  I seem to get
  6398. alot of retry errors when I download files while running under windows,
  6399. but when I run kermit straight out of dos I hardly get any.  I prefer to
  6400. work under windows so I can work on other programs while downloading..is
  6401. there any way I can set some options either in the emm386 area for
  6402. windows or does kermit require special comm drivers to communicate with
  6403. windows? My connection runs at 19200 and consists of a basic null modem
  6404. serial link with Iowa States Prject Vincent.
  6405.     Any help as always is greatly appreciated!
  6406. email please!
  6407.  
  6408.  
  6409.  
  6410.  
  6411.  
  6412.  
  6413.  
  6414.  
  6415.  
  6416.  
  6417.  
  6418. -- 
  6419. Timothy J Flynn                         
  6420. (tflynn@iastate.edu)                  
  6421. Fine Arts &                                        
  6422. Computer Science                     
  6423. Larch 1349 Cunningham, Ames, Iowa 50013-0008    phone (515)-294-9022
  6424.  
  6425. From news@columbia.edu Sun Sep 25 12:59:40 1994
  6426. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25555
  6427.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 25 Sep 1994 21:13:38 -0400
  6428. Received: by apakabar.cc.columbia.edu id AA02424
  6429.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 25 Sep 1994 21:13:36 -0400
  6430. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  6431. From: jrd@cc.usu.edu (Joe Doupnik)
  6432. Newsgroups: comp.protocols.kermit.misc
  6433. Subject: Re: 16550A, PCI (Was: Computer hangs when line is dropped)
  6434. Message-Id: <1994Sep25.185940.27798@cc.usu.edu>
  6435. Date: 25 Sep 94 18:59:40 MDT
  6436. References: <35pesr$sun@liberator.et.tudelft.nl>  <364vot$b3m@liberator.et.tudelft.nl>
  6437. Organization: Utah State University
  6438. Lines: 32
  6439. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  6440.  
  6441. In article <364vot$b3m@liberator.et.tudelft.nl>, richard@dutepp6.et.tudelft.nl (Richard Kooijman) writes:
  6442. > jrd@cc.usu.edu (Joe Doupnik) writes:
  6443. >>> Kermit, however, fails using a single COM port.
  6444. >>> What I didn't try yet was dialing and handling the callback by hand
  6445. >>> so circumventing my automatic script. Any know problems in that area?
  6446. >>> Richard.
  6447. >>---------
  6448. >>    Kermit's handling of the 16550A chip is fine, has been ever since
  6449. >>the chips came out. But... motherboards and peripherals differ considerably,
  6450. >>and the single word "fail" is too general for me to do much with.
  6451. >>    Please note that Kermit actually safely tests your hardware before
  6452. >>using it, contrary to the "shoot first, ask questions later" technique of many
  6453. >>comms programs. If the test fails then the odds are in favor of something
  6454. >>being peculiar in your machine.
  6455. > Yeah right, I have seen this answer before, but Linux and Terminate
  6456. > have zero, zilch, nada problems dealing with the hardware while Kermit
  6457. > does have problems dealing with the chips. Maybe, just maybe I should
  6458. > have said 'my chips' there, since you seem to think Kermit works flawless
  6459. > with real 16550A's.
  6460. > Other postings have proved otherwise, however.
  6461.     Not to argue about it but they haven't shown that. May I refresh
  6462. the minds of the readership on the "emulated 16550A" chip problem: it is
  6463. a chip problem and the cure seems to be to hit the chip with a 2x4. Some
  6464. software may think that's a good thing to do and fooey on the rest of
  6465. the world; Kermit does not. In any case, as I said previously, MSK 3.14
  6466. has code to workaround this chip problem. The release MSKs for many years
  6467. have worked perfectly with real 16550As, at my place and from no reports
  6468. of troubles with the real chips.
  6469.     Joe D.
  6470.  
  6471.  
  6472. From news@columbia.edu Sun Sep 25 13:58:28 1994
  6473. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06396
  6474.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 25 Sep 1994 22:13:55 -0400
  6475. Received: by apakabar.cc.columbia.edu id AA05890
  6476.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 25 Sep 1994 22:13:53 -0400
  6477. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!convex!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  6478. From: jrd@cc.usu.edu (Joe Doupnik)
  6479. Newsgroups: comp.protocols.kermit.misc
  6480. Subject: Re: Problems with Kermit and Windows for Workgroups
  6481. Message-Id: <1994Sep25.195828.27801@cc.usu.edu>
  6482. Date: 25 Sep 94 19:58:28 MDT
  6483. References: <3655rp$blv@news.iastate.edu>
  6484. Organization: Utah State University
  6485. Lines: 34
  6486. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  6487.  
  6488. In article <3655rp$blv@news.iastate.edu>, tflynn@iastate.edu (Timothy John Flynn) writes:
  6489. >     I am using kermit with windows for workgroups.  I seem to get
  6490. > alot of retry errors when I download files while running under windows,
  6491. > but when I run kermit straight out of dos I hardly get any.  I prefer to
  6492. > work under windows so I can work on other programs while downloading..is
  6493. > there any way I can set some options either in the emm386 area for
  6494. > windows or does kermit require special comm drivers to communicate with
  6495. > windows? My connection runs at 19200 and consists of a basic null modem
  6496. > serial link with Iowa States Prject Vincent.
  6497. >     Any help as always is greatly appreciated!
  6498. > email please!
  6499. ------------
  6500.     A very common complaint with all serial port comms programs under
  6501. Windows; you have company.
  6502.     It's Windows. If you scan the PC News groups notice how many msgs
  6503. there are on this topic. The cures fall into two main categories: if you
  6504. continue to run at 19,200 or higher then by all means acquire a buffered
  6505. UART (the 16550A flavor), and look for a better Windows serial port driver
  6506. than that shipped with Windows. Of course slowing down is also a solution.
  6507.     Windows grabs the real serial port and simulates it to DOS box
  6508. programs, so the fault is between Windows and its hardware. You can try
  6509. to give the DOS box greater cpu resources by fiddling with the program
  6510. parameters in Windows but much of this has to be done locally to match
  6511. the particular setup on the machine.
  6512.     Two replacment items I have come across are the Delrina Windows
  6513. Fax com item, wfxcom.zip (copy on netlab2.usu.edu, cd apps), and a decent
  6514. buffered UART serial board. I'm using a Hayes ESP board this week which
  6515. looks like a 16550A to programs and which has its own Windows driver.
  6516. There are many other drivers and boards available so you may wish to
  6517. ask around in the Windows News groups for shared experiences.
  6518.     Try to use hardware flow control (RTS/CTS) if your cable has 
  6519. enough wires. It's faster acting than XON/XOFF.
  6520.     Joe D.
  6521.  
  6522. From news@columbia.edu Sun Sep 25 14:05:33 1994
  6523. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06402
  6524.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 25 Sep 1994 22:13:57 -0400
  6525. Received: by apakabar.cc.columbia.edu id AA05894
  6526.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 25 Sep 1994 22:13:56 -0400
  6527. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  6528. From: jrd@cc.usu.edu (Joe Doupnik)
  6529. Newsgroups: comp.protocols.kermit.misc
  6530. Subject: Re: a nice kermit icon?SKIP/NEWSGROUP
  6531. Message-Id: <1994Sep25.200533.27802@cc.usu.edu>
  6532. Date: 25 Sep 94 20:05:33 MDT
  6533. References: <364q1t$f7d@Mercury.mcs.com>
  6534. Organization: Utah State University
  6535. Lines: 38
  6536. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  6537.  
  6538. In article <364q1t$f7d@Mercury.mcs.com>, doug@MCS.COM (Douglas Harvey) writes:
  6539. > I am looking for a nice Windows-format icon to use with Kermit.  I've looked
  6540. > around and found only one (which I didn't like).  Don't you all agree that 
  6541. > the kermit distribution should have an "official" kermit icon?
  6542. > This is partially in fun, but who <does> have a nice kermit icon?
  6543. ------------
  6544.     I make one for the MSK 3.14 release. However, folks may have
  6545. a grain of artistic sense and discard my feeble attempt. Here is my
  6546. attempt, and please don't snicker to my face...
  6547.     Joe D.
  6548. -------------
  6549. section 1 of uuencode 4.13 of file KERMIT.ICO    by R.E.M.
  6550.  
  6551. begin 644 KERMIT.ICO
  6552. M```!``$`("`0``````#H`@``%@```"@````@````0`````$`!```````@`(`.
  6553. M``````````````````````````````"```"`````@(``@````(``@`"`@```6
  6554. M@("``,#`P````/\``/\```#__P#_````_P#_`/__``#___\`____________@
  6555. M____________________________________________________________$
  6556. M______________F9F9F9F9_____________Y\/#P\/"0```````/____^0\/9
  6557. M#P\/G_______`/____GP\/#P\)________`/___YF9F9F9F?________#___Z
  6558. M___Y_Y__________\`____^9F9F9F?_______P#____Y______^?______`/W
  6559. M____^?______G_____\`______GW=W=W_Y______#______Y______^?____L
  6560. M``#_____^?=W=W?_G____P``______G______Y____S,S,_____Y]W=W=_^?W
  6561. M__S,XN[LS___^?______G__,[B(N[LS___^9F9F9F?_\SN(B(N[NS/______G
  6562. M____S.[B(B+N[NS/_________\[NXB(B[N[NSP________S.[NXB+N[N[L_PQ
  6563. M_______\[N[N+NXN[N[L_P\`_____.[NXB+B[N[N[/_P#P____SN[B(B(N[N;
  6564. M[NS__P_P\`__SNXB(B+N[N[/_____P#P_\SN(B(B+N[LS______P_P_\XB(B]
  6565. M(N[N[/_________P_,XB(B(N[,S__________P_\[N[N[LS____________P`
  6566. M_\S,S,S/__\`````````````````````````````````````````````````U
  6567. M`````````````````````````````````````````````````````````````
  6568. M`````````````````````````````````````````````````````````````
  6569. !`````
  6570. ``
  6571. end
  6572. sum -r/size 57357/1106 section (from "begin" to "end")
  6573. sum -r/size 40329/766 entire input file
  6574.  
  6575.  
  6576. From news@columbia.edu Mon Sep 26 02:52:34 1994
  6577. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12756
  6578.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 25 Sep 1994 22:58:32 -0400
  6579. Received: by apakabar.cc.columbia.edu id AA08046
  6580.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 25 Sep 1994 22:58:31 -0400
  6581. Newsgroups: comp.protocols.kermit.misc
  6582. Path: news.columbia.edu!panix!MathWorks.Com!news.kei.com!ub!acsu.buffalo.edu!ubvms.cc.buffalo.edu!RINGLAND
  6583. From: ringland@ubvms.cc.buffalo.edu
  6584. Subject: Kermit can't access modem under Windows
  6585. Message-Id: <Cwpunn.CG7@acsu.buffalo.edu>
  6586. Sender: nntp@acsu.buffalo.edu
  6587. Nntp-Posting-Host: ubvmsa.cc.buffalo.edu
  6588. Reply-To: ringland@ubvms.cc.buffalo.edu
  6589. Organization: University at Buffalo
  6590. Date: Mon, 26 Sep 1994 02:52:34 GMT
  6591. Lines: 15
  6592. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  6593.  
  6594. Hello.  I'm hoping that someone will indulge my ignorance and help
  6595. with what might be a common problem.  Kermit works fine in DOS on
  6596. my 386 with a USRobotics Sportster modem on Com 4, IRQ 5.  In windows
  6597. it seems that Kermit can't access the modem.  After trying the computer
  6598. hangs.  Cntl Alt. Del. sometimes quits Kermit and sometimes not, which
  6599. seems to be connected to whether the mouse is moving (mouse is on Com1,
  6600. IRQ 4).  I use other windows communications programs without problem,
  6601. except that they don't include full implementations of Kermit, and 
  6602. the protocols they do include often don't work, which is why I want
  6603. to run Kermit.  I *think* I've tried just about everything.  The modem
  6604. is a 14,400 model, and I'm fairly sure I've got all the Kermit settings
  6605. right, including, of course, the Com and Interrupt settings -- as I
  6606. said, works fine in DOS.  Help!
  6607.  
  6608. Thanks!  (BTW this is the latest Kermit MS-DOS 3.13)
  6609.  
  6610. From news@columbia.edu Mon Sep 26 06:43:43 1994
  6611. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07230
  6612.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 02:43:49 -0400
  6613. Received: by apakabar.cc.columbia.edu id AA17243
  6614.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 02:43:47 -0400
  6615. Path: news.columbia.edu!panix!not-for-mail
  6616. From: ami@panix.com (Ami Bar-Yadin)
  6617. Newsgroups: comp.protocols.kermit.misc
  6618. Subject: non-erasable characters in VT220 emulation
  6619. Date: 26 Sep 1994 02:43:43 -0400
  6620. Organization: PANIX Public Access Internet and Unix, NYC
  6621. Lines: 35
  6622. Message-Id: <2kaXkSng1uNR071yn@panix.com>
  6623. Nntp-Posting-Host: panix.com
  6624. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  6625.  
  6626. The DEC VT220 has some command sequences that deal with
  6627. non-erasable characters.  I think Kermit's emulation of a VT220
  6628. does not handle these properly.
  6629.  
  6630. Is Kermit suppose to support these command sequences?
  6631.  
  6632. If not, are there any plans to add this support in the future?
  6633.  
  6634.  
  6635. From the DEC VT220 pocket reference guide:
  6636.  
  6637. Select Char Attributes (DECSCA):  Applies to subsequent characters
  6638.    CSI Ps " q
  6639.    where Ps is
  6640.         0: All attributes off (does not apply to Graphic Rendition)
  6641.         1: designate chars as "not erasable" by DECSEL/DECSED
  6642.         2: designate chars as "erasable" by DECSEL/DECSED
  6643.  
  6644. Selective Erase in Line (DECSEL):
  6645.    CSI ? Ps K
  6646.    where Ps is
  6647.      null:  Erase all "erasable" chars from cursor to EOL
  6648.         0:  Same as null
  6649.         1:  Erase all "erasable" chars from BOL to cursor
  6650.         2:  Erase all "erasable" chars on the line
  6651.  
  6652. Selective Erase in Display (DECSED):
  6653.    CSI ? Ps J
  6654.    where Ps is
  6655.      null:  Erase all "erasable" chars from cursor to EOS
  6656.         0:  same as null
  6657.         1:  Erase all "erasable" chars from BOS to cursor
  6658.         2:  Erase all "erasable" chars on the screen
  6659. --
  6660. Ami Bar-Yadin (ami@panix.com)
  6661.  
  6662. From news@columbia.edu Mon Sep 26 13:00:17 1994
  6663. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16809
  6664.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 09:00:19 -0400
  6665. Received: by apakabar.cc.columbia.edu id AA09236
  6666.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 09:00:18 -0400
  6667. Path: news.columbia.edu!usenet
  6668. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  6669. Newsgroups: comp.protocols.kermit.misc
  6670. Subject: Re: non-erasable characters in VT220 emulation
  6671. Date: 26 Sep 1994 13:00:17 GMT
  6672. Organization: Columbia University
  6673. Lines: 16
  6674. Distribution: World
  6675. Message-Id: <366gl1$90i@apakabar.cc.columbia.edu>
  6676. References: <2kaXkSng1uNR071yn@panix.com>
  6677. Nntp-Posting-Host: fdc.cc.columbia.edu
  6678. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  6679.  
  6680. In article <2kaXkSng1uNR071yn@panix.com> ami@panix.com (Ami Bar-Yadin)  
  6681. writes:
  6682. > The DEC VT220 has some command sequences that deal with
  6683. > non-erasable characters.  I think Kermit's emulation of a VT220
  6684. > does not handle these properly.
  6685. > Is Kermit suppose to support these command sequences?
  6686. Support for "protected fields" has been added to version 3.14, which
  6687. will be announced for testing shortly.
  6688.  
  6689. - Frank
  6690. x
  6691. x
  6692. x
  6693. x
  6694. x
  6695.  
  6696. From news@columbia.edu Mon Sep 26 13:04:26 1994
  6697. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17324
  6698.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 09:04:29 -0400
  6699. Received: by apakabar.cc.columbia.edu id AA09534
  6700.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 09:04:28 -0400
  6701. Path: news.columbia.edu!usenet
  6702. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  6703. Newsgroups: comp.protocols.kermit.misc
  6704. Subject: Re: Wtd: "Kermit, a file transfer protocol"
  6705. Date: 26 Sep 1994 13:04:26 GMT
  6706. Organization: Columbia University
  6707. Lines: 12
  6708. Distribution: World
  6709. Message-Id: <366gsq$99q@apakabar.cc.columbia.edu>
  6710. References: <1994Sep25.015535.1@orion.alaska.edu>
  6711. Nntp-Posting-Host: fdc.cc.columbia.edu
  6712. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  6713.  
  6714. In article <1994Sep25.015535.1@orion.alaska.edu> fsbem@orion.alaska.edu  
  6715. writes:
  6716. > Looking for a copy of fdc's book "Kermit, a file transfer protocol"
  6717. > If anybody has a copy they are not using anymore, drop me a line,
  6718. It's still in print, believe it or not.  Although the types of
  6719. computers it talks about have mostly faded into history (DEC-20s, etc),
  6720. the specification of the Kermit protocol is still the definitive one.
  6721. If you can't find it at your local computer bookstore, you can call
  6722. +1 212 854-3703 or +1 800 366-2665 to order it.
  6723.  
  6724. - Frank
  6725.  
  6726. From news@columbia.edu Mon Sep 26 13:28:36 1994
  6727. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19508
  6728.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 09:28:42 -0400
  6729. Received: by apakabar.cc.columbia.edu id AA11221
  6730.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 09:28:40 -0400
  6731. Path: news.columbia.edu!usenet
  6732. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  6733. Newsgroups: comp.protocols.kermit.misc
  6734. Subject: Re: When not "set file type binary" always?
  6735. Date: 26 Sep 1994 13:28:36 GMT
  6736. Organization: Columbia University
  6737. Lines: 61
  6738. Distribution: World
  6739. Message-Id: <366ia4$aui@apakabar.cc.columbia.edu>
  6740. References: <362e3r$jef@news.CCIT.Arizona.EDU>
  6741. Nntp-Posting-Host: fdc.cc.columbia.edu
  6742. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  6743.  
  6744. In article <362e3r$jef@news.CCIT.Arizona.EDU>
  6745. jjr@mipl.ece.arizona.edu (Jeffrey J. Rodriguez) writes:
  6746. > Why not always do "set file type binary"?
  6747. > Is there any reason to use text mode?
  6748. > Binary mode seems to work fine for all types of files.
  6749. > (I have the same question regarding ftp.)
  6750. > Why is there a text mode at all?
  6751. Three reasons:
  6752.  
  6753. (1) Record format: As most people know, different file systems represent
  6754. lines of plain text in different ways:
  6755.  
  6756.  . A stream of characters terminated by CRLF (e.g. DOS)
  6757.  . A stream of characters terminated by LF (e.g. UNIX)
  6758.  . A stream of characters terminated by CR (e.g. Mac or OS-9)
  6759.  . A LF followed by a stream of charcters followed by CR (VMS)
  6760.  . A count word followed by a stream of characters (mainframes)
  6761.  . A fixed-length field with trailing blanks or NULs (mainframes)
  6762.  . etc etc etc
  6763.  
  6764. If you transfer a text file from one type of system to another, the
  6765. presumption is that you want it to be in useful format when it arrives.
  6766. For example, if you transferred a Macintosh text file to, say, a UNIX or
  6767. VMS system without conversion, you would probably wind up with all the
  6768. lines overstriking each other.  If you transferred C program source from
  6769. DOS to UNIX in binary mode, you couldn't compile it.  If you transferred
  6770. UNIX text to DOS in binary mode, it would print in "stairstep" fashion.
  6771. And so on.
  6772.  
  6773. (2) File Format.  Different file systems have different ways of
  6774. representing the end of a file:
  6775.  
  6776.  . An exact byte count (e.g. UNIX)
  6777.  . An approximately byte count (e.g. Prime)
  6778.  . A block count
  6779.  . A record count
  6780.  . An internal in-band marker, like Ctrl-Z
  6781.  . etc etc
  6782.  
  6783. When you transfer text files in binary mode, and the end of file is not
  6784. represented in an exact fashion, you are likely to get junk at the end
  6785. of the transferred file.
  6786.  
  6787. (3) Character set.  I realize Americans could not care less about this
  6788. issue, but there are places in the world where people speak other
  6789. languages than English, in which accented and/or non-Roman letters or
  6790. other glyphs are needed, and want to be able to use them when writing
  6791. text on their computers.  Unfortunately, each computer and OS is likely
  6792. to use completely different encodings for the same characters.
  6793. Binary-mode transfers would skip any needed conversions whereas
  6794. text-mode transfers -- at least when done by Kermit -- will take care of
  6795. them.
  6796.  
  6797. Bottom line: Use text mode when transferring plain text and you want it
  6798. to arrive on the destination system in useful format.  Use binary mode
  6799. when you don't want any conversions to be done.  You can also use binary
  6800. mode when transferring text between two computers that have the same
  6801. kind of file system -- record format, file format, and character set.
  6802.  
  6803. - Frank
  6804.  
  6805. From news@columbia.edu Mon Sep 26 12:56:30 1994
  6806. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19544
  6807.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 09:29:23 -0400
  6808. Received: by apakabar.cc.columbia.edu id AA11267
  6809.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 09:29:22 -0400
  6810. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!agate!doc.ic.ac.uk!susx.ac.uk!leilabd
  6811. From: leilabd@central.susx.ac.uk (Leila Burrell-Davis)
  6812. Newsgroups: comp.protocols.kermit.misc
  6813. Subject: Re: a nice kermit icon?SKIP/NEWSGROUP
  6814. Date: 26 Sep 1994 12:56:30 GMT
  6815. Organization: Computing Service, University of Sussex, UK
  6816. Lines: 48
  6817. Message-Id: <366gdu$nst@infa.central.susx.ac.uk>
  6818. References: <364q1t$f7d@Mercury.mcs.com> <1994Sep25.200533.27802@cc.usu.edu>
  6819. Nntp-Posting-Host: solx1.central.susx.ac.uk
  6820. X-Newsreader: TIN [version 1.2 PL2]
  6821. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  6822.  
  6823. Joe Doupnik (jrd@cc.usu.edu) wrote:
  6824. % In article <364q1t$f7d@Mercury.mcs.com>, doug@MCS.COM (Douglas Harvey) writes:
  6825. % > I am looking for a nice Windows-format icon to use with Kermit.  I've looked
  6826. % > around and found only one (which I didn't like).  Don't you all agree that 
  6827. % > the kermit distribution should have an "official" kermit icon?
  6828. % > 
  6829. % > This is partially in fun, but who <does> have a nice kermit icon?
  6830. % ------------
  6831. %     I make one for the MSK 3.14 release. However, folks may have
  6832. % a grain of artistic sense and discard my feeble attempt. Here is my
  6833. % attempt, and please don't snicker to my face...
  6834. %     Joe D.
  6835. % -------------
  6836.  
  6837. Designing icons is clearly an art :-). Here's the one we use here.
  6838. Feel free to snicker or to use it.
  6839.  
  6840. Leila
  6841. --
  6842. table
  6843.  !"#$%&'()*+,-./0123456789:;<=>?
  6844. @ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_
  6845. begin 644 kermit.ico
  6846. M   !  $ (" 0      #H @  %@   "@    @    0     $ !       @ ( z
  6847. M                              "   "     @(  @    (  @ " @   y
  6848. M@("  ,# P    /\  /\   #__P#_    _P#_ /__  #___\ ____/______Px
  6849. M,S,S,S,S,___________\#,S,S,S,S/___/_____]5 S,S,S,S,S________w
  6850. M]5 #,S,S,S,S,_____55554P,S,S,S,S,S/__S9:JJJJH#,S,S,S,S,S__55v
  6851. M6J.JJJ S,S,S,S,S,_\%JJJJJJJ@ S,S,S,S,S-0"JJJJJJJJ@,S,S,S,S,Su
  6852. MX JJJJJJJJJJ#N[N[N[N[NX*JJJJJJJJJ@#N[N[N[N[N"JJJJJJJJJJJH   t
  6853. M#N[N[@JJJJJJJJJJJJ  "@  [NX*JJJJJJJJH   JJ *H [N"JJJJJJJH "Js
  6854. MJJJJJJH.[@JJJJJJJJ"JJJJJJJJJ#NX*JJJJJJ *JJJJJJJJH [NX*JJJJJ@r
  6855. MJJJJJJJJJJ#N[N"JJJJJJJJJJJJJJJH.[N[@JJJJJJJJJJJJJJH #N[NX JJq
  6856. MH "JJJJJJJJ@#N[N[NX H _P  JJJJJJH.[N[N[NX*#___\ JJJJH [N[N[Np
  6857. M[NX __  \*JJH [N[N[N[N[NX/\  /"J   .[N[N[N[N[N#_  \   \/#N[No
  6858. M[N[N[N[N#___#N#P#P[N[N[N[N[N[@#_\ [@#_ .[N[N[N[N[N[N  [N[@  n
  6859. M[N[N[N[N[N[N[N[N[N[N[N[N[N[N[N[N[N[N[N[N[N[N[N[N[N[N[N[N[N[Nm
  6860. M[N[N[N[N[NX                                                 l
  6861. M                                                            k
  6862. M                                                            j
  6863. !    i
  6864.  h
  6865. end
  6866. -- 
  6867. Leila Burrell-Davis, Computing Service, University of Sussex, Brighton, UK
  6868. Tel:  +44 (0) 1273 678390            Fax:  +44 (0) 1273 678470
  6869. Email: L.Burrell-Davis@susx.ac.uk
  6870. PGP Public Key fingerprint: 18 A3 45 D6 40 6D 62 00  E9 71 AD 18 E8 E2 9F 7D 
  6871.  
  6872. From news@columbia.edu Mon Sep 26 01:47:46 1994
  6873. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22725
  6874.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 10:18:03 -0400
  6875. Received: by apakabar.cc.columbia.edu id AA14434
  6876.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 10:18:02 -0400
  6877. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!convex!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  6878. From: jrd@cc.usu.edu (Joe Doupnik)
  6879. Newsgroups: comp.protocols.kermit.misc
  6880. Subject: Re: Kermit can't access modem under Windows
  6881. Message-Id: <1994Sep26.074746.27819@cc.usu.edu>
  6882. Date: 26 Sep 94 07:47:46 MDT
  6883. References: <Cwpunn.CG7@acsu.buffalo.edu>
  6884. Organization: Utah State University
  6885. Lines: 14
  6886. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  6887.  
  6888. In article <Cwpunn.CG7@acsu.buffalo.edu>, ringland@ubvms.cc.buffalo.edu writes:
  6889. > Hello.  I'm hoping that someone will indulge my ignorance and help
  6890. > with what might be a common problem.  Kermit works fine in DOS on
  6891. > my 386 with a USRobotics Sportster modem on Com 4, IRQ 5.  In windows
  6892. > it seems that Kermit can't access the modem.  After trying the computer
  6893. > hangs.  Cntl Alt. Del. sometimes quits Kermit and sometimes not, which
  6894. > seems to be connected to whether the mouse is moving (mouse is on Com1,
  6895. > IRQ 4).
  6896.  
  6897.     Did you tell Kermit about the port and IRQ for COM4 via the
  6898. Kermit command SET COM4 port irq? The reason you have to for this port
  6899. and for IRQ not 4 or 3 is there is no way to acquire that information
  6900. from the hardware. 
  6901.     Joe D.
  6902.  
  6903. EL):
  6904. >    CSI ? Ps K
  6905. >    where Ps is
  6906. >      null:  Erase all "erasable" chars from cursor to EOL
  6907. >         0:  Same as null
  6908. >         1:  Erase all "erasable" chars from BOL to cursor
  6909. >         2:  Erase all "erasable" chars on the line
  6910. > Selective Erase in Display (DECSED):
  6911. >    CSI ? Ps J
  6912. >    where Ps is
  6913. >      null:  Erase all "erasable" chars from cursor to EOS
  6914. >         0:  same as null
  6915. >         1:  Erase all "erasable" chars from BOS to cursor
  6916. >         2:  Erase all "erasable" chars on the screen
  6917. > --
  6918. ---------------
  6919.     As detailed in the release doc msvibm.vt which is part of the
  6920. MS-DOS Kermit distribution suite, these commands are not supported in
  6921. MSK up to v3.13. They are very rarely used. But version 3.14 (to come
  6922. out) does implement them.
  6923.     Joe D.
  6924.  
  6925. From news@columbia.edu Mon Sep 19 20:59:00 1994
  6926. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20731
  6927.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:16:36 -0400
  6928. Received: by apakabar.cc.columbia.edu id AA09939
  6929.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:16:33 -0400
  6930. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!sigurd.andersen
  6931. From: sigurd.andersen@aecibbs.proxima.alt.za (Sigurd Andersen)
  6932. Newsgroups: comp.protocols.kermit.misc
  6933. Subject: Re: A little bit of reverse engineering.
  6934. Message-Id: <12.335.uupcb@aecibbs.proxima.alt.za>
  6935. Date: 19 Sep 94 20:59:00 GMT
  6936. Distribution: world
  6937. Organization: AECI BBS  +27 11 608-1516
  6938. Reply-To: sigurd.andersen@aecibbs.proxima.alt.za (Sigurd Andersen)
  6939. Lines: 8
  6940. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  6941.  
  6942. From: sigurd@chopin.udel.edu (Sigurd Andersen)
  6943. Date: 16 Sep 1994 18:30:14 -0400
  6944. Organization: University of Delaware
  6945. Message-ID: <35d69m$7fs@chopin.udel.edu>
  6946.  
  6947. In article <35bbuh$7h4@sunserver.lrz-muenchen.de>,
  6948. <s3e0101@sun2.lrz-muenchen.de> wrote:
  6949. :
  6950.  
  6951. From news@columbia.edu Mon Sep 19 20:59:00 1994
  6952. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20750
  6953.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:16:59 -0400
  6954. Received: by apakabar.cc.columbia.edu id AA09984
  6955.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:16:57 -0400
  6956. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!cliff.stamp
  6957. From: cliff.stamp@aecibbs.proxima.alt.za (Cliff Stamp)
  6958. Newsgroups: comp.protocols.kermit.misc
  6959. Subject: kermit dialing help (3.1.3 on PC)
  6960. Message-Id: <13.335.uupcb@aecibbs.proxima.alt.za>
  6961. Date: 19 Sep 94 20:59:00 GMT
  6962. Distribution: world
  6963. Organization: AECI BBS  +27 11 608-1516
  6964. Reply-To: cliff.stamp@aecibbs.proxima.alt.za (Cliff Stamp)
  6965. Lines: 11
  6966. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  6967.  
  6968. From: cstamp@morgan.ucs.mun.ca (Cliff Stamp)
  6969. Date: 16 Sep 1994 17:32:24 GMT
  6970. Organization: Memorial University of Newfoundland
  6971. Message-ID: <35ckr8$s2s@coranto.ucs.mun.ca>
  6972.  
  6973. Does anyone know how to tell kermit to redial after a set number
  6974. of rings/busy signals. Right now it is set to around 25 and I would
  6975. like to lower it to 2.
  6976.  
  6977. Thanks for your time.
  6978. --
  6979.  
  6980. From news@columbia.edu Mon Sep 19 20:59:00 1994
  6981. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20810
  6982.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:17:16 -0400
  6983. Received: by apakabar.cc.columbia.edu id AA10012
  6984.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:17:15 -0400
  6985. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!hutsel.barry.e
  6986. From: hutsel.barry.e@aecibbs.proxima.alt.za (Hutsel Barry E)
  6987. Newsgroups: comp.protocols.kermit.misc
  6988. Subject: FTP - KERMIT ==>Problems
  6989. Message-Id: <14.335.uupcb@aecibbs.proxima.alt.za>
  6990. Date: 19 Sep 94 20:59:00 GMT
  6991. Distribution: world
  6992. Organization: AECI BBS  +27 11 608-1516
  6993. Reply-To: hutsel.barry.e@aecibbs.proxima.alt.za (Hutsel Barry E)
  6994. Lines: 10
  6995. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  6996.  
  6997. From: 3beh5@qlink (Hutsel Barry E)
  6998. Date: 17 Sep 1994 02:37:30 GMT
  6999. Organization: Queen's University, Kingston
  7000. Message-ID: <35dkpa$jud@knot.queensu.ca>
  7001.  
  7002. I'm just new at this, but am I doing something wrong:
  7003.  
  7004. 1.  I am attempting to FTP a binary file (ie.  .ZIP)
  7005. 2.  I set FTP to bin and get the file to my home directory
  7006. 3.  Then I run kermit on the remote computer and escape (alt-x) to the
  7007.  
  7008. From news@columbia.edu Mon Sep 19 20:59:00 1994
  7009. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20827
  7010.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:17:31 -0400
  7011. Received: by apakabar.cc.columbia.edu id AA10033
  7012.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:17:30 -0400
  7013. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!newsxfer.itd.umich.edu!gatech!howland.reston.ans.net!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!roland.kwee
  7014. From: roland.kwee@aecibbs.proxima.alt.za (Roland Kwee)
  7015. Newsgroups: comp.protocols.kermit.misc
  7016. Subject: Re: FTP - KERMIT ==>Problems
  7017. Message-Id: <15.335.uupcb@aecibbs.proxima.alt.za>
  7018. Date: 19 Sep 94 20:59:00 GMT
  7019. Distribution: world
  7020. Organization: AECI BBS  +27 11 608-1516
  7021. Reply-To: roland.kwee@aecibbs.proxima.alt.za (Roland Kwee)
  7022. Lines: 8
  7023. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  7024.  
  7025. From: rkwee@ee.pdx.edu (Roland Kwee)
  7026. Date: 17 Sep 1994 21:54:24 -0700
  7027. Message-ID: <35gh60$3r1@cruella.ee.pdx.edu>
  7028.  
  7029. 3beh5@qlink (Hutsel Barry E) writes:
  7030.  
  7031. >4.  Next I "set file type binary" on the local kermit
  7032. >Problem:  The file is useless when I get it to my local machine.  It's
  7033.  
  7034. From news@columbia.edu Mon Sep 19 20:59:00 1994
  7035. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20850
  7036.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:17:54 -0400
  7037. Received: by apakabar.cc.columbia.edu id AA10062
  7038.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:17:52 -0400
  7039. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!huzacec@telerama.lm.com
  7040. From: huzacec@telerama.lm.com (Huzacec@Telerama.Lm.Com)
  7041. Newsgroups: comp.protocols.kermit.misc
  7042. Subject: Dumb question...
  7043. Message-Id: <17.335.uupcb@aecibbs.proxima.alt.za>
  7044. Date: 19 Sep 94 20:59:00 GMT
  7045. Distribution: world
  7046. Organization: AECI BBS  +27 11 608-1516
  7047. Reply-To: huzacec@telerama.lm.com (Huzacec@Telerama.Lm.Com)
  7048. Lines: 14
  7049. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  7050.  
  7051. From: huzacec@telerama.lm.com
  7052. Date: 18 Sep 1994 00:56:48 -0400
  7053. Organization: Telerama Public Access Internet, Pittsburgh, PA
  7054. Message-ID: <35ghag$274@telerama.lm.com>
  7055.  
  7056.  
  7057. Can someone please tell me where I can FTP C-Kermit for DOS?
  7058.  
  7059. Thanks.
  7060. Mike
  7061.  
  7062. (please e-mail me)
  7063. huzacec@telerama.lm.com
  7064.  
  7065.  
  7066. otely execute commands, etc. but I am having problems getting kermit
  7067. to 'pipe' results back to a local machine; ie. I want to run a command
  7068. on a remote machine, and pipe its results into Kermit (in eg. a
  7069.  
  7070. From news@columbia.edu Tue Sep 20 00:41:00 1994
  7071. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20877
  7072.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:18:09 -0400
  7073. Received: by apakabar.cc.columbia.edu id AA10081
  7074.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:18:08 -0400
  7075. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!quagga.ru.ac.za!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!xander.jansen@surfnet.nl
  7076. From: xander.jansen@surfnet.nl (Xander.Jansen@Surfnet.Nl)
  7077. Newsgroups: comp.protocols.kermit.misc
  7078. Subject: Re: A little bit of reverse engineering.
  7079. Message-Id: <18.335.uupcb@aecibbs.proxima.alt.za>
  7080. Date: 20 Sep 94 00:41:00 GMT
  7081. Distribution: world
  7082. Organization: AECI BBS  +27 11 608-1516
  7083. Reply-To: xander.jansen@surfnet.nl (Xander.Jansen@Surfnet.Nl)
  7084. Lines: 8
  7085. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  7086.  
  7087. From: Xander.Jansen@SURFnet.nl
  7088. Message-ID: <Pine.SUN.3.90a.940918142439.28543D-100000@survis.surfnet.nl>
  7089. Organization: SURFnet bv
  7090. Date: Sun, 18 Sep 1994 12:32:01 GMT
  7091.  
  7092. On 16 Sep 1994 s3e0101@sun2.lrz-muenchen.de wrote:
  7093.  
  7094. > For a certain opac I have been give a version of kermit with "key settings", 
  7095.  
  7096. From news@columbia.edu Wed Sep 21 08:41:00 1994
  7097. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20906
  7098.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:18:37 -0400
  7099. Received: by apakabar.cc.columbia.edu id AA10098
  7100.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:18:35 -0400
  7101. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!quagga.ru.ac.za!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!mdesouza
  7102. From: mdesouza@aecibbs.proxima.alt.za (Mdesouza)
  7103. Newsgroups: comp.protocols.kermit.misc
  7104. Subject: Kermit Access/Availability
  7105. Message-Id: <19.335.uupcb@aecibbs.proxima.alt.za>
  7106. Date: 21 Sep 94 08:41:00 GMT
  7107. Distribution: world
  7108. Organization: AECI BBS  +27 11 608-1516
  7109. Reply-To: mdesouza@aecibbs.proxima.alt.za (Mdesouza)
  7110. Lines: 8
  7111. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  7112.  
  7113. From: mdesouza@wam.umd.edu (MDESOUZA)
  7114. Date: 18 Sep 1994 18:26:12 GMT
  7115. Organization: University of Maryland, College Park
  7116. Message-ID: <35i0o4$6s@cville-srv.wam.umd.edu>
  7117.  
  7118. Hello All,
  7119. I want to use download files from my host (umd) to my home pc.
  7120. At the momnet I use procomm plus as my comm software to dial out of my
  7121.  
  7122. From news@columbia.edu Wed Sep 21 08:42:00 1994
  7123. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20930
  7124.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:18:57 -0400
  7125. Received: by apakabar.cc.columbia.edu id AA10111
  7126.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:18:55 -0400
  7127. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!j..wakeley.purple
  7128. From: j..wakeley.purple@aecibbs.proxima.alt.za (J. Wakeley Purple)
  7129. Newsgroups: comp.protocols.kermit.misc
  7130. Subject: Re: kermit dialing help (3.1.3 on PC)
  7131. Message-Id: <20.335.uupcb@aecibbs.proxima.alt.za>
  7132. Date: 21 Sep 94 08:42:00 GMT
  7133. Distribution: world
  7134. Organization: AECI BBS  +27 11 608-1516
  7135. Reply-To: j..wakeley.purple@aecibbs.proxima.alt.za (J. Wakeley Purple)
  7136. Lines: 15
  7137. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  7138.  
  7139. From: wakep@iglou.iglou.com (J. Wakeley Purple)
  7140. Message-ID: <1994Sep18.184813.25965@iglou.com>
  7141. Organization: The Internet Gateway of Louisville, KY
  7142. Date: Sun, 18 Sep 1994 18:48:13 GMT
  7143.  
  7144. Cliff Stamp (cstamp@morgan.ucs.mun.ca) wrote:
  7145. : Does anyone know how to tell kermit to redial after a set number
  7146. : of rings/busy signals. Right now it is set to around 25 and I would
  7147. : like to lower it to 2.
  7148.  
  7149. I don't think kermit has any default redial.
  7150.  
  7151. It does have a timeout until connect.
  7152.  
  7153. You're probably using kermit running with a script which has a loop in
  7154.  
  7155. From news@columbia.edu Wed Sep 21 08:42:00 1994
  7156. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20949
  7157.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:19:14 -0400
  7158. Received: by apakabar.cc.columbia.edu id AA10128
  7159.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:19:13 -0400
  7160. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!harry.h.conover
  7161. From: harry.h.conover@aecibbs.proxima.alt.za (Harry H Conover)
  7162. Newsgroups: comp.protocols.kermit.misc
  7163. Subject: FTP for Current MS-DOS Kermit?
  7164. Message-Id: <21.335.uupcb@aecibbs.proxima.alt.za>
  7165. Date: 21 Sep 94 08:42:00 GMT
  7166. Distribution: world
  7167. Organization: AECI BBS  +27 11 608-1516
  7168. Reply-To: harry.h.conover@aecibbs.proxima.alt.za (Harry H Conover)
  7169. Lines: 9
  7170. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  7171.  
  7172. From: conover@max.tiac.net (Harry H Conover)
  7173. Date: 18 Sep 1994 19:03:06 GMT
  7174. Organization: The Internet Access Company
  7175. Message-ID: <35i2ta$qgp@sundog.tiac.net>
  7176.  
  7177.  
  7178. I'm current using Kermit as my primary communications package, as
  7179. I have for the past 10 years or so.  So far, the program has survived
  7180. an IBM XT, '286, '386' and '486, and is now going strong on the
  7181.  
  7182. From news@columbia.edu Wed Sep 21 08:42:00 1994
  7183. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20964
  7184.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:19:36 -0400
  7185. Received: by apakabar.cc.columbia.edu id AA10135
  7186.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:19:20 -0400
  7187. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!j..wakeley.purple
  7188. From: j..wakeley.purple@aecibbs.proxima.alt.za (J. Wakeley Purple)
  7189. Newsgroups: comp.protocols.kermit.misc
  7190. Subject: Re: Kermit Access/Availability
  7191. Message-Id: <22.335.uupcb@aecibbs.proxima.alt.za>
  7192. Date: 21 Sep 94 08:42:00 GMT
  7193. Distribution: world
  7194. Organization: AECI BBS  +27 11 608-1516
  7195. Reply-To: j..wakeley.purple@aecibbs.proxima.alt.za (J. Wakeley Purple)
  7196. Lines: 11
  7197. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  7198.  
  7199. From: wakep@iglou.iglou.com (J. Wakeley Purple)
  7200. Message-ID: <1994Sep18.190019.26900@iglou.com>
  7201. Organization: The Internet Gateway of Louisville, KY
  7202. Date: Sun, 18 Sep 1994 19:00:19 GMT
  7203.  
  7204. MDESOUZA (mdesouza@wam.umd.edu) wrote:
  7205. : Hello All,
  7206. :     I want to use download files from my host (umd) to my home pc.
  7207.  
  7208. : home, but the computer center guys say Kermit is way better.  they have
  7209. : a disk, but i remember that one could download the "latest" kermit
  7210.  
  7211. From news@columbia.edu Wed Sep 21 08:42:00 1994
  7212. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20972
  7213.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:19:45 -0400
  7214. Received: by apakabar.cc.columbia.edu id AA10151
  7215.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:19:44 -0400
  7216. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!steven.patrick.iltis
  7217. From: steven.patrick.iltis@aecibbs.proxima.alt.za (Steven Patrick Iltis)
  7218. Newsgroups: comp.protocols.kermit.misc
  7219. Subject: Kermit and Zmodem?
  7220. Message-Id: <23.335.uupcb@aecibbs.proxima.alt.za>
  7221. Date: 21 Sep 94 08:42:00 GMT
  7222. Distribution: world
  7223. Organization: AECI BBS  +27 11 608-1516
  7224. Reply-To: steven.patrick.iltis@aecibbs.proxima.alt.za (Steven Patrick Iltis)
  7225. Lines: 13
  7226. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  7227.  
  7228. From: iltiss@rice.edu (Steven Patrick Iltis)
  7229. Date: 18 Sep 1994 19:51:08 GMT
  7230. Organization: Rice University, Houston, Texas
  7231. Message-ID: <35i5nc$eq9@larry.rice.edu>
  7232.  
  7233.  
  7234. Is it possible to use zmodem (or rz and sz) with kermit? I use Kermit
  7235. on Linux to log on to systems, and would like to use zmodem with
  7236. Kermit.
  7237.  
  7238. If I can't get these to work together, how can I get the fastest
  7239. transfers with Kermit? Currently, I can only get about 1200 cps on a
  7240. 14.4 modem.
  7241.  
  7242. From news@columbia.edu Wed Sep 21 08:44:00 1994
  7243. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21120
  7244.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:21:06 -0400
  7245. Received: by apakabar.cc.columbia.edu id AA10406
  7246.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:21:04 -0400
  7247. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!keith.petersen
  7248. From: keith.petersen@aecibbs.proxima.alt.za (Keith Petersen)
  7249. Newsgroups: comp.protocols.kermit.misc
  7250. Subject: Re: FTP for Current MS-DOS Kermit?
  7251. Message-Id: <24.335.uupcb@aecibbs.proxima.alt.za>
  7252. Date: 21 Sep 94 08:44:00 GMT
  7253. Distribution: world
  7254. Organization: AECI BBS  +27 11 608-1516
  7255. Reply-To: keith.petersen@aecibbs.proxima.alt.za (Keith Petersen)
  7256. Lines: 120
  7257. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  7258.  
  7259. From: w8sdz@SimTel.Coast.NET (Keith Petersen)
  7260. Message-ID: <9409182132.AA12045@SimTel.Coast.NET>
  7261. Date: Sun, 18 Sep 1994 21:32:25 GMT
  7262. Organization: SimTel, the Coast to Coast Software Repository (tm)
  7263.  
  7264. conover@max.tiac.net (Harry H Conover) writes:
  7265. >I'm current using Kermit as my primary communications package, as
  7266. >I have for the past 10 years or so.  So far, the program has survived
  7267. >an IBM XT, '286, '386' and '486, and is now going strong on the
  7268. >Internet.  Sadly, it lacks certain features such as automatic
  7269. >re-dial, the ability to automatically log-off on completion of
  7270. >batch file transfers, etc.
  7271. >
  7272. >It identifies itself as: IBM PC KERMIT-MS V2.28....
  7273. >
  7274. >Can anyone point me to an FTP site that has a more recent MS-DOS
  7275. >version available?
  7276.  
  7277. The official ftp site for Kermit is kermit.columbia.edu, however, the
  7278. latest MS-Kermit is also available - along with many support programs
  7279. and information files - from SimTel.
  7280.  
  7281. NOTE: Type B is Binary; Type A is ASCII
  7282.  
  7283. Directory SimTel/msdos/kermit/
  7284. Filename   Type Length   Date   Description
  7285. ==============================================
  7286. ddntac.hlp    A    4112  890813  Setting TAC parameters for Kermit
  7287. easyk110.zip  B   53931  890316  Kermit made easy. EasyKermit V1.10
  7288. ep437.zip     B   11529  900125  PC Code-Page-437-to-Epson char set translation
  7289. epson.zip     B    7646  900125  Epson printer driver for EGA graphics screens
  7290. ker_scp3.zip  B   19526  881114  Useful Kermit (v2.29 or above) script files
  7291. msicyr.zip    B    5079  910521  Kermit term init: send/rec Cyrillic characters
  7292. msiem2.ini    A    4202  890731  Kermit script maps PC keyboard for GNU Emacs
  7293. msiibm.zip    B   29843  890120  Kermit 2.32/A Script, tutorial, init files
  7294. msivt3.zip    B    5354  910521  MS-Kermit DEC keybd setups for IBM-compatibles
  7295. msivt321.zip  B    5688  910705  MS-Kermit keybd setup for DEC VT200-300 series
  7296. msk-rcv.bas   A    6495  910320  Easy bootstrap: Rcve-only Kermit pgm in BASIC
  7297. msker313.zip  B  336282  931004  MS-Kermit v3.13 comm pgm for IBM-compatibles
  7298. mskerdoc.zip  B  144524  890630  Kermit 2.32/A User's guide and other files
  7299. mskr-em2.zip  B   30433  910320  MS-Kermit v3.1 term emulation & graphics info
  7300. msr313.ann    A   18246  930719  Official announcement of MS-Kermit vers. 3.13
  7301. msr31321.pch  A    4218  940604  Patch file for MS-Kermit v3.13 (patches 1-21)
  7302. msulk2.zip    B   11684  910521  Driver allows use of DEC LK250 kbd w/MS-Kermit
  7303. msvgen.zip    B   60556  930719  MS-Kermit v3.13 executable for Generic MS-DOS
  7304. msvhp1.zip    B   45098  890130  Kermit 2.32/A Hewlett Packard specific
  7305. msvrb1.zip    B   48899  890130  Kermit 2.32/A Rainbow specific
  7306. msvv90.zip    B   67364  930719  MS-Kermit v3.13 executable for Victor 9000
  7307. msvz10.zip    B   69272  930719  MS-Kermit 3.13 executable for Heath/Zenith 100
  7308. pcbdker.zip   B    5218  890311  Collection of MS-Kermit scripts
  7309. pcprint.c     A    5190  890504  Print Unix host text files on PC (req. Kermit)
  7310. pcprint.nr    A    2994  890504  Unix man page for PCPRINT.C
  7311. scanch41.zip  B   14157  900106  Keyboard scan code check/display for MS-Kermit
  7312. tskerm25.zip  B   46838  940214  Keypads, bats, & logging scripts for MS-Kermit
  7313. xsend051.zip  B   11210  910320  Makes Kermit script files to send entire disk
  7314. yogiutil.zip  B   27954  910324  Chg blue color to underscore w/MS-Kermit v3.0x
  7315.  
  7316. Download msker313.zip and msr31321.pch.  That's all you need to get started.
  7317.  
  7318. For security reasons SimTel, the Coast to Coast Software Repository (tm),
  7319. is located on a host that is not accessible by anonymous ftp users, however
  7320. its files are available by anonymous ftp in directory /SimTel/msdos from
  7321. the primary mirror site OAK.Oakland.Edu (141.210.10.117) located in
  7322. Rochester, Michigan, and from the secondary mirror sites:
  7323.  
  7324. St. Louis, MO:  wuarchive.wustl.edu (128.252.135.4)
  7325. /systems/ibmpc/msdos
  7326. Corvallis, OR:  archive.orst.edu (128.193.2.13)
  7327. /pub/mirrors/simtel/msdos
  7328. Australia:  archie.au (139.130.4.6)
  7329. /micros/pc/oak
  7330. England:  src.doc.ic.ac.uk (146.169.2.10)
  7331. /pub/packages/simtel
  7332. Finland:  ftp.funet.fi (128.214.248.6)
  7333. /pub/msdos/SimTel
  7334. France:  ftp.ibp.fr (132.227.60.2)
  7335. /pub/pc/SimTel/msdos
  7336. Germany:  ftp.uni-paderborn.de (131.234.2.32)
  7337. /SimTel/msdos
  7338. Hong Kong:  ftp.cs.cuhk.hk (137.189.4.57)
  7339. /pub/simtel/msdos
  7340. Israel:  ftp.technion.ac.il (132.68.1.10)
  7341. /pub/unsupported/dos/simtel
  7342. Poland:  ftp.cyf-kr.edu.pl (149.156.1.8)
  7343. /pub/mirror/msdos
  7344. Sweden:  ftp.sunet.se (130.238.127.3)
  7345. /pub/pc/mirror/SimTel/msdos
  7346. Switzerland:  ftp.switch.ch (130.59.1.40)
  7347. /mirror/msdos
  7348. Taiwan:  NCTUCCCA.edu.tw (140.111.1.10)
  7349. /PC/simtel
  7350. Thailand:  ftp.nectec.or.th (192.150.251.33)
  7351. /pub/mirrors/SimTel/msdos
  7352.  
  7353. SimTel files may obtained by e-mail from various ftp-mail servers
  7354. or through the BITNET/EARN file servers.  For details see file
  7355. /SimTel/msdos/filedocs/mailserv.inf.  Gopher users can access the
  7356. collection through Gopher.Oakland.Edu.  World Wide Web (WWW) and
  7357. Mosaic users can connect to the URL http://www.acs.oakland.edu to
  7358. access the files on OAK.Oakland.Edu.
  7359.  
  7360. CD-ROM copies of the entire MS-DOS collection (including Windows) are
  7361. available from Coast to Coast Telecommunications, Inc., 5850 Dixie
  7362. Highway Clarkston, MI 48346, U.S.A., telephone (800) 536-3373 or (810)
  7363. 623-6700, or FAX (810) 623-1469.  A WWW Forms Interface for ordering
  7364. CD-ROMs -  http://www.coast.net/SimTel/  - is also available.  This
  7365. two CD-ROM set includes the entire collection, which is not true of
  7366. CD-ROMs offered by some other vendors.  For information send e-mail to
  7367. cdrom@Mail.Coast.NET.  To order send e-mail to order@Mail.Coast.NET.
  7368. Quarterly update subscriptions are available.  Dealer inquiries are
  7369. welcome.  Purchases of this CD-ROM set from Coast to Coast will
  7370. provide direct support to SimTel.
  7371.  
  7372. Keith
  7373. --
  7374. Keith Petersen
  7375. General Manager of SimTel, the Coast to Coast Software Repository (tm)
  7376. Internet: w8sdz@SimTel.Coast.NET    or      w8sdz@Vela.ACS.Oakland.Edu
  7377. Uucp: uunet!umich!vela!w8sdz                     BITNET: w8sdz@OAKLAND
  7378.  
  7379.  
  7380. From news@columbia.edu Wed Sep 21 08:44:00 1994
  7381. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21131
  7382.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:21:20 -0400
  7383. Received: by apakabar.cc.columbia.edu id AA10434
  7384.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:21:18 -0400
  7385. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!erik.hatcher
  7386. From: erik.hatcher@aecibbs.proxima.alt.za (Erik Hatcher)
  7387. Newsgroups: comp.protocols.kermit.misc
  7388. Subject: C-Kermit for DOS questions
  7389. Message-Id: <25.335.uupcb@aecibbs.proxima.alt.za>
  7390. Date: 21 Sep 94 08:44:00 GMT
  7391. Distribution: world
  7392. Organization: AECI BBS  +27 11 608-1516
  7393. Reply-To: erik.hatcher@aecibbs.proxima.alt.za (Erik Hatcher)
  7394. Lines: 23
  7395. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  7396.  
  7397. From: esh6h@fulton.seas.Virginia.EDU (Erik Hatcher)
  7398. Message-ID: <CwCI2q.286@murdoch.acc.Virginia.EDU>
  7399. Organization: University of Virginia
  7400. Date: Sun, 18 Sep 1994 21:52:01 GMT
  7401.  
  7402. I've been trying to track down a version of C-Kermit for
  7403. DOS and have been unsuccessful.  In Cruz's book he has
  7404. a chart of the compatibilities of DOS kermit and C-Kermit
  7405. and their is one difference - no dynamic block sizes
  7406. on the DOS version.
  7407.  
  7408. My questions are...
  7409.  
  7410. Is their a version of Kermit for DOS that supports dynamic
  7411. blocks?  And where can that be obtained?
  7412.  
  7413. Any help is appreciated.
  7414.  
  7415. Thanks,
  7416. Erik
  7417. --
  7418. Erik Hatcher                           + "But every now and then we just have
  7419. http://fulton.seas.virginia.edu/~esh6h |  to howl with the wolves."
  7420.  
  7421. From news@columbia.edu Wed Sep 21 10:05:00 1994
  7422. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21144
  7423.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:21:38 -0400
  7424. Received: by apakabar.cc.columbia.edu id AA10457
  7425.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:21:37 -0400
  7426. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!benjamin.ketcham
  7427. From: benjamin.ketcham@aecibbs.proxima.alt.za (Benjamin Ketcham)
  7428. Newsgroups: comp.protocols.kermit.misc
  7429. Subject: auto redial script
  7430. Message-Id: <27.335.uupcb@aecibbs.proxima.alt.za>
  7431. Date: 21 Sep 94 10:05:00 GMT
  7432. Distribution: world
  7433. Organization: AECI BBS  +27 11 608-1516
  7434. Reply-To: benjamin.ketcham@aecibbs.proxima.alt.za (Benjamin Ketcham)
  7435. Lines: 54
  7436. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  7437.  
  7438. From: bketcham@u.washington.edu (Benjamin Ketcham)
  7439. Date: 18 Sep 1994 23:03:00 GMT
  7440. Organization: University of Washington, Seattle
  7441. Message-ID: <35igv4$rf6@news.u.washington.edu>
  7442.  
  7443.  
  7444. Several people have mentioned automatic redial wrt kermit.  Here is
  7445. a little macro I kluged up to do it (to be included in .kermrc).
  7446. I present it not so much as the perfect way to do it, but rather as
  7447. *a* way.  I'd like to hear comments/criticisms on how this could be
  7448. done better or more robustly.
  7449.  
  7450. Problems I'm aware of:
  7451.  
  7452. --Only works with modems that return "BUSY" when the line is
  7453. busy.  I've used some that don't.
  7454.  
  7455. --Depends on ASCII being the character set (due to '\13').  I
  7456. think there's a better way to do this, but I couldn't
  7457. immediately find it in the kermit docs.
  7458.  
  7459. --If the line is *not* busy, must wait for the input statement
  7460. to time out.  Thus, the choice of time there is critical.
  7461. Don't want it too long, but if too short, might time out before
  7462. a slow phone connection completed (esp. long distance).  Is
  7463. there a way to wait for *any* text string, save it in a variable,
  7464. and then test it afterwards for "BUSY" or "CONNECT" -ness?
  7465.  
  7466. --ben
  7467.  
  7468. -------------
  7469.  
  7470. define demondial -
  7471. if > \v(argc) 1 assign \%p \%1, -
  7472. else ask \%p Number to dial (without atdt prefix):, -
  7473. echo \13demondial:  Trying number  (use ^C to abort)  ...\13, -
  7474. while EQUAL 1 1 { -
  7475. hangup, -
  7476. output atdt\%p\13, -
  7477. input 20 BUSY, -
  7478. xif FAILURE { -
  7479. echo \13demondial:  Looks like line's not busy.  Connecting  ...\13, -
  7480. connect, -
  7481. stop -
  7482. } -
  7483. else { -
  7484. echo \13demondial:  Line busy.  Retrying  ...\13 -
  7485. }, -
  7486. } -
  7487.  
  7488.  
  7489.  
  7490.  
  7491.  
  7492.  
  7493. From news@columbia.edu Wed Sep 21 10:07:00 1994
  7494. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21163
  7495.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:21:48 -0400
  7496. Received: by apakabar.cc.columbia.edu id AA10467
  7497.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:21:47 -0400
  7498. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!andrew.dunstan
  7499. From: andrew.dunstan@aecibbs.proxima.alt.za (Andrew Dunstan)
  7500. Newsgroups: comp.protocols.kermit.misc
  7501. Subject: CR translation in telnet connection
  7502. Message-Id: <28.335.uupcb@aecibbs.proxima.alt.za>
  7503. Date: 21 Sep 94 10:07:00 GMT
  7504. Distribution: world
  7505. Organization: AECI BBS  +27 11 608-1516
  7506. Reply-To: andrew.dunstan@aecibbs.proxima.alt.za (Andrew Dunstan)
  7507. Lines: 17
  7508. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  7509.  
  7510. From: andrewd@seldon.apanix.apana.org.au (Andrew Dunstan)
  7511. Date: 19 Sep 1994 00:14:20 GMT
  7512. Organization: cleese.apana.org.au Public Access UNIX +61-8-3736006
  7513. Message-ID: <35il4s$4pe@cleese.apana.org.au>
  7514.  
  7515. I am connecting to a DCX Ethergate which has a modem attached, and
  7516. then dialling out on the modem. The Ethergate does no CRLF or CR-Nul
  7517. translation, so I unfortunately end up sending one of these pairs,
  7518. when all I want to send is a plain CR.
  7519.  
  7520. Is there any way to achieve this?
  7521.  
  7522. cheers
  7523.  
  7524. andrew
  7525.  
  7526.  
  7527.  
  7528. From news@columbia.edu Thu Sep 22 07:25:00 1994
  7529. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21256
  7530.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:22:28 -0400
  7531. Received: by apakabar.cc.columbia.edu id AA10502
  7532.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:22:23 -0400
  7533. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!dwight.hugget
  7534. From: dwight.hugget@aecibbs.proxima.alt.za (Dwight Hugget)
  7535. Newsgroups: comp.protocols.kermit.misc
  7536. Subject: KERMIT & PCMCIA
  7537. Message-Id: <30.335.uupcb@aecibbs.proxima.alt.za>
  7538. Date: 22 Sep 94 07:25:00 GMT
  7539. Distribution: world
  7540. Organization: AECI BBS  +27 11 608-1516
  7541. Reply-To: dwight.hugget@aecibbs.proxima.alt.za (Dwight Hugget)
  7542. Lines: 10
  7543. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  7544.  
  7545. From: jamaican@garnet.msen.com (Dwight Hugget)
  7546. Date: 16 Sep 1994 18:12:20 GMT
  7547. Organization: Msen, Inc. -- Ann Arbor, MI (account info: +1 313 998-4562)
  7548. Message-ID: <35cn64$qp0$1@heifetz.msen.com>
  7549.  
  7550.  
  7551.  
  7552. Has anyone ever configured Intel's 14.4 fax/data PCMCIA card to work with
  7553. kermit ???
  7554. If so, how do you handle the setting of the COMn port while trying to
  7555.  
  7556.  Qmodem using Zmodem.  I was informed the problem
  7557. >lyes in SZ and systems are trying to deal with it.  But I was suggested
  7558. >trying to upload into UNIX main base and then ftr the files to armstrong.
  7559. >
  7560. >       Well if anyone else has a possible solution, please post it....
  7561.  
  7562. Have you tried  rz -a  to tell the Zmodem receive program that the file
  7563. you are about to send is text?  Zmodem defaults to binary mode.
  7564.  
  7565. Keith
  7566. --
  7567. Keith Petersen
  7568. Internet: w8sdz@SimTel.Coast.NET    or      w8sdz@Vela.ACS.Oakland.Edu
  7569. Uucp: uunet!umich!vela!w8sdz                     BITNET: w8sdz@OAKLAND
  7570.  
  7571.  
  7572. From news@columbia.edu Thu Sep 22 07:26:00 1994
  7573. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21294
  7574.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:22:44 -0400
  7575. Received: by apakabar.cc.columbia.edu id AA10522
  7576.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:22:42 -0400
  7577. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!quagga.ru.ac.za!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!bill.chinn
  7578. From: bill.chinn@aecibbs.proxima.alt.za (Bill Chinn)
  7579. Newsgroups: comp.protocols.kermit.misc
  7580. Subject: Kermit for Windows/NT
  7581. Message-Id: <31.335.uupcb@aecibbs.proxima.alt.za>
  7582. Date: 22 Sep 94 07:26:00 GMT
  7583. Distribution: world
  7584. Organization: AECI BBS  +27 11 608-1516
  7585. Reply-To: bill.chinn@aecibbs.proxima.alt.za (Bill Chinn)
  7586. Lines: 9
  7587. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  7588.  
  7589. From: bill@medicus.com (Bill Chinn)
  7590. Message-ID: <1994Sep19.071445.15802@medicus.com>
  7591. Organization: Medicus Clinical Data Systems, Alameda, CA
  7592. Date: Mon, 19 Sep 1994 07:14:45 GMT
  7593.  
  7594. Hello,
  7595.  
  7596. I was wondering if anyone is working on porting Kermit to
  7597. Windows/NT?
  7598.  
  7599. From news@columbia.edu Thu Sep 22 07:29:00 1994
  7600. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21327
  7601.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:23:01 -0400
  7602. Received: by apakabar.cc.columbia.edu id AA10530
  7603.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:22:55 -0400
  7604. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!jianqing.hu
  7605. From: jianqing.hu@aecibbs.proxima.alt.za (Jianqing Hu)
  7606. Newsgroups: comp.protocols.kermit.misc
  7607. Subject: Re: [HELP] Slow Kermit Transfer ?!
  7608. Message-Id: <32.335.uupcb@aecibbs.proxima.alt.za>
  7609. Date: 22 Sep 94 07:29:00 GMT
  7610. Distribution: world
  7611. Organization: AECI BBS  +27 11 608-1516
  7612. Reply-To: jianqing.hu@aecibbs.proxima.alt.za (Jianqing Hu)
  7613. Lines: 10
  7614. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  7615.  
  7616. From: thssjyh@iitmax.iit.edu (Jianqing Hu)
  7617. Message-ID: <1994Sep19.141901.3102@iitmax.iit.edu>
  7618. Organization: Illinois Institute of Technology, Chicago
  7619. Date: Mon, 19 Sep 94 14:19:01 GMT
  7620.  
  7621. In article <35jrgsINNdq2@newsman.csu.murdoch.edu.au> anson@csuvax1.csu.murdoch.edu.au (Binh Anson) writes:
  7622. >
  7623. >G'day,
  7624. >
  7625. >I used Kermit 3.13 for my PC, my modem has a speed of 14.4 K, but I found that
  7626.  
  7627. From news@columbia.edu Thu Sep 22 07:29:00 1994
  7628. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21352
  7629.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:23:19 -0400
  7630. Received: by apakabar.cc.columbia.edu id AA10551
  7631.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:23:17 -0400
  7632. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!rich@dsm1.dsmnet.com
  7633. From: rich@dsm1.dsmnet.com (Rich@Dsm1.Dsmnet.Com)
  7634. Newsgroups: comp.protocols.kermit.misc
  7635. Subject: Re: Dumb question...
  7636. Message-Id: <33.335.uupcb@aecibbs.proxima.alt.za>
  7637. Date: 22 Sep 94 07:29:00 GMT
  7638. Distribution: world
  7639. Organization: AECI BBS  +27 11 608-1516
  7640. Reply-To: rich@dsm1.dsmnet.com (Rich@Dsm1.Dsmnet.Com)
  7641. Lines: 24
  7642. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  7643.  
  7644. From: rich@dsm1.dsmnet.com
  7645. Date: 19 Sep 1994 14:52:21 GMT
  7646. Organization: DES MOINES INTERNET, DES MOINES, IA
  7647. Message-ID: <35k8j5$mph@dsm6.dsmnet.com>
  7648. Reply-To: rich@dsm1.dsmnet.com
  7649.  
  7650. In article <35ghag$274@telerama.lm.com>, huzacec@telerama.lm.com writes:
  7651. >
  7652. >Can someone please tell me where I can FTP C-Kermit for DOS?
  7653. >
  7654. >Thanks.
  7655. >Mike
  7656. >
  7657. >(please e-mail me)
  7658. >huzacec@telerama.lm.com
  7659.  
  7660. Try Anonymous FTP from kermit.columbia.edu and read the file read.me
  7661. (P. 9 of "Using Ckermit" by Frank da Cruz and Christine M. Gianone)
  7662.  
  7663. Richard L. Philpott          |  E-MAIL:  rich@dsmnet.com
  7664. Des Moines Internet          |  All opinions are just that, opinions!!
  7665. 5911 Meredith Drive, Suite B |  All opinions are mine only and not
  7666. Urbandale, IA 50322          |  those of DES MOINES INTERNET
  7667.  
  7668.  
  7669. From news@columbia.edu Thu Sep 22 07:29:00 1994
  7670. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21376
  7671.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:23:42 -0400
  7672. Received: by apakabar.cc.columbia.edu id AA10574
  7673.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:23:41 -0400
  7674. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!john.d.cederman
  7675. From: john.d.cederman@aecibbs.proxima.alt.za (John D Cederman)
  7676. Newsgroups: comp.protocols.kermit.misc
  7677. Subject: Uploading Text files
  7678. Message-Id: <34.335.uupcb@aecibbs.proxima.alt.za>
  7679. Date: 22 Sep 94 07:29:00 GMT
  7680. Distribution: world
  7681. Organization: AECI BBS  +27 11 608-1516
  7682. Reply-To: john.d.cederman@aecibbs.proxima.alt.za (John D Cederman)
  7683. Lines: 7
  7684. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  7685.  
  7686. From: cederman@cs.buffalo.edu (John D Cederman)
  7687. Message-ID: <CwDsq6.50p@acsu.buffalo.edu>
  7688. Organization: UB
  7689. Date: Mon, 19 Sep 1994 14:39:41 GMT
  7690.  
  7691. Hello,
  7692. I am using Qmodem with Zmodem protocol.  I have been able to download
  7693.  
  7694. From news@columbia.edu Thu Sep 22 07:30:00 1994
  7695. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21392
  7696.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:24:00 -0400
  7697. Received: by apakabar.cc.columbia.edu id AA10588
  7698.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:23:58 -0400
  7699. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!keith.petersen
  7700. From: keith.petersen@aecibbs.proxima.alt.za (Keith Petersen)
  7701. Newsgroups: comp.protocols.kermit.misc
  7702. Subject: Re: [HELP] Slow Kermit Transfer ?!
  7703. Message-Id: <35.335.uupcb@aecibbs.proxima.alt.za>
  7704. Date: 22 Sep 94 07:30:00 GMT
  7705. Distribution: world
  7706. Organization: AECI BBS  +27 11 608-1516
  7707. Reply-To: keith.petersen@aecibbs.proxima.alt.za (Keith Petersen)
  7708. Lines: 21
  7709. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  7710.  
  7711. From: w8sdz@SimTel.Coast.NET (Keith Petersen)
  7712. Message-ID: <9409191517.AA21171@SimTel.Coast.NET>
  7713. Date: Mon, 19 Sep 1994 15:17:50 GMT
  7714. Organization: SimTel, the Coast to Coast Software Repository (tm)
  7715.  
  7716. thssjyh@iitmax.iit.edu (Jianqing Hu) writes:
  7717. > ... don't push kermit too hard. In some cases, it will leave errors undetect
  7718. > (At least on our unix box)
  7719.  
  7720. This should fix the problem:
  7721.  
  7722. set blo 3
  7723.  
  7724. which is short for "set block-check-type 3-char-crc-ccitt".
  7725.  
  7726. Keith
  7727. --
  7728. Keith Petersen
  7729. Internet: w8sdz@SimTel.Coast.NET    or      w8sdz@Vela.ACS.Oakland.Edu
  7730. Uucp: uunet!umich!vela!w8sdz                     BITNET: w8sdz@OAKLAND
  7731.  
  7732.  
  7733. From news@columbia.edu Thu Sep 22 07:31:00 1994
  7734. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21420
  7735.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:24:09 -0400
  7736. Received: by apakabar.cc.columbia.edu id AA10598
  7737.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:24:07 -0400
  7738. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!binh.anson
  7739. From: binh.anson@aecibbs.proxima.alt.za (Binh Anson)
  7740. Newsgroups: comp.protocols.kermit.misc
  7741. Subject: [HELP] Slow Kermit Transfer ?!
  7742. Message-Id: <36.335.uupcb@aecibbs.proxima.alt.za>
  7743. Date: 22 Sep 94 07:31:00 GMT
  7744. Distribution: world
  7745. Organization: AECI BBS  +27 11 608-1516
  7746. Reply-To: binh.anson@aecibbs.proxima.alt.za (Binh Anson)
  7747. Lines: 8
  7748. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  7749.  
  7750. From: anson@csuvax1.csu.murdoch.edu.au (Binh Anson)
  7751. Date: 19 Sep 1994 11:09:16 GMT
  7752. Message-ID: <35jrgsINNdq2@newsman.csu.murdoch.edu.au>
  7753.  
  7754.  
  7755. G'day,
  7756.  
  7757. I used Kermit 3.13 for my PC, my modem has a speed of 14.4 K, but I found that 
  7758.  
  7759. From news@columbia.edu Thu Sep 22 07:33:00 1994
  7760. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21443
  7761.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:24:41 -0400
  7762. Received: by apakabar.cc.columbia.edu id AA10646
  7763.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:24:39 -0400
  7764. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!jeffrey.altman
  7765. From: jeffrey.altman@aecibbs.proxima.alt.za (Jeffrey Altman)
  7766. Newsgroups: comp.protocols.kermit.misc
  7767. Subject: Re: Kermit for Windows/NT
  7768. Message-Id: <38.335.uupcb@aecibbs.proxima.alt.za>
  7769. Date: 22 Sep 94 07:33:00 GMT
  7770. Distribution: world
  7771. Organization: AECI BBS  +27 11 608-1516
  7772. Reply-To: jeffrey.altman@aecibbs.proxima.alt.za (Jeffrey Altman)
  7773. Lines: 11
  7774. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  7775.  
  7776. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  7777. Date: 19 Sep 1994 12:28:18 GMT
  7778. Organization: Columbia University
  7779. Message-ID: <35k052$3gr@apakabar.cc.columbia.edu>
  7780.  
  7781. In article <1994Sep19.071445.15802@medicus.com>,
  7782. Bill Chinn <bill@medicus.com> wrote:
  7783. >Hello,
  7784. >
  7785. >I was wondering if anyone is working on porting Kermit to
  7786. >Windows/NT?
  7787.  
  7788.  alpha.16) to
  7789. the computer at school (Ckermit 5A(188)) with the FILE COLLISION set
  7790. to UPDATE. Thus, I would expect that only those files on my home
  7791. commputer that are newer than the files on the school computer will be
  7792. transfered. And that is what happens...mostly. There are a few files
  7793. that constantly get transfered. Although I have not touched the
  7794. files on either system for months, everytime I run the transfer script
  7795. these few files get transfered. I have checked the dates on both
  7796. machines and they are identical, at least to the minute. Perhaps the
  7797. seconds are different?
  7798.  
  7799. From news@columbia.edu Thu Sep 22 07:33:00 1994
  7800. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21543
  7801.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:25:12 -0400
  7802. Received: by apakabar.cc.columbia.edu id AA10692
  7803.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:25:10 -0400
  7804. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!paul.hounsell
  7805. From: paul.hounsell@aecibbs.proxima.alt.za (Paul Hounsell)
  7806. Newsgroups: comp.protocols.kermit.misc
  7807. Subject: Is anybody working on kermit for windows?
  7808. Message-Id: <40.335.uupcb@aecibbs.proxima.alt.za>
  7809. Date: 22 Sep 94 07:33:00 GMT
  7810. Distribution: world
  7811. Organization: AECI BBS  +27 11 608-1516
  7812. Reply-To: paul.hounsell@aecibbs.proxima.alt.za (Paul Hounsell)
  7813. Lines: 9
  7814. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  7815.  
  7816. From: hounsell@cc.joensuu.fi (Paul Hounsell)
  7817. Message-ID: <1994Sep19.122308.19077@cs.joensuu.fi>
  7818. Organization: Joensuu University Language Center
  7819. Date: Mon, 19 Sep 1994 12:23:08 GMT
  7820.  
  7821. Hello developers
  7822.  
  7823. I would like to know if anybody is working on kermit to run under windows
  7824. winsocket. I really like kermit for telnet and terminal emulation so I would li
  7825.  
  7826. I would li
  7827.  
  7828. From news@columbia.edu Thu Sep 22 07:42:00 1994
  7829. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21569
  7830.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:25:30 -0400
  7831. Received: by apakabar.cc.columbia.edu id AA10725
  7832.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:25:27 -0400
  7833. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!kerry.schwab
  7834. From: kerry.schwab@aecibbs.proxima.alt.za (Kerry Schwab)
  7835. Newsgroups: comp.protocols.kermit.misc
  7836. Subject: Re: Kermit and Zmodem?
  7837. Message-Id: <41.335.uupcb@aecibbs.proxima.alt.za>
  7838. Date: 22 Sep 94 07:42:00 GMT
  7839. Distribution: world
  7840. Organization: AECI BBS  +27 11 608-1516
  7841. Reply-To: kerry.schwab@aecibbs.proxima.alt.za (Kerry Schwab)
  7842. Lines: 18
  7843. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  7844.  
  7845. From: kschwab@nyx.cs.du.edu (Kerry Schwab)
  7846. Date: 18 Sep 1994 18:32:58 -0600
  7847. Organization: /usr/lib/news/organi[sz]ation
  7848. Message-ID: <35im7q$ank@nyx.cs.du.edu>
  7849.  
  7850. In article <35i5nc$eq9@larry.rice.edu>,
  7851. Steven Patrick Iltis <iltiss@rice.edu> wrote:
  7852. >
  7853. >Is it possible to use zmodem (or rz and sz) with kermit? I use Kermit
  7854. >on Linux to log on to systems, and would like to use zmodem with
  7855. >Kermit.
  7856. >
  7857.  
  7858. Yes, look at the "REDIRECT" command.  Suppose you were trying to
  7859. recieve a file, you'd do "sz <file>", enter the kermit escape char,
  7860. then type "REDIRECT rz".
  7861.  
  7862. Though it does seem almost seem like kermit treason ;)
  7863.  
  7864. From news@columbia.edu Thu Sep 22 07:43:00 1994
  7865. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21580
  7866.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:25:41 -0400
  7867. Received: by apakabar.cc.columbia.edu id AA10746
  7868.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:25:38 -0400
  7869. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!ramin.farzaneh
  7870. From: ramin.farzaneh@aecibbs.proxima.alt.za (Ramin Farzaneh)
  7871. Newsgroups: comp.protocols.kermit.misc
  7872. Subject: Help Request: Download Speed
  7873. Message-Id: <43.335.uupcb@aecibbs.proxima.alt.za>
  7874. Date: 22 Sep 94 07:43:00 GMT
  7875. Distribution: world
  7876. Organization: AECI BBS  +27 11 608-1516
  7877. Reply-To: ramin.farzaneh@aecibbs.proxima.alt.za (Ramin Farzaneh)
  7878. Lines: 8
  7879. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  7880.  
  7881. From: rf13@crux3.cit.cornell.edu (Ramin Farzaneh)
  7882. Date: 19 Sep 1994 03:39:19 GMT
  7883. Organization: Cornell University
  7884. Message-ID: <35j157$23n@tuba.cit.cornell.edu>
  7885.  
  7886. I have been trying to improve the file transfer speed I get while
  7887. downloading from a workstation to my PC using C Kermit and MS Kermit.
  7888. The highest rate that I've gotten for a .zip file has been ~1320 cps
  7889.  
  7890. s survived
  7891. >an IBM XT, '286, '386' and '486, and is now going strong on the
  7892.  
  7893. From news@columbia.edu Thu Sep 22 07:44:00 1994
  7894. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21603
  7895.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:25:52 -0400
  7896. Received: by apakabar.cc.columbia.edu id AA10782
  7897.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:25:51 -0400
  7898. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!doug.fraser
  7899. From: doug.fraser@aecibbs.proxima.alt.za (Doug Fraser)
  7900. Newsgroups: comp.protocols.kermit.misc
  7901. Subject: Re: Kermit Access/Availability
  7902. Message-Id: <44.335.uupcb@aecibbs.proxima.alt.za>
  7903. Date: 22 Sep 94 07:44:00 GMT
  7904. Distribution: world
  7905. Organization: AECI BBS  +27 11 608-1516
  7906. Reply-To: doug.fraser@aecibbs.proxima.alt.za (Doug Fraser)
  7907. Lines: 10
  7908. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  7909.  
  7910. From: dfraser@muss.cis.McMaster.CA (Doug Fraser)
  7911. Date: 19 Sep 1994 18:54:38 -0400
  7912. Organization: McMaster University, Hamilton, Ontario, Canada.
  7913. Message-ID: <35l4re$17b@muss.cis.McMaster.CA>
  7914.  
  7915. In article <35i0o4$6s@cville-srv.wam.umd.edu>,
  7916. MDESOUZA <mdesouza@wam.umd.edu> wrote:
  7917. >Hello All,
  7918. >    I want to use download files from my host (umd) to my home pc.
  7919. >At the momnet I use procomm plus as my comm software to dial out of my
  7920.  
  7921. From news@columbia.edu Thu Sep 22 07:45:00 1994
  7922. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21638
  7923.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:26:09 -0400
  7924. Received: by apakabar.cc.columbia.edu id AA10802
  7925.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:26:08 -0400
  7926. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!jerry.alexandratos
  7927. From: jerry.alexandratos@aecibbs.proxima.alt.za (Jerry Alexandratos)
  7928. Newsgroups: comp.protocols.kermit.misc
  7929. Subject: Re: Kermit And FTP
  7930. Message-Id: <45.335.uupcb@aecibbs.proxima.alt.za>
  7931. Date: 22 Sep 94 07:45:00 GMT
  7932. Distribution: world
  7933. Organization: AECI BBS  +27 11 608-1516
  7934. Reply-To: jerry.alexandratos@aecibbs.proxima.alt.za (Jerry Alexandratos)
  7935. Lines: 12
  7936. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  7937.  
  7938. From: darkstar@strauss.udel.edu (Jerry Alexandratos)
  7939. Date: 19 Sep 1994 14:21:54 -0400
  7940. Organization: Broken Toys Unlimited
  7941. Message-ID: <35kks2$r5u@strauss.udel.edu>
  7942.  
  7943. In article <35d5gi$6lm@chopin.udel.edu>,
  7944. Sigurd Andersen <sigurd@chopin.udel.edu> wrote:
  7945. :In article <35abck$6gc@louie.udel.edu>,
  7946. :Jerry Alexandratos <alexandr@stimpy.eecis.udel.edu> wrote:
  7947. :: Has anyone out there been able to successfully multiplex packets so
  7948. :: that you can use kermit and another TCPIP application?  ...
  7949. ::
  7950.  
  7951. From news@columbia.edu Thu Sep 22 07:48:00 1994
  7952. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21675
  7953.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:26:48 -0400
  7954. Received: by apakabar.cc.columbia.edu id AA10877
  7955.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:26:47 -0400
  7956. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!todd.spindler
  7957. From: todd.spindler@aecibbs.proxima.alt.za (Todd Spindler)
  7958. Newsgroups: comp.protocols.kermit.misc
  7959. Subject: Re: [HELP] Slow Kermit Transfer ?!
  7960. Message-Id: <47.335.uupcb@aecibbs.proxima.alt.za>
  7961. Date: 22 Sep 94 07:48:00 GMT
  7962. Distribution: world
  7963. Organization: AECI BBS  +27 11 608-1516
  7964. Reply-To: todd.spindler@aecibbs.proxima.alt.za (Todd Spindler)
  7965. Lines: 12
  7966. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  7967.  
  7968. From: spindler@heron.rsmas.miami.edu (todd spindler)
  7969. Date: 19 Sep 1994 12:49:18 -0400
  7970. Organization: U of Miami/RSMAS
  7971. Message-ID: <35kfee$4f0@heron.rsmas.miami.edu>
  7972. Reply-To: spindler@heron.rsmas.miami.edu (todd spindler)
  7973.  
  7974.  
  7975. In article <35jrgsINNdq2@newsman.csu.murdoch.edu.au>, anson@csuvax1.csu.murdoch.edu.au (Binh Anson) writes:
  7976. >
  7977. >G'day,
  7978. >
  7979. >I used Kermit 3.13 for my PC, my modem has a speed of 14.4 K, but I found
  7980.  
  7981.  files to armstrong.
  7982.  
  7983. Well if anyone else has a possible solution, please post it....
  7984.  
  7985.  
  7986.  
  7987. (cederman)
  7988.  
  7989.  
  7990.  
  7991.  
  7992.  
  7993.  
  7994. From news@columbia.edu Thu Sep 22 21:06:00 1994
  7995. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21683
  7996.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:26:55 -0400
  7997. Received: by apakabar.cc.columbia.edu id AA10893
  7998.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:26:54 -0400
  7999. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!roland.kwee
  8000. From: roland.kwee@aecibbs.proxima.alt.za (Roland Kwee)
  8001. Newsgroups: comp.protocols.kermit.misc
  8002. Subject: Re: Kermit and Zmodem?
  8003. Message-Id: <48.335.uupcb@aecibbs.proxima.alt.za>
  8004. Date: 22 Sep 94 21:06:00 GMT
  8005. Distribution: world
  8006. Organization: AECI BBS  +27 11 608-1516
  8007. Reply-To: roland.kwee@aecibbs.proxima.alt.za (Roland Kwee)
  8008. Lines: 9
  8009. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8010.  
  8011. From: rkwee@ee.pdx.edu (Roland Kwee)
  8012. Date: 19 Sep 1994 20:26:02 -0700
  8013. Message-ID: <35lkoa$dde@cruella.ee.pdx.edu>
  8014.  
  8015. iltiss@rice.edu (Steven Patrick Iltis) writes:
  8016.  
  8017. >Is it possible to use zmodem (or rz and sz) with kermit?
  8018. > with Kermit ... , I can only get about 1200 cps on a
  8019. >14.4 modem.
  8020.  
  8021. From news@columbia.edu Fri Sep 23 00:30:00 1994
  8022. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21706
  8023.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:27:26 -0400
  8024. Received: by apakabar.cc.columbia.edu id AA10957
  8025.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:27:25 -0400
  8026. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!john.jamulla
  8027. From: john.jamulla@aecibbs.proxima.alt.za (John Jamulla)
  8028. Newsgroups: comp.protocols.kermit.misc
  8029. Subject: Exiting kermit without modem hangup
  8030. Message-Id: <49.335.uupcb@aecibbs.proxima.alt.za>
  8031. Date: 23 Sep 94 00:30:00 GMT
  8032. Distribution: world
  8033. Organization: AECI BBS  +27 11 608-1516
  8034. Reply-To: john.jamulla@aecibbs.proxima.alt.za (John Jamulla)
  8035. Lines: 22
  8036. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8037.  
  8038. From: jamulla@iao.ford.com (John Jamulla)
  8039. Date: 19 Sep 1994 19:21:38 GMT
  8040. Organization: Ford Motor Company -- standard disclaimers apply
  8041. Message-ID: <35koc2INNvl@ope001.iao.ford.com>
  8042. Reply-To: jamulla@cadcam.pms.ford.com
  8043.  
  8044.  
  8045. Is it possible to exit kermit without dropping the phone line?
  8046.  
  8047. I'd like to use linux's "term" program and I already have kermit
  8048. all set up for my needs. I need kermit to stop buffering and
  8049. looking at the link without dropping the phone line
  8050.  
  8051. Please reply to below address.
  8052.  
  8053. Thanks in advance,
  8054. John J.
  8055. _________________________________________________________________________
  8056. jamulla@cadcam.pms.ford.com               John Jamulla - Dearborn, MI USA
  8057. PROFS:JJAMULLA JAMULLA -ON D1D1           Ford - Car Product Development
  8058. Bldg3 2nd Floor #2638 (313) 337-9951      CAD/CAM, Dearborn, MI 48121
  8059.  
  8060.  
  8061. From news@columbia.edu Fri Sep 23 08:21:00 1994
  8062. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21739
  8063.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:27:42 -0400
  8064. Received: by apakabar.cc.columbia.edu id AA10982
  8065.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:27:40 -0400
  8066. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!steven.patrick.iltis
  8067. From: steven.patrick.iltis@aecibbs.proxima.alt.za (Steven Patrick Iltis)
  8068. Newsgroups: comp.protocols.kermit.misc
  8069. Subject: Re: Kermit and Zmodem?
  8070. Message-Id: <51.335.uupcb@aecibbs.proxima.alt.za>
  8071. Date: 23 Sep 94 08:21:00 GMT
  8072. Distribution: world
  8073. Organization: AECI BBS  +27 11 608-1516
  8074. Reply-To: steven.patrick.iltis@aecibbs.proxima.alt.za (Steven Patrick Iltis)
  8075. Lines: 14
  8076. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8077.  
  8078. From: iltiss@rice.edu (Steven Patrick Iltis)
  8079. Date: 20 Sep 1994 00:09:51 GMT
  8080. Organization: Rice University, Houston, Texas
  8081. Message-ID: <35l98f$emq@larry.rice.edu>
  8082.  
  8083. Thanks to the many solutions posted here and e-mailed to me. I've got
  8084. to try them out now!
  8085.  
  8086. --
  8087. Steve Iltis
  8088. Computer Science Teacher
  8089. Westbury H.S., Houston
  8090. iltis@tenet.edu
  8091.  
  8092.  
  8093. From news@columbia.edu Fri Sep 23 08:22:00 1994
  8094. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21833
  8095.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:28:01 -0400
  8096. Received: by apakabar.cc.columbia.edu id AA10998
  8097.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:27:59 -0400
  8098. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!quagga.ru.ac.za!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!doug.fraser
  8099. From: doug.fraser@aecibbs.proxima.alt.za (Doug Fraser)
  8100. Newsgroups: comp.protocols.kermit.misc
  8101. Subject: Re: Kermit and Zmodem?
  8102. Message-Id: <53.335.uupcb@aecibbs.proxima.alt.za>
  8103. Date: 23 Sep 94 08:22:00 GMT
  8104. Distribution: world
  8105. Organization: AECI BBS  +27 11 608-1516
  8106. Reply-To: doug.fraser@aecibbs.proxima.alt.za (Doug Fraser)
  8107. Lines: 15
  8108. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8109.  
  8110. From: dfraser@muss.cis.McMaster.CA (Doug Fraser)
  8111. Date: 19 Sep 1994 19:06:18 -0400
  8112. Organization: McMaster University, Hamilton, Ontario, Canada.
  8113. Message-ID: <35l5ha$2dk@muss.cis.McMaster.CA>
  8114.  
  8115. In article <35i5nc$eq9@larry.rice.edu>,
  8116. Steven Patrick Iltis <iltiss@rice.edu> wrote:
  8117. >
  8118. >Is it possible to use zmodem (or rz and sz) with kermit? I use Kermit
  8119. >on Linux to log on to systems, and would like to use zmodem with
  8120. >Kermit.
  8121. >
  8122. >If I can't get these to work together, how can I get the fastest
  8123. >transfers with Kermit? Currently, I can only get about 1200 cps on a
  8124. >14.4 modem.
  8125.  
  8126. From news@columbia.edu Fri Sep 23 20:35:00 1994
  8127. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21849
  8128.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:28:09 -0400
  8129. Received: by apakabar.cc.columbia.edu id AA11010
  8130.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:28:07 -0400
  8131. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!quagga.ru.ac.za!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!earl.h..kinmonth
  8132. From: earl.h..kinmonth@aecibbs.proxima.alt.za (Earl H. Kinmonth)
  8133. Newsgroups: comp.protocols.kermit.misc
  8134. Subject: Kermit for DOS/V
  8135. Message-Id: <54.335.uupcb@aecibbs.proxima.alt.za>
  8136. Date: 23 Sep 94 20:35:00 GMT
  8137. Distribution: world
  8138. Organization: AECI BBS  +27 11 608-1516
  8139. Reply-To: earl.h..kinmonth@aecibbs.proxima.alt.za (Earl H. Kinmonth)
  8140. Lines: 17
  8141. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8142.  
  8143. From: jp1ek@sunc.sheffield.ac.uk (Earl H. Kinmonth)
  8144. Date: 20 Sep 1994 06:41:22 GMT
  8145. Organization: Centre for Japanese Studies, Univ. of Sheffield
  8146. Message-ID: <35m06i$9ch@hippo.shef.ac.uk>
  8147. Reply-To: jp1ek@sunc.shef.ac.uk
  8148.  
  8149. Does anyone know the current state of kermit for DOS/V (the
  8150. IBM/Microsoft dual mode version for Japanese/English)?  I have a 3.13
  8151. beta from a site in Japan, but it has one bug that renders it almost
  8152. unusable.  The code conversion does not work properly for Old-Jis
  8153. coding as used by Japan's largest commercial database vendor, Nikkei
  8154. Telecom.
  8155.  
  8156. --
  8157. Earl H. Kinmonth, Centre for Japanese Studies, University of Sheffield,
  8158. Sheffield, England S10 2TN jp1ek@sunc.sheffield.ac.uk
  8159.  
  8160.  
  8161. From news@columbia.edu Mon Sep 26 19:05:27 1994
  8162. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22231
  8163.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:33:09 -0400
  8164. Received: by apakabar.cc.columbia.edu id AA11451
  8165.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:33:08 -0400
  8166. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!torn!news.ccs.queensu.ca!news
  8167. From: mike@ccs-sparc2post.QueensU.CA (Mike Smith)
  8168. Newsgroups: comp.protocols.kermit.misc
  8169. Subject: Quoting 255 on Telnet Connections
  8170. Date: 26 Sep 1994 19:05:27 GMT
  8171. Organization: Queen's University, Kingston
  8172. Lines: 26
  8173. Sender: mike%ccs-sparc2@apakabar.cc.columbia.edu (Mike Smith)
  8174. Distribution: world
  8175. Message-Id: <36761n$3ia@knot.queensu.ca>
  8176. Nntp-Posting-Host: ccs-sparc2.ccs
  8177. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8178.  
  8179. The ckcker.upd file for 5A(190) Beta Sep 5/94 contains lots of very useful
  8180. info on control character prefixing.  I have one question.  The document
  8181. is very explicit about the need to quote 255 if a telnet server is involved
  8182. in the communications path.  In my case, I have a CISCO telnet server
  8183. in the path, I told C-Kermit 5A(189) to unquote 255 and it doesn't seem
  8184. to matter.  The other end is MS-Kermit 3.13 which does not let me explicitly
  8185. prefix or unprefix 255.  So, the questions are:
  8186.  
  8187.    1. Is MS-Kermit 3.13 quoting 255 and that's why I don't see a problem?
  8188.    2. Is it just that my tests don't illustrate the problem?  (I have a test
  8189.       file that includes singles and doubles of all 256 character codes as
  8190.       suggested in the .upd file.)  I've done binary uploads and downloads
  8191.       successfully.
  8192.    3. What does IAC stand for anyway?
  8193.  
  8194. I could just quote 255 but I'd first like to understand why.
  8195.  
  8196. P.S. To Joe D.  I found your comment about shiny toys perfectly acceptable and
  8197. the suggestion that you should watch your tone ridiculous.  In my opinion
  8198. you and Frank should be nominated for sainthood.
  8199.  
  8200. -- 
  8201.  
  8202.  Mike Smith                                  mike@ccs.queensu.ca
  8203.  Queen's University                          Michael.D.Smith@QueensU.CA
  8204.  Computing and Communications Services       (613) 545-2024
  8205.  
  8206. From news@columbia.edu Mon Sep 26 20:43:16 1994
  8207. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23020
  8208.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:43:22 -0400
  8209. Received: by apakabar.cc.columbia.edu id AA12089
  8210.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:43:19 -0400
  8211. Path: news.columbia.edu!usenet
  8212. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  8213. Newsgroups: comp.protocols.kermit.misc
  8214. Subject: Re: C-Kermit for DOS questions
  8215. Date: 26 Sep 1994 20:43:16 GMT
  8216. Organization: Columbia University
  8217. Lines: 19
  8218. Distribution: world
  8219. Message-Id: <367bp4$bpn@apakabar.cc.columbia.edu>
  8220. References: <25.335.uupcb@aecibbs.proxima.alt.za>
  8221. Nntp-Posting-Host: fdc.cc.columbia.edu
  8222. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8223.  
  8224. In article <25.335.uupcb@aecibbs.proxima.alt.za>  
  8225. erik.hatcher@aecibbs.proxima.alt.za (Erik Hatcher)  writes:
  8226. > I've been trying to track down a version of C-Kermit for
  8227. > DOS and have been unsuccessful.  In Cruz's book he has
  8228. > a chart of the compatibilities of DOS kermit and C-Kermit
  8229. > and their is one difference - no dynamic block sizes
  8230. > on the DOS version.
  8231. Au contraire - DOS Kermit does have "dynamic block sizes",
  8232. a.k.a. rubber packets.  This is in MS-DOS Kermit 3.13 (the
  8233. current version).
  8234.  
  8235. The idea is: if the line quality deteriorates and packet errors
  8236. (corruption or timeouts) occur, the file sender automatically
  8237. reduces the packet size.  As (when, if) the line quality improves
  8238. again, the packet length is gradually increased back to its
  8239. negotiated maximum size.
  8240.  
  8241. - Frank
  8242.  
  8243. From news@columbia.edu Mon Sep 26 20:45:12 1994
  8244. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23320
  8245.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:45:15 -0400
  8246. Received: by apakabar.cc.columbia.edu id AA12345
  8247.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:45:14 -0400
  8248. Path: news.columbia.edu!usenet
  8249. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  8250. Newsgroups: comp.protocols.kermit.misc
  8251. Subject: Re: CR translation in telnet connection
  8252. Date: 26 Sep 1994 20:45:12 GMT
  8253. Organization: Columbia University
  8254. Lines: 16
  8255. Distribution: world
  8256. Message-Id: <367bso$c1m@apakabar.cc.columbia.edu>
  8257. References: <28.335.uupcb@aecibbs.proxima.alt.za>
  8258. Nntp-Posting-Host: fdc.cc.columbia.edu
  8259. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8260.  
  8261. In article <28.335.uupcb@aecibbs.proxima.alt.za>  
  8262. andrew.dunstan@aecibbs.proxima.alt.za (Andrew Dunstan)  writes:
  8263. > I am connecting to a DCX Ethergate which has a modem attached, and
  8264. > then dialling out on the modem. The Ethergate does no CRLF or CR-Nul
  8265. > translation, so I unfortunately end up sending one of these pairs,
  8266. > when all I want to send is a plain CR.
  8267. The makers of the Ethergate should read RFC854.
  8268.  
  8269. However, this is becoming such a pervasive problem that the forthcoming
  8270. releases of MS-DOS Kermit and C-Kermit will add an option,
  8271. SET TELNET NEWLINE-MODE RAW, to allow carriage returns to be sent
  8272. bare, with no LF or NUL stuffed after them as required by the TELNET
  8273. NVT specification (RFC854).
  8274.  
  8275. - Frank
  8276.  
  8277. From news@columbia.edu Mon Sep 26 20:50:56 1994
  8278. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23744
  8279.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:50:59 -0400
  8280. Received: by apakabar.cc.columbia.edu id AA12726
  8281.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:50:58 -0400
  8282. Path: news.columbia.edu!usenet
  8283. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  8284. Newsgroups: comp.protocols.kermit.misc
  8285. Subject: Re: FTP for Current MS-DOS Kermit?
  8286. Date: 26 Sep 1994 20:50:56 GMT
  8287. Organization: Columbia University
  8288. Lines: 29
  8289. Distribution: world
  8290. Message-Id: <367c7g$cdg@apakabar.cc.columbia.edu>
  8291. References: <24.335.uupcb@aecibbs.proxima.alt.za>
  8292. Nntp-Posting-Host: fdc.cc.columbia.edu
  8293. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8294.  
  8295. In article <24.335.uupcb@aecibbs.proxima.alt.za>  
  8296. keith.petersen@aecibbs.proxima.alt.za (Keith Petersen)  writes:
  8297. > The official ftp site for Kermit is kermit.columbia.edu, however, the
  8298. > latest MS-Kermit is also available - along with many support programs
  8299. > and information files - from SimTel.
  8300.  SimTel files may obtained by e-mail from various ftp-mail servers
  8301. > or through the BITNET/EARN file servers.  For details see file
  8302. > /SimTel/msdos/filedocs/mailserv.inf.  Gopher users can access the
  8303. > collection through Gopher.Oakland.Edu.  World Wide Web (WWW) and
  8304. > Mosaic users can connect to the URL http://www.acs.oakland.edu to
  8305. > access the files on OAK.Oakland.Edu.
  8306. Thanks Keith, but again, readers are cautioned that the ONLY site on
  8307. the Internet that they should get Kermit software from is
  8308. kermit.columbia.edu.  We who write and support Kermit software have
  8309. no way of knowing what is on the many mirror sites -- the files might
  8310. (or might not) be out of date, altered, incomplete, etc.
  8311.  
  8312. > CD-ROM copies of the entire MS-DOS collection (including Windows) are
  8313. > available from Coast to Coast Telecommunications, Inc...
  8314. >
  8315. Kermit software should not be on these CD-ROMs.  Once again, it creates
  8316. two big problems for the Kermit effort: it starves us of the income we
  8317. need to continue our work, and it creates a big support problem for us
  8318. since (a) the software on these CD-ROMs might be out of date, changed,
  8319. and/or incomplete, and (b) it is distributed without the manual.
  8320.  
  8321. - Frank
  8322.  
  8323. From news@columbia.edu Mon Sep 26 20:54:05 1994
  8324. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23971
  8325.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:54:08 -0400
  8326. Received: by apakabar.cc.columbia.edu id AA12895
  8327.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:54:07 -0400
  8328. Path: news.columbia.edu!usenet
  8329. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  8330. Newsgroups: comp.protocols.kermit.misc
  8331. Subject: SOUTH AFRICA
  8332. Date: 26 Sep 1994 20:54:05 GMT
  8333. Organization: Columbia University
  8334. Lines: 10
  8335. Distribution: World
  8336. Message-Id: <367cdd$cis@apakabar.cc.columbia.edu>
  8337. Nntp-Posting-Host: fdc.cc.columbia.edu
  8338. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8339.  
  8340. Dear readers...
  8341.  
  8342. Some site in South Africa (proxima.alt.za?) is reposting all of the messages
  8343. that were already posted to comp.protocols.kermit.misc, and truncating most
  8344. of them in the bargain, and rewriting the address of the posters.  Very
  8345. confusing and annoying.
  8346.  
  8347. Dear news person at proxima.alt.za -- please make it stop.  Thanks.
  8348.  
  8349. - Frank
  8350.  
  8351. From news@columbia.edu Mon Sep 26 21:06:01 1994
  8352. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24983
  8353.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 17:06:04 -0400
  8354. Received: by apakabar.cc.columbia.edu id AA13750
  8355.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 17:06:02 -0400
  8356. Path: news.columbia.edu!usenet
  8357. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  8358. Newsgroups: comp.protocols.kermit.misc
  8359. Subject: Re: Quoting 255 on Telnet Connections
  8360. Date: 26 Sep 1994 21:06:01 GMT
  8361. Organization: Columbia University
  8362. Lines: 34
  8363. Distribution: world
  8364. Message-Id: <367d3p$ddh@apakabar.cc.columbia.edu>
  8365. References: <36761n$3ia@knot.queensu.ca>
  8366. Nntp-Posting-Host: fdc.cc.columbia.edu
  8367. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8368.  
  8369. In article <36761n$3ia@knot.queensu.ca> mike@ccs-sparc2post.QueensU.CA (Mike  
  8370. Smith) writes:
  8371. >  1. Is MS-Kermit 3.13 quoting 255 and that's why I don't see a problem?
  8372. >
  8373. Both C-Kermit and MS-DOS Kermit will prefix 255 automatically when you have
  8374. made the connection with a SET PORT TCP (MS-DOS Kermit) or TELNET (or,
  8375. equivalently, SET NETWORK TCP/IP, SET HOST ...) command, i.e. when they
  8376. know for sure it's a TELNET connection.  Otherwise they don't, in which case
  8377. you might have to tell them to do it.
  8378.  
  8379. > 2. Is it just that my tests don't illustrate the problem?  (I have a test
  8380. >    file that includes singles and doubles of all 256 character codes as
  8381. >    suggested in the .upd file.)  I've done binary uploads and downloads
  8382. >    successfully.
  8383. >
  8384. It depends on the direction in which the data is going and on the terminal
  8385. server.  Some of them are oversensitive.  If a literal 255 comes in on the
  8386. serial end, it should be treated as data, but cases have been reported where
  8387. it is not.  More to the point, the Kermit program on the receiving end of
  8388. the TELNET connection has NO WAY of knowing this, and so when it is sending
  8389. files, it will cheerfully let you unprefix 255 -- don't do it!
  8390.  
  8391. >    3. What does IAC stand for anyway?
  8392. I Am a Command?  No, not really.  It's "Interpret As Command".  On a TELNET
  8393. connection, IAC (= 255) is a kind of in-band escape character, changing
  8394. the protocol from data mode to command mode.  To send an IAC as a literal
  8395. data character, one must send two of them.  See RFC854.
  8396.  
  8397. > I could just quote 255 but I'd first like to understand why.
  8398. Better safe than sorry.  It's only one character out of 256.
  8399.  
  8400. - Frank
  8401.  
  8402. From news@columbia.edu Mon Sep 26 21:14:44 1994
  8403. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25660
  8404.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 17:14:47 -0400
  8405. Received: by apakabar.cc.columbia.edu id AA14417
  8406.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 17:14:45 -0400
  8407. Path: news.columbia.edu!usenet
  8408. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  8409. Newsgroups: comp.protocols.kermit.misc
  8410. Subject: Re: auto redial script
  8411. Date: 26 Sep 1994 21:14:44 GMT
  8412. Organization: Columbia University
  8413. Lines: 31
  8414. Distribution: world
  8415. Message-Id: <367dk4$e2f@apakabar.cc.columbia.edu>
  8416. References: <27.335.uupcb@aecibbs.proxima.alt.za>
  8417. Nntp-Posting-Host: fdc.cc.columbia.edu
  8418. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8419.  
  8420. In article <27.335.uupcb@aecibbs.proxima.alt.za>  
  8421. benjamin.ketcham@aecibbs.proxima.alt.za (Benjamin Ketcham)  writes:
  8422. > Several people have mentioned automatic redial wrt kermit.  Here is
  8423. > a little macro I kluged up to do it (to be included in .kermrc).
  8424. >
  8425. We recommend you not alter your .kermrc (CKERMIT.INI), but rather,
  8426. add your customizations, overrides, and redefinitions to your own
  8427. personal customization file, .mykermrc (CKERMOD.INI).  Ditto for
  8428. MS-DOS Kermit: make alterations to MSCUSTOM.INI, not MSKERMIT.INI.
  8429.  
  8430. > --Depends on ASCII being the character set (due to '\13').  I
  8431. > think there's a better way to do this, but I couldn't
  8432. > immediately find it in the kermit docs.
  8433. I've never heard of a modem that did not use ASCII for its command
  8434. language.  However, some modems might be set to use line terminators
  8435. other than carriage return (by changing S3).  Unfortunately, there is
  8436. no way a program can find this out, except perhaps by sending
  8437. ATS3? followed by every conceivable character.
  8438.  
  8439. > --If the line is *not* busy, must wait for the input statement
  8440. > to time out.  Thus, the choice of time there is critical.
  8441. > Don't want it too long, but if too short, might time out before
  8442. > a slow phone connection completed (esp. long distance).  Is
  8443. > there a way to wait for *any* text string, save it in a variable,
  8444. > and then test it afterwards for "BUSY" or "CONNECT" -ness?
  8445. Yes - Read the ckcker.bwr file about this; there are some paragraphs
  8446. on this subject in the script programming section.
  8447.  
  8448. - Frank
  8449.  
  8450. From news@columbia.edu Mon Sep 26 21:24:57 1994
  8451. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27050
  8452.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 17:32:08 -0400
  8453. Received: by apakabar.cc.columbia.edu id AA15908
  8454.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 17:32:06 -0400
  8455. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  8456. From: erik.hatcher@aecibbs.proxima.alt.za (Erik Hatcher)
  8457. Newsgroups: comp.protocols.kermit.misc
  8458. Message-Id: <-25.335.uupcb@aecibbs.proxima.alt.za>
  8459. Control: cancel <25.335.uupcb@aecibbs.proxima.alt.za>
  8460. Distribution: world
  8461. Organization: AECI BBS  +27 11 608-1516
  8462. Reply-To: erik.hatcher@aecibbs.proxima.alt.za (Erik Hatcher)
  8463. Subject: cmsg cancel <25.335.uupcb@aecibbs.proxima.alt.za>
  8464. Date: Mon, 26 Sep 1994 21:24:57 GMT
  8465. Approved: news@aecibbs.proxima.alt.za
  8466. Lines: 1
  8467. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8468.  
  8469. cancel <25.335.uupcb@aecibbs.proxima.alt.za>
  8470.  
  8471. From news@columbia.edu Mon Sep 26 19:24:54 1994
  8472. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27163
  8473.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 17:33:54 -0400
  8474. Received: by apakabar.cc.columbia.edu id AA16019
  8475.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 17:33:46 -0400
  8476. Newsgroups: comp.protocols.kermit.misc
  8477. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!gatech!newsfeed.pitt.edu!dsinc!ub!acsu.buffalo.edu!ubvms.cc.buffalo.edu!RINGLAND
  8478. From: ringland@ubvms.cc.buffalo.edu
  8479. Subject: Re: Kermit can't access modem under Windows
  8480. Message-Id: <Cwr4LK.M6I@acsu.buffalo.edu>
  8481. Sender: nntp@acsu.buffalo.edu
  8482. Nntp-Posting-Host: ubvmsa.cc.buffalo.edu
  8483. Reply-To: ringland@ubvms.cc.buffalo.edu
  8484. Organization: University at Buffalo
  8485. References: <Cwpunn.CG7@acsu.buffalo.edu>
  8486. Date: Mon, 26 Sep 1994 19:24:54 GMT
  8487. Lines: 30
  8488. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8489.  
  8490. In article <Cwpunn.CG7@acsu.buffalo.edu>, ringland@ubvms.cc.buffalo.edu writes:
  8491. >Hello.  I'm hoping that someone will indulge my ignorance and help
  8492. >with what might be a common problem.  Kermit works fine in DOS on
  8493. >my 386 with a USRobotics Sportster modem on Com 4, IRQ 5.  In windows
  8494. >it seems that Kermit can't access the modem.  After trying the computer
  8495. >hangs.  Cntl Alt. Del. sometimes quits Kermit and sometimes not, which
  8496. >seems to be connected to whether the mouse is moving (mouse is on Com1,
  8497. >IRQ 4).  I use other windows communications programs without problem,
  8498. >except that they don't include full implementations of Kermit, and 
  8499. >the protocols they do include often don't work, which is why I want
  8500. >to run Kermit.  I *think* I've tried just about everything.  The modem
  8501. >is a 14,400 model, and I'm fairly sure I've got all the Kermit settings
  8502. >right, including, of course, the Com and Interrupt settings -- as I
  8503. >said, works fine in DOS.  Help!
  8504. >
  8505. >Thanks!  (BTW this is the latest Kermit MS-DOS 3.13)
  8506.  
  8507.  
  8508. As followup to my own post, I thought it might be worth telling that 
  8509. the problem turned out to be "blank" com ports, which I had thought
  8510. I had to reserve for plugs attached to an I/O card, and whose 
  8511. interrupts were being used by a sound card, etc.  Someone was kind
  8512. enough to notify my by e-mail that Windows requires all ports to be
  8513. filled in sequence.  This knowledge saved me potential hours of 
  8514. frustration, and I haven't seen it documented anywhere.  So everything works
  8515. fine
  8516. now that I've rearranged things to give the modem "priority", as it
  8517. were, moving it to Com2 and changing the other interrupts around.
  8518.  
  8519. Thanks!
  8520.  
  8521. From news@columbia.edu Mon Sep 26 21:25:18 1994
  8522. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27299
  8523.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 17:35:10 -0400
  8524. Received: by apakabar.cc.columbia.edu id AA16102
  8525.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 17:35:09 -0400
  8526. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  8527. From: beads@aecibbs.proxima.alt.za (Beads)
  8528. Newsgroups: comp.protocols.kermit.misc
  8529. Message-Id: <-26.335.uupcb@aecibbs.proxima.alt.za>
  8530. Control: cancel <26.335.uupcb@aecibbs.proxima.alt.za>
  8531. Distribution: world
  8532. Organization: AECI BBS  +27 11 608-1516
  8533. Reply-To: beads@aecibbs.proxima.alt.za (Beads)
  8534. Subject: cmsg cancel <26.335.uupcb@aecibbs.proxima.alt.za>
  8535. Date: Mon, 26 Sep 1994 21:25:18 GMT
  8536. Approved: news@aecibbs.proxima.alt.za
  8537. Lines: 1
  8538. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8539.  
  8540. cancel <26.335.uupcb@aecibbs.proxima.alt.za>
  8541.  
  8542. From news@columbia.edu Mon Sep 26 21:25:37 1994
  8543. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27438
  8544.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 17:37:32 -0400
  8545. Received: by apakabar.cc.columbia.edu id AA16261
  8546.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 17:37:30 -0400
  8547. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  8548. From: benjamin.ketcham@aecibbs.proxima.alt.za (Benjamin Ketcham)
  8549. Newsgroups: comp.protocols.kermit.misc
  8550. Message-Id: <-27.335.uupcb@aecibbs.proxima.alt.za>
  8551. Control: cancel <27.335.uupcb@aecibbs.proxima.alt.za>
  8552. Distribution: world
  8553. Organization: AECI BBS  +27 11 608-1516
  8554. Reply-To: benjamin.ketcham@aecibbs.proxima.alt.za (Benjamin Ketcham)
  8555. Subject: cmsg cancel <27.335.uupcb@aecibbs.proxima.alt.za>
  8556. Date: Mon, 26 Sep 1994 21:25:37 GMT
  8557. Approved: news@aecibbs.proxima.alt.za
  8558. Lines: 1
  8559. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8560.  
  8561. cancel <27.335.uupcb@aecibbs.proxima.alt.za>
  8562.  
  8563. From news@columbia.edu Mon Sep 26 09:54:56 1994
  8564. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01102
  8565.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 18:32:56 -0400
  8566. Received: by apakabar.cc.columbia.edu id AA20059
  8567.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 18:32:55 -0400
  8568. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  8569. From: jrd@cc.usu.edu (Joe Doupnik)
  8570. Newsgroups: comp.protocols.kermit.misc
  8571. Subject: Boo-boos from aecibbs.proxima.alt.za
  8572. Message-Id: <1994Sep26.155457.27892@cc.usu.edu>
  8573. Date: 26 Sep 94 15:54:56 MDT
  8574. Organization: Utah State University
  8575. Lines: 9
  8576. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8577.  
  8578.     My News reader, and probably yours too, has just been inundated
  8579. with a large flux of files from a site in South Africa. They appear to
  8580. be old messages repackaged with new headers and not always the entire
  8581. body. I'm sure it is a broken mail distribution system down there, and
  8582. this kind of thing happens a lot.
  8583.     So rather than adding to the list traffic with grumbles, please let 
  8584. Columbia notify the postmaster of the site, and the rest of us will quietly 
  8585. skip down to the new and interesting files.
  8586.         Joe D.
  8587.  
  8588. From news@columbia.edu Mon Sep 26 21:10:58 1994
  8589. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02263
  8590.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 18:56:09 -0400
  8591. Received: by apakabar.cc.columbia.edu id AA21656
  8592.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 18:56:08 -0400
  8593. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  8594. From: sigurd.andersen@aecibbs.proxima.alt.za (Sigurd Andersen)
  8595. Newsgroups: comp.protocols.kermit.misc
  8596. Message-Id: <-12.335.uupcb@aecibbs.proxima.alt.za>
  8597. Control: cancel <12.335.uupcb@aecibbs.proxima.alt.za>
  8598. Distribution: world
  8599. Organization: AECI BBS  +27 11 608-1516
  8600. Reply-To: sigurd.andersen@aecibbs.proxima.alt.za (Sigurd Andersen)
  8601. Subject: cmsg cancel <12.335.uupcb@aecibbs.proxima.alt.za>
  8602. Date: Mon, 26 Sep 1994 21:10:58 GMT
  8603. Approved: news@aecibbs.proxima.alt.za
  8604. Lines: 1
  8605. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8606.  
  8607. cancel <12.335.uupcb@aecibbs.proxima.alt.za>
  8608.  
  8609. From news@columbia.edu Mon Sep 26 21:11:22 1994
  8610. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02383
  8611.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 18:58:59 -0400
  8612. Received: by apakabar.cc.columbia.edu id AA21811
  8613.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 18:58:58 -0400
  8614. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  8615. From: xander.jansen@surfnet.nl (Xander.Jansen@Surfnet.Nl)
  8616. Newsgroups: comp.protocols.kermit.misc
  8617. Message-Id: <-18.335.uupcb@aecibbs.proxima.alt.za>
  8618. Control: cancel <18.335.uupcb@aecibbs.proxima.alt.za>
  8619. Distribution: world
  8620. Organization: AECI BBS  +27 11 608-1516
  8621. Reply-To: xander.jansen@surfnet.nl (Xander.Jansen@Surfnet.Nl)
  8622. Subject: cmsg cancel <18.335.uupcb@aecibbs.proxima.alt.za>
  8623. Date: Mon, 26 Sep 1994 21:11:22 GMT
  8624. Approved: news@aecibbs.proxima.alt.za
  8625. Lines: 1
  8626. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8627.  
  8628. cancel <18.335.uupcb@aecibbs.proxima.alt.za>
  8629.  
  8630. From news@columbia.edu Mon Sep 26 21:11:51 1994
  8631. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02687
  8632.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:01:10 -0400
  8633. Received: by apakabar.cc.columbia.edu id AA21975
  8634.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:01:09 -0400
  8635. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  8636. From: cliff.stamp@aecibbs.proxima.alt.za (Cliff Stamp)
  8637. Newsgroups: comp.protocols.kermit.misc
  8638. Message-Id: <-13.335.uupcb@aecibbs.proxima.alt.za>
  8639. Control: cancel <13.335.uupcb@aecibbs.proxima.alt.za>
  8640. Distribution: world
  8641. Organization: AECI BBS  +27 11 608-1516
  8642. Reply-To: cliff.stamp@aecibbs.proxima.alt.za (Cliff Stamp)
  8643. Subject: cmsg cancel <13.335.uupcb@aecibbs.proxima.alt.za>
  8644. Date: Mon, 26 Sep 1994 21:11:51 GMT
  8645. Approved: news@aecibbs.proxima.alt.za
  8646. Lines: 1
  8647. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8648.  
  8649. cancel <13.335.uupcb@aecibbs.proxima.alt.za>
  8650.  
  8651. From news@columbia.edu Mon Sep 26 21:12:19 1994
  8652. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02932
  8653.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:04:48 -0400
  8654. Received: by apakabar.cc.columbia.edu id AA22315
  8655.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:04:48 -0400
  8656. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  8657. From: j..wakeley.purple@aecibbs.proxima.alt.za (J. Wakeley Purple)
  8658. Newsgroups: comp.protocols.kermit.misc
  8659. Message-Id: <-20.335.uupcb@aecibbs.proxima.alt.za>
  8660. Control: cancel <20.335.uupcb@aecibbs.proxima.alt.za>
  8661. Distribution: world
  8662. Organization: AECI BBS  +27 11 608-1516
  8663. Reply-To: j..wakeley.purple@aecibbs.proxima.alt.za (J. Wakeley Purple)
  8664. Subject: cmsg cancel <20.335.uupcb@aecibbs.proxima.alt.za>
  8665. Date: Mon, 26 Sep 1994 21:12:19 GMT
  8666. Approved: news@aecibbs.proxima.alt.za
  8667. Lines: 1
  8668. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8669.  
  8670. cancel <20.335.uupcb@aecibbs.proxima.alt.za>
  8671.  
  8672. From news@columbia.edu Mon Sep 26 21:13:01 1994
  8673. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03282
  8674.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:12:47 -0400
  8675. Received: by apakabar.cc.columbia.edu id AA22682
  8676.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:12:46 -0400
  8677. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  8678. From: hutsel.barry.e@aecibbs.proxima.alt.za (Hutsel Barry E)
  8679. Newsgroups: comp.protocols.kermit.misc
  8680. Message-Id: <-14.335.uupcb@aecibbs.proxima.alt.za>
  8681. Control: cancel <14.335.uupcb@aecibbs.proxima.alt.za>
  8682. Distribution: world
  8683. Organization: AECI BBS  +27 11 608-1516
  8684. Reply-To: hutsel.barry.e@aecibbs.proxima.alt.za (Hutsel Barry E)
  8685. Subject: cmsg cancel <14.335.uupcb@aecibbs.proxima.alt.za>
  8686. Date: Mon, 26 Sep 1994 21:13:01 GMT
  8687. Approved: news@aecibbs.proxima.alt.za
  8688. Lines: 1
  8689. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8690.  
  8691. cancel <14.335.uupcb@aecibbs.proxima.alt.za>
  8692.  
  8693. From news@columbia.edu Mon Sep 26 21:13:26 1994
  8694. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03325
  8695.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:13:50 -0400
  8696. Received: by apakabar.cc.columbia.edu id AA22756
  8697.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:13:48 -0400
  8698. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  8699. From: roland.kwee@aecibbs.proxima.alt.za (Roland Kwee)
  8700. Newsgroups: comp.protocols.kermit.misc
  8701. Message-Id: <-15.335.uupcb@aecibbs.proxima.alt.za>
  8702. Control: cancel <15.335.uupcb@aecibbs.proxima.alt.za>
  8703. Distribution: world
  8704. Organization: AECI BBS  +27 11 608-1516
  8705. Reply-To: roland.kwee@aecibbs.proxima.alt.za (Roland Kwee)
  8706. Subject: cmsg cancel <15.335.uupcb@aecibbs.proxima.alt.za>
  8707. Date: Mon, 26 Sep 1994 21:13:26 GMT
  8708. Approved: news@aecibbs.proxima.alt.za
  8709. Lines: 1
  8710. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8711.  
  8712. cancel <15.335.uupcb@aecibbs.proxima.alt.za>
  8713.  
  8714. From news@columbia.edu Mon Sep 26 21:13:53 1994
  8715. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03354
  8716.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:14:25 -0400
  8717. Received: by apakabar.cc.columbia.edu id AA22878
  8718.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:14:24 -0400
  8719. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  8720. From: alastair.mckinstry@aecibbs.proxima.alt.za (Alastair Mckinstry)
  8721. Newsgroups: comp.protocols.kermit.misc
  8722. Message-Id: <-16.335.uupcb@aecibbs.proxima.alt.za>
  8723. Control: cancel <16.335.uupcb@aecibbs.proxima.alt.za>
  8724. Distribution: world
  8725. Organization: AECI BBS  +27 11 608-1516
  8726. Reply-To: alastair.mckinstry@aecibbs.proxima.alt.za (Alastair Mckinstry)
  8727. Subject: cmsg cancel <16.335.uupcb@aecibbs.proxima.alt.za>
  8728. Date: Mon, 26 Sep 1994 21:13:53 GMT
  8729. Approved: news@aecibbs.proxima.alt.za
  8730. Lines: 1
  8731. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8732.  
  8733. cancel <16.335.uupcb@aecibbs.proxima.alt.za>
  8734.  
  8735. From news@columbia.edu Mon Sep 26 21:14:13 1994
  8736. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03421
  8737.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:15:06 -0400
  8738. Received: by apakabar.cc.columbia.edu id AA22976
  8739.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:15:05 -0400
  8740. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  8741. From: huzacec@telerama.lm.com (Huzacec@Telerama.Lm.Com)
  8742. Newsgroups: comp.protocols.kermit.misc
  8743. Message-Id: <-17.335.uupcb@aecibbs.proxima.alt.za>
  8744. Control: cancel <17.335.uupcb@aecibbs.proxima.alt.za>
  8745. Distribution: world
  8746. Organization: AECI BBS  +27 11 608-1516
  8747. Reply-To: huzacec@telerama.lm.com (Huzacec@Telerama.Lm.Com)
  8748. Subject: cmsg cancel <17.335.uupcb@aecibbs.proxima.alt.za>
  8749. Date: Mon, 26 Sep 1994 21:14:13 GMT
  8750. Approved: news@aecibbs.proxima.alt.za
  8751. Lines: 1
  8752. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8753.  
  8754. cancel <17.335.uupcb@aecibbs.proxima.alt.za>
  8755.  
  8756. From news@columbia.edu Mon Sep 26 21:14:34 1994
  8757. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03434
  8758.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:15:37 -0400
  8759. Received: by apakabar.cc.columbia.edu id AA23115
  8760.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:15:36 -0400
  8761. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  8762. From: rich@dsm1.dsmnet.com (Rich@Dsm1.Dsmnet.Com)
  8763. Newsgroups: comp.protocols.kermit.misc
  8764. Message-Id: <-33.335.uupcb@aecibbs.proxima.alt.za>
  8765. Control: cancel <33.335.uupcb@aecibbs.proxima.alt.za>
  8766. Distribution: world
  8767. Organization: AECI BBS  +27 11 608-1516
  8768. Reply-To: rich@dsm1.dsmnet.com (Rich@Dsm1.Dsmnet.Com)
  8769. Subject: cmsg cancel <33.335.uupcb@aecibbs.proxima.alt.za>
  8770. Date: Mon, 26 Sep 1994 21:14:34 GMT
  8771. Approved: news@aecibbs.proxima.alt.za
  8772. Lines: 1
  8773. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8774.  
  8775. cancel <33.335.uupcb@aecibbs.proxima.alt.za>
  8776.  
  8777. From news@columbia.edu Mon Sep 26 21:14:55 1994
  8778. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03623
  8779.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:18:53 -0400
  8780. Received: by apakabar.cc.columbia.edu id AA23353
  8781.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:18:51 -0400
  8782. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  8783. From: mdesouza@aecibbs.proxima.alt.za (Mdesouza)
  8784. Newsgroups: comp.protocols.kermit.misc
  8785. Message-Id: <-19.335.uupcb@aecibbs.proxima.alt.za>
  8786. Control: cancel <19.335.uupcb@aecibbs.proxima.alt.za>
  8787. Distribution: world
  8788. Organization: AECI BBS  +27 11 608-1516
  8789. Reply-To: mdesouza@aecibbs.proxima.alt.za (Mdesouza)
  8790. Subject: cmsg cancel <19.335.uupcb@aecibbs.proxima.alt.za>
  8791. Date: Mon, 26 Sep 1994 21:14:55 GMT
  8792. Approved: news@aecibbs.proxima.alt.za
  8793. Lines: 1
  8794. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8795.  
  8796. cancel <19.335.uupcb@aecibbs.proxima.alt.za>
  8797.  
  8798. From news@columbia.edu Mon Sep 26 21:16:08 1994
  8799. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03789
  8800.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:22:35 -0400
  8801. Received: by apakabar.cc.columbia.edu id AA23553
  8802.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:22:34 -0400
  8803. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  8804. From: j..wakeley.purple@aecibbs.proxima.alt.za (J. Wakeley Purple)
  8805. Newsgroups: comp.protocols.kermit.misc
  8806. Message-Id: <-22.335.uupcb@aecibbs.proxima.alt.za>
  8807. Control: cancel <22.335.uupcb@aecibbs.proxima.alt.za>
  8808. Distribution: world
  8809. Organization: AECI BBS  +27 11 608-1516
  8810. Reply-To: j..wakeley.purple@aecibbs.proxima.alt.za (J. Wakeley Purple)
  8811. Subject: cmsg cancel <22.335.uupcb@aecibbs.proxima.alt.za>
  8812. Date: Mon, 26 Sep 1994 21:16:08 GMT
  8813. Approved: news@aecibbs.proxima.alt.za
  8814. Lines: 1
  8815. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8816.  
  8817. cancel <22.335.uupcb@aecibbs.proxima.alt.za>
  8818.  
  8819. From news@columbia.edu Mon Sep 26 21:16:32 1994
  8820. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03824
  8821.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:23:06 -0400
  8822. Received: by apakabar.cc.columbia.edu id AA23571
  8823.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:23:05 -0400
  8824. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  8825. From: doug.fraser@aecibbs.proxima.alt.za (Doug Fraser)
  8826. Newsgroups: comp.protocols.kermit.misc
  8827. Message-Id: <-44.335.uupcb@aecibbs.proxima.alt.za>
  8828. Control: cancel <44.335.uupcb@aecibbs.proxima.alt.za>
  8829. Distribution: world
  8830. Organization: AECI BBS  +27 11 608-1516
  8831. Reply-To: doug.fraser@aecibbs.proxima.alt.za (Doug Fraser)
  8832. Subject: cmsg cancel <44.335.uupcb@aecibbs.proxima.alt.za>
  8833. Date: Mon, 26 Sep 1994 21:16:32 GMT
  8834. Approved: news@aecibbs.proxima.alt.za
  8835. Lines: 1
  8836. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8837.  
  8838. cancel <44.335.uupcb@aecibbs.proxima.alt.za>
  8839.  
  8840. From news@columbia.edu Mon Sep 26 21:18:30 1994
  8841. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04014
  8842.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:27:58 -0400
  8843. Received: by apakabar.cc.columbia.edu id AA23929
  8844.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:27:56 -0400
  8845. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  8846. From: jeff.mcadams.(j.mca@aecibbs.proxima.alt.za (Jeff Mcadams (J Mca)
  8847. Newsgroups: comp.protocols.kermit.misc
  8848. Message-Id: <-50.335.uupcb@aecibbs.proxima.alt.za>
  8849. Control: cancel <50.335.uupcb@aecibbs.proxima.alt.za>
  8850. Distribution: world
  8851. Organization: AECI BBS  +27 11 608-1516
  8852. Reply-To: jeff.mcadams.(j.mca@aecibbs.proxima.alt.za (Jeff Mcadams (J Mca)
  8853. Subject: cmsg cancel <50.335.uupcb@aecibbs.proxima.alt.za>
  8854. Date: Mon, 26 Sep 1994 21:18:30 GMT
  8855. Approved: news@aecibbs.proxima.alt.za
  8856. Lines: 1
  8857. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8858.  
  8859. cancel <50.335.uupcb@aecibbs.proxima.alt.za>
  8860.  
  8861. From news@columbia.edu Mon Sep 26 21:19:06 1994
  8862. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04187
  8863.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:29:47 -0400
  8864. Received: by apakabar.cc.columbia.edu id AA24032
  8865.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:29:44 -0400
  8866. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  8867. From: harry.h.conover@aecibbs.proxima.alt.za (Harry H Conover)
  8868. Newsgroups: comp.protocols.kermit.misc
  8869. Message-Id: <-21.335.uupcb@aecibbs.proxima.alt.za>
  8870. Control: cancel <21.335.uupcb@aecibbs.proxima.alt.za>
  8871. Distribution: world
  8872. Organization: AECI BBS  +27 11 608-1516
  8873. Reply-To: harry.h.conover@aecibbs.proxima.alt.za (Harry H Conover)
  8874. Subject: cmsg cancel <21.335.uupcb@aecibbs.proxima.alt.za>
  8875. Date: Mon, 26 Sep 1994 21:19:06 GMT
  8876. Approved: news@aecibbs.proxima.alt.za
  8877. Lines: 1
  8878. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8879.  
  8880. cancel <21.335.uupcb@aecibbs.proxima.alt.za>
  8881.  
  8882. From news@columbia.edu Mon Sep 26 21:20:05 1994
  8883. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04327
  8884.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:31:02 -0400
  8885. Received: by apakabar.cc.columbia.edu id AA24098
  8886.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:31:01 -0400
  8887. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  8888. From: keith.petersen@aecibbs.proxima.alt.za (Keith Petersen)
  8889. Newsgroups: comp.protocols.kermit.misc
  8890. Message-Id: <-24.335.uupcb@aecibbs.proxima.alt.za>
  8891. Control: cancel <24.335.uupcb@aecibbs.proxima.alt.za>
  8892. Distribution: world
  8893. Organization: AECI BBS  +27 11 608-1516
  8894. Reply-To: keith.petersen@aecibbs.proxima.alt.za (Keith Petersen)
  8895. Subject: cmsg cancel <24.335.uupcb@aecibbs.proxima.alt.za>
  8896. Date: Mon, 26 Sep 1994 21:20:05 GMT
  8897. Approved: news@aecibbs.proxima.alt.za
  8898. Lines: 1
  8899. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8900.  
  8901. cancel <24.335.uupcb@aecibbs.proxima.alt.za>
  8902.  
  8903. From news@columbia.edu Mon Sep 26 21:20:31 1994
  8904. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04341
  8905.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:31:23 -0400
  8906. Received: by apakabar.cc.columbia.edu id AA24119
  8907.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:31:21 -0400
  8908. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  8909. From: r..stewart.ellis@aecibbs.proxima.alt.za (R. Stewart Ellis)
  8910. Newsgroups: comp.protocols.kermit.misc
  8911. Message-Id: <-42.335.uupcb@aecibbs.proxima.alt.za>
  8912. Control: cancel <42.335.uupcb@aecibbs.proxima.alt.za>
  8913. Distribution: world
  8914. Organization: AECI BBS  +27 11 608-1516
  8915. Reply-To: r..stewart.ellis@aecibbs.proxima.alt.za (R. Stewart Ellis)
  8916. Subject: cmsg cancel <42.335.uupcb@aecibbs.proxima.alt.za>
  8917. Date: Mon, 26 Sep 1994 21:20:31 GMT
  8918. Approved: news@aecibbs.proxima.alt.za
  8919. Lines: 1
  8920. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8921.  
  8922. cancel <42.335.uupcb@aecibbs.proxima.alt.za>
  8923.  
  8924. From news@columbia.edu Mon Sep 26 21:20:57 1994
  8925. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04376
  8926.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:32:22 -0400
  8927. Received: by apakabar.cc.columbia.edu id AA24181
  8928.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:32:21 -0400
  8929. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  8930. From: steven.patrick.iltis@aecibbs.proxima.alt.za (Steven Patrick Iltis)
  8931. Newsgroups: comp.protocols.kermit.misc
  8932. Message-Id: <-23.335.uupcb@aecibbs.proxima.alt.za>
  8933. Control: cancel <23.335.uupcb@aecibbs.proxima.alt.za>
  8934. Distribution: world
  8935. Organization: AECI BBS  +27 11 608-1516
  8936. Reply-To: steven.patrick.iltis@aecibbs.proxima.alt.za (Steven Patrick Iltis)
  8937. Subject: cmsg cancel <23.335.uupcb@aecibbs.proxima.alt.za>
  8938. Date: Mon, 26 Sep 1994 21:20:57 GMT
  8939. Approved: news@aecibbs.proxima.alt.za
  8940. Lines: 1
  8941. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8942.  
  8943. cancel <23.335.uupcb@aecibbs.proxima.alt.za>
  8944.  
  8945. From news@columbia.edu Mon Sep 26 21:21:15 1994
  8946. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04385
  8947.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:32:48 -0400
  8948. Received: by apakabar.cc.columbia.edu id AA24196
  8949.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:32:46 -0400
  8950. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  8951. From: kerry.schwab@aecibbs.proxima.alt.za (Kerry Schwab)
  8952. Newsgroups: comp.protocols.kermit.misc
  8953. Message-Id: <-41.335.uupcb@aecibbs.proxima.alt.za>
  8954. Control: cancel <41.335.uupcb@aecibbs.proxima.alt.za>
  8955. Distribution: world
  8956. Organization: AECI BBS  +27 11 608-1516
  8957. Reply-To: kerry.schwab@aecibbs.proxima.alt.za (Kerry Schwab)
  8958. Subject: cmsg cancel <41.335.uupcb@aecibbs.proxima.alt.za>
  8959. Date: Mon, 26 Sep 1994 21:21:15 GMT
  8960. Approved: news@aecibbs.proxima.alt.za
  8961. Lines: 1
  8962. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8963.  
  8964. cancel <41.335.uupcb@aecibbs.proxima.alt.za>
  8965.  
  8966. From news@columbia.edu Mon Sep 26 21:21:51 1994
  8967. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04428
  8968.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:34:08 -0400
  8969. Received: by apakabar.cc.columbia.edu id AA24258
  8970.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:34:07 -0400
  8971. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  8972. From: roland.kwee@aecibbs.proxima.alt.za (Roland Kwee)
  8973. Newsgroups: comp.protocols.kermit.misc
  8974. Message-Id: <-48.335.uupcb@aecibbs.proxima.alt.za>
  8975. Control: cancel <48.335.uupcb@aecibbs.proxima.alt.za>
  8976. Distribution: world
  8977. Organization: AECI BBS  +27 11 608-1516
  8978. Reply-To: roland.kwee@aecibbs.proxima.alt.za (Roland Kwee)
  8979. Subject: cmsg cancel <48.335.uupcb@aecibbs.proxima.alt.za>
  8980. Date: Mon, 26 Sep 1994 21:21:51 GMT
  8981. Approved: news@aecibbs.proxima.alt.za
  8982. Lines: 1
  8983. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8984.  
  8985. cancel <48.335.uupcb@aecibbs.proxima.alt.za>
  8986.  
  8987. From news@columbia.edu Mon Sep 26 21:20:08 1994
  8988. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04546
  8989.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:35:09 -0400
  8990. Received: by apakabar.cc.columbia.edu id AA24317
  8991.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:35:08 -0400
  8992. Path: news.columbia.edu!panix!MathWorks.Com!udel!news-4.nss.udel.edu!chopin.udel.edu!not-for-mail
  8993. From: sigurd@chopin.udel.edu (Sigurd Andersen)
  8994. Newsgroups: comp.protocols.kermit.misc
  8995. Subject: Lots of truncated postings appearing today
  8996. Date: 26 Sep 1994 17:20:08 -0400
  8997. Organization: University of Delaware
  8998. Lines: 8
  8999. Message-Id: <367du8$31m@chopin.udel.edu>
  9000. Nntp-Posting-Host: chopin.udel.edu
  9001. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9002.  
  9003. I'm seeing many truncated postings, mostly old ones re-appearing.
  9004. Is something wrong with who/whatever is handling posted messages?
  9005. -- Sig --  sigurd@strauss.udel.edu
  9006. -- 
  9007. Sigurd Andersen    Internet: sigurd@strauss.udel.edu   User Services
  9008.      __o            or  Sigurd.Andersen@MVS.udel.edu   023 Smith Hall
  9009.    _ \<,_                                              Univ. of Delaware
  9010.   (_)/ (_)         Ph: (302) 831-1992  Fax: 831-4205   Newark, DE. 19716
  9011.  
  9012. From news@columbia.edu Mon Sep 26 21:22:23 1994
  9013. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04596
  9014.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:36:22 -0400
  9015. Received: by apakabar.cc.columbia.edu id AA24393
  9016.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:36:21 -0400
  9017. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  9018. From: steven.patrick.iltis@aecibbs.proxima.alt.za (Steven Patrick Iltis)
  9019. Newsgroups: comp.protocols.kermit.misc
  9020. Message-Id: <-51.335.uupcb@aecibbs.proxima.alt.za>
  9021. Control: cancel <51.335.uupcb@aecibbs.proxima.alt.za>
  9022. Distribution: world
  9023. Organization: AECI BBS  +27 11 608-1516
  9024. Reply-To: steven.patrick.iltis@aecibbs.proxima.alt.za (Steven Patrick Iltis)
  9025. Subject: cmsg cancel <51.335.uupcb@aecibbs.proxima.alt.za>
  9026. Date: Mon, 26 Sep 1994 21:22:23 GMT
  9027. Approved: news@aecibbs.proxima.alt.za
  9028. Lines: 1
  9029. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9030.  
  9031. cancel <51.335.uupcb@aecibbs.proxima.alt.za>
  9032.  
  9033. From news@columbia.edu Mon Sep 26 21:24:31 1994
  9034. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04774
  9035.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:39:36 -0400
  9036. Received: by apakabar.cc.columbia.edu id AA24546
  9037.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:39:34 -0400
  9038. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  9039. From: doug.fraser@aecibbs.proxima.alt.za (Doug Fraser)
  9040. Newsgroups: comp.protocols.kermit.misc
  9041. Message-Id: <-53.335.uupcb@aecibbs.proxima.alt.za>
  9042. Control: cancel <53.335.uupcb@aecibbs.proxima.alt.za>
  9043. Distribution: world
  9044. Organization: AECI BBS  +27 11 608-1516
  9045. Reply-To: doug.fraser@aecibbs.proxima.alt.za (Doug Fraser)
  9046. Subject: cmsg cancel <53.335.uupcb@aecibbs.proxima.alt.za>
  9047. Date: Mon, 26 Sep 1994 21:24:31 GMT
  9048. Approved: news@aecibbs.proxima.alt.za
  9049. Lines: 1
  9050. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9051.  
  9052. cancel <53.335.uupcb@aecibbs.proxima.alt.za>
  9053.  
  9054. From news@columbia.edu Mon Sep 26 21:25:58 1994
  9055. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04892
  9056.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:41:31 -0400
  9057. Received: by apakabar.cc.columbia.edu id AA24648
  9058.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:41:29 -0400
  9059. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  9060. From: andrew.dunstan@aecibbs.proxima.alt.za (Andrew Dunstan)
  9061. Newsgroups: comp.protocols.kermit.misc
  9062. Message-Id: <-28.335.uupcb@aecibbs.proxima.alt.za>
  9063. Control: cancel <28.335.uupcb@aecibbs.proxima.alt.za>
  9064. Distribution: world
  9065. Organization: AECI BBS  +27 11 608-1516
  9066. Reply-To: andrew.dunstan@aecibbs.proxima.alt.za (Andrew Dunstan)
  9067. Subject: cmsg cancel <28.335.uupcb@aecibbs.proxima.alt.za>
  9068. Date: Mon, 26 Sep 1994 21:25:58 GMT
  9069. Approved: news@aecibbs.proxima.alt.za
  9070. Lines: 1
  9071. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9072.  
  9073. cancel <28.335.uupcb@aecibbs.proxima.alt.za>
  9074.  
  9075. From news@columbia.edu Mon Sep 26 21:30:45 1994
  9076. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05139
  9077.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:47:51 -0400
  9078. Received: by apakabar.cc.columbia.edu id AA25171
  9079.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:47:50 -0400
  9080. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  9081. From: keith.petersen@aecibbs.proxima.alt.za (Keith Petersen)
  9082. Newsgroups: comp.protocols.kermit.misc
  9083. Message-Id: <-29.335.uupcb@aecibbs.proxima.alt.za>
  9084. Control: cancel <29.335.uupcb@aecibbs.proxima.alt.za>
  9085. Distribution: world
  9086. Organization: AECI BBS +27 11 608-1516
  9087. Reply-To: keith.petersen@aecibbs.proxima.alt.za (Keith Petersen)
  9088. Subject: cmsg cancel <29.335.uupcb@aecibbs.proxima.alt.za>
  9089. Date: Mon, 26 Sep 1994 21:30:45 GMT
  9090. Approved: news@aecibbs.proxima.alt.za
  9091. Lines: 1
  9092. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9093.  
  9094. cancel <29.335.uupcb@aecibbs.proxima.alt.za>
  9095.  
  9096. From news@columbia.edu Mon Sep 26 21:31:12 1994
  9097. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05163
  9098.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:48:04 -0400
  9099. Received: by apakabar.cc.columbia.edu id AA25183
  9100.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:48:03 -0400
  9101. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  9102. From: john.d.cederman@aecibbs.proxima.alt.za (John D Cederman)
  9103. Newsgroups: comp.protocols.kermit.misc
  9104. Message-Id: <-34.335.uupcb@aecibbs.proxima.alt.za>
  9105. Control: cancel <34.335.uupcb@aecibbs.proxima.alt.za>
  9106. Distribution: world
  9107. Organization: AECI BBS +27 11 608-1516
  9108. Reply-To: john.d.cederman@aecibbs.proxima.alt.za (John D Cederman)
  9109. Subject: cmsg cancel <34.335.uupcb@aecibbs.proxima.alt.za>
  9110. Date: Mon, 26 Sep 1994 21:31:12 GMT
  9111. Approved: news@aecibbs.proxima.alt.za
  9112. Lines: 1
  9113. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9114.  
  9115. cancel <34.335.uupcb@aecibbs.proxima.alt.za>
  9116.  
  9117.                                             @
  9118. @                         _Insert Stupid Quote Here_                          @
  9119. @                                                                             @
  9120. @ Tim Flynn, Larch 1349 Cunningham, Ames, Iowa 50013-0008  ph.(515)-294-9022  @
  9121. @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
  9122.  
  9123. From news@columbia.edu Mon Sep 26 21:31:39 1994
  9124. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05175
  9125.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:48:24 -0400
  9126. Received: by apakabar.cc.columbia.edu id AA25200
  9127.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:48:22 -0400
  9128. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  9129. From: john.d.cederman@aecibbs.proxima.alt.za (John D Cederman)
  9130. Newsgroups: comp.protocols.kermit.misc
  9131. Message-Id: <-46.335.uupcb@aecibbs.proxima.alt.za>
  9132. Control: cancel <46.335.uupcb@aecibbs.proxima.alt.za>
  9133. Distribution: world
  9134. Organization: AECI BBS +27 11 608-1516
  9135. Reply-To: john.d.cederman@aecibbs.proxima.alt.za (John D Cederman)
  9136. Subject: cmsg cancel <46.335.uupcb@aecibbs.proxima.alt.za>
  9137. Date: Mon, 26 Sep 1994 21:31:39 GMT
  9138. Approved: news@aecibbs.proxima.alt.za
  9139. Lines: 1
  9140. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9141.  
  9142. cancel <46.335.uupcb@aecibbs.proxima.alt.za>
  9143.  
  9144. From news@columbia.edu Mon Sep 26 21:32:01 1994
  9145. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05206
  9146.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:48:53 -0400
  9147. Received: by apakabar.cc.columbia.edu id AA25231
  9148.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:48:51 -0400
  9149. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  9150. From: dwight.hugget@aecibbs.proxima.alt.za (Dwight Hugget)
  9151. Newsgroups: comp.protocols.kermit.misc
  9152. Message-Id: <-30.335.uupcb@aecibbs.proxima.alt.za>
  9153. Control: cancel <30.335.uupcb@aecibbs.proxima.alt.za>
  9154. Distribution: world
  9155. Organization: AECI BBS +27 11 608-1516
  9156. Reply-To: dwight.hugget@aecibbs.proxima.alt.za (Dwight Hugget)
  9157. Subject: cmsg cancel <30.335.uupcb@aecibbs.proxima.alt.za>
  9158. Date: Mon, 26 Sep 1994 21:32:01 GMT
  9159. Approved: news@aecibbs.proxima.alt.za
  9160. Lines: 1
  9161. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9162.  
  9163. cancel <30.335.uupcb@aecibbs.proxima.alt.za>
  9164.  
  9165. From news@columbia.edu Mon Sep 26 21:32:25 1994
  9166. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05271
  9167.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:49:43 -0400
  9168. Received: by apakabar.cc.columbia.edu id AA25324
  9169.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:49:41 -0400
  9170. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  9171. From: bill.chinn@aecibbs.proxima.alt.za (Bill Chinn)
  9172. Newsgroups: comp.protocols.kermit.misc
  9173. Message-Id: <-31.335.uupcb@aecibbs.proxima.alt.za>
  9174. Control: cancel <31.335.uupcb@aecibbs.proxima.alt.za>
  9175. Distribution: world
  9176. Organization: AECI BBS +27 11 608-1516
  9177. Reply-To: bill.chinn@aecibbs.proxima.alt.za (Bill Chinn)
  9178. Subject: cmsg cancel <31.335.uupcb@aecibbs.proxima.alt.za>
  9179. Date: Mon, 26 Sep 1994 21:32:25 GMT
  9180. Approved: news@aecibbs.proxima.alt.za
  9181. Lines: 1
  9182. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9183.  
  9184. cancel <31.335.uupcb@aecibbs.proxima.alt.za>
  9185.  
  9186. From news@columbia.edu Mon Sep 26 21:33:04 1994
  9187. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05360
  9188.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:50:37 -0400
  9189. Received: by apakabar.cc.columbia.edu id AA25384
  9190.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:50:36 -0400
  9191. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  9192. From: jianqing.hu@aecibbs.proxima.alt.za (Jianqing Hu)
  9193. Newsgroups: comp.protocols.kermit.misc
  9194. Message-Id: <-32.335.uupcb@aecibbs.proxima.alt.za>
  9195. Control: cancel <32.335.uupcb@aecibbs.proxima.alt.za>
  9196. Distribution: world
  9197. Organization: AECI BBS +27 11 608-1516
  9198. Reply-To: jianqing.hu@aecibbs.proxima.alt.za (Jianqing Hu)
  9199. Subject: cmsg cancel <32.335.uupcb@aecibbs.proxima.alt.za>
  9200. Date: Mon, 26 Sep 1994 21:33:04 GMT
  9201. Approved: news@aecibbs.proxima.alt.za
  9202. Lines: 1
  9203. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9204.  
  9205. cancel <32.335.uupcb@aecibbs.proxima.alt.za>
  9206.  
  9207. From news@columbia.edu Mon Sep 26 21:32:47 1994
  9208. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05316
  9209.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:50:10 -0400
  9210. Received: by apakabar.cc.columbia.edu id AA25368
  9211.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:50:09 -0400
  9212. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  9213. From: jeffrey.altman@aecibbs.proxima.alt.za (Jeffrey Altman)
  9214. Newsgroups: comp.protocols.kermit.misc
  9215. Message-Id: <-38.335.uupcb@aecibbs.proxima.alt.za>
  9216. Control: cancel <38.335.uupcb@aecibbs.proxima.alt.za>
  9217. Distribution: world
  9218. Organization: AECI BBS +27 11 608-1516
  9219. Reply-To: jeffrey.altman@aecibbs.proxima.alt.za (Jeffrey Altman)
  9220. Subject: cmsg cancel <38.335.uupcb@aecibbs.proxima.alt.za>
  9221. Date: Mon, 26 Sep 1994 21:32:47 GMT
  9222. Approved: news@aecibbs.proxima.alt.za
  9223. Lines: 1
  9224. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9225.  
  9226. cancel <38.335.uupcb@aecibbs.proxima.alt.za>
  9227.  
  9228. From news@columbia.edu Mon Sep 26 21:33:25 1994
  9229. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05369
  9230.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:50:47 -0400
  9231. Received: by apakabar.cc.columbia.edu id AA25396
  9232.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:50:46 -0400
  9233. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  9234. From: keith.petersen@aecibbs.proxima.alt.za (Keith Petersen)
  9235. Newsgroups: comp.protocols.kermit.misc
  9236. Message-Id: <-35.335.uupcb@aecibbs.proxima.alt.za>
  9237. Control: cancel <35.335.uupcb@aecibbs.proxima.alt.za>
  9238. Distribution: world
  9239. Organization: AECI BBS +27 11 608-1516
  9240. Reply-To: keith.petersen@aecibbs.proxima.alt.za (Keith Petersen)
  9241. Subject: cmsg cancel <35.335.uupcb@aecibbs.proxima.alt.za>
  9242. Date: Mon, 26 Sep 1994 21:33:25 GMT
  9243. Approved: news@aecibbs.proxima.alt.za
  9244. Lines: 1
  9245. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9246.  
  9247. cancel <35.335.uupcb@aecibbs.proxima.alt.za>
  9248.  
  9249. From news@columbia.edu Mon Sep 26 21:33:40 1994
  9250. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05393
  9251.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:51:02 -0400
  9252. Received: by apakabar.cc.columbia.edu id AA25411
  9253.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:51:01 -0400
  9254. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  9255. From: binh.anson@aecibbs.proxima.alt.za (Binh Anson)
  9256. Newsgroups: comp.protocols.kermit.misc
  9257. Message-Id: <-36.335.uupcb@aecibbs.proxima.alt.za>
  9258. Control: cancel <36.335.uupcb@aecibbs.proxima.alt.za>
  9259. Distribution: world
  9260. Organization: AECI BBS +27 11 608-1516
  9261. Reply-To: binh.anson@aecibbs.proxima.alt.za (Binh Anson)
  9262. Subject: cmsg cancel <36.335.uupcb@aecibbs.proxima.alt.za>
  9263. Date: Mon, 26 Sep 1994 21:33:40 GMT
  9264. Approved: news@aecibbs.proxima.alt.za
  9265. Lines: 1
  9266. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9267.  
  9268. cancel <36.335.uupcb@aecibbs.proxima.alt.za>
  9269.  
  9270. From news@columbia.edu Mon Sep 26 21:33:59 1994
  9271. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05405
  9272.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:51:14 -0400
  9273. Received: by apakabar.cc.columbia.edu id AA25418
  9274.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:51:13 -0400
  9275. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  9276. From: todd.spindler@aecibbs.proxima.alt.za (Todd Spindler)
  9277. Newsgroups: comp.protocols.kermit.misc
  9278. Message-Id: <-47.335.uupcb@aecibbs.proxima.alt.za>
  9279. Control: cancel <47.335.uupcb@aecibbs.proxima.alt.za>
  9280. Distribution: world
  9281. Organization: AECI BBS +27 11 608-1516
  9282. Reply-To: todd.spindler@aecibbs.proxima.alt.za (Todd Spindler)
  9283. Subject: cmsg cancel <47.335.uupcb@aecibbs.proxima.alt.za>
  9284. Date: Mon, 26 Sep 1994 21:33:59 GMT
  9285. Approved: news@aecibbs.proxima.alt.za
  9286. Lines: 1
  9287. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9288.  
  9289. cancel <47.335.uupcb@aecibbs.proxima.alt.za>
  9290.  
  9291. From news@columbia.edu Mon Sep 26 21:34:16 1994
  9292. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05410
  9293.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:51:21 -0400
  9294. Received: by apakabar.cc.columbia.edu id AA25424
  9295.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:51:20 -0400
  9296. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  9297. From: adam.h..lewenberg@aecibbs.proxima.alt.za (Adam H. Lewenberg)
  9298. Newsgroups: comp.protocols.kermit.misc
  9299. Message-Id: <-37.335.uupcb@aecibbs.proxima.alt.za>
  9300. Control: cancel <37.335.uupcb@aecibbs.proxima.alt.za>
  9301. Distribution: world
  9302. Organization: AECI BBS +27 11 608-1516
  9303. Reply-To: adam.h..lewenberg@aecibbs.proxima.alt.za (Adam H. Lewenberg)
  9304. Subject: cmsg cancel <37.335.uupcb@aecibbs.proxima.alt.za>
  9305. Date: Mon, 26 Sep 1994 21:34:16 GMT
  9306. Approved: news@aecibbs.proxima.alt.za
  9307. Lines: 1
  9308. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9309.  
  9310. cancel <37.335.uupcb@aecibbs.proxima.alt.za>
  9311.  
  9312. From news@columbia.edu Mon Sep 26 21:34:36 1994
  9313. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05438
  9314.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:52:00 -0400
  9315. Received: by apakabar.cc.columbia.edu id AA25459
  9316.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:51:59 -0400
  9317. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  9318. From: paul.hounsell@aecibbs.proxima.alt.za (Paul Hounsell)
  9319. Newsgroups: comp.protocols.kermit.misc
  9320. Message-Id: <-39.335.uupcb@aecibbs.proxima.alt.za>
  9321. Control: cancel <39.335.uupcb@aecibbs.proxima.alt.za>
  9322. Distribution: world
  9323. Organization: AECI BBS +27 11 608-1516
  9324. Reply-To: paul.hounsell@aecibbs.proxima.alt.za (Paul Hounsell)
  9325. Subject: cmsg cancel <39.335.uupcb@aecibbs.proxima.alt.za>
  9326. Date: Mon, 26 Sep 1994 21:34:36 GMT
  9327. Approved: news@aecibbs.proxima.alt.za
  9328. Lines: 1
  9329. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9330.  
  9331. cancel <39.335.uupcb@aecibbs.proxima.alt.za>
  9332.  
  9333. From news@columbia.edu Mon Sep 26 21:35:03 1994
  9334. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05456
  9335.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:52:18 -0400
  9336. Received: by apakabar.cc.columbia.edu id AA25477
  9337.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:52:17 -0400
  9338. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  9339. From: paul.hounsell@aecibbs.proxima.alt.za (Paul Hounsell)
  9340. Newsgroups: comp.protocols.kermit.misc
  9341. Message-Id: <-40.335.uupcb@aecibbs.proxima.alt.za>
  9342. Control: cancel <40.335.uupcb@aecibbs.proxima.alt.za>
  9343. Distribution: world
  9344. Organization: AECI BBS +27 11 608-1516
  9345. Reply-To: paul.hounsell@aecibbs.proxima.alt.za (Paul Hounsell)
  9346. Subject: cmsg cancel <40.335.uupcb@aecibbs.proxima.alt.za>
  9347. Date: Mon, 26 Sep 1994 21:35:03 GMT
  9348. Approved: news@aecibbs.proxima.alt.za
  9349. Lines: 1
  9350. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9351.  
  9352. cancel <40.335.uupcb@aecibbs.proxima.alt.za>
  9353.  
  9354. From news@columbia.edu Mon Sep 26 21:35:18 1994
  9355. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05464
  9356.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:52:45 -0400
  9357. Received: by apakabar.cc.columbia.edu id AA25497
  9358.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:52:42 -0400
  9359. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  9360. From: ramin.farzaneh@aecibbs.proxima.alt.za (Ramin Farzaneh)
  9361. Newsgroups: comp.protocols.kermit.misc
  9362. Message-Id: <-43.335.uupcb@aecibbs.proxima.alt.za>
  9363. Control: cancel <43.335.uupcb@aecibbs.proxima.alt.za>
  9364. Distribution: world
  9365. Organization: AECI BBS +27 11 608-1516
  9366. Reply-To: ramin.farzaneh@aecibbs.proxima.alt.za (Ramin Farzaneh)
  9367. Subject: cmsg cancel <43.335.uupcb@aecibbs.proxima.alt.za>
  9368. Date: Mon, 26 Sep 1994 21:35:18 GMT
  9369. Approved: news@aecibbs.proxima.alt.za
  9370. Lines: 1
  9371. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9372.  
  9373. cancel <43.335.uupcb@aecibbs.proxima.alt.za>
  9374.  
  9375. From news@columbia.edu Mon Sep 26 21:35:37 1994
  9376. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05513
  9377.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:53:12 -0400
  9378. Received: by apakabar.cc.columbia.edu id AA25649
  9379.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:53:10 -0400
  9380. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  9381. From: jerry.alexandratos@aecibbs.proxima.alt.za (Jerry Alexandratos)
  9382. Newsgroups: comp.protocols.kermit.misc
  9383. Message-Id: <-45.335.uupcb@aecibbs.proxima.alt.za>
  9384. Control: cancel <45.335.uupcb@aecibbs.proxima.alt.za>
  9385. Distribution: world
  9386. Organization: AECI BBS +27 11 608-1516
  9387. Reply-To: jerry.alexandratos@aecibbs.proxima.alt.za (Jerry Alexandratos)
  9388. Subject: cmsg cancel <45.335.uupcb@aecibbs.proxima.alt.za>
  9389. Date: Mon, 26 Sep 1994 21:35:37 GMT
  9390. Approved: news@aecibbs.proxima.alt.za
  9391. Lines: 1
  9392. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9393.  
  9394. cancel <45.335.uupcb@aecibbs.proxima.alt.za>
  9395.  
  9396. From news@columbia.edu Mon Sep 26 21:35:54 1994
  9397. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05518
  9398.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:53:42 -0400
  9399. Received: by apakabar.cc.columbia.edu id AA25666
  9400.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:53:41 -0400
  9401. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  9402. From: john.jamulla@aecibbs.proxima.alt.za (John Jamulla)
  9403. Newsgroups: comp.protocols.kermit.misc
  9404. Message-Id: <-49.335.uupcb@aecibbs.proxima.alt.za>
  9405. Control: cancel <49.335.uupcb@aecibbs.proxima.alt.za>
  9406. Distribution: world
  9407. Organization: AECI BBS +27 11 608-1516
  9408. Reply-To: john.jamulla@aecibbs.proxima.alt.za (John Jamulla)
  9409. Subject: cmsg cancel <49.335.uupcb@aecibbs.proxima.alt.za>
  9410. Date: Mon, 26 Sep 1994 21:35:54 GMT
  9411. Approved: news@aecibbs.proxima.alt.za
  9412. Lines: 1
  9413. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9414.  
  9415. cancel <49.335.uupcb@aecibbs.proxima.alt.za>
  9416.  
  9417. From news@columbia.edu Mon Sep 26 21:36:10 1994
  9418. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05536
  9419.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:54:02 -0400
  9420. Received: by apakabar.cc.columbia.edu id AA25681
  9421.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:54:01 -0400
  9422. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  9423. From: frank.da.cruz@aecibbs.proxima.alt.za (Frank Da Cruz)
  9424. Newsgroups: comp.protocols.kermit.misc
  9425. Message-Id: <-56.335.uupcb@aecibbs.proxima.alt.za>
  9426. Control: cancel <56.335.uupcb@aecibbs.proxima.alt.za>
  9427. Distribution: world
  9428. Organization: AECI BBS +27 11 608-1516
  9429. Reply-To: frank.da.cruz@aecibbs.proxima.alt.za (Frank Da Cruz)
  9430. Subject: cmsg cancel <56.335.uupcb@aecibbs.proxima.alt.za>
  9431. Date: Mon, 26 Sep 1994 21:36:10 GMT
  9432. Approved: news@aecibbs.proxima.alt.za
  9433. Lines: 1
  9434. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9435.  
  9436. cancel <56.335.uupcb@aecibbs.proxima.alt.za>
  9437.  
  9438. From news@columbia.edu Mon Sep 26 21:36:32 1994
  9439. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05544
  9440.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:54:24 -0400
  9441. Received: by apakabar.cc.columbia.edu id AA25694
  9442.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:54:23 -0400
  9443. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  9444. From: gary.a..foley@aecibbs.proxima.alt.za (Gary A. Foley)
  9445. Newsgroups: comp.protocols.kermit.misc
  9446. Message-Id: <-52.335.uupcb@aecibbs.proxima.alt.za>
  9447. Control: cancel <52.335.uupcb@aecibbs.proxima.alt.za>
  9448. Distribution: world
  9449. Organization: AECI BBS +27 11 608-1516
  9450. Reply-To: gary.a..foley@aecibbs.proxima.alt.za (Gary A. Foley)
  9451. Subject: cmsg cancel <52.335.uupcb@aecibbs.proxima.alt.za>
  9452. Date: Mon, 26 Sep 1994 21:36:32 GMT
  9453. Approved: news@aecibbs.proxima.alt.za
  9454. Lines: 1
  9455. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9456.  
  9457. cancel <52.335.uupcb@aecibbs.proxima.alt.za>
  9458.  
  9459. From news@columbia.edu Mon Sep 26 21:36:51 1994
  9460. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05553
  9461.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:54:45 -0400
  9462. Received: by apakabar.cc.columbia.edu id AA25709
  9463.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:54:44 -0400
  9464. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  9465. From: earl.h..kinmonth@aecibbs.proxima.alt.za (Earl H. Kinmonth)
  9466. Newsgroups: comp.protocols.kermit.misc
  9467. Message-Id: <-54.335.uupcb@aecibbs.proxima.alt.za>
  9468. Control: cancel <54.335.uupcb@aecibbs.proxima.alt.za>
  9469. Distribution: world
  9470. Organization: AECI BBS +27 11 608-1516
  9471. Reply-To: earl.h..kinmonth@aecibbs.proxima.alt.za (Earl H. Kinmonth)
  9472. Subject: cmsg cancel <54.335.uupcb@aecibbs.proxima.alt.za>
  9473. Date: Mon, 26 Sep 1994 21:36:51 GMT
  9474. Approved: news@aecibbs.proxima.alt.za
  9475. Lines: 1
  9476. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9477.  
  9478. cancel <54.335.uupcb@aecibbs.proxima.alt.za>
  9479.  
  9480. From news@columbia.edu Mon Sep 26 21:09:46 1994
  9481. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05646
  9482.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:56:16 -0400
  9483. Received: by apakabar.cc.columbia.edu id AA25811
  9484.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:56:14 -0400
  9485. Newsgroups: comp.protocols.kermit.misc
  9486. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!gatech!psuvax1!hsdndev!cfanews!cfa0!chandler
  9487. From: chandler@cfa0.harvard.edu (John Chandler)
  9488. Subject: Re: When not "set file type binary" always?
  9489. Message-Id: <Cwr9GB.67y@cfanews.harvard.edu>
  9490. Sender: news@cfanews.harvard.edu
  9491. Organization: Smithsonian Astrophysical Observatory, Cambridge, MA, USA
  9492. X-Newsreader: TIN [version 1.2 PL0]
  9493. References: <362e3r$jef@news.CCIT.Arizona.EDU>
  9494. Date: Mon, 26 Sep 1994 21:09:46 GMT
  9495. Lines: 17
  9496. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9497.  
  9498. In article <362e3r$jef@news.CCIT.Arizona.EDU> jjr@mipl.ece.arizona.edu (Jeffrey J. Rodriguez) writes:
  9499.  
  9500. :    Why not always do "set file type binary"?
  9501. :    Is there any reason to use text mode?
  9502. :    Binary mode seems to work fine for all types of files.
  9503. :    (I have the same question regarding ftp.)
  9504. :    Why is there a text mode at all?
  9505.  
  9506. When you settle into one way of doing things, it is easy to forget that other
  9507. ways exist.  Binary file transfers may work fine for all files in one context,
  9508. but the means of representing text vary widely in the computer world.  The
  9509. most obvious demonstration of the need for text mode is the existence of
  9510. many different types of character codes, ranging from 7-bit ASCII to 7-bit
  9511. ISO-646-with-nationals to 8-bit ISO-8859/x to 16-bit ISO-10646, not to
  9512. mention EBCDIC.  Somebody has to do the translation.
  9513. --
  9514. John F. Chandler             chandler@cfa.harvard.edu
  9515.  
  9516. From news@columbia.edu Mon Sep 26 22:59:18 1994
  9517. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06697
  9518.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 20:15:16 -0400
  9519. Received: by apakabar.cc.columbia.edu id AA27154
  9520.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 20:15:14 -0400
  9521. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!europa.eng.gtefsd.com!ulowell!simtel.coast.net!w8sdz
  9522. From: w8sdz@SimTel.Coast.NET (Keith Petersen)
  9523. Newsgroups: comp.protocols.kermit.misc,comp.archives.msdos.d
  9524. Subject: Re: FTP for Current MS-DOS Kermit?
  9525. Message-Id: <9409262259.AA28683@SimTel.Coast.NET>
  9526. Date: Mon, 26 Sep 1994 22:59:18 GMT
  9527. Organization: SimTel, the Coast to Coast Software Repository (tm)
  9528. Followup-To: comp.protocols.kermit.misc
  9529. References: <367c7g$cdg@apakabar.cc.columbia.edu>
  9530. Lines: 49
  9531. Xref: news.columbia.edu comp.protocols.kermit.misc:231 comp.archives.msdos.d:8806
  9532. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9533.  
  9534. fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  9535. >w8sdz@SimTel.Coast.NET (Keith Petersen)  writes:
  9536. >> The official ftp site for Kermit is kermit.columbia.edu, however, the
  9537. >> latest MS-Kermit is also available - along with many support programs
  9538. >> and information files - from SimTel.
  9539. >[...]
  9540. >Thanks Keith, but again, readers are cautioned that the ONLY site on
  9541. >the Internet that they should get Kermit software from is
  9542. >kermit.columbia.edu.  We who write and support Kermit software have
  9543. >no way of knowing what is on the many mirror sites -- the files might
  9544. >(or might not) be out of date, altered, incomplete, etc.
  9545.  
  9546. MS-Kermit, in its latest versions, has been on SimTel for many years.
  9547. This is the first complaint I've seen about SimTel offering it.
  9548.  
  9549. >> CD-ROM copies of the entire MS-DOS collection (including Windows) are
  9550. >> available from Coast to Coast Telecommunications, Inc...
  9551. >>
  9552. >Kermit software should not be on these CD-ROMs.  Once again, it creates
  9553. >two big problems for the Kermit effort: it starves us of the income we
  9554. >need to continue our work, and it creates a big support problem for us
  9555. >since (a) the software on these CD-ROMs might be out of date, changed,
  9556. >and/or incomplete, and (b) it is distributed without the manual.
  9557.  
  9558. SimTel's policy is:
  9559.  
  9560.   Programs submitted to the SimTel collection may appear on CD-ROMs
  9561.   offered by several vendors.  If the program submitted should not
  9562.   be distributed this way, or has restrictions on such distribution,
  9563.   it will not be accepted.
  9564.  
  9565. I am not aware of any Kermit documentation which prohibits or limits
  9566. CD-ROM distribution of the program.  MS-Kermit has been on every SimTel
  9567. CD-ROM since the first one was released several years ago.  If Columbia
  9568. insists on asserting this prohibition it means that MS-Kermit and its
  9569. support files will have to be removed from the SimTel collection.
  9570.  
  9571. In my opinion removing MS-Kermit would be a disservice to your user
  9572. community since the SimTel collection is more widely distributed than
  9573. Columbia's.  It is mirrored in more than 33 countries of the world
  9574. and the CD-ROMs provide a means to make it available in many other
  9575. countries which have no Internet service.
  9576.  
  9577. Keith
  9578. --
  9579. Keith Petersen
  9580. General Manager of SimTel, the Coast to Coast Software Repository (tm)
  9581. Internet: w8sdz@SimTel.Coast.NET    or      w8sdz@Vela.ACS.Oakland.Edu
  9582. Uucp: uunet!umich!vela!w8sdz                     BITNET: w8sdz@OAKLAND
  9583.  
  9584. From news@columbia.edu Mon Sep 26 21:17:42 1994
  9585. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07892
  9586.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 20:35:30 -0400
  9587. Received: by apakabar.cc.columbia.edu id AA28473
  9588.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 20:35:28 -0400
  9589. Newsgroups: comp.protocols.kermit.misc
  9590. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!news.sprintlink.net!uunet!psinntp!isc-newsserver!ultb!sxs1105
  9591. From: sxs1105@ultb.isc.rit.edu (S.X. Srivastav )
  9592. Subject: Re: [HELP] Slow Kermit Transfer ?!
  9593. Message-Id: <1994Sep26.211742.1959@ultb.isc.rit.edu>
  9594. Sender: news@ultb.isc.rit.edu (USENET News System)
  9595. Nntp-Posting-Host: ultb-gw.isc.rit.edu
  9596. Organization: Rochester Institute of Technology
  9597. References: <35jrgsINNdq2@newsman.csu.murdoch.edu.au> <35kfee$4f0@heron.rsmas.miami.edu>
  9598. Date: Mon, 26 Sep 1994 21:17:42 GMT
  9599. Lines: 31
  9600. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9601.  
  9602. In article <35kfee$4f0@heron.rsmas.miami.edu> spindler@heron.rsmas.miami.edu (todd spindler) writes:
  9603. >
  9604. >In article <35jrgsINNdq2@newsman.csu.murdoch.edu.au>, anson@csuvax1.csu.murdoch.edu.au (Binh Anson) writes:
  9605. >>
  9606. >>G'day,
  9607. >>
  9608. >>I used Kermit 3.13 for my PC, my modem has a speed of 14.4 K, but I found 
  9609. >>that the downloading rate from the mainframe to my PC was still very slow! 
  9610. >>I tried Telix with SZ (Z-Modem Protocol), and it was very fast compared to 
  9611. >>Kermit. Is there a way to accelerate Kermit transfer ?
  9612. >
  9613.  
  9614. My experience has been that Kermit offers "most excellent" terminal
  9615. emulation, but file transfer speeds are often quite low.  This is
  9616. despite my attempts to set the large packet lengths, using sliding
  9617. windows, and so on.  Although I have the latest official version of
  9618. Kermit, most of the other places that I dial into often have antique
  9619. versions of Kermit, and so I cannot get them configured as I would like to.
  9620.  
  9621. Although it is often pointed out that Z-modem is not very reliable, I
  9622. personally have not have any major problems with it.   I have used it on
  9623. a variety of systems.
  9624.  
  9625. So, now I use Kermit as my terminal emulation program, and then use
  9626. Z-modem (invoked from within Kermit) to do the file transfer.
  9627.  
  9628. Just my $.02.
  9629.  
  9630. Sanjeev
  9631.  
  9632.  
  9633.  
  9634. From news@columbia.edu Mon Sep 26 11:20:14 1994
  9635. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09903
  9636.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 21:05:19 -0400
  9637. Received: by apakabar.cc.columbia.edu id AA00303
  9638.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 21:05:18 -0400
  9639. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  9640. From: jrd@cc.usu.edu (Joe Doupnik)
  9641. Newsgroups: comp.protocols.kermit.misc
  9642. Subject: Re: kermit packets past 9024 barrier??
  9643. Message-Id: <1994Sep26.172014.27900@cc.usu.edu>
  9644. Date: 26 Sep 94 17:20:14 MDT
  9645. References: <367e23$d01@news.iastate.edu>
  9646. Organization: Utah State University
  9647. Lines: 14
  9648. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9649.  
  9650. In article <367e23$d01@news.iastate.edu>, tflynn@iastate.edu (Timothy John Flynn) writes:
  9651. > Any way to increase packet sizes past 9024??
  9652. > email preffered..
  9653. ---------
  9654.     Read up on Columbia Kermits, discover sliding windows. 31 window
  9655. slots times 9KB per slot/packet = 279KB of stuff to be held pending
  9656. acknowledgment. That's effectively a packet of that length, but really
  9657. the stream is as long as the file (since ACKs come back during sending
  9658. of current material and let new packets be added to the list). Sliding
  9659. windows in Kermit is the clever complicated kind, known as selective
  9660. repeat, where only the bad packets need to be resent.
  9661.     Joe D.
  9662.  
  9663. From news@columbia.edu Mon Sep 26 20:40:09 1994
  9664. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10405
  9665.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 21:16:37 -0400
  9666. Received: by apakabar.cc.columbia.edu id AA01124
  9667.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 21:16:36 -0400
  9668. Newsgroups: comp.protocols.kermit.misc
  9669. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!charnel.ecst.csuchico.edu!csusac!csus.edu!netcom.com!swheeler
  9670. From: swheeler@netcom.com (Sean Wheeler)
  9671. Subject: Problems with Kermit in PCPLUS for Windows
  9672. Message-Id: <swheelerCwr831.B4@netcom.com>
  9673. Organization: NETCOM On-line Communication Services (408 261-4700 guest)
  9674. X-Newsreader: TIN [version 1.2 PL1]
  9675. Date: Mon, 26 Sep 1994 20:40:09 GMT
  9676. Lines: 19
  9677. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9678.  
  9679. I know this is not the procomm support area but I thought I would ask some
  9680. people who have real answers before trying to go to the Datastorm folks.  I
  9681. am using PCPLUS for Windows ver. 2.00 (I had the same problem with 1.01) and 
  9682. when I try to download files from our Unix box all I get is "UART Error"
  9683. messages from Procomm and no file transfer.  This happens in server as well as
  9684. standard send modes.
  9685.  
  9686. When I switch to MS-Kermit 3.13 everything works just fine.  BTW: I am using
  9687. C-Kermit 5A (189) on our Pyramid Unix box and our dial up connections require
  9688. S-7-1 comm params.
  9689.  
  9690. How do I need to configure the Unix end to properly transfer files to the
  9691. Procomm/Windows end?
  9692.  
  9693. --
  9694.  
  9695. Sean D. Wheeler                    
  9696. swheeler@netcom.com
  9697. sean.wheeler@ons.octel.com
  9698.  
  9699. From news@columbia.edu Mon Sep 26 11:11:34 1994
  9700. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10570
  9701.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 21:20:20 -0400
  9702. Received: by apakabar.cc.columbia.edu id AA01312
  9703.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 21:20:18 -0400
  9704. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  9705. From: jrd@cc.usu.edu (Joe Doupnik)
  9706. Newsgroups: comp.protocols.kermit.misc
  9707. Subject: Re: Quoting 255 on Telnet Connections
  9708. Message-Id: <1994Sep26.171134.27898@cc.usu.edu>
  9709. Date: 26 Sep 94 17:11:34 MDT
  9710. References: <36761n$3ia@knot.queensu.ca>
  9711. Distribution: world
  9712. Organization: Utah State University
  9713. Lines: 47
  9714. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9715.  
  9716. In article <36761n$3ia@knot.queensu.ca>, mike@ccs-sparc2post.QueensU.CA (Mike Smith) writes:
  9717. > The ckcker.upd file for 5A(190) Beta Sep 5/94 contains lots of very useful
  9718. > info on control character prefixing.  I have one question.  The document
  9719. > is very explicit about the need to quote 255 if a telnet server is involved
  9720. > in the communications path.  In my case, I have a CISCO telnet server
  9721. > in the path, I told C-Kermit 5A(189) to unquote 255 and it doesn't seem
  9722. > to matter.  The other end is MS-Kermit 3.13 which does not let me explicitly
  9723. > prefix or unprefix 255.  So, the questions are:
  9724. >    1. Is MS-Kermit 3.13 quoting 255 and that's why I don't see a problem?
  9725. >    2. Is it just that my tests don't illustrate the problem?  (I have a test
  9726. >       file that includes singles and doubles of all 256 character codes as
  9727. >       suggested in the .upd file.)  I've done binary uploads and downloads
  9728. >       successfully.
  9729. >    3. What does IAC stand for anyway?
  9730. > I could just quote 255 but I'd first like to understand why.
  9731. > P.S. To Joe D.  I found your comment about shiny toys perfectly acceptable and
  9732. > the suggestion that you should watch your tone ridiculous.  In my opinion
  9733. > you and Frank should be nominated for sainthood.
  9734. ------------
  9735.     Last first. Thanks Mike. I get pretty frazzled sometimes and it
  9736. takes charge of my keyboard and fingers.
  9737.     IAC, 255 quoting and all that jazz. A very good question to ask.
  9738. IAC is TCP/IP Telnet-speak for "Interpret As Command." Next question. Oh,
  9739. back up? Ok. Telnet has Options to negotiate in-line, both ways, and the
  9740. IAC (decimal 255) byte is the introducer of them, sort of like ESC in 
  9741. control sequences for terminals. The rules say if one wants 255 to go
  9742. through as data it must be doubled. But doing that means looking at every
  9743. byte when we really want to shove a big buffer at TCP to get performance.
  9744. So MSK simply declines to unprefix 255 in file transfers and thus avoids
  9745. the buffer scanning/restuffing problem. Also, the 7-bit version of this
  9746. is 127, aka DEL, which is subject to becoming 255 with some parity.
  9747.     To see some Options as they happen tell MSK to SET TCP DEBUG ON.
  9748.  
  9749.     Given the interest in the Internet Infobahn I suggest folks start
  9750. reading up on TCP/IP and related material, if you have a technical bent.
  9751. A visit to the bookstore is recommended, and with this recommendation
  9752. as defense you might be able to buy one of those nifty TCP/IP books(*)
  9753. without the family complaining.
  9754.     (*) One such good technical intro is Comer's three volume set of
  9755. "Internetworking with TCP/IP", and most people will be happy with just
  9756. volume 1. Brave souls may wish to pursue the prime references: the RFCs
  9757. available on the Internet from many sites (look at the dozens on Telnet).
  9758. These are technical details, not how to use books.
  9759.     Joe D.
  9760.  
  9761. From news@columbia.edu Tue Sep 27 02:49:43 1994
  9762. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16172
  9763.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 23:32:53 -0400
  9764. Received: by apakabar.cc.columbia.edu id AA09044
  9765.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 23:32:49 -0400
  9766. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!EU.net!sunic!news.funet.fi!zippo.uwasa.fi!uwasa.fi!ts
  9767. From: ts@uwasa.fi (Timo Salmi)
  9768. Newsgroups: comp.archives.msdos.d,comp.protocols.kermit.misc
  9769. Subject: Re: FTP for Current MS-DOS Kermit?
  9770. Followup-To: comp.protocols.kermit.misc
  9771. Date: 27 Sep 1994 02:49:43 GMT
  9772. Organization: University of Vaasa
  9773. Lines: 24
  9774. Message-Id: <368187$ms3@zippo.uwasa.fi>
  9775. References: <367c7g$cdg@apakabar.cc.columbia.edu> <9409262259.AA28683@SimTel.Coast.NET>
  9776. Nntp-Posting-Host: uwasa.fi
  9777. Xref: news.columbia.edu comp.archives.msdos.d:8808 comp.protocols.kermit.misc:236
  9778. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9779.  
  9780. In article <9409262259.AA28683@SimTel.Coast.NET> w8sdz@SimTel.Coast.NET (Keith Petersen) writes:
  9781. :fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  9782. :>Thanks Keith, but again, readers are cautioned that the ONLY site on
  9783. :>the Internet that they should get Kermit software from is
  9784. :>kermit.columbia.edu.  We who write and support Kermit software have
  9785. :>no way of knowing what is on the many mirror sites -- the files might
  9786. :>(or might not) be out of date, altered, incomplete, etc.
  9787.  
  9788. Sorry to have to be blunt, Frank, but that is not a very nice thing
  9789. to say after all the work Keith and I have put over the years to
  9790. improve also the way MsKermit is distributed.  For example are you
  9791. aware that the more user-friendly format of MsKermit distribution
  9792. packages was instigated at the repeated requests of yours truly. 
  9793. Likewise, what you write includes an implied (even if I am sure
  9794. accidental) allegation about the integrity of SimTel and Garbo as
  9795. distributors. 
  9796.  
  9797.    All the best, Timo
  9798.  
  9799. ..................................................................
  9800. Prof. Timo Salmi      Co-moderator of comp.archives.msdos.announce
  9801. Moderating at garbo.uwasa.fi anonymous FTP  archives  128.214.87.1
  9802. Faculty of Accounting & Industrial Management; University of Vaasa
  9803. Internet: ts@uwasa.fi   BBS +(358)-61-3170972; FIN-65101,  Finland
  9804.  
  9805. From news@columbia.edu Tue Sep 27 06:46:51 1994
  9806. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26462
  9807.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 02:56:55 -0400
  9808. Received: by apakabar.cc.columbia.edu id AA16302
  9809.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 02:56:54 -0400
  9810. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!europa.eng.gtefsd.com!ulowell!simtel.coast.net!msdos-ann-request
  9811. From: w8sdz@SimTel.Coast.NET (Keith Petersen)
  9812. Newsgroups: comp.archives.msdos.announce,comp.protocols.kermit.misc
  9813. Subject: Columbia University MS-Kermit files removed from SimTel
  9814. Message-Id: <9409270646.kp1130@SimTel.Coast.NET>
  9815. Date: Tue, 27 Sep 1994 06:46:51 GMT
  9816. Followup-To: comp.protocols.kermit.misc
  9817. Sender: msdos-ann-request@simtel.coast.net
  9818. Organization: SimTel, the Coast to Coast Software Repository (tm)
  9819. Approved: w8sdz@SimTel.Coast.NET
  9820. Lines: 34
  9821. Xref: news.columbia.edu comp.archives.msdos.announce:6834 comp.protocols.kermit.misc:237
  9822. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9823.  
  9824. According to e-mail I received this evening it appears that Columbia
  9825. University now feels that SimTel should no longer distribute MS-Kermit.
  9826.  
  9827. SimTel's policy is:
  9828.  
  9829.   Programs submitted to the SimTel collection may appear on CD-ROMs
  9830.   offered by several vendors.  If the program submitted should not
  9831.   be distributed this way, or has restrictions on such distribution,
  9832.   it will not be accepted.
  9833.  
  9834. Quoting the copyright included with MS-Kermit:
  9835.  
  9836.   Copyright (C) 1985, 1993, Trustees of Columbia University in the City
  9837.   of New York.  The MS-DOS Kermit software may be reproduced and shared
  9838.   without restriction as long as this copyright notice is retained,
  9839.   except that it may not be licensed or sold for profit as a software
  9840.   product itself, and it may not be included in or distributed with
  9841.   commercial products or otherwise distributed by commercial concerns to
  9842.   their clients or customers without written permission of the Office of
  9843.   Kermit Development and Distribution, Columbia University.
  9844.  
  9845. Because of this restrictive distribution policy all MS-Kermit programs
  9846. and other associated files bearing the Columbia University copyright have
  9847. been removed from SimTel, the Coast to Coast Software Repository (tm).
  9848.  
  9849. Questions and comments should be sent to Columbia, *not* to SimTel.
  9850. The e-mail address is:  fdc@watsun.cc.columbia.edu (Frank da Cruz)
  9851.  
  9852. Keith
  9853. --
  9854. Keith Petersen
  9855. General Manager of SimTel, the Coast to Coast Software Repository (tm)
  9856. Internet: w8sdz@SimTel.Coast.NET    or      w8sdz@Vela.ACS.Oakland.Edu
  9857. Uucp: uunet!umich!vela!w8sdz                     BITNET: w8sdz@OAKLAND
  9858.  
  9859. From news@columbia.edu Mon Sep 26 14:48:12 1994
  9860. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10461
  9861.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 07:12:38 -0400
  9862. Received: by apakabar.cc.columbia.edu id AA21294
  9863.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 07:12:35 -0400
  9864. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!swiss.ans.net!news.dfn.de!Germany.EU.net!EU.net!uunet!psinntp!newton.hartwick.edu!wisanr
  9865. From: wisanr@hartwick.edu (Dick Wisan)
  9866. Newsgroups: comp.protocols.kermit.misc
  9867. Subject: Can I call prtscn from a macro?
  9868. Message-Id: <1994Sep26.094812.1062@newton.hartwick.edu>
  9869. Date: 26 Sep 94 09:48:12 -0500
  9870. Organization: HARTWICK COLLEGE
  9871. Lines: 22
  9872. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9873.  
  9874. I would like to turn printer logging on and off from macros.  You can
  9875. redirect the printer output to a file with SET PRINTER, and you can 
  9876. turn the printer on and off with the keystroke verb \Kprtscn, but I
  9877. can't find a way to do it from a macro, so I could turn it on from,
  9878. say, mscustom.ini.
  9879.  
  9880. Keystroke verbs don't seem to work in a macro: 
  9881.  
  9882.    define foo \Kprtscn
  9883.  
  9884. and neither does a key number:
  9885.  
  9886.    define foo \2329
  9887.  
  9888. Is there, perhaps, a way to press a or call a keystroke verb from
  9889. a macro?  I have Gianone's "Using MS-DOS-Kermit", 2nd ed.  If I've 
  9890. missed something, a page reference will do.
  9891.  
  9892. ------------------------------------------------------------------------
  9893. R. N. (Dick) Wisan  - Email: internet WISANR@hartwick.edu
  9894.                     - Snail: 37 Clinton Street, Oneonta NY 13820, U.S.A.
  9895.                     - Just your opinion, please, ma'am: No fax.
  9896.  
  9897. From news@columbia.edu Tue Sep 27 11:10:08 1994
  9898. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21952
  9899.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 07:25:25 -0400
  9900. Received: by apakabar.cc.columbia.edu id AA21656
  9901.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 07:25:23 -0400
  9902. Newsgroups: comp.protocols.kermit.misc
  9903. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!eff!usenet.ins.cwru.edu!news.csuohio.edu!trans!cowboy
  9904. From: cowboy@trans.csuohio.edu (Joe Rosenfeld)
  9905. Subject: Re: Kermit And FTP
  9906. Message-Id: <1994Sep27.111008.5402@news.csuohio.edu>
  9907. Sender: news@news.csuohio.edu (USENET News System)
  9908. Organization: Cleveland State University
  9909. X-Newsreader: TIN [version 1.2 PL2]
  9910. References: <35abck$6gc@louie.udel.edu> <35d5gi$6lm@chopin.udel.edu> <35kks2$r5u@strauss.udel.edu> <35poo3$pho@apakabar.cc.columbia.edu>
  9911. Date: Tue, 27 Sep 1994 11:10:08 GMT
  9912. Lines: 16
  9913. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9914.  
  9915. Maxwell E Evarts (evarts@watsun.cc.columbia.edu) wrote:
  9916. : >Ah, but by using tnglass, I am limited to one connection.  If I use
  9917. : >Kermit in raw TCPIP mode, I can get multiple connections, and better
  9918. : >throughput.  Plus, if I shell to dos, I have more room to work with.
  9919. : >The only thing I'm looking for is a way to get better file transer
  9920. : >performance by using ftp instead, without having to give up any of the
  9921. : >goodies that I prefer to use kermit for.
  9922.  
  9923. : Unfortunately, the ETHDRV driver that PC/TCP loads owns the board, as it
  9924. : sounds like you already understand.  Here's a clip from the the
  9925. : MS-Kermit "beware" file that explains indicates PKTMUX as a possible
  9926. : solution for the brave (or foolhardy :-) :
  9927.  
  9928. This works for me, using pktmux.  It is worth the try.
  9929.  
  9930. Cowboy
  9931.  
  9932. From news@columbia.edu Tue Sep 27 13:37:43 1994
  9933. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09629
  9934.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 09:37:54 -0400
  9935. Received: by apakabar.cc.columbia.edu id AA27135
  9936.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 09:37:52 -0400
  9937. Path: news.columbia.edu!usenet
  9938. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  9939. Newsgroups: comp.protocols.kermit.misc
  9940. Subject: Re: FTP for Current MS-DOS Kermit?
  9941. Date: 27 Sep 1994 13:37:43 GMT
  9942. Organization: Columbia University
  9943. Lines: 112
  9944. Distribution: World
  9945. Message-Id: <369777$qfs@apakabar.cc.columbia.edu>
  9946. References: <368187$ms3@zippo.uwasa.fi>
  9947. Nntp-Posting-Host: fdc.cc.columbia.edu
  9948. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9949.  
  9950. In article <368187$ms3@zippo.uwasa.fi> ts@uwasa.fi (Timo Salmi) writes:
  9951. > In article <9409262259.AA28683@SimTel.Coast.NET> w8sdz@SimTel.Coast.NET
  9952. > (Keith Petersen) writes:
  9953. > :fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  9954. > :>Thanks Keith, but again, readers are cautioned that the ONLY site on
  9955. > :>the Internet that they should get Kermit software from is
  9956. > :>kermit.columbia.edu.  We who write and support Kermit software have
  9957. > :>no way of knowing what is on the many mirror sites -- the files might
  9958. > :>(or might not) be out of date, altered, incomplete, etc.
  9959. > Sorry to have to be blunt, Frank, but that is not a very nice thing
  9960. > to say after all the work Keith and I have put over the years to
  9961. > improve also the way MsKermit is distributed.  For example are you
  9962. > aware that the more user-friendly format of MsKermit distribution
  9963. > packages was instigated at the repeated requests of yours truly. 
  9964. > Likewise, what you write includes an implied (even if I am sure
  9965. > accidental) allegation about the integrity of SimTel and Garbo as
  9966. > distributors. 
  9967. Sorry, no slur intended.
  9968.  
  9969. Listen folks, this is a sensitive topic, and I'll try to explain our
  9970. position as clearly as possible.
  9971.  
  9972. The Kermit effort continues because it is centrally coordinated.  In the
  9973. development and maintenance of any protocol -- Kermit, XYZmodem, TCP/IP,
  9974. ISO OSI, you name it, standards must be set and to some degree enforced,
  9975. and therefore there must be a centralized keeper and setter of standards.
  9976. Otherwise, incompatible versions of Kermit would sprout up and they would
  9977. not be able to interoperate -- similar to the situation with the many
  9978. variants of Xmodem in the late 70s and early 80s.
  9979.  
  9980. Now the Kermit file transfer protocol, no matter how well defined, would
  9981. be of little use if it were not implemented in software programs.  And the
  9982. software programs would be of little use if they did not also offer all
  9983. the other features that one expects to find in communication software:
  9984. terminal emulation, script programming, etc.
  9985.  
  9986. Who writes these programs?  Who ensures that the software has implemented
  9987. the Kermit protocol correctly?  Who writes the documentation?  Who
  9988. provides technical support?  Real people.  And it's a lot of work.  At
  9989. Columbia University, we have a small staff devoted to these jobs.  Who
  9990. pays their salaries?  Who pays for the equipment, service contracts, etc?
  9991.  
  9992. Answer: every last penny comes from whatever income we can generate
  9993. through mail-order software distribution fees and book sales, plus the
  9994. occasional donation.  There aren't any deep-pockets foundations paying us
  9995. to write, document, and support software for you.  It's not shareware with
  9996. nag screens hounding you send money.  It's not shrink-wrapped commercial
  9997. software you have to buy in a store.  We try to support ourselves in the
  9998. way that is least painful for our user community.  But like it or not, we
  9999. do have to support ourselves.
  10000.  
  10001. The current controversy -- and this is not the only instance of it -- is
  10002. whether companies that make and sell -- or even give away -- CD-ROMs
  10003. should be allowed to include Kermit software on them.  Clearly there are
  10004. good and bad aspects to this.  On the good side, consumers get vast
  10005. amounts of software dirt cheap, which, in a short-sighted way, is good for
  10006. them.  On the bad side, the makers of these CD-ROMs, can sell them for
  10007. less than we charge for doing the same thing, e.g. sending Kermit software
  10008. out on diskette, tape, or cartridge.  Why?  Because we not only distribute
  10009. the software, we also write it, document it, and support it, day after
  10010. day, year after year.
  10011.  
  10012. When Kermit software is distributed on CD-ROMs, it takes away income from
  10013. us and at the same time adds to our workload.  People who receive Kermit
  10014. software in this way do not also receive the appropriate manuals, and so
  10015. they call us up or send email or letters asking us to explain to them how
  10016. to use the software.  We get hundreds of such support calls every day and
  10017. an ever-increasing rate.  Less money for more work.
  10018.  
  10019. Do you see where this trend leads when left unchecked?  The developers
  10020. have no time to develop, the tech support people are expected to "read the
  10021. manual" to users from sunup to sundown, progress grinds to a halt, and
  10022. finally everybody loses their job because there is no more income and the
  10023. Kermit effort dissolves.
  10024.  
  10025. So, once again, No: you can't put Kermit software on your CD-ROMs without
  10026. our written permission.  Much of the software that is on these CD-ROMs is
  10027. either written by students, who then go on to a real job since they have
  10028. to eat, or written by grant-sponsored efforts at universities.  Well, we
  10029. are not sponsored, but we are in this for the long haul.  We would like to
  10030. keep supplying you with Kermit software in the long term, and keep it up
  10031. to date with the rapidly changing requirements of new technologies.  That
  10032. requires full-time, responsible people.
  10033.  
  10034. What about FTP sites?  Nobody is saying you can't put Kermit software out
  10035. for FTP.  But -- and this applies to CD-ROMs too -- we can't police
  10036. thousands of FTP sites to ensure that their Kermit software is (a) up to
  10037. date, (b) complete, (c) unaltered, and (d) consistent.  We spend a huge
  10038. amount of time helping people whose problems are caused precisely because
  10039. they retrieved Kermit software from someplace else and the files were out
  10040. of date, incomplete, etc.
  10041.  
  10042. I'm absolutely not running down Keith, Timo, nor the many others who
  10043. collect software and put it on CD-ROMs (or FTP sites) as a public service.
  10044. Nor even the entrepeneurs who see this as a way of making a quick buck.
  10045. But think about it -- if you like this software and you want it to keep up
  10046. with the times, you have to do something to help support the people who
  10047. work long hard hours to bring it to you.
  10048.  
  10049. Bottom line: It's our software, it bears our copyright, we did all the
  10050. work, and we get to set the terms for its distribution.  The terms are
  10051. reasonable given the world and times in which we live.  There is no point
  10052. cluttering up the newsgroups (again) with a longwinded and acrimonious
  10053. debate on the topic.  We provide you with good software, good tech
  10054. support, good documentation, and most of you don't pay a penny for it.
  10055. If we made more money, we'd provide even better service: faster development,
  10056. more tech support people.  We're doing our best to strike a reasonable
  10057. balance.
  10058.  
  10059. - Frank
  10060.  
  10061. From news@columbia.edu Tue Sep 27 13:14:13 1994
  10062. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11203
  10063.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 10:06:04 -0400
  10064. Received: by apakabar.cc.columbia.edu id AA28881
  10065.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 10:06:02 -0400
  10066. Newsgroups: comp.protocols.kermit.misc
  10067. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!charnel.ecst.csuchico.edu!csusac!csus.edu!netcom.com!jhurwit
  10068. From: jhurwit@netcom.com (Jeffrey Hurwit)
  10069. Subject: Re: [HELP] Slow Kermit Transfer ?!
  10070. Message-Id: <jhurwitCwsI3p.3EG@netcom.com>
  10071. Organization: Organization?  What organization?
  10072. X-Newsreader: TIN [version 1.2 PL1]
  10073. References: <35jrgsINNdq2@newsman.csu.murdoch.edu.au> <35kfee$4f0@heron.rsmas.miami.edu> <1994Sep26.211742.1959@ultb.isc.rit.edu>
  10074. Date: Tue, 27 Sep 1994 13:14:13 GMT
  10075. Lines: 26
  10076. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  10077.  
  10078. In article <1994Sep26.211742.1959@ultb.isc.rit.edu>, 
  10079. S.X. Srivastav (sxs1105@ultb.isc.rit.edu) wrote:
  10080.  
  10081. >My experience has been that Kermit offers "most excellent" terminal
  10082. >emulation, but file transfer speeds are often quite low.  This is
  10083. >despite my attempts to set the large packet lengths, using sliding
  10084. >windows, and so on.  Although I have the latest official version of
  10085. >Kermit, most of the other places that I dial into often have antique
  10086. >versions of Kermit, and so I cannot get them configured as I would like to.
  10087.  
  10088.     That brings up a good point:  The right software for each
  10089.     situation.  If you have a mainframe or Unix shell account, chances
  10090.     are you have some version of C-Kermit or IBM mainframe Kermit which
  10091.     you can tune to your needs.  I don't use BBS's very much, but the
  10092.     few I've dialed into have Kermit implemented as a choice in their
  10093.     menu system, where it's inaccessible to the user for configuration. 
  10094.     If you're lucky, "super-Kermit" or some such will be a choice, in
  10095.     which case you'll get sliding windows (but still the standard
  10096.     packet size of 92).  In that case, z-modem might be a better choice
  10097.     simply because of how it's set up.  On the other hand, more and
  10098.     more BBS's are connecting up to the Internet.  Many of these will
  10099.     accept telnet sessions, but don't have ftp.  Kermit can be used to
  10100.     telnet to these and then transfer files through the telnet
  10101.     connection.
  10102.  
  10103.                         Jeff
  10104.  
  10105. From news@columbia.edu Tue Sep 27 13:38:59 1994
  10106. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13744
  10107.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 10:41:14 -0400
  10108. Received: by apakabar.cc.columbia.edu id AA01342
  10109.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 10:41:13 -0400
  10110. Newsgroups: comp.protocols.kermit.misc
  10111. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!charnel.ecst.csuchico.edu!csusac!csus.edu!netcom.com!jhurwit
  10112. From: jhurwit@netcom.com (Jeffrey Hurwit)
  10113. Subject: Re: converting kermit downloads to ascii or WordPerf.
  10114. Message-Id: <jhurwitCwsJ8z.4Ax@netcom.com>
  10115. Organization: Organization?  What organization?
  10116. X-Newsreader: TIN [version 1.2 PL1]
  10117. References: <21SEP199412144358@pavo.concordia.ca>
  10118. Date: Tue, 27 Sep 1994 13:38:59 GMT
  10119. Lines: 26
  10120. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  10121.  
  10122. In article <21SEP199412144358@pavo.concordia.ca>, 
  10123. YATES, JODYE (j_yates@pavo.concordia.ca) wrote:
  10124.  
  10125. >Hi there. I use Kermit to download text files from somewhere. The problem is
  10126. >that when I load the files with a simple text editor there are hard returns
  10127. >inserted at the end of each line. Moreover, WordPerfect 6 doesn't even
  10128. >recognize the file format when I try to convert these files and when I
  10129. >load them straight into WP, there are hard returns all over the place, so
  10130. >the text looks awful. My question therefore is how do I convert kermit
  10131. >downloads (I think they are 7-bit) to either standard ascii or to WP?
  10132.  
  10133.     As the previous follow-ups show, there's some confusion about your
  10134.     question.  If the 'text files from somewhere' are in WordPerfect
  10135.     format, use binary modes for all your file transfers.  In the event
  10136.     that they are plain ascii (more likely), use ftp in ascii mode
  10137.     (default), and Kermit in text mode (also default).  WordPerfect can
  10138.     import ascii and convert it to WP format.  I, too, am not familiar
  10139.     with WP 6.0, but the functions you want (from WP 5.1) are text
  10140.     in/out, DOS text, and then you should have a choice: Preserve the
  10141.     carriage returns and turn them into WP hard returns, or turn the
  10142.     CR's into soft returns if they approach the right margin and format
  10143.     the text for the margins set.
  10144.  
  10145.     Hope that helps.
  10146.  
  10147.                         Jeff
  10148.  
  10149. From news@columbia.edu Tue Sep 27 14:12:55 1994
  10150. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17605
  10151.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 11:30:46 -0400
  10152. Received: by apakabar.cc.columbia.edu id AA04908
  10153.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 11:30:43 -0400
  10154. Newsgroups: comp.protocols.kermit.misc
  10155. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!charnel.ecst.csuchico.edu!csusac!csus.edu!netcom.com!jhurwit
  10156. From: jhurwit@netcom.com (Jeffrey Hurwit)
  10157. Subject: Re: [?] MS-Kermit 3.13 and SLIP8250 11.7
  10158. Message-Id: <jhurwitCwsKtJ.5ut@netcom.com>
  10159. Organization: Organization?  What organization?
  10160. X-Newsreader: TIN [version 1.2 PL1]
  10161. References: <35qjl6$1ua@herald.indirect.com>
  10162. Date: Tue, 27 Sep 1994 14:12:55 GMT
  10163. Lines: 21
  10164. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  10165.  
  10166. In article <35qjl6$1ua@herald.indirect.com>, 
  10167. Jim Monty (monty@indirect.com) wrote:
  10168.  
  10169. >Someone asked this question recently in comp.protocols.tcp-ip.ibmpc, but 
  10170. >it was never answered:  Why doesn't version 11.7 of the Crynwyr SLIP 
  10171. >packet driver SLIP8250 work with MS-Kermit 3.13?
  10172.  
  10173.     [....]
  10174.  
  10175. >What's different about the newer 
  10176. >version of the packet driver?  I'd like to be able to use it instead of 
  10177. >the older version because its -u option allows me to unload it from 
  10178. >memory when I'm through with it; version 9.6 lacks this capability.
  10179.  
  10180.     One possible solution is that, assuming this driver works like your
  10181.     standard TSR, you could use v.9.6, and a TSR utility to remove it. 
  10182.     Have a look at oak.oakland.edu:/SimTel/msdos/tsrutil (directory). 
  10183.     Sam Ko, author of the list of Useful Shareware and PD Software at
  10184.     ftp sites recommends tsrcom35.zip.
  10185.  
  10186.                         Jeff
  10187.  
  10188. From news@columbia.edu Tue Sep 27 15:25:27 1994
  10189. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19020
  10190.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 11:46:08 -0400
  10191. Received: by apakabar.cc.columbia.edu id AA05731
  10192.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 11:46:06 -0400
  10193. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!library.ucla.edu!news.mic.ucla.edu!unixg.ubc.ca!quartz.ucs.ualberta.ca!gpu!bpolvi
  10194. From: bpolvi@gpu.srv.ualberta.ca (Bernice Polvi)
  10195. Newsgroups: comp.protocols.kermit.misc
  10196. Subject: WFWG/Kermit BIOS errors?
  10197. Date: 27 Sep 1994 15:25:27 GMT
  10198. Organization: University of Alberta
  10199. Lines: 16
  10200. Message-Id: <369dh7$cup@quartz.ucs.ualberta.ca>
  10201. Nntp-Posting-Host: gpu.srv.ualberta.ca
  10202. X-Newsreader: TIN [version 1.2 PL2]
  10203. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  10204.  
  10205. FRUSTRATED by the following problem, Any ideas would be appreciated.
  10206.  
  10207. When using KERMIT from within WFWG's, many of our users get the following 
  10208. error message when attempting to establish a MF serial connection or initiate
  10209. a file transfer:
  10210.  
  10211. ?WARNING: UNKNOWN HARDWARE for Port. 
  10212.           Using the BIOS as BIOS2 unimplemented speed.
  10213.  
  10214. The windows session must then be terminated and started again. 
  10215.  
  10216. If your certain you have a solution please post for all to read, if
  10217. your uncertain please Email me, I'd welcome any ideas.
  10218.  
  10219. Thanks inadvance!
  10220.  
  10221.  
  10222. From news@columbia.edu Tue Sep 27 14:24:03 1994
  10223. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23898
  10224.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 12:49:31 -0400
  10225. Received: by apakabar.cc.columbia.edu id AA11752
  10226.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 12:49:28 -0400
  10227. Path: news.columbia.edu!panix!MathWorks.Com!news.kei.com!ddsw1!not-for-mail
  10228. From: les@MCS.COM (Leslie Mikesell)
  10229. Newsgroups: comp.protocols.kermit.misc
  10230. Subject: Re: Columbia University MS-Kermit files removed from SimTel
  10231. Date: 27 Sep 1994 09:24:03 -0500
  10232. Organization: /usr/lib/news/organi[sz]ation
  10233. Lines: 10
  10234. Message-Id: <3699u3$fe9@Venus.mcs.com>
  10235. References: <9409270646.kp1130@simtel.coast.net>
  10236. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  10237.  
  10238. In article <9409270646.kp1130@simtel.coast.net>,
  10239. Keith Petersen <w8sdz@SimTel.Coast.NET> wrote:
  10240. >According to e-mail I received this evening it appears that Columbia
  10241. >University now feels that SimTel should no longer distribute MS-Kermit.
  10242.  
  10243. Does this mean that it is time for someone else to start work on
  10244. a file transfer program that *can* be distributed freely?
  10245.  
  10246. Les Mikesell
  10247.   les@mcs.com
  10248.  
  10249. From news@columbia.edu Tue Sep 27 15:45:27 1994
  10250. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23967
  10251.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 12:50:32 -0400
  10252. Received: by apakabar.cc.columbia.edu id AA11834
  10253.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 12:50:31 -0400
  10254. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!vtc.tacom.army.mil!news1.oakland.edu!news.nd.edu!purcell!yfaitaki
  10255. From: yannis@columbia.edu (yannis)
  10256. Newsgroups: comp.protocols.kermit.misc
  10257. Subject: winsock.dll
  10258. Date: 27 Sep 1994 15:45:27 GMT
  10259. Organization: University of Notre Dame
  10260. Lines: 26
  10261. Distribution: world
  10262. Message-Id: <369emn$3gd@news.nd.edu>
  10263. Reply-To: yfaitaki@purcell.helios.nd.edu
  10264. Nntp-Posting-Host: purcell.helios.nd.edu
  10265. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  10266.  
  10267. Hi,
  10268. I know this is not the best group to post this question,
  10269. but you guys out there seem to know a lot about modems and
  10270. protocols anyway ;-)
  10271.   I recently got winsock.dll from a friend and I have no
  10272. idea what to do with it...
  10273. any references on the subject?
  10274.  
  10275.  
  10276. Thanks in advance and sorry about this "improper" posting!
  10277.  
  10278. Yannis
  10279.  
  10280.  
  10281.  
  10282. e-mail:yfaitaki@elgreco.helios.nd.edu
  10283.  
  10284. ---
  10285. -------------------------------------
  10286. Birth of terror
  10287. death of much more
  10288. I'm the slave of fear, my captor
  10289. Never warnings ...
  10290.  
  10291. Metallica - The frayed ends of sanity
  10292.  
  10293.  
  10294. From news@columbia.edu Tue Sep 27 17:35:44 1994
  10295. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28444
  10296.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 13:54:29 -0400
  10297. Received: by apakabar.cc.columbia.edu id AA28684
  10298.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 13:54:26 -0400
  10299. Path: news.columbia.edu!usenet
  10300. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  10301. Newsgroups: comp.protocols.kermit.misc
  10302. Subject: Re: Columbia University MS-Kermit files removed from SimTel
  10303. Date: 27 Sep 1994 17:35:44 GMT
  10304. Organization: Columbia University
  10305. Lines: 19
  10306. Distribution: World
  10307. Message-Id: <369l5g$jt7@apakabar.cc.columbia.edu>
  10308. References: <3699u3$fe9@Venus.mcs.com>
  10309. Nntp-Posting-Host: fdc.cc.columbia.edu
  10310. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  10311.  
  10312. In article <3699u3$fe9@Venus.mcs.com> les@MCS.COM (Leslie Mikesell) writes:
  10313. > In article <9409270646.kp1130@simtel.coast.net>,
  10314. > Keith Petersen <w8sdz@SimTel.Coast.NET> wrote:
  10315. > >According to e-mail I received this evening it appears that Columbia
  10316. > >University now feels that SimTel should no longer distribute MS-Kermit.
  10317. > Does this mean that it is time for someone else to start work on
  10318. > a file transfer program that *can* be distributed freely?
  10319. Before this new newsgroup bursts into flames, why not let the parties
  10320. involved work things out amongst themselves.
  10321.  
  10322. Develop a new file transfer program that can be distributed freely?
  10323. Be my guest.  If it becomes as successful as Kermit is, you will soon
  10324. find yourself facing the same costs as we do and the need to either
  10325. meet them or go out of "business".
  10326.  
  10327. - Frank
  10328.  
  10329.  
  10330. From news@columbia.edu Tue Sep 27 17:53:53 1994
  10331. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28451
  10332.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 13:54:36 -0400
  10333. Received: by apakabar.cc.columbia.edu id AA28692
  10334.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 13:54:31 -0400
  10335. Path: news.columbia.edu!usenet
  10336. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  10337. Newsgroups: comp.protocols.kermit.misc
  10338. Subject: Re: WFWG/Kermit BIOS errors?
  10339. Date: 27 Sep 1994 17:53:53 GMT
  10340. Organization: Columbia University
  10341. Lines: 14
  10342. Distribution: World
  10343. Message-Id: <369m7h$rt7@apakabar.cc.columbia.edu>
  10344. References: <369dh7$cup@quartz.ucs.ualberta.ca>
  10345. Nntp-Posting-Host: fdc.cc.columbia.edu
  10346. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  10347.  
  10348. In article <369dh7$cup@quartz.ucs.ualberta.ca> bpolvi@gpu.srv.ualberta.ca  
  10349. (Bernice Polvi) writes:
  10350. > FRUSTRATED by the following problem, Any ideas would be appreciated.
  10351. > When using KERMIT from within WFWG's, many of our users get the following 
  10352. > error message when attempting to establish a MF serial connection ...
  10353. >
  10354. Our accumulated knowledge about Windows for Workgroups 3.11 versus
  10355. MS-DOS Kermit was posted previously, and is also available via anonymous
  10356. ftp from kermit.columbia.edu, directory kermit/a, file mskwfw.doc.
  10357.  
  10358. - Frank
  10359. x
  10360. x
  10361. x
  10362.  
  10363. From news@columbia.edu Tue Sep 27 11:55:12 1994
  10364. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00529
  10365.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 14:20:43 -0400
  10366. Received: by apakabar.cc.columbia.edu id AA01343
  10367.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 14:20:41 -0400
  10368. Newsgroups: comp.protocols.kermit.misc
  10369. Path: news.columbia.edu!panix!MathWorks.Com!solaris.cc.vt.edu!swiss.ans.net!europa.eng.gtefsd.com!library.ucla.edu!csulb.edu!csus.edu!netcom.com!jhurwit
  10370. From: jhurwit@netcom.com (Jeffrey Hurwit)
  10371. Subject: Re: Dumb question...
  10372. Message-Id: <jhurwitCwsEG1.wu@netcom.com>
  10373. Organization: Organization?  What organization?
  10374. X-Newsreader: TIN [version 1.2 PL1]
  10375. References: <35k8j5$mph@dsm6.dsmnet.com> <35ktea$8cn@apakabar.cc.columbia.edu>
  10376. Distribution: World
  10377. Date: Tue, 27 Sep 1994 11:55:12 GMT
  10378. Lines: 23
  10379. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  10380.  
  10381. In article <35ktea$8cn@apakabar.cc.columbia.edu>, 
  10382. Frank da Cruz (fdc@fdc.cc.columbia.edu) wrote:
  10383.  
  10384. >In article <35k8j5$mph@dsm6.dsmnet.com> rich@dsm1.dsmnet.com writes:
  10385. >> In article <35ghag$274@telerama.lm.com>, huzacec@telerama.lm.com writes:
  10386. >> > Can someone please tell me where I can FTP C-Kermit for DOS?
  10387. >>
  10388. >> Try Anonymous FTP from kermit.columbia.edu and read the file read.me
  10389. >> (P. 9 of "Using Ckermit" by Frank da Cruz and Christine M. Gianone)
  10390. >> 
  10391. >Actually, this might have been a trick question: There is no C-Kermit
  10392. >for DOS.
  10393.  
  10394.     Y'know what?  There ought to be...  I've been using C-Kermit on my
  10395.     Unix account for a while, now.  Though I don't use most of its
  10396.     features (I use it as a remote only), I've noticed in glancing
  10397.     through the docs that it has a more powerful script language, and
  10398.     some other features that MS-Kermit lacks.  I could use those
  10399.     features (especially the script language) on my PC.  What gives?
  10400.     DOS won't support them (it would figure :-/ )?  The expanded Kermit
  10401.     wouldn't run on a poor old XT with floppy drives like mine?
  10402.  
  10403.                         Jeff
  10404.  
  10405. From news@columbia.edu Tue Sep 27 18:30:39 1994
  10406. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01305
  10407.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 14:30:42 -0400
  10408. Received: by apakabar.cc.columbia.edu id AA02166
  10409.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 14:30:40 -0400
  10410. Path: news.columbia.edu!usenet
  10411. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  10412. Newsgroups: comp.protocols.kermit.misc
  10413. Subject: Re: Dumb question...
  10414. Date: 27 Sep 1994 18:30:39 GMT
  10415. Organization: Columbia University
  10416. Lines: 34
  10417. Distribution: World
  10418. Message-Id: <369ocf$23k@apakabar.cc.columbia.edu>
  10419. References: <jhurwitCwsEG1.wu@netcom.com>
  10420. Nntp-Posting-Host: fdc.cc.columbia.edu
  10421. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  10422.  
  10423. In article <jhurwitCwsEG1.wu@netcom.com> jhurwit@netcom.com (Jeffrey Hurwit)  
  10424. writes:
  10425. > In article <35ktea$8cn@apakabar.cc.columbia.edu>, 
  10426. > Frank da Cruz (fdc@fdc.cc.columbia.edu) wrote:
  10427. > > > ...
  10428. > >Actually, this might have been a trick question: There is no C-Kermit
  10429. > >for DOS.
  10430. >     Y'know what?  There ought to be...  I've been using C-Kermit on my
  10431. >     Unix account for a while, now.  Though I don't use most of its
  10432. >     features (I use it as a remote only), I've noticed in glancing
  10433. >     through the docs that it has a more powerful script language, and
  10434. >     some other features that MS-Kermit lacks.  I could use those
  10435. >     features (especially the script language) on my PC.  What gives?
  10436. >     DOS won't support them (it would figure :-/ )?  The expanded Kermit
  10437. >     wouldn't run on a poor old XT with floppy drives like mine?
  10438. Well, aside from the obvious human-resource considerations we have
  10439. been reading about so much today (who is going to do the work???) we are
  10440. never going to be able to produce a C language version of Kermit for DOS
  10441. that is better than MS-DOS Kermit and that will still fit in memory.
  10442. MS-DOS Kermit is painstaking "hand crafted" to pack the most wollop into
  10443. the smallest amount of memory, and also to do all sorts of things at the
  10444. hardware level that simply not comfortable -- even possible -- in C.
  10445.  
  10446. C-Kermit is designed to run on real operating systems.  MS-DOS Kermit *is*
  10447. an operating system.
  10448.  
  10449. MS-DOS Kermit 3.14 will have many of the missing script programming features
  10450. added, in particular the \functions().  Hopefully we can get out from under
  10451. the great debates of who is entitled to what long enough to let us finish
  10452. getting this new release together.
  10453.  
  10454. - Frank
  10455.  
  10456. From news@columbia.edu Tue Sep 27 02:28:00 1994
  10457. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05923
  10458.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 15:30:30 -0400
  10459. Received: by apakabar.cc.columbia.edu id AA07267
  10460.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 15:30:28 -0400
  10461. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  10462. From: jrd@cc.usu.edu (Joe Doupnik)
  10463. Newsgroups: comp.protocols.kermit.misc
  10464. Subject: Re: Can I call prtscn from a macro?
  10465. Message-Id: <1994Sep27.082800.27946@cc.usu.edu>
  10466. Date: 27 Sep 94 08:28:00 MDT
  10467. References: <1994Sep26.094812.1062@newton.hartwick.edu>
  10468. Organization: Utah State University
  10469. Lines: 12
  10470. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  10471.  
  10472. In article <1994Sep26.094812.1062@newton.hartwick.edu>, wisanr@newton.hartwick.edu (Dick Wisan) writes:
  10473. > I would like to turn printer logging on and off from macros.  You can
  10474. > redirect the printer output to a file with SET PRINTER, and you can 
  10475. > turn the printer on and off with the keystroke verb \Kprtscn, but I
  10476. > can't find a way to do it from a macro, so I could turn it on from,
  10477. > say, mscustom.ini.
  10478. -----------
  10479.     Can't do it. The printing you are discussing is occuring only within
  10480. Connect mode and the operations controlling it need to occur while that
  10481. particular terminal emulation session is being executed (versus being at
  10482. the Kermit prompt). 
  10483.     Joe D.
  10484.  
  10485. From news@columbia.edu Tue Sep 27 04:36:33 1994
  10486. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05957
  10487.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 15:31:00 -0400
  10488. Received: by apakabar.cc.columbia.edu id AA07293
  10489.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 15:30:59 -0400
  10490. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  10491. From: jrd@cc.usu.edu (Joe Doupnik)
  10492. Newsgroups: comp.protocols.kermit.misc
  10493. Subject: Re: [?] MS-Kermit 3.13 and SLIP8250 11.7
  10494. Message-Id: <1994Sep27.103633.27960@cc.usu.edu>
  10495. Date: 27 Sep 94 10:36:33 MDT
  10496. References: <35qjl6$1ua@herald.indirect.com> <jhurwitCwsKtJ.5ut@netcom.com>
  10497. Organization: Utah State University
  10498. Lines: 30
  10499. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  10500.  
  10501. In article <jhurwitCwsKtJ.5ut@netcom.com>, jhurwit@netcom.com (Jeffrey Hurwit) writes:
  10502. > In article <35qjl6$1ua@herald.indirect.com>, 
  10503. > Jim Monty (monty@indirect.com) wrote:
  10504. >>Someone asked this question recently in comp.protocols.tcp-ip.ibmpc, but 
  10505. >>it was never answered:  Why doesn't version 11.7 of the Crynwyr SLIP 
  10506. >>packet driver SLIP8250 work with MS-Kermit 3.13?
  10507. >     [....]
  10508. >>What's different about the newer 
  10509. >>version of the packet driver?  I'd like to be able to use it instead of 
  10510. >>the older version because its -u option allows me to unload it from 
  10511. >>memory when I'm through with it; version 9.6 lacks this capability.
  10512. >     One possible solution is that, assuming this driver works like your
  10513. >     standard TSR, you could use v.9.6, and a TSR utility to remove it. 
  10514. >     Have a look at oak.oakland.edu:/SimTel/msdos/tsrutil (directory). 
  10515. >     Sam Ko, author of the list of Useful Shareware and PD Software at
  10516. >     ftp sites recommends tsrcom35.zip.
  10517. ---------------
  10518.     I answered this previously in this list. The Crynwr v11.x SLIP8250.COM
  10519. program has a mistake which eliminated a needed Packet Driver function. I told
  10520. Russ Nelson about it. In the meanwhile I suggest either using another SLIP
  10521. program or go back to the version 9.x material (my original rewrite of
  10522. SLIP8250.COM is tucked away in directory kermit on netlab2.usu.edu). Simtel
  10523. and similar popular ftp/bbs sites might have the older version, and its worth
  10524. a look.
  10525.     MSK version 3.14 has a workaround for this problem.
  10526.     Joe D.
  10527.  
  10528. From news@columbia.edu Tue Sep 27 20:47:07 1994
  10529. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15209
  10530.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 17:26:33 -0400
  10531. Received: by apakabar.cc.columbia.edu id AA17511
  10532.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 17:26:12 -0400
  10533. Newsgroups: comp.protocols.kermit.misc
  10534. Path: news.columbia.edu!sol.ctr.columbia.edu!math.ohio-state.edu!cs.utexas.edu!convex!news.duke.edu!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!torn!nntp.cs.ubc.ca!news.UVic.CA!sol!klassen
  10535. From: klassen@sol.UVic.CA (Melvin Klassen)
  10536. Subject: Re: When not "set file type binary" always?
  10537. Message-Id: <1994Sep27.204707.889@sol.UVic.CA>
  10538. Sender: news@sol.UVic.CA
  10539. Nntp-Posting-Host: sol.uvic.ca
  10540. Organization: University of Victoria, Victoria B.C. CANADA
  10541. Date: Tue, 27 Sep 94 20:47:07 GMT
  10542. Lines: 10
  10543. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  10544.  
  10545. jjr@mipl.ece.arizona.edu (Jeffrey J. Rodriguez) writes:
  10546. > Why not always do "set file type binary"?
  10547. > Is there any reason to use text mode?
  10548. > Binary mode seems to work fine for all types of files.
  10549. > (I have the same question regarding ftp.)
  10550. > Why is there a text mode at all?
  10551.  
  10552. Because KERMIT runs on (at least) one "non-ASCII" piece of hardware,
  10553. the IBM mainframe.  On that platform, KERMIT has to compensate for
  10554. the multitudinous differences between EBCDIC and ASCII.
  10555.  
  10556. From news@columbia.edu Tue Sep 27 21:07:56 1994
  10557. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18057
  10558.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 17:52:30 -0400
  10559. Received: by apakabar.cc.columbia.edu id AA19751
  10560.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 17:52:29 -0400
  10561. Newsgroups: comp.protocols.kermit.misc
  10562. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!yeshua.marcam.com!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!uunet!world!rbrass
  10563. From: rbrass@world.std.com (robert brass)
  10564. Subject: set speed command
  10565. Message-Id: <Cwt419.JsA@world.std.com>
  10566. Summary: Does set speed set the modem speed?
  10567. Keywords: speed
  10568. Organization: The World Public Access UNIX, Brookline, MA
  10569. Date: Tue, 27 Sep 1994 21:07:56 GMT
  10570. Lines: 8
  10571. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  10572.  
  10573. Hi,
  10574.     Does the set speed command set the modem speed or the 
  10575. terminal/line speed. I have an Octocom modem capable of 14400 but
  10576. there is no 14400 speed available in the set speed command. When I set it
  10577. to 19200 and dial a number, I get a message "can't change speed to 
  10578. 14400". How can I connect at 14400?
  10579.         Bob 
  10580.  
  10581.  
  10582. From news@columbia.edu Tue Sep 27 06:50:04 1994
  10583. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18966
  10584.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 18:03:51 -0400
  10585. Received: by apakabar.cc.columbia.edu id AA20708
  10586.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 18:03:49 -0400
  10587. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!math.ohio-state.edu!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  10588. From: jrd@cc.usu.edu (Joe Doupnik)
  10589. Newsgroups: comp.protocols.kermit.misc
  10590. Subject: Re: Columbia University MS-Kermit files removed from SimTel
  10591. Message-Id: <1994Sep27.125004.27971@cc.usu.edu>
  10592. Date: 27 Sep 94 12:50:04 MDT
  10593. References: <9409270646.kp1130@simtel.coast.net> <3699u3$fe9@Venus.mcs.com>
  10594. Organization: Utah State University
  10595. Lines: 37
  10596. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  10597.  
  10598. In article <3699u3$fe9@Venus.mcs.com>, les@MCS.COM (Leslie Mikesell) writes:
  10599. > In article <9409270646.kp1130@simtel.coast.net>,
  10600. > Keith Petersen <w8sdz@SimTel.Coast.NET> wrote:
  10601. >>According to e-mail I received this evening it appears that Columbia
  10602. >>University now feels that SimTel should no longer distribute MS-Kermit.
  10603. > Does this mean that it is time for someone else to start work on
  10604. > a file transfer program that *can* be distributed freely?
  10605. > Les Mikesell
  10606. >   les@mcs.com
  10607. ----------
  10608.     If you wanted to, but it might be a good idea to reread the 
  10609. Columiba copyright notice to discover what's going on. The notice
  10610. says, amongst other things, a person/organization can't redistribute
  10611. the Columbia material for profit etc without prior clearance. That
  10612. seems to be very reasonable to me.
  10613.     Guess what's lacking about the Simtel CDROM distribution
  10614. process.
  10615.     Let me touch on another aspect of this situation: Compuserve.
  10616. If you read the fine print then when a file is posted on CIS they
  10617. very nearly own the item. Oh boy! I run an anonymous ftp server or
  10618. two, and there are three kinds of files on them: Novell generated,
  10619. third party submissions to the Novell forum on CIS, and other third
  10620. party software. Novell's own files are offered via legal agreement with 
  10621. the company. It took a lot of work by people to obtain a satisfactory
  10622. legal release document so the Novell forum third party material could
  10623. be made available on the Internet (that's netwire\novuser). Novell did the 
  10624. hard work to make it happen.  Other files are accepted or declined 
  10625. depending on whether the author has given permission for them to be 
  10626. redistributed; no permission == no offering from my site (as best that I
  10627. can track it). If someone sends my archive a file which seems to have come 
  10628. from CIS but the release is not made then I decline the file. I don't get 
  10629. involved with money or CDROMs or making tapes for people, yet these operating
  10630. rules apply.
  10631.     
  10632.     Joe D.
  10633.  
  10634. From news@columbia.edu Tue Sep 27 07:02:44 1994
  10635. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18973
  10636.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 18:03:54 -0400
  10637. Received: by apakabar.cc.columbia.edu id AA20712
  10638.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 18:03:53 -0400
  10639. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!math.ohio-state.edu!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  10640. From: jrd@cc.usu.edu (Joe Doupnik)
  10641. Newsgroups: comp.protocols.kermit.misc
  10642. Subject: Re: WFWG/Kermit BIOS errors?
  10643. Message-Id: <1994Sep27.130244.27972@cc.usu.edu>
  10644. Date: 27 Sep 94 13:02:44 MDT
  10645. References: <369dh7$cup@quartz.ucs.ualberta.ca>
  10646. Organization: Utah State University
  10647. Lines: 17
  10648. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  10649.  
  10650. In article <369dh7$cup@quartz.ucs.ualberta.ca>, bpolvi@gpu.srv.ualberta.ca (Bernice Polvi) writes:
  10651. > FRUSTRATED by the following problem, Any ideas would be appreciated.
  10652. > When using KERMIT from within WFWG's, many of our users get the following 
  10653. > error message when attempting to establish a MF serial connection or initiate
  10654. > a file transfer:
  10655. > ?WARNING: UNKNOWN HARDWARE for Port. 
  10656. >           Using the BIOS as BIOS2 unimplemented speed.
  10657. > The windows session must then be terminated and started again. 
  10658. -------------
  10659.     Their Windows configurations must be slightly inappropriate for
  10660. any DOS program to use the serial ports. May I suggest reviewing the
  10661. serial port setup in WFW. Please do watch out for FAX program also
  10662. owning the port while Windows is running. 
  10663.     Joe D.
  10664.  
  10665. From news@columbia.edu Tue Sep 27 22:22:49 1994
  10666. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20443
  10667.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 18:22:51 -0400
  10668. Received: by apakabar.cc.columbia.edu id AA22281
  10669.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 18:22:50 -0400
  10670. Path: news.columbia.edu!usenet
  10671. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  10672. Newsgroups: comp.protocols.kermit.misc
  10673. Subject: Re: set speed command
  10674. Date: 27 Sep 1994 22:22:49 GMT
  10675. Organization: Columbia University
  10676. Lines: 31
  10677. Distribution: World
  10678. Message-Id: <36a5vp$lo7@apakabar.cc.columbia.edu>
  10679. References: <Cwt419.JsA@world.std.com>
  10680. Nntp-Posting-Host: fdc.cc.columbia.edu
  10681. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  10682.  
  10683. In article <Cwt419.JsA@world.std.com> rbrass@world.std.com (robert brass)  
  10684. writes:
  10685. > Does the set speed command set the modem speed or the 
  10686. > terminal/line speed. I have an Octocom modem capable of 14400 but
  10687. > there is no 14400 speed available in the set speed command. When I set it
  10688. > to 19200 and dial a number, I get a message "can't change speed to 
  10689. > 14400". How can I connect at 14400?
  10690. >
  10691. It sets the computer's serial port speed.  The modem speed can only be
  10692. set by modem-specific methods.  It would have helped if you had said
  10693. which Kermit program you were using.  Let's say it's C-Kermit.  If you had
  10694. read the manual, "Using C-Kermit", you would have discovered (in the
  10695. section "Finer Points of Dialing" in chapter 3) that Kermit can either
  10696. (a) adjust its interface speed to the CONNECT speed reported by the modem,
  10697. or (b) keep its interface speed constant, i.e. ignore the modem's report.
  10698. The command is SET DIAL SPEED-MATCHING { ON, OFF }.  By default, it tries
  10699. to change to the speed reported by the modem.  In your case, it seems that
  10700. your version of C-Kermit (based upon information from the system header
  10701. files, etc) does not support 14400 bps.  But that's not the real problem --
  10702. what you really wanted to do was set your modem's interface speed to
  10703. 19200 and FIX IT THERE, and then tell C-Kermit to ignore the speed in the
  10704. CONNECT message.
  10705.  
  10706. C-Kermit 5A(190) -- still in Beta due to numerous distractions -- supports
  10707. (in general) a wider range of speeds, including 14400 bps on some systems.
  10708. But since I don't have 450 different operating-system/version combinations
  10709. directly accessible, I can't guarantee that I caught them all.  For further
  10710. information, see the section SERIAL COMMUNICATION SPEEDS in the ckccfg.doc
  10711. file.
  10712.  
  10713. - Frank
  10714.  
  10715. From news@columbia.edu Tue Sep 27 21:53:29 1994
  10716. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21189
  10717.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 18:34:37 -0400
  10718. Received: by apakabar.cc.columbia.edu id AA23030
  10719.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 18:34:36 -0400
  10720. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!EU.net!sunic!news.funet.fi!zippo.uwasa.fi!chyde.uwasa.fi!ts
  10721. From: ts@uwasa.fi (Timo Salmi)
  10722. Newsgroups: comp.archives.msdos.announce,comp.protocols.kermit.misc
  10723. Subject: Columbia University MS-Kermit files suspended at Garbo
  10724. Followup-To: comp.protocols.kermit.misc
  10725. Date: Tue, 27 Sep 1994 21:53:29 GMT
  10726. Organization: University of Vaasa, Finland
  10727. Lines: 15
  10728. Approved: ts@chyde.uwasa.fi
  10729. Message-Id: <ts9409272153.29032@chyde.uwasa.fi>
  10730. Nntp-Posting-Host: uwasa.fi
  10731. Originator: ts@uwasa.fi
  10732. Xref: news.columbia.edu comp.archives.msdos.announce:6845 comp.protocols.kermit.misc:258
  10733. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  10734.  
  10735. Tue 27-Sep-94: MsKermit utilities have been suspended at Garbo.  The
  10736. files have not yet been physically deleted, but their read
  10737. permissions have been removed.  For all details of the situation
  10738. please see the comp.protocols.kermit.misc newsgroup.  Please do not
  10739. direct any queries about this to Garbo moderators.  Kermit is
  10740. distributed from the Columbia University.  The support person there
  10741. is Frank da Cruz fdc@watsun.cc.columbia.edu.
  10742.  
  10743.    All the best, Timo
  10744.  
  10745. ..................................................................
  10746. Prof. Timo Salmi      Co-moderator of comp.archives.msdos.announce
  10747. Moderating at garbo.uwasa.fi anonymous FTP  archives  128.214.87.1
  10748. Faculty of Accounting & Industrial Management; University of Vaasa
  10749. Internet: ts@uwasa.fi   BBS +(358)-61-3170972; FIN-65101,  Finland
  10750.  
  10751. From news@columbia.edu Tue Sep 27 20:58:52 1994
  10752. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22897
  10753.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 19:07:27 -0400
  10754. Received: by apakabar.cc.columbia.edu id AA25333
  10755.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 19:07:25 -0400
  10756. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!news.sprintlink.net!nwnexus!news.halcyon.com!chinook!ken
  10757. From: ken@chinook.halcyon.com (Ken Pizzini)
  10758. Newsgroups: comp.protocols.kermit.misc
  10759. Subject: Re: Kermit Access/Availability
  10760. Date: 27 Sep 1994 20:58:52 GMT
  10761. Organization: What, me?
  10762. Lines: 24
  10763. Distribution: World
  10764. Message-Id: <36a12c$4qu@news.halcyon.com>
  10765. References: <35qtj3$ms6@eis.wfunet.wfu.edu> <35upim$9ol@apakabar.cc.columbia.edu>
  10766. Nntp-Posting-Host: chinook.halcyon.com
  10767. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  10768.  
  10769. In article <35upim$9ol@apakabar.cc.columbia.edu>,
  10770. Frank da Cruz <fdc@fdc.cc.columbia.edu> wrote:
  10771. >In article <35qtj3$ms6@eis.wfunet.wfu.edu> matthews@wfu.edu (Rick Matthews)  
  10772. >writes:
  10773. >> : zmodem is a lot faster for the turnkey user.
  10774. >> Agreed.  Kermit is not for the turnkey user, unless the user is
  10775. >> unusually patient.  Creating the three-line ".kermrc" file is
  10776. >> essential for reasonable throughput with kermit.
  10777. >> 
  10778. >Matter of preference.  If by "turnkey user" you mean somebody who wants a 
  10779. >file transfer to either be fast or else fail, you're right.  On the other 
  10780. >hand, if a turnkey user is someone who wants a transfer to work out of the
  10781. >box, even if it is slow, then I'd say Kermit is the ticket.
  10782.  
  10783. Okay then, an idea for a future release: have a "set transfer fast" and
  10784. "set transfer robust" (or the moral equivalent) option: the former will
  10785. work as fast as possible over a reliable 8-bit clean link, and the
  10786. latter is the current situation.  This is similar to the current
  10787. situation, but requires less knowledge/guesswork on the part of the "I
  10788. just want to run this thing" user.  (As to the exact command to use,
  10789. try for something that will be somewhat self-apparent in the online
  10790. help.)
  10791.  
  10792.         --Ken Pizzini
  10793.  
  10794. From news@columbia.edu Tue Sep 27 08:46:34 1994
  10795. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23529
  10796.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 19:17:41 -0400
  10797. Received: by apakabar.cc.columbia.edu id AA26206
  10798.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 19:17:40 -0400
  10799. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!convex!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  10800. From: jrd@cc.usu.edu (Joe Doupnik)
  10801. Newsgroups: comp.protocols.kermit.misc
  10802. Subject: Re: Dumb question...
  10803. Message-Id: <1994Sep27.144634.27987@cc.usu.edu>
  10804. Date: 27 Sep 94 14:46:34 MDT
  10805. References: <35k8j5$mph@dsm6.dsmnet.com> <35ktea$8cn@apakabar.cc.columbia.edu> <jhurwitCwsEG1.wu@netcom.com>
  10806. Distribution: world
  10807. Organization: Utah State University
  10808. Lines: 21
  10809. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  10810.  
  10811. In article <jhurwitCwsEG1.wu@netcom.com>, jhurwit@netcom.com (Jeffrey Hurwit) writes:
  10812. > In article <35ktea$8cn@apakabar.cc.columbia.edu>, 
  10813. > Frank da Cruz (fdc@fdc.cc.columbia.edu) wrote:
  10814. >>In article <35k8j5$mph@dsm6.dsmnet.com> rich@dsm1.dsmnet.com writes:
  10815. >>> In article <35ghag$274@telerama.lm.com>, huzacec@telerama.lm.com writes:
  10816. >     Y'know what?  There ought to be...  I've been using C-Kermit on my
  10817. >     Unix account for a while, now.  Though I don't use most of its
  10818. >     features (I use it as a remote only), I've noticed in glancing
  10819. >     through the docs that it has a more powerful script language, and
  10820. >     some other features that MS-Kermit lacks.  I could use those
  10821. >     features (especially the script language) on my PC.  What gives?
  10822. >     DOS won't support them (it would figure :-/ )?  The expanded Kermit
  10823. >     wouldn't run on a poor old XT with floppy drives like mine?
  10824. >                         Jeff
  10825. ----------
  10826.     Vaguenes Jeff, so vague. MS-DOS Kermit should run just fine on
  10827. your XT if it has enough memory (512KB is more than enough); floppy
  10828. based is ok too if you don't mind the delays.
  10829.     Joe D.
  10830.  
  10831. From news@columbia.edu Tue Sep 27 21:35:03 1994
  10832. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24110
  10833.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 19:24:53 -0400
  10834. Received: by apakabar.cc.columbia.edu id AA26666
  10835.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 19:24:52 -0400
  10836. Newsgroups: comp.protocols.kermit.misc
  10837. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!swrinde!elroy.jpl.nasa.gov!ucla-cs!news.cs.ucla.edu!bern
  10838. From: bern@maui.cs.ucla.edu (Bernard Chen)
  10839. Subject: initialization string
  10840. Message-Id: <BERN.94Sep27143504@maui.cs.ucla.edu>
  10841. Sender: usenet@cs.ucla.edu (Mr Usenet)
  10842. Nntp-Posting-Host: maui.cs.ucla.edu
  10843. Organization: UCLA, Computer Science Department
  10844. Date: 27 Sep 1994 21:35:03 GMT
  10845. Lines: 10
  10846. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  10847.  
  10848. i just compiled cku190 for my machine (sonynews, although i don't know
  10849. if that matters), and tried dialing with the same .kermrc as i was
  10850. using with cku189.  the modem is a microcom.  i keep getting an error:
  10851. TIMEOUT in initializing modem.  i didn't copy down the exact error
  10852. message, but it was a TIMEOUT in initializing the modem.  this
  10853. initialization string should work with the modem, since it works fine
  10854. with cku189.  would anyone have any ideas why this isn't working?
  10855.  
  10856. bern
  10857. bern@cs.ucla.edu
  10858.  
  10859. From news@columbia.edu Tue Sep 27 23:27:33 1994
  10860. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24245
  10861.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 19:27:37 -0400
  10862. Received: by apakabar.cc.columbia.edu id AA26938
  10863.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 19:27:36 -0400
  10864. Path: news.columbia.edu!usenet
  10865. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  10866. Newsgroups: comp.protocols.kermit.misc
  10867. Subject: Re: Kermit Access/Availability
  10868. Date: 27 Sep 1994 23:27:33 GMT
  10869. Organization: Columbia University
  10870. Lines: 37
  10871. Distribution: World
  10872. Message-Id: <36a9p5$q9n@apakabar.cc.columbia.edu>
  10873. References: <36a12c$4qu@news.halcyon.com>
  10874. Nntp-Posting-Host: fdc.cc.columbia.edu
  10875. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  10876.  
  10877. In article <36a12c$4qu@news.halcyon.com> ken@chinook.halcyon.com (Ken  
  10878. Pizzini) writes:
  10879. > Okay then, an idea for a future release: have a "set transfer fast" and
  10880. > "set transfer robust" (or the moral equivalent) option: the former will
  10881. > work as fast as possible over a reliable 8-bit clean link, and the
  10882. > latter is the current situation.  This is similar to the current
  10883. > situation, but requires less knowledge/guesswork on the part of the "I
  10884. > just want to run this thing" user.
  10885. >
  10886. Au contraire -- today's user does not want to learn any commands, and is
  10887. no more likely to stumble upon this one than any other.
  10888.  
  10889. This is sad, because the slick software industry has put forward the
  10890. idea that all one needs to do is click on something and the magic is
  10891. unleashed, which is completely untrue and misleading in the case of
  10892. communications software.  They raise the expectations of users unreasonably
  10893. high.  There is no way that communications software can know what is going
  10894. on outside the computer, and I maintain that there is no way that it can
  10895. even test for this in a nonobtrusive, nondestructive fashion.
  10896.  
  10897. At some point, the user has to learn something, at least when things don't
  10898. work.  So yes, maybe you have a point.  Maybe Kermit should be tuned for
  10899. "damn the torpedoes, full speed ahead", and then it would fail about half
  10900. the time, and then the user would be forced to look stuff up in the
  10901. documentation and learn about the things that every user must know in order
  10902. to communicate successfully in a diverse or hostile environment.
  10903.  
  10904. Or not.  More likely they would be so angry and frustrated that they would
  10905. just give up.  Which is worse? 
  10906.  
  10907. I think that those of us on this newsgroup are capable of entering the
  10908. two or three commands needed to make Kermit transfers default any way we
  10909. want them to.  The question is what the DEFAULT defaults should be for
  10910. somebody who doesn't know anything and swallows the hype.  I think the
  10911. conservative ones are still the most appropriate.
  10912.  
  10913. - Frank
  10914.  
  10915. From news@columbia.edu Tue Sep 27 23:36:56 1994
  10916. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24704
  10917.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 19:37:06 -0400
  10918. Received: by apakabar.cc.columbia.edu id AA27642
  10919.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 19:37:05 -0400
  10920. Path: news.columbia.edu!usenet
  10921. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  10922. Newsgroups: comp.protocols.kermit.misc
  10923. Subject: Re: initialization string
  10924. Date: 27 Sep 1994 23:36:56 GMT
  10925. Organization: Columbia University
  10926. Lines: 26
  10927. Distribution: World
  10928. Message-Id: <36aaao$qv6@apakabar.cc.columbia.edu>
  10929. References: <BERN.94Sep27143504@maui.cs.ucla.edu>
  10930. Nntp-Posting-Host: fdc.cc.columbia.edu
  10931. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  10932.  
  10933. In article <BERN.94Sep27143504@maui.cs.ucla.edu> bern@maui.cs.ucla.edu  
  10934. (Bernard Chen) writes:
  10935. > i just compiled cku190 for my machine (sonynews, although i don't know
  10936. > if that matters), and tried dialing with the same .kermrc as i was
  10937. > using with cku189.  the modem is a microcom.  i keep getting an error:
  10938. > TIMEOUT in initializing modem.  i didn't copy down the exact error
  10939. > message, but it was a TIMEOUT in initializing the modem.  this
  10940. > initialization string should work with the modem, since it works fine
  10941. > with cku189.  would anyone have any ideas why this isn't working?
  10942. As you know, C-Kermit 5A(190) is in Beta test.  You should send bug
  10943. reports straight to me.  In this case, I would have asked you to collect
  10944. a debug log ("log debug", makes a big file called debug.log) and email
  10945. it to me.
  10946.  
  10947. Here's another thing you can do.  First, run C-Kermit 5A(189), tell it
  10948. to "set dial display on", and give a dial command.  Watch what happens.
  10949. Better still, record it in a typescript.  Then do the same with 190.
  10950. Then look at the typescript and see if you can dope out what is different.
  10951. Send me the typescript by email.  If I can't figure it out from the type-
  10952. script, then we can go to the big debug log.
  10953.  
  10954. Also, bear in mind that I don't have a Microcom modem, so this debugging
  10955. might have to be carried out by "remote control".
  10956.  
  10957. - Frank
  10958.  
  10959. From news@columbia.edu Tue Sep 27 22:41:57 1994
  10960. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24902
  10961.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 19:39:39 -0400
  10962. Received: by apakabar.cc.columbia.edu id AA27806
  10963.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 19:39:37 -0400
  10964. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!utnut!torn!news.ccs.queensu.ca!news
  10965. From: mike@ccs.queensu.ca (Mike Smith)
  10966. Newsgroups: comp.protocols.kermit.misc
  10967. Subject: Re: Quoting 255 on Telnet Connections
  10968. Date: 27 Sep 1994 22:41:57 GMT
  10969. Organization: Queen's University, Kingston
  10970. Lines: 11
  10971. Distribution: world
  10972. Message-Id: <36a73l$dke@knot.queensu.ca>
  10973. References: <36761n$3ia@knot.queensu.ca> <367d3p$ddh@apakabar.cc.columbia.edu>
  10974. Nntp-Posting-Host: ccs-sparc2.ccs
  10975. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  10976.  
  10977. Thanks to Frank for his explanation.
  10978.  
  10979. Last night I was doing some more testing with the same Kermit programs, the
  10980. same test files, the same PC, the same telnet server, and a different Unix
  10981. host.  When I configured the host to unprefix 255, uploads caused retries.
  10982. When I prefixed 255 the retries went away.  
  10983. -- 
  10984.  
  10985.  Mike Smith                                  mike@ccs.queensu.ca
  10986.  Queen's University                          Michael.D.Smith@QueensU.CA
  10987.  Computing and Communications Services       (613) 545-2024
  10988.  
  10989. From news@columbia.edu Tue Sep 27 23:04:14 1994
  10990. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25178
  10991.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 19:43:31 -0400
  10992. Received: by apakabar.cc.columbia.edu id AA28097
  10993.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 19:43:30 -0400
  10994. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!news-feed-1.peachnet.edu!gatech!swrinde!cs.utexas.edu!utnut!torn!mcshub!informer1.cis.McMaster.CA!muss.cis.McMaster.CA!not-for-mail
  10995. From: dfraser@muss.cis.McMaster.CA (Doug Fraser)
  10996. Newsgroups: comp.protocols.kermit.misc
  10997. Subject: Re: Kermit via tn3270
  10998. Date: 27 Sep 1994 19:04:14 -0400
  10999. Organization: McMaster University, Hamilton, Ontario, Canada.
  11000. Lines: 30
  11001. Message-Id: <36a8de$pri@muss.cis.McMaster.CA>
  11002. References: <36481e$3bv@gwis2.circ.gwu.edu>
  11003. Nntp-Posting-Host: muss.cis.mcmaster.ca
  11004. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  11005.  
  11006. In article <36481e$3bv@gwis2.circ.gwu.edu>,
  11007. Philip Wirtz <pww@gwis2.circ.gwu.edu> wrote:
  11008. >I use MSDOS Kermit on a PC-compatible machine to emulate a VT100 when
  11009. >connecting (over a modem) to a Sun running Solaris.  I can upload,
  11010. >download, and "transparent print" without problem.  When logged on to the
  11011. >Sun, I use tn3270 to connect to an IBM mainframe running VM/CMS.  As an
  11012. >alternative route to the IBM mainframe, I can use MSDOS Kermit to dial up
  11013. >through a 7171 protocol emulator.  I have no problem using Kermit to
  11014. >upload, download, or transparent print when I use the ALTERNATIVE route to
  11015. >the IBM mainframe (i.e., dialing up through the 7171).  However, when
  11016. >using the tn3270 route (which of course bypasses the 7171), I cannot
  11017. >upload, download or transparent print.  Speculatively, it appears that
  11018. >escape sequences are not being properly passed to the Sun (and therefore
  11019. >to my PC), so (for example) the PC Kermit does not know that it needs to
  11020.  
  11021. a 7171 looks like a local 3274 type control unit to the ibm mainframe and 
  11022. translate the special 3270 type control characters to the async terminal 
  11023. connectedt to it.  tn3270 does the same thing however, the 7171 has 
  11024. already translated the characters.
  11025.  
  11026. To use tn3270, you have to connect to something like a 8232 (I can't 
  11027. remember if this is the right number) or a BTI box.  There is associated 
  11028. tcp software on the ibm mainframe.  
  11029.  
  11030. The 7171 does not have associated software on the mainframe as it does 
  11031. the necessary translation inside.
  11032.  
  11033. Doug Fraser
  11034. (use the above answer as if I hadn't worked hands on with mvs for three 
  11035. years)
  11036.  
  11037. From news@columbia.edu Tue Sep 27 23:41:01 1994
  11038. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25631
  11039.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 19:50:38 -0400
  11040. Received: by apakabar.cc.columbia.edu id AA28565
  11041.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 19:50:37 -0400
  11042. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!vixen.cso.uiuc.edu!bach.cogsci.uiuc.edu!jycha
  11043. From: jycha@bach.cogsci.uiuc.edu (Jong-Yul Cha)
  11044. Newsgroups: comp.protocols.kermit.misc
  11045. Subject: [Q] Initializing kermit
  11046. Date: 27 Sep 1994 23:41:01 GMT
  11047. Organization: University of Illinois at Urbana
  11048. Lines: 5
  11049. Message-Id: <36aaid$4q9@vixen.cso.uiuc.edu>
  11050. Nntp-Posting-Host: bach.cogsci.uiuc.edu
  11051. X-Newsreader: TIN [version 1.2 PL2]
  11052. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  11053.  
  11054. I mostly use kermit to get a slip connection via 14.4K modem.
  11055. Is it possible to put the dialing number and prefix (such as
  11056. atdt 123-4567) into the initializing file (mskermit.ini or
  11057. .kermrc) to have an automated call?  Thank you.
  11058.  
  11059.  
  11060. From news@columbia.edu Tue Sep 27 23:42:49 1994
  11061. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25785
  11062.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 19:54:55 -0400
  11063. Received: by apakabar.cc.columbia.edu id AA28910
  11064.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 19:54:52 -0400
  11065. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!swiss.ans.net!prodigy.com!prodigy.com!not-for-mail
  11066. From: davidsen@usenety1.news.prodigy.com (Bill Davidsen)
  11067. Newsgroups: comp.protocols.kermit.misc
  11068. Subject: Re: FTP for Current MS-DOS Kermit?
  11069. Date: 27 Sep 1994 19:42:49 -0400
  11070. Organization: Prodigy Services
  11071. Lines: 36
  11072. Distribution: World
  11073. Message-Id: <36aalp$9pe@usenety1.news.prodigy.com>
  11074. References: <368187$ms3@zippo.uwasa.fi> <369777$qfs@apakabar.cc.columbia.edu>
  11075. Nntp-Posting-Host: loopback.news.prodigy.com
  11076. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  11077.  
  11078.  
  11079. If you want to make some money you can start trying to collect from
  11080. these CD publishers, but if you want to keep Kermit spreading you better
  11081. let people spread the programs any way they can, and *sell* the manuals.
  11082. Actually I thought you did that anyway.
  11083.  
  11084. People tend to use zmodem over Kermit because it has so many old
  11085. versions out there. The latest version may outperform zmodem in some
  11086. test or other, but when calling another system chances are that the
  11087. speed will be poor because one end didn't set left handed sliding
  11088. hexadecimal escape packets or some such.
  11089.  
  11090. The next enhancement to Kermit better be teaching it to configure
  11091. itself, because the current version has enough bells and whistles to
  11092. tune to discourage the business person who just wants it to work.
  11093.  
  11094. I get little consulting calls fairly frequently to tune complex stuff,
  11095. and the only thing which brings in more calls than getting Kermit to
  11096. really fly is Telebit modems.
  11097.  
  11098. I think you should make your money from leting these people go and
  11099. selling the manuals and a CD with the latest versions of every Kermit
  11100. version you have. I don't speak for other UNIX users, but I certainly
  11101. would buy a reasonably priced Kermit snapshot once a year. I'd probably
  11102. even put a stack on the corner of my table at the next computer show if
  11103. I could buy for a few bucks off in small quantity, and I bet clubs would
  11104. order copies too.
  11105.  
  11106. I respect what you are trying to do here, but I seriously believe that
  11107. you don't have a clear marketing plan here. Set up an "official Kermit
  11108. Answer Center" with a 950 area code and charge a small fee. You may not
  11109. be as much fun as phone sex, but I bet you can make a buck at it!
  11110. -- 
  11111. Speaking *from* but never *for* Prodigy
  11112.     "Pain builds moral fiber"  -my dad
  11113.     "Pain hurts"  -me
  11114.  
  11115. From news@columbia.edu Wed Sep 28 00:04:57 1994
  11116. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26266
  11117.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 20:05:03 -0400
  11118. Received: by apakabar.cc.columbia.edu id AA29742
  11119.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 20:05:00 -0400
  11120. Path: news.columbia.edu!usenet
  11121. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  11122. Newsgroups: comp.protocols.kermit.misc
  11123. Subject: Re: [Q] Initializing kermit
  11124. Date: 28 Sep 1994 00:04:57 GMT
  11125. Organization: Columbia University
  11126. Lines: 25
  11127. Distribution: World
  11128. Message-Id: <36abv9$t18@apakabar.cc.columbia.edu>
  11129. References: <36aaid$4q9@vixen.cso.uiuc.edu>
  11130. Nntp-Posting-Host: fdc.cc.columbia.edu
  11131. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  11132.  
  11133. In article <36aaid$4q9@vixen.cso.uiuc.edu> jycha@bach.cogsci.uiuc.edu  
  11134. (Jong-Yul Cha) writes:
  11135. > I mostly use kermit to get a slip connection via 14.4K modem.
  11136. > Is it possible to put the dialing number and prefix (such as
  11137. > atdt 123-4567) into the initializing file (mskermit.ini or
  11138. > ..kermrc) to have an automated call?  Thank you.
  11139. >
  11140. Of course.  I'd recommend something like this.  Create a DOS Batch
  11141. file, say SLIP.BAT, that starts up Kermit for SLIP, something like:
  11142.  
  11143.   kermit -f slip.scr
  11144.  
  11145. And then the SLIP.SCR file would contain the needed Kermit commands,
  11146. which depend on your modem and so on.  But, as you know, this is only
  11147. the first step.  Now you need to exit from Kermit, leaving the connection
  11148. open, and then start your SLIP8250 or ETHERSLIP driver, and then start
  11149. Kermit again to actually use the SLIP connection (or you can start any
  11150. other TCP/IP application that uses SLIP).  You should not start the
  11151. packet driver from the Kermit prompt, because that will result in
  11152. fragmented memory, and you might not be able to load other applications
  11153. after that.
  11154.  
  11155. - Frank
  11156.  
  11157.  
  11158.  
  11159. From news@columbia.edu Wed Sep 28 00:16:52 1994
  11160. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27075
  11161.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 20:24:03 -0400
  11162. Received: by apakabar.cc.columbia.edu id AA01318
  11163.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 20:24:02 -0400
  11164. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!charnel.ecst.csuchico.edu!nic-nac.CSU.net!tem
  11165. From: tem@scout.humboldt.edu (Tom Mendenhall)
  11166. Newsgroups: comp.protocols.kermit.misc
  11167. Subject: transmit command 7 bit only?
  11168. Date: 28 Sep 1994 00:16:52 GMT
  11169. Organization: HSU Library
  11170. Lines: 10
  11171. Message-Id: <36aclk$okp@nic-nac.CSU.net>
  11172. Reply-To: tem@scout.humboldt.edu
  11173. Nntp-Posting-Host: scout.humboldt.edu
  11174. X-Newsreader: TIN [version 1.2 PL2]
  11175. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  11176.  
  11177. I am trying to send a file with the transmit command. The diacritic
  11178. characters are being replaced with "b" characters. Due to limitations
  11179. with the host software, this is the only method I can use. Does anyone
  11180. know if transmit is limited to 7 bits or is there some other reason
  11181. why this is happening.
  11182.  
  11183. Thanks,
  11184. Tom Mendenhall
  11185. tem@scout.humboldt.edu
  11186.  
  11187.  
  11188. From news@columbia.edu Wed Sep 28 00:42:07 1994
  11189. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27913
  11190.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 20:42:12 -0400
  11191. Received: by apakabar.cc.columbia.edu id AA02607
  11192.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 20:42:10 -0400
  11193. Path: news.columbia.edu!usenet
  11194. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  11195. Newsgroups: comp.protocols.kermit.misc
  11196. Subject: Re: transmit command 7 bit only?
  11197. Date: 28 Sep 1994 00:42:07 GMT
  11198. Organization: Columbia University
  11199. Lines: 25
  11200. Distribution: World
  11201. Message-Id: <36ae4v$2hb@apakabar.cc.columbia.edu>
  11202. References: <36aclk$okp@nic-nac.CSU.net>
  11203. Nntp-Posting-Host: fdc.cc.columbia.edu
  11204. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  11205.  
  11206. In article <36aclk$okp@nic-nac.CSU.net> tem@scout.humboldt.edu (Tom  
  11207. Mendenhall) writes:
  11208. > I am trying to send a file with the transmit command. The diacritic
  11209. > characters are being replaced with "b" characters. Due to limitations
  11210. > with the host software, this is the only method I can use. Does anyone
  11211. > know if transmit is limited to 7 bits or is there some other reason
  11212. > why this is happening.
  11213. You did not say which Kermit program you are using.  Assuming it is
  11214. MS-DOS Kermit or C-Kermit...  Terminal connections -- including the
  11215. TRANSMIT command, which uses the terminal connection to upload a file
  11216. as if you were typing it -- are 7 bits by default.  This is explained
  11217. repeatedly in the documentation.  The reason is that many hosts and
  11218. services use parity, but the poor user doesn't know it, and if terminal
  11219. connections were 8 bits by default, users would see garbage on their
  11220. screens.
  11221.  
  11222. To use 8-bit text in a terminal session, you must do two things:
  11223. (1) Tell Kermit to SET TERMINAL BYTESIZE 8, and (2) set up the
  11224. appropriate character-set translations.
  11225.  
  11226. Please read the chapter on International Character Sets in the appropriate
  11227. manual, "Using MS-DOS Kermit" or "Using C-Kermit".
  11228.  
  11229. - Frank
  11230.  
  11231. From news@columbia.edu Wed Sep 28 00:14:00 1994
  11232. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00320
  11233.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 21:33:04 -0400
  11234. Received: by apakabar.cc.columbia.edu id AA06295
  11235.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 21:33:02 -0400
  11236. Newsgroups: comp.protocols.kermit.misc
  11237. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!news-feed-1.peachnet.edu!emory!swrinde!ihnp4.ucsd.edu!dog.ee.lbl.gov!news.cs.utah.edu!emba-news.uvm.edu!moose.uvm.edu!rdangel
  11238. From: rdangel@moose.uvm.edu (Robert S. Dangel)
  11239. Subject: Windows Kermit?
  11240. Message-Id: <1994Sep28.001400.10550@emba.uvm.edu>
  11241. Originator: rdangel@moose.uvm.edu
  11242. Sender: news@emba.uvm.edu
  11243. Organization: EMBA Computer Facility, University of Vermont
  11244. Date: Wed, 28 Sep 1994 00:14:00 GMT
  11245. Lines: 3
  11246. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  11247.  
  11248. Is there a windows version of PC Kermit? I have qmodem Pro and
  11249. the Kermit protocol doesn't work with the UNIX machines..  
  11250.  
  11251.  
  11252. From news@columbia.edu Sun Sep 28 04:30:29 1994
  11253. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10738
  11254.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 28 Sep 1994 00:56:59 -0400
  11255. Received: by apakabar.cc.columbia.edu id AA19518
  11256.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 28 Sep 1994 00:56:57 -0400
  11257. Path: news.columbia.edu!panix!MathWorks.Com!news.kei.com!ddsw1!not-for-mail
  11258. From: les@MCS.COM (Leslie Mikesell)
  11259. Newsgroups: comp.protocols.kermit.misc
  11260. Subject: Re: Columbia University MS-Kermit files removed from SimTel
  11261. Date: 27 Sep 1994 23:30:29 -0500
  11262. Organization: /usr/lib/news/organi[sz]ation
  11263. Lines: 22
  11264. Message-Id: <36arh5$qpp@Mercury.mcs.com>
  11265. References: <9409270646.kp1130@simtel.coast.net> <3699u3$fe9@Venus.mcs.com> <1994Sep27.125004.27971@cc.usu.edu>
  11266. Nntp-Posting-Host: mercury.mcs.com
  11267. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  11268.  
  11269. In article <1994Sep27.125004.27971@cc.usu.edu>,
  11270. Joe Doupnik <jrd@cc.usu.edu> wrote:
  11271. >The notice
  11272. >says, amongst other things, a person/organization can't redistribute
  11273. >the Columbia material for profit etc without prior clearance. That
  11274. >seems to be very reasonable to me.
  11275. >    Guess what's lacking about the Simtel CDROM distribution
  11276. >process.
  11277.  
  11278. The part that I don't understand is how the CDROM distribution is
  11279. somehow different from the profit made by the internet providers
  11280. and phone companies when someone arranges to ftp the files directly
  11281. from Columbia. The only difference from this end is that you have
  11282. a choice about the CDROMs and for most people it is a cheaper alternative.
  11283. Since the CDROM distributers don't attempt to restrict your access
  11284. by other means or prevent futher redistribution of the contents they
  11285. are clearly selling the service of distribution in the same sense
  11286. that the phone companies do.  If either distribution makes a profit
  11287. it is only indirectly related to the content.
  11288.  
  11289. Les Mikesell
  11290.   les@mcs.com
  11291.  
  11292. From news@columbia.edu Wed Sep 28 05:28:50 1994
  11293. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21515
  11294.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 28 Sep 1994 06:04:32 -0400
  11295. Received: by apakabar.cc.columbia.edu id AA29522
  11296.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 28 Sep 1994 06:04:30 -0400
  11297. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!swiss.ans.net!cmcl2!cmcl2.nyu.edu!oconnort
  11298. From: oconnort@acf2.nyu.edu (Tim O'Connor)
  11299. Newsgroups: comp.protocols.kermit.misc
  11300. Subject: Re: Just Say "RTFM" To Documented Kermit Questions
  11301. Date: 28 Sep 1994 05:28:50 GMT
  11302. Organization: New York University
  11303. Lines: 21
  11304. Distribution: World
  11305. Message-Id: <36auui$f89@cmcl2.NYU.EDU>
  11306. References: <35scpt$lki@agate.berkeley.edu> <361ifo$rje@apakabar.cc.columbia.edu>
  11307. Nntp-Posting-Host: acf2.nyu.edu
  11308. X-Newsreader: TIN [version 1.2 PL2]
  11309. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  11310.  
  11311. Frank da Cruz (fdc@fdc.cc.columbia.edu) wrote:
  11312.  
  11313. >  2. It will answer most of your questions -- we put a lot of work into
  11314. >     it -- hundreds of examples, step-by-step instructions, illustrations,
  11315. >     tables, appendices, tutorials, glossaries, a comprehensive index.
  11316.  
  11317. ... and the hard work shows on every page.  
  11318.  
  11319. The first chapter in the MS Kermit book alone is worth the price.  I get 
  11320. a steady parade of lost souls at my door, some of them terrified of their 
  11321. modems and utterly confused about how a file gets from Point A to Point B.  
  11322. In every case but one, I have been able to explain how things work by 
  11323. pulling the book off the shelf and reviewing the pictures in the first 
  11324. chapter.  (The one exception was a lost cause!)  
  11325.  
  11326. --tim o'connor
  11327.  
  11328. +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  11329. Tim O'Connor                                        tim.oconnor@nyu.edu
  11330. NYU Academic Computing Facility                   Phone: (212) 998-3024
  11331. 251 Mercer St., New York, NY 10012                  Fax: (212) 995-4120
  11332.  
  11333. From news@columbia.edu Wed Sep 28 08:31:03 1994
  11334. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26449
  11335.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 28 Sep 1994 06:37:22 -0400
  11336. Received: by apakabar.cc.columbia.edu id AA00950
  11337.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 28 Sep 1994 06:37:20 -0400
  11338. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!EU.net!sunic!trane.uninett.no!nac.no!eunet.no!nuug!telepost.no!hydro.com!usenet
  11339. From: terjem@hda.hydro.com (Terje Mathisen)
  11340. Newsgroups: comp.protocols.kermit.misc
  11341. Subject: Selective quoting of control chars
  11342. Date: 28 Sep 1994 08:31:03 GMT
  11343. Organization: Hydro Data, Norsk Hydro (Norway)
  11344. Lines: 14
  11345. Message-Id: <36b9k7$2vdl@vkhdib01.hda.hydro.com>
  11346. Reply-To: terjem@hda.hydro.com (Terje Mathisen)
  11347. Nntp-Posting-Host: sk08ts.hda.hydro.com
  11348. X-Newsreader: IBM NewsReader/2 v1.02
  11349. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  11350.  
  11351. I wrote my own Kermit implementation from scratch about 10 years ago, using
  11352. just the protocol spec. A couple of years later I extended it with sliding
  11353. window and large packets, whereupon I finally added the obvious extension
  11354. of allowing a selective set of control chars to be unquoted.
  11355.  
  11356. I've noticed that this capability is now included in CKermit, and I would
  11357. like to make my program compatible with the standard.  (I assume this is
  11358. implemented as a single feature bit in the capability mask, plus a list
  11359. of characters to not quote, probably in the form of a bitset.)
  11360.  
  11361. Where can I find the current (190) protocol spec?
  11362.  
  11363. -Terje
  11364.  
  11365.  
  11366. From news@columbia.edu Wed Sep 28 14:36:54 1994
  11367. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02312
  11368.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 28 Sep 1994 10:37:30 -0400
  11369. Received: by apakabar.cc.columbia.edu id AA26460
  11370.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 28 Sep 1994 10:37:29 -0400
  11371. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!zip.eecs.umich.edu!quip.eecs.umich.edu!huggins
  11372. From: huggins@quip.eecs.umich.edu (Jim Huggins)
  11373. Newsgroups: comp.protocols.kermit.misc
  11374. Subject: MS-Kermit 3.13, TCP/IP, and PPP dial-in
  11375. Date: 28 Sep 1994 14:36:54 GMT
  11376. Organization: University of Michigan EECS Dept.
  11377. Lines: 18
  11378. Message-Id: <36bv26$8qc@zip.eecs.umich.edu>
  11379. Nntp-Posting-Host: quip.eecs.umich.edu
  11380. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  11381.  
  11382. My local university runs a dial-in port which accepts PPP dial-ins.
  11383. I'm trying to figure out how to get my MS-Kermit 3.13 to interface
  11384. with PPP.  
  11385.  
  11386. I see from the MS-Kermit book that there are a number of
  11387. 'set tcp/ip' commands that can be issued.  I'm also rather new at this
  11388. stuff (I've only used MS-Kermit in the 'usual' asynchronous mode
  11389. until now), so I'm a little unclear as to what I need to do to
  11390. get my PPP dial-in package to work with Kermit TCP/IP support.
  11391.  
  11392. Anyone out there doing this type of thing themselves?  I'd ask 
  11393. clearer questions but as yet I don't know what I don't know.
  11394.  
  11395.  
  11396. -- 
  11397. Jim Huggins, Univ. of Michigan                          huggins@eecs.umich.edu
  11398. "You cannot pray to a personal computer no matter how user-friendly it is."
  11399. (PGP key available upon request)                             W. Bingham Hunter
  11400.  
  11401. From news@columbia.edu Wed Sep 28 14:38:17 1994
  11402. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02368
  11403.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 28 Sep 1994 10:38:19 -0400
  11404. Received: by apakabar.cc.columbia.edu id AA26507
  11405.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 28 Sep 1994 10:38:18 -0400
  11406. Path: news.columbia.edu!usenet
  11407. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  11408. Newsgroups: comp.protocols.kermit.misc
  11409. Subject: Re: Windows Kermit?
  11410. Date: 28 Sep 1994 14:38:17 GMT
  11411. Organization: Columbia University
  11412. Lines: 15
  11413. Distribution: World
  11414. Message-Id: <36bv4p$ps8@apakabar.cc.columbia.edu>
  11415. References: <1994Sep28.001400.10550@emba.uvm.edu>
  11416. Nntp-Posting-Host: fdc.cc.columbia.edu
  11417. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  11418.  
  11419. In article <1994Sep28.001400.10550@emba.uvm.edu> rdangel@moose.uvm.edu  
  11420. (Robert S. Dangel) writes:
  11421. > Is there a windows version of PC Kermit? I have qmodem Pro and
  11422. > the Kermit protocol doesn't work with the UNIX machines..  
  11423. >
  11424. The only full-function version of Kermit for Windows is MS-DOS Kermit,
  11425. currently version 3.13.  It is a Windows-aware DOS application.  Until
  11426. and unless we are able to create a native Windows version with anywhere
  11427. near the same degree of functionality, we recommend and support MS-DOS
  11428. Kermit for use with Windows.
  11429.  
  11430. Anonymous ftp to kermit.columbia.edu, directory kermit/bin, binary mode,
  11431. file msvibm.zip.
  11432.  
  11433. - Frank
  11434.  
  11435. From news@columbia.edu Wed Sep 28 15:20:29 1994
  11436. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08371
  11437.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 28 Sep 1994 11:51:57 -0400
  11438. Received: by apakabar.cc.columbia.edu id AA02331
  11439.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 28 Sep 1994 11:51:56 -0400
  11440. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!uunet!news1.digex.net!usenet
  11441. From: Chris Milton <cmilton@access4.digex.net>
  11442. Newsgroups: comp.protocols.kermit.misc
  11443. Subject: Newer QL-Kermit?
  11444. Date: Wed, 28 Sep 1994 11:20:29 -0400 (EDT)
  11445. Organization: Express Access Online Communications, USA
  11446. Lines: 15
  11447. Message-Id: <Pine.SUN.3.90.940928111444.544A-100000@access4.digex.net>
  11448. Nntp-Posting-Host: access4.digex.net
  11449. Mime-Version: 1.0
  11450. Content-Type: TEXT/PLAIN; charset=US-ASCII
  11451. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  11452.  
  11453.  
  11454. Has anyone written a newer QL-Kermit for the
  11455. Sinclair Quantum Leap computer?
  11456. The QL-Kermit versions available from kermit.columbia.edu
  11457. use proprietary versions of BCPL and C, and
  11458. have few of the currently supported features
  11459. found in C-Kermit and MS-Kermit.
  11460.  
  11461. Christopher Milton  cmilton@access.digex.net
  11462. BA, linguistics, Macalester College, 1989   Work  (703) 358-5945
  11463. Arlington (VA) Central Library/Circulation/Reserves
  11464. My other cumputer {is,will be} a Sinclair QL, eh.
  11465.  
  11466.  
  11467.  
  11468.  
  11469. From news@columbia.edu Wed Sep 28 15:59:00 1994
  11470. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08978
  11471.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 28 Sep 1994 11:59:09 -0400
  11472. Received: by apakabar.cc.columbia.edu id AA03030
  11473.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 28 Sep 1994 11:59:07 -0400
  11474. Path: news.columbia.edu!usenet
  11475. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  11476. Newsgroups: comp.protocols.kermit.misc
  11477. Subject: FTP Mirror Sites and CDROMs
  11478. Date: 28 Sep 1994 15:59:00 GMT
  11479. Organization: Columbia University
  11480. Lines: 125
  11481. Distribution: World
  11482. Message-Id: <36c3s4$2u4@apakabar.cc.columbia.edu>
  11483. Nntp-Posting-Host: fdc.cc.columbia.edu
  11484. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  11485.  
  11486. Dear friends,
  11487.  
  11488. I suppose I knew that this newsgroup would not last more than a week
  11489. before it deteriorated into a hot debate over software distribution
  11490. policies.  I have received numerous personal message to the effect of
  11491. "you are shooting yourself in the foot", "please reconsider!", "why
  11492. don't you charge for support?", "why don't you set up a 900 number?",
  11493. etc etc.  I don't have time to respond to each of these personally,
  11494. so I trust their senders are reading this.
  11495.  
  11496. The idea of this newsgroup is to exchange useful information about Kermit
  11497. software.  Rather than the developers and tech support people answering
  11498. questions on a one-to-one basis (which, of course, we still do), we hoped
  11499. that also answering them in a public forum would increase our productivity
  11500. and yours -- allowing us to spend less time on tech support and more on
  11501. development, since more people would see each question and answer, and
  11502. allowing users to see answers to their questions in many cases before they
  11503. even asked them.  Meanwhile, we have been working hard on new releases of
  11504. all the major Kermit programs, and the last thing we -- or you, dear
  11505. readers -- need is to be drawn into yet another endless debate over our
  11506. software distribution policies, a debate which has already run its course
  11507. many times over on other newsgroups.
  11508.  
  11509. Please pay attention to the following points:
  11510.  
  11511. NOTHING HAS CHANGED.  There is nothing new going on.  Look at the
  11512. copyright notice (this one is from C-Kermit):
  11513.  
  11514.   Copyright (C) 1985, 1994, Trustees of Columbia University in the City of
  11515.   New York.  The C-Kermit software may not be, in whole or in part,
  11516.   licensed or sold for profit as a software product itself, nor may it be
  11517.   included in or distributed with commercial products or otherwise
  11518.   distributed by commercial concerns to their clients or customers without
  11519.   written permission of the Office of Kermit Development and Distribution,
  11520.   Columbia University.  This copyright notice must not be removed,
  11521.   altered, or obscured.
  11522.  
  11523. What does this mean?  It does NOT mean that there cannot be ftp mirror
  11524. sites.  There have ALWAYS been ftp mirror sites.  It DOES mean that our
  11525. software cannot be SOLD by anyone without our permission.  This is nothing
  11526. more than common sense.  When the proprietor of a particular ftp site
  11527. posts a public message saying "Due to Columbia's restrictive prohibitions
  11528. we are removing all Kermit software from our server", think about what
  11529. they are really saying: "Because Columbia University won't let us copy
  11530. their copyrighted software, without their permission, onto our CDROM which
  11531. we sell, we are taking it off our ftp server, which also serves as the
  11532. master for our CDROM."  Quite honestly, and with no intention of offending
  11533. any particular, this means that they are not willing or able to set up
  11534. special procedures for making CDROMs that are not wholesale copies of
  11535. their ftp directories.
  11536.  
  11537. We have not asked ANYBODY to remove Kermit software from their ftp sites.
  11538.  
  11539. But, as I have stated repeatedly, if you get Kermit software from one of
  11540. these ftp mirror sites, and you have problems with it, it is very likely
  11541. going to be difficult for us to help you with your problems because we
  11542. have no control over those sites and we do not know, and do not have the
  11543. time to learn, which files, which versions, are there and how they might
  11544. have been reorganized, renamed, or edited, and even if we discover
  11545. problems with the Kermit software at these sites, we have no way to
  11546. correct them, and even if we did, it would be a waste of our time.
  11547.  
  11548. If, however, you get Kermit software from Columbia by ftp or by mail
  11549. order, then we can help you because we KNOW what we have, and if there are
  11550. mistakes we can correct them.
  11551.  
  11552. Thus, we RECOMMEND that if you are ftp'ing Kermit software from somewhere,
  11553. that somewhere should be kermit.columbia.edu.
  11554.  
  11555. This is not to say that some of the ftp sites, such as Garbo and Simtel
  11556. (which I have never had the time to check out personally, because I have
  11557. too many other, higher-priority demands on my time), are not 100% faithful
  11558. and up-to-date and perhaps even carry some added value.  If you find an
  11559. ftp site other than Columbia that you can trust, fine -- use it.  But
  11560. before you come to us for help, make sure the problems you are
  11561. experiencing were not introduced at the mirror site.
  11562.  
  11563. Now, about CDROMs...  No, you can't put our software on a CDROM and sell
  11564. it without our permission, period.  You can't put ANYBODY'S copyrighted
  11565. software on a CDROM and sell it without permission of the copyright
  11566. holder.
  11567.  
  11568. They key word here is "permission".  Just ask.  We'll discuss it and see
  11569. how mutually beneficial terms can be arranged.  And in fact that is exactly
  11570. what is happening in numerous cases, including with Garbo and Simtel, and
  11571. some of the Linux distributors, etc.  We don't need to flood the airwaves
  11572. with inflammatory postings based upon incomplete knowledge.
  11573.  
  11574. Just remember that without an agreement that is beneficial to both the
  11575. CDROM maker and Columbia, the CDROM maker gets the money and we get the
  11576. extra work, AND we lose income we might otherwise have had.
  11577.  
  11578. I appreciate the many suggestions about how we can make the money we need,
  11579. but we already know our options.  Please remember that Kermit software
  11580. comes from a University and our "business" operates under constraints that
  11581. you are not familiar with, and you don't need to be.
  11582.  
  11583. As an end-user, you can get Kermit software, with quality control, with
  11584. support, all free (unless of course you elect to purchase the
  11585. documentation, which we view as a good investment -- it saves you time,
  11586. gives you quick access to all the features of the software, frees up our
  11587. time for more productive work, and helps pay for our continued development
  11588. and support efforts).
  11589.  
  11590. As an entrepreneur, however, if you want to make money from our work, you
  11591. have to give something back, and you have to discuss this with us and
  11592. reach an agreement before you can go ahead.
  11593.  
  11594. If there are still people who believe that we should place no restrictions
  11595. on the commercial redistribution of our software, just remember the story
  11596. of the goose that laid the golden egg.  I would like to think that there
  11597. are people who would like to see the Kermit effort continue, and these
  11598. people have to understand that we need to fund our work, and we want to do
  11599. this in the way that is least painful and offensive to the END USER.
  11600.  
  11601. If, however, these constant attacks on our policies continue, forces will
  11602. eventually come into play that will compel us to take a more rigid stance,
  11603. or shut down altogether, and everybody will lose.  So please, let us run
  11604. our own "business", use our software in good health, and let's put this
  11605. newsgroup back as it was last week -- a forum for the exchange of useful
  11606. information.
  11607.  
  11608. Thanks.
  11609.  
  11610. - Frank
  11611.  
  11612. From news@columbia.edu Wed Sep 28 03:33:50 1994
  11613. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14601
  11614.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 28 Sep 1994 13:01:14 -0400
  11615. Received: by apakabar.cc.columbia.edu id AA08745
  11616.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 28 Sep 1994 13:01:13 -0400
  11617. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!charnel.ecst.csuchico.edu!olivea!sgigate.sgi.com!sgiblab!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  11618. From: jrd@cc.usu.edu (Joe Doupnik)
  11619. Newsgroups: comp.protocols.kermit.misc
  11620. Subject: Re: Columbia University MS-Kermit files removed from SimTel
  11621. Message-Id: <1994Sep28.093351.28046@cc.usu.edu>
  11622. Date: 28 Sep 94 09:33:50 MDT
  11623. References: <9409270646.kp1130@simtel.coast.net> <3699u3$fe9@Venus.mcs.com> <1994Sep27.125004.27971@cc.usu.edu> <36arh5$qpp@Mercury.mcs.com>
  11624. Organization: Utah State University
  11625. Lines: 33
  11626. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  11627.  
  11628. In article <36arh5$qpp@Mercury.mcs.com>, les@MCS.COM (Leslie Mikesell) writes:
  11629. > In article <1994Sep27.125004.27971@cc.usu.edu>,
  11630. > Joe Doupnik <jrd@cc.usu.edu> wrote:
  11631. >>The notice
  11632. >>says, amongst other things, a person/organization can't redistribute
  11633. >>the Columbia material for profit etc without prior clearance. That
  11634. >>seems to be very reasonable to me.
  11635. >>    Guess what's lacking about the Simtel CDROM distribution
  11636. >>process.
  11637. > The part that I don't understand is how the CDROM distribution is
  11638. > somehow different from the profit made by the internet providers
  11639. > and phone companies when someone arranges to ftp the files directly
  11640. > from Columbia.
  11641.     <part omitted>
  11642. > Les Mikesell
  11643. >   les@mcs.com
  11644. --------
  11645.     The CDROMs are sold for profit, based on the contained programs.
  11646. The attraction is not a nifty logo on the CDROM or fancy box or terrific
  11647. browser program, though such items are worthy of charging if desired, but
  11648. the target objects themselves, without which there won't be much attraction.
  11649. That's commercial activity, trading for profit in works copyrighted by others
  11650. and covered by copyright restrictions. 
  11651.     BBS operators making a profit offering the programs would be much
  11652. the same as the CDROM case, in my view.
  11653.     Internet service providers are selling time on their wires,
  11654. irrespective of the files or programs used at the other end of the wire.
  11655.     The copyright restriction says you can't make money selling our 
  11656. product without our permission.
  11657.     Guess who is going to all kinds of trouble to ensure that the programs
  11658. remain free?
  11659.     Joe D.
  11660.  
  11661. From news@columbia.edu Wed Sep 28 17:03:34 1994
  11662. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14840
  11663.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 28 Sep 1994 13:03:41 -0400
  11664. Received: by apakabar.cc.columbia.edu id AA08924
  11665.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 28 Sep 1994 13:03:40 -0400
  11666. Path: news.columbia.edu!usenet
  11667. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  11668. Newsgroups: comp.protocols.kermit.misc
  11669. Subject: Re: Newer QL-Kermit?
  11670. Date: 28 Sep 1994 17:03:34 GMT
  11671. Organization: Columbia University
  11672. Lines: 20
  11673. Distribution: World
  11674. Message-Id: <36c7l6$8mi@apakabar.cc.columbia.edu>
  11675. References: <Pine.SUN.3.90.940928111444.544A-100000@access4.digex.net>
  11676. Nntp-Posting-Host: fdc.cc.columbia.edu
  11677. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  11678.  
  11679. In article <Pine.SUN.3.90.940928111444.544A-100000@access4.digex.net> Chris  
  11680. Milton <cmilton@access4.digex.net> writes:
  11681. > Has anyone written a newer QL-Kermit for the
  11682. > Sinclair Quantum Leap computer?
  11683. > The QL-Kermit versions available from kermit.columbia.edu
  11684. > use proprietary versions of BCPL and C, and
  11685. > have few of the currently supported features
  11686. > found in C-Kermit and MS-Kermit.
  11687. Not to my knowledge.  And knowing nothing about the QL,
  11688. I'd recommend -- if it does not have a restrictive memory
  11689. architecture and if it does have a C compiler -- adapting
  11690. C-Kermit.  If anybody is interested in pursuing this,
  11691. get in touch with me and I'll help get you started.
  11692.  
  11693. - Frank
  11694. x
  11695. x
  11696. x
  11697.  
  11698.  
  11699. From news@columbia.edu Wed Sep 28 17:46:28 1994
  11700. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19067
  11701.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 28 Sep 1994 13:46:33 -0400
  11702. Received: by apakabar.cc.columbia.edu id AA12533
  11703.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 28 Sep 1994 13:46:31 -0400
  11704. Path: news.columbia.edu!usenet
  11705. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  11706. Newsgroups: comp.protocols.kermit.misc
  11707. Subject: Re: Solved Kermit download problem, sort of
  11708. Date: 28 Sep 1994 17:46:28 GMT
  11709. Organization: Columbia University
  11710. Lines: 107
  11711. Distribution: World
  11712. Message-Id: <36ca5k$c7j@apakabar.cc.columbia.edu>
  11713. Nntp-Posting-Host: fdc.cc.columbia.edu
  11714. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  11715.  
  11716. Roland Kwee <rkwee@ee.pdx.edu> writes:
  11717. >  ... I reduced the packet size all the way down to 500
  11718. > bytes and 1 window. No problem for a file up to 1.2 MB sofar, and a
  11719. > throughput of 1029 cps. (on a 14.4KB V.42b connection). It seems to be a
  11720. > problem of buffer overflow, either in the remote cisco terminal server,
  11721. > or in the remote modem.
  11722. As you may know, Cisco terminal servers (certain models) support hardware
  11723. flow control in one direction only,  In any case, they must be configured
  11724. to use it, and so must the attached modem.
  11725.  
  11726. > By the way, on the cisco, I do a 'terminal download', on the remote
  11727. > Sun, I don't use stty to set crtscts, and the remote Kermit (189)
  11728. > says 'no modem signals available'.
  11729. Right -- it's on a pty.  Since you are coming in through a terminal server,
  11730. you should also tell the remote Kermit to "set flow none" since TCP/IP is
  11731. handling the flow control.
  11732.  
  11733. > Here is my question. What do you know about the packet size used by
  11734. > between the modems? This may be factor both in preventing buffer overflow
  11735. > at the remote cisco, and in the ultimate throughput. Using a small packet
  11736. > size less than 500 bytes, but just filling a modem block might be just
  11737. > very efficient. And the difference in result between my 200 and 250 byte
  11738. > packet size may be caused by the modems too.
  11739. Maybe -- you have many factors in play here: two modems, the serial side
  11740. of the terminal server, the configuration of the two modems, the
  11741. configuration of the terminal server port, the network side of the
  11742. terminal server, the telnet server on the host, the pty driver on the
  11743. host, etc -- you could spend a week or two trying to pin down exactly
  11744. where the bottleneck is.  And then you would know about only one
  11745. connection (on a given day!) out of an infinite number of possible
  11746. connections.
  11747.  
  11748. > So far, in the Kermit books, the issue of the terminal server is
  11749. > mentioned in passing, and the issue of the block protocol between the
  11750. > MNP5 and V42b modems not at all.
  11751. >
  11752. There is not much point in second-guessing the modems.  A detailed study
  11753. of the various MNP levels (at least ten at last count), V.42 and V.42bis,
  11754. and their interaction with the various modulation techniques as
  11755. implemented in a wide variety of chips from different manufacturers, as
  11756. programmed and packaged by an even wider variety of manufacturers, and the
  11757. specific interactions of modem A with modem B over a connection with
  11758. particular characteristics (noise, etc), transmitting a particular type of
  11759. data, would reveal very little that could be applied in the general case.
  11760. Even to the extent that MNPx and V.y are standards, their particular
  11761. implementation -- and variable parameters -- are completely unpredictable
  11762. from modem to modem, and from PROM version to PROM version in the same
  11763. modem make and model.  Some modems even have... bugs.
  11764.  
  11765. > Another, related issue, is that there are rumours that the modems
  11766. > actually connect SYNCHRONOUSLY.  They don't transmit the start and stop
  11767. > bits. As a result, the theoretical 100 percent throughput of a 14.4KB
  11768. > modem is not 1440 cps, but 1800 cps. Do you know anything about this?
  11769. >
  11770. Yes, the higher modem standards do this.  But the serial interfaces, in and
  11771. out, are still asynchronous, 10 bits per character.  And there is some
  11772. overhead to synchronous connections too, though generally far less than the
  11773. 20% overhead added by start & stop bits.  Plus the overhead added by the
  11774. HDLC-like error-correction protocols used by V.42, etc.
  11775.  
  11776. > Another issue that may be very important, but is not in the Kermit books,
  11777. > is what I call the size of the pipeline. With a packet size of p, and
  11778. > window size of w, there is a maximum of p times w bytes at any given 
  11779. > instant in buffers between the two kermits. I guess that if my 
  11780. > system administrator says that I should reduce the blocksize to 1000
  11781. > to prevent problems with the cisco, I should make p * w < 1000.
  11782. Correct.  But most modern Kermit programs will take care of this
  11783. themselves automatically, after the first few buffer overflows.  But of
  11784. course, you can get better performance if you set the optimal limit
  11785. beforehand, assuming you can find out what it is, and then it doesn't
  11786. change out from under you during the course of the transfer.
  11787.  
  11788. > If the flow control is not perfect between all components between
  11789. > the two kermits, those kermits maintain their own handshake with the
  11790. > ACK packets. To be absolutely safe, I should find the smallest buffer
  11791. > and keep p * w smaller than that buffer. And that buffer could well
  11792. > be the block size used by the modems.
  11793. Or any other limiting device.
  11794.  
  11795. > Sorry for my rambling style, but I am very excited that after so many
  11796. > months of struggling I finally get good results.
  11797. While it is sometimes helpful to understand the issues in elaborate
  11798. detail, in the final analysis there are limitations on every connection,
  11799. and the limitations apply to all protocols that want to use it.  The
  11800. easiest way to cope with a difficult connection is to (a) first, ensure
  11801. that you have the most effective possible means of flow control in effect
  11802. at every juncture of the connection, and then (b) conduct a few
  11803. experiments regarding packet length and window size, and use whatever
  11804. combination results in the highest throughput.
  11805.  
  11806. If the efficiency is still really bad, and it is a connection that will be
  11807. used a lot, it makes sense to devote some time to isolating and clearing
  11808. the bottleneck.  In a connection like this one, it is very likely to be
  11809. the buffering and/or flow-control capacity of the terminal server.  Over
  11810. the past years, I've done detailed evaluations of terminal servers and
  11811. found just about every one of them lacking in some crucial area: flow
  11812. control and/or buffer size and/or transparency.  There is also a tendency
  11813. for newer modems to be buggy, and there is also a good chance that your
  11814. line is noisy -- if your modem has a "retrain" light, keep an eye on it.
  11815.  
  11816. - Frank
  11817.  
  11818. From news@columbia.edu Wed Sep 28 19:42:42 1994
  11819. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26139
  11820.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 28 Sep 1994 15:05:38 -0400
  11821. Received: by apakabar.cc.columbia.edu id AA19276
  11822.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 28 Sep 1994 15:05:37 -0400
  11823. Newsgroups: comp.protocols.kermit.misc
  11824. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!charnel.ecst.csuchico.edu!nic-nac.CSU.net!usc!howland.reston.ans.net!swrinde!ihnp4.ucsd.edu!news.service.uci.edu!ttinews!mosspc.TTI.COM!moss
  11825. From: moss@tti.com (Les Moss)
  11826. Subject: Re: 16550A, PCI (Was: Computer hangs when line is dropped)
  11827. Message-Id: <moss.1.00CDD0BC@tti.com>
  11828. Lines: 105
  11829. Sender: usenet@ttinews.tti.com (Usenet Admin)
  11830. Nntp-Posting-Host: mosspc.tti.com
  11831. Organization: TTI
  11832. X-Newsreader: Trumpet for Windows [Version 1.0 Rev B final beta #1]
  11833. References: <35pesr$sun@liberator.et.tudelft.nl> <35rc73$l8s@archsrv.rz.unibw-muenchen.de>
  11834. Date: Wed, 28 Sep 1994 19:42:42 GMT
  11835. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  11836.  
  11837. In article <35rc73$l8s@archsrv.rz.unibw-muenchen.de> p41bsmk@applsrv.rz.unibw-muenchen.de (Peter Schmolck) writes:
  11838. >From: p41bsmk@applsrv.rz.unibw-muenchen.de (Peter Schmolck)
  11839. >Subject: 16550A, PCI (Was: Computer hangs when line is dropped)
  11840. >Date: 22 Sep 1994 07:37:07 GMT
  11841.  
  11842. >>I recently got a new PC. I transferred Kermit and all the scripts
  11843. >>it uses from my old to my new system. 
  11844. >[......]
  11845. >>On my old system (286, EMS, 16550A) this worked perfect. On my
  11846. >>new system (486, PCI, EMM386, 16550A) the computer hangs as soon
  11847. >>as the line is dropped after filling in all info.
  11848.  
  11849.  
  11850. >>Are there any known problems with PCI systems, 16550A's and Kermit?
  11851.  
  11852. The problem is probably your I/O chip which incorrectly emulates a
  11853. 16550 UART.  Here is a description of the problem and a source of fixes:
  11854.  
  11855. SMC 37C665 SUPER I/O CONTROLLER SERIAL PORT FAILURES 3-22-94
  11856.  
  11857. An incompatibility has been discovered between the Standard Microsystems
  11858. Corporation FDC37C665 Super I/O controller serial port and various
  11859. communication programs and serial port drivers.
  11860.  
  11861. DESCRIPTION OF PROBLEM
  11862.  
  11863. The SMC part powers up in the 16450 UART non-FIFO mode and is later
  11864. programmed by serial port drivers or communication programs "on the fly" to
  11865. operate in the 16550 UART mode with FIFOs.  If data has been received while
  11866. in the 16450 mode (be it power up garbage or valid data), it gets placed
  11867. into a holding buffer and the character pending bit of the status register
  11868. gets set.  Once the FDC37C665 is put in 16550 mode the holding register and
  11869. character pending status bit cannot be cleared.  Communication applications
  11870. see the bit set in the status register and begin reading the FIFO in an
  11871. attempt to empty it and clear the status bit.  The result is the status
  11872. register never gets cleared and the communication application is stuck in a
  11873. loop trying to clear it.
  11874.  
  11875. END USER IMPLICATIONS
  11876.  
  11877. Potentially, any application or driver that makes use of the serial port
  11878. FIFOs may exhibit this failure symptom.  Failures have been reported by
  11879. users running Microsoft Windows For Workgroups V3.11 TERMINAL.EXE
  11880. application with an external modem attached to the on-board serial port.
  11881. One failing scenario starts when the PC system is powered-up prior to the
  11882. modem being powered up and invalid characters get placed into the 16450
  11883. holding register.
  11884.  
  11885. The problem has also been reported when running Microsoft Windows V3.1 and
  11886. using a printer connected to the serial port.  The system experiences a
  11887. "lock -up" condition.
  11888.  
  11889. The problem can also show up while running DOS based communication programs
  11890. such as Procomm+ or Crosstalk.
  11891.  
  11892. SOLUTION
  11893.  
  11894. There are drivers available that allow error free operation in Windows for
  11895. Workgroups, Windows 3.1, and DOS .  The "new" drivers simply clear the 16450
  11896. holding register prior to switching from the 16450 mode to the 16550 mode.
  11897. There is no performance degradation experienced when using the "new"
  11898. drivers.  Please refer to the following description of the drivers.  These
  11899. drivers have been through regression testing and are known to be "robust".
  11900. They are available on the Intel BBS (916-356-3600) under file name
  11901. SMC_FIFO.EXE (a self-extracting ZIP file).  SMC_FIFO.EXE contains the
  11902. following files:
  11903.  
  11904. FILE NAME       OPERATING SYSTEM        COMMENTS
  11905.  
  11906. README.TXT      N/A                     A copy of this text file.
  11907.  
  11908. SERIAL.386      Windows for Workgroups  MS WfW serial port driver.
  11909. SERIAL.TXT      N/A                     Install instructions for SERIAL.386.
  11910.  
  11911. COMM.DRV        Windows 3.1             MS Win3.1 comm port driver.
  11912. COMM.TXT        N/A                     Install instructions for COMM.DRV.
  11913.  
  11914. COMS.EXE        DOS                     Executable file to be run prior to
  11915.                                         starting DOS communications S/W.
  11916. COMS.TXT        N/A                     Readme file for COMS.EXE.
  11917.  
  11918.  
  11919. These drivers are also available on the SMC BBS (516-273-4936) and the
  11920. Microsoft BBS (206-936-6735) under the following file names:
  11921.  
  11922. FILE NAME       OPERATING SYSTEM        COMMENTS
  11923.  
  11924. WG1001.EXE      Windows for Workgroups  Self-extracting zip file.  This 
  11925.                                         driver is currently being shipped 
  11926.                                         with the OEM versions of WFW.
  11927.  
  11928.  
  11929. COMM.ZIP        Windows 3.1             
  11930.  
  11931.  
  11932. UART550.EXE     DOS                     Self-extracting zip file.  The 
  11933.                                         file can be added to a batch file 
  11934.                                         to run prior to running the DOS 
  11935.                                         communication program.
  11936.  
  11937.  
  11938. In the May/June time frame, SMC will release a new stepping of the 
  11939. component that fixes this problem.  We will use this new stepping of the 
  11940. component on new product builds when it becomes available.
  11941.  
  11942.  
  11943. From news@columbia.edu Wed Sep 28 20:52:40 1994
  11944. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11825
  11945.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 28 Sep 1994 18:19:23 -0400
  11946. Received: by apakabar.cc.columbia.edu id AA06042
  11947.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 28 Sep 1994 18:19:20 -0400
  11948. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!swiss.ans.net!prodigy.com!prodigy.com!not-for-mail
  11949. From: davidsen@usenety1.news.prodigy.com (Bill Davidsen)
  11950. Newsgroups: comp.protocols.kermit.misc
  11951. Subject: Re: Kermit Access/Availability
  11952. Date: 28 Sep 1994 16:52:40 -0400
  11953. Organization: Prodigy Services
  11954. Lines: 62
  11955. Distribution: World
  11956. Message-Id: <36cl2o$cmq@usenety1.news.prodigy.com>
  11957. References: <36a12c$4qu@news.halcyon.com> <36a9p5$q9n@apakabar.cc.columbia.edu>
  11958. Nntp-Posting-Host: loopback.news.prodigy.com
  11959. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  11960.  
  11961. In article <36a9p5$q9n@apakabar.cc.columbia.edu>,
  11962.  
  11963. :This is sad, because the slick software industry has put forward the
  11964. :idea that all one needs to do is click on something and the magic is
  11965. :unleashed, which is completely untrue and misleading in the case of
  11966. :communications software.
  11967.  
  11968. Those of us writing and giving away software are doing a good job of
  11969. making it easier to use, too. My modem accepts incoming calls and
  11970. establishes a connection in the appropriate way, and tells me what it is
  11971. while keeping my DTE at 38400 all the time. I have ripped autobauding
  11972. code out of my getty and every other program because "magic happens."
  11973.  
  11974. :                          They raise the expectations of users unreasonably
  11975. :high.
  11976.  
  11977. Nope they/we raise the expectations of users *reasonably* high.
  11978.  
  11979. :       There is no way that communications software can know what is going
  11980. :on outside the computer, and I maintain that there is no way that it can
  11981. :even test for this in a nonobtrusive, nondestructive fashion.
  11982.  
  11983. You may maintain that, but if Kermit doesn't start negotiating all this
  11984. window size and number of windows stuff between modern implementations,
  11985. then people will go to some program which does "work right" in most
  11986. cases. The idea of sending a "here's the packet size I can talk and my
  11987. windows limit, and my install file says eight bit clean" doesn't sound
  11988. destructive to me, and currect versions of Kermit smile and send back a
  11989. "say what?" message.
  11990.  
  11991. :I think that those of us on this newsgroup are capable of entering the
  11992. :two or three commands needed to make Kermit transfers default any way we
  11993. :want them to.  The question is what the DEFAULT defaults should be for
  11994. :somebody who doesn't know anything and swallows the hype.  I think the
  11995. :conservative ones are still the most appropriate.
  11996.  
  11997. The user community keeps "raising the bar" on ease of use. no one is
  11998. complaining about the defaults, they're complaining about having to tune
  11999. them instead of having them negotiated. About having to set buffer size
  12000. instead of having the program try to get memory and using it well,
  12001. instead of using a reasonable rule of thumb instead of "one miniscule
  12002. buffer." Have the sender start with three 1k buffers and tune up or down
  12003. until a buffer take about 1500-2000ms to send or the error rate goes up.
  12004.  
  12005. The way to fund the Kermit support is to make the program less arcane,
  12006. have it work right more of the time, and use the saved time to program
  12007. improvements. Restricting distribution so average users don't get it
  12008. with popular collections is not going to increase usage, and if there is
  12009. a user who isn't aware that s/he should get newer versions of
  12010. everything, they're hiding.
  12011.  
  12012. In the last week you have gotten two major sites to stop distributing
  12013. Kermit. You may think the world will beat a path to your ftp site now,
  12014. but I bet people will just take another program off the site they know,
  12015. or the CD of the collection from that site, and if it's shareware at
  12016. least a few will register. Chuck Forsberg (sp?) must be dancing in
  12017. glee.
  12018.  
  12019. -- 
  12020. Speaking *from* but never *for* Prodigy
  12021.     "Pain builds moral fiber"  -my dad
  12022.     "Pain hurts"  -me
  12023.  
  12024. From news@columbia.edu Wed Sep 28 22:34:17 1994
  12025. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12726
  12026.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 28 Sep 1994 18:34:21 -0400
  12027. Received: by apakabar.cc.columbia.edu id AA07204
  12028.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 28 Sep 1994 18:34:20 -0400
  12029. Path: news.columbia.edu!usenet
  12030. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  12031. Newsgroups: comp.protocols.kermit.misc
  12032. Subject: Re: Kermit Access/Availability
  12033. Date: 28 Sep 1994 22:34:17 GMT
  12034. Organization: Columbia University
  12035. Lines: 30
  12036. Distribution: World
  12037. Message-Id: <36cr19$711@apakabar.cc.columbia.edu>
  12038. References: <36cl2o$cmq@usenety1.news.prodigy.com>
  12039. Nntp-Posting-Host: fdc.cc.columbia.edu
  12040. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  12041.  
  12042. In article <36cl2o$cmq@usenety1.news.prodigy.com>  
  12043. davidsen@usenety1.news.prodigy.com (Bill Davidsen) writes:
  12044. > In article <36a9p5$q9n@apakabar.cc.columbia.edu>,
  12045. > ...
  12046. > The user community keeps "raising the bar" on ease of use. no one is
  12047. > complaining about the defaults, they're complaining about having to tune
  12048. > them instead of having them negotiated. About having to set buffer size
  12049. > instead of having the program try to get memory and using it well,
  12050. > instead of using a reasonable rule of thumb instead of "one miniscule
  12051. > buffer." Have the sender start with three 1k buffers and tune up or down
  12052. > until a buffer take about 1500-2000ms to send or the error rate goes up.
  12053. Sure it would be great if we could get it to work automatically every time.
  12054. Perhaps I downplayed what it already does automatically.  Packet size and
  12055. window size are indeed negotiated, and the actual packet length and window
  12056. size varies during the transfer according to prevailing conditions, but
  12057. never above the negotiated lengths.
  12058.  
  12059. Parity (Even, Odd, or Mark) is discovered automatically by the protocol.
  12060.  
  12061. Timers are a bit trickier and need more work to be optimized automatically
  12062. on a dynamic basis as conditions change.
  12063.  
  12064. Control-character unprefixing cannot be negotiated.  That's because neither
  12065. Kermit program knows anything about what boxes are lying between the two
  12066. Kermit programs, and so can never say with any certainty that a particular
  12067. control character is safe.  You can't send a test pattern either, without
  12068. the risk of breaking or hopelessly wedging the connection.
  12069.  
  12070. - Frank
  12071.  
  12072. From news@columbia.edu Wed Sep 28 21:32:09 1994
  12073. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13409
  12074.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 28 Sep 1994 18:46:06 -0400
  12075. Received: by apakabar.cc.columbia.edu id AA08214
  12076.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 28 Sep 1994 18:46:05 -0400
  12077. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!charnel.ecst.csuchico.edu!nic-nac.CSU.net!usc!math.ohio-state.edu!cs.utexas.edu!swrinde!howland.reston.ans.net!EU.net!sunic!news.funet.fi!zippo.uwasa.fi!uwasa.fi!ts
  12078. From: ts@uwasa.fi (Timo Salmi)
  12079. Newsgroups: comp.protocols.kermit.misc
  12080. Subject: Re: Columbia University MS-Kermit files suspended at Garbo
  12081. Date: 28 Sep 1994 21:32:09 GMT
  12082. Organization: University of Vaasa
  12083. Lines: 15
  12084. Message-Id: <36cncp$oac@zippo.uwasa.fi>
  12085. References: <ts9409272153.29032@chyde.uwasa.fi>
  12086. Nntp-Posting-Host: uwasa.fi
  12087. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  12088.  
  12089. In article <ts9409272153.29032@chyde.uwasa.fi> ts@chyde.uwasa.fi (Timo Salmi) writes:
  12090. :Tue 27-Sep-94: MsKermit utilities have been suspended at Garbo.  The
  12091.  
  12092. The negotiations to resolve the situation between Garbo and Columbia
  12093. have now broken down.  The MsKermit material has been permanently
  12094. withdrawn from Garbo.  From now on I am anwering no questions
  12095. relating to this matter or MsKermit or its availablity.
  12096.  
  12097.    All the best, Timo
  12098.  
  12099. ..................................................................
  12100. Prof. Timo Salmi      Co-moderator of comp.archives.msdos.announce
  12101. Moderating at garbo.uwasa.fi anonymous FTP  archives  128.214.87.1
  12102. Faculty of Accounting & Industrial Management; University of Vaasa
  12103. Internet: ts@uwasa.fi   BBS +(358)-61-3170972; FIN-65101,  Finland
  12104.  
  12105. From news@columbia.edu Wed Sep 28 21:57:30 1994
  12106. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17622
  12107.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 28 Sep 1994 19:55:13 -0400
  12108. Received: by apakabar.cc.columbia.edu id AA13342
  12109.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 28 Sep 1994 19:55:12 -0400
  12110. Path: news.columbia.edu!panix!MathWorks.Com!solaris.cc.vt.edu!insosf1.infonet.net!mcrware.microware.com!jejones
  12111. From: jejones@microware.com (James Jones)
  12112. Newsgroups: comp.protocols.kermit.misc
  12113. Subject: info utilities and old Kermits
  12114. Date: 28 Sep 1994 21:57:30 GMT
  12115. Organization: Microware Systems Corp., Des Moines, Iowa
  12116. Lines: 12
  12117. Distribution: world
  12118. Message-Id: <36cosa$639@mcrware.microware.com>
  12119. Nntp-Posting-Host: snake.microware.com
  12120. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  12121.  
  12122. I use a certain "information utility," and in the past I used a different
  12123. one (it cost too much).  I'd love to use Kermit for file transfers to/from
  12124. it--end-of-line conversion for text files is a pain--but the utility has
  12125. a very old, limited Kermit, and despite repeated pleas has no apparent
  12126. intention of upgrading.  Does anyone keep track of what services out
  12127. there support up-to-date Kermit file transfer?
  12128.  
  12129.     James Jones
  12130.  
  12131. Opinions herein are those of the author, and not necessarily those of
  12132. any organization.
  12133.  
  12134.  
  12135. From news@columbia.edu Thu Sep 29 00:34:28 1994
  12136. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23208
  12137.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 28 Sep 1994 21:37:48 -0400
  12138. Received: by apakabar.cc.columbia.edu id AA20823
  12139.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 28 Sep 1994 21:37:45 -0400
  12140. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!concert!balsam!usenet
  12141. From: Honeycutt@unca.edu (Mike Honeycutt)
  12142. Newsgroups: comp.protocols.kermit.misc
  12143. Subject: "Just Send It" mode - possible?
  12144. Date: 29 Sep 1994 00:34:28 GMT
  12145. Organization: UNC Asheville University Computing
  12146. Lines: 12
  12147. Message-Id: <36d22k$9mt@balsam.unca.edu>
  12148. Nntp-Posting-Host: mikeh.cc.unca.edu
  12149. X-Newsreader: WinVN version 0.80
  12150. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  12151.  
  12152. I have a basic understanding of how when downloading/uploading
  12153. a file Kermit sends a packet, waits for other Kermit to acknowledge
  12154. receiving it, sends another packet, etc.
  12155.  
  12156. Would it be possible to tell the sending Kermit to "Just Send It"
  12157. without the error checking?  Most of our asyn lines on campus
  12158. are very clean (not including modems) and I would put up with
  12159. the occasional corrupt file to make the download go faster.
  12160.  
  12161. (BTW, the person who established this newsgroup had a good idea).
  12162.  
  12163. Mike Honeycutt  UNC Asheville University Computing  honeycutt@unca.edu
  12164.  
  12165. From news@columbia.edu Thu Sep 29 01:47:53 1994
  12166. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23714
  12167.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 28 Sep 1994 21:47:56 -0400
  12168. Received: by apakabar.cc.columbia.edu id AA21534
  12169.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 28 Sep 1994 21:47:54 -0400
  12170. Path: news.columbia.edu!usenet
  12171. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  12172. Newsgroups: comp.protocols.kermit.misc
  12173. Subject: Re: "Just Send It" mode - possible?
  12174. Date: 29 Sep 1994 01:47:53 GMT
  12175. Organization: Columbia University
  12176. Lines: 23
  12177. Distribution: World
  12178. Message-Id: <36d6c9$l0s@apakabar.cc.columbia.edu>
  12179. References: <36d22k$9mt@balsam.unca.edu>
  12180. Nntp-Posting-Host: fdc.cc.columbia.edu
  12181. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  12182.  
  12183. In article <36d22k$9mt@balsam.unca.edu> Honeycutt@unca.edu (Mike Honeycutt)  
  12184. writes:
  12185. > I have a basic understanding of how when downloading/uploading
  12186. > a file Kermit sends a packet, waits for other Kermit to acknowledge
  12187. > receiving it, sends another packet, etc.
  12188. > Would it be possible to tell the sending Kermit to "Just Send It"
  12189. > without the error checking?  Most of our asyn lines on campus
  12190. > are very clean (not including modems) and I would put up with
  12191. > the occasional corrupt file to make the download go faster.
  12192. No.  Noise is not the only reason for having packets with error-checking
  12193. and sequencing information.  I'd go into detail here, but I'm kind of
  12194. tired, and you can read about this in any networking text -- flow control
  12195. at various levels, presentation functions, etc.  And don't forget that
  12196. errors can occur in many places other than the communication medium --
  12197. lost interrupts in a flaky PC, etc.
  12198.  
  12199. > (BTW, the person who established this newsgroup had a good idea).
  12200. I'm beginning to wonder...
  12201.  
  12202. - Frank
  12203.  
  12204. From news@columbia.edu Thu Sep 29 08:43:37 1994
  12205. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12763
  12206.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 29 Sep 1994 05:23:28 -0400
  12207. Received: by apakabar.cc.columbia.edu id AA13590
  12208.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 29 Sep 1994 05:23:27 -0400
  12209. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!convex!cs.utexas.edu!swrinde!howland.reston.ans.net!EU.net!sun4nl!news.nic.surfnet.nl!tudelft.nl!liberator.et.tudelft.nl!dutepp6.et.tudelft.nl!richard
  12210. From: richard@dutepp6.et.tudelft.nl (Richard Kooijman)
  12211. Newsgroups: comp.protocols.kermit.misc
  12212. Subject: Re: 16550A, PCI (Was: Computer hangs when line is dropped)
  12213. Date: 29 Sep 1994 08:43:37 GMT
  12214. Organization: Delft University of Technology, Dept. of Electrical Engineering
  12215. Lines: 55
  12216. Message-Id: <36dunp$6gh@liberator.et.tudelft.nl>
  12217. References: <35pesr$sun@liberator.et.tudelft.nl> <35rc73$l8s@archsrv.rz.unibw-muenchen.de> <moss.1.00CDD0BC@tti.com>
  12218. Nntp-Posting-Host: dutepp6.et.tudelft.nl
  12219. X-Newsreader: NN version 6.5.0 #1 (NOV)
  12220. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  12221.  
  12222. moss@tti.com (Les Moss) writes:
  12223.  
  12224. >DESCRIPTION OF PROBLEM
  12225.  
  12226. >The SMC part powers up in the 16450 UART non-FIFO mode and is later
  12227. >programmed by serial port drivers or communication programs "on the fly" to
  12228. >operate in the 16550 UART mode with FIFOs.  If data has been received while
  12229. >in the 16450 mode (be it power up garbage or valid data), it gets placed
  12230. >into a holding buffer and the character pending bit of the status register
  12231. >gets set.  Once the FDC37C665 is put in 16550 mode the holding register and
  12232. >character pending status bit cannot be cleared.  Communication applications
  12233. >see the bit set in the status register and begin reading the FIFO in an
  12234. >attempt to empty it and clear the status bit.  The result is the status
  12235. >register never gets cleared and the communication application is stuck in a
  12236. >loop trying to clear it.
  12237.  
  12238. In my case Kermit started up just fine, apparently using the chips in FIFO
  12239. mode, run a script, hung up the line and then failed.
  12240. It seems to me that after the hang-up Kermit is reinitializing the ports
  12241. all over again without testing first while the chips were already in FIFO mode.
  12242.  
  12243. BTW Kermit 3.14 (I got a beta version to test and they asked me not
  12244. to distribute, so don't ask) works fine, but I don't understand Joe's remarks
  12245. that only 2x4 cures helped. I don't think this is such a big problem with
  12246. the chips.
  12247.  
  12248. >There are drivers available that allow error free operation in Windows for
  12249. >Workgroups, Windows 3.1, and DOS .  The "new" drivers simply clear the 16450
  12250. >holding register prior to switching from the 16450 mode to the 16550 mode.
  12251.  
  12252. Is it just me or is this a wise thing to do anyway?
  12253. You'll lose a character I guess but you are switching modes and not picking
  12254. up on an existing communication.
  12255. BTW why doesn't the computer (or chips) come back to the living when
  12256. a character arrives that CAN be retrieved?
  12257.  
  12258. >They are available on the Intel BBS (916-356-3600) under file name
  12259. >SMC_FIFO.EXE (a self-extracting ZIP file).  SMC_FIFO.EXE contains the
  12260. >following files:
  12261.  
  12262. Could somebody place these files up for ftp somewhere?
  12263. Please, please.
  12264.  
  12265. >In the May/June time frame, SMC will release a new stepping of the 
  12266. >component that fixes this problem.  We will use this new stepping of the 
  12267. >component on new product builds when it becomes available.
  12268.  
  12269. I purchased my computer and card in September. I can't imagine my supplier
  12270. has a backlog of old components (or they are buying them cheap), so has there
  12271. been a delay in getting these new components out?
  12272.  
  12273. Thanks for the info!
  12274.  
  12275.  
  12276. Richard.
  12277.  
  12278. From news@columbia.edu Thu Sep 29 09:52:16 1994
  12279. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13921
  12280.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 29 Sep 1994 06:01:43 -0400
  12281. Received: by apakabar.cc.columbia.edu id AA14391
  12282.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 29 Sep 1994 06:01:41 -0400
  12283. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!convex!cs.utexas.edu!howland.reston.ans.net!EU.net!sunic!news.funet.fi!zippo.uwasa.fi!uwasa.fi!ts
  12284. From: ts@uwasa.fi (Timo Salmi)
  12285. Newsgroups: comp.protocols.kermit.misc,comp.archives.msdos.d
  12286. Subject: Re: Columbia University MS-Kermit files removed from SimTel
  12287. Followup-To: comp.protocols.kermit.misc
  12288. Date: 29 Sep 1994 09:52:16 GMT
  12289. Organization: University of Vaasa
  12290. Lines: 32
  12291. Message-Id: <36e2og$4ad@zippo.uwasa.fi>
  12292. References: <1994Sep27.125004.27971@cc.usu.edu> <36arh5$qpp@Mercury.mcs.com> <1994Sep28.093351.28046@cc.usu.edu>
  12293. Nntp-Posting-Host: uwasa.fi
  12294. Xref: news.columbia.edu comp.protocols.kermit.misc:293 comp.archives.msdos.d:8832
  12295. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  12296.  
  12297. In article <1994Sep28.093351.28046@cc.usu.edu> jrd@cc.usu.edu (Joe Doupnik) writes:
  12298. :    The CDROMs are sold for profit, based on the contained programs.
  12299. :The attraction is not a nifty logo on the CDROM or fancy box or terrific
  12300. :browser program, though such items are worthy of charging if desired, but
  12301. :the target objects themselves, without which there won't be much attraction.
  12302. :That's commercial activity, trading for profit in works copyrighted by others
  12303. :and covered by copyright restrictions. 
  12304.  
  12305. Partly, but it is much more than that.  For example SimTel (and
  12306. Garbo if we'll have a CDROM) sell the directory arrangements, the
  12307. index files, the huge amount of work done in preselection, the virus
  12308. and integrity testing performed on the material.  Of course those
  12309. could not exists without the existence of the actual authors'
  12310. product, but saying "trading for profit in works copyrighted by
  12311. others and covered by copyright restrictions" is far too narrow a
  12312. view to this issue as I have tried to point out in private
  12313. conversation. 
  12314.  
  12315. You have all the right to forbid us having your material on our
  12316. archives as a result of our material going to CDROMs.  That is
  12317. unequivocal, and we abide without a protest in that respect.  But
  12318. presenting us as commercially utilizing the work others is
  12319. inaccurate and highly oversimplified.  There is a considerable value
  12320. added in maintaining and making such colections.
  12321.  
  12322.    All the best, Timo
  12323.  
  12324. ..................................................................
  12325. Prof. Timo Salmi      Co-moderator of comp.archives.msdos.announce
  12326. Moderating at garbo.uwasa.fi anonymous FTP  archives  128.214.87.1
  12327. Faculty of Accounting & Industrial Management; University of Vaasa
  12328. Internet: ts@uwasa.fi   BBS +(358)-61-3170972; FIN-65101,  Finland
  12329.  
  12330. From news@columbia.edu Tue Sep 27 04:00:44 1994
  12331. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17553
  12332.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 29 Sep 1994 07:06:59 -0400
  12333. Received: by apakabar.cc.columbia.edu id AA16136
  12334.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 29 Sep 1994 07:06:49 -0400
  12335. Newsgroups: comp.protocols.kermit.misc
  12336. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!convex!cs.utexas.edu!utnut!torn!uunet.ca!uunet.ca!xenitec!nic.hookup.net!matrix!matrix.ajlc.waterloo.on.ca!ajlill
  12337. From: ajlill@matrix.AJLC.Waterloo.On.Ca (Tony Lill)
  12338. Subject: Re: Exiting kermit without modem hangup
  12339. In-Reply-To: fdc@fdc.cc.columbia.edu's message of 20 Sep 1994 18:28:06 GMT
  12340. Message-Id: <AJLILL.94Sep27000044@matrix.AJLC.Waterloo.On.Ca>
  12341. Sender: news@tlill.hookup.net (Net News Admin)
  12342. Organization: A. J. Lill Consultants, Cambridge, Ont.
  12343. References: <35koc2INNvl@ope001.iao.ford.com> <35n9jm$kui@apakabar.cc.columbia.edu>
  12344. Date: Tue, 27 Sep 1994 04:00:44 GMT
  12345. Lines: 36
  12346. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  12347.  
  12348. >>>>> "Frank" == Frank da Cruz <fdc@fdc.cc.columbia.edu> writes:
  12349. In article <35n9jm$kui@apakabar.cc.columbia.edu> fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  12350.  
  12351.  
  12352.     Frank> In article <35koc2INNvl@ope001.iao.ford.com>
  12353.     Frank> jamulla@iao.ford.com (John Jamulla) writes:
  12354.     >> Is it possible to exit kermit without dropping the phone line?
  12355.     >> 
  12356.     Frank> Remember there are hundreds of different Kermit programs.
  12357.     Frank> For some the answer is yes, for others it is no.  In UNIX,
  12358.     Frank> of course, the answer is no.  A fundamental aspect of the
  12359.     Frank> UNIX operating system is that when a process exits, all of
  12360.     Frank> its open files are closed.  There is no way around it.  But
  12361.     Frank> this is not really the question you wanted to ask.
  12362.  
  12363. Right answer, but wrong reason. I use a kermit script to automate
  12364. dialing up my IP providor on my UNIX box, and then it runs a script to
  12365. start up the slip link. When the slip link is up, the is another
  12366. process holding the device open, but much to my chagrin, when I exited
  12367. Kermit, it went out ot it's way to hang up the modem. What I ended up
  12368. doing was at the end ot the shell script that started slip, I grabbed
  12369. kermit's pid from the lock file and killed process (after playing with
  12370. the lock files so nothing else tried to go for the tty). This left the
  12371. device open, and slip running.
  12372.  
  12373. It would be nice if there was a cleaner way to exit Kermit without it
  12374. hanging up. If someone else is using kermit at the same time my slip
  12375. link comes up, they will be most dis-pleased! Now that I've grabbed
  12376. the source for C-Kermit 188, maybe I'll hack it in.
  12377.  
  12378. --
  12379. Tony Lill,                         Tony.Lill@AJLC.Waterloo.ON.CA
  12380. President, A. J. Lill Consultants                 (519) 241 2461
  12381. 539 Grand Valley Dr., Cambridge, Ont.    fax/data (519) 650 3571
  12382.  
  12383. "Welcome to All Things UNIX, where if it's not UNIX, it's CRAP!"
  12384.  
  12385. From news@columbia.edu Thu Sep 29 12:46:27 1994
  12386. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16497
  12387.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 29 Sep 1994 08:46:31 -0400
  12388. Received: by apakabar.cc.columbia.edu id AA20884
  12389.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 29 Sep 1994 08:46:30 -0400
  12390. Path: news.columbia.edu!usenet
  12391. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  12392. Newsgroups: comp.protocols.kermit.misc
  12393. Subject: Re: Exiting kermit without modem hangup
  12394. Date: 29 Sep 1994 12:46:27 GMT
  12395. Organization: Columbia University
  12396. Lines: 20
  12397. Message-Id: <36ecv3$kci@apakabar.cc.columbia.edu>
  12398. References: <AJLILL.94Sep27000044@matrix.AJLC.Waterloo.On.Ca>
  12399. Nntp-Posting-Host: fdc.cc.columbia.edu
  12400. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  12401.  
  12402. In article <AJLILL.94Sep27000044@matrix.AJLC.Waterloo.On.Ca>  
  12403. ajlill@matrix.AJLC.Waterloo.On.Ca (Tony Lill) writes:
  12404. > It would be nice if there was a cleaner way to exit Kermit without it
  12405. > hanging up. If someone else is using kermit at the same time my slip
  12406. > link comes up, they will be most dis-pleased! Now that I've grabbed
  12407. > the source for C-Kermit 188, maybe I'll hack it in.
  12408. When Kermit exits (_exit's), all open file descriptors are closed.  In
  12409. most UNIX operating systems, if you close a file descriptor on a tty
  12410. device, it turns off DTR, either momentarily or until the next open, thus
  12411. causing any attached modem to hang up unless it has been configured to
  12412. ignore DTR.  If you are able to prevent that from happening by having
  12413. another process use the same file descriptor, fine, but I can't swear that
  12414. this will work in all UNIX implementations -- any close vs last close, etc.
  12415.  
  12416. What you might be experiencing is a hangup due to Kermit sending the *modem*
  12417. command to hang up: <sec>plus-plus-plus<sec>ATH0<cr>.  To defeat this, all
  12418. you need to do is tell Kermit to "set dial modem-hangup off".
  12419.  
  12420. - Frank
  12421.  
  12422. From news@columbia.edu Thu Sep 29 13:31:31 1994
  12423. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19634
  12424.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 29 Sep 1994 09:31:35 -0400
  12425. Received: by apakabar.cc.columbia.edu id AA23866
  12426.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 29 Sep 1994 09:31:33 -0400
  12427. Path: news.columbia.edu!usenet
  12428. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  12429. Newsgroups: comp.protocols.kermit.misc
  12430. Subject: FTP Mirrors and CDROMs - again
  12431. Date: 29 Sep 1994 13:31:31 GMT
  12432. Organization: Columbia University
  12433. Lines: 26
  12434. Message-Id: <36efjj$n9m@apakabar.cc.columbia.edu>
  12435. Nntp-Posting-Host: fdc.cc.columbia.edu
  12436. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  12437.  
  12438. Yes, indeed, some sites like Garbo and Simtel add value to their
  12439. collections by adding an index, or scanning for viruses, or packaging
  12440. the files up in different ways, before copying them to CDROM.
  12441.  
  12442. But I'm willing to bet that the majority of CDROMs out there are nothing
  12443. more than get-rich-quick schemes.  Start up gopher in the evening, come
  12444. back in the morning, copy everything that came in to a tape, take it to a
  12445. fulfillment house that will cut 1000 CDROMs from it for a dollar each,
  12446. then advertise them for sale at $20 per.  Anybody can do it.
  12447.  
  12448. How do we tell the difference?  Even when a company adds value to our
  12449. product, why is it that their work should be compensated and not ours?
  12450.  
  12451. Finally, once again and for the last time:  We, Columbia University,
  12452. did not and never have told Garbo, Simtel, or any other site to remove
  12453. Kermit software from their archives.  These sites elected to remove
  12454. Kermit software for their own reasons, having nothing to do with our
  12455. policy -- or lack thereof -- toward ftp mirror sites.
  12456.  
  12457. I posted a long message about this yesterday, explaining our position in
  12458. detail, but Keith Peterson (of Simtel) was kind enough to point out that I
  12459. had mistakenly capitalized "World" in the Distribution field, and so many
  12460. sites might have rejected it, since the planets did not match.  I hesitate
  12461. to post it again lest the embers be fanned again into flames.
  12462.  
  12463. - Frank
  12464.  
  12465. From news@columbia.edu Wed Sep 28 11:29:13 1994
  12466. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21307
  12467.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 29 Sep 1994 09:59:29 -0400
  12468. Received: by apakabar.cc.columbia.edu id AA25721
  12469.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 29 Sep 1994 09:59:28 -0400
  12470. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!convex!cs.utexas.edu!usc!howland.reston.ans.net!agate!msuinfo!harbinger.cc.monash.edu.au!news.cs.su.oz.au!news.adelaide.edu.au!gateway.dircsa.org.au!gateway.dircsa.org.au!not-for-mail
  12471. From: arthur@gateway.dircsa.org.au (Arthur Marsh)
  12472. Newsgroups: comp.protocols.kermit.misc
  12473. Subject: Re: MS-Kermit with FOSSIL
  12474. Date: 28 Sep 1994 20:59:13 +0930
  12475. Organization: DIRCSA - Disability Information and Resource Centre
  12476. Lines: 30
  12477. Message-Id: <36bk29$mb9@gateway.dircsa.org.au>
  12478. References: <1994Sep23.130448.27699@cc.usu.edu>
  12479. Nntp-Posting-Host: gateway.dircsa.org.au
  12480. X-Newsreader: TIN [version 1.1 PL8]
  12481. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  12482.  
  12483. Joe Doupnik (jrd@cc.usu.edu) wrote:
  12484.  
  12485. : >   Bnu /F+ /L:1=19200 /M- /T=256 /R=4096 /Z2
  12486. : > 
  12487. : > MS-Kermit is quite happy with a simple set port 2 command to
  12488. : > work with BNU loaded on COM2:.
  12489. : > 
  12490. : > Are there any pitfalls to using kermit this way?
  12491. : -------------
  12492. :     If it works then the answer is no problem. Be sure to tell MSK
  12493. : to use a BIOS serial port (SET PORT BIOSn, n=1..4) rather than the hardware 
  12494. : port (COMx) so there will be no bus wars about hardware ownership. Your
  12495. : example suggests that you told Kermit to use the hardware, which it is
  12496. : able to do better than Fossil drivers. Since MSK tries to restore hardware
  12497. : to its pre-use state (but leaves DTR high and the speed where Kermit last
  12498. : used it, etc) you probably got away with stealing the port from BNU; no 
  12499. : guarantees that this always works.
  12500. :     The BNU docs should say that all applications should use it via
  12501. : Bios serial port Int 14h functions. I don't know if they do.
  12502.  
  12503. Hmm, I'll check with David Nugent (BNU author) about it, as SET PORT BIOS 2 
  12504. hasn't worked for me when BNU was loaded.
  12505.  
  12506. BTW, MS-Kermit has been great for logging modem connect failure diagnostics
  12507. when running a bbs.
  12508.  
  12509. -- 
  12510. Arthur Marsh, telephone +61-8-370-2365, fax +61-8-370-2133, +61-8-223-5082 
  12511.                arthur@gateway.dircsa.org.au, arthur@cswamp.apana.org.au
  12512. .endofsig
  12513.  
  12514. From news@columbia.edu Thu Sep 29 13:28:02 1994
  12515. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22665
  12516.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 29 Sep 1994 10:16:52 -0400
  12517. Received: by apakabar.cc.columbia.edu id AA27205
  12518.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 29 Sep 1994 10:16:51 -0400
  12519. Path: news.columbia.edu!panix!MathWorks.Com!zombie.ncsc.mil!news.duke.edu!convex!cs.utexas.edu!uunet!hearst.acc.Virginia.EDU!gems.vcu.edu!agnew
  12520. From: agnew@gems.vcu.edu (Brainwave Surfer)
  12521. Newsgroups: comp.protocols.kermit.misc
  12522. Subject: Are Columbia U's files still avial for FTP?
  12523. Message-Id: <1994Sep29.092803.1960@gems.vcu.edu>
  12524. Date: 29 Sep 94 09:28:02 -0400
  12525. References: <ts9409272153.29032@chyde.uwasa.fi> <36cncp$oac@zippo.uwasa.fi>
  12526. Organization: Medical College of Virginia
  12527. Lines: 12
  12528. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  12529.  
  12530.  
  12531. I can see both sides of this, Columbia U's, and us...  I still mourn the
  12532. loss of Kermit from the Net.  However, will the Columbia U's FTP site still
  12533. be open?  Do they have a Gopher server up yet?  
  12534.  
  12535. Jim
  12536.  
  12537.          /^^^\   \ /   Jim Agnew         | AGNEW@RUBY.VCU.EDU  (Internet)
  12538.         /      >  ||   Neurosurgery,     | AGNEW@VCUVAX        (Bitnet)
  12539.    /\_/     '   \  /   MCV-VCU           | This disc will self destruct in
  12540.  /________________>    Richmond, VA, USA | five seconds.  Good luck, Jim..."
  12541.     *** Error, brain bugcheck, mind rebooted...
  12542.  
  12543. From news@columbia.edu Thu Sep 29 15:22:39 1994
  12544. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28127
  12545.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 29 Sep 1994 11:22:45 -0400
  12546. Received: by apakabar.cc.columbia.edu id AA02461
  12547.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 29 Sep 1994 11:22:43 -0400
  12548. Path: news.columbia.edu!usenet
  12549. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  12550. Newsgroups: comp.protocols.kermit.misc
  12551. Subject: Re: Are Columbia U's files still avial for FTP?
  12552. Date: 29 Sep 1994 15:22:39 GMT
  12553. Organization: Columbia University
  12554. Lines: 19
  12555. Message-Id: <36em3v$2cm@apakabar.cc.columbia.edu>
  12556. References: <1994Sep29.092803.1960@gems.vcu.edu>
  12557. Nntp-Posting-Host: fdc.cc.columbia.edu
  12558. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  12559.  
  12560. In article <1994Sep29.092803.1960@gems.vcu.edu> agnew@gems.vcu.edu (Brainwave  
  12561. Surfer) writes:
  12562. > I can see both sides of this, Columbia U's, and us...  I still mourn the
  12563. > loss of Kermit from the Net.  However, will the Columbia U's FTP site still
  12564. > be open?  Do they have a Gopher server up yet?  
  12565. >
  12566. Come on, everybody -- nothing has changed.  Of course Kermit software is
  12567. available via ftp, just as it always was.  Once again, for the umpteenth
  12568. time, nobody has told ANYBODY to take Kermit software off their ftp sites.
  12569.  
  12570. Let me explain again, for the benefit of those who did not read my earlier
  12571. messages, some of which might not have been delivered.  The two sites who
  12572. posted announcements to this effect removed the Kermit files from their
  12573. archives because we could not reach an agreement about their SELLING our
  12574. software on CDROM.  There was no need at all for them to remove Kermit
  12575. from their ftp sites.  Complain to them about it, we had nothing to do with
  12576. it.  Our policies have not changed.
  12577.  
  12578. - Frank
  12579.  
  12580. From news@columbia.edu Thu Sep 29 15:04:00 1994
  12581. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01261
  12582.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 29 Sep 1994 11:49:00 -0400
  12583. Received: by apakabar.cc.columbia.edu id AA04674
  12584.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 29 Sep 1994 11:48:53 -0400
  12585. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!convex!cs.utexas.edu!swrinde!elroy.jpl.nasa.gov!netline-fddi.jpl.nasa.gov!news.byu.edu!cwis.isu.edu!u.cc.utah.edu!xmission!xmission!not-for-mail
  12586. From: fozz@xmission.com (Fozziliny Moo)
  12587. Newsgroups: comp.protocols.kermit.misc
  12588. Subject: Which ethernet card for MS-Kermit?
  12589. Date: 29 Sep 1994 09:04:00 -0600
  12590. Organization: XMission Public Access Internet (801 539 0900)
  12591. Lines: 23
  12592. Message-Id: <36el10$5hq@xmission.xmission.com>
  12593. Nntp-Posting-Host: xmission
  12594. Summary: Need recomendation on Net card.
  12595. Keywords: TCPIP, MS-Kermit, Ethernet
  12596. X-Newsreader: NN version 6.5.0 #2 (NOV)
  12597. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  12598.  
  12599.  
  12600. I need some recomendations for ethernet cards for PC's to connect a few
  12601. machines to a thin-coax feed which goes to a couple of Unix boxes (AIX,
  12602. but that probably doesn't matter). 
  12603.  
  12604. I've worked with MS-Kermit over Novell Netware on several occassions, but
  12605. now I am working in the absence of a PC network medium and would like to
  12606. use the thin coax just to Telnet (via MS-Kermit) to the Unix machines. 
  12607.  
  12608. Is an NE2000 compatible card going to work for me? Then do I just load 
  12609. IPX? Or do I use a different driver software? And then, if I understand
  12610. correctly, upon knowing the software interrupt of the device driver I 
  12611. can just go into MS-Kermit and say SET TCP/IP PACKET-DRIVER-INTERRUPT \xXX.
  12612.  
  12613. If someone can confirm or correct my assumptions here, I would appreciate it.
  12614. (Joe maybe?)
  12615.  
  12616. -Fozz (D L Barton)
  12617.  
  12618. -- 
  12619. ----fozz@xmission.com---------In Real Life: Doran L. Barton-----------------
  12620. ``Praise to the man who has commuted with Jehovah.''
  12621.     -A common misconception in Christian theology.
  12622.  
  12623. From news@columbia.edu Thu Sep 29 02:20:03 1994
  12624. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07756
  12625.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 29 Sep 1994 12:44:22 -0400
  12626. Received: by apakabar.cc.columbia.edu id AA09693
  12627.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 29 Sep 1994 12:44:17 -0400
  12628. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!agate!dog.ee.lbl.gov!news.cs.utah.edu!cc.usu.edu!jrd
  12629. From: jrd@cc.usu.edu (Joe Doupnik)
  12630. Newsgroups: comp.protocols.kermit.misc
  12631. Subject: Re: Kermit Access/Availability
  12632. Message-Id: <1994Sep29.082003.28169@cc.usu.edu>
  12633. Date: 29 Sep 94 08:20:03 MDT
  12634. References: <36a12c$4qu@news.halcyon.com> <36a9p5$q9n@apakabar.cc.columbia.edu> <36cl2o$cmq@usenety1.news.prodigy.com>
  12635. Distribution: world
  12636. Organization: Utah State University
  12637. Lines: 55
  12638. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  12639.  
  12640. In article <36cl2o$cmq@usenety1.news.prodigy.com>, davidsen@usenety1.news.prodigy.com (Bill Davidsen) writes:
  12641. > In article <36a9p5$q9n@apakabar.cc.columbia.edu>,
  12642. > :This is sad, because the slick software industry has put forward the
  12643. > :idea that all one needs to do is click on something and the magic is
  12644. > :unleashed, which is completely untrue and misleading in the case of
  12645. > :communications software.
  12646. > Those of us writing and giving away software are doing a good job of
  12647. > making it easier to use, too. My modem accepts incoming calls and
  12648. > establishes a connection in the appropriate way, and tells me what it is
  12649. > while keeping my DTE at 38400 all the time. I have ripped autobauding
  12650. > code out of my getty and every other program because "magic happens."
  12651. > :                          They raise the expectations of users unreasonably
  12652. > :high.
  12653. > Nope they/we raise the expectations of users *reasonably* high.
  12654. > :       There is no way that communications software can know what is going
  12655. > :on outside the computer, and I maintain that there is no way that it can
  12656. > :even test for this in a nonobtrusive, nondestructive fashion.
  12657. > You may maintain that, but if Kermit doesn't start negotiating all this
  12658. > window size and number of windows stuff between modern implementations,
  12659. > then people will go to some program which does "work right" in most
  12660. > cases. The idea of sending a "here's the packet size I can talk and my
  12661. > windows limit, and my install file says eight bit clean" doesn't sound
  12662. > destructive to me, and currect versions of Kermit smile and send back a
  12663. > "say what?" message.
  12664.     May I interject a little reality check here? Thanks.
  12665.     You are inventing straw men, those windows things. What you clearly
  12666. do not know is the protocol negotiates such items to the maximum common
  12667. denominator of both sides. That's exactly what you want isn't it: max
  12668. capability, automatically.
  12669.     You seem to think that a person can Command a comms channel into
  12670. submission ("here's the packet size...eight bit clean") and it will work. 
  12671. I wish you were correct so we could have less code and commands to give.
  12672. As we have been trying to explain, there are situations where one can't
  12673. run an automatic check, 8-bit cleanliness being one of them, buffer capacity
  12674. being another. Things break outside of the programs, they really do.
  12675.     So what's your real complaint?
  12676.     Well, I suspect it might be "It doesn't go at warp speed in MY
  12677. particular situation right out of the box." Right? Do you ever have to
  12678. adjust any comms program at all? No boxes to check, etc? What do you tell 
  12679. customers when the program doesn't work in their nebulous environment?
  12680.     Kermit settings are shipped to work the first time, which I presume
  12681. is a worthy goal of any program. Working faster (but one goal, another being
  12682. reliably) is available to anyone who reads a few pages and tries things in
  12683. their particular enviroment. And we provide the tools and documentation to 
  12684. cope with a wide variety of "their particular environments", yet you complain 
  12685. about that.
  12686.  
  12687.     Joe D.
  12688.  
  12689.  
  12690. From news@columbia.edu Thu Sep 29 06:00:38 1994
  12691. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18435
  12692.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 29 Sep 1994 15:17:42 -0400
  12693. Received: by apakabar.cc.columbia.edu id AA04568
  12694.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 29 Sep 1994 15:17:41 -0400
  12695. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!zip.eecs.umich.edu!newsxfer.itd.umich.edu!gatech!swrinde!howland.reston.ans.net!wupost!kuhub.cc.ukans.edu!falcon.cc.ukans.edu!jeff
  12696. Newsgroups: comp.protocols.kermit.misc
  12697. Subject: Re: Columbia University MS-Kermit files suspended at Garbo
  12698. Message-Id: <1994Sep29.110039.73644@kuhub.cc.ukans.edu>
  12699. From: jeff@falcon.cc.ukans.edu (Jeff Bangert)
  12700. Date: 29 Sep 94 11:00:38 CDT
  12701. References: <ts9409272153.29032@chyde.uwasa.fi>
  12702. Nntp-Posting-Host: falcon.cc.ukans.edu
  12703. X-Newsreader: TIN [version 1.2 PL2]
  12704. Lines: 16
  12705. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  12706.  
  12707. Timo Salmi (ts@chyde.uwasa.fi) wrote:
  12708. : Tue 27-Sep-94: MsKermit utilities have been suspended at Garbo.  The
  12709. : files have not yet been physically deleted, but their read
  12710. : permissions have been removed.  For all details of the situation
  12711. : please see the comp.protocols.kermit.misc newsgroup.  Please do not
  12712. : direct any queries about this to Garbo moderators.  Kermit is
  12713. : distributed from the Columbia University.  The support person there
  12714. : is Frank da Cruz fdc@watsun.cc.columbia.edu.
  12715.  
  12716. I just scanned all the messages on this group -- could not find an
  12717. announcement.  Could someone point me to it?
  12718.  
  12719. Thanks,
  12720.  
  12721. Jeff Bangert, Computer Center, University of Kansas
  12722. jeff@falcon.cc.ukans.edu
  12723.  
  12724. From news@columbia.edu Thu Sep 29 18:10:26 1994
  12725. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18645
  12726.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 29 Sep 1994 15:21:50 -0400
  12727. Received: by apakabar.cc.columbia.edu id AA04839
  12728.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 29 Sep 1994 15:21:49 -0400
  12729. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!math.ohio-state.edu!usenet
  12730. From: davis@pacific.mps.ohio-state.edu
  12731. Newsgroups: comp.protocols.kermit.misc
  12732. Subject: MS-Kermit question
  12733. Date: 29 Sep 1994 18:10:26 GMT
  12734. Organization: None
  12735. Lines: 26
  12736. Message-Id: <36evui$9t@mathserv.mps.ohio-state.edu>
  12737. Reply-To: davis@amy.tch.harvard.edu
  12738. Nntp-Posting-Host: pacific.mps.ohio-state.edu
  12739. X-Newsreader: S-Lang: slrn (0.1.4.0)
  12740. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  12741.  
  12742. Hi,
  12743.  
  12744.   This has been bugging me for a long time but I do not know what to do
  12745. about it:  Ctrl-ENTER returns a Ctrl-J character (linefeed).  Is there
  12746. anyway to suppress this?   That is, have Ctrl-ENTER simply return a RET
  12747. character?
  12748.  
  12749.   The reason I would like to see this is that I use the Ctrl key alot.
  12750. I hold down the Ctrl key using my left hand and somtimes press another
  12751. character using my right hand (e.g., Ctrl-k).  Then I will move my right
  12752. hand and press `enter'.  However, sometimes my left hand has not fully
  12753. released the Ctrl key yet and as a result, I get Ctrl-ENTER which Kermit
  12754. maps to a ^J.
  12755.  
  12756.   This might be a silly issue for most but I find it frustrating.
  12757.   
  12758. Thanks,  
  12759. --
  12760.      _____________
  12761. #___/John E. Davis\_________________________________________________________
  12762. #
  12763. # internet: davis@amy.tch.harvard.edu
  12764. #   bitnet: davis@ohstpy
  12765. #   office: 617-735-6746
  12766. #
  12767.  
  12768.  
  12769. From news@columbia.edu Thu Sep 29 19:39:46 1994
  12770. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20041
  12771.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 29 Sep 1994 15:39:54 -0400
  12772. Received: by apakabar.cc.columbia.edu id AA06278
  12773.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 29 Sep 1994 15:39:52 -0400
  12774. Path: news.columbia.edu!usenet
  12775. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  12776. Newsgroups: comp.protocols.kermit.misc
  12777. Subject: Re: MS-Kermit question
  12778. Date: 29 Sep 1994 19:39:46 GMT
  12779. Organization: Columbia University
  12780. Lines: 28
  12781. Message-Id: <36f562$63q@apakabar.cc.columbia.edu>
  12782. References: <36evui$9t@mathserv.mps.ohio-state.edu>
  12783. Nntp-Posting-Host: fdc.cc.columbia.edu
  12784. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  12785.  
  12786. In article <36evui$9t@mathserv.mps.ohio-state.edu>  
  12787. davis@pacific.mps.ohio-state.edu writes:
  12788. >   This has been bugging me for a long time but I do not know what to do
  12789. > about it:  Ctrl-ENTER returns a Ctrl-J character (linefeed).  Is there
  12790. > anyway to suppress this?   That is, have Ctrl-ENTER simply return a RET
  12791. > character?
  12792. Type "show key"
  12793. Kermit says: "Push key to be shown:"
  12794. Push Ctrl-Enter
  12795. Kermit says:
  12796. Scan code \5386 is defined as
  12797. Ascii char: ^J \10
  12798.  
  12799. Now you see the scan code and the definition.  Now use SET KEY
  12800. to change the definition:
  12801.  
  12802. set key \5386 \13
  12803.  
  12804. (13 is the ASCII code for carriage return).
  12805.  
  12806. Put the "set key" command in your MSCUSTOM.INI file if you always want
  12807. this definition in effect.
  12808.  
  12809. Do the same thing for any other keys or key combos that you would like
  12810. to remap.
  12811.  
  12812. - Frank
  12813.  
  12814. From news@columbia.edu Thu Sep 29 18:45:41 1994
  12815. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25697
  12816.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 29 Sep 1994 16:58:39 -0400
  12817. Received: by apakabar.cc.columbia.edu id AA13552
  12818.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 29 Sep 1994 16:58:37 -0400
  12819. Path: news.columbia.edu!panix!zip.eecs.umich.edu!newsxfer.itd.umich.edu!gatech!swiss.ans.net!howland.reston.ans.net!wupost!simtel.coast.net!w8sdz
  12820. From: w8sdz@SimTel.Coast.NET (Keith Petersen)
  12821. Newsgroups: comp.protocols.kermit.misc
  12822. Subject: Re: Are Columbia U's files still avial for FTP?
  12823. Message-Id: <9409291845.AA6057@SimTel.Coast.NET>
  12824. Date: Thu, 29 Sep 1994 18:45:41 GMT
  12825. Organization: SimTel, the Coast to Coast Software Repository (tm)
  12826. References: <1994Sep29.092803.1960@gems.vcu.edu> <36em3v$2cm@apakabar.cc.columbia.edu>
  12827. Lines: 26
  12828. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  12829.  
  12830. fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  12831. >Let me explain again, for the benefit of those who did not read my earlier
  12832. >messages, some of which might not have been delivered.  The two sites who
  12833. >posted announcements to this effect removed the Kermit files from their
  12834. >archives because we could not reach an agreement about their SELLING our
  12835. >software on CDROM.  There was no need at all for them to remove Kermit
  12836. >from their ftp sites.  Complain to them about it, we had nothing to do with
  12837. >it.  Our policies have not changed.
  12838.  
  12839. Frank, this is not true.  SimTel does NOT sell programs.  The CD-ROMs
  12840. provide DISTRIBUTION OF PROGRAMS and the proceeds are used to support
  12841. the cost of maintaining the collection and providing a site for them to
  12842. be distributed free of charge to users on the Internet.  Without this
  12843. income SimTel would cease to exist.
  12844.  
  12845. There are 11,000 programs on the CDROMs made from the SimTel collection.
  12846. Beaking that down, the cost of distributing each program is US$0.003177.
  12847. For those not familar with U.S. currancy, that is 3/10ths of ONE CENT! 
  12848. It takes 100 cents to make one dollar.
  12849.  
  12850. Keith
  12851. --
  12852. Keith Petersen
  12853. General Manager of SimTel, the Coast to Coast Software Repository (tm)
  12854. Internet: w8sdz@SimTel.Coast.NET    or      w8sdz@Vela.ACS.Oakland.Edu
  12855. Uucp: uunet!umich!vela!w8sdz                     BITNET: w8sdz@OAKLAND
  12856.  
  12857. From news@columbia.edu Tue Sep 27 16:00:11 1994
  12858. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26541
  12859.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 29 Sep 1994 17:09:22 -0400
  12860. Received: by apakabar.cc.columbia.edu id AA14563
  12861.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 29 Sep 1994 17:09:21 -0400
  12862. Newsgroups: comp.protocols.kermit.misc
  12863. Path: news.columbia.edu!panix!MathWorks.Com!solaris.cc.vt.edu!swiss.ans.net!howland.reston.ans.net!news.sprintlink.net!uunet!newsgw.mentorg.com!oddball.sjc.mentorg.com!sdl!plts!big.info.att.com!allegra!ulysses!nntpa!erredfs1!not-for-mail
  12864. From: pd@erredfs1.er.att.com (Paul Davidson)
  12865. Subject: Kermit for SUN UNIX ?
  12866. Message-Id: <CwspsE.3xH@nntpa.cb.att.com>
  12867. Originator: lsl@erredfs1
  12868. Sender: lsl%erredfs1@apakabar.cc.columbia.edu (Lisa Paterno)
  12869. Nntp-Posting-Host: erredfs1.er.att.com
  12870. Organization: Paul Davidson INC.
  12871. Distribution: att
  12872. Date: Tue, 27 Sep 1994 16:00:11 GMT
  12873. Lines: 8
  12874. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  12875.  
  12876.  
  12877.     The Subject says it all Where can I get the source or
  12878. binaries for kermit on SUN OS (UNIX) ?/
  12879. -- 
  12880.  
  12881. The Opinions Expressed Are Soley Mine And Do Not
  12882. In Any Way Express The Opinions Of My Employer.
  12883.  
  12884.  
  12885. From news@columbia.edu Thu Sep 29 14:57:18 1994
  12886. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28610
  12887.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 29 Sep 1994 17:33:22 -0400
  12888. Received: by apakabar.cc.columbia.edu id AA16812
  12889.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 29 Sep 1994 17:33:20 -0400
  12890. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!news-feed-1.peachnet.edu!gatech!psuvax1!news.cc.swarthmore.edu!netnews.upenn.edu!msuinfo!harbinger.cc.monash.edu.au!news.cs.su.oz.au!news.adelaide.edu.au!gateway.dircsa.org.au!gateway.dircsa.org.au!not-for-mail
  12891. From: arthur@gateway.dircsa.org.au (Arthur Marsh)
  12892. Newsgroups: comp.protocols.kermit.misc
  12893. Subject: Re: MS-Kermit with FOSSIL
  12894. Date: 30 Sep 1994 00:27:18 +0930
  12895. Organization: DIRCSA - Disability Information and Resource Centre
  12896. Lines: 33
  12897. Message-Id: <36ekke$7o2@gateway.dircsa.org.au>
  12898. References: <1994Sep23.130448.27699@cc.usu.edu>
  12899. Nntp-Posting-Host: gateway.dircsa.org.au
  12900. X-Newsreader: TIN [version 1.1 PL8]
  12901. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  12902.  
  12903. Joe Doupnik (jrd@cc.usu.edu) wrote:
  12904.  
  12905. : >   Bnu /F+ /L:1=19200 /M- /T=256 /R=4096 /Z2
  12906. : > 
  12907. : > MS-Kermit is quite happy with a simple set port 2 command to
  12908. : > work with BNU loaded on COM2:.
  12909. : > 
  12910. : > Are there any pitfalls to using kermit this way?
  12911. : -------------
  12912. :     If it works then the answer is no problem. Be sure to tell MSK
  12913. : to use a BIOS serial port (SET PORT BIOSn, n=1..4) rather than the hardware 
  12914. : port (COMx) so there will be no bus wars about hardware ownership. Your
  12915. : example suggests that you told Kermit to use the hardware, which it is
  12916. : able to do better than Fossil drivers. Since MSK tries to restore hardware
  12917. : to its pre-use state (but leaves DTR high and the speed where Kermit last
  12918. : used it, etc) you probably got away with stealing the port from BNU; no 
  12919. : guarantees that this always works.
  12920. :     The BNU docs should say that all applications should use it via
  12921. : Bios serial port Int 14h functions. I don't know if they do.
  12922. :     Joe D.
  12923.  
  12924. I gave using the BIOS serial port a try, using BNU/I=1+ as David Nugent 
  12925. suggested. 
  12926.  
  12927. Kermit didn't like BIOS2 at 19200 bps though...
  12928.  
  12929. My original means of operation (leaving BNU loaded and running MS-Kermit
  12930. on Port 2) seems to work fine.
  12931.  
  12932. -- 
  12933. Arthur Marsh, telephone +61-8-370-2365, fax +61-8-370-2133, +61-8-223-5082 
  12934.                arthur@gateway.dircsa.org.au, arthur@cswamp.apana.org.au
  12935. .endofsig
  12936.  
  12937. From news@columbia.edu Thu Sep 29 19:02:06 1994
  12938. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28821
  12939.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 29 Sep 1994 17:36:46 -0400
  12940. Received: by apakabar.cc.columbia.edu id AA17044
  12941.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 29 Sep 1994 17:36:44 -0400
  12942. Path: news.columbia.edu!panix!MathWorks.Com!news2.near.net!das-news.harvard.edu!cantaloupe.srv.cs.cmu.edu!bb3.andrew.cmu.edu!andrew.cmu.edu!pf2d+
  12943. From: Pedro Ferroni <pf2d+@andrew.cmu.edu>
  12944. Newsgroups: comp.protocols.kermit.misc
  12945. Subject: kermit script
  12946. Date: Thu, 29 Sep 1994 15:02:06 -0400
  12947. Organization: Carnegie Mellon, Pittsburgh, PA
  12948. Lines: 14
  12949. Message-Id: <kiWkwiK00WB7B75aIr@andrew.cmu.edu>
  12950. Nntp-Posting-Host: po5.andrew.cmu.edu
  12951. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  12952.  
  12953. I have a kermit version that responds
  12954.  
  12955. IBM-PC Kermit-MS v2.29b 19 Feb87
  12956.  
  12957. 1) Should I get a new one ? (and how)
  12958. 2) How do I find instructions to set up a scrip so i don't have do enter
  12959. password, user id, telent unix, etc every time.
  12960.  
  12961. Thanks for the info.
  12962.  
  12963. Pedro
  12964. Westinghouse Pittsburgh
  12965. ferroni.ped%wec@dialcom.tymnet.com
  12966.  
  12967.  
  12968. From news@columbia.edu Thu Sep 29 19:31:03 1994
  12969. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01097
  12970.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 29 Sep 1994 18:03:47 -0400
  12971. Received: by apakabar.cc.columbia.edu id AA19346
  12972.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 29 Sep 1994 18:03:45 -0400
  12973. Path: news.columbia.edu!panix!MathWorks.Com!solaris.cc.vt.edu!swiss.ans.net!howland.reston.ans.net!news.sprintlink.net!nwnexus!news.halcyon.com!chinook!ken
  12974. From: ken@chinook.halcyon.com (Ken Pizzini)
  12975. Newsgroups: comp.protocols.kermit.misc
  12976. Subject: Re: "Just Send It" mode - possible?
  12977. Date: 29 Sep 1994 19:31:03 GMT
  12978. Organization: What, me?
  12979. Lines: 28
  12980. Distribution: World
  12981. Message-Id: <36f4ln$fja@news.halcyon.com>
  12982. References: <36d22k$9mt@balsam.unca.edu> <36d6c9$l0s@apakabar.cc.columbia.edu>
  12983. Nntp-Posting-Host: chinook.halcyon.com
  12984. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  12985.  
  12986. In article <36d6c9$l0s@apakabar.cc.columbia.edu>,
  12987. Frank da Cruz <fdc@fdc.cc.columbia.edu> wrote:
  12988. >In article <36d22k$9mt@balsam.unca.edu> Honeycutt@unca.edu (Mike Honeycutt)  
  12989. >writes:
  12990. >> I have a basic understanding of how when downloading/uploading
  12991. >> a file Kermit sends a packet, waits for other Kermit to acknowledge
  12992. >> receiving it, sends another packet, etc.
  12993. >> 
  12994. >> Would it be possible to tell the sending Kermit to "Just Send It"
  12995. >> without the error checking?  Most of our asyn lines on campus
  12996. >> are very clean (not including modems) and I would put up with
  12997. >> the occasional corrupt file to make the download go faster.
  12998. >> 
  12999. >No.  Noise is not the only reason for having packets with error-checking
  13000. >and sequencing information.  I'd go into detail here, but I'm kind of
  13001. >tired, and you can read about this in any networking text -- flow control
  13002. >at various levels, presentation functions, etc.  And don't forget that
  13003. >errors can occur in many places other than the communication medium --
  13004. >lost interrupts in a flaky PC, etc.
  13005.  
  13006. Also with proper settings kermit does not run in the start-stop mode
  13007. described by Honeycutt.  As I understand it, that's what the
  13008. "set window-size" command deals with -- you can have as many
  13009. as 31 unacknowledged packets pending, so the sender has only
  13010. a most negligable delay when checking for ACKs (assuming the
  13011. transmission is going smoothly).
  13012.  
  13013.         --Ken Pizzini
  13014.  
  13015. From news@columbia.edu Thu Sep 29 21:08:53 1994
  13016. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01177
  13017.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 29 Sep 1994 18:05:22 -0400
  13018. Received: by apakabar.cc.columbia.edu id AA19459
  13019.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 29 Sep 1994 18:05:21 -0400
  13020. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!convex!cs.utexas.edu!math.ohio-state.edu!usenet
  13021. From: davis@pacific.mps.ohio-state.edu
  13022. Newsgroups: comp.protocols.kermit.misc
  13023. Subject: Re: MS-Kermit question
  13024. Date: 29 Sep 1994 21:08:53 GMT
  13025. Organization: The Ohio State University, Department of Mathematics
  13026. Lines: 33
  13027. Message-Id: <36fad5$6bm@mathserv.mps.ohio-state.edu>
  13028. References: <36evui$9t@mathserv.mps.ohio-state.edu> <36f562$63q@apakabar.cc.columbia.edu>
  13029. Reply-To: davis@amy.tch.harvard.edu
  13030. Nntp-Posting-Host: pacific.mps.ohio-state.edu
  13031. X-Newsreader: S-Lang: slrn (0.1.4.0)
  13032. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  13033.  
  13034. In article <36f562$63q@apakabar.cc.columbia.edu>, fdc@fdc.cc.columbia.edu
  13035. (Frank da Cruz) writes: 
  13036.  : In article <36evui$9t@mathserv.mps.ohio-state.edu>  
  13037.  : davis@pacific.mps.ohio-state.edu writes:
  13038.  : >   This has been bugging me for a long time but I do not know what to do
  13039.  : > about it:  Ctrl-ENTER returns a Ctrl-J character (linefeed).  Is there
  13040.  : > anyway to suppress this?   That is, have Ctrl-ENTER simply return a RET
  13041.  : > character?
  13042.  : > 
  13043.  : Type "show key"
  13044.  : Kermit says: "Push key to be shown:"
  13045.  : Push Ctrl-Enter
  13046.  : Kermit says:
  13047.  : Scan code \5386 is defined as
  13048.  : Ascii char: ^J \10
  13049.  
  13050. This is the obvious thing to do and it is the first thing I thought of.
  13051. However, this does not work on my version of MS-Kermit (3.13 patch level 0).
  13052. It does not report the scan code for Ctrl-Enter.  It shows:
  13053.  
  13054.    Ascii char: ^J  \10 decimal is defined as 
  13055.    self, no translation.
  13056.    
  13057. Was this fixed in a patch?   
  13058.    
  13059.      _____________
  13060. #___/John E. Davis\_________________________________________________________
  13061. #
  13062. # internet: davis@amy.tch.harvard.edu
  13063. #   bitnet: davis@ohstpy
  13064. #   office: 617-735-6746
  13065. #
  13066.  
  13067.  
  13068. From news@columbia.edu Thu Sep 29 22:12:13 1994
  13069. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01527
  13070.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 29 Sep 1994 18:12:17 -0400
  13071. Received: by apakabar.cc.columbia.edu id AA19892
  13072.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 29 Sep 1994 18:12:15 -0400
  13073. Path: news.columbia.edu!usenet
  13074. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  13075. Newsgroups: comp.protocols.kermit.misc
  13076. Subject: Re: Are Columbia U's files still avial for FTP?
  13077. Date: 29 Sep 1994 22:12:13 GMT
  13078. Organization: Columbia University
  13079. Lines: 39
  13080. Message-Id: <36fe3t$jdi@apakabar.cc.columbia.edu>
  13081. References: <9409291845.AA6057@SimTel.Coast.NET>
  13082. Nntp-Posting-Host: fdc.cc.columbia.edu
  13083. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  13084.  
  13085. In article <9409291845.AA6057@SimTel.Coast.NET> w8sdz@SimTel.Coast.NET (Keith  
  13086. Petersen) writes:
  13087. > Frank, this is not true.  SimTel does NOT sell programs.  The CD-ROMs
  13088. > provide DISTRIBUTION OF PROGRAMS and the proceeds are used to support
  13089. > the cost of maintaining the collection and providing a site for them to
  13090. > be distributed free of charge to users on the Internet.  Without this
  13091. > income SimTel would cease to exist.
  13092. > There are 11,000 programs on the CDROMs made from the SimTel collection.
  13093. > Beaking that down, the cost of distributing each program is US$0.003177.
  13094. > For those not familar with U.S. currancy, that is 3/10ths of ONE CENT! 
  13095. > It takes 100 cents to make one dollar.
  13096. Making every effort to clear the air on a cordial note -- and despite the
  13097. appearance of a flame war, we're all friends here...
  13098.  
  13099. Keith is correct.  I misspoke if I said that Simtel was selling software.
  13100. Organizations like Simtel provide a valuable service, provided they do a
  13101. good and consciencious job, as (I am sure) Simtel does.  Unfortunately,
  13102. in the case of Kermit, which is not shareware, there is a conflict that
  13103. can't be resolved easily or at all.  And so we agree that mail-order
  13104. distribution of Kermit software on physical media will be done by Columbia,
  13105. or by agreement with Columbia, so we can get the income we need to continue
  13106. our work.
  13107.  
  13108. I admit, 11,000 software programs for a fraction of a cent each is a pretty
  13109. good deal!  But as I said earlier (I hate having to use that phrase all the
  13110. time) we can't afford to sell Kermit that inexpensively because we not only
  13111. distribute the software, we write it, document it, and provide tech support
  13112. for it, and these are labor-intensive jobs.
  13113.  
  13114. With shareware, it's a different story -- CDROM distributions such as
  13115. Simtel's are perfect for shareware.  All the author has to do is write
  13116. the software and then sit back and collect money.  However, despite
  13117. suggestions from a few people, I don't think the majority of Kermit users
  13118. want to see it turned into shareware, and I'm not sure we could do this
  13119. even if you wanted us to, and we wanted to.
  13120.  
  13121. - Frank
  13122.  
  13123. From news@columbia.edu Thu Sep 29 22:13:33 1994
  13124. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01572
  13125.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 29 Sep 1994 18:13:36 -0400
  13126. Received: by apakabar.cc.columbia.edu id AA20067
  13127.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 29 Sep 1994 18:13:35 -0400
  13128. Path: news.columbia.edu!usenet
  13129. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  13130. Newsgroups: comp.protocols.kermit.misc
  13131. Subject: Re: Kermit for SUN UNIX ?
  13132. Date: 29 Sep 1994 22:13:33 GMT
  13133. Organization: Columbia University
  13134. Lines: 11
  13135. Message-Id: <36fe6d$jiu@apakabar.cc.columbia.edu>
  13136. References: <CwspsE.3xH@nntpa.cb.att.com>
  13137. Nntp-Posting-Host: fdc.cc.columbia.edu
  13138. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  13139.  
  13140. In article <CwspsE.3xH@nntpa.cb.att.com> pd@erredfs1.er.att.com (Paul  
  13141. Davidson) writes:
  13142. > The Subject says it all Where can I get the source or
  13143. > binaries for kermit on SUN OS (UNIX) ?/
  13144. >
  13145. kermit.columbia.edu:kermit/test/bin/cku190.tar.Z (or .gz).
  13146.  
  13147. - Frank
  13148. x
  13149. x
  13150. x
  13151.  
  13152. From news@columbia.edu Thu Sep 29 22:18:10 1994
  13153. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01796
  13154.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 29 Sep 1994 18:18:21 -0400
  13155. Received: by apakabar.cc.columbia.edu id AA20553
  13156.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 29 Sep 1994 18:18:19 -0400
  13157. Path: news.columbia.edu!usenet
  13158. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  13159. Newsgroups: comp.protocols.kermit.misc
  13160. Subject: Re: kermit script
  13161. Date: 29 Sep 1994 22:18:10 GMT
  13162. Organization: Columbia University
  13163. Lines: 64
  13164. Message-Id: <36fef2$k1t@apakabar.cc.columbia.edu>
  13165. References: <kiWkwiK00WB7B75aIr@andrew.cmu.edu>
  13166. Nntp-Posting-Host: fdc.cc.columbia.edu
  13167. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  13168.  
  13169. In article <kiWkwiK00WB7B75aIr@andrew.cmu.edu> Pedro Ferroni  
  13170. <pf2d+@andrew.cmu.edu> writes:
  13171. > I have a kermit version that responds
  13172. > IBM-PC Kermit-MS v2.29b 19 Feb87
  13173. > 1) Should I get a new one ? (and how)
  13174. >
  13175. Yes.  Anonymous ftp to kermit.columbia.edu, directory kermit/bin,
  13176. binary mode, file msvibm.zip.
  13177.  
  13178. > 2) How do I find instructions to set up a scrip so i don't have do enter
  13179. > password, user id, telent unix, etc every time.
  13180. Purchase and read the manual.  It has an entire chapter devoted to script
  13181. programming, with plenty of examples (language of your choice):
  13182.  
  13183.   Christine M. Gianone, "Using MS-DOS Kermit", Second Edition, Digital
  13184.   Press / Butterworth-Heinemann, Woburn, MA, 1992, 345 pages, ISBN
  13185.   1-55558-082-3.  Packaged with version 3.13 of MS-DOS Kermit for the
  13186.   IBM PC, PS/2, and compatibles on a 3.5-inch diskette.
  13187.  
  13188.   US single-copy price: $34.95; quantity discounts available.  Available
  13189.   in computer bookstores or directly from:
  13190.  
  13191.     Kermit Development and Distribution
  13192.     Columbia University Academic Information Systems
  13193.     612 West 115th Street
  13194.     New York, NY  10025  USA
  13195.     Telephone: (USA) 212 854-3703
  13196.  
  13197.   Domestic and overseas orders accepted.  Price: $34.95 (US, Canada, and
  13198.   Mexico), $45 elsewhere.  Orders may be paid by MasterCard or Visa, or
  13199.   prepaid by check in US dollars.  Add $35 bank fee for checks not drawn
  13200.   on a US bank.  Price includes shipping.  Do not include sales tax.
  13201.  
  13202.   You can also order by phone from the publisher, Digital Press /
  13203.   Butterworth-Heinemann, with MasterCard, Visa, or American Express:
  13204.  
  13205.     +1 800 366-2665 (Woburn, Massachusetts office for USA and Canada)
  13206.     +1 800 665-1148 (Logan Bros, Winnepeg, Manitoba office for Canada)
  13207.     +44 993 58521   (Rushden, England office for Europe)
  13208.     +61 02 372-5511 (Chatswood, NSW office for Australia & New Zealand)
  13209.     +65 220-3684    (Singapore office for Asia)
  13210.  
  13211.   A German-language edition is also available:
  13212.  
  13213.     Christine M. Gianone, "MS-DOS Kermit, das universelle
  13214.     Kommunikationsprogramm", Verlag Heinz Heise, Hannover, Germany
  13215.     (1991), 414 pages.  Packaged with version 3.12 of MS-DOS Kermit for
  13216.     the IBM PC, PS/2, and compatibles on a 5.25-inch diskette, including
  13217.     German-language help files.  Deutsch von Gisbert W. Selke.  Price:
  13218.     DM 69,00.  ISBN 3-88229-006-4.  Verlag Heinz Heise GmbH & Co. KG,
  13219.     Helstorfer Strasse 7, D-30625 Hannover.  Tel. +49 (05 11) 53 52-0,
  13220.     Fax. +49 (05 11) 53 53-1 29.
  13221.  
  13222.   And a French-language edition:
  13223.  
  13224.     Christine M. Gianone, "Kermit MS-DOS mode d'emploi", Heinz Schiefer
  13225.     & Cie., Versailles (1993), 406 pages.  Packaged with version 3.11 of
  13226.     MS-DOS Kermit for the IBM PC, PS/2, and compatibles on a 5.25-inch
  13227.     diskette.  Adaption francaise: Jean Dutertre.  ISBN 2-901143-20-2.
  13228.     Heinz Schiefer & Cie., 45 rue Henri de Regnier, F-78000 Versailles.
  13229.     Tel. +33 39 53 95 26, Fax. +33 39 02 39 71.
  13230.  
  13231. - Frank
  13232.  
  13233. From news@columbia.edu Thu Sep 29 22:22:52 1994
  13234. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01964
  13235.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 29 Sep 1994 18:22:57 -0400
  13236. Received: by apakabar.cc.columbia.edu id AA20865
  13237.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 29 Sep 1994 18:22:55 -0400
  13238. Path: news.columbia.edu!usenet
  13239. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  13240. Newsgroups: comp.protocols.kermit.misc
  13241. Subject: Re: MS-Kermit question
  13242. Date: 29 Sep 1994 22:22:52 GMT
  13243. Organization: Columbia University
  13244. Lines: 23
  13245. Message-Id: <36fens$kbt@apakabar.cc.columbia.edu>
  13246. References: <36fad5$6bm@mathserv.mps.ohio-state.edu>
  13247. Nntp-Posting-Host: fdc.cc.columbia.edu
  13248. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  13249.  
  13250. In article <36fad5$6bm@mathserv.mps.ohio-state.edu>  
  13251. davis@pacific.mps.ohio-state.edu writes:
  13252. >  : ...
  13253. >  : Kermit says:
  13254. >  : Scan code \5386 is defined as
  13255. >  : Ascii char: ^J \10
  13256. > This is the obvious thing to do and it is the first thing I thought of.
  13257. > However, this does not work on my version of MS-Kermit (3.13 patch level
  13258. > 0).  It does not report the scan code for Ctrl-Enter.
  13259. >
  13260. Oops, silly me!  You're right -- I was using the "other" Enter key.
  13261. Sorry.
  13262.  
  13263. I think this is a bug, and we'll have to fix it in version 3.14.  I'll
  13264. check with Joe.
  13265.  
  13266. - Frank
  13267. x
  13268. x
  13269. x
  13270. x
  13271. x
  13272.  
  13273. From news@columbia.edu Thu Sep 29 18:15:45 1994
  13274. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02814
  13275.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 29 Sep 1994 18:37:23 -0400
  13276. Received: by apakabar.cc.columbia.edu id AA21876
  13277.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 29 Sep 1994 18:37:21 -0400
  13278. Newsgroups: comp.protocols.kermit.misc
  13279. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!convex!cs.utexas.edu!swrinde!howland.reston.ans.net!EU.net!sunic!seunet!news2.swip.net!seunet!kullmar!bk
  13280. From: bk@kullmar.se (Bo Kullmar)
  13281. Subject: A Kermit library for MS-Windows
  13282. Message-Id: <1994Sep29.181545.11830@kullmar.se>
  13283. Organization: ABC-Klubben
  13284. Date: Thu, 29 Sep 1994 18:15:45 GMT
  13285. Lines: 8
  13286. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  13287.  
  13288. I am looking for a good commercial communication package for MS-Windows
  13289. with fast kermit functions. I need a kermit that can use larger packages
  13290. than 94 bytes.
  13291.  
  13292. Any suggestion? (The Kermit server on the other end is C-Kermit 5A(188)).
  13293.  
  13294. --Bo Kullmar
  13295.  
  13296.  
  13297. From news@columbia.edu Thu Sep 29 23:04:22 1994
  13298. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08543
  13299.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 29 Sep 1994 20:41:58 -0400
  13300. Received: by apakabar.cc.columbia.edu id AA01293
  13301.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 29 Sep 1994 20:41:57 -0400
  13302. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!convex!cs.utexas.edu!swrinde!news.uh.edu!uuneo.neosoft.com!Starbase.NeoSoft.COM!billw
  13303. From: billw@starbase.neosoft.com (Bill West)
  13304. Newsgroups: comp.protocols.kermit.misc
  13305. Subject: stuttering screen display
  13306. Date: 29 Sep 1994 23:04:22 GMT
  13307. Organization: NeoSoft Internet Services   +1 713 684 5969
  13308. Lines: 26
  13309. Message-Id: <36fh5m$nn3@uuneo.neosoft.com>
  13310. Nntp-Posting-Host: starbase.neosoft.com
  13311. X-Newsreader: TIN [version 1.2 PL2]
  13312. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  13313.  
  13314.  
  13315. I just upgraded my modem from a PPI 9600 ext. to a Cardinal ext. 14400
  13316. fax/modem and can't quite get the setup right since I have not had to deal
  13317. with the high speed features before. I find myself having to manually
  13318. refresh the screen constantly since about halfway through changing from one
  13319. display to another the screen will freeze up and I can get the display back
  13320. by doing a ctrl-R and it will be fine for one or two screen changes such as
  13321. reading one or two news articles.
  13322.  
  13323. I am running c-kermit 5A(190) BETA.23 but have also tried c-kermit 5A(188).
  13324. I have tried serveral differant at command configs and still get the  same
  13325. results. What am I missing here? If I hook the 9600 back up it works fine.
  13326.  
  13327. Any help or pointers via email or post  would be greatly appreciated since
  13328. I have gotten totaly frustrated and out of options and I can't figure out if
  13329. it is the modem or kermit.
  13330.  
  13331. On downloads the most I have been able to get out of the 14400 is 1200cps
  13332. but most of the time it is lower with multiple retries.
  13333.  
  13334. --
  13335. ******************************************************************************
  13336. Bill West
  13337. Houston TX
  13338. email: billw@starbase.neosoft.com
  13339. ******************************************************************************
  13340.  
  13341. From news@columbia.edu Fri Sep 30 02:46:38 1994
  13342. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14528
  13343.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 29 Sep 1994 23:01:47 -0400
  13344. Received: by apakabar.cc.columbia.edu id AA11755
  13345.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 29 Sep 1994 23:01:46 -0400
  13346. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!charnel.ecst.csuchico.edu!olivea!uunet!winternet.com!jamess
  13347. From: jamess@winternet.com (James Sturdevant)
  13348. Newsgroups: comp.protocols.kermit.misc
  13349. Subject: Re: MS-Kermit question
  13350. Date: 30 Sep 1994 02:46:38 GMT
  13351. Organization: StarNet Communications, Inc
  13352. Lines: 15
  13353. Message-Id: <36fu6e$jd@blackice.winternet.com>
  13354. References: <36evui$9t@mathserv.mps.ohio-state.edu> <36f562$63q@apakabar.cc.columbia.edu>
  13355. Nntp-Posting-Host: icicle.winternet.com
  13356. X-Newsreader: TIN [version 1.2 PL2]
  13357. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  13358.  
  13359. Frank da Cruz (fdc@fdc.cc.columbia.edu) wrote:
  13360. : In article <36evui$9t@mathserv.mps.ohio-state.edu>  
  13361. : davis@pacific.mps.ohio-state.edu writes:
  13362. : >   This has been bugging me for a long time but I do not know what to do
  13363. : > about it:  Ctrl-ENTER returns a Ctrl-J character (linefeed).  Is there
  13364. : > anyway to suppress this?   That is, have Ctrl-ENTER simply return a RET
  13365. : > character?
  13366. : > 
  13367. [Snip] Advice on redefining keys...
  13368.  
  13369. That works on most keys...  Two keys left of the the "dual entry" table are
  13370. Ctrl-J/Ctrl-Enter and Esc/Ctrl-[.  I believe that these are the only two (on
  13371. standard 101 keyboards) that cannot be independently defined.
  13372.  
  13373. JamesS
  13374.  
  13375. From news@columbia.edu Thu Sep 29 15:12:52 1994
  13376. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18370
  13377.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 00:13:48 -0400
  13378. Received: by apakabar.cc.columbia.edu id AA16740
  13379.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 00:13:47 -0400
  13380. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  13381. From: jrd@cc.usu.edu (Joe Doupnik)
  13382. Newsgroups: comp.protocols.kermit.misc
  13383. Subject: Re: Which ethernet card for MS-Kermit?
  13384. Message-Id: <1994Sep29.211252.28265@cc.usu.edu>
  13385. Date: 29 Sep 94 21:12:52 MDT
  13386. References: <36el10$5hq@xmission.xmission.com>
  13387. Organization: Utah State University
  13388. Lines: 31
  13389. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  13390.  
  13391. In article <36el10$5hq@xmission.xmission.com>, fozz@xmission.com (Fozziliny Moo) writes:
  13392. > I need some recomendations for ethernet cards for PC's to connect a few
  13393. > machines to a thin-coax feed which goes to a couple of Unix boxes (AIX,
  13394. > but that probably doesn't matter). 
  13395. > I've worked with MS-Kermit over Novell Netware on several occassions, but
  13396. > now I am working in the absence of a PC network medium and would like to
  13397. > use the thin coax just to Telnet (via MS-Kermit) to the Unix machines. 
  13398. > Is an NE2000 compatible card going to work for me? Then do I just load 
  13399. > IPX? Or do I use a different driver software? And then, if I understand
  13400. > correctly, upon knowing the software interrupt of the device driver I 
  13401. > can just go into MS-Kermit and say SET TCP/IP PACKET-DRIVER-INTERRUPT \xXX.
  13402. > If someone can confirm or correct my assumptions here, I would appreciate it.
  13403. > (Joe maybe?)
  13404. ---------
  13405. Doran,
  13406.     I guess you could have asked me directly. The Kermit Project does
  13407. not endorse any network adapter. That's a choice well out of our domain.
  13408. Any of the three common driver/handler programs: ODI, NDIS, Packet Drivers,
  13409. will work with MS-DOS Kermit (NDIS requires the dis_pkt9 shim). If you
  13410. are accustomed to ODI then please remember that IPX is just an ODI client,
  13411. just the same as Kermit is, side by side. Please see the distribution
  13412. file MSKERM.BWR on kermit.columbia.edu, cd kermit/a.
  13413.         One more thing. Kermit does NOT contain an Ethernet driver.
  13414. Consequently the Packet Driver interrupt has no relation with a hardware IRQ
  13415. from a board. Kermit will find a Packet Driver all by itself, or you can
  13416. force its attention on one interrupt.
  13417.     Joe D.
  13418.  
  13419. From news@columbia.edu Sun Sep 30 04:29:01 1994
  13420. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18972
  13421.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 00:27:39 -0400
  13422. Received: by apakabar.cc.columbia.edu id AA17900
  13423.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 00:27:37 -0400
  13424. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!convex!cs.utexas.edu!swrinde!sgiblab!sisters.cs.uoregon.edu!cs.uoregon.edu!usenet.ee.pdx.edu!not-for-mail
  13425. From: rkwee@ee.pdx.edu (Roland Kwee)
  13426. Newsgroups: comp.protocols.kermit.misc
  13427. Subject: Why is Kermit not popular on BBS-es?
  13428. Date: 29 Sep 1994 21:29:01 -0700
  13429. Lines: 16
  13430. Message-Id: <36g46d$m36@cruella.ee.pdx.edu>
  13431. Nntp-Posting-Host: cruella.ee.pdx.edu
  13432. Summary: Most BBS-es have old, lame Kermit versions built-in
  13433. Keywords: BBS download-protocol zmodem performance popularity
  13434. X-Newsreader: NN version 6.4.19 #2
  13435. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  13436.  
  13437. This provocative posting is an effort to distract from the current
  13438. discussion about the copyright issue and ftp sites.
  13439.  
  13440. While I like the Kermit protocol, the terminal emulator, the fact
  13441. that it is available for free, and runs on nearly every platform,
  13442. I am often unhappily surprised that many (most?) bulletin board
  13443. systems offer an outdated and slow version of Kermit for downloading
  13444. files. Also, products like Procomm show this trend.
  13445.  
  13446. Is there a conspiracy against Kermit? Is it that because it is not
  13447. a commercial enterprise that nobody lobbies for it? Are the owners
  13448. of zmodem lobbying against it?
  13449.  
  13450. Kermit deserves better.
  13451.  
  13452. --Roland          email: RolandKwee@ACM.org
  13453.  
  13454. From news@columbia.edu Sun Sep 30 04:32:35 1994
  13455. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20404
  13456.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 00:46:57 -0400
  13457. Received: by apakabar.cc.columbia.edu id AA18836
  13458.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 00:46:55 -0400
  13459. Path: news.columbia.edu!panix!MathWorks.Com!usenet.eel.ufl.edu!news.uoregon.edu!cs.uoregon.edu!usenet.ee.pdx.edu!not-for-mail
  13460. From: rkwee@ee.pdx.edu (Roland Kwee)
  13461. Newsgroups: comp.protocols.kermit.misc
  13462. Subject: Re: Solved Kermit download problem, sort of
  13463. Date: 29 Sep 1994 21:32:35 -0700
  13464. Lines: 17
  13465. Distribution: World
  13466. Message-Id: <36g4d3$m42@cruella.ee.pdx.edu>
  13467. References: <36ca5k$c7j@apakabar.cc.columbia.edu>
  13468. Nntp-Posting-Host: cruella.ee.pdx.edu
  13469. X-Newsreader: NN version 6.4.19 #2
  13470. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  13471.  
  13472. fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  13473.  
  13474. >Roland Kwee <rkwee@ee.pdx.edu> writes:
  13475. >>  ... I reduced the packet size all the way down to 500
  13476. >> bytes and 1 window. No problem for a file up to 1.2 MB sofar, and a
  13477. >> throughput of 1029 cps. (on a 14.4KB V.42b connection). It seems to be a
  13478. >> problem of buffer overflow, either in the remote cisco terminal server,
  13479. >> or in the remote modem.
  13480.  
  13481. (many lines deleted)
  13482.  
  13483. Please be informed that my problems seem to be linked to running Kermit 
  13484. under Linux. When rebooting with DOS on the same hardware, KErmit seems
  13485. to be able to download with 1000-byte packets with no problem. Now I am
  13486. rather thinking of a problem with Linux instead of with the protocol.
  13487.  
  13488. --Roland
  13489.  
  13490. From news@columbia.edu Fri Sep 30 05:57:14 1994
  13491. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24020
  13492.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 02:10:46 -0400
  13493. Received: by apakabar.cc.columbia.edu id AA22298
  13494.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 02:10:45 -0400
  13495. Path: news.columbia.edu!panix!zip.eecs.umich.edu!newsxfer.itd.umich.edu!gatech!howland.reston.ans.net!wupost!simtel.coast.net!w8sdz
  13496. From: w8sdz@SimTel.Coast.NET (Keith Petersen)
  13497. Newsgroups: comp.protocols.kermit.misc
  13498. Subject: Columbia University's Kermit copyright
  13499. Message-Id: <9409300557.AA12036@simtel.coast.net>
  13500. Date: Fri, 30 Sep 1994 05:57:14 GMT
  13501. Organization: SimTel, the Coast to Coast Software Repository (tm)
  13502. Lines: 35
  13503. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  13504.  
  13505. Quoting the copyright included with MS-Kermit:
  13506.  
  13507.   Copyright (C) 1985, 1993, Trustees of Columbia University in the City
  13508.   of New York.  The MS-DOS Kermit software may be reproduced and shared
  13509.   without restriction as long as this copyright notice is retained,
  13510.   except that it may not be licensed or sold for profit as a software
  13511.   product itself, and it may not be included in or distributed with
  13512.   commercial products or otherwise distributed by commercial concerns to
  13513.   their clients or customers without written permission of the Office of
  13514.   Kermit Development and Distribution, Columbia University.
  13515.  
  13516. In the process of reviewing programs submitted to the SimTel collection
  13517. I have seen many different ways of expressing distribution limitations. 
  13518. This simple well-worded statement would solve the confrontation between
  13519. Columbia, SimTel and Garbo, while keeping the spirit of free distribution
  13520. of Kermit.
  13521.  
  13522.    You may freely distribute the original [program name] in any way
  13523.    you see fit other than selling it.  Users' groups and shareware
  13524.    distribution services may charge a reasonable fee for the medium
  13525.    and duplication costs.  Bulletin boards may not charge additional
  13526.    fees for downloading this specific program, other than normal
  13527.    connect-time and/or membership charges.
  13528.  
  13529.    You may charge a maximum of US $5 for each disk you sell.  In the
  13530.    case of CD-ROM compilations, the selling price is calculated as the
  13531.    price of the CD-ROM divided by the number of products on the CD-ROM.
  13532.    Thus, in such cases, the price is usually only a few cents.
  13533.  
  13534. Keith
  13535. --
  13536. Keith Petersen
  13537. General Manager of SimTel, the Coast to Coast Software Repository (tm)
  13538. Internet: w8sdz@SimTel.Coast.NET    or      w8sdz@Vela.ACS.Oakland.Edu
  13539. Uucp: uunet!umich!vela!w8sdz                     BITNET: w8sdz@OAKLAND
  13540.  
  13541. From news@columbia.edu Fri Sep 30 08:47:01 1994
  13542. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01575
  13543.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 05:48:25 -0400
  13544. Received: by apakabar.cc.columbia.edu id AA29195
  13545.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 05:48:25 -0400
  13546. Newsgroups: comp.protocols.kermit.misc
  13547. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!MathWorks.Com!yeshua.marcam.com!usc!howland.reston.ans.net!EU.net!Germany.EU.net!news.dfn.de!news.belwue.de!news.uni-ulm.de!rz.uni-karlsruhe.de!stepsun.uni-kl.de!uklirb.informatik.uni-kl.de!rhein!jreinert
  13548. From: jreinert@rhein.informatik.uni-kl.de (Joachim Reinert - AG DVS)
  13549. Subject: [Q] Is there a Kermit implemented in BASIC?
  13550. Message-Id: <jreinert.780914821@rhein>
  13551. Keywords: BASIC,Kermit
  13552. Sender: news@uklirb.informatik.uni-kl.de (Unix-News-System)
  13553. Nntp-Posting-Host: rhein.informatik.uni-kl.de
  13554. Organization: University of Kaiserslautern, Germany
  13555. Date: Fri, 30 Sep 1994 08:47:01 GMT
  13556. Lines: 18
  13557. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  13558.  
  13559. Hi!
  13560.  
  13561. I am in need for a file transfer between maschines which are
  13562. programmable in BASIC (to be precise Business Basic) only.
  13563. The Simtel Collection includes a "receive kermit" which will
  13564. serve as a startingpoint. To avoid unecessary lost of sparetime:
  13565. Is there a send/receive kermit implemented in BASIC anywhere in
  13566. the public domain?
  13567.  
  13568. Thanks for any input
  13569.  
  13570. Joachim Reinert
  13571.  
  13572. -- 
  13573. Joachim Reinert              UNI Kaiserslautern, AG-DVS
  13574. fax   : +49 631 205 3558     P.O. Box 3049
  13575. phone : +49 631 205 3282     67653 Kaiserslautern - Germany 
  13576. e-mail: jreinert@informatik.uni-kl.de
  13577.  
  13578. From news@columbia.edu Thu Sep 29 20:44:58 1994
  13579. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13649
  13580.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 07:16:36 -0400
  13581. Received: by apakabar.cc.columbia.edu id AA02549
  13582.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 07:16:35 -0400
  13583. Newsgroups: comp.protocols.kermit.misc
  13584. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!zip.eecs.umich.edu!newsxfer.itd.umich.edu!gumby!wupost!howland.reston.ans.net!usc!elroy.jpl.nasa.gov!decwrl!amd!netcomsv!netcom.com!jhurwit
  13585. From: jhurwit@netcom.com (Jeffrey Hurwit)
  13586. Subject: Re: "Just Send It" mode - possible?
  13587. Message-Id: <jhurwitCwwsAz.Erz@netcom.com>
  13588. Organization: Organization?  What organization?
  13589. X-Newsreader: TIN [version 1.2 PL1]
  13590. References: <36d22k$9mt@balsam.unca.edu>
  13591. Date: Thu, 29 Sep 1994 20:44:58 GMT
  13592. Lines: 44
  13593. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  13594.  
  13595. In article <36d22k$9mt@balsam.unca.edu>, 
  13596. Mike Honeycutt (Honeycutt@unca.edu) wrote:
  13597.  
  13598. >Would it be possible to tell the sending Kermit to "Just Send It"
  13599. >without the error checking?  Most of our asyn lines on campus
  13600. >are very clean (not including modems) and I would put up with
  13601. >the occasional corrupt file to make the download go faster.
  13602.  
  13603.     From the help file for MS-Kermit 3.13:
  13604.  
  13605. * COMMANDS FOR FILE TRANSFER WITHOUT ERROR CHECKING
  13606.  
  13607. Kermit can also transfer files or other information with remote computers,
  13608. services, or devices that do not support the Kermit file transfer protocol.
  13609. These methods provide no error detection or correction.     Use with caution.
  13610.  
  13611. TRANSMIT <filename>
  13612.   Send a text file to the host as if you were typing it at the keyboard
  13613.   a line at a time.  Waits for linefeed (\10) to echo before sending next
  13614.   line.     Uses all current communication settings (parity, flow, etc).
  13615.   Doesn't translate character sets.  CRLF is sent as CR only unless SET
  13616.   TRANSMIT LINE-FEEDS ON.  Empty lines are sent as pairs of CRs (or CRLFS)
  13617.   unless SET TRANSMIT FILL is used.
  13618.  
  13619. SET TRANSMIT <parameter> <value>
  13620.   Various parameters used to control TRANSMIT command.
  13621.   FILL-EMPTY-LINE { NONE, SPACE, <char> }
  13622.   LINE-FEEDS-SENT { ON, OFF }
  13623.   PAUSE <number> - pause <number> milliseconds after sending each line.
  13624.   PROMPT <char> - character to wait for before sending next line (= \10)
  13625.  
  13626. LOG SESSION <filename>
  13627.   Capture a remote file, which you must TYPE, into the named file
  13628.   (SESSION.LOG by default).  Use \Klogoff and \Klogon keyboard verbs to
  13629.   stop and restart logging (Ctrl-]Q, Ctrl-]R).
  13630.  
  13631. CLOSE SESSION
  13632.   Stop capturing and close the session log file.
  13633.  
  13634.  
  13635.     There should be commands in the other versions of Kermit similar to
  13636.     these.
  13637.  
  13638.                         Jeff
  13639.  
  13640. From news@columbia.edu Fri Sep 30 02:38:01 1994
  13641. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18899
  13642.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 07:22:15 -0400
  13643. Received: by apakabar.cc.columbia.edu id AA02678
  13644.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 07:22:13 -0400
  13645. Newsgroups: comp.protocols.kermit.misc
  13646. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!zip.eecs.umich.edu!newsxfer.itd.umich.edu!news1.oakland.edu!rcsuna.gmr.com!kocrsv01!koicds01!tvmyers
  13647. From: tvmyers@koicds01.icdc.delcoelect.com (Thomas V. Myers)
  13648. Subject: Re: Columbia University MS-Kermit files removed from SimTel
  13649. Sender: news@icdc.delcoelect.com (News Manager)
  13650. Message-Id: <Cwx8nD.5EB@icdc.delcoelect.com>
  13651. Date: Fri, 30 Sep 1994 02:38:01 GMT
  13652. References: <9409270646.kp1130@SimTel.Coast.NET>
  13653. Organization: Frodo Was Here
  13654. X-Newsreader: TIN [version 1.2 PL2]
  13655. Lines: 44
  13656. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  13657.  
  13658. Keith Petersen (w8sdz@SimTel.Coast.NET) wrote:
  13659. > According to e-mail I received this evening it appears that Columbia
  13660. > University now feels that SimTel should no longer distribute MS-Kermit.
  13661.  
  13662. > SimTel's policy is:
  13663.  
  13664. >   Programs submitted to the SimTel collection may appear on CD-ROMs
  13665. >   offered by several vendors.  If the program submitted should not
  13666. >   be distributed this way, or has restrictions on such distribution,
  13667. >   it will not be accepted.
  13668.  
  13669. > Quoting the copyright included with MS-Kermit:
  13670.  
  13671. >   Copyright (C) 1985, 1993, Trustees of Columbia University in the City
  13672. >   of New York.  The MS-DOS Kermit software may be reproduced and shared
  13673. >   without restriction as long as this copyright notice is retained,
  13674. >   except that it may not be licensed or sold for profit as a software
  13675. >   product itself, and it may not be included in or distributed with
  13676. >   commercial products or otherwise distributed by commercial concerns to
  13677. >   their clients or customers without written permission of the Office of
  13678. >   Kermit Development and Distribution, Columbia University.
  13679.  
  13680. > Because of this restrictive distribution policy all MS-Kermit programs
  13681. > and other associated files bearing the Columbia University copyright have
  13682. > been removed from SimTel, the Coast to Coast Software Repository (tm).
  13683.  
  13684. > Questions and comments should be sent to Columbia, *not* to SimTel.
  13685. > The e-mail address is:  fdc@watsun.cc.columbia.edu (Frank da Cruz)
  13686.  
  13687. > Keith
  13688. > --
  13689. > Keith Petersen
  13690. > General Manager of SimTel, the Coast to Coast Software Repository (tm)
  13691. > Internet: w8sdz@SimTel.Coast.NET    or      w8sdz@Vela.ACS.Oakland.Edu
  13692. > Uucp: uunet!umich!vela!w8sdz                     BITNET: w8sdz@OAKLAND
  13693.  
  13694. That copyright notice has been there for years but Frank makes a comment about
  13695. source code on CD-ROMs becoming stale on the shelf and you decide that it's suddenly
  13696. time to pull Kermit off your distribution.  Either you don't enforce your policy
  13697. except when questioned, or you don't bother to read any of the copyright notices
  13698. until somebody asks about them.
  13699.  
  13700. --
  13701. Tom Myers : tvmyers@icdc.delcoelect.com
  13702.  
  13703. From news@columbia.edu Thu Sep 29 21:00:45 1994
  13704. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20542
  13705.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 07:23:54 -0400
  13706. Received: by apakabar.cc.columbia.edu id AA02709
  13707.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 07:23:53 -0400
  13708. Newsgroups: comp.protocols.kermit.misc
  13709. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!charnel.ecst.csuchico.edu!olivea!koriel!lll-winken.llnl.gov!enews.sgi.com!decwrl!amd!netcomsv!netcom.com!kientzle
  13710. From: kientzle@netcom.com
  13711. Subject: Re: "Just Send It" mode - possible?
  13712. Message-Id: <kientzleCwwt19.67E@netcom.com>
  13713. Organization: NETCOM On-line Communication Services (408 261-4700 guest)
  13714. References: <36d22k$9mt@balsam.unca.edu>
  13715. Date: Thu, 29 Sep 1994 21:00:45 GMT
  13716. Lines: 19
  13717. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  13718.  
  13719. In article <36d22k$9mt@balsam.unca.edu>,
  13720. Mike Honeycutt <Honeycutt@unca.edu> wrote:
  13721. >I have a basic understanding of how when downloading/uploading
  13722. >a file Kermit sends a packet, waits for other Kermit to acknowledge
  13723. >receiving it, sends another packet, etc.
  13724. >
  13725. >Would it be possible to tell the sending Kermit to "Just Send It"
  13726. >without the error checking?  Most of our asyn lines on campus
  13727.  
  13728.    Better yet, how about continuous sending WITH error correction?
  13729. Better Kermit programs all support `sliding windows,' which allows the
  13730. sender to send a bunch of packets without getting an acknowledgement.
  13731. Suitably configured, you can get continuous data flow and a
  13732. considerable improvement in speed over the default half-duplex
  13733. transfer strategy.
  13734.  
  13735.    BTW, Kermit has supported sliding windows since 1986, before
  13736. ZModem existed.
  13737.             - Tim Kientzle
  13738.  
  13739. From news@columbia.edu Fri Sep 30 11:43:30 1994
  13740. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03189
  13741.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 08:14:54 -0400
  13742. Received: by apakabar.cc.columbia.edu id AA04651
  13743.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 08:14:53 -0400
  13744. Newsgroups: comp.protocols.kermit.misc
  13745. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!usc!howland.reston.ans.net!swiss.ans.net!news.dfn.de!news.belwue.de!news.uni-ulm.de!rz.uni-karlsruhe.de!stepsun.uni-kl.de!sun.rhrk.uni-kl.de!weber
  13746. From: weber@rhrk.uni-kl.de (Christoph Weber-Fahr [KIT])
  13747. Subject: Re: Are Columbia U's files still avial for FTP?
  13748. Message-Id: <1994Sep30.114330.28907@rhrk.uni-kl.de>
  13749. Organization: University of Kaiserslautern, Germany
  13750. References: <1994Sep29.092803.1960@gems.vcu.edu> <36em3v$2cm@apakabar.cc.columbia.edu>
  13751. Date: Fri, 30 Sep 1994 11:43:30 GMT
  13752. Lines: 53
  13753. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  13754.  
  13755. Hello,
  13756.  
  13757. fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  13758. >agnew@gems.vcu.edu (Brainwave Surfer) writes:
  13759. >> I can see both sides of this, Columbia U's, and us...  I still mourn the
  13760. >> loss of Kermit from the Net.  However, will the Columbia U's FTP site still
  13761. >> be open?  Do they have a Gopher server up yet?  
  13762. >>
  13763. >Come on, everybody -- nothing has changed.  Of course Kermit software is
  13764. >available via ftp, just as it always was.  Once again, for the umpteenth
  13765. >time, nobody has told ANYBODY to take Kermit software off their ftp sites.
  13766.  
  13767. >Let me explain again, for the benefit of those who did not read my earlier
  13768. >messages, some of which might not have been delivered.  The two sites who
  13769. >posted announcements to this effect removed the Kermit files from their
  13770. >archives because we could not reach an agreement about their SELLING our
  13771. >software on CDROM.  There was no need at all for them to remove Kermit
  13772. >from their ftp sites.  Complain to them about it, we had nothing to do with
  13773. >it.  Our policies have not changed.
  13774.  
  13775. What's next ? ftp-os2 (aka Hobbes) ? You know, that's the central 
  13776. OS/2 software archive, and the domain name id .cdrom.com, which is, one
  13777. should have heard, Walnut Creek Software. c-kermit for OS/2 is there, and
  13778. (although I have not checked) I assume its on their Hobbes CD either.
  13779.  
  13780. Oh, and what's about the freebsd distribution ? It is on CDROM as well, 
  13781. also from Walnut Creek. CKermit is in there. Will that be removed either ?
  13782.  
  13783. I don't think your policy wrt CDROM-Makers is a well thought one. You seem
  13784. to require individual negotiations, which by itself is simply not feasible
  13785. when putting several thousands of programs on a CD. The administrative 
  13786. overhead would seem inacceptable.
  13787.  
  13788. May I suggest that you decide on some criteria that
  13789.  
  13790. - when met automatically allow CDROM distribution
  13791. - are made that they cover at least the "classical" internet 
  13792.   related archive CDs ?
  13793.  
  13794. After all its a distribution way like every other, and I pay
  13795. orders of magnitude more money to a local Internet provider when 
  13796. ftping all the stuff than when bying a Walnut Creek CDROM.
  13797.  
  13798. Regards
  13799.  
  13800. Christoph Weber-Fahr
  13801.  
  13802.  
  13803. -- 
  13804.   Christoph Weber-Fahr                  |  E-Mail:  weber@rhrk.uni-kl.de 
  13805.   Universitaet Kaiserslautern,  KIT     |  S-Mail:  Postfach 3049
  13806.   Tel. 0631/205-3391                    |           D-67653 Kaiserslautern
  13807. --------------------------  My personal opinion only    ---------------------
  13808.  
  13809. From news@columbia.edu Fri Sep 30 12:55:46 1994
  13810. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05048
  13811.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 08:55:49 -0400
  13812. Received: by apakabar.cc.columbia.edu id AA06747
  13813.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 08:55:48 -0400
  13814. Path: news.columbia.edu!usenet
  13815. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  13816. Newsgroups: comp.protocols.kermit.misc
  13817. Subject: Re: [Q] Is there a Kermit implemented in BASIC?
  13818. Date: 30 Sep 1994 12:55:46 GMT
  13819. Organization: Columbia University
  13820. Lines: 29
  13821. Message-Id: <36h1si$6ip@apakabar.cc.columbia.edu>
  13822. References: <jreinert.780914821@rhein>
  13823. Nntp-Posting-Host: fdc.cc.columbia.edu
  13824. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  13825.  
  13826. In article <jreinert.780914821@rhein> jreinert@rhein.informatik.uni-kl.de  
  13827. (Joachim Reinert - AG DVS) writes:
  13828. > I am in need for a file transfer between maschines which are
  13829. > programmable in BASIC (to be precise Business Basic) only.
  13830. > The Simtel Collection includes a "receive kermit" which will
  13831. > serve as a startingpoint. To avoid unecessary lost of sparetime:
  13832. > Is there a send/receive kermit implemented in BASIC anywhere in
  13833. > the public domain?
  13834. The following Kermit programs are written in BASIC:
  13835.  
  13836. Directory   Files      Comments
  13837.  
  13838. kermit/c    lux*.*     Luxor ABC micros, ABC-BASIC-II
  13839. kermit/d    rd2*.*     DG 800 RDOS
  13840. kermit/c    ta1*.*     Tandy 100
  13841. kermit/d    mbf*.*     MAI Basic Four
  13842. kermit/d    pic*.*     PICK, DATA/BASIC
  13843. kermit/c    hpb*.*     HP-9000 BASIC workstation
  13844. kermit/c    hp9*.*     HP-9845 BASIC workstation
  13845. kermit/c    hp8*.*     HP86 and HP87
  13846.  
  13847. These are on kermit.columbia.edu.  In each of these directories you
  13848. will find a listing of all the Kermit programs with a name like
  13849. aav???.hlp, which tells the system, OS, language, location, date of
  13850. the Kermit program, and where it came from.  The "???" portion of the
  13851. name tells how it was sorted.  ???=LNG means programming language.
  13852.  
  13853. - Frank
  13854.  
  13855. From news@columbia.edu Fri Sep 30 13:02:06 1994
  13856. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05493
  13857.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 09:02:09 -0400
  13858. Received: by apakabar.cc.columbia.edu id AA07154
  13859.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 09:02:08 -0400
  13860. Path: news.columbia.edu!usenet
  13861. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  13862. Newsgroups: comp.protocols.kermit.misc
  13863. Subject: Re: stuttering screen display
  13864. Date: 30 Sep 1994 13:02:06 GMT
  13865. Organization: Columbia University
  13866. Lines: 31
  13867. Message-Id: <36h28e$6vf@apakabar.cc.columbia.edu>
  13868. References: <36fh5m$nn3@uuneo.neosoft.com>
  13869. Nntp-Posting-Host: fdc.cc.columbia.edu
  13870. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  13871.  
  13872. In article <36fh5m$nn3@uuneo.neosoft.com> billw@starbase.neosoft.com (Bill  
  13873. West) writes:
  13874. > I just upgraded my modem from a PPI 9600 ext. to a Cardinal ext. 14400
  13875. > fax/modem and can't quite get the setup right since I have not had to deal
  13876. > with the high speed features before. I find myself having to manually
  13877. > refresh the screen constantly since about halfway through changing from one
  13878. > display to another the screen will freeze up and I can get the display back
  13879. > by doing a ctrl-R and it will be fine for one or two screen changes such as
  13880. > reading one or two news articles.
  13881. > I am running c-kermit 5A(190) BETA.23 but have also tried c-kermit 5A(188).
  13882. > I have tried serveral differant at command configs and still get the  same
  13883. > results. What am I missing here? If I hook the 9600 back up it works fine.
  13884. These are classic symptoms of a lack of effective flow control.  You have
  13885. to tell Kermit to SET FLOW RTS/CTS (if your particular version supports it),
  13886. and you also have to configure your modem for RTS/CTS flow control.
  13887. x
  13888. x I trust that is
  13889. x the whole
  13890. x answer
  13891. x but I still
  13892. x have to add
  13893. x more lines
  13894. x or else
  13895. x the answer
  13896. x won't be
  13897. x posted.
  13898. x
  13899. - Frank
  13900.  
  13901. From news@columbia.edu Fri Sep 30 12:24:25 1994
  13902. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05501
  13903.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 09:02:23 -0400
  13904. Received: by apakabar.cc.columbia.edu id AA07168
  13905.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 09:02:21 -0400
  13906. Newsgroups: comp.protocols.kermit.misc
  13907. Path: news.columbia.edu!panix!MathWorks.Com!solaris.cc.vt.edu!uunet!spcuna!ritz!kudut
  13908. From: kudut@ritz.mordor.com (Ken Udut)
  13909. Subject: Re: [Q] Is there a Kermit implemented in BASIC?
  13910. Keywords: BASIC,Kermit
  13911. References: <jreinert.780914821@rhein>
  13912. Organization: Mordor International BBS - Jersey City, NJ
  13913. Date: Fri, 30 Sep 1994 12:24:25 GMT
  13914. Message-Id: <Cwxzsp.5Bq@ritz.mordor.com>
  13915. Lines: 26
  13916. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  13917.  
  13918. In article <jreinert.780914821@rhein> jreinert@rhein.informatik.uni-kl.de (Joachim Reinert - AG DVS) writes:
  13919. >Hi!
  13920. >
  13921. >I am in need for a file transfer between maschines which are
  13922. >programmable in BASIC (to be precise Business Basic) only.
  13923. >The Simtel Collection includes a "receive kermit" which will
  13924. >serve as a startingpoint. To avoid unecessary lost of sparetime:
  13925. >Is there a send/receive kermit implemented in BASIC anywhere in
  13926. >the public domain?
  13927.  
  13928. That's fastinating!  I'd be interested in following up on this myself, 
  13929. for I have a friend of mine who was recently made System Administrator 
  13930. for a company's new unix box.  He knows MS-DOS and Business BASIC as 
  13931. well, but not unix.  So, he spent his time setting up the system so that 
  13932. it runs like MS-DOS using programs like Unix WordPerfect 5.1, Lotus, etc.
  13933.  
  13934. But when he ordered the Unix, he says he *didn't* order the C compiler, 
  13935. only Business BASIC!  Now he's asking me how he can transfer files to the 
  13936. unix system via modem.
  13937.  
  13938. I'll download the .BAS file that exists at columbia and send it his way.  
  13939. I hope he can hack his way through it :-)
  13940.  
  13941.  
  13942. Ken
  13943. kudut@ritz.mordor.com
  13944.  
  13945. From news@columbia.edu Fri Sep 30 13:11:36 1994
  13946. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05966
  13947.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 09:11:38 -0400
  13948. Received: by apakabar.cc.columbia.edu id AA07714
  13949.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 09:11:37 -0400
  13950. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!zip.eecs.umich.edu!gmi.edu!ellis
  13951. From: ellis@nova.gmi.edu (R. Stewart Ellis)
  13952. Newsgroups: comp.protocols.kermit.misc
  13953. Subject: Re: Why is Kermit not popular on BBS-es?
  13954. Date: 30 Sep 94 13:11:36 GMT
  13955. Organization: GMI Engineering&Management Institute, Flint, MI
  13956. Lines: 32
  13957. Message-Id: <ellis.780930696@gmi.edu>
  13958. References: <36g46d$m36@cruella.ee.pdx.edu>
  13959. Nntp-Posting-Host: nova.gmi.edu
  13960. Keywords: BBS download-protocol zmodem performance popularity
  13961. X-Newsreader: NN version 6.5b3.0 #4 (NOV)
  13962. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  13963.  
  13964. rkwee@ee.pdx.edu (Roland Kwee) writes:
  13965.  
  13966.  >This provocative posting is an effort to distract from the current
  13967.  >discussion about the copyright issue and ftp sites.
  13968.  
  13969.  >While I like the Kermit protocol, the terminal emulator, the fact
  13970.  >that it is available for free, and runs on nearly every platform,
  13971.  >I am often unhappily surprised that many (most?) bulletin board
  13972.  >systems offer an outdated and slow version of Kermit for downloading
  13973.  >files. Also, products like Procomm show this trend.
  13974.  
  13975. They all use ancient versions with tiny packets and no sliding windows.
  13976.  
  13977.  >Is there a conspiracy against Kermit? Is it that because it is not
  13978.  >a commercial enterprise that nobody lobbies for it? Are the owners
  13979.  >of zmodem lobbying against it?
  13980.  
  13981. I think the answers are yes, yes, definitely yes.
  13982.  
  13983.  >Kermit deserves better.
  13984.  
  13985. Probably, but it would help if it were easier to configure for maximum
  13986. performance, or if it make more modern assumptions as the default, with a
  13987. series of macros included that set for the more pessimistic setups.
  13988.  
  13989.  >--Roland          email: RolandKwee@ACM.org
  13990.  
  13991. -- 
  13992.   R.Stewart(Stew) Ellis, Assoc.Prof., (Off)313-762-9765   ___________________
  13993.   Humanities & Social Science,  GMI Eng.& Mgmt. Inst.    /   _____  ______ 
  13994.   Flint, MI 48504      ellis@nova.gmi.edu               /        / /  /  / /
  13995.   Gopher,chimera,nn,tin,jove,modems, free code is best!/________/ /  /  / /
  13996.  
  13997. From news@columbia.edu Fri Sep 30 12:00:53 1994
  13998. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06066
  13999.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 09:13:28 -0400
  14000. Received: by apakabar.cc.columbia.edu id AA07928
  14001.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 09:13:26 -0400
  14002. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!convex!cs.utexas.edu!swrinde!howland.reston.ans.net!news.sprintlink.net!uunet!news.uiowa.edu!icaen!mjo
  14003. From: mjo@ecn.uiowa.edu (Mike O'Connor)
  14004. Newsgroups: comp.protocols.kermit.misc
  14005. Subject: Re: FTP Mirrors and CDROMs - again
  14006. Date: 30 Sep 1994 12:00:53 GMT
  14007. Organization: HP InterWorks Member
  14008. Lines: 21
  14009. Message-Id: <36gull$jbd@news.icaen.uiowa.edu>
  14010. References: <36efjj$n9m@apakabar.cc.columbia.edu>
  14011. Nntp-Posting-Host: iworks.ecn.uiowa.edu
  14012. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  14013.  
  14014. In article <36efjj$n9m@apakabar.cc.columbia.edu> fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  14015.  
  14016. > Yes, indeed, some sites like Garbo and Simtel add value to their
  14017. > collections by adding an index, or scanning for viruses, or packaging
  14018. ...
  14019. > But I'm willing to bet that the majority of CDROMs out there are nothing
  14020. > more than get-rich-quick schemes.  Start up gopher in the evening, come
  14021. ...
  14022. > How do we tell the difference?  Even when a company adds value to our
  14023. > product, why is it that their work should be compensated and not ours?
  14024.  
  14025. Because their work is added in a way which can be reasonably compensated.
  14026. Depending on the nature of the complementary work, it may not make any
  14027. sense to compensate.  Right now, I'm filling out little Scantron bubbles
  14028. for a computing survey.  Someone's going to take that data and generate
  14029. a report and make money off of it, without compensating me.  However,
  14030. said report may lead to computing technologies which I may want to use.
  14031. Should those people who submit you Kermit bug fixes expect a fee?  What
  14032. is the fee?  What do you base it on?  Your response seems simplistic.
  14033.  
  14034. -Mike
  14035.  
  14036. , 11,000 software programs for a fraction of a cent each is a pretty
  14037. > good deal!  But as I said earlier (I hate having to use that phrase all the
  14038. > time) we can't afford to sell Kermit that inexpensively because we not only
  14039. > distribute the software, we write it, document it, and provide tech support
  14040. > for it, and these are labor-intensive jobs.
  14041.  
  14042. For the amount of work that you put into Kermit,if you do want to keep it 
  14043. in the context of a Columbia u. "product", have you considred applying 
  14044. for grant moneys to fund its support?  The FSF accepts grants, and I
  14045. don't believe their integrity has been corrupted as a consequence.  Your
  14046. model of funding your work seems bent on frustrating people who can do
  14047. a better job of distributing your work than you can, which disturbs me.
  14048.  
  14049. > With shareware, it's a different story -- CDROM distributions such as
  14050. > Simtel's are perfect for shareware.  All the author has to do is write
  14051. > the software and then sit back and collect money.  However, despite
  14052. > suggestions from a few people, I don't think the majority of Kermit users
  14053. > want to see it turned into shareware, and I'm not sure we could do this
  14054. > even if you wanted us to, and we wanted to.
  14055.  
  14056. You seem to imply that it's so easy for a shareware author to slap 
  14057. together some random hunk of chicken vomit together and make money.  
  14058. I'd disagree, and I'd argue that attaching one's name to a piece of
  14059. crap can have bad consequences down the road.  The majority of Kermit
  14060. users would *want* an international 1-800 # where they could bitch and 
  14061. moan about their kermit woes to their heart' content, all at the expense 
  14062. of your people who'd have better things to do.  The majority of the 
  14063. Kermit users probably would gleefully accept anything which doesn't get 
  14064. in the way of their acquisition and use of Kermit.  Your policies seem
  14065. to get in the way of the users, who might prefer an independent body
  14066. doing virus scanning and professional bundling and such.
  14067.  
  14068. -Mike
  14069.  
  14070.  
  14071. From news@columbia.edu Fri Sep 30 12:30:05 1994
  14072. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06071
  14073.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 09:13:30 -0400
  14074. Received: by apakabar.cc.columbia.edu id AA07940
  14075.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 09:13:29 -0400
  14076. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!convex!cs.utexas.edu!swrinde!howland.reston.ans.net!news.sprintlink.net!uunet!news.uiowa.edu!icaen!mjo
  14077. From: mjo@ecn.uiowa.edu (Mike O'Connor)
  14078. Newsgroups: comp.protocols.kermit.misc
  14079. Subject: Re: Columbia University MS-Kermit files removed from SimTel
  14080. Date: 30 Sep 1994 12:30:05 GMT
  14081. Organization: HP InterWorks Member
  14082. Lines: 16
  14083. Message-Id: <36h0cd$jbn@news.icaen.uiowa.edu>
  14084. References: <1994Sep27.125004.27971@cc.usu.edu> <36arh5$qpp@Mercury.mcs.com> <1994Sep28.093351.28046@cc.usu.edu>
  14085. Nntp-Posting-Host: iworks.ecn.uiowa.edu
  14086. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  14087.  
  14088. In article <1994Sep28.093351.28046@cc.usu.edu> jrd@cc.usu.edu (Joe Doupnik) writes:
  14089. ...
  14090. >That's commercial activity, trading for profit in works copyrighted by others
  14091. >and covered by copyright restrictions. 
  14092. >    BBS operators making a profit offering the programs would be much
  14093. >the same as the CDROM case, in my view.
  14094. >    Internet service providers are selling time on their wires,
  14095. >irrespective of the files or programs used at the other end of the wire.
  14096. >    The copyright restriction says you can't make money selling our 
  14097. >product without our permission.
  14098.  
  14099. Joe, what about those .edu sites that may run an FTP archive in conjunction 
  14100. with a software vendor or as part of a grant, where yes, people are PAID to
  14101. run a good FTP archive and have an incentive to gather as much stuff as they
  14102. can for it?  And yes, a number of popular archives obtain money that way.
  14103.  
  14104.  
  14105. From news@columbia.edu Fri Sep 30 13:14:42 1994
  14106. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06111
  14107.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 09:14:44 -0400
  14108. Received: by apakabar.cc.columbia.edu id AA08022
  14109.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 09:14:43 -0400
  14110. Path: news.columbia.edu!usenet
  14111. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  14112. Newsgroups: comp.protocols.kermit.misc
  14113. Subject: Re: Are Columbia U's files still avial for FTP?
  14114. Date: 30 Sep 1994 13:14:42 GMT
  14115. Organization: Columbia University
  14116. Lines: 57
  14117. Message-Id: <36h302$7qj@apakabar.cc.columbia.edu>
  14118. References: <1994Sep30.114330.28907@rhrk.uni-kl.de>
  14119. Nntp-Posting-Host: fdc.cc.columbia.edu
  14120. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  14121.  
  14122. In article <1994Sep30.114330.28907@rhrk.uni-kl.de> weber@rhrk.uni-kl.de  
  14123. (Christoph Weber-Fahr [KIT]) writes:
  14124. > What's next ? ftp-os2 (aka Hobbes) ? You know, that's the central 
  14125. > OS/2 software archive, and the domain name id .cdrom.com, which is, one
  14126. > should have heard, Walnut Creek Software. c-kermit for OS/2 is there, and
  14127. > (although I have not checked) I assume its on their Hobbes CD either.
  14128. >
  14129. Fine, nobody said they could not put it on Hobbes, even though they tend
  14130. to be behind the Columbia version and we waste a lot of time answering
  14131. questions about this.
  14132.  
  14133. > Oh, and what's about the freebsd distribution ? It is on CDROM as well, 
  14134. > also from Walnut Creek. CKermit is in there. Will that be removed either ?
  14135. >
  14136. If it is on the Walnut Creek CDROM, it was put there without our permission.
  14137. Either they did not read the copyright notice, or they deliberately violated
  14138. it.
  14139.  
  14140. If it is on ANY CDROM, it is there without our permission, as we have never
  14141. yet negotiated a successful agreement with any CDROM distributor.  Read on
  14142. and see why (as if I have explained this seventeen times already).
  14143.  
  14144. > I don't think your policy wrt CDROM-Makers is a well thought one. You seem
  14145. > to require individual negotiations, which by itself is simply not feasible
  14146. > when putting several thousands of programs on a CD. The administrative 
  14147. > overhead would seem inacceptable.
  14148. > May I suggest that you decide on some criteria that
  14149. > - when met automatically allow CDROM distribution
  14150. > - are made that they cover at least the "classical" internet 
  14151. >   related archive CDs ?
  14152. We have been searching for such criteria that are mutually beneficial.
  14153. But there is an inherent contridiction here: there is no way the CDROM
  14154. companies can afford to pay us anywhere near what we have to charge ourselves
  14155. for distributed Kermit software by mail order.  Why?  Because our costs
  14156. cover not only ftping stuff and copying it to a CDROM, but also designing,
  14157. writing, maintaining, supporting, and documenting the software AND we include
  14158. a printed manual.  And conversely, there is no way we can keep the Kermit
  14159. effort going on "a fraction of a penny per program".
  14160.  
  14161. This discussion would not be taking place if nobody liked or used Kermit
  14162. software.  If you like it, if you use it, then please respect tha people
  14163. who work so hard to bring it to you.  These people are not the CDROM makers,
  14164. they are the programmers and writers who actually produce it and the tech
  14165. support people who have been answering your questions on a daily basis for
  14166. over a decade.
  14167.  
  14168. As I pointed out yesterday (there's that phrase again), CDROMs are great
  14169. for distributing shareware, because then everybody wins.  CDROMs are not
  14170. great for distributing Kermit software, because the very dynamics of the
  14171. process KILL the Kermit effort.  The only way to fight back -- and survive
  14172. -- is to change our terms so it is no longer free for everybody to use.
  14173. Is that what you want?
  14174.  
  14175. - Frank
  14176.  
  14177. From news@columbia.edu Fri Sep 30 13:02:26 1994
  14178. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06157
  14179.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 09:15:10 -0400
  14180. Received: by apakabar.cc.columbia.edu id AA08116
  14181.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 09:15:09 -0400
  14182. Newsgroups: comp.protocols.kermit.misc
  14183. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!concert!sas!mozart.unx.sas.com!newshost!sasdrq
  14184. From: sasdrq@gamecock.unx.sas.com (David Quattlebaum)
  14185. Subject: Re: Kermit icon
  14186. Sender: news@unx.sas.com (Noter of Newsworthy Events)
  14187. Message-Id: <SASDRQ.94Sep30090226@gamecock.unx.sas.com>
  14188. Date: Fri, 30 Sep 1994 13:02:26 GMT
  14189. Nntp-Posting-Host: gamecock.unx.sas.com
  14190. Organization: SAS Institute Inc.
  14191. Followup-To: comp.protocols.kermit.misc
  14192. Lines: 35
  14193. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  14194.  
  14195. Here is an icon that I think suits Kermit well. A very good likeness
  14196. of the muppet it is named for. Given to me by Paul T. Krust.
  14197.  
  14198. Have fun
  14199.  
  14200. ----------------8<-------------------------------------------
  14201. begin 644 kermit.ico
  14202. M```!``$`("`0``````#H`@``%@```"@````@````0`````$`!```````@`(`
  14203. M``````````````````````````````"```"```"`@```@````(``@```@(``
  14204. M@("``,#`P````/\``/\```#__P#_````_P#_`/__``#___\`____________
  14205. M_______________R____\O__\B__________\B__\B+_\B+___________(B
  14206. M+RJJHB(B___R(O\B+__R(B*JJJHB(B(B(B+_\B(B\B*JJJJJHB(B(B(O__\B
  14207. M(B(JJJJJJJJB(B(B____(B(BJJJ@``"JJB(B+_____(B*JJ@````"JJB(O__
  14208. M____*JJJ``````"JJB________JJH```````"JJO______^JJ@````````"J
  14209. MJO______JJ``````````"JJO____^JJ@``JJJJJJ``"JJO___ZJJ``JJJJJJ
  14210. MJJH`"JK___^JH`JJJJJJJJJJH`JJ____JJ"JJJJJJJJJJJH*JO___ZJJJJJJ
  14211. MJJJJJJJJJJK___^JJJJJJJJJJJJJJJJJ____^JJJJJJJJJJJJJJJK_____^J
  14212. MJJJJJJJJJJJJJO______^JJJJJJJJJJJJJ________^KN[JJJJJJN[K_____
  14213. M____NPN[JJJJJ[L+__________L`N[JJJJNP"__________[L`NZJJJ[`+O_
  14214. M_________[N[NJJJN[N_____________NZJJJJN________________ZJJK_
  14215. M____________________________________________________________
  14216. M__________\`````````````````````````````````````````````````
  14217. M````````````````````````````````````````````````````````````
  14218. M````````````````````````````````````````````````````````````
  14219. !````
  14220. `
  14221. end
  14222. --------------->8--------------------------------------------
  14223. --
  14224.  
  14225. R. David Quattlebaum           SAS Institute Inc.
  14226. sasdrq@unx.sas.com             SAS Campus Drive, R4138
  14227. (919)677-8000 x6284            Cary, NC 27513-2414
  14228.  
  14229.  
  14230.  
  14231. From news@columbia.edu Fri Sep 30 13:17:18 1994
  14232. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07103
  14233.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 09:33:24 -0400
  14234. Received: by apakabar.cc.columbia.edu id AA09472
  14235.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 09:33:23 -0400
  14236. Newsgroups: comp.protocols.kermit.misc
  14237. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!convex!cs.utexas.edu!swrinde!howland.reston.ans.net!EU.net!Austria.EU.net!rcvie!rcvie.co.at!wnp
  14238. From: wnp@rcvie.co.at (Wolf Paul)
  14239. Subject: Re: Columbia University MS-Kermit files removed from SimTel
  14240. Message-Id: <1994Sep30.131718.19028@aaf.alcatel.at>
  14241. Sender: news@aaf.alcatel.at
  14242. Nntp-Posting-Host: rcsw55
  14243. Reply-To: Wolf.Paul@AAF.Alcatel.AT
  14244. Organization: Alcatel Austria Research Center, Vienna, Austria
  14245. References: <9409270646.kp1130@SimTel.Coast.NET> <Cwx8nD.5EB@icdc.delcoelect.com>
  14246. Date: Fri, 30 Sep 1994 13:17:18 GMT
  14247. Lines: 53
  14248. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  14249.  
  14250. In article <Cwx8nD.5EB@icdc.delcoelect.com>, tvmyers@koicds01.icdc.delcoelect.com (Thomas V. Myers) writes:
  14251. > Keith Petersen (w8sdz@SimTel.Coast.NET) wrote:
  14252. > > According to e-mail I received this evening it appears that Columbia
  14253. > > University now feels that SimTel should no longer distribute MS-Kermit.
  14254. > That copyright notice has been there for years but Frank makes a comment about
  14255. > source code on CD-ROMs becoming stale on the shelf and you decide that it's
  14256. > suddenly time to pull Kermit off your distribution.  Either you don't enforce
  14257. > your policy except when questioned, or you don't bother to read any of the
  14258. > copyright notices until somebody asks about them.
  14259.  
  14260. According to Keith's note his decision was based on an e-mail exchange between
  14261. him and Frank da Cruz, the contents of which you are presumably not fully
  14262. aware of, and not just on "a comment" about whatever.
  14263.  
  14264. I would like to point out two important aspects which seem to get forgotten
  14265. frequently:
  14266.  
  14267. 1. Until about a year ago, SIMTEL was an operation of the US Military, and
  14268.    was run strictly as an FTP archive. There was no collection copyright, no
  14269.    policies enforced at all as to CD-ROM or other physical media distribution.
  14270.    Vendors who created CD-ROM distributions from the SIMTEL collection were
  14271.    themselves responsible for paying attention to copyright; Keith and/or
  14272.    the White Sands Missile Range did not receive any revenues from these
  14273.    distributions and were not responsible for them.
  14274.  
  14275.    THAT HAS CHANGED! The Army shut down the SIMTEL20 computer, and the
  14276.    Collection was given a new home by Coast to Coast Telecom, and renamed
  14277.    The SimTel Collection. I am not privy to all of the arrangements Keith has
  14278.    with them regarding his salary and other costs of maintaining the
  14279.    Collection, but he has stated several times that there is now a 
  14280.    collection copyright on the Collection in order that some of the funds
  14281.    required to maintain the Collection can be realized by licensing CD-ROM
  14282.    distributions. This has shifted the responsibility for complying with
  14283.    copyright laws from the CD-ROM vendors at least partly to Keith and his
  14284.    employer, and it is therefore only normal and expected that Keith had
  14285.    to think about and implement a policy which would permit them to steer 
  14286.    clear of any litigation.
  14287.  
  14288. 2. It is clear however, that with the sheer amount of material in the 
  14289.    SimTel collection, it takes time to go through all of the copyright
  14290.    notices, and of course those cases where someone complains are dealt with
  14291.    first. As I said above, this has not been an issue in the same way until
  14292.    about a year ago, so it is irrelevant what has been in the copyright
  14293.    notices "for years".
  14294.  
  14295. In any case, let's be more careful in casting aspersions and accusations of
  14296. any kind at people whose services we do not pay for and yet benefit from.
  14297. -- 
  14298.          V           Wolf N. Paul, UNIX Support/KSF     wnp@aaf.alcatel.at
  14299. +-----------------+  Alcatel Austria AG, Site "F"     +43-1-291-21-122 (w)
  14300. |  A L C A T E L  |  Ruthnergasse 1-7                 +43-1-292-1452 (fax)
  14301. +-----------------+  A-1210 Vienna-Austria/Europe       +43-1-220-6481 (h)
  14302.  
  14303. From news@columbia.edu Fri Sep 30 13:36:32 1994
  14304. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07265
  14305.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 09:36:34 -0400
  14306. Received: by apakabar.cc.columbia.edu id AA09774
  14307.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 09:36:33 -0400
  14308. Path: news.columbia.edu!usenet
  14309. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  14310. Newsgroups: comp.protocols.kermit.misc
  14311. Subject: Re: Columbia University's Kermit copyright
  14312. Date: 30 Sep 1994 13:36:32 GMT
  14313. Organization: Columbia University
  14314. Lines: 73
  14315. Message-Id: <36h490$9hc@apakabar.cc.columbia.edu>
  14316. References: <9409300557.AA12036@simtel.coast.net>
  14317. Nntp-Posting-Host: fdc.cc.columbia.edu
  14318. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  14319.  
  14320. In article <9409300557.AA12036@simtel.coast.net> w8sdz@SimTel.Coast.NET  
  14321. (Keith Petersen) writes:
  14322. > Quoting the copyright included with MS-Kermit:
  14323. > In the process of reviewing programs submitted to the SimTel collection
  14324. > I have seen many different ways of expressing distribution limitations. 
  14325. > This simple well-worded statement would solve the confrontation between
  14326. > Columbia, SimTel and Garbo, while keeping the spirit of free distribution
  14327. > of Kermit.
  14328. >    You may freely distribute the original [program name] in any way
  14329. >    you see fit other than selling it.  Users' groups and shareware
  14330. >    distribution services may charge a reasonable fee for the medium
  14331. >    and duplication costs.  Bulletin boards may not charge additional
  14332. >    fees for downloading this specific program, other than normal
  14333. >    connect-time and/or membership charges.
  14334. >    You may charge a maximum of US $5 for each disk you sell.  In the
  14335. >    case of CD-ROM compilations, the selling price is calculated as the
  14336. >    price of the CD-ROM divided by the number of products on the CD-ROM.
  14337. >    Thus, in such cases, the price is usually only a few cents.
  14338. Thanks Keith.
  14339.  
  14340. Look folks -- some of you seem intent on pinning us down to a nearly
  14341. Talmudic definition of the terms and conditions for redistributing Kermit
  14342. software, and the underlying sentiment seems to be that, despite its 
  14343. copyright status, it is really a public resource -- in the public domain,
  14344. and everybody in the world has right not only to use it (they do), but also
  14345. to redistribute it for financial gain.  They don't.
  14346.  
  14347. Fine.  Think of Kermit as a public resource, like your local fire or police
  14348. or sanitation department, or the Library of Congress.  Yes, you have a right
  14349. to its services, but somebody has to pay for them.  They are paid for out of
  14350. a tax.  That's how all of you are able to use it for free -- somebody ELSE
  14351. is paying for the work that goes into it (or more accurately this week, that
  14352. is NOT going into it :-).  (Lest anyone misunderstand, by "tax" I do not
  14353. mean a federal, state, or local tax, but income from mail-order sales of
  14354. our books and magnetic media to other end-users all over the world.)
  14355.  
  14356. The amount of work that is done -- which is not nearly as much as needs to
  14357. be done -- costs a certain amount of money: salaries, benefits, computers,
  14358. service contracts, supplies, etc.  If we don't get the money, we can't do
  14359. the work, it's that simple.
  14360.  
  14361. The various proposals that public-spirited contributors are making about how
  14362. we should give our software away to companies in order for them to sell it
  14363. to you (pardon me, Keith) cheaper than we could are intrinsically 
  14364. destructive.  Please try to understand:  This results in more copies of
  14365. Kermit software out there that we have to support, and less income for us
  14366. to pay for that support.
  14367.  
  14368. As somebody pointed out yesterday, something *is* wrong with this picture
  14369. if this debate must be carried out over and over again.  Maybe what is
  14370. wrong is that we -- silly us -- are still basically trying to provide a
  14371. public service: FREE SOFTWARE, of high quality, with solid technical support
  14372. behind it, all free.  All we ask in return is that at enough of you purchase
  14373. the accompanying manuals to keep us afloat, and that you stop haranging us
  14374. for our commercial-redistribution policies and let us get on with our work
  14375. on your behalf.  Maybe it will turn out that we really do have to change
  14376. the way we get income; I hope not.
  14377.  
  14378. On any newsgroup, there are a few vocal people and a large mass of onlookers.
  14379. There is no way of knowing how the silent onlookers feel, and the tone of
  14380. discussions like these -- i.e. controversies -- is set by the vocal ones.
  14381. In this case, the people who are raising objections to our policies are
  14382. people -- honest, decent people -- who happen to have FINANCIAL interests
  14383. that are in conflict with ours.  But in the final analysis, WE DID ALL THE
  14384. WORK and so we get to set the terms.  Those terms are the most generous
  14385. terms imaginable to the end user, so there is NO CAUSE FOR ANYBODY TO
  14386. COMPLAIN.
  14387.  
  14388. - Frank
  14389.  
  14390. From news@columbia.edu Fri Sep 30 13:51:23 1994
  14391. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07935
  14392.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 09:51:28 -0400
  14393. Received: by apakabar.cc.columbia.edu id AA10752
  14394.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 09:51:27 -0400
  14395. Path: news.columbia.edu!usenet
  14396. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  14397. Newsgroups: comp.protocols.kermit.misc
  14398. Subject: Re: FTP Mirrors and CDROMs - again
  14399. Date: 30 Sep 1994 13:51:23 GMT
  14400. Organization: Columbia University
  14401. Lines: 34
  14402. Message-Id: <36h54r$afr@apakabar.cc.columbia.edu>
  14403. References: <36gull$jbd@news.icaen.uiowa.edu>
  14404. Nntp-Posting-Host: fdc.cc.columbia.edu
  14405. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  14406.  
  14407. In article <36gull$jbd@news.icaen.uiowa.edu> mjo@ecn.uiowa.edu (Mike  
  14408. O'Connor) writes:
  14409. > Should those people who submit you Kermit bug fixes expect a fee?  What
  14410. > is the fee?  What do you base it on?  Your response seems simplistic.
  14411. My goodness, captitalism run amok.  No good deed goes unpunished, eh?
  14412.  
  14413. Yes, of course Kermit software is the product not only of several programmers
  14414. and designers who work at it full time -- some paid, others not -- but also
  14415. of hundreds of citizens of the Internet, and even quite a few people not
  14416. connected to it in any way, who send in stuff by post -- bug fixes, entire
  14417. new Kermit programs.
  14418.  
  14419. I like to think that the Kermit effort is one of the great examples of
  14420. worldwide collaboration brought about in part by the networks, but mainly
  14421. for everybody in the world to have access to a useful tool.  These people
  14422. contribute willingly and without compensation.  Their work is acknowleged
  14423. in public -- we regularly publish lists of these people in the source code,
  14424. in our books and newsletters, etc.
  14425.  
  14426. We have been operating this way for many years, and it works.  Well, it
  14427. works less now than it did before, because times are harder now and most
  14428. people can't afford to contribute as much of their time as they used to.
  14429. Computers are trading commodities.  Software itself, once an art, is now
  14430. too a commodity.
  14431.  
  14432. Everybody who sits on the sidelines and does actually do this work day and
  14433. night, week after week, year after year, is welcome to make suggestions and
  14434. comments, but what, really, is the point?  Do you really want to turn the
  14435. Kermit effort into a business?  With licenses for everybody?  Lawsuits?
  14436. Come on, folks, look what you are getting for free.  Why do you care more
  14437. about CDROM makers than about the people who produce the software?
  14438.  
  14439. - Frank
  14440.  
  14441. From news@columbia.edu Fri Sep 30 01:51:53 1994
  14442. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09387
  14443.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 10:14:27 -0400
  14444. Received: by apakabar.cc.columbia.edu id AA12447
  14445.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 10:14:26 -0400
  14446. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!convex!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  14447. From: jrd@cc.usu.edu (Joe Doupnik)
  14448. Newsgroups: comp.protocols.kermit.misc
  14449. Subject: Re: MS-Kermit question
  14450. Message-Id: <1994Sep30.075153.28308@cc.usu.edu>
  14451. Date: 30 Sep 94 07:51:53 MDT
  14452. References: <36evui$9t@mathserv.mps.ohio-state.edu> <36f562$63q@apakabar.cc.columbia.edu> <36fu6e$jd@blackice.winternet.com>
  14453. Organization: Utah State University
  14454. Lines: 20
  14455. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  14456.  
  14457. In article <36fu6e$jd@blackice.winternet.com>, jamess@winternet.com (James Sturdevant) writes:
  14458. > Frank da Cruz (fdc@fdc.cc.columbia.edu) wrote:
  14459. > : In article <36evui$9t@mathserv.mps.ohio-state.edu>  
  14460. > : davis@pacific.mps.ohio-state.edu writes:
  14461. > : >   This has been bugging me for a long time but I do not know what to do
  14462. > : > about it:  Ctrl-ENTER returns a Ctrl-J character (linefeed).  Is there
  14463. > : > anyway to suppress this?   That is, have Ctrl-ENTER simply return a RET
  14464. > : > character?
  14465. > : > 
  14466. > [Snip] Advice on redefining keys...
  14467. > That works on most keys...  Two keys left of the the "dual entry" table are
  14468. > Ctrl-J/Ctrl-Enter and Esc/Ctrl-[.  I believe that these are the only two (on
  14469. > standard 101 keyboards) that cannot be independently defined.
  14470. > JamesS
  14471. ----------
  14472.     Yup. Control-Enter is ^J from the Bios and we can't distinguish it
  14473. from typing Control-J. It is one of the many "features" of the IBM PC Bios.
  14474.     Joe D.
  14475.  
  14476. From news@columbia.edu Fri Sep 30 15:10:21 1994
  14477. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14434
  14478.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 11:18:20 -0400
  14479. Received: by apakabar.cc.columbia.edu id AA17832
  14480.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 11:18:17 -0400
  14481. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!charnel.ecst.csuchico.edu!nic-nac.CSU.net!usc!bloom-beacon.mit.edu!senator-bedfellow.mit.edu!athena.mit.edu!raoul
  14482. From: raoul@athena.mit.edu (Nico Garcia)
  14483. Newsgroups: comp.protocols.kermit.misc
  14484. Subject: Re: Kermit for SUN UNIX ?
  14485. Date: 30 Sep 1994 15:10:21 GMT
  14486. Organization: Massachusetts Institute of Technology
  14487. Lines: 18
  14488. Message-Id: <RAOUL.94Sep30111044@primavera.mit.edu>
  14489. References: <CwspsE.3xH@nntpa.cb.att.com> <36fe6d$jiu@apakabar.cc.columbia.edu>
  14490. Nntp-Posting-Host: primavera.mit.edu
  14491. In-Reply-To: fdc@fdc.cc.columbia.edu's message of 29 Sep 1994 22:13:33 GMT
  14492. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  14493.  
  14494. In article <36fe6d$jiu@apakabar.cc.columbia.edu> fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  14495.  
  14496.    In article <CwspsE.3xH@nntpa.cb.att.com> pd@erredfs1.er.att.com (Paul  
  14497.    Davidson) writes:
  14498.    > The Subject says it all Where can I get the source or
  14499.    > binaries for kermit on SUN OS (UNIX) ?/
  14500.    >
  14501.    kermit.columbia.edu:kermit/test/bin/cku190.tar.Z (or .gz).
  14502.  
  14503. Read the path name. Those are *test* binaries. For source, get
  14504. kermit/b/cku189.uue, uudecode it, and pull the source out of the
  14505. resulting tar file. I use this version on my Sparc II with SunOs 4.1.2
  14506. with no problem.
  14507.  
  14508. For binaries, go to kermit/bin/ckuker.sparc.sunos[appropriate OS].
  14509.  
  14510.                 Nico Garcia
  14511.                 raoul@athena.mit.edu
  14512.  
  14513. From news@columbia.edu Fri Sep 30 15:25:19 1994
  14514. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14818
  14515.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 11:27:41 -0400
  14516. Received: by apakabar.cc.columbia.edu id AA18399
  14517.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 11:27:39 -0400
  14518. Path: news.columbia.edu!panix!not-for-mail
  14519. From: spencer@panix.com (David Spencer)
  14520. Newsgroups: comp.protocols.kermit.misc
  14521. Subject: Minimal control prefixing
  14522. Date: 30 Sep 1994 11:25:19 -0400
  14523. Organization: Project Development and Finance
  14524. Lines: 17
  14525. Message-Id: <36hakv$f1u@panix3.panix.com>
  14526. Nntp-Posting-Host: panix3.panix.com
  14527. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  14528.  
  14529. What's the minimal set of control chars that should be prefixed in a
  14530. sane environment?
  14531.  
  14532. 99 44/100 % of my use of kermit is to have my i486 svr4.2 unix box
  14533. talk over the phone lines to a Sun running Solaris. The modems on both
  14534. ends are using Hayes protocol. The modem on the Sun end is connected
  14535. to a terminal server, which I believe is using telnet to talk to the
  14536. Suns. The modem on the i486 is hooked to a serial port.
  14537.  
  14538. I assume I need to escape the flow control charaacters for the modems.
  14539. I think both ends are using rts/cts, though at least one may use
  14540. xon/xoff.
  14541.  
  14542. (Heretical note: sz works fine without -e.)
  14543.  
  14544. -- 
  14545. dhs spencer@panix.com
  14546.  
  14547. From news@columbia.edu Fri Sep 30 15:37:55 1994
  14548. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16078
  14549.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 11:45:59 -0400
  14550. Received: by apakabar.cc.columbia.edu id AA19754
  14551.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 11:45:56 -0400
  14552. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!charnel.ecst.csuchico.edu!nic-nac.CSU.net!usc!howland.reston.ans.net!swrinde!news.uh.edu!uuneo.neosoft.com!Starbase.NeoSoft.COM!billw
  14553. From: billw@starbase.neosoft.com (Bill West)
  14554. Newsgroups: comp.protocols.kermit.misc
  14555. Subject: Re: stuttering screen display
  14556. Date: 30 Sep 1994 15:37:55 GMT
  14557. Organization: NeoSoft Internet Services   +1 713 684 5969
  14558. Lines: 22
  14559. Message-Id: <36hbcj$4ql@uuneo.neosoft.com>
  14560. References: <36fh5m$nn3@uuneo.neosoft.com> <36h28e$6vf@apakabar.cc.columbia.edu>
  14561. Nntp-Posting-Host: starbase.neosoft.com
  14562. X-Newsreader: TIN [version 1.2 PL2]
  14563. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  14564.  
  14565. Frank da Cruz (fdc@fdc.cc.columbia.edu) wrote:
  14566. : In article <36fh5m$nn3@uuneo.neosoft.com> billw@starbase.neosoft.com (Bill  
  14567. : West) writes:
  14568.  
  14569. : These are classic symptoms of a lack of effective flow control.  You have
  14570. : to tell Kermit to SET FLOW RTS/CTS (if your particular version supports it),
  14571. : and you also have to configure your modem for RTS/CTS flow control.
  14572.  
  14573. I think it ended up being hardware related, namely a digital VAX 4000 model
  14574. 90 with the modem hooked up to the tta2 port. I am ending up with kermit
  14575. showing a connection speed of 38400 and the port itself showing 9600
  14576. <choke>. I got rid of the screen stutter with set flo keep on ckermit, and
  14577. at the same time living with the slower baud rate that my hardware is giving
  14578. me. I did have it hooked to a decserver 200/mc and that was worse:-(. 
  14579.  
  14580. Thanks for your response and keep up the good work, I for one appreciate it.
  14581. --
  14582. ******************************************************************************
  14583. Bill West
  14584. Houston TX
  14585. email: billw@starbase.neosoft.com
  14586. ******************************************************************************
  14587.  
  14588. From news@columbia.edu Fri Sep 30 15:49:26 1994
  14589. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16331
  14590.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 11:49:31 -0400
  14591. Received: by apakabar.cc.columbia.edu id AA20107
  14592.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 11:49:27 -0400
  14593. Path: news.columbia.edu!usenet
  14594. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  14595. Newsgroups: comp.protocols.kermit.misc
  14596. Subject: Re: Kermit for SUN UNIX ?
  14597. Date: 30 Sep 1994 15:49:26 GMT
  14598. Organization: Columbia University
  14599. Lines: 32
  14600. Message-Id: <36hc26$jk8@apakabar.cc.columbia.edu>
  14601. References: <RAOUL.94Sep30111044@primavera.mit.edu>
  14602. Nntp-Posting-Host: fdc.cc.columbia.edu
  14603. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  14604.  
  14605. In article <RAOUL.94Sep30111044@primavera.mit.edu> raoul@athena.mit.edu (Nico  
  14606. Garcia) writes:
  14607. > In article <36fe6d$jiu@apakabar.cc.columbia.edu> fdc@fdc.cc.columbia.edu  
  14608. (Frank da Cruz) writes:
  14609. >    In article <CwspsE.3xH@nntpa.cb.att.com> pd@erredfs1.er.att.com (Paul  
  14610. >    Davidson) writes:
  14611. >    > The Subject says it all Where can I get the source or
  14612. >    > binaries for kermit on SUN OS (UNIX) ?/
  14613. >    kermit.columbia.edu:kermit/test/bin/cku190.tar.Z (or .gz).
  14614. > Read the path name. Those are *test* binaries. For source, get
  14615. > kermit/b/cku189.uue, uudecode it, and pull the source out of the
  14616. > resulting tar file. I use this version on my Sparc II with SunOs 4.1.2
  14617. > with no problem.
  14618. Sorry I was not sufficiently verbose.  I've been working on edit 190 for
  14619. more than a year, and I would appreciate it if people on the net would go
  14620. straight to the 190 Beta, which is quite solid.  That way, any problem
  14621. reports I get will apply to the current code, rather than to an old, frozen
  14622. version upon which countless improvements have already been made.
  14623.  
  14624. There are only a couple small matters that keep 190 from being released
  14625. right now.  One of them is the lack of a testbed for SunLink X.25, which
  14626. I hope is now remedied, and the other is the perhaps vein hope of getting
  14627. RESEND capability added to the VMS version.
  14628.  
  14629. If you find problems in 189, that's too bad, it's too late.  If you find
  14630. problems in 190, I'll fix them right away.  That's why I recommend the
  14631. test version.
  14632.  
  14633. Thank you for your indulgence,
  14634.  
  14635. - Frank
  14636.  
  14637. From news@columbia.edu Fri Sep 30 15:52:14 1994
  14638. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16511
  14639.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 11:52:16 -0400
  14640. Received: by apakabar.cc.columbia.edu id AA20363
  14641.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 11:52:15 -0400
  14642. Path: news.columbia.edu!usenet
  14643. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  14644. Newsgroups: comp.protocols.kermit.misc
  14645. Subject: Re: Minimal control prefixing
  14646. Date: 30 Sep 1994 15:52:14 GMT
  14647. Organization: Columbia University
  14648. Lines: 19
  14649. Message-Id: <36hc7e$js9@apakabar.cc.columbia.edu>
  14650. References: <36hakv$f1u@panix3.panix.com>
  14651. Nntp-Posting-Host: fdc.cc.columbia.edu
  14652. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  14653.  
  14654. In article <36hakv$f1u@panix3.panix.com> spencer@panix.com (David Spencer)  
  14655. writes:
  14656. > What's the minimal set of control chars that should be prefixed in a
  14657. > sane environment?
  14658. Please read the documentation.  This question does not have an answer.
  14659. There is no point in posting it in public hoping that somebody "out there"
  14660. has a magic answer.  There isn't one.  For each and every connection, the
  14661. answer is different, and depends on every component -- modem, terminal
  14662. server, host operating system, console driver, PAD, etc etc -- along the
  14663. path.  In general, the best assumption is that no two paths are different.
  14664. In many cases you don't even know what bxes you are going through.
  14665.  
  14666. The documentation is the ckcker.upd file that comes with C-Kermit or the
  14667. KERMIT.UPD file that comes with MS-DOS Kermit.
  14668.  
  14669. It's free, it does not cost you a cent, please read it.
  14670.  
  14671. - Frank
  14672.  
  14673. From news@columbia.edu Fri Sep 30 16:13:31 1994
  14674. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17902
  14675.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 12:13:37 -0400
  14676. Received: by apakabar.cc.columbia.edu id AA22188
  14677.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 12:13:35 -0400
  14678. Path: news.columbia.edu!usenet
  14679. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  14680. Newsgroups: comp.protocols.kermit.misc
  14681. Subject: Re: Minimal control prefixing
  14682. Date: 30 Sep 1994 16:13:31 GMT
  14683. Organization: Columbia University
  14684. Lines: 14
  14685. Message-Id: <36hdfb$lka@apakabar.cc.columbia.edu>
  14686. References: <36hc7e$js9@apakabar.cc.columbia.edu>
  14687. Nntp-Posting-Host: fdc.cc.columbia.edu
  14688. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  14689.  
  14690. In article <36hc7e$js9@apakabar.cc.columbia.edu> fdc@fdc.cc.columbia.edu  
  14691. (Frank da Cruz) writes:
  14692. > path.  In general, the best assumption is that no two paths are different.
  14693. >                                                                  ^^^^^^^^^
  14694. You know what I mean, right?  Different, the same, they're all the same
  14695. to me ...
  14696.  
  14697. > The documentation is the ckcker.upd file that comes with C-Kermit or the
  14698. > KERMIT.UPD file that comes with MS-DOS Kermit.
  14699. > It's free, it does not cost you a cent, please read it.
  14700. >
  14701. Sorry if I sound a little grumpy today, it's been a tough week.
  14702.  
  14703. - Frank
  14704.  
  14705. From news@columbia.edu Fri Sep 30 02:59:33 1994
  14706. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17927
  14707.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 12:13:53 -0400
  14708. Received: by apakabar.cc.columbia.edu id AA22251
  14709.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 12:13:52 -0400
  14710. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!convex!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  14711. From: jrd@cc.usu.edu (Joe Doupnik)
  14712. Newsgroups: comp.protocols.kermit.misc
  14713. Subject: Re: Why is Kermit not popular on BBS-es?
  14714. Message-Id: <1994Sep30.085933.28315@cc.usu.edu>
  14715. Date: 30 Sep 94 08:59:33 MDT
  14716. References: <36g46d$m36@cruella.ee.pdx.edu>
  14717. Organization: Utah State University
  14718. Lines: 23
  14719. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  14720.  
  14721. In article <36g46d$m36@cruella.ee.pdx.edu>, rkwee@ee.pdx.edu (Roland Kwee) writes:
  14722. > While I like the Kermit protocol, the terminal emulator, the fact
  14723. > that it is available for free, and runs on nearly every platform,
  14724. > I am often unhappily surprised that many (most?) bulletin board
  14725. > systems offer an outdated and slow version of Kermit for downloading
  14726. > files. Also, products like Procomm show this trend.
  14727.     <edited>
  14728. ----------
  14729.     Agreed, it's embarassing to see what's run on some BBS systems.
  14730. Well, we are trying to help this, and you can lend a hand, by issuing
  14731. a small memory footprint edition of MS-DOS Kermit v3.14 which omits all
  14732. networking and all terminal emulation. The executable is about 122KB,
  14733. +/- whatever happens in beta testing. Unwinding the many linkages between
  14734. components was not easy, but it's been accomplished.
  14735.     There are a number of uses for such a reduced version, and BBS
  14736. sites are but one of them. Full file transfer capabilities are present,
  14737. as are the script tools and command line operations (which include
  14738. restricting access to Kermit running in server mode).
  14739.         What you can do is to notify BBS operators of this Kermit-Lite edition,
  14740. once it has been released, and urge them to upgrade. We do recommend reading 
  14741. the fine manual so that their systems can exploit the heck out of scripts
  14742. and set long packets and sliding windows etc.
  14743.     Joe D.
  14744.  
  14745. From news@columbia.edu Fri Sep 30 03:52:31 1994
  14746. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17984
  14747.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 12:14:46 -0400
  14748. Received: by apakabar.cc.columbia.edu id AA22324
  14749.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 12:14:45 -0400
  14750. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!convex!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  14751. From: jrd@cc.usu.edu (Joe Doupnik)
  14752. Newsgroups: comp.protocols.kermit.misc
  14753. Subject: Re: "Just Send It" mode - possible?
  14754. Message-Id: <1994Sep30.095231.28333@cc.usu.edu>
  14755. Date: 30 Sep 94 09:52:31 MDT
  14756. References: <36d22k$9mt@balsam.unca.edu>
  14757. Organization: Utah State University
  14758. Lines: 38
  14759. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  14760.  
  14761. In article <36d22k$9mt@balsam.unca.edu>, Honeycutt@unca.edu (Mike Honeycutt) writes:
  14762. > I have a basic understanding of how when downloading/uploading
  14763. > a file Kermit sends a packet, waits for other Kermit to acknowledge
  14764. > receiving it, sends another packet, etc.
  14765. > Would it be possible to tell the sending Kermit to "Just Send It"
  14766. > without the error checking?  Most of our asyn lines on campus
  14767. > are very clean (not including modems) and I would put up with
  14768. > the occasional corrupt file to make the download go faster.
  14769. -----------
  14770.     One has to step back and ask why you would want to do this.
  14771. Presumably in an attempt to save time, yes? But it doesn't save measurable
  14772. time because the error checking is so very fast, far faster than say sending
  14773. a single byte on a serial link.
  14774.     To give you an example. Let's run two Kermits over a serial line,
  14775. and then run the same Kermits over an Ethernet path. Transfer the same
  14776. files the same way etc. Over the serial link the file byte/sec rate is
  14777. about the same as the serial line can carry. On Ethernet (TCP/IP Telnet)
  14778. the speed ranges from 40KB/sec to 80+KB/sec, depending on the machines.
  14779. In serial port terms these look like rates of 400,000-800,000 bits/sec.
  14780. The same programs, same files, just changing the comms channel. That says
  14781. the Kermit protocol portion is far faster than any serial link work. More,
  14782. the TCP/IP Telnet work is a full (and I do mean brim full) protocol stack
  14783. itself which requires time to execute; a serial channel is very much simpler.
  14784.     Basically, when using a serial link the PCs are loafing.
  14785.     As other posters have indicated, there are many things which can
  14786. go wrong in a file transfer, and errors on the wire are just one set. Error
  14787. checking is vital and yet it is extremely fast. Protocols get to be complicated
  14788. in part because they must perform certain mimimum functions to guarantee
  14789. safe delivery. But those functions are still cheap in time compared to the
  14790. speeds of serial comms wires.
  14791.     Please turn on sliding windows, even over a link two feet long
  14792. between PCs. It lets transmission continue while the first packet is being
  14793. digested. Please use long packets, say 1KB-2KB, if your link permits that
  14794. many bytes in a row (not all do, I'm sorry to say). Those two items alone 
  14795. produce much improved performance, if the comms system can support the
  14796. traffic.
  14797.        Joe D.
  14798.  
  14799. From news@columbia.edu Thu Sep 29 14:07:56 1994
  14800. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19688
  14801.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 12:40:49 -0400
  14802. Received: by apakabar.cc.columbia.edu id AA00752
  14803.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 12:40:45 -0400
  14804. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!convex!cs.utexas.edu!swrinde!howland.reston.ans.net!EU.net!sunic!news.funet.fi!zippo.uwasa.fi!uwasa.fi!ts
  14805. From: ts@uwasa.fi (Timo Salmi)
  14806. Newsgroups: comp.protocols.kermit.misc
  14807. Subject: Re: FTP Mirror Sites and CDROMs
  14808. Date: 29 Sep 1994 14:07:56 GMT
  14809. Organization: University of Vaasa
  14810. Lines: 36
  14811. Message-Id: <36ehns$6c4@zippo.uwasa.fi>
  14812. References: <36c3s4$2u4@apakabar.cc.columbia.edu> <OTTO.94Sep29144430@tukki.jyu.fi>
  14813. Nntp-Posting-Host: uwasa.fi
  14814. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  14815.  
  14816. In article <OTTO.94Sep29144430@tukki.jyu.fi> otto@tukki.jyu.fi (Otto J. Makela) writes:
  14817. :It would seem (at least to me) from this text actually that there was no
  14818. :reason for the Simtel20 and Garbo archives to remove kermit stuff from
  14819. :their archives.  They would simply have to place notes in their ftp
  14820. :directories that for example the kermit directory may not be placed on
  14821. :CD-ROM collections made from their archives, as most archive keepers are
  14822. :not really involved in the production of the CD-ROM's.  Correct?
  14823.  
  14824. Correct in theory, but not in our current policy.  Material which
  14825. may not be put on potential CDROMs of our archives are not carried. 
  14826. That would require two sets of directories, those with fully
  14827. distributable material, those with non-CDROM-eligible material.  It
  14828. is far too complicated, at least for me.  I want Garbo archives to
  14829. be one entity, not several alternative arrangements, even if in
  14830. theory that could be possible.  To be honest, I do not have
  14831. sufficient motivation for trying to maintain such a complicated
  14832. pattern.
  14833.  
  14834. I now understand from the authors that MsKermit could be retained on
  14835. Garbo if I would see to it that it would not go on any CDROM.  (I
  14836. hope I got this right?).  Fair enough, but as I said, far too
  14837. complicated for me. 
  14838.  
  14839. None of this is directed against the MsKermit authors whom I have
  14840. the pleasure to consider as net friends.  It is simply that we have
  14841. an incompatible situation.  As Frank privately put it, no hard
  14842. feelings.  These situations just come up as fact of life without any
  14843. ill-intentions from either side.  We'll just have to live with this.
  14844.  
  14845.    All the best, Timo
  14846.  
  14847. ..................................................................
  14848. Prof. Timo Salmi      Co-moderator of comp.archives.msdos.announce
  14849. Moderating at garbo.uwasa.fi anonymous FTP  archives  128.214.87.1
  14850. Faculty of Accounting & Industrial Management; University of Vaasa
  14851. Internet: ts@uwasa.fi   BBS +(358)-61-3170972; FIN-65101,  Finland
  14852.  
  14853. From news@columbia.edu Thu Sep 29 20:16:27 1994
  14854. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20834
  14855.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 12:55:03 -0400
  14856. Received: by apakabar.cc.columbia.edu id AA07795
  14857.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 12:55:00 -0400
  14858. Path: news.columbia.edu!panix!MathWorks.Com!udel!news.sprintlink.net!howland.reston.ans.net!EU.net!sunic!news.funet.fi!zippo.uwasa.fi!uwasa.fi!ts
  14859. From: ts@uwasa.fi (Timo Salmi)
  14860. Newsgroups: comp.protocols.kermit.misc
  14861. Subject: Re: FTP Mirrors and CDROMs - again
  14862. Date: 29 Sep 1994 20:16:27 GMT
  14863. Organization: University of Vaasa
  14864. Lines: 69
  14865. Message-Id: <36f7ar$aq7@zippo.uwasa.fi>
  14866. References: <36efjj$n9m@apakabar.cc.columbia.edu>
  14867. Nntp-Posting-Host: uwasa.fi
  14868. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  14869.  
  14870. In article <36efjj$n9m@apakabar.cc.columbia.edu> fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  14871. :Yes, indeed, some sites like Garbo and Simtel add value to their
  14872. :collections by adding an index, or scanning for viruses, or packaging
  14873. :the files up in different ways, before copying them to CDROM.
  14874.  
  14875. Thank you.  I appreciate the recognition.
  14876.  
  14877. :How do we tell the difference?  Even when a company adds value to our
  14878. :product, why is it that their work should be compensated and not ours?
  14879.  
  14880. There are two alternative views.  You can treat each method of
  14881. distribution equal.  For example you can say, distributing from FTP
  14882. sites is ok, distributing on CDROMs is not ok, distributing on 2.8Mb
  14883. disks in not ok, and so on.
  14884.  
  14885. Another alternative is giving the consent according to the
  14886. distributor.  There are authors who have granted SimTel and Garbo
  14887. such a permission for their potential CDROMs while not the others. 
  14888. Unfair one might say at first sight, but stop to reflect this for a
  14889. moment.  We have quite a similar problem when evaluating programs
  14890. submitted to us.  Some we accept, some we don't because they are not
  14891. up to our standards.  Life is full of non-mechanistic choices.  You
  14892. can as well ask me "how come I accept someone's work while I reject
  14893. that of someone else".  The answer is by my personal judgement and
  14894. the criteria I may have developed from the years of experience I
  14895. might have.  We all are human decision makers, not pre-programmed
  14896. machines. 
  14897.  
  14898. Please do not get me wrong on two accounts.  First, I am not
  14899. suggesting that you SHOULD grant us special treatment.  I am just
  14900. pointing out that there are different approaches to this dilemma. 
  14901. Second, it is your privilege to decide your policies.  I am not
  14902. contesting them in any way.  Whatever decision you have made, I'll
  14903. respect it. 
  14904.  
  14905. :Finally, once again and for the last time:  We, Columbia University,
  14906. :did not and never have told Garbo, Simtel, or any other site to remove
  14907. :Kermit software from their archives.  These sites elected to remove
  14908.  
  14909. That is fully understood.  The reason for removal from SimTel (if I
  14910. may speak partly for us both) and Garbo is that it would be too
  14911. cumbersome to have two versions of our archives.  A version with
  14912. fully distributable material, a version with non-CDROM material.  At
  14913. least I lack the motivation and the time for that, as I already
  14914. replied to Otto Makela's useful posting.
  14915.  
  14916. :Kermit software for their own reasons, having nothing to do with our
  14917. :policy -- or lack thereof -- toward ftp mirror sites.
  14918.  
  14919. That is exactly right.
  14920.  
  14921. We have no quarrel here.  What we have is respective policies that
  14922. at the moment make it impractical for us to continue to carry
  14923. MsMermit on our archives, and make it impractical for you to allow
  14924. use our full distibution.  Hence the impasse.
  14925.  
  14926. We just have an unfortunate combination in here.  We understand and
  14927. respect each others' views, but in our pleasant private discussions
  14928. we were unable to find a solution to accomodate our respective
  14929. policies.  Thus the discontinuation of MsKermit support from our
  14930. sites.
  14931.  
  14932.    All the best, Timo
  14933.  
  14934. ..................................................................
  14935. Prof. Timo Salmi      Co-moderator of comp.archives.msdos.announce
  14936. Moderating at garbo.uwasa.fi anonymous FTP  archives  128.214.87.1
  14937. Faculty of Accounting & Industrial Management; University of Vaasa
  14938. Internet: ts@uwasa.fi   BBS +(358)-61-3170972; FIN-65101,  Finland
  14939.  
  14940. From news@columbia.edu Fri Sep 30 03:03:58 1994
  14941. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20853
  14942.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 12:55:22 -0400
  14943. Received: by apakabar.cc.columbia.edu id AA07830
  14944.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 12:55:20 -0400
  14945. Path: news.columbia.edu!panix!MathWorks.Com!udel!news.sprintlink.net!howland.reston.ans.net!EU.net!sunic!news.funet.fi!zippo.uwasa.fi!uwasa.fi!ts
  14946. From: ts@uwasa.fi (Timo Salmi)
  14947. Newsgroups: comp.protocols.kermit.misc
  14948. Subject: Re: Are Columbia U's files still avial for FTP?
  14949. Date: 30 Sep 1994 03:03:58 GMT
  14950. Organization: University of Vaasa
  14951. Lines: 24
  14952. Message-Id: <36fv6u$dop@zippo.uwasa.fi>
  14953. References: <1994Sep29.092803.1960@gems.vcu.edu> <36em3v$2cm@apakabar.cc.columbia.edu>
  14954. Nntp-Posting-Host: uwasa.fi
  14955. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  14956.  
  14957. In article <36em3v$2cm@apakabar.cc.columbia.edu> fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  14958. :software on CDROM.  There was no need at all for them to remove Kermit
  14959. :from their ftp sites.  Complain to them about it, we had nothing to do with
  14960. :it.  Our policies have not changed.
  14961.  
  14962. Frank, that is an unfair passing the buck, and giving a run-around
  14963. to your own users.  Please don't.  You have repeatedly explained
  14964. that you did not actually require us to remove MsKermit from Garbo
  14965. and SimTel.  True.  We have repeatedly explained why we had no
  14966. choice given your policy about SimTel and potential Garbo CD-ROMs.
  14967. Also true.
  14968.  
  14969. Please let's not confuse YOUR users what this is about.
  14970.  
  14971. I have not exhorted the users to COMPLAIN to anyone, nor will I
  14972. stoop to it now. 
  14973.  
  14974.    All the best, Timo
  14975.  
  14976. ..................................................................
  14977. Prof. Timo Salmi      Co-moderator of comp.archives.msdos.announce
  14978. Moderating at garbo.uwasa.fi anonymous FTP  archives  128.214.87.1
  14979. Faculty of Accounting & Industrial Management; University of Vaasa
  14980. Internet: ts@uwasa.fi   BBS +(358)-61-3170972; FIN-65101,  Finland
  14981.  
  14982. From news@columbia.edu Fri Sep 30 04:22:51 1994
  14983. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20983
  14984.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 12:56:09 -0400
  14985. Received: by apakabar.cc.columbia.edu id AA07876
  14986.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 12:56:05 -0400
  14987. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!convex!cs.utexas.edu!swrinde!howland.reston.ans.net!EU.net!sunic!news.funet.fi!zippo.uwasa.fi!uwasa.fi!ts
  14988. From: ts@uwasa.fi (Timo Salmi)
  14989. Newsgroups: comp.protocols.kermit.misc
  14990. Subject: Re: Are Columbia U's files still avial for FTP?
  14991. Date: 30 Sep 1994 04:22:51 GMT
  14992. Organization: University of Vaasa
  14993. Lines: 37
  14994. Message-Id: <36g3qr$e6u@zippo.uwasa.fi>
  14995. References: <1994Sep29.092803.1960@gems.vcu.edu> <36em3v$2cm@apakabar.cc.columbia.edu>
  14996. Nntp-Posting-Host: uwasa.fi
  14997. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  14998.  
  14999. In article <36em3v$2cm@apakabar.cc.columbia.edu> fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  15000. :available via ftp, just as it always was.  Once again, for the umpteenth
  15001. :time, nobody has told ANYBODY to take Kermit software off their ftp sites.
  15002.  
  15003. Technically true, but lopsided.
  15004.  
  15005. Let me explicitly spell out the existing alternatives.
  15006.  
  15007. 1) We leave current the situation as is.  Consequence: No MsKermit
  15008. material at SimTel and Garbo. 
  15009.  
  15010. 2) Columbia change their policies and lift their ban on CDROM
  15011. distribution altogether.  Obviously out of the question.
  15012.  
  15013. 3) Columbia change part of their policies by granting SimTel and
  15014. Garbo an exception permission to have MsKermit material also on
  15015. their CDROMs.  Conququence: The material would be put back on these
  15016. two sites and all their mirrors.  (What other FTP sites and BBSes
  15017. will and would do is outside our jurisdiction). 
  15018.  
  15019. 4) SimTel and Garbo give up CDROMs.  Totally unrealistic.  Out of the
  15020. question.
  15021.  
  15022. 5) SimTel and Garbo set aside a section for restricted material.  As
  15023. for Garbo, I am not prepared to do that.  Way too cumbersome and
  15024. confusing.  No motivation.
  15025.  
  15026. These are the simple facts of the situation.  At the moment it seems
  15027. that alternative #1 will prevail.
  15028.  
  15029.    All the best, Timo
  15030.  
  15031. ..................................................................
  15032. Prof. Timo Salmi      Co-moderator of comp.archives.msdos.announce
  15033. Moderating at garbo.uwasa.fi anonymous FTP  archives  128.214.87.1
  15034. Faculty of Accounting & Industrial Management; University of Vaasa
  15035. Internet: ts@uwasa.fi   BBS +(358)-61-3170972; FIN-65101,  Finland
  15036.  
  15037. From news@columbia.edu Fri Sep 30 17:00:29 1994
  15038. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21423
  15039.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 13:00:36 -0400
  15040. Received: by apakabar.cc.columbia.edu id AA08409
  15041.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 13:00:35 -0400
  15042. Path: news.columbia.edu!usenet
  15043. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  15044. Newsgroups: comp.protocols.kermit.misc
  15045. Subject: Re: FTP Mirror Sites and CDROMs
  15046. Date: 30 Sep 1994 17:00:29 GMT
  15047. Organization: Columbia University
  15048. Lines: 15
  15049. Message-Id: <36hg7d$86f@apakabar.cc.columbia.edu>
  15050. References: <36ehns$6c4@zippo.uwasa.fi>
  15051. Nntp-Posting-Host: fdc.cc.columbia.edu
  15052. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15053.  
  15054. In article <36ehns$6c4@zippo.uwasa.fi> ts@uwasa.fi (Timo Salmi) writes:
  15055. > ...far too complicated, at least for me.  I want Garbo archives to
  15056. > be one entity, not several alternative arrangements, even if in
  15057. > theory that could be possible.  To be honest, I do not have
  15058. > sufficient motivation for trying to maintain such a complicated
  15059. > pattern.
  15060. Thank you, Timo.  This also goes to the complaint about the Kermit
  15061. archives not being in exactly the format that you, personally, like
  15062. best.  Timo is only one guy, so am I.  Maintaining multiple copies of
  15063. archives to suit various sets of requirements and tastes is not high
  15064. on his priority list, nor ours at Columbia, even though we actually
  15065. do this to cover the most popular cases.
  15066.  
  15067. - Frank
  15068.  
  15069. From news@columbia.edu Fri Sep 30 17:57:29 1994
  15070. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24777
  15071.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 13:58:13 -0400
  15072. Received: by apakabar.cc.columbia.edu id AA13508
  15073.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 13:58:12 -0400
  15074. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!convex!cs.utexas.edu!math.ohio-state.edu!usenet
  15075. From: davis@pacific.mps.ohio-state.edu
  15076. Newsgroups: comp.protocols.kermit.misc
  15077. Subject: Re: MS-Kermit question
  15078. Date: 30 Sep 1994 17:57:29 GMT
  15079. Organization: None
  15080. Lines: 20
  15081. Message-Id: <36hji9$ses@mathserv.mps.ohio-state.edu>
  15082. References: <36evui$9t@mathserv.mps.ohio-state.edu> <36f562$63q@apakabar.cc.columbia.edu> <36fu6e$jd@blackice.winternet.com> <1994Sep30.075153.28308@cc.usu.edu>
  15083. Reply-To: davis@amy.tch.harvard.edu
  15084. Nntp-Posting-Host: pacific.mps.ohio-state.edu
  15085. X-Newsreader: S-Lang: slrn (0.1.4.0)
  15086. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15087.  
  15088. In article <1994Sep30.075153.28308@cc.usu.edu>, jrd@cc.usu.edu (Joe Doupnik)
  15089. writes: 
  15090.  :     Yup. Control-Enter is ^J from the Bios and we can't distinguish it
  15091.  : from typing Control-J. It is one of the many "features" of the IBM PC Bios.
  15092.  :     Joe D.
  15093.  
  15094. Sure you can:
  15095.  
  15096.    i = (unsigned int) bioskey (0);   
  15097.    if (i == 0x1C0A)  ----> Ctrl-Enter
  15098.  
  15099. --
  15100.      _____________
  15101. #___/John E. Davis\_________________________________________________________
  15102. #
  15103. # internet: davis@amy.tch.harvard.edu
  15104. #   bitnet: davis@ohstpy
  15105. #   office: 617-735-6746
  15106. #
  15107.  
  15108.  
  15109. From news@columbia.edu Fri Sep 30 03:59:42 1994
  15110. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01912
  15111.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 15:26:22 -0400
  15112. Received: by apakabar.cc.columbia.edu id AA21469
  15113.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 15:26:18 -0400
  15114. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!news-feed-1.peachnet.edu!emory!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  15115. From: jrd@cc.usu.edu (Joe Doupnik)
  15116. Newsgroups: comp.protocols.kermit.misc
  15117. Subject: Re: "Just Send It" mode - possible?
  15118. Message-Id: <1994Sep30.095942.28338@cc.usu.edu>
  15119. Date: 30 Sep 94 09:59:42 MDT
  15120. References: <36d22k$9mt@balsam.unca.edu> <jhurwitCwwsAz.Erz@netcom.com>
  15121. Organization: Utah State University
  15122. Lines: 25
  15123. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15124.  
  15125. In article <jhurwitCwwsAz.Erz@netcom.com>, jhurwit@netcom.com (Jeffrey Hurwit) writes:
  15126. > In article <36d22k$9mt@balsam.unca.edu>, 
  15127. > Mike Honeycutt (Honeycutt@unca.edu) wrote:
  15128. >>Would it be possible to tell the sending Kermit to "Just Send It"
  15129. >>without the error checking?  Most of our asyn lines on campus
  15130. >>are very clean (not including modems) and I would put up with
  15131. >>the occasional corrupt file to make the download go faster.
  15132. >     From the help file for MS-Kermit 3.13:
  15133. > * COMMANDS FOR FILE TRANSFER WITHOUT ERROR CHECKING
  15134. > Kermit can also transfer files or other information with remote computers,
  15135. > services, or devices that do not support the Kermit file transfer protocol.
  15136. > These methods provide no error detection or correction. Use with caution.
  15137. > TRANSMIT <filename>
  15138. >   Send a text file to the host as if you were typing it at the keyboard
  15139. >   a line at a time.  Waits for linefeed (\10) to echo before sending next
  15140. >   line.     Uses all current communication settings (parity, flow, etc).
  15141. ----------
  15142.     Nah. That's a crude stop and wait item. See the "waits for linefeed"
  15143. guy. No error checking, no flow control, no nothing; just send & pray.
  15144.     Joe D.
  15145.  
  15146. From news@columbia.edu Fri Sep 30 19:39:24 1994
  15147. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02831
  15148.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 15:39:31 -0400
  15149. Received: by apakabar.cc.columbia.edu id AA22668
  15150.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 15:39:29 -0400
  15151. Path: news.columbia.edu!usenet
  15152. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  15153. Newsgroups: comp.protocols.kermit.misc
  15154. Subject: Re: "Just Send It" mode - possible?
  15155. Date: 30 Sep 1994 19:39:24 GMT
  15156. Organization: Columbia University
  15157. Lines: 25
  15158. Message-Id: <36hphd$m45@apakabar.cc.columbia.edu>
  15159. References: <1994Sep30.095942.28338@cc.usu.edu>
  15160. Nntp-Posting-Host: fdc.cc.columbia.edu
  15161. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15162.  
  15163. In article <1994Sep30.095942.28338@cc.usu.edu> jrd@cc.usu.edu (Joe Doupnik)  
  15164. writes:
  15165. > > ...
  15166. > > * COMMANDS FOR FILE TRANSFER WITHOUT ERROR CHECKING
  15167. > > ...
  15168. > > TRANSMIT <filename>
  15169. > >   Send a text file to the host as if you were typing it at the keyboard
  15170. > >   a line at a time.  ...
  15171. >
  15172. > Nah. That's a crude stop and wait item. See the "waits for linefeed"
  15173. > guy. No error checking, no flow control, no nothing; just send & pray.
  15174. >
  15175. For your amusement: This is what Windows Terminal calls "text mode" file
  15176. transfer.  Guess what "binary mode" file transfer is.  Hint: it's not
  15177. what you think.
  15178.  
  15179. - Frank
  15180. x
  15181. x
  15182. x
  15183. x
  15184. x
  15185. x
  15186. x
  15187. x
  15188.  
  15189. From news@columbia.edu Fri Sep 30 18:04:18 1994
  15190. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03637
  15191.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 15:55:20 -0400
  15192. Received: by apakabar.cc.columbia.edu id AA23866
  15193.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 15:55:18 -0400
  15194. Path: news.columbia.edu!panix!MathWorks.Com!udel!news.sprintlink.net!howland.reston.ans.net!torn!news.ccs.queensu.ca!djm.MAST.QueensU.CA!dmurdoch
  15195. From: dmurdoch@mast.queensu.ca (Duncan Murdoch)
  15196. Newsgroups: comp.protocols.kermit.misc
  15197. Subject: Re: Are Columbia U's files still avial for FTP?
  15198. Date: Fri, 30 Sep 1994 18:04:18 GMT
  15199. Organization: Queen's University
  15200. Lines: 26
  15201. Message-Id: <dmurdoch.1325.2E8C5321@mast.queensu.ca>
  15202. References: <1994Sep29.092803.1960@gems.vcu.edu> <36em3v$2cm@apakabar.cc.columbia.edu>
  15203. Nntp-Posting-Host: djm.mast.queensu.ca
  15204. X-Newsreader: Trumpet for Windows [Version 1.0 Rev A]
  15205. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15206.  
  15207. In article <36em3v$2cm@apakabar.cc.columbia.edu> fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  15208.  
  15209. >Let me explain again, for the benefit of those who did not read my earlier
  15210. >messages, some of which might not have been delivered.  The two sites who
  15211. >posted announcements to this effect removed the Kermit files from their
  15212. >archives because we could not reach an agreement about their SELLING our
  15213. >software on CDROM.  There was no need at all for them to remove Kermit
  15214. >from their ftp sites.  Complain to them about it, we had nothing to do with
  15215. >it.  Our policies have not changed.
  15216.  
  15217. This seems to be the problem - people who are unwilling to allow any 
  15218. flexibility in their policies.  Simtel and Garbo don't want special case 
  15219. software that makes production of the CDROMs more difficult.  Columbia doesn't 
  15220. recognize that having their software in the largest and best known MSDOS 
  15221. collection (Simtel) and in another very well-respected and more specialized  
  15222. collection (Garbo) *is* to their benefit.  Exposure and distribution to people 
  15223. without ftp access is worth something, and exposure to people who have never 
  15224. heard of Kermit before and who would have no idea to look for it is worth 
  15225. something.
  15226.  
  15227. It's a pretty sad state of affairs.
  15228.  
  15229.  
  15230.  
  15231. Duncan Murdoch
  15232. dmurdoch@mast.queensu.ca
  15233.  
  15234. From news@columbia.edu Fri Sep 30 19:34:42 1994
  15235. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06570
  15236.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 16:30:42 -0400
  15237. Received: by apakabar.cc.columbia.edu id AA27034
  15238.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 16:30:39 -0400
  15239. Path: news.columbia.edu!panix!MathWorks.Com!udel!news.sprintlink.net!howland.reston.ans.net!vixen.cso.uiuc.edu!sdd.hp.com!caen!news-server!hagar
  15240. From: hagar@umich.edu
  15241. Newsgroups: comp.protocols.kermit.misc
  15242. Subject: Re: Columbia University's Kermit copyright
  15243. Date: 30 Sep 1994 19:34:42 GMT
  15244. Organization: University of Michigan
  15245. Lines: 27
  15246. Message-Id: <HAGAR.94Sep30153443@ulam.engin.umich.edu>
  15247. References: <9409300557.AA12036@simtel.coast.net> <36h490$9hc@apakabar.cc.columbia.edu>
  15248. Nntp-Posting-Host: ulam.engin.umich.edu
  15249. In-Reply-To: fdc@fdc.cc.columbia.edu's message of 30 Sep 1994 13:36:32 GMT
  15250. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15251.  
  15252. >>>>> "Frank" == Frank da Cruz <fdc@fdc.cc.columbia.edu> writes:
  15253.  
  15254. Frank> On any newsgroup, there are a few vocal people and a large mass of onlookers.
  15255. Frank> There is no way of knowing how the silent onlookers feel, and the tone of
  15256. Frank> discussions like these -- i.e. controversies -- is set by the vocal ones.
  15257. Frank> In this case, the people who are raising objections to our policies are
  15258. Frank> people -- honest, decent people -- who happen to have FINANCIAL interests
  15259. Frank> that are in conflict with ours.  But in the final analysis, WE DID ALL THE
  15260. Frank> WORK and so we get to set the terms.  Those terms are the most generous
  15261. Frank> terms imaginable to the end user, so there is NO CAUSE FOR ANYBODY TO
  15262. Frank> COMPLAIN.
  15263.  
  15264. I fully support Columbia University's rights on this.
  15265.  
  15266. I enjoy your books/documentation, and wish this lawyers thread would
  15267. go offline (and stay offline). 
  15268.  
  15269. -------------------------------------------------------------------------
  15270. James Paul Holloway           |e-mail: hagar@umich.edu                   
  15271.                               |   URL: http://www.engin.umich.edu/~hagar/
  15272. -------------------------------------------------------------------------
  15273. --
  15274.  
  15275. -------------------------------------------------------------------------
  15276. James Paul Holloway           |e-mail: hagar@umich.edu                   
  15277.                               |   URL: http://www.engin.umich.edu/~hagar/
  15278. -------------------------------------------------------------------------
  15279.  
  15280. From news@columbia.edu Fri Sep 30 20:37:48 1994
  15281. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07019
  15282.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 16:37:57 -0400
  15283. Received: by apakabar.cc.columbia.edu id AA27581
  15284.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 16:37:55 -0400
  15285. Path: news.columbia.edu!usenet
  15286. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  15287. Newsgroups: comp.protocols.kermit.misc
  15288. Subject: Re: Are Columbia U's files still avial for FTP?
  15289. Date: 30 Sep 1994 20:37:48 GMT
  15290. Organization: Columbia University
  15291. Lines: 52
  15292. Message-Id: <36hsus$qtn@apakabar.cc.columbia.edu>
  15293. References: <dmurdoch.1325.2E8C5321@mast.queensu.ca>
  15294. Nntp-Posting-Host: fdc.cc.columbia.edu
  15295. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15296.  
  15297. In article <dmurdoch.1325.2E8C5321@mast.queensu.ca> dmurdoch@mast.queensu.ca  
  15298. (Duncan Murdoch) writes:
  15299. > This seems to be the problem - people who are unwilling to allow any
  15300. > flexibility in their policies.  Simtel and Garbo don't want special case
  15301. > software that makes production of the CDROMs more difficult.  Columbia
  15302. > doesn't recognize that having their software in the largest and best
  15303. > known MSDOS collection (Simtel) and in another very well-respected and
  15304. > more specialized collection (Garbo) *is* to their benefit.  Exposure and
  15305. > distribution to people without ftp access is worth something, and
  15306. > exposure to people who have never heard of Kermit before and who would
  15307. > have no idea to look for it is worth something.
  15308. > It's a pretty sad state of affairs.
  15309. >
  15310. Indeed.  At the risk of gaining a reputation as the kind of person who
  15311. always must have the last word -- and I really do hope this IS the last
  15312. word -- let me try to explain how you are missing the point.
  15313.  
  15314. Of course there is value in Kermit software, and if everybody could get
  15315. for free, or dirt cheap, that would be a good thing.  We all agree about
  15316. that.  In fact, you could say the same thing about food, clothing,
  15317. education, you name it.  It would be great if you could get EVERYTHING for
  15318. free.  The point you are missing is that all these things are brought to
  15319. you by people who work.  But unlike other commodities, Kermit software
  15320. really is free to those of you on the Internet who protest so loudly about
  15321. our policies.  The people who are paying for your access to our work are
  15322. not complaining.
  15323.  
  15324. I really wish I did not have to keep repeating myself -- it is really
  15325. boring.  There is a paradox here: the more our software is spread to the
  15326. general public on CDROM, and the more popular it becomes, the more work
  15327. we have (tech support), the less time we have to devote to development,
  15328. and the less money we have to pay for tech support AND development.
  15329.  
  15330. Thus, the policy you are advocating is a very short-sighted one, the result
  15331. of which would be that everybody would get Kermit software for "a fraction
  15332. of a penny", and the Kermit effort would get nothing: our marketplace would
  15333. disappear -- because nobody in their right mind would pay $35 for the same
  15334. thing (more or less -- there is also the manual to consider) they can get
  15335. for a third of a penny.  Meanwhile, since they do not have the manual, they
  15336. pester us to death with questions that are already answered there.  Work
  15337. grows to infinity, income shrinks to zero, and poof, you've killed it.
  15338. Well, hooray, hooray, now we all have just what we wanted and it was free,
  15339. so we won!  Yay!  But then technology changes, operating systems change,
  15340. communication and networking methods change, and you are now left to the
  15341. tender mercies of all those commercial and shareware software producers who
  15342. care so much about quality and support.
  15343.  
  15344. I'm sorry, it's a whole package -- if you don't like it, don't use it, and
  15345. let us get on with devloping and supporting it for those who do,
  15346.  
  15347. - Frank
  15348.  
  15349. From news@columbia.edu Fri Sep 30 21:58:24 1994
  15350. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13188
  15351.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 17:58:35 -0400
  15352. Received: by apakabar.cc.columbia.edu id AA04360
  15353.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 17:58:33 -0400
  15354. Path: news.columbia.edu!panix!not-for-mail
  15355. From: spencer@panix.com (David Spencer)
  15356. Newsgroups: comp.protocols.kermit.misc
  15357. Subject: Re: Minimal control prefixing
  15358. Date: 30 Sep 1994 17:58:24 -0400
  15359. Organization: Project Development and Finance
  15360. Lines: 19
  15361. Message-Id: <36i1m0$uh@panix3.panix.com>
  15362. References: <36hc7e$js9@apakabar.cc.columbia.edu> <36hdfb$lka@apakabar.cc.columbia.edu>
  15363. Nntp-Posting-Host: panix3.panix.com
  15364. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15365.  
  15366. fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  15367. >> The documentation is the ckcker.upd file that comes with C-Kermit or the
  15368. >> KERMIT.UPD file that comes with MS-DOS Kermit.
  15369. >> It's free, it does not cost you a cent, please read it.
  15370.  
  15371. I did RTFM and RTFckuker.doc. Sorry I didn't RTFckcker.upd. It didn't
  15372. leap to mind as the file that would have what the man and .doc didn't
  15373. have. It was, however, most helpful.
  15374.  
  15375. The .upd doesn't answer the specific question. There are probably a
  15376. few thousand knowledgeable usenetters with substantially the same
  15377. setup. So my question still seems reasonable.
  15378.  
  15379. >Sorry if I sound a little grumpy today, it's been a tough week.
  15380.  
  15381. I've noticed. No offense taken. kermit is one of my favorite pieces of
  15382. software, so you get plenary dispensation anyway.
  15383. -- 
  15384. dhs spencer@panix.com
  15385.  
  15386. From news@columbia.edu Fri Sep 30 21:15:12 1994
  15387. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14362
  15388.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 18:16:15 -0400
  15389. Received: by apakabar.cc.columbia.edu id AA05680
  15390.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 18:16:13 -0400
  15391. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!charnel.ecst.csuchico.edu!olivea!uunet!news.uiowa.edu!icaen!mjo
  15392. From: mjo@ecn.uiowa.edu (Mike O'Connor)
  15393. Newsgroups: comp.protocols.kermit.misc
  15394. Subject: Re: FTP Mirrors and CDROMs - again
  15395. Date: 30 Sep 1994 21:15:12 GMT
  15396. Organization: HP InterWorks Member
  15397. Lines: 52
  15398. Message-Id: <36hv50$kgn@news.icaen.uiowa.edu>
  15399. References: <36gull$jbd@news.icaen.uiowa.edu> <36h54r$afr@apakabar.cc.columbia.edu>
  15400. Nntp-Posting-Host: iworks.ecn.uiowa.edu
  15401. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15402.  
  15403. In article <36h54r$afr@apakabar.cc.columbia.edu> fdc@fdc.cc.columbia.edu (Frank da Cruz) writes in response to me:
  15404.  
  15405. >> Should those people who submit you Kermit bug fixes expect a fee?  What
  15406. >> is the fee?  What do you base it on?  Your response seems simplistic.
  15407. >> 
  15408. >My goodness, captitalism run amok.  No good deed goes unpunished, eh?
  15409.  
  15410. Of course, if you take me out of context, you can say whatever silly
  15411. thing you want.  Let's see what you said first:
  15412.  
  15413. jdc> How do we tell the difference?  Even when a company adds value to our
  15414. jdc> product, why is it that their work should be compensated and not ours?
  15415.  
  15416. So I took it one step further with my "how much do you pay for Kermit
  15417. bug fixes" remark.  Then you proceed to take me out of context?  Bah!
  15418.  
  15419. >Yes, of course Kermit software is the product not only of several programmers
  15420. >and designers who work at it full time -- some paid, others not -- but also
  15421. >of hundreds of citizens of the Internet, and even quite a few people not
  15422. >connected to it in any way, who send in stuff by post -- bug fixes, entire
  15423. >new Kermit programs.
  15424.  
  15425. And I imagine they contributed with the understanding that this was 
  15426. free software that was freely redistributable.  
  15427.  
  15428. >Everybody who sits on the sidelines and does actually do this work day and
  15429. >night, week after week, year after year, is welcome to make suggestions and
  15430. >comments, but what, really, is the point?  Do you really want to turn the
  15431. >Kermit effort into a business?  With licenses for everybody?  Lawsuits?
  15432. >Come on, folks, look what you are getting for free.  Why do you care more
  15433. >about CDROM makers than about the people who produce the software?
  15434.  
  15435. I didn't say anything about licensing Kermit.  I said something about
  15436. supporting Kermit in a commercial fashion, so you can subsidize your 
  15437. activity of making Kermit into a great public product.  Selling doc is
  15438. probably not paying the bills.  I am interested in seeing Kermit 
  15439. succeed, and I don't think that what you're doing is encouraging its
  15440. success.  The reason I care about CD-ROM makers is because I can point
  15441. people who want to take a look at it and other technologies at a single
  15442. source, well-sorted and well-tested.  Also, with the emergence of FTP
  15443. archives that ARE funded -- wuarchive, sunsite, etc. -- you already 
  15444. have a situation going on where your software resides on FTP sites that
  15445. make money in a sense for running an archive, and may well be considered 
  15446. "commercial concerns" for the purposes of the Kermit/your copyright.
  15447.  
  15448. What you're doing doesn't appear to make sense for your users, and 
  15449. doesn't appear to make sense for yourself, so I have to wonder why
  15450. you're doing it, and what this means for the future of Kermit.  Are
  15451. you hoping that some sympathetic ear will give you money?  What do you
  15452. gain by artificially limiting the redistribution of FREE software?
  15453.  
  15454. -Mike
  15455.  
  15456. From news@columbia.edu Fri Sep 30 09:08:24 1994
  15457. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14425
  15458.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 18:17:52 -0400
  15459. Received: by apakabar.cc.columbia.edu id AA05750
  15460.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 18:17:51 -0400
  15461. Path: news.columbia.edu!panix!MathWorks.Com!udel!news.sprintlink.net!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  15462. From: jrd@cc.usu.edu (Joe Doupnik)
  15463. Newsgroups: comp.protocols.kermit.misc
  15464. Subject: Re: Columbia University MS-Kermit files removed from SimTel
  15465. Message-Id: <1994Sep30.150824.28401@cc.usu.edu>
  15466. Date: 30 Sep 94 15:08:24 MDT
  15467. References: <1994Sep27.125004.27971@cc.usu.edu> <36arh5$qpp@Mercury.mcs.com> <1994Sep28.093351.28046@cc.usu.edu> <36h0cd$jbn@news.icaen.uiowa.edu>
  15468. Organization: Utah State University
  15469. Lines: 37
  15470. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15471.  
  15472. In article <36h0cd$jbn@news.icaen.uiowa.edu>, mjo@ecn.uiowa.edu (Mike O'Connor) writes:
  15473. > In article <1994Sep28.093351.28046@cc.usu.edu> jrd@cc.usu.edu (Joe Doupnik) writes:
  15474. > ...
  15475. >>That's commercial activity, trading for profit in works copyrighted by others
  15476. >>and covered by copyright restrictions. 
  15477. >>    BBS operators making a profit offering the programs would be much
  15478. >>the same as the CDROM case, in my view.
  15479. >>    Internet service providers are selling time on their wires,
  15480. >>irrespective of the files or programs used at the other end of the wire.
  15481. >>    The copyright restriction says you can't make money selling our 
  15482. >>product without our permission.
  15483. > Joe, what about those .edu sites that may run an FTP archive in conjunction 
  15484. > with a software vendor or as part of a grant, where yes, people are PAID to
  15485. > run a good FTP archive and have an incentive to gather as much stuff as they
  15486. > can for it?  And yes, a number of popular archives obtain money that way.
  15487. ---------
  15488.     Well, yes, what about them. Good question.
  15489.     If an FTP site is selling software then that's still selling software
  15490. as above. The organization (to follow your example) providing the money is
  15491. doing the buying of something, but buying what. Near this point the path 
  15492. becomes obscure, as reasonable people will agree (on the obscure part if 
  15493. nothing else, sigh). 
  15494.     Normally .edu sites run on zero funding, or less, as a public service. 
  15495. Mine runs on less. Edu sites have all kinds of legal rules too, not to mention
  15496. the unwritten ones about where one spends time and which resources are used and
  15497. paid by whom, and all that jazz. Student hobby sites are left alone as an 
  15498. educational experience. My sites are doing a public service on behalf of my 
  15499. Univ.
  15500.     At the bottom of all this discussion is people are trading with 
  15501. someone else's property on a for-gain basis. Some products have specific
  15502. restrictions about the for-gain part. This leads to two questions: is
  15503. each product being sold versus money going for something else entirely,
  15504. and, if clearly for-gain ought the business be using that material as 
  15505. capital. Lawyers may wish to step in here and carry the discussion to
  15506. alt.nebulous.arguments.
  15507.     Joe D.
  15508.  
  15509. From news@columbia.edu Fri Sep 30 22:14:01 1994
  15510. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14725
  15511.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 18:24:09 -0400
  15512. Received: by apakabar.cc.columbia.edu id AA06232
  15513.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 18:24:06 -0400
  15514. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!news-feed-1.peachnet.edu!gatech!swiss.ans.net!howland.reston.ans.net!swrinde!elroy.jpl.nasa.gov!lll-winken.llnl.gov!decwrl!pa.dec.com!bora-bora.pa.dec.com!flaherty
  15515. From: flaherty@pa.dec.com (Paul Flaherty)
  15516. Newsgroups: comp.protocols.kermit.misc
  15517. Subject: Re: Are Columbia U's files still avial for FTP?
  15518. Date: 30 Sep 94 22:14:01 GMT
  15519. Organization: Digital Equipment Corporation, Palo Alto, CA, USA
  15520. Lines: 11
  15521. Message-Id: <flaherty.780963241@bora-bora.pa.dec.com>
  15522. References: <1994Sep30.114330.28907@rhrk.uni-kl.de> <36h302$7qj@apakabar.cc.columbia.edu>
  15523. Nntp-Posting-Host: bora-bora.pa.dec.com
  15524. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15525.  
  15526. A small suggestion.
  15527.  
  15528. Rather than having MSKermit binaries on the SimTel / Garbo ftp/CDROM sites,
  15529. why not instead include a text file which points to the official kermit ftp
  15530. site?  True, this isn't as ideal as a binary, but it's much better than getting
  15531. stale bits...
  15532.  
  15533.  
  15534. -- 
  15535. -=Paul Flaherty, N9FZX |     "Just name a hero, and I'll prove he's a bum."
  15536. ->paulf@pa.dec.com     |          -- Col. Gregory "Pappy" Boyington
  15537.  
  15538. From news@columbia.edu Fri Sep 30 23:09:59 1994
  15539. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17925
  15540.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 19:10:05 -0400
  15541. Received: by apakabar.cc.columbia.edu id AA09232
  15542.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 19:10:02 -0400
  15543. Path: news.columbia.edu!usenet
  15544. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  15545. Newsgroups: comp.protocols.kermit.misc
  15546. Subject: Re: FTP Mirrors and CDROMs - again
  15547. Date: 30 Sep 1994 23:09:59 GMT
  15548. Organization: Columbia University
  15549. Lines: 21
  15550. Message-Id: <36i5s7$90e@apakabar.cc.columbia.edu>
  15551. References: <36hv50$kgn@news.icaen.uiowa.edu>
  15552. Nntp-Posting-Host: fdc.cc.columbia.edu
  15553. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15554.  
  15555. In article <36hv50$kgn@news.icaen.uiowa.edu> mjo@ecn.uiowa.edu (Mike  
  15556. O'Connor) writes:
  15557. > What you're doing doesn't appear to make sense for your users, and 
  15558. > doesn't appear to make sense for yourself, so I have to wonder why
  15559. > you're doing it, and what this means for the future of Kermit.  Are
  15560. > you hoping that some sympathetic ear will give you money?  What do you
  15561. > gain by artificially limiting the redistribution of FREE software?
  15562. Sorry if I jumped down your throat or quoted you out of context -- it's
  15563. not just you, it's the whole situation.  To make amends, I will not prolong
  15564. this silly discussion any further unless something truly outrageous happens.
  15565.  
  15566. Except to say that we are indeed flexible and open to new ideas, in case
  15567. there are some that we have not already had ourselves and rejected because
  15568. they don't really work, or because we don't have the resources to implement
  15569. them (chicken-and-egg situation), or they would provoke even more debate
  15570. and acrimony than our current stance, or the circumstances of our university
  15571. status do not allow.  If somebody has a magic pill to make everybody happy, 
  15572. please share it.  Otherwise, let's all get on with our lives.
  15573.  
  15574. - Frank
  15575.  
  15576. From news@columbia.edu Fri Sep 30 10:09:46 1994
  15577. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20573
  15578.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 20:05:32 -0400
  15579. Received: by apakabar.cc.columbia.edu id AA12582
  15580.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 20:05:31 -0400
  15581. Newsgroups: comp.protocols.kermit.misc
  15582. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!wupost!netcomsv!ccougar!len.wilson
  15583. From: len.wilson@cougar.com
  15584. Subject: Re: Columbia University MS-Kermit files removed from SimTel
  15585. Message-Id: <9409300409.005UJS00@cougar.com>
  15586. References: <36e2og$4ad@zippo.uwasa.fi>
  15587. Organization: The Colorado Cougar BBS
  15588. X-Mailer: TBBS/PIMP v3.13
  15589. Date: Fri, 30 Sep 94 04:09:46 -0600
  15590. Lines: 20
  15591. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15592.  
  15593.  > In article <1994Sep28.093351.28046@cc.usu.edu> jrd@cc.usu.edu (Joe 
  15594.  > Doupnik) writes:
  15595.  >        The CDROMs are sold for profit, based on the contained programs.
  15596.  > The attraction is not a nifty logo on the CDROM or fancy box or terrific
  15597.  > browser program, though such items are worthy of charging if desired, but
  15598.  > the target objects themselves, without which there won't be much  
  15599.  > attraction. That's commercial activity, trading for profit in works 
  15600.  > copyrighted by others and covered by copyright restrictions. 
  15601.  
  15602.  This is the most ridiculous objection I've ever heard. I'm a shareware
  15603.  author and I'm tickled to death when I hear from someone who got my
  15604.  stuff from a CDROM. The more widely distributed it is, the happier I
  15605.  am.  Hell, that's why I upload my work in the first place!
  15606.  
  15607.  I just ordered a set of Simtel CDROMs for my BBS and, if I'm not mistaken,
  15608.  one of those 10,000+ programs is mine.  Neat huh?
  15609.  
  15610.  
  15611.  Len Wilson
  15612.  
  15613.  
  15614. From news@columbia.edu Fri Sep 30 09:03:45 1994
  15615. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20581
  15616.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 20:05:56 -0400
  15617. Received: by apakabar.cc.columbia.edu id AA12603
  15618.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 20:05:55 -0400
  15619. Newsgroups: comp.protocols.kermit.misc
  15620. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!swrinde!elroy.jpl.nasa.gov!decwrl!amd!amdahl!netcomsv!ix.netcom.com!netcom.com!jhurwit
  15621. From: jhurwit@netcom.com (Jeffrey Hurwit)
  15622. Subject: Re: Columbia University MS-Kermit files suspended at Garbo
  15623. Message-Id: <jhurwitCwxqIC.Mr0@netcom.com>
  15624. Organization: Organization?  What organization?
  15625. X-Newsreader: TIN [version 1.2 PL1]
  15626. References: <ts9409272153.29032@chyde.uwasa.fi> <1994Sep29.110039.73644@kuhub.cc.ukans.edu>
  15627. Date: Fri, 30 Sep 1994 09:03:45 GMT
  15628. Lines: 16
  15629. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15630.  
  15631. In article <1994Sep29.110039.73644@kuhub.cc.ukans.edu>, 
  15632. Jeff Bangert (jeff@falcon.cc.ukans.edu) wrote:
  15633.  
  15634. >Timo Salmi (ts@chyde.uwasa.fi) wrote:
  15635. >: Tue 27-Sep-94: MsKermit utilities have been suspended at Garbo.  The
  15636. >: files have not yet been physically deleted, but their read
  15637. >: permissions have been removed.  For all details of the situation
  15638. >: please see the comp.protocols.kermit.misc newsgroup.  Please do not
  15639. >: direct any queries about this to Garbo moderators.  Kermit is
  15640. >: distributed from the Columbia University.  The support person there
  15641. >: is Frank da Cruz fdc@watsun.cc.columbia.edu.
  15642.  
  15643. >I just scanned all the messages on this group -- could not find an
  15644. >announcement.  Could someone point me to it?
  15645.  
  15646.     comp.archives.msdos.announce and comp.archives.msdos.d
  15647.  
  15648. From news@columbia.edu Sat Oct  1 01:16:14 1994
  15649. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23445
  15650.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 21:21:41 -0400
  15651. Received: by apakabar.cc.columbia.edu id AA17262
  15652.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 21:21:39 -0400
  15653. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!zip.eecs.umich.edu!newsxfer.itd.umich.edu!gumby!wupost!simtel.coast.net!w8sdz
  15654. From: w8sdz@SimTel.Coast.NET (Keith Petersen)
  15655. Newsgroups: comp.protocols.kermit.misc
  15656. Subject: Re: FTP Mirrors and CDROMs - again
  15657. Message-Id: <9410010116.AA24289@SimTel.Coast.NET>
  15658. Date: Sat, 1 Oct 1994 01:16:14 GMT
  15659. Organization: SimTel, the Coast to Coast Software Repository (tm)
  15660. References: <36hv50$kgn@news.icaen.uiowa.edu> <36i5s7$90e@apakabar.cc.columbia.edu>
  15661. Lines: 27
  15662. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15663.  
  15664. fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  15665. >[...]
  15666. >Except to say that we are indeed flexible and open to new ideas, in case
  15667. >there are some that we have not already had ourselves and rejected because
  15668. >they don't really work, or because we don't have the resources to implement
  15669. >them (chicken-and-egg situation), or they would provoke even more debate
  15670. >and acrimony than our current stance, or the circumstances of our university
  15671. >status do not allow.  If somebody has a magic pill to make everybody happy,
  15672. >please share it.  Otherwise, let's all get on with our lives.
  15673.  
  15674. I hope that someone does have a magic pill because when you say that
  15675. that Kermit cannot be distributed on *any* CD-ROMs it means that the
  15676. folks who distribute FreeBSD, BSDI, SunOS, Linux, and other operating
  15677. systems, as well as DECUS, may no longer include Kermit, even through
  15678. it is free of charge, on their CD-ROMs.
  15679.  
  15680. It appears to me that you have single-handedly killed the entire free
  15681. distribution system for Kermit, except for Internet anonymous FTP.  That
  15682. will probably result in the death of the Kermit protocol on systems
  15683. which do not have access to the Internet. 
  15684.  
  15685. Keith
  15686. --
  15687. Keith Petersen
  15688. General Manager of SimTel, the Coast to Coast Software Repository (tm)
  15689. Internet: w8sdz@SimTel.Coast.NET    or      w8sdz@Vela.ACS.Oakland.Edu
  15690. Uucp: uunet!umich!vela!w8sdz                     BITNET: w8sdz@OAKLAND
  15691.  
  15692. From news@columbia.edu Fri Sep 30 11:11:39 1994
  15693. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23906
  15694.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 21:36:06 -0400
  15695. Received: by apakabar.cc.columbia.edu id AA18179
  15696.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 21:36:05 -0400
  15697. Newsgroups: comp.protocols.kermit.misc
  15698. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!swrinde!ihnp4.ucsd.edu!dog.ee.lbl.gov!newshub.nosc.mil!nosc!pegasus!rns!jrr
  15699. From: jrr@rns.com
  15700. Subject: Re: FTP for Current MS-DOS Kermit?
  15701. Message-Id: <CwxwFF.EnH@rns.com>
  15702. References: <368187$ms3@zippo.uwasa.fi> <369777$qfs@apakabar.cc.columbia.edu>
  15703. Date: Fri, 30 Sep 1994 11:11:39 GMT
  15704. Lines: 7
  15705. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15706.  
  15707. >
  15708. >Bottom line: It's our software, it bears our copyright, we did all the
  15709.                                                          ^^^^^^^^^^^^^
  15710. >work, and we get to set the terms for its distribution.  [...]
  15711.  ^^^^
  15712.  
  15713. Is this true?
  15714.  
  15715. From news@columbia.edu Fri Sep 30 12:19:49 1994
  15716. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23920
  15717.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 21:36:46 -0400
  15718. Received: by apakabar.cc.columbia.edu id AA18220
  15719.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 21:36:45 -0400
  15720. Newsgroups: comp.protocols.kermit.misc
  15721. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!zip.eecs.umich.edu!newsxfer.itd.umich.edu!gatech!swrinde!ihnp4.ucsd.edu!dog.ee.lbl.gov!newshub.nosc.mil!nosc!pegasus!richard
  15722. From: richard@pegasus.com (Richard Foulk)
  15723. Subject: send and unlink (C-kermit/Unix)?
  15724. Organization: Pegasus Information Systems
  15725. Message-Id: <CwxzL1.GA6@pegasus.com>
  15726. Date: Fri, 30 Sep 1994 12:19:49 GMT
  15727. Lines: 11
  15728. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15729.  
  15730. Zmodem (sz) has a very nice feature, invoked with `-u' that removes
  15731. each file just after it is successfully transmitted.
  15732.  
  15733. Is there a clean and reliable way to do something similar with c-kermit?
  15734.  
  15735.  
  15736. Thanks
  15737.  
  15738.  
  15739. -- 
  15740. Richard Foulk        richard@pegasus.com
  15741.  
  15742. From news@columbia.edu Fri Sep 30 11:42:51 1994
  15743. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23917
  15744.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 21:36:40 -0400
  15745. Received: by apakabar.cc.columbia.edu id AA18210
  15746.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 21:36:39 -0400
  15747. Newsgroups: comp.protocols.kermit.misc
  15748. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!zip.eecs.umich.edu!newsxfer.itd.umich.edu!gatech!swrinde!ihnp4.ucsd.edu!dog.ee.lbl.gov!newshub.nosc.mil!nosc!pegasus!richard
  15749. From: richard@pegasus.com (Richard Foulk)
  15750. Subject: Re: Exiting kermit without modem hangup
  15751. Organization: Pegasus Information Systems
  15752. Message-Id: <CwxxvG.FD3@pegasus.com>
  15753. References: <35koc2INNvl@ope001.iao.ford.com> <35n9jm$kui@apakabar.cc.columbia.edu>
  15754. Date: Fri, 30 Sep 1994 11:42:51 GMT
  15755. Lines: 23
  15756. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15757.  
  15758. >> Is it possible to exit kermit without dropping the phone line?
  15759. >> 
  15760. >Remember there are hundreds of different Kermit programs.  For some the
  15761. >answer is yes, for others it is no.  In UNIX, of course, the answer is no.
  15762. >A fundamental aspect of the UNIX operating system is that when a process
  15763. >exits, all of its open files are closed.  There is no way around it.
  15764. > [...]
  15765.  
  15766. This is not correct.
  15767.  
  15768. In general, Unix will not cause a hangup until the last process with
  15769. the port open closes it.
  15770.  
  15771. Test this by establising a connection via kermit, then attach another
  15772. process to the port (to hold it open) and do a `kill -9' to the kermit
  15773. process.  Since this kill can't be caught it doesn't allow kermit to do
  15774. any of its usual cleanup so it won't be able to disconnect the modem.
  15775.  
  15776. It would be nice if kermit would support a cleaner way to do this.
  15777.  
  15778.  
  15779. -- 
  15780. Richard Foulk        richard@pegasus.com
  15781.  
  15782. From news@columbia.edu Sat Oct  1 01:25:07 1994
  15783. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24207
  15784.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 21:47:06 -0400
  15785. Received: by apakabar.cc.columbia.edu id AA18799
  15786.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 21:47:05 -0400
  15787. Newsgroups: comp.protocols.kermit.misc
  15788. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!convex!cs.utexas.edu!uunet!gail.ripco.com!jgamble
  15789. From: jgamble@ripco.com (John M. Gamble)
  15790. Subject: Re: A Kermit library for MS-Windows
  15791. Message-Id: <Cwyzxw.Doz@rci.ripco.com>
  15792. Sender: usenet@rci.ripco.com (Net News Admin)
  15793. Organization: Ripco Internet BBS, Chicago
  15794. References: <1994Sep29.181545.11830@kullmar.se>
  15795. Date: Sat, 1 Oct 1994 01:25:07 GMT
  15796. Lines: 32
  15797. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15798.  
  15799. In article <1994Sep29.181545.11830@kullmar.se>,
  15800. Bo Kullmar <bk@kullmar.se> wrote:
  15801. >I am looking for a good commercial communication package for MS-Windows
  15802. >with fast kermit functions. I need a kermit that can use larger packages
  15803. >than 94 bytes.
  15804. >
  15805. >Any suggestion? (The Kermit server on the other end is C-Kermit 5A(188)).
  15806. >
  15807. >--Bo Kullmar
  15808. >
  15809.  
  15810. Not the response you want, but i absolutely do *not* recommend QuickLink.
  15811. It comes free with Practical Peripherals and US Robotics modems.
  15812.  
  15813. The kermit protocol choices are Kermit and Super Kermit.  I tried
  15814. connecting to a friend with it - he had QL, and i had MS-Kermit 3.10.
  15815.  
  15816. Transfer was pathetic.  I have my send and receive block sizess set to
  15817. 512.  No go, ~94 was all we got.  Even worse, literally two out of
  15818. three packets sent were failures.  This is not a statistical comment,
  15819. it really would fail two packets and then accecpt the third.  Needless
  15820. to say, this fail-two-take-one behaviour was not making us happy.
  15821.  
  15822. Super Kermit protocol had identical behavior, except that it only failed
  15823. every other packet.  I guess that's what made it "Super".
  15824.  
  15825. Ansi terminal emulation was not good... i tried a vi session via QL,
  15826. and found that i had to hit ^L after dd commands.
  15827.  
  15828. Good thing it was free, i'd hate to have to try to get a refund for it...
  15829.  
  15830.     -john
  15831.  
  15832. From news@columbia.edu Sun Oct  1 03:02:15 1994
  15833. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28200
  15834.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 23:36:24 -0400
  15835. Received: by apakabar.cc.columbia.edu id AA25023
  15836.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 23:36:23 -0400
  15837. Path: news.columbia.edu!spcuna!uunet!gatech!newsxfer.itd.umich.edu!news.itd.umich.edu!not-for-mail
  15838. From: alb@umcc.umcc.umich.edu (Alan Brushaber)
  15839. Newsgroups: comp.protocols.kermit.misc
  15840. Subject: Need Kermit for a Dec Alpha
  15841. Date: 30 Sep 1994 23:02:15 -0400
  15842. Organization: UMCC, Ann Arbor, MI, USA
  15843. Lines: 6
  15844. Message-Id: <36ijfn$fds@umcc.umcc.umich.edu>
  15845. Nntp-Posting-Host: umcc.umcc.umich.edu
  15846. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15847.  
  15848.  
  15849.   Would anyone know where I could get a copy of Kermit for
  15850. a Dec Alpha?
  15851.  
  15852. Al - alb@umcc.umich.edu
  15853.  
  15854.  
  15855. From news@columbia.edu Fri Sep 30 16:58:40 1994
  15856. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06055
  15857.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 1 Oct 1994 02:35:43 -0400
  15858. Received: by apakabar.cc.columbia.edu id AA03724
  15859.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 1 Oct 1994 02:35:40 -0400
  15860. Newsgroups: comp.protocols.kermit.misc
  15861. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!charnel.ecst.csuchico.edu!nic-nac.CSU.net!news.Cerritos.edu!news.Arizona.EDU!CS.Arizona.EDU!rainbow.cse.nau.edu!nauvax.ucc.nau.edu!tsp
  15862. From: tsp@nauvax.ucc.nau.edu
  15863. Subject: Kermit newbe needs help
  15864. Message-Id: <30SEP94.16584086@nauvax.ucc.nau.edu>
  15865. Sender: news@rainbow.cse.nau.edu (Usenet News (system))
  15866. Nntp-Posting-Host: nauvax.ucc.nau.edu
  15867. Organization: Northern Arizona University
  15868. Date: Fri, 30 Sep 1994 16:58:40 GMT
  15869. Lines: 7
  15870. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15871.  
  15872. Howdy all! I need some advice. The network that we are currently running
  15873. supports a number of Macs and PCs. From the Macs, you can put files or
  15874. get files. From the PCs, however, you can only get files. My theory is
  15875. that if I can find a Kermit program, and put it into server mode, we
  15876. should be able to send files to the PCs. Is my logic correct here? Any
  15877. suggestions on which Kermit to run? ( or other solutions?) Please
  15878. emaill dirrect asap!
  15879.  
  15880. From news@columbia.edu Thu Sep 29 04:24:43 1994
  15881. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07145
  15882.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 1 Oct 1994 03:06:38 -0400
  15883. Received: by apakabar.cc.columbia.edu id AA04782
  15884.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 1 Oct 1994 03:06:36 -0400
  15885. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!math.ohio-state.edu!sdd.hp.com!caen!kuhub.cc.ukans.edu!scff.chinalake.navy.mil!mbguest
  15886. Newsgroups: comp.protocols.kermit.misc
  15887. Subject: USing Unix editors while under kermit
  15888. Message-Id: <1994Sep29.122443.7@scff.chinalake.navy.mil>
  15889. From: mbguest@scfe.chinalake.navy.mil
  15890. Date: 29 Sep 94 12:24:43 PST
  15891. Organization: Naval Air Weapons Station
  15892. Lines: 17
  15893. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15894.  
  15895. I'm using version 1.89 on OS/2 to log into Unix box . The 
  15896. problem I have is that I can't use either Emacs or Vi because
  15897. of the lack of either an escape or an ALT-X that transmits
  15898. to the application correctly.Also the arrow keys do not
  15899. work in the applications . I have the book and have tried
  15900. both set terminal arrow-keys and set terminal keypad-mode.
  15901. What should I do next ?
  15902.  
  15903. The oddest part is that the program works fine, arrow keys in
  15904. application, etc - in calling into a VMS system. Is this some
  15905. sort of anti-unix plot <G>.
  15906.  
  15907. -- 
  15908. Matt
  15909. MBGUEST@scfe.chinalake.navy.mil
  15910. MBGUEST@ins.infonet.net
  15911. MBGUEST@delphi.com
  15912.  
  15913. From news@columbia.edu Fri Sep 30 21:06:03 1994
  15914. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08978
  15915.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 1 Oct 1994 04:01:49 -0400
  15916. Received: by apakabar.cc.columbia.edu id AA06305
  15917.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 1 Oct 1994 04:01:48 -0400
  15918. Newsgroups: comp.protocols.kermit.misc
  15919. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!swrinde!elroy.jpl.nasa.gov!decwrl!amd!amdahl!netcomsv!ix.netcom.com!netcom.com!kientzle
  15920. From: kientzle@netcom.com
  15921. Subject: Re: Minimal control prefixing
  15922. Message-Id: <kientzleCwyny4.CFy@netcom.com>
  15923. Organization: NETCOM On-line Communication Services (408 261-4700 guest)
  15924. References: <36hakv$f1u@panix3.panix.com>
  15925. Date: Fri, 30 Sep 1994 21:06:03 GMT
  15926. Lines: 26
  15927. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15928.  
  15929. In article <36hakv$f1u@panix3.panix.com> spencer@panix.com (David Spencer)  
  15930. writes:
  15931. > What's the minimal set of control chars that should be prefixed in a
  15932. > sane environment?
  15933.    Depends, of course, on what you mean by ``sane.''
  15934.  
  15935.    Here are a few points that might help you figure out what will
  15936. work for you:
  15937.    A few controls almost always have to be prefixed: the Kermit
  15938. start-of-packet character (usually Ctrl-A), Xon (Ctrl-Q) and Xoff
  15939. (Ctrl-S) (often used for flow control).
  15940.    Some others that often need prefixing: DLE (Ctrl-P), NULL, DEL,
  15941. and any special interrupt character (C-Kermit uses Ctrl-C by default).
  15942.  
  15943.    Generally, for every character you prefix, you should also prefix
  15944. the same character with the high bit set, to avoid problems caused by
  15945. parity mismatches.
  15946.  
  15947.    It does vary widely from system to system, though.  Unless you're
  15948. using a very simple connection that you understand well, at some point
  15949. it comes down to just guessing.  If you get it wrong, you'll get errors
  15950. and if you're unlucky, you'll crash something.
  15951.  
  15952.     Good luck,
  15953.                 - Tim Kientzle
  15954.  
  15955. From news@columbia.edu Fri Sep 30 21:17:04 1994
  15956. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09172
  15957.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 1 Oct 1994 04:05:33 -0400
  15958. Received: by apakabar.cc.columbia.edu id AA06413
  15959.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 1 Oct 1994 04:05:32 -0400
  15960. Newsgroups: comp.protocols.kermit.misc
  15961. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!usc!elroy.jpl.nasa.gov!decwrl!amd!amdahl!netcomsv!ix.netcom.com!netcom.com!kientzle
  15962. From: kientzle@netcom.com
  15963. Subject: Kermit Start-Of-Packet Characters
  15964. Message-Id: <kientzleCwyoGH.DMJ@netcom.com>
  15965. Summary: What ones are used?
  15966. Organization: NETCOM On-line Communication Services (408 261-4700 guest)
  15967. Date: Fri, 30 Sep 1994 21:17:04 GMT
  15968. Lines: 15
  15969. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15970.  
  15971. Besides the default Ctrl-A, what control codes are used by different
  15972. Kermit implementations for their Start-Of-Packet characters?
  15973.  
  15974. I've heard of Ctrl-B being used, and I doubt anyone uses CR, LF,
  15975. XON, or XOFF, but it would be interesting to know which ones are
  15976. used?
  15977.  
  15978. Respond via e-mail if possible and I'll post a summary.
  15979.  
  15980.             - Tim Kientzle
  15981.  
  15982. ===========================================================================
  15983. kientzle@netcom.com
  15984.  
  15985.  
  15986.  
  15987. From news@columbia.edu Fri Sep 30 21:29:14 1994
  15988. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09293
  15989.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 1 Oct 1994 04:07:56 -0400
  15990. Received: by apakabar.cc.columbia.edu id AA06454
  15991.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 1 Oct 1994 04:07:55 -0400
  15992. Newsgroups: comp.protocols.kermit.misc
  15993. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!usc!elroy.jpl.nasa.gov!decwrl!amd!amdahl!netcomsv!ix.netcom.com!netcom.com!kientzle
  15994. From: kientzle@netcom.com
  15995. Subject: Errors in Protocol Manual
  15996. Message-Id: <kientzleCwyp0r.EpL@netcom.com>
  15997. Organization: NETCOM On-line Communication Services (408 261-4700 guest)
  15998. Distribution: na
  15999. Date: Fri, 30 Sep 1994 21:29:14 GMT
  16000. Lines: 31
  16001. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16002.  
  16003. FWIW, I've found two minor errors in the Kermit Protocol Manual, 6th
  16004. edition that I recently pulled from kermit.columbia.edu.  Page numbers
  16005. are from the PostScript version.
  16006.  
  16007. Section 7.1, middle of page 44:  The description of HCHECK
  16008. claims that the header check is computed ``from the sum of the
  16009. ASCII values of the SEQ, TYPE, LENX1, and LENX2 fields'' and
  16010. then gives the formula:
  16011.     s = LEN + SEQ + TYPE + LENX1 + LENX2
  16012.  
  16013. I believe the formula is correct and the text is in error. (At least,
  16014. my Kermit implementation communicates with C-Kermit, and it does
  16015. include the LEN field in the header check.)
  16016.  
  16017.  
  16018. Section 7.1, top of page 45: ``...the sender should be prepared to
  16019. reconstruct the current packet at, say, half its size, ..., before
  16020. retransmission''
  16021.  
  16022.     In fact, this is a Bad Idea.  If the timeout is due to a lost
  16023. ACK, the receiver may not realize that the reconstructed packet (with
  16024. the same sequence number!) has different data in it.  The result can
  16025. be a transfer in which data is duplicated or dropped without either
  16026. side detecting the error.  It seems unreasonable to require the
  16027. receiver to compare each repeated packet against a stored copy of the
  16028. packet, which I believe is the only certain way to protect against
  16029. this problem and allow the sender to alter the size of a repeated
  16030. packet.
  16031.  
  16032.     Just thought someone might be interested...
  16033.                 - Tim Kientzle
  16034.  
  16035. From news@columbia.edu Fri Sep 30 21:32:27 1994
  16036. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09969
  16037.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 1 Oct 1994 04:17:45 -0400
  16038. Received: by apakabar.cc.columbia.edu id AA06994
  16039.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 1 Oct 1994 04:17:37 -0400
  16040. Newsgroups: comp.protocols.kermit.misc
  16041. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!vixen.cso.uiuc.edu!sdd.hp.com!saimiri.primate.wisc.edu!news.doit.wisc.edu!decwrl!amd!amdahl!netcomsv!ix.netcom.com!netcom.com!jhurwit
  16042. From: jhurwit@netcom.com (Jeffrey Hurwit)
  16043. Subject: Login script (was Re: kermit script)
  16044. Message-Id: <jhurwitCwyp63.KL2@netcom.com>
  16045. Organization: Organization?  What organization?
  16046. X-Newsreader: TIN [version 1.2 PL1]
  16047. References: <kiWkwiK00WB7B75aIr@andrew.cmu.edu>
  16048. Date: Fri, 30 Sep 1994 21:32:27 GMT
  16049. Lines: 146
  16050. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16051.  
  16052. In article <kiWkwiK00WB7B75aIr@andrew.cmu.edu>, 
  16053. Pedro Ferroni (pf2d+@andrew.cmu.edu) wrote:
  16054.  
  16055. >2) How do I find instructions to set up a scrip so i don't have do enter
  16056. >password, user id, telent unix, etc every time.
  16057.  
  16058.     This is the script (comments added-- you will need to strip them
  16059.     out to use the script as-is) that I use to connect to my dial-up
  16060.     (Unix) shell account on Netcom.  I was able to derive all the
  16061.     information I needed to write it from the command descriptions that
  16062.     are included in the help file that comes with MS-Kermit 3.13.  Note
  16063.     that if you include your password in a login script, anyone who has
  16064.     access to your computer can 1) log into your account and 2) read
  16065.     your login script to get your password.  An alternative script that
  16066.     doesn't include the password follows the first one.
  16067.  
  16068. SET INPUT CASE OBSERVE    [make input commands case sensitive]
  16069. SET INPUT DEFAULT 30    [input and reinput commands timeout in 30 secs.]
  16070. CLS            [clear screen]
  16071. CLEAR            [clear input buffer]
  16072. SET TERMINAL CLEAR    [clear terminal buffer]
  16073. :REDIAL            [label] (dial phone number again)
  16074. CLS            [clear screen]
  16075. OUTPUT ATDT*70,,8428835\13
  16076.     [send control string to modem followed by CR (\13): cancel call
  16077.     waiting (*70), pause 2 seconds (,,), dial number]
  16078.  
  16079. INPUT 15 BUSY        [wait 15 secs. for modem to say BUSY]
  16080. IF SUCCESS GOTO REDIAL    [and go back to :REDIAL if it does]
  16081. REINPUT 5 {NO CARRIER}    [check previous input, and wait 5 more secs. for
  16082.             modem to say NO CARRIER (note that { and } are
  16083.             quote characters)]
  16084. IF SUCCESS GOTO BUSY    [and go to :BUSY if it did (or does)]
  16085. REINPUT {CONNECT 2400}    [wait 30 more secs. for modem to say CONNECT 2400
  16086.             (substitute your own connect speed for 2400)]
  16087. IF SUCCESS GOTO LOGIN    [and go to :LOGIN if it does]
  16088.  
  16089.     [if your modem says anything other than CONNECT 2400 (eg.
  16090.     CONNECT 1200), REINPUT times out and control goes to :BUSY]
  16091.  
  16092.     NOTE:  You may have to adjust the above input command timeouts
  16093.     a little, depending on your modem and phone service.
  16094.  
  16095. :BUSY            (hang up modem and redial phone number)
  16096. HANGUP            [drop DTR to hang up modem]
  16097. CLEAR            [clear input buffer]
  16098. PAUSE 4            [wait 4 secs. (necessary for 3-way calling)]
  16099. GOTO REDIAL        [go back to :REDIAL and call again]
  16100. :LOGIN            (successful connect; start login)
  16101. REINPUT 2 {NO CARRIER}    [check back to see if carrier dropped after
  16102.             CONNECT 2400 (it happens sometimes)]
  16103. IF SUCCESS GOTO BUSY    [and go back to :BUSY if it did]
  16104.  
  16105.     NOTE:  This section is dependent on how your host system
  16106.     prompts you, and on some portion of that prompting being always
  16107.     the same.  Eg. my login prompt varies, but the last part of it
  16108.     is always 'login: '
  16109.  
  16110. REINPUT 15 {login: }    [check back and wait 15 secs. for login prompt
  16111.             (note {} to preserve space after login: )]
  16112. IF SUCCESS GOTO CONT    [and go to :CONT if it shows up]
  16113. GOTO BUSY        [go back to :BUSY if it doesn't]
  16114. :CONT            (login prompt showed up - continue login)
  16115. OUTPUT jhurwit\13    [send my userid (followed by CR)]
  16116. INPUT Password:        [wait 30 secs. for Password: prompt]
  16117. IF SUCCESS GOTO CONT1    [and go to :CONT1 if it shows up]
  16118. GOTO BUSY        [go back to :BUSY if it doesn't]
  16119. :CONT1            (password prompt showed up - continue login)
  16120. OUTPUT xxxxxx\13    [send my password (followed by CR)]
  16121.  
  16122.     NOTE:  Including your password in a login script is a security
  16123.     risk!  See introductory paragraph, and second script below.
  16124.  
  16125. INPUT 20 {Last login:}    [wait 20 secs. for Last Login: (indicates
  16126.             successful login on my system)]
  16127. IF SUCCESS GOTO CONT2    [and go to :CONT2 if it shows up]
  16128. REINPUT 10 {Invalid Login}  [check back and wait 10 more secs. for
  16129.                 Invalid Login (happens when the password
  16130.                 file is too busy)]
  16131. IF SUCCESS GOTO LOGIN    [go back to :LOGIN if this happens (a login:
  16132.             prompt always follows Invalid Login)]
  16133. GOTO BUSY        [go back to :BUSY if anything other than Last
  16134.             Login: or Invalid Login shows up]
  16135. :CONT2            (successful login)
  16136. CONNECT            [start terminal emulation]
  16137. END            [end of script]
  16138.  
  16139.     Here is the same script with a few lines added and one changed,
  16140.     that will prompt you for your password on each login.  NOTE:  If
  16141.     the variables %A and %B are being used in your MSKERMIT.INI,
  16142.     MSCUSTOM.INI, or in another script, choose another pair of
  16143.     variables from %A to %Z that aren't being used elsewhere.
  16144.  
  16145. SET INPUT CASE OBSERVE
  16146. SET INPUT DEFAULT 30
  16147. CLS
  16148. CLEAR
  16149. SET TERMINAL CLEAR
  16150. :REASK                (prompt for password again)
  16151. ASKQ \%A {Input password: }    [prompts you for your password, doesn't
  16152.                 echo what you type in, puts it in
  16153.                 variable %A]
  16154. ASKQ \%B {Input password again: }  [prompt again for comparison]
  16155. IF EQUAL \%A \%B GOTO REDIAL    [go to :REDIAL and continue login if
  16156.                 same password was enterred both times]
  16157. ECHO Passwords do not match.  Re-enter password.
  16158.     [echo this to screen]
  16159.  
  16160. GOTO REASK            [go to :REASK]
  16161. :REDIAL
  16162. CLS
  16163. OUTPUT ATDT*70,,8428835\13
  16164. INPUT 15 BUSY
  16165. IF SUCCESS GOTO REDIAL
  16166. REINPUT 5 {NO CARRIER}
  16167. IF SUCCESS GOTO BUSY
  16168. REINPUT {CONNECT 2400}
  16169. IF SUCCESS GOTO LOGIN
  16170. :BUSY
  16171. HANGUP
  16172. CLEAR
  16173. PAUSE 4
  16174. GOTO REDIAL
  16175. :LOGIN
  16176. REINPUT 2 {NO CARRIER}
  16177. IF SUCCESS GOTO BUSY
  16178. REINPUT 15 {login: }
  16179. IF SUCCESS GOTO CONT
  16180. GOTO BUSY
  16181. :CONT
  16182. OUTPUT jhurwit\13
  16183. INPUT 30 Password:
  16184. IF SUCCESS GOTO CONT1
  16185. GOTO BUSY
  16186. :CONT1
  16187. OUTPUT \%A\13        [send you password (in variable %A) followed by CR]
  16188. INPUT 20 {Last login:}
  16189. IF SUCCESS GOTO CONT2
  16190. REINPUT 10 {Invalid Login}
  16191. IF SUCCESS GOTO LOGIN
  16192. GOTO BUSY
  16193. :CONT2
  16194. ASSIGN \%A        [removes your password from memory (from
  16195. ASSIGN \%B        variables %A and %B]
  16196. CONNECT
  16197. END
  16198.  
  16199. From news@columbia.edu Fri Sep 30 20:54:27 1994
  16200. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10589
  16201.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 1 Oct 1994 04:37:21 -0400
  16202. Received: by apakabar.cc.columbia.edu id AA07585
  16203.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 1 Oct 1994 04:37:20 -0400
  16204. Newsgroups: comp.protocols.kermit.misc
  16205. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!usc!howland.reston.ans.net!agate!library.ucla.edu!ihnp4.ucsd.edu!pacbell.com!amdahl!netcomsv!ix.netcom.com!netcom.com!kientzle
  16206. From: kientzle@netcom.com
  16207. Subject: Re: Why is Kermit not popular on BBS-es?
  16208. Message-Id: <kientzleCwynEr.BFA@netcom.com>
  16209. Keywords: BBS download-protocol zmodem performance popularity
  16210. Organization: NETCOM On-line Communication Services (408 261-4700 guest)
  16211. References: <36g46d$m36@cruella.ee.pdx.edu>
  16212. Date: Fri, 30 Sep 1994 20:54:27 GMT
  16213. Lines: 52
  16214. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16215.  
  16216. In article <36g46d$m36@cruella.ee.pdx.edu>,
  16217. Roland Kwee <rkwee@ee.pdx.edu> wrote:
  16218. >This provocative posting is an effort to distract from the current
  16219. >discussion about the copyright issue and ftp sites.
  16220.    You might not succeed.  <grin>
  16221.  
  16222. >While I like the Kermit protocol, the terminal emulator, the fact
  16223. >that it is available for free, and runs on nearly every platform,
  16224. >I am often unhappily surprised that many (most?) bulletin board
  16225. >systems offer an outdated and slow version of Kermit for downloading
  16226. >files. Also, products like Procomm show this trend.
  16227.    It's somewhat curious to see how provincial the different computer
  16228. sub-communities can be.  The PC/BBS community is no different.  They
  16229. use ZModem for file transfers and PC/ANSI terminal emulations, and
  16230. don't really care about anything else.  Other sub-communities use
  16231. Kermit/VT320 or IND$FILE/3270.  It all depends on where you grew up, I
  16232. guess.  ;-)
  16233.  
  16234. >Is there a conspiracy against Kermit? Is it that because it is not
  16235. >a commercial enterprise that nobody lobbies for it? Are the owners
  16236. >of zmodem lobbying against it?
  16237.    Well, having developed several commercial terminal programs, I can
  16238. perhaps suggest some of the factors that lead to this situation:
  16239.    * ZModem source code is available in the public domain.  As a
  16240. result, adding basic ZModem support is fairly simple, since a
  16241. developer can cut and paste existing code.  To the best of my
  16242. knowledge, there is no good Kermit implementation available in the
  16243. public domain.
  16244.    * ZModem and Kermit have different goals.  ZModem's primary goal is
  16245. to be fast; Kermit's primary goal is to work over any connection.  As
  16246. a result, most potential users of these protocols use ZModem, because
  16247. it's fast.  Sure, Kermit _can_ be fast, but that requires a lot of
  16248. configuration that most users just don't want to mess with.
  16249.    * Many computer users use freely-available software for
  16250. communications.  The restrictions on C-Kermit/MS-Kermit distribution
  16251. make this option unavailable to many users.
  16252.    * Finally, the legal status of the Kermit _protocol_ is ambiguous.
  16253. I don't know for sure if protocols can or cannot be copyrighted or
  16254. patented, but I _do_ know that the ZModem protocol is in the public
  16255. domain, and I cannot get in trouble for implementing it.  I don't know
  16256. about Kermit.
  16257.  
  16258. >Kermit deserves better.
  16259.     Kermit is indeed a very nice protocol.  But a commitment to
  16260. developing and supporting a protocol like Kermit involves a lot of
  16261. considerations other than just the technical merits of the protocol.
  16262. For many commercial developers, the other issues make it unreasonable
  16263. to invest the time and energy required to implement Kermit well.
  16264.  
  16265. >--Roland          email: RolandKwee@ACM.org
  16266.  
  16267.                 - Tim Kientzle
  16268.  
  16269. From news@columbia.edu Sat Oct  1 08:50:16 1994
  16270. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11251
  16271.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 1 Oct 1994 05:02:21 -0400
  16272. Received: by apakabar.cc.columbia.edu id AA08522
  16273.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 1 Oct 1994 05:02:19 -0400
  16274. Newsgroups: comp.protocols.kermit.misc
  16275. Path: news.columbia.edu!panix!zip.eecs.umich.edu!newsxfer.itd.umich.edu!europa.eng.gtefsd.com!howland.reston.ans.net!EU.net!CERN.ch!surya1!fanchiot
  16276. From: fanchiot@surya1.cern.ch (Sergio Fanchiotti)
  16277. Subject: Re: FTP Mirrors and CDROMs - again
  16278. Message-Id: <CwzKJs.Fx7@news.cern.ch>
  16279. Sender: news@dxnews.cern.ch (USENET News System)
  16280. Organization: CERN European Lab for Particle Physics
  16281. References: <36hv50$kgn@news.icaen.uiowa.edu> <36i5s7$90e@apakabar.cc.columbia.edu> <9410010116.AA24289@SimTel.Coast.NET>
  16282. Date: Sat, 1 Oct 1994 08:50:16 GMT
  16283. Lines: 57
  16284. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16285.  
  16286. w8sdz@SimTel.Coast.NET (Keith Petersen) writes:
  16287.  
  16288. >I hope that someone does have a magic pill because when you say that
  16289. >that Kermit cannot be distributed on *any* CD-ROMs it means that the
  16290. >folks who distribute FreeBSD, BSDI, SunOS, Linux, and other operating
  16291. >systems, as well as DECUS, may no longer include Kermit, even through
  16292. >it is free of charge, on their CD-ROMs.
  16293.  
  16294. >It appears to me that you have single-handedly killed the entire free
  16295. >distribution system for Kermit, except for Internet anonymous FTP.  That
  16296. >will probably result in the death of the Kermit protocol on systems
  16297. >which do not have access to the Internet. 
  16298.  
  16299. >Keith
  16300. >--
  16301. >Keith Petersen
  16302. >General Manager of SimTel, the Coast to Coast Software Repository (tm)
  16303. >Internet: w8sdz@SimTel.Coast.NET    or      w8sdz@Vela.ACS.Oakland.Edu
  16304. >Uucp: uunet!umich!vela!w8sdz                     BITNET: w8sdz@OAKLAND
  16305.  
  16306. Keith & Frank,
  16307.  
  16308.  
  16309.     Well, as someone looking at this silly discussion for some time
  16310.     it seems that the time has come to get to work on a GPL'd version
  16311.     of a portable data transfer program like Kermit (As Les said before).
  16312.         Kermit is decent software and ubquitous but not the last word in this 
  16313.     area. And if something of the complexity of gcc is still beeing 
  16314.     supported... why not something like a kermit protocol clone? Here
  16315.     the wheel has to be re-done, hard work it is, but it may have some 
  16316.     improvements, just look at the way Linux is developed! 
  16317.  
  16318.  
  16319.     Seems that the authors & sponsors of Kermit are swiming against the
  16320.     current this time... The argument that they cannot support versions of 
  16321.     Kermit that are sold via CD-ROMS because they don't receive a dime 
  16322.     seems like nonsense. THE SUPPORT SHOULD BE CHARGED FOR if fundings is
  16323.     what is needed (or the book revenues are not sufficient)! 
  16324.     ELSE DON'T ALLOW IT IN FTP PLACES AT ALL. Then the people at Columbia 
  16325.     won't have any trouble with support... there will be none to do in the 
  16326.     future and they can do their research in peace. It is their work
  16327.     and their choice.   (Apparently if doesn't matter that 90% of the 
  16328.     people don't have FTP access...)
  16329.  
  16330.     In this respect we should thank the attitude of the Kermit team. In the
  16331.     long run something else will appear to fill this gap, hopefully better
  16332.     and easier to distribute.  Guess here is something else for RMS, once 
  16333.     the TCL flame war is over... Maybe in a feww days we'll see
  16334.     a posting with the Subject: DON'T USE KERMIT... :-)
  16335.  
  16336.     Saludos,
  16337.  
  16338.          ...Sergio Fanchiotti
  16339.  
  16340.  
  16341. Ps: Frank, what about the BBSs, they make a buck from people downloading 
  16342.     programs from them...
  16343.  
  16344. From news@columbia.edu Sat Oct  1 09:38:03 1994
  16345. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23705
  16346.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 1 Oct 1994 06:42:53 -0400
  16347. Received: by apakabar.cc.columbia.edu id AA11833
  16348.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 1 Oct 1994 06:42:52 -0400
  16349. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!EU.net!sunic!news.funet.fi!cs.joensuu.fi!news.csc.fi!convex!salmi
  16350. From: salmi@convex.csc.FI (Timo Salmi)
  16351. Newsgroups: comp.protocols.kermit.misc
  16352. Subject: Re: Why is Kermit not popular on BBS-es?
  16353. Date: 1 Oct 1994 09:38:03 GMT
  16354. Organization: Centre for Scientific Computing, Finland
  16355. Lines: 62
  16356. Message-Id: <36jalr$li4@pobox.csc.fi>
  16357. References: <36g46d$m36@cruella.ee.pdx.edu>
  16358. Reply-To: ts@uwasa.fi
  16359. Nntp-Posting-Host: convex.csc.fi
  16360. Keywords: BBS download-protocol zmodem performance popularity
  16361. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16362.  
  16363. In article <36g46d$m36@cruella.ee.pdx.edu> rkwee@ee.pdx.edu (Roland Kwee) writes:
  16364. >This provocative posting is an effort to distract from the current
  16365. >discussion about the copyright issue and ftp sites.
  16366.  
  16367. There is ample room and obviously sufficient interest for both
  16368. issues.  Besides whenever there is a thread one does not wish to
  16369. follow it is relatively easy to block it out even by kill files or
  16370. threaded newsreaders, so don't worry. 
  16371.  
  16372. >While I like the Kermit protocol, the terminal emulator, the fact
  16373. >that it is available for free, and runs on nearly every platform,
  16374. >I am often unhappily surprised that many (most?) bulletin board
  16375. >systems offer an outdated and slow version of Kermit for downloading
  16376. >files. Also, products like Procomm show this trend.
  16377.  
  16378. It is not entirely surprising, because most BBS users want and need
  16379. a fully-featured telecommunication program rather than terminal
  16380. emulation.  I won't say "just" terminal emulation, since there is
  16381. nothing disparaging in this.  Quite the contrary.  As a terminal
  16382. emulator for a professional and a semi-professional Kermit is second
  16383. to none.  But BBS users usually have different needs. 
  16384.  
  16385. For example I use different programs for different purposes:
  16386.  MsKermit: Calling by modem my Unix host
  16387.  Telnet:   Direct ethernet connection to my Unix host
  16388.  Telix:    Calling BBSes
  16389.  
  16390. From what I have seen this is not an uncommon selection.
  16391.  
  16392. >Is there a conspiracy against Kermit? Is it that because it is not
  16393. >a commercial enterprise that nobody lobbies for it? Are the owners
  16394.  
  16395. No lobbying, as you can see from the BBS success of programs like
  16396. Telix (which incidentally just went commercial), TeleMate, Boyan,
  16397. (in my view) slightly overrated Procomm+, and so on an on.  The
  16398. trend clearly seems to be away from freeware to shareware to
  16399. shefware.  Childhoods end? 
  16400.  
  16401. Please note that I am observing existing facts.  I am not speaking
  16402. for or against the trend in this. 
  16403.  
  16404. >of zmodem lobbying against it?
  16405.  
  16406. Hardly.  Extenal protocols like Zmodem are easy to come by and
  16407. easy to use (after one has once managed to set it up) for Kermit
  16408. terminal emulation.  For example that is how I transfer my material
  16409. between my home and office when connecting with a modem.
  16410.  
  16411. >Kermit deserves better.
  16412.  
  16413. Kermit is a very fine product for the purposes for which it is
  16414. meant, but just like other alternatives is does not cover all bases. 
  16415.  
  16416.    All the best, Timo
  16417.  
  16418. ..................................................................
  16419. Prof. Timo Salmi      Co-moderator of comp.archives.msdos.announce
  16420. Temporarily as salmi@convex.csc.fi  USE EMAIL ADDRESS: ts@uwasa.fi
  16421. Moderating at garbo.uwasa.fi anonymous FTP  archives  128.214.87.1
  16422. Faculty of Accounting & Industrial Management; University of Vaasa
  16423. Internet: ts@uwasa.fi   BBS +(358)-61-3170972; FIN-65101,  Finland
  16424.  
  16425.  
  16426. From news@columbia.edu Sat Oct  1 14:00:07 1994
  16427. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19640
  16428.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 1 Oct 1994 10:00:47 -0400
  16429. Received: by apakabar.cc.columbia.edu id AA19659
  16430.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 1 Oct 1994 10:00:46 -0400
  16431. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!EU.net!sunic!news.funet.fi!zippo.uwasa.fi!uwasa.fi!ts
  16432. From: ts@uwasa.fi (Timo Salmi)
  16433. Newsgroups: comp.protocols.kermit.misc,comp.archives.msdos.d
  16434. Subject: Kermit, SimTel, Garbo and CDROMs: A plea for calm.
  16435. Followup-To: comp.protocols.kermit.misc
  16436. Date: 1 Oct 1994 14:00:07 GMT
  16437. Organization: University of Vaasa
  16438. Lines: 36
  16439. Distribution: world
  16440. Message-Id: <36jq17$b28@zippo.uwasa.fi>
  16441. Nntp-Posting-Host: uwasa.fi
  16442. Xref: news.columbia.edu comp.protocols.kermit.misc:381 comp.archives.msdos.d:8874
  16443. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16444.  
  16445. As the gentle readers will know, Columbia, SimTel and Garbo have not
  16446. managed to find a mutually acceptable solution that would enable
  16447. retaining Kermit on SimTel and Garbo.
  16448.  
  16449. Please, PLEASE, dear readers.  This does not make any of us bad
  16450. persons.  I am distressed to hear that especially Frank has been
  16451. flamed for his stance.  That is *NOT* fair.  We parties concerned
  16452. are all dedicated persons, Kermit is a fine product, and we try to
  16453. maintain good FTP sites in SimTel and Garbo. 
  16454.  
  16455. Please allow us the right to have these problems without pouncing on
  16456. anyone.  It is bad enough that we have come at the impasse.  We do
  16457. not want the extra pressured from flamage.  Please state your views
  16458. calmly and rationally.
  16459.  
  16460. It is true that I wished that Frank would have a different policy
  16461. about Kermit distribution on SimTel and Garbo CDROMs.  But it is his
  16462. right and privilege.  I am not contesting that.  In fact I am ready
  16463. to defend his rights to having his own views, even if they diverge
  16464. from my own preferences.
  16465.  
  16466. A final thing for this message.  Frank as been several times
  16467. regretting the existence of comp.protocols.kermit.misc because of
  16468. this.  That is totally unnecessary!  This discussion would have
  16469. taken place with or without this particular newsgroup.  Its original
  16470. purpose STILL is intact.  But we must be allowed to discuss this
  16471. dilemma.  If it bothers anybody, kill these subjects at your
  16472. newsreaders.
  16473.  
  16474.    All the best, Timo
  16475.  
  16476. ..................................................................
  16477. Prof. Timo Salmi      Co-moderator of comp.archives.msdos.announce
  16478. Moderating at garbo.uwasa.fi anonymous FTP  archives  128.214.87.1
  16479. Faculty of Accounting & Industrial Management; University of Vaasa
  16480. Internet: ts@uwasa.fi   BBS +(358)-61-3170972; FIN-65101,  Finland
  16481.  
  16482. From news@columbia.edu Sat Oct  1 14:18:51 1994
  16483. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20594
  16484.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 1 Oct 1994 10:18:59 -0400
  16485. Received: by apakabar.cc.columbia.edu id AA28989
  16486.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 1 Oct 1994 10:18:57 -0400
  16487. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!ddsw1!not-for-mail
  16488. From: cnt@MCS.COM (Center / NT)
  16489. Newsgroups: comp.protocols.kermit.misc
  16490. Subject: NDIS Driver for Kermit
  16491. Date: 1 Oct 1994 09:18:51 -0500
  16492. Organization: MCSNet Subscriber Account, Chicago's First Public-Access Internet!
  16493. Lines: 7
  16494. Message-Id: <36jr4b$hlk@Venus.mcs.com>
  16495. Nntp-Posting-Host: venus.mcs.com
  16496. X-Newsreader: TIN [version 1.2 PL2 (KSD)]
  16497. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16498.  
  16499. One article mentions the dis_pkt9 shim to use Kermit with
  16500. NDIS compliant ethernet adapters.
  16501.  
  16502. Where can I find this?
  16503.  
  16504. Joel    cnt@mcs.com
  16505.  
  16506.  
  16507. From news@columbia.edu Sat Oct  1 14:17:27 1994
  16508. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20669
  16509.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 1 Oct 1994 10:20:39 -0400
  16510. Received: by apakabar.cc.columbia.edu id AA00435
  16511.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 1 Oct 1994 10:20:37 -0400
  16512. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!EU.net!sunic!news.funet.fi!zippo.uwasa.fi!uwasa.fi!ts
  16513. From: ts@uwasa.fi (Timo Salmi)
  16514. Newsgroups: comp.protocols.kermit.misc
  16515. Subject: Re: Columbia University's Kermit copyright
  16516. Date: 1 Oct 1994 14:17:27 GMT
  16517. Organization: University of Vaasa
  16518. Lines: 14
  16519. Message-Id: <36jr1n$cpm@zippo.uwasa.fi>
  16520. References: <9409300557.AA12036@simtel.coast.net> <36h490$9hc@apakabar.cc.columbia.edu> <HAGAR.94Sep30153443@ulam.engin.umich.edu>
  16521. Nntp-Posting-Host: uwasa.fi
  16522. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16523.  
  16524. In article <HAGAR.94Sep30153443@ulam.engin.umich.edu> hagar@umich.edu writes:
  16525. :I fully support Columbia University's rights on this.
  16526.  
  16527. So do I.  No one has been contesting Columbia's RIGHTS.  They are
  16528. unequivocal.  That is not the problem we are facing together in
  16529. here. 
  16530.  
  16531.    All the best, Timo
  16532.  
  16533. ..................................................................
  16534. Prof. Timo Salmi      Co-moderator of comp.archives.msdos.announce
  16535. Moderating at garbo.uwasa.fi anonymous FTP  archives  128.214.87.1
  16536. Faculty of Accounting & Industrial Management; University of Vaasa
  16537. Internet: ts@uwasa.fi   BBS +(358)-61-3170972; FIN-65101,  Finland
  16538.  
  16539. From news@columbia.edu Sat Oct  1 01:52:02 1994
  16540. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22127
  16541.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 1 Oct 1994 10:51:34 -0400
  16542. Received: by apakabar.cc.columbia.edu id AA04011
  16543.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 1 Oct 1994 10:51:33 -0400
  16544. Newsgroups: comp.protocols.kermit.misc
  16545. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!swrinde!elroy.jpl.nasa.gov!decwrl!amd!amdahl!netcomsv!ix.netcom.com!netcom.com!jhurwit
  16546. From: jhurwit@netcom.com (Jeffrey Hurwit)
  16547. Subject: Re: "Just Send It" mode - possible?
  16548. Message-Id: <jhurwitCwz16r.6v5@netcom.com>
  16549. Organization: Organization?  What organization?
  16550. X-Newsreader: TIN [version 1.2 PL1]
  16551. References: <36d22k$9mt@balsam.unca.edu> <jhurwitCwwsAz.Erz@netcom.com> <1994Sep30.095942.28338@cc.usu.edu>
  16552. Date: Sat, 1 Oct 1994 01:52:02 GMT
  16553. Lines: 32
  16554. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16555.  
  16556. In article <1994Sep30.095942.28338@cc.usu.edu>, 
  16557. Joe Doupnik (jrd@cc.usu.edu) wrote:
  16558.  
  16559. >In article <jhurwitCwwsAz.Erz@netcom.com>, jhurwit@netcom.com (Jeffrey Hurwit) writes:
  16560. >> In article <36d22k$9mt@balsam.unca.edu>, 
  16561. >> Mike Honeycutt (Honeycutt@unca.edu) wrote:
  16562. >> 
  16563. >>>Would it be possible to tell the sending Kermit to "Just Send It"
  16564. >>>without the error checking?  Most of our asyn lines on campus
  16565. >>>are very clean (not including modems) and I would put up with
  16566. >>>the occasional corrupt file to make the download go faster.
  16567. >> 
  16568. >>     From the help file for MS-Kermit 3.13:
  16569. >> 
  16570. >> * COMMANDS FOR FILE TRANSFER WITHOUT ERROR CHECKING
  16571. >> 
  16572. >> Kermit can also transfer files or other information with remote computers,
  16573. >> services, or devices that do not support the Kermit file transfer protocol.
  16574. >> These methods provide no error detection or correction. Use with caution.
  16575. >> 
  16576. >> TRANSMIT <filename>
  16577. >>   Send a text file to the host as if you were typing it at the keyboard
  16578. >>   a line at a time.  Waits for linefeed (\10) to echo before sending next
  16579. >>   line.     Uses all current communication settings (parity, flow, etc).
  16580. >----------
  16581. >    Nah. That's a crude stop and wait item. See the "waits for linefeed"
  16582. >guy. No error checking, no flow control, no nothing; just send & pray.
  16583. >    Joe D.
  16584.  
  16585.     Sure 'nuf is.  But hey, that's what the guy asked for...
  16586.  
  16587.                         Jeff
  16588.  
  16589. From news@columbia.edu Sat Oct  1 02:04:03 1994
  16590. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22274
  16591.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 1 Oct 1994 10:55:40 -0400
  16592. Received: by apakabar.cc.columbia.edu id AA04166
  16593.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 1 Oct 1994 10:55:38 -0400
  16594. Newsgroups: comp.protocols.kermit.misc
  16595. Path: news.columbia.edu!panix!zip.eecs.umich.edu!newsxfer.itd.umich.edu!europa.eng.gtefsd.com!howland.reston.ans.net!swrinde!elroy.jpl.nasa.gov!decwrl!amd!amdahl!netcomsv!ix.netcom.com!netcom.com!jhurwit
  16596. From: jhurwit@netcom.com (Jeffrey Hurwit)
  16597. Subject: Re: MS-Kermit question
  16598. Message-Id: <jhurwitCwz1qr.7pv@netcom.com>
  16599. Organization: Organization?  What organization?
  16600. X-Newsreader: TIN [version 1.2 PL1]
  16601. References: <36fad5$6bm@mathserv.mps.ohio-state.edu> <36fens$kbt@apakabar.cc.columbia.edu>
  16602. Date: Sat, 1 Oct 1994 02:04:03 GMT
  16603. Lines: 26
  16604. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16605.  
  16606. In article <36fens$kbt@apakabar.cc.columbia.edu>, 
  16607. Frank da Cruz (fdc@fdc.cc.columbia.edu) wrote:
  16608.  
  16609. >In article <36fad5$6bm@mathserv.mps.ohio-state.edu>  
  16610. >davis@pacific.mps.ohio-state.edu writes:
  16611. >>  : ...
  16612. >>  : Kermit says:
  16613. >>  : Scan code \5386 is defined as
  16614. >>  : Ascii char: ^J \10
  16615. >> 
  16616. >> This is the obvious thing to do and it is the first thing I thought of.
  16617. >> However, this does not work on my version of MS-Kermit (3.13 patch level
  16618. >> 0).  It does not report the scan code for Ctrl-Enter.
  16619. >>
  16620. >Oops, silly me!  You're right -- I was using the "other" Enter key.
  16621. >Sorry.
  16622.  
  16623. >I think this is a bug, and we'll have to fix it in version 3.14.  I'll
  16624. >check with Joe.
  16625.  
  16626.     I also tried this when I saw the previous post.  I only have one
  16627.     Enter key on my laptop keyboard; CTRL-Enter returns no scan code. 
  16628.     Neither do a-z, A-Z, or CTRL-A-Z.  Alt-A-Z, all the function keys,
  16629.     and a few others, do return scan codes.
  16630.  
  16631.                         Jeff
  16632.  
  16633. From news@columbia.edu Sat Oct  1 18:55:51 1994
  16634. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03989
  16635.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 1 Oct 1994 15:11:46 -0400
  16636. Received: by apakabar.cc.columbia.edu id AA15845
  16637.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 1 Oct 1994 15:11:45 -0400
  16638. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!newsxfer.itd.umich.edu!jobone!heifetz.msen.com!zib-berlin.de!news.th-darmstadt.de!fauern!news.unibw-muenchen.de!p41bsmk
  16639. From: p41bsmk@applsrv.rz.unibw-muenchen.de (Peter Schmolck)
  16640. Newsgroups: comp.protocols.kermit.misc
  16641. Subject: Re: NDIS Driver for Kermit
  16642. Date: 1 Oct 1994 18:55:51 GMT
  16643. Organization: University of the Federal Armed Forces Munich
  16644. Lines: 16
  16645. Message-Id: <36kbbn$fh2@infosrv.rz.unibw-muenchen.de>
  16646. References: <36jr4b$hlk@Venus.mcs.com>
  16647. Nntp-Posting-Host: applsrv.rz.unibw-muenchen.de
  16648. X-Newsreader: NN version 6.5.0 #3 (NOV)
  16649. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16650.  
  16651. cnt@MCS.COM (Center / NT) writes:
  16652.  
  16653. >One article mentions the dis_pkt9 shim to use Kermit with
  16654. >NDIS compliant ethernet adapters.
  16655.  
  16656. >Where can I find this?
  16657.  
  16658. Just do what Joe D. recommended, and search for the string "dis_pkt9" in 
  16659. the file MSKERMIT.BWR (or, as it is called in the kermit directory on my PC:
  16660. KERMIT.BWR). 
  16661. P.S.
  16662. --
  16663. Peter Schmolck                                p41bsmk@rz.unibw-muenchen.de
  16664. Department of Education                       Phone :     +49-89-6004-2056
  16665. Univ. of the Federal Armed Forces Munich      Fax   :     +49-89-6004-3968
  16666. 85577 NEUBIBERG, GERMANY    
  16667.  
  16668. From news@columbia.edu Sat Oct  1 18:37:56 1994
  16669. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05025
  16670.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 1 Oct 1994 15:31:51 -0400
  16671. Received: by apakabar.cc.columbia.edu id AA16743
  16672.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 1 Oct 1994 15:31:50 -0400
  16673. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!torn!news.ccs.queensu.ca!news
  16674. From: mike@ccs-sparc2post.QueensU.CA (Mike Smith)
  16675. Newsgroups: comp.protocols.kermit.misc
  16676. Subject: Re: Columbia University's Kermit copyright
  16677. Date: 1 Oct 1994 18:37:56 GMT
  16678. Organization: Queen's University, Kingston
  16679. Lines: 16
  16680. Sender: mike%ccs-sparc2@apakabar.cc.columbia.edu (Mike Smith)
  16681. Distribution: world
  16682. Message-Id: <36kaa4$lmm@knot.queensu.ca>
  16683. References: <9409300557.AA12036@simtel.coast.net> <36h490$9hc@apakabar.cc.columbia.edu>
  16684. Nntp-Posting-Host: ccs-sparc2.ccs
  16685. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16686.  
  16687. I would not have joined this pointless discussion except Frank commented "there
  16688. is no way of knowing how the silent onlookers feel".  So here's how I feel:
  16689. Columbia does a fantastic job with Kermit.  People who have the audacity to
  16690. tell them how to fund their work are presumptuous beyond description.  Fans
  16691. of Simtel and Garbo seem to be almost personally offended by Columbia's policy.
  16692. That is unfortunate, but the fact remains that only Columbia knows what is
  16693. best for Kermit.  The good folks at Simtel know what's best for Simtel but if
  16694. they can't convince Columbia it is in their own best interest to include
  16695. Kermit on the CD the rest of us can't either.  I don't want to see the Kermit
  16696. effort stopped and if Frank says the CD distribution increases their workload
  16697. and decreases their income that should be the end of the argument. 
  16698. -- 
  16699.  
  16700.  Mike Smith                                  mike@ccs.queensu.ca
  16701.  Queen's University                          Michael.D.Smith@QueensU.CA
  16702.  Computing and Communications Services       (613) 545-2024
  16703.  
  16704. From news@columbia.edu Sat Oct  1 20:26:31 1994
  16705. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09122
  16706.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 1 Oct 1994 17:03:40 -0400
  16707. Received: by apakabar.cc.columbia.edu id AA20925
  16708.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 1 Oct 1994 17:03:39 -0400
  16709. Newsgroups: comp.protocols.kermit.misc
  16710. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!swrinde!elroy.jpl.nasa.gov!decwrl!netcomsv!ix.netcom.com!netcom.com!jhurwit
  16711. From: jhurwit@netcom.com (Jeffrey Hurwit)
  16712. Subject: Re: send and unlink (C-kermit/Unix)?
  16713. Message-Id: <jhurwitCx0Gs8.Gw3@netcom.com>
  16714. Organization: Organization?  What organization?
  16715. X-Newsreader: TIN [version 1.2 PL1]
  16716. References: <CwxzL1.GA6@pegasus.com>
  16717. Date: Sat, 1 Oct 1994 20:26:31 GMT
  16718. Lines: 16
  16719. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16720.  
  16721. In article <CwxzL1.GA6@pegasus.com>, 
  16722. Richard Foulk (richard@pegasus.com) wrote:
  16723.  
  16724. >Zmodem (sz) has a very nice feature, invoked with `-u' that removes
  16725. >each file just after it is successfully transmitted.
  16726.  
  16727. >Is there a clean and reliable way to do something similar with c-kermit?
  16728.  
  16729.     You could probably write a little script to do this.  Kermit sets a
  16730.     'success' flag when it completes a file transfer successfully,
  16731.     which can be tested for with an 'if success <do something>' line
  16732.     immediately following.  So you could have 'if success del
  16733.     filename'.  Consult the docs for more info on the C-Kermit script
  16734.     language.
  16735.  
  16736.                         Jeff
  16737.  
  16738. From news@columbia.edu Sat Oct  1 21:39:20 1994
  16739. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17538
  16740.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 1 Oct 1994 18:41:38 -0400
  16741. Received: by apakabar.cc.columbia.edu id AA02306
  16742.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 1 Oct 1994 18:41:37 -0400
  16743. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!torn!news.ccs.queensu.ca!slip217.telnet1.QueensU.CA!dmurdoch
  16744. From: dmurdoch@mast.queensu.ca (Duncan Murdoch)
  16745. Newsgroups: comp.protocols.kermit.misc
  16746. Subject: Re: Columbia University's Kermit copyright
  16747. Date: Sat, 1 Oct 1994 21:39:20 GMT
  16748. Organization: Queen's University
  16749. Lines: 12
  16750. Message-Id: <dmurdoch.1141.0@mast.queensu.ca>
  16751. References: <9409300557.AA12036@simtel.coast.net> <36h490$9hc@apakabar.cc.columbia.edu>
  16752. Nntp-Posting-Host: slip217.telnet1.queensu.ca
  16753. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16754.  
  16755. In article <36h490$9hc@apakabar.cc.columbia.edu> fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  16756.  
  16757. >In this case, the people who are raising objections to our policies are
  16758. >people -- honest, decent people -- who happen to have FINANCIAL interests
  16759. >that are in conflict with ours.  
  16760.  
  16761. Thanks for calling me honest and decent, but believe me:  I have no 
  16762. financial interest in the distribution of Kermit.
  16763.  
  16764. Duncan Murdoch    
  16765.  
  16766.  
  16767.  
  16768. From news@columbia.edu Sat Oct  1 14:25:30 1994
  16769. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21695
  16770.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 1 Oct 1994 20:24:07 -0400
  16771. Received: by apakabar.cc.columbia.edu id AA08977
  16772.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 1 Oct 1994 20:24:06 -0400
  16773. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!yeshua.marcam.com!usc!math.ohio-state.edu!jussieu.fr!centre.univ-orleans.fr!univ-lyon1.fr!swidir.switch.ch!newsfeed.ACO.net!Austria.EU.net!EU.net!uunet!newsflash.concordia.ca!canopus.cc.umanitoba.ca!rahardj
  16774. From: rahardj@cc.umanitoba.ca (Budi Rahardjo)
  16775. Newsgroups: comp.protocols.kermit.misc
  16776. Subject: Re: Columbia University's Kermit copyright
  16777. Date: 1 Oct 1994 14:25:30 GMT
  16778. Organization: The University of Manitoba
  16779. Lines: 49
  16780. Message-Id: <36jrgq$h1h@canopus.cc.umanitoba.ca>
  16781. References: <9409300557.AA12036@simtel.coast.net> <36h490$9hc@apakabar.cc.columbia.edu>
  16782. Nntp-Posting-Host: antares.cc.umanitoba.ca
  16783. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16784.  
  16785. fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  16786. ...
  16787. >On any newsgroup, there are a few vocal people and a large mass of onlookers.
  16788. >There is no way of knowing how the silent onlookers feel, and the tone of
  16789. >discussions like these -- i.e. controversies -- is set by the vocal ones.
  16790. >In this case, the people who are raising objections to our policies are
  16791. >people -- honest, decent people -- who happen to have FINANCIAL interests
  16792. >that are in conflict with ours.  But in the final analysis, WE DID ALL THE
  16793. >WORK and so we get to set the terms.  Those terms are the most generous
  16794. >terms imaginable to the end user, so there is NO CAUSE FOR ANYBODY TO
  16795. >COMPLAIN.
  16796.  
  16797. Okay, I'll bite. I don't have any financial interests and I do
  16798. like your kermit. Here's what I have problems with:
  16799.  
  16800. 1. You want your software to be free but you want to limit the
  16801.    distribution. How are you going to distribute it FOR FREE then?
  16802.    If you are looking for financial support, say so.
  16803.    I have NO objection with that.
  16804.  
  16805. 2. You have negative views of those CD-ROM vendors. As a user
  16806.    I very much appreciate the availability of those CD-ROMs.
  16807.  
  16808. 3. As an author of various free programs, I do spend my time
  16809.    writting the code (and that could be translated to thousand of
  16810.    dollars). I understand your views, you don't want a money-
  16811.    grabbing-scumbucket making money from your sweat.
  16812.    But all those CD-ROM vendors are NOT scums !!!
  16813.    What's the diff. between your program and other free/shareware
  16814.    available on SimTel ?
  16815.  
  16816. 4. I understand you did all the work and you can set whatever
  16817.    terms you want. As a user, though, I have to warn you that
  16818.    your restriction can cause the death of your fine program.
  16819.    Thus the objections raise by the people here.
  16820.  
  16821. 5. Personally, with all the troubles. I would rather change to
  16822.    a different program/implementation. Just one user, no big deal, eh ?
  16823.    Well, don't underestimate. I always recommend your kermit
  16824.    to friends/users/clients, and so do many people.
  16825.  
  16826. I hope you understand my view. You have a fine product, please
  16827. don't kill it by restricting its distribution.
  16828.  
  16829. -- budi
  16830. -- 
  16831. Budi Rahardjo <Budi_Rahardjo@UManitoba.Ca>
  16832. #include <std-disclaimer.h>
  16833. Unix Support - Computer Services - University of Manitoba
  16834.  
  16835. From news@columbia.edu Sun Oct  2 00:47:40 1994
  16836. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22741
  16837.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 1 Oct 1994 20:47:43 -0400
  16838. Received: by apakabar.cc.columbia.edu id AA10187
  16839.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 1 Oct 1994 20:47:42 -0400
  16840. Path: news.columbia.edu!usenet
  16841. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  16842. Newsgroups: comp.protocols.kermit.misc
  16843. Subject: Re: Columbia University's Kermit copyright
  16844. Date: 2 Oct 1994 00:47:40 GMT
  16845. Organization: Columbia University
  16846. Lines: 17
  16847. Message-Id: <36kvvc$9u9@apakabar.cc.columbia.edu>
  16848. References: <36jrgq$h1h@canopus.cc.umanitoba.ca>
  16849. Nntp-Posting-Host: fdc.cc.columbia.edu
  16850. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16851.  
  16852. In article <36jrgq$h1h@canopus.cc.umanitoba.ca> rahardj@cc.umanitoba.ca (Budi  
  16853. Rahardjo) writes:
  16854. > 5. Personally, with all the troubles. I would rather change to
  16855. >    a different program/implementation. Just one user, no big deal, eh ?
  16856. >    Well, don't underestimate. I always recommend your kermit
  16857. >    to friends/users/clients, and so do many people.
  16858. This is a point of view that I can't understand.  Nobody is restricting your
  16859. use of Kermit software or even asking you to spend a dime for it.  You
  16860. can ftp it from any site that carries it any time you want.  But it's not
  16861. enough that we should produce the software and give it to you; we must
  16862. also give it to a third party before you will agree to use it.  The part
  16863. I don't understand is why your compassion for this third party does not
  16864. extend in equal part to the people who designed, wrote, documented, and
  16865. support the software in the first place.
  16866.  
  16867. - Frank
  16868.  
  16869. From news@columbia.edu Sun Oct  2 00:20:24 1994
  16870. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23155
  16871.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 1 Oct 1994 20:51:56 -0400
  16872. Received: by apakabar.cc.columbia.edu id AA10505
  16873.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 1 Oct 1994 20:51:50 -0400
  16874. Newsgroups: comp.protocols.kermit.misc
  16875. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!uunet!granite.ciw.edu!finger
  16876. From: finger@granite.ciw.edu
  16877. Subject: Re: Need Kermit for a Dec Alpha
  16878. Message-Id: <02Oct94.002024.15112@granite.ciw.edu>
  16879. Date: 02 Oct 94 00:20:24 GMT
  16880. References: <36ijfn$fds@umcc.umcc.umich.edu>
  16881. Organization: Geophysical Laboratory
  16882. Lines: 14
  16883. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16884.  
  16885. In article <36ijfn$fds@umcc.umcc.umich.edu> alb@umcc.umcc.umich.edu (Alan Brushaber) writes:
  16886. >
  16887. >  Would anyone know where I could get a copy of Kermit for
  16888. >a Dec Alpha?
  16889. >
  16890. >Al - alb@umcc.umich.edu
  16891. >
  16892.  
  16893. Which OS?  Dec Alpha's run at least 3.
  16894.  
  16895. Larry W. Finger
  16896. finger@granite.ciw.edu
  16897.  
  16898.  
  16899.  
  16900. From news@columbia.edu Sun Oct  2 00:59:00 1994
  16901. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23794
  16902.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 1 Oct 1994 21:04:04 -0400
  16903. Received: by apakabar.cc.columbia.edu id AA11166
  16904.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 1 Oct 1994 21:04:03 -0400
  16905. Newsgroups: comp.protocols.kermit.misc
  16906. Path: news.columbia.edu!panix!MathWorks.Com!news.kei.com!ub!acsu.buffalo.edu!ubvms.cc.buffalo.edu!v074l54q
  16907. From: v074l54q@ubvms.cc.buffalo.edu (Bryan T Hoch)
  16908. Subject: Where can I get the latest version for Mac?
  16909. Message-Id: <Cx0tCp.H7I@acsu.buffalo.edu>
  16910. News-Software: VAX/VMS VNEWS 1.50AXP 
  16911. Sender: nntp@acsu.buffalo.edu
  16912. Nntp-Posting-Host: ubvmsa.cc.buffalo.edu
  16913. Organization: University at Buffalo
  16914. Date: Sun, 2 Oct 1994 00:59:00 GMT
  16915. Lines: 7
  16916. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16917.  
  16918.     Could someone please tell me a ftp site and directory in which I can
  16919. get the NEWEST version of Kerit for Macintosh? Thanks a bunch.
  16920.  
  16921.  
  16922. Bryan 
  16923.  
  16924. v074l54q@ubvms.cc.buffalo.edu 
  16925.  
  16926. From news@columbia.edu Sun Oct  2 01:06:28 1994
  16927. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24176
  16928.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 1 Oct 1994 21:12:36 -0400
  16929. Received: by apakabar.cc.columbia.edu id AA11725
  16930.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 1 Oct 1994 21:12:35 -0400
  16931. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!concert!news.wfu.edu!matthews
  16932. From: matthews@wfu.edu (Rick Matthews)
  16933. Newsgroups: comp.protocols.kermit.misc
  16934. Subject: Re: Minimal control prefixing
  16935. Date: 2 Oct 1994 01:06:28 GMT
  16936. Organization: Wake Forest University
  16937. Lines: 28
  16938. Message-Id: <36l12k$gs1@eis.wfunet.wfu.edu>
  16939. References: <36hc7e$js9@apakabar.cc.columbia.edu> <36hdfb$lka@apakabar.cc.columbia.edu> <36i1m0$uh@panix3.panix.com>
  16940. Nntp-Posting-Host: acg60.wfunet.wfu.edu
  16941. X-Newsreader: TIN [version 1.2 PL2]
  16942. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16943.  
  16944. David Spencer (spencer@panix.com) wrote:
  16945. : I did RTFM and RTFckuker.doc. Sorry I didn't RTFckcker.upd. It didn't
  16946. : leap to mind as the file that would have what the man and .doc didn't
  16947. : have. It was, however, most helpful.
  16948.  
  16949. : The .upd doesn't answer the specific question. There are probably a
  16950. : few thousand knowledgeable usenetters with substantially the same
  16951. : setup. So my question still seems reasonable.
  16952.  
  16953. Read the five lines beginning around line 285 of kermit.upd.  I use
  16954. the recommended minimum list for C-kermit to MS-Kermit and vice-versa.
  16955. If it doesn't work for you, the next 63 lines describe what to do
  16956. next.
  16957.  
  16958. Sorry, but in the pc-to-mainframe world, things are not as
  16959. standardized as we would like.  For maximum throughput, a little
  16960. experimentation is needed.
  16961.  
  16962. If you want to avoid experimentation at some speed penalty, I
  16963. think prefixing 0 thru 31 and 128+0 thru 128+31 should handle just
  16964. about any 8N1 connection with pretty good throughput.  That takes out
  16965. all control codes and their eight bit set equivalents.
  16966.  
  16967. --
  16968. Rick Matthews                     matthews@wfu.edu            Ham radio:
  16969. Wake Forest University            910-759-5340   (Voice)      WA4GSP
  16970. Winston-Salem, NC 27109-7507      910-759-6142   (FAX)
  16971.  
  16972.  
  16973. From news@columbia.edu Sun Oct  2 01:23:10 1994
  16974. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24590
  16975.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 1 Oct 1994 21:23:17 -0400
  16976. Received: by apakabar.cc.columbia.edu id AA12548
  16977.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 1 Oct 1994 21:23:15 -0400
  16978. Path: news.columbia.edu!usenet
  16979. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  16980. Newsgroups: comp.protocols.kermit.misc
  16981. Subject: Re: Minimal control prefixing
  16982. Date: 2 Oct 1994 01:23:10 GMT
  16983. Organization: Columbia University
  16984. Lines: 15
  16985. Message-Id: <36l21u$c7s@apakabar.cc.columbia.edu>
  16986. References: <36l12k$gs1@eis.wfunet.wfu.edu>
  16987. Nntp-Posting-Host: fdc.cc.columbia.edu
  16988. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16989.  
  16990. In article <36l12k$gs1@eis.wfunet.wfu.edu> matthews@wfu.edu (Rick Matthews)  
  16991. writes:
  16992. > If you want to avoid experimentation at some speed penalty, I
  16993. > think prefixing 0 thru 31 and 128+0 thru 128+31 should handle just
  16994. > about any 8N1 connection with pretty good throughput.  That takes out
  16995. > all control codes and their eight bit set equivalents.
  16996. Which, by the way, is Kermit's default for prefixing, except that Kermit
  16997. also prefixes 127 (DEL) and 255 (DEL+128), and this is also what you get
  16998. when you SET CONTROL PREFIX ALL.
  16999.  
  17000. - Frank
  17001. x
  17002. x
  17003. x
  17004.  
  17005. From news@columbia.edu Sun Oct  2 01:24:42 1994
  17006. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24653
  17007.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 1 Oct 1994 21:24:48 -0400
  17008. Received: by apakabar.cc.columbia.edu id AA12616
  17009.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 1 Oct 1994 21:24:46 -0400
  17010. Path: news.columbia.edu!usenet
  17011. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  17012. Newsgroups: comp.protocols.kermit.misc
  17013. Subject: Re: Where can I get the latest version for Mac?
  17014. Date: 2 Oct 1994 01:24:42 GMT
  17015. Organization: Columbia University
  17016. Lines: 14
  17017. Message-Id: <36l24q$ca1@apakabar.cc.columbia.edu>
  17018. References: <Cx0tCp.H7I@acsu.buffalo.edu>
  17019. Nntp-Posting-Host: fdc.cc.columbia.edu
  17020. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  17021.  
  17022. In article <Cx0tCp.H7I@acsu.buffalo.edu> v074l54q@ubvms.cc.buffalo.edu (Bryan  
  17023. T Hoch) writes:
  17024. >     Could someone please tell me a ftp site and directory in which I can
  17025. > get the NEWEST version of Kerit for Macintosh? Thanks a bunch.
  17026. Anonymous ftp to kermit.columbia.edu.
  17027.  
  17028. directory kermit/test/text.  FTP in text mode.
  17029.  
  17030. Files ckm190.hqx and ckmker.bwr.
  17031.  
  17032. Use BinHex 4.0 to convert ckm190.hqx back to an application.
  17033.  
  17034. - Frank
  17035.  
  17036. From news@columbia.edu Sun Oct  2 02:08:09 1994
  17037. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29674
  17038.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 1 Oct 1994 22:27:48 -0400
  17039. Received: by apakabar.cc.columbia.edu id AA16341
  17040.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 1 Oct 1994 22:27:47 -0400
  17041. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!EU.net!ub4b!idefix.CS.kuleuven.ac.be!infoserv.rug.ac.be!eduserv!rsamanya
  17042. From: rsamanya@eduserv.rug.ac.be (ranan samanya)
  17043. Newsgroups: comp.protocols.kermit.misc
  17044. Subject: CKermit keys
  17045. Date: 2 Oct 1994 02:08:09 GMT
  17046. Organization: University of Ghent, Belgium
  17047. Lines: 14
  17048. Message-Id: <36l4m9$agi@infoserv.rug.ac.be>
  17049. Nntp-Posting-Host: eduserv.rug.ac.be
  17050. X-Newsreader: TIN [version 1.2 PL2]
  17051. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  17052.  
  17053. I'm using CKermit for OS/2 to connect to the server. When I use joe's
  17054. editor, I can't use the PGUP, PGDOWN, or any cursor keys (PGUP and PGDOWN is
  17055. reserved for Kermit's scroll screen). Is there a way to change this
  17056. behaviour?
  17057.  
  17058. Please reply through email if possible.
  17059.  
  17060.  
  17061. the stars be with you
  17062. (or fall upon your head) ;D
  17063.  
  17064. ranan samanya
  17065.  
  17066. <\> the Indonesian Cita Ceria, under OS/2 </>
  17067.  
  17068. From news@columbia.edu Sat Oct  1 14:56:32 1994
  17069. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01833
  17070.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 1 Oct 1994 23:02:23 -0400
  17071. Received: by apakabar.cc.columbia.edu id AA18170
  17072.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 1 Oct 1994 23:02:21 -0400
  17073. Path: news.columbia.edu!panix!zip.eecs.umich.edu!newsxfer.itd.umich.edu!jobone!lynx.unm.edu!news
  17074. From: galway@chtm.eece.unm.edu (Denis McKeon)
  17075. Newsgroups: comp.protocols.kermit.misc
  17076. Subject: Re: Are Columbia U's files still avial for FTP?
  17077. Date: Sat, 1 Oct 94 20:56:32 MDT
  17078. Organization: Connemara - Computing for People
  17079. Lines: 53
  17080. Message-Id: <36l7j2$6uh@lynx.unm.edu>
  17081. References: <dmurdoch.1325.2E8C5321@mast.queensu.ca> <36hsus$qtn@apakabar.cc.columbia.edu>
  17082. Reply-To: galway@chtm.eece.unm.edu
  17083. Nntp-Posting-Host: chtm.eece.unm.edu
  17084. X-Copyright: Copyright 1994 by Denis McKeon
  17085. X-Mailer: Mail User's Shell (7.0.1 12/13/89)
  17086. To: 
  17087. Status: OR
  17088.  
  17089. In <36hsus$qtn@apakabar.cc.columbia.edu>,
  17090. Frank da Cruz <fdc@fdc.cc.columbia.edu> wrote:
  17091. >
  17092. >I really wish I did not have to keep repeating myself -- it is really
  17093. >boring.  There is a paradox here: the more our software is spread to the
  17094. >general public on CDROM, and the more popular it becomes, the more work
  17095. >we have (tech support), the less time we have to devote to development,
  17096. >and the less money we have to pay for tech support AND development.
  17097.  
  17098. Looking at the larger issues - beyond the Kermit/Columbia/SimTel/Garbo
  17099. situation - notice that the economic viability of marketing software
  17100. on CD-ROMS exploits a market niche - with an update every 6 or 12 months,
  17101. and tens of thousands of shareware programs, and overhead limited to 
  17102. pressing CDs and running an FTP site, a CDROM collection can show a profit.
  17103.  
  17104. Now, suppose you are an entrepreneur, and you want to market a CDROM
  17105. that contains programs that, like shareware, are intended to be
  17106. profitable, and additionally are supported in real time 
  17107. (not "send me fixes, and I'll include them in the next release," 
  17108. but "call if you have problems, and we'll help you out.")
  17109.  
  17110. The CDROM entrepreneur and the software developer/supporters
  17111. are faced with negotiating issues like those Frank has outlined
  17112. (who gets how much from CDROM sales, how to recover support costs,
  17113. whether focus on support or on development.)  Like it or not,
  17114. those issues and the various contracts cost money.
  17115.  
  17116. The bottom line is that with that additional cost threshold, it is more
  17117. difficult to find an exploitable niche.  Maybe if a CDROM vendor was
  17118. able to work out the license/profit issues with several hundred software
  17119. developers who had, uhm, "senior" products (widely popular, stable,
  17120. regularly updated, possibly supported) then the CDROM vendor could
  17121. produce a profitable product (and vendors could reduce their
  17122. distribution costs by not shipping stacks of floppies.)
  17123.  
  17124. If a commercial multi-product CDROM with hundreds of supported products on
  17125. board (perhaps with free stripped demos, and key-coded full binaries?) was 
  17126. available, how much would you pay for it?  How many useful products would
  17127. need to be on it before it was worthwhile buying rather than downloading?
  17128.  
  17129. Those rhetorical questions may not make sense to readers of this forum,
  17130. because if you have Usenet you are pretty likely to have FTP as well,
  17131. and could get copies of the same (or newer software) almost for free 
  17132. (modulo your time, access provider bill, disk space, CPU cycles, etc.)
  17133.  
  17134. But suppose you didn't want to pay for or have FTP access.  Would there
  17135. then be a market niche for a CDROM vendor to fill (exploit)?  What would
  17136. a generic license agreement for this look like?  How can the legal costs
  17137. and monetary negotiation be handled at low cost?  (Looking at how actors
  17138. and musicians are compensated for residual profits might be a good
  17139. research starting point.)  Anyone who can answer those questions and
  17140. exploit any such niche might have an answer to this dilemma.
  17141.  
  17142.  
  17143. From news@columbia.edu Sun Oct  2 03:52:30 1994
  17144. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05281
  17145.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Oct 1994 00:05:45 -0400
  17146. Received: by apakabar.cc.columbia.edu id AA22048
  17147.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Oct 1994 00:05:44 -0400
  17148. Newsgroups: comp.protocols.kermit.misc
  17149. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!charnel.ecst.csuchico.edu!nic-nac.CSU.net!usc!howland.reston.ans.net!agate!msuinfo!harbinger.cc.monash.edu.au!bunyip.cc.uq.oz.au!janus.cat.csiro.au!grl
  17150. From: grl@janus.cat.csiro.au (Greg Lehmann)
  17151. Subject: vt220 mode in OS/2 ckermit 1.90 beta
  17152. Message-Id: <1994Oct2.035230.5054@janus.cat.csiro.au>
  17153. Organization: CSIRO Queensland Centre for Advanced Technologies
  17154. Distribution: comp
  17155. Date: Sun, 2 Oct 94 03:52:30 GMT
  17156. Lines: 17
  17157. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  17158.  
  17159. I have read the manuals but am afraid the terminology does me in. I have
  17160. a wordperfect document on a sun and want to edit it on my pc emulating a
  17161. vt220. It appears that the character sets are stuffed up because the accents
  17162. are not working properly. It was originally entered into wp on a vt220 and
  17163. now I need to change a few things, without access to a real vt220 anymore.
  17164. The document is in french. The first thing I notice is that even the line
  17165. graphics don't work, although they do when kermit is in vt102 mode. Does
  17166. anyone know how to get it working?
  17167.  
  17168. Thanks,
  17169.  
  17170. Greg
  17171. -- 
  17172. Greg Lehmann,
  17173. CSIRO Division of Manufacturing Technology,   Telephone: +61 7 212 4537
  17174. P.O. Box 883, Kenmore, QLD 4069, Australia.   Facsimile: +61 7 212 4681
  17175. 2643 Moggill Rd., Pinjarra Hills, QLD 4069.   Internet:  grl@brb.dmt.csiro.au
  17176.  
  17177. From news@columbia.edu Sun Oct  2 02:35:24 1994
  17178. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05878
  17179.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Oct 1994 00:11:47 -0400
  17180. Received: by apakabar.cc.columbia.edu id AA22301
  17181.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Oct 1994 00:11:45 -0400
  17182. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!convex!cs.utexas.edu!uunet!news.uiowa.edu!icaen!mjo
  17183. From: mjo@ecn.uiowa.edu (Mike O'Connor)
  17184. Newsgroups: comp.protocols.kermit.misc
  17185. Subject: Re: Columbia University's Kermit copyright
  17186. Date: 2 Oct 1994 02:35:24 GMT
  17187. Organization: HP InterWorks Member
  17188. Lines: 42
  17189. Distribution: world
  17190. Message-Id: <36l69c$n71@news.icaen.uiowa.edu>
  17191. References: <9409300557.AA12036@simtel.coast.net> <36h490$9hc@apakabar.cc.columbia.edu> <36kaa4$lmm@knot.queensu.ca>
  17192. Nntp-Posting-Host: iworks.ecn.uiowa.edu
  17193. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  17194.  
  17195. In article <36kaa4$lmm@knot.queensu.ca> mike@ccs-sparc2post.QueensU.CA (Mike Smith) writes:
  17196.  
  17197. >I would not have joined this pointless discussion except Frank commented "there
  17198. >is no way of knowing how the silent onlookers feel".  So here's how I feel:
  17199. >Columbia does a fantastic job with Kermit.  People who have the audacity to
  17200. >tell them how to fund their work are presumptuous beyond description.  Fans
  17201. >of Simtel and Garbo seem to be almost personally offended by Columbia's policy.
  17202. >That is unfortunate, but the fact remains that only Columbia knows what is
  17203. >best for Kermit.  The good folks at Simtel know what's best for Simtel but if
  17204. >they can't convince Columbia it is in their own best interest to include
  17205. >Kermit on the CD the rest of us can't either.  I don't want to see the Kermit
  17206. >effort stopped and if Frank says the CD distribution increases their workload
  17207. >and decreases their income that should be the end of the argument. 
  17208.  
  17209. With all due respect, Kermit is not the work of one individual.  A
  17210. number of people have invested time and energy and resources into 
  17211. making Kermit what it is today.  This isn't just about Simtel and 
  17212. Garbo, but about anyone who cuts a CD for an OS -- note that some 
  17213. vendors no longer ship kermit with their OS, like DEC OSF/1 and BSDI.
  17214. And let's not forget those benevolent FTP archives who (ahem) do 
  17215. dervie some amount of money from grants or corporate funding by 
  17216. maintaining an FTP archive, like wuarchive and sunsite (just to name 
  17217. two biggies) and may have a moneyary incentive (however slight) to
  17218. keep Kermit online, thus supposedly putting themselves at odds with 
  17219. the Columbia people.  Already, it appears that Kermit is suffering 
  17220. something of a decline as overall line quality improves, and the
  17221. omnipotent GUI has emerged.  So tell me, honestly, do YOU think that
  17222. documentation sales are going to keep Kermit alive, or is it going 
  17223. to just die and spell the end of an era.  
  17224.  
  17225. No one wants to denigrate the Kermit developers' efforts toward making
  17226. a quality software product.  But it seems like they need some help here,
  17227. and the way they want us to help them doesn't seem to help anyone.  
  17228. There appear to be people out there with better funding models, and
  17229. every time someone suggests that a different funding model might better
  17230. serve the interests of everyone involved, we get a lot of voodoo and 
  17231. simplistic arguments.  I'd almost call it crosstalk, but that's a 
  17232. competitor, isn't it?  :)  Why isn't this work just funded by Columbia?
  17233. It certainly seems worthwhile enough just in advertising alone.  
  17234.  
  17235. -Mike
  17236.  
  17237.  
  17238. From news@columbia.edu Sun Oct  2 05:53:54 1994
  17239. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11714
  17240.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Oct 1994 01:59:46 -0400
  17241. Received: by apakabar.cc.columbia.edu id AA26923
  17242.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Oct 1994 01:59:45 -0400
  17243. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!eff!neoucom.edu!news.ysu.edu!yfn.ysu.edu!am856
  17244. From: am856@yfn.ysu.edu (Michael DeCosta III)
  17245. Newsgroups: comp.protocols.kermit.misc
  17246. Subject: Kermit CD ROM?
  17247. Date: 2 Oct 1994 05:53:54 GMT
  17248. Organization: St. Elizabeth Hospital, Youngstown, OH
  17249. Lines: 4
  17250. Message-Id: <36lhti$cp0@news.ysu.edu>
  17251. Reply-To: am856@yfn.ysu.edu (Michael DeCosta III)
  17252. Nntp-Posting-Host: yfn2.ysu.edu
  17253. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  17254.  
  17255.  
  17256. Hmmm....I know Columbia probably doesn't have the staff for this,
  17257. but it sure sounds like a Kermit CD-ROM full of Kermits, Kermit utilities,
  17258. scripts and manuals from Columbia could be a fund generator?
  17259.  
  17260. From news@columbia.edu Sun Oct  2 08:02:05 1994
  17261. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15253
  17262.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Oct 1994 04:01:04 -0400
  17263. Received: by apakabar.cc.columbia.edu id AA01114
  17264.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Oct 1994 04:01:02 -0400
  17265. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!vixen.cso.uiuc.edu!news.uoregon.edu!cs.uoregon.edu!usenet.ee.pdx.edu!not-for-mail
  17266. From: rkwee@ee.pdx.edu (Roland Kwee)
  17267. Newsgroups: comp.protocols.kermit.misc
  17268. Subject: Please explain Kermit's copyright
  17269. Date: 2 Oct 1994 01:02:05 -0700
  17270. Lines: 56
  17271. Message-Id: <36lpdt$ns4@cruella.ee.pdx.edu>
  17272. Nntp-Posting-Host: cruella.ee.pdx.edu
  17273. Summary: What exactly is and is not permitted with Kermit?
  17274. Keywords: legal profit freeware restrictions
  17275. X-Newsreader: NN version 6.4.19 #2
  17276. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  17277.  
  17278. In this time where the legal status of Kermit on ftp sites and
  17279. CD-ROM is heavily debated, it wouldn't harm if someone from
  17280. Columbia (Frank, Joe?) could explain in some detail what is
  17281. permitted with Kermit and what not. Such a discussion happened
  17282. not too long ago about the GNU public license for their libraries.
  17283.  
  17284. Here are some specific questions:
  17285.  
  17286. 1) I understood that a commercial program like Procomm could include
  17287. the Kermit protocol and source code as long as it wouldn't charge 
  17288. for that. The purchase (license) price would be for the non-Kermit
  17289. part of the product alone, and the Kermit part would be passed on
  17290. to the user for free. Is this correct?
  17291.  
  17292. 2) Could one charge money for giving someone a copy of Kermit on a 
  17293. diskette, to cover the cost of the diskette and the copying of the
  17294. files, and the postage and handling? This would not be a charge for
  17295. the program itself. It would still be an opportunity to make a profit,
  17296. . The diskette maker may make a profit, the delivery service,
  17297. the guy that spends time operating the copying device (also called wage),
  17298. and so on. This opportunity of making a profit is clearly linked to
  17299. the contents of the files, in this case the quality of the Kermit
  17300. product.
  17301.  
  17302. 3) In the case of the Simtel/Garbo CD's, did I understand it correcly
  17303. that Columbia told them that the distribution of Kermit required an
  17304. agreement with Columbia? About what kind of demands are we talking 
  17305. here? If Columbia wanted one dollar for each CD, I could understand
  17306. why the CD makers remove Kermit. If it were 0.1 cent, or a 100 dollar
  17307. lump sum, It would be a little different. Right now I see a lot
  17308. of discussion without having any idea about the order of magnitude
  17309. of the problem.
  17310.  
  17311. 4) Does Columbia _own_ all contributions made by the numerous
  17312. volunteers that actually created the various Kermit versions? Would
  17313. Columbia refuse contributions covered by the GNU public license?
  17314.  
  17315. 5) Long ago I must have read something like: Kermit is not public domain
  17316. to prevent others from slapping their copyright mark on it. This way,
  17317. it would be truly free for everybody to use it for whatever purpose. It
  17318. is freer than public domain. Correct?
  17319.  
  17320. 5A) If I create a program and put it in the public domain, could someone
  17321. take it, change two comments, and exclusively own that entire modified
  17322. program?
  17323.  
  17324. 6) Suppose I run a commercial business for profit. Can I freely use
  17325. the Kermit program? Even if my business consists entirely of transfering
  17326. files through modems using Kermit?
  17327.  
  17328. These are my questions. Certainly, people interested in ftp-archives
  17329. and CD-ROM will have additional questions. For me, as a layman in law,
  17330. the copyright statement of Kermit sometimes needs some clarification.
  17331.  
  17332. Thanks, Roland
  17333. email: RolandKwee@ACM.org
  17334.  
  17335. From news@columbia.edu Sun Oct  2 09:52:33 1994
  17336. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23709
  17337.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Oct 1994 06:44:34 -0400
  17338. Received: by apakabar.cc.columbia.edu id AA06305
  17339.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Oct 1994 06:44:33 -0400
  17340. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!MathWorks.Com!news.duke.edu!eff!news.umbc.edu!haven.umd.edu!cville-srv.wam.umd.edu!drkwlf
  17341. From: drkwlf@wam.umd.edu (Sir DarkWolf)
  17342. Newsgroups: comp.protocols.kermit.misc
  17343. Subject: Kermit on Linux help
  17344. Date: 2 Oct 1994 09:52:33 GMT
  17345. Organization: University of Maryland, College Park
  17346. Lines: 20
  17347. Message-Id: <36lvt1$ga1@cville-srv.wam.umd.edu>
  17348. Nntp-Posting-Host: rac5.wam.umd.edu
  17349. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  17350.  
  17351. I'm attempting to run kermit from a linux system installed on my pc.  I 
  17352. am having serious problems (well, serious to me anyway) getting my modem 
  17353. to dial.  I have a USRobotics Sportster 14400, and use the "set modem 
  17354. sportster" command when running kermit, then "set line /dev/cua1", then 
  17355. "set speed 9600".  But, when I dial a number, it either tells me that it 
  17356. can't initialize the modem, or that the dial timeout interval was 
  17357. exceeded and it dumps me back into a kermit prompt.  I have tried setting 
  17358. the dial timeout interval up through 120 sec, but this still doesn't 
  17359. solve it.  I have also set the dial init-string to an init string that 
  17360. DOES work with crosstalk under dos.  (AT B0 X4 &B1 &H1 &R2 E0 V1).  Does 
  17361. anybody have an idea what I'm doing wrong, or could prompt me for some 
  17362. extra info that will help them solve this for me.  I would greatly 
  17363. appreciate it.
  17364. Thanks
  17365.  
  17366. -- 
  17367.           ********Grand Master of the Cavalry for a.f.m-p********
  17368.           *      Sir DarkWolf       *    The dirty grey knight  *
  17369.           *   drkwlf@wam.umd.edu    *    with blue speckles.    *
  17370.           *******************************************************
  17371.  
  17372. From news@columbia.edu Sun Oct  2 14:36:50 1994
  17373. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25053
  17374.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Oct 1994 10:36:53 -0400
  17375. Received: by apakabar.cc.columbia.edu id AA27239
  17376.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Oct 1994 10:36:52 -0400
  17377. Path: news.columbia.edu!usenet
  17378. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  17379. Newsgroups: comp.protocols.kermit.misc
  17380. Subject: Re: CKermit keys
  17381. Date: 2 Oct 1994 14:36:50 GMT
  17382. Organization: Columbia University
  17383. Lines: 21
  17384. Message-Id: <36mgi2$qj5@apakabar.cc.columbia.edu>
  17385. References: <36l4m9$agi@infoserv.rug.ac.be>
  17386. Nntp-Posting-Host: fdc.cc.columbia.edu
  17387. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  17388.  
  17389. In article <36l4m9$agi@infoserv.rug.ac.be> rsamanya@eduserv.rug.ac.be (ranan  
  17390. samanya) writes:
  17391. > I'm using CKermit for OS/2 to connect to the server. When I use joe's
  17392. > editor, I can't use the PGUP, PGDOWN, or any cursor keys (PGUP and PGDOWN
  17393. > is reserved for Kermit's scroll screen). Is there a way to change this
  17394. > behaviour?
  17395. Of course.  One of Kermit's strongest features is key mapping.
  17396.  
  17397. In OS/2 C-Kermit 5A(190), still in beta but not for long, each of these
  17398. actions has a "verb" associated with it.  You can assign the verb to
  17399. any key you want.  Thus you can move the rollback functions to the keys
  17400. of your choice.
  17401.  
  17402. Now I have no idea what "joe's editor" expects to see when you hit PgUp
  17403. and PdDown, but whatever it is, you can program those keys to send those
  17404. things.
  17405.  
  17406. It's all in the documentation :-)
  17407.  
  17408. - Frank
  17409.  
  17410. From news@columbia.edu Sun Oct  2 14:52:25 1994
  17411. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25479
  17412.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Oct 1994 10:52:27 -0400
  17413. Received: by apakabar.cc.columbia.edu id AA28026
  17414.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Oct 1994 10:52:26 -0400
  17415. Path: news.columbia.edu!usenet
  17416. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  17417. Newsgroups: comp.protocols.kermit.misc
  17418. Subject: Re: Kermit on Linux help
  17419. Date: 2 Oct 1994 14:52:25 GMT
  17420. Organization: Columbia University
  17421. Lines: 23
  17422. Message-Id: <36mhf9$rbo@apakabar.cc.columbia.edu>
  17423. References: <36lvt1$ga1@cville-srv.wam.umd.edu>
  17424. Nntp-Posting-Host: fdc.cc.columbia.edu
  17425. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  17426.  
  17427. In article <36lvt1$ga1@cville-srv.wam.umd.edu> drkwlf@wam.umd.edu (Sir  
  17428. DarkWolf) writes:
  17429. > I'm attempting to run kermit from a linux system installed on my pc.  I 
  17430. > am having serious problems (well, serious to me anyway) getting my modem 
  17431. > to dial.  I have a USRobotics Sportster 14400, and use the "set modem 
  17432. > sportster" command when running kermit, then "set line /dev/cua1", then 
  17433. > "set speed 9600".  But, when I dial a number, it either tells me that it 
  17434. > can't initialize the modem, or that the dial timeout interval was 
  17435. > exceeded and it dumps me back into a kermit prompt.
  17436. >
  17437. Which version of C-Kermit are you using?  Please try version 5A(190),
  17438. still in Beta.  It has numerous low-level i/o improvements for Linux.
  17439. If you still have trouble, might I recommend pages 50-67 of the manual,
  17440. "Using C-Kermit".  Yes, 17 pages on dialing, and with good reason -- there
  17441. are more things to consider than are practical to list in a newsgroup
  17442. message.  You might also want to take a peek at the MODEMS AND DIALING
  17443. and DIALING HINTS AND TIPS sections of the ckcker.bwr file.
  17444.  
  17445. If you can't find the answer in any of these places, send email to me with
  17446. details about your connection, versions, and exactly which commands you used
  17447. to set up the call.
  17448.  
  17449. - Frank
  17450.  
  17451. From news@columbia.edu Sun Oct  2 15:06:29 1994
  17452. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26366
  17453.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Oct 1994 11:06:32 -0400
  17454. Received: by apakabar.cc.columbia.edu id AA28683
  17455.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Oct 1994 11:06:31 -0400
  17456. Path: news.columbia.edu!usenet
  17457. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  17458. Newsgroups: comp.protocols.kermit.misc
  17459. Subject: Re: vt220 mode in OS/2 ckermit 1.90 beta
  17460. Date: 2 Oct 1994 15:06:29 GMT
  17461. Organization: Columbia University
  17462. Lines: 45
  17463. Message-Id: <36mi9l$s07@apakabar.cc.columbia.edu>
  17464. References: <1994Oct2.035230.5054@janus.cat.csiro.au>
  17465. Nntp-Posting-Host: fdc.cc.columbia.edu
  17466. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  17467.  
  17468. lIn article <1994Oct2.035230.5054@janus.cat.csiro.au>
  17469. grl@janus.cat.csiro.au (Greg Lehmann) writes:
  17470.  
  17471. > I have read the manuals but am afraid the terminology does me in. I have
  17472. > a wordperfect document on a sun and want to edit it on my pc emulating a
  17473. > vt220. It appears that the character sets are stuffed up because the
  17474. > accents are not working properly. It was originally entered into wp on a
  17475. > vt220 and 1now I need to change a few things, without access to a real
  17476. > vt220 anymore.  The document is in french.
  17477. >
  17478. It all works, but C-Kermit is not a mind reader.  French can be represented
  17479. by at least the following character sets on the host:
  17480.  
  17481.   ISO 646 French national version (7-bit)
  17482.   The VTxxx Canadian French "NRC" (7-bit)
  17483.   ISO 8859-1 Latin Alphabet 1 (8-bit)
  17484.   DEC Multinational Character set (8-bit)
  17485.   Data General International (8-bit)
  17486.   Hewlett-Packard Roman8 (8-bit)
  17487.   NeXT Multinational (8-bit)
  17488.  
  17489.  ... to name a few.  Kermit understands all of these, but you have to tell
  17490. it which one to use.  The comand is SET TERMINAL CHARACTER-SET.  Come to
  17491. think of it, it is very likely that when the file was transferred to the
  17492. Sun from the PC originally, that no character-set translations were done
  17493. at all, in which case it is still encoded in an IBM code page.  Believe it
  17494. or not, you can even tell C-Kermit to SET TERMINAL CHARACTER-SET CP850
  17495. (or whatever) when talking to a Sun.
  17496.  
  17497. Secondly, if the file is encoded in an 8-bit character you have to make
  17498. sure that you have opened up an 8-bit connection to the Sun.  Tell
  17499. C-Kermit to SET TERMINAL BYTESIZE 8.  You might also have to tell the Sun
  17500. to "stty pass8".  You also have to be using an 8-bit clean editor on the
  17501. Sun, such as EMACS 19 or Mule.  EMACS 18 won't do it.  I don't know about
  17502. VI, but I doubt it.
  17503.  
  17504. > The first thing I notice is
  17505. > that even the line graphics don't work, although they do when kermit is
  17506. > in vt102 mode. Does anyone know how to get it working?
  17507. >
  17508. There was a bug in OS/2 C-Kermit in some of the 5A(190) Alphas and Betas,
  17509. now fixed.  Line graphics work fine in the copy that you will find on
  17510. kermit.columbia.edu, directory kermit/test/bin, file cku190.zip.
  17511.  
  17512. - Frank
  17513.  
  17514. From news@columbia.edu Sun Oct  2 15:23:09 1994
  17515. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27212
  17516.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Oct 1994 11:31:47 -0400
  17517. Received: by apakabar.cc.columbia.edu id AA00300
  17518.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Oct 1994 11:31:46 -0400
  17519. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!convex!cs.utexas.edu!swrinde!pipex!sunic!news.funet.fi!zippo.uwasa.fi!uwasa.fi!ts
  17520. From: ts@uwasa.fi (Timo Salmi)
  17521. Newsgroups: comp.protocols.kermit.misc
  17522. Subject: Re: Are Columbia U's files still avial for FTP?
  17523. Date: 2 Oct 1994 15:23:09 GMT
  17524. Organization: University of Vaasa
  17525. Lines: 56
  17526. Message-Id: <36mj8t$1f8@zippo.uwasa.fi>
  17527. References: <dmurdoch.1325.2E8C5321@mast.queensu.ca> <36hsus$qtn@apakabar.cc.columbia.edu> <36l7j2$6uh@lynx.unm.edu>
  17528. Nntp-Posting-Host: uwasa.fi
  17529. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  17530.  
  17531. In article <36l7j2$6uh@lynx.unm.edu> galway@chtm.eece.unm.edu writes:
  17532. >Looking at the larger issues - beyond the Kermit/Columbia/SimTel/Garbo
  17533. >situation - notice that the economic viability of marketing software
  17534.  
  17535. The understandable problem with this difficult discussion have been
  17536. its excessive simplifications.  There is one further facet that has
  17537. not been brought up emphatically, so I will. 
  17538.  
  17539. Take an obviously popular university FTP site like Garbo.  Contrary
  17540. to what some users may have assumed, we certainly do not exist for
  17541. the purpose of generating profits.  In fact all the Garbo users are
  17542. heavily subsidized by the tax-payers.  Just like all the Internet
  17543. users are, more or less, since this is net is much financed from
  17544. public funds throughout the world.  Every FTP user and everyone now
  17545. reading this posting (you and I included!) is dipping into someone
  17546. else's pocket! So are the SimTel users even if SimTel is compelled
  17547. to be more self-sufficient than we are, and needs the proceeds from
  17548. the CDROM in order to exist for you.  Else it will cease to exist
  17549. for us all. 
  17550.  
  17551. Since also Garbo happens to be a popular FTP site, there is a good
  17552. chance that also we will be put an a CDROM.  I do not want to forbid
  17553. that possibility to retain all possible programs. 
  17554.  
  17555. I must confess that I am worried about the current trend which the
  17556. Kermit restriction exemplifies as one of the many.  HERE IS THE
  17557. POINT: Taken to the extremes this general trend will begin to affect
  17558. the responsibly acting FTP sites, and the FREE services they provide
  17559. to the net.  Already the trend has caused a lot of extra work also
  17560. to the FTP site maintainers.  That extra work taxes our resources
  17561. and takes away from the services we provide, and it affects the
  17562. motivation of FTP site maintainers.  (Just like this unfortunately
  17563. taxes Frank's capacity). 
  17564.  
  17565. Kermit is by far not the only such case this season.  Nor is a
  17566. single university (Columbia) responsible for what is happening in
  17567. general.  I am not trying to say that, in case someone
  17568. misunderstands.
  17569.  
  17570. In broad terms all this exemplifies the current 'to be or not to be'
  17571. status of the Internet community.  The ideals and the financial
  17572. realities are clashing more and more, as every user with sufficient
  17573. experience on Usenet will have gathered. 
  17574.  
  17575. Sigh!  This no longer feels like only a comp.protocols.kermit.misc
  17576. subject.  Maybe we should find a more appropriate newsgroup for
  17577. discussing the broader issue and its imlications.
  17578.  
  17579.    All the best, Timo
  17580.  
  17581. ..................................................................
  17582. Prof. Timo Salmi      Co-moderator of comp.archives.msdos.announce
  17583. Moderating at garbo.uwasa.fi anonymous FTP  archives  128.214.87.1
  17584. Faculty of Accounting & Industrial Management; University of Vaasa
  17585. Internet: ts@uwasa.fi   BBS +(358)-61-3170972; FIN-65101,  Finland
  17586.  
  17587.  
  17588. From news@columbia.edu Sun Oct  2 14:32:34 1994
  17589. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27649
  17590.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Oct 1994 11:41:16 -0400
  17591. Received: by apakabar.cc.columbia.edu id AA00819
  17592.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Oct 1994 11:41:15 -0400
  17593. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!convex!cs.utexas.edu!swrinde!howland.reston.ans.net!math.ohio-state.edu!jussieu.fr!univ-lyon1.fr!swidir.switch.ch!newsfeed.ACO.net!Austria.EU.net!EU.net!uunet!newsflash.concordia.ca!canopus.cc.umanitoba.ca!rahardj
  17594. From: rahardj@cc.umanitoba.ca (Budi Rahardjo)
  17595. Newsgroups: comp.protocols.kermit.misc
  17596. Subject: Re: Columbia University's Kermit copyright
  17597. Date: 2 Oct 1994 14:32:34 GMT
  17598. Organization: The University of Manitoba
  17599. Lines: 63
  17600. Message-Id: <36mga2$t6q@canopus.cc.umanitoba.ca>
  17601. References: <36jrgq$h1h@canopus.cc.umanitoba.ca> <36kvvc$9u9@apakabar.cc.columbia.edu>
  17602. Nntp-Posting-Host: antares.cc.umanitoba.ca
  17603. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  17604.  
  17605. fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  17606.  
  17607. : In article <36jrgq$h1h@canopus.cc.umanitoba.ca> rahardj@cc.umanitoba.ca (Budi  
  17608. : Rahardjo) writes:
  17609. : > 5. Personally, with all the troubles. I would rather change to
  17610. : >    a different program/implementation. Just one user, no big deal, eh ?
  17611. : >    Well, don't underestimate. I always recommend your kermit
  17612. : >    to friends/users/clients, and so do many people.
  17613. : > 
  17614. : This is a point of view that I can't understand.  Nobody is restricting your
  17615. : use of Kermit software or even asking you to spend a dime for it.  You
  17616. : can ftp it from any site that carries it any time you want.  
  17617.  
  17618. What about those people who don't have access to FTP?
  17619. Do you also send floppy disks for FREE?
  17620.  
  17621. : But it's not
  17622. : enough that we should produce the software and give it to you; we must
  17623. : also give it to a third party before you will agree to use it.  
  17624.  
  17625. You are missing the point. You are RESTRICTING it to 3rd party,
  17626. which is actually helping you to distribute kermit. You are restricting
  17627. the distribution.
  17628. You have a view that these 3rd parties are scums, milking your sweat,
  17629. where actually they help you distribute your program. Where is your
  17630. compassion too?
  17631.  
  17632. Nobody is forcing me to buy their CDs. I am willingly paid for the CD,
  17633. and I KNOW all the programs are available for FREE.
  17634.  
  17635. : The part
  17636. : I don't understand is why your compassion for this third party does not
  17637. : extend in equal part to the people who designed, wrote, documented, and
  17638. : support the software in the first place.
  17639.  
  17640. The problem I have is you are making the distribution convoluted.
  17641. If I were to give somebody a copy of kermit on a disk and I charge him/her
  17642. the price of a disk, you are going to accuse me of selling kermit.
  17643. How about if somebody put your kermit in a paid-BBS ?
  17644. Are you going to get the BBS sysop too?
  17645. Are you going to remove kermit from Linux CDs ???
  17646.  
  17647. In a way, I am also helping you guys to distribute kermit and making
  17648. it popular. In some cases I also helping people to configure it
  17649. (in a way supporting it). Am I getting paid for it ? No. 
  17650. It's your program, you can do whatever you want.
  17651. But if it makes it difficult for us to distribute it ... I won't do it.
  17652.  
  17653. I salute those people who design, wrote, documented, and support
  17654. the software. But you are missing one more group, people who distribute
  17655. the software.
  17656.  
  17657. To put it bluntly, you have a really good software but you want to
  17658. keep it to yourself, or mildly, you want to be the central distribution.
  17659. Fine. My 2 cents.
  17660.  
  17661.  
  17662. : - Frank
  17663. -- budi
  17664. -- 
  17665. Budi Rahardjo <Budi_Rahardjo@UManitoba.Ca>
  17666. #include <std-disclaimer.h>
  17667. Unix Support - Computer Services - University of Manitoba
  17668.  
  17669. From news@columbia.edu Sun Oct  2 15:57:23 1994
  17670. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28249
  17671.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Oct 1994 11:57:25 -0400
  17672. Received: by apakabar.cc.columbia.edu id AA01645
  17673.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Oct 1994 11:57:24 -0400
  17674. Path: news.columbia.edu!usenet
  17675. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  17676. Newsgroups: comp.protocols.kermit.misc
  17677. Subject: Re: Please explain Kermit's copyright
  17678. Date: 2 Oct 1994 15:57:23 GMT
  17679. Organization: Columbia University
  17680. Lines: 154
  17681. Message-Id: <36ml93$1ja@apakabar.cc.columbia.edu>
  17682. References: <36lpdt$ns4@cruella.ee.pdx.edu>
  17683. Nntp-Posting-Host: fdc.cc.columbia.edu
  17684. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  17685.  
  17686. In article <36lpdt$ns4@cruella.ee.pdx.edu> rkwee@ee.pdx.edu (Roland Kwee)
  17687. writes:
  17688. > In this time where the legal status of Kermit on ftp sites and
  17689. > CD-ROM is heavily debated, it wouldn't harm if someone from
  17690. > Columbia (Frank, Joe?) could explain in some detail what is
  17691. > permitted with Kermit and what not. Such a discussion happened
  17692. > not too long ago about the GNU public license for their libraries.
  17693. OK, I'll give it a shot, but with all the standard disclaimers,
  17694. like you see at the bottom of car-leasing commercials :-)
  17695.  
  17696. > 1) I understood that a commercial program like Procomm could include
  17697. > the Kermit protocol and source code as long as it wouldn't charge 
  17698. > for that. The purchase (license) price would be for the non-Kermit
  17699. > part of the product alone, and the Kermit part would be passed on
  17700. > to the user for free. Is this correct?
  17701. This has been our policy from the beginning, but it is clearly not a
  17702. good one for anybody but the commercial software makers.  Why?
  17703.  
  17704.  . Columbia gets no income.
  17705.  . Real Kermit software loses "market share".
  17706.  . The Kermit implementations in many of these programs give
  17707.    Kermit a bad name.
  17708.  . These people *are* making money from Kermit -- Look at all the
  17709.    postings on the many newsgroups from people talking about using
  17710.    Kermit in <commercial-or-shareware-package-of-your-choice>.  Who
  17711.    is to say the presence of the word "Kermit" on their package
  17712.    has not affected their sales?
  17713.  . We (Columbia) get countless tech support questions from users of
  17714.    these products.  Some of the vendors even go so far as to tell
  17715.    their customers: "Kermit problem? Call Columbia."
  17716.  
  17717. It's another case of "they get the money, we get the extra work", AND the
  17718. bad rep in the newsgroups and the trade press to boot.  But to answer your
  17719. question: no, there is nothing to stop anybody from writing a Kermit
  17720. implementation, no matter how minimal or buggy, without asking permission
  17721. from Columbia.  They cannot, however, use or even look at our copyrighted
  17722. source code without our permission.
  17723.  
  17724. > 2) Could one charge money for giving someone a copy of Kermit on a 
  17725. > diskette, to cover the cost of the diskette and the copying of the
  17726. > files, and the postage and handling? This would not be a charge for
  17727. > the program itself. It would still be an opportunity to make a profit,
  17728. > .. The diskette maker may make a profit, the delivery service,
  17729. > the guy that spends time operating the copying device (also called wage),
  17730. > and so on. This opportunity of making a profit is clearly linked to
  17731. > the contents of the files, in this case the quality of the Kermit
  17732. > product.
  17733. I'm not going to answer this one directly.  Everybody looks for loopholes
  17734. to exploit.  Here is what we WANT to happen: if you use MS-DOS Kermit or
  17735. C-Kermit enough to need to know anything about it, purchase the manual.
  17736. If you don't do that, you waste your time and ours, and the net's.  You
  17737. run up bigger phone bills that you would have if you had read the manual,
  17738. etc etc, and, yes, buying the manual helps keep the Kermit effort alive.
  17739.  
  17740. > 3) In the case of the Simtel/Garbo CD's, did I understand it correcly
  17741. > that Columbia told them that the distribution of Kermit required an
  17742. > agreement with Columbia?
  17743. >
  17744. More to the point: the copyright notice says that, and the copyright
  17745. notice was overlooked.
  17746.  
  17747. > About what kind of demands are we talking here?
  17748. >
  17749. That's between us and the CD maker or any other commercial establishment
  17750. that wants to redistribute our software.  The negotiations are private.
  17751.  
  17752. > 4) Does Columbia _own_ all contributions made by the numerous
  17753. > volunteers that actually created the various Kermit versions? Would
  17754. > Columbia refuse contributions covered by the GNU public license?
  17755. First let me say that we have always gone out of our way to publicly
  17756. acknowledge all contributed code and bug fixes, and publicly thank and
  17757. praise the contributors.  I believe, but I can't swear, that everybody who
  17758. makes such contributions understands that they are going into copyrighted
  17759. software.  Nobody has ever complained about this.  This is a system that
  17760. works -- the contributors get the features and fixes they want, and these
  17761. get supported and carried forward into new releases, and lots of other
  17762. people benefit at the same time.  If you're asking me, do I make them sign
  17763. a waiver, no I do not.
  17764.  
  17765. Can we get real here for a minute?  This used to be a collegial,
  17766. cooperative, worldwide effort, unhampered by pointless legalisms, from
  17767. which *everybody* benefitted -- even significant numbers of entrepreneurs
  17768. after they entered into agreements with us.  It even used to be... fun.
  17769. Kermit has played a major role in many humanitarian causes -- cancer and
  17770. AIDS research, Bosnian war relief, ozone layer research in Antarctica,
  17771. space exploration, etc etc, where the cost of any other solution would
  17772. have been prohibitive -- it has saved lives, promoted communication in
  17773. parts of the world that could not have accomplished it any other way,
  17774. helped to spread democracy (more about this next month), and much more.
  17775. On a more mundane level, I would venture to say that it has saved
  17776. universities, governments, and other cash-poor institutions billions of
  17777. dollars, which ultimately would have come out of your pocket in taxes or
  17778. tuition.
  17779.  
  17780. Who on this planet has suffered from how we conduct our business?  Now you
  17781. want us to bring in the lawyers and accountants?
  17782.  
  17783. > 5) Long ago I must have read something like: Kermit is not public domain
  17784. > to prevent others from slapping their copyright mark on it. This way,
  17785. > it would be truly free for everybody to use it for whatever purpose. It
  17786. > is freer than public domain. Correct?
  17787. In a sense, it is.  The copyright notice prevents commercial enterprises
  17788. from distributing our software without our permission.  It places no
  17789. restrictions on anybody's use of the software, only the redistribution of it
  17790. by commercial enterprises.
  17791.  
  17792. > 5A) If I create a program and put it in the public domain, could someone
  17793. > take it, change two comments, and exclusively own that entire modified
  17794. > program?
  17795. Yes.  And if you were still using your own copy of it, they could take you
  17796. to court.  There was a case about 15 years ago where a university had to
  17797. pay a big settlement in court because an entrepeneur took their
  17798. public-domain code, which they had written themselves for their own use,
  17799. slapped his copyright on it, and then sued them for using it.  Sorry, I
  17800. can't recall the name or docket-number of the case, but there really was
  17801. a case like this.
  17802.  
  17803. > 6) Suppose I run a commercial business for profit. Can I freely use
  17804. > the Kermit program? Even if my business consists entirely of transfering
  17805. > files through modems using Kermit?
  17806. Yes, on your computer.  But you can't give out copies of our software to
  17807. your customers without our permission.
  17808.  
  17809. Obviously, however, if you were a very rich and prominent business,
  17810. it might be in your interest to help support our continued work -- if
  17811. we went under, then so could you.
  17812.  
  17813. > These are my questions. Certainly, people interested in ftp-archives
  17814. > and CD-ROM will have additional questions. For me, as a layman in law,
  17815. > the copyright statement of Kermit sometimes needs some clarification.
  17816. I think what disturbs me most about this discussion is that people seem
  17817. to be more concerned with "how can we make money from this?" than "how can
  17818. I get it for my own use?" or "how can I learn to use it more effectively?".
  17819.  
  17820. If you want to make money from our work, then you will have to share that
  17821. money with us.
  17822.  
  17823. If you want to use our work directly, nobody is forcing you to spend one red
  17824. cent.  If Kermit became shareware, as so many of you advocate, then everybody
  17825. who uses it would have to (a) send us money, (b) stop using it, or (c) become
  17826. an outlaw.  That would include the universities, government agencies,
  17827. research institute, hospitals, convents, and orphanages.
  17828.  
  17829. Why don't we give it rest, eh?  Thanks.
  17830.  
  17831. - Frank
  17832.  
  17833. From news@columbia.edu Sun Oct  2 16:09:59 1994
  17834. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28767
  17835.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Oct 1994 12:10:02 -0400
  17836. Received: by apakabar.cc.columbia.edu id AA02191
  17837.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Oct 1994 12:10:00 -0400
  17838. Path: news.columbia.edu!usenet
  17839. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  17840. Newsgroups: comp.protocols.kermit.misc
  17841. Subject: Re: Are Columbia U's files still avial for FTP?
  17842. Date: 2 Oct 1994 16:09:59 GMT
  17843. Organization: Columbia University
  17844. Lines: 42
  17845. Message-Id: <36mm0n$24d@apakabar.cc.columbia.edu>
  17846. References: <36mj8t$1f8@zippo.uwasa.fi>
  17847. Nntp-Posting-Host: fdc.cc.columbia.edu
  17848. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  17849.  
  17850. In article <36mj8t$1f8@zippo.uwasa.fi> ts@uwasa.fi (Timo Salmi) writes:
  17851. > In article <36l7j2$6uh@lynx.unm.edu> galway@chtm.eece.unm.edu writes:
  17852. > >Looking at the larger issues - beyond the Kermit/Columbia/SimTel/Garbo
  17853. > >situation - notice that the economic viability of marketing software
  17854. > etc etc...
  17855. >
  17856. Yes, Timo.  We are living in times when the Internet is changing from
  17857. a publicly sponsored medium for the free exchange of "ideas" (in the
  17858. broadest sense) to a commodity exchange.  This is one of the growing
  17859. pains.  To compound the problem, most newcomers to the Internet view it
  17860. as a giant bag of free goodies and have no conception of the amount of
  17861. work that went into establishing the foundations of the Internet, and
  17862. all the software and other resources that lay at their fingertips.  The
  17863. idea is to take what you can get and run, and pay no thought to tomorrow.
  17864.  
  17865. > I must confess that I am worried about the current trend which the
  17866. > Kermit restriction exemplifies as one of the many.  HERE IS THE
  17867. > POINT: Taken to the extremes this general trend will begin to affect
  17868. > the responsibly acting FTP sites, and the FREE services they provide
  17869. > to the net.  Already the trend has caused a lot of extra work also
  17870. > to the FTP site maintainers.  That extra work taxes our resources
  17871. > and takes away from the services we provide, and it affects the
  17872. > motivation of FTP site maintainers.  (Just like this unfortunately
  17873. > taxes Frank's capacity). 
  17874. Actually, this new trend is only the expected and logical outcome of
  17875. the trend that directly preceded it -- the commercialization of the net
  17876. by turning ftp archive sites into CD-ROM masters.  The net was not
  17877. designed for that.  Now it seems we all have to do more work, and as
  17878. Timo observes, that work must be paid for.  Soon there will be
  17879. bureaucracies, regulating agencies, waivers, loyalty oaths, and taxes
  17880. (in one form or another) to pay for them.  Who will benefit?  The
  17881. lawyers and investors.
  17882.  
  17883. > Sigh!  This no longer feels like only a comp.protocols.kermit.misc
  17884. > subject.  Maybe we should find a more appropriate newsgroup for
  17885. > discussing the broader issue and its imlications.
  17886. Ha ha, good luck, Timo!  It took me *months* to get this newsgroup
  17887. established, and boy am I glad I did!
  17888.  
  17889. - Frank
  17890.  
  17891. From news@columbia.edu Sun Oct  2 16:16:06 1994
  17892. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29036
  17893.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Oct 1994 12:16:08 -0400
  17894. Received: by apakabar.cc.columbia.edu id AA02778
  17895.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Oct 1994 12:16:07 -0400
  17896. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  17897. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  17898. Newsgroups: comp.protocols.kermit.misc
  17899. Subject: Re: vt220 mode in OS/2 ckermit 1.90 beta
  17900. Date: 2 Oct 1994 16:16:06 GMT
  17901. Organization: Columbia University
  17902. Lines: 87
  17903. Message-Id: <36mmc6$2ml@apakabar.cc.columbia.edu>
  17904. References: <1994Oct2.035230.5054@janus.cat.csiro.au> <36mi9l$s07@apakabar.cc.columbia.edu>
  17905. Nntp-Posting-Host: watsun.cc.columbia.edu
  17906. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  17907.  
  17908. In article <36mi9l$s07@apakabar.cc.columbia.edu>,
  17909. Frank da Cruz <fdc@fdc.cc.columbia.edu> wrote:
  17910. >lIn article <1994Oct2.035230.5054@janus.cat.csiro.au>
  17911. >grl@janus.cat.csiro.au (Greg Lehmann) writes:
  17912. >
  17913. >> I have read the manuals but am afraid the terminology does me in. I have
  17914. >> a wordperfect document on a sun and want to edit it on my pc emulating a
  17915. >> vt220. It appears that the character sets are stuffed up because the
  17916. >> accents are not working properly. It was originally entered into wp on a
  17917. >> vt220 and 1now I need to change a few things, without access to a real
  17918. >> vt220 anymore.  The document is in french.
  17919. >>
  17920. >It all works, but C-Kermit is not a mind reader.  French can be represented
  17921. >by at least the following character sets on the host:
  17922. >
  17923. >  ISO 646 French national version (7-bit)
  17924. >  The VTxxx Canadian French "NRC" (7-bit)
  17925. >  ISO 8859-1 Latin Alphabet 1 (8-bit)
  17926. >  DEC Multinational Character set (8-bit)
  17927. >  Data General International (8-bit)
  17928. >  Hewlett-Packard Roman8 (8-bit)
  17929. >  NeXT Multinational (8-bit)
  17930. >
  17931. > ... to name a few.  Kermit understands all of these, but you have to tell
  17932. >it which one to use.  The comand is SET TERMINAL CHARACTER-SET.  Come to
  17933.  
  17934. This part is correct.  Word Perfect exists on the Sun as a Sun executable.
  17935. There was no file transfer.  So don't worry about the IBM code pages.
  17936. >
  17937. >Secondly, if the file is encoded in an 8-bit character you have to make
  17938. >sure that you have opened up an 8-bit connection to the Sun.  Tell
  17939. >C-Kermit to SET TERMINAL BYTESIZE 8.  You might also have to tell the Sun
  17940. >to "stty pass8".  
  17941.  
  17942. This is accurate.
  17943.  
  17944. >You also have to be using an 8-bit clean editor on the
  17945. >Sun, such as EMACS 19 or Mule.  EMACS 18 won't do it.  I don't know about
  17946. >VI, but I doubt it.
  17947.  
  17948. Again.  Don't worry about this.  You are using Word Perfect as your editor.
  17949.  
  17950. >> The first thing I notice is
  17951. >> that even the line graphics don't work, although they do when kermit is
  17952. >> in vt102 mode. Does anyone know how to get it working?
  17953. >>
  17954. >There was a bug in OS/2 C-Kermit in some of the 5A(190) Alphas and Betas,
  17955. >now fixed.  Line graphics work fine in the copy that you will find on
  17956. >kermit.columbia.edu, directory kermit/test/bin, file cku190.zip.
  17957. >
  17958. >- Frank
  17959.  
  17960. Just set the character set to an appropriate one.  And us the Updates 
  17961. command to view the CKERMIT.INF file.  Look up the Compose command which
  17962. will allow you to easily enter all of the accented characters.
  17963.  
  17964. Have a nice day.
  17965.  
  17966. x
  17967. x
  17968. x
  17969. x
  17970. x
  17971. x
  17972. x
  17973. x
  17974. x
  17975. x
  17976. x
  17977. x
  17978. x
  17979. x
  17980. x
  17981. x
  17982. x
  17983. x
  17984. x
  17985. x
  17986. x
  17987. x
  17988. x
  17989.  
  17990.  
  17991. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  17992. "C-Kermit: available on more platforms than any other communications software."
  17993. "Kermit FTP: sending files whenever and wherever they are needed."
  17994. OS/2 version 189 via ftp from watsun.cc.columbia.edu /kermit/bin/ckoker.zip 
  17995.  
  17996. From news@columbia.edu Sun Oct  2 16:28:00 1994
  17997. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29414
  17998.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Oct 1994 12:28:03 -0400
  17999. Received: by apakabar.cc.columbia.edu id AA03496
  18000.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Oct 1994 12:28:02 -0400
  18001. Path: news.columbia.edu!usenet
  18002. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  18003. Newsgroups: comp.protocols.kermit.misc
  18004. Subject: Re: Columbia University's Kermit copyright
  18005. Date: 2 Oct 1994 16:28:00 GMT
  18006. Organization: Columbia University
  18007. Lines: 19
  18008. Message-Id: <36mn2g$3d3@apakabar.cc.columbia.edu>
  18009. References: <36mga2$t6q@canopus.cc.umanitoba.ca>
  18010. Nntp-Posting-Host: fdc.cc.columbia.edu
  18011. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  18012.  
  18013. In article <36mga2$t6q@canopus.cc.umanitoba.ca> rahardj@cc.umanitoba.ca (Budi  
  18014. Rahardjo) writes:
  18015. > You have a view that these 3rd parties are scums, milking your sweat,
  18016. > where actually they help you distribute your program. Where is your
  18017. > compassion too?
  18018. Not all all.  Timo and Keith are good guys.  But our interests in this
  18019. matter our diametrically opposed.  Let me ONCE AGAIN very briefly say:
  18020.  
  18021.   CDROMs are perfect for distributing shareware.  I praise Timo,
  18022.   Keith, Walnut Creek, and everybody who distributes shareware on
  18023.   CDROMs or any other way.  CDROMs are also good for *true* freeeware,
  18024.   i.e. software whose development and maintenance does not need to
  18025.   be supported in any way, but in that case you get what you pay for.
  18026.  
  18027. CDROMs, however, are not good for distributing software that does not
  18028. fall into these categories.  Kermit is such software.
  18029.  
  18030. - Frank
  18031.  
  18032. From news@columbia.edu Sun Oct  2 16:25:45 1994
  18033. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00204
  18034.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Oct 1994 12:50:40 -0400
  18035. Received: by apakabar.cc.columbia.edu id AA04823
  18036.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Oct 1994 12:50:39 -0400
  18037. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!newsxfer.itd.umich.edu!newsrelay.iastate.edu!news.iastate.edu!billmaly
  18038. From: billmaly@iastate.edu (WhoWantsTaKnow)
  18039. Newsgroups: comp.protocols.kermit.misc
  18040. Subject: SLOW downloads
  18041. Date: 2 Oct 1994 16:25:45 GMT
  18042. Organization: Iowa State University, Ames, IA
  18043. Lines: 16
  18044. Message-Id: <36mmu9$qj0@news.iastate.edu>
  18045. Nntp-Posting-Host: des1.iastate.edu
  18046. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  18047.  
  18048. I use KERMIT as my primary(only) comm. software, mostly to tie into my
  18049. University's computer(internet) and to download files. The problem I
  18050. have, even when connecting at speeds of 9600 and above, my download time
  18051. is so slow. It takes more than an hour to dowload a 1 meg file. Is this
  18052. normal, and if not, what can be done to fix it? Thanks!
  18053.  
  18054.  
  18055. -- 
  18056. Bill Maly
  18057. billmaly@iastate.edu
  18058.  
  18059.  
  18060.  
  18061.  
  18062.  
  18063.  
  18064.  
  18065. From news@columbia.edu Sun Oct  2 16:49:56 1994
  18066. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00442
  18067.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Oct 1994 12:55:54 -0400
  18068. Received: by apakabar.cc.columbia.edu id AA05124
  18069.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Oct 1994 12:55:54 -0400
  18070. Path: news.columbia.edu!panix!zip.eecs.umich.edu!newsxfer.itd.umich.edu!europa.eng.gtefsd.com!howland.reston.ans.net!math.ohio-state.edu!jussieu.fr!univ-lyon1.fr!swidir.switch.ch!newsfeed.ACO.net!Austria.EU.net!EU.net!uunet!winternet.com!jamess
  18071. From: jamess@winternet.com (James Sturdevant)
  18072. Newsgroups: comp.protocols.kermit.misc
  18073. Subject: Re: MS-Kermit question
  18074. Date: 2 Oct 1994 16:49:56 GMT
  18075. Organization: StarNet Communications, Inc
  18076. Lines: 27
  18077. Message-Id: <36mobk$7t0@blackice.winternet.com>
  18078. References: <36evui$9t@mathserv.mps.ohio-state.edu> <36f562$63q@apakabar.cc.columbia.edu> <36fu6e$jd@blackice.winternet.com> <1994Sep30.075153.28308@cc.usu.edu>
  18079. Nntp-Posting-Host: icicle.winternet.com
  18080. X-Newsreader: TIN [version 1.2 PL2]
  18081. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  18082.  
  18083. Joe Doupnik (jrd@cc.usu.edu) wrote:
  18084. : In article <36fu6e$jd@blackice.winternet.com>, jamess@winternet.com (James Sturdevant) writes:
  18085. : > Frank da Cruz (fdc@fdc.cc.columbia.edu) wrote:
  18086. : > : In article <36evui$9t@mathserv.mps.ohio-state.edu>  
  18087. : > : davis@pacific.mps.ohio-state.edu writes:
  18088. : > : >   This has been bugging me for a long time but I do not know what to do
  18089. : > : > about it:  Ctrl-ENTER returns a Ctrl-J character (linefeed).  Is there
  18090. : > : > anyway to suppress this?   That is, have Ctrl-ENTER simply return a RET
  18091. : > : > character?
  18092. : > : > 
  18093. : > [Snip] Advice on redefining keys...
  18094. : > 
  18095. : > That works on most keys...  Two keys left of the the "dual entry" table are
  18096. : > Ctrl-J/Ctrl-Enter and Esc/Ctrl-[.  I believe that these are the only two (on
  18097. : > standard 101 keyboards) that cannot be independently defined.
  18098. : > 
  18099. : > JamesS
  18100. : ----------
  18101. :     Yup. Control-Enter is ^J from the Bios and we can't distinguish it
  18102. : from typing Control-J. It is one of the many "features" of the IBM PC Bios.
  18103. :     Joe D.
  18104. Yes, but there are different scan codes along with the ascii code. You 
  18105. differentiate between the enter key and ctrl-M, the duplicate keys on the
  18106. keypad and the keyboard, etc.  All I am interested in is differentiating these
  18107. keys also.  (I have source code if you want it!)
  18108.  
  18109. JamesS
  18110.  
  18111. From news@columbia.edu Sun Oct  2 17:18:05 1994
  18112. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01291
  18113.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Oct 1994 13:18:10 -0400
  18114. Received: by apakabar.cc.columbia.edu id AA06639
  18115.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Oct 1994 13:18:08 -0400
  18116. Path: news.columbia.edu!usenet
  18117. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  18118. Newsgroups: comp.protocols.kermit.misc
  18119. Subject: Re: SLOW downloads
  18120. Date: 2 Oct 1994 17:18:05 GMT
  18121. Organization: Columbia University
  18122. Lines: 152
  18123. Message-Id: <36mq0d$6f9@apakabar.cc.columbia.edu>
  18124. References: <36mmu9$qj0@news.iastate.edu>
  18125. Nntp-Posting-Host: fdc.cc.columbia.edu
  18126. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  18127.  
  18128. In article <36mmu9$qj0@news.iastate.edu> billmaly@iastate.edu  
  18129. (WhoWantsTaKnow) writes:
  18130. > I use KERMIT as my primary(only) comm. software, mostly to tie into my
  18131. > University's computer(internet) and to download files. The problem I
  18132. > have, even when connecting at speeds of 9600 and above, my download time
  18133. > is so slow. It takes more than an hour to dowload a 1 meg file. Is this
  18134. > normal, and if not, what can be done to fix it? Thanks!
  18135. Oh good, we have come full circle.  I now reproduce my very first posting
  18136. to this newsgroup.  Ah, memories...
  18137.  
  18138. To answer your question, somewhat longwindedly, since this Question is
  18139. Asked so Frequently :-) ...
  18140.  
  18141. Zmodem is optimized for speed on the assumption that it has a clear 8-bit
  18142. transparent channel with no blockages (small buffers, etc), and so, out of
  18143. the box, when it works it goes fast.  The tradeoff is that it often does
  18144. not work at all, in which case you have to configure it in various ways --
  18145. escaping of control characters, changing window size, etc.  In some cases
  18146. it can't be made to work at all, either because of the nature of the
  18147. connection, or because of one or both of the computers on the two ends.
  18148.  
  18149. Kermit, on the other hand, is configured to work -- i.e. transfer files --
  18150. out of the box, even under hostile conditions.  By default, it does not 
  18151. assume that control characters pass through transparently, nor that large
  18152. buffers are available.  It does not even assume a full-duplex connection.
  18153. The tradeoff is speed.
  18154.  
  18155. In a perfect world, there would be no tradeoffs, but the world is far from
  18156. perfect.  7-bit transmission is still extremely common, small buffers are
  18157. very common, even in modern terminal servers and other communications
  18158. processors, flow control is rarely implemented correctly and effectively,
  18159. telephone lines are still noisy, and we still have a bewildering array
  18160. of communication methods needed for accessing different kinds of hosts and
  18161. services.  Most PCs are still shipped with non-buffered UARTs; many PCs
  18162. have interrupt conflicts, noisy buses, etc; many modern modems are buggy.
  18163. The list goes on.  This is by way of demonstrating that Kermit's default
  18164. tuning is not crazy, and goes a long way towards explaining its justified
  18165. reputation for dependability.
  18166.  
  18167. Unfortunately, because of the tradeoffs necessary to achieve its
  18168. reliability, Kermit has a reputation for slowness:
  18169.  
  18170.   Yes, Kermit transfers are slow if you use the default tuning.
  18171.  
  18172. However, you can make Kermit go as fast the communication path will permit
  18173. by changing a few parameters.  But first, here are some general principles
  18174. that apply to all communications software:
  18175.  
  18176.  1. Ensure that you have an effective means of flow control enabled at
  18177.     every juncture along the communication path (this applies to any file
  18178.     transfer protocol).  For example, when using high-speed,
  18179.     error-correcting modems, you should use some form of hardware flow
  18180.     control, most commonly RTS/CTS.  You have to tell the software to use
  18181.     it, AND you have to tell the modem to use it too -- if the flow
  18182.     control methods of the PC and the modem do not agree, then data will
  18183.     be lost.
  18184.  
  18185.  2. If your modem is capable of data compression, use it.  Fix the
  18186.     interface speed of the software to four times the connection speed if
  18187.     possible -- e.g. for a V.32bis 14400 bps connection, use an interface
  18188.     speed of 57600, or else the modem's compression capacity is likely to
  18189.     be wasted.
  18190.  
  18191.  3. On network connections (e.g. TCP/IP), it is usually best to turn off
  18192.     flow control entirely, because the underlying networking method
  18193.     supplies fully effective flow control.
  18194.  
  18195. Now, to make Kermit go fast, follow these steps:
  18196.  
  18197.  1. Use real Kermit software, not the many shareware and commercial
  18198.     packages, most of whose Kermit protocol implementations lack the
  18199.     performance features listed below and/or the means for the user to
  18200.     control them.
  18201.  
  18202.  2. Use long packets.  Kermit's default packet length is 94.  You can
  18203.     increase it to a theoretical maximum of 9024.  Give the following
  18204.     command to the file receiver:
  18205.  
  18206.       SET RECEIVE PACKET-LENGTH 2000  ; (or other length)
  18207.  
  18208.     The longer you make the packets, the more efficient the file transfer
  18209.     will be... IF IT WORKS.  If you make packets longer than some buffer
  18210.     somewhere along the line, and effective flow control is lacking, the
  18211.     transfer might not work.  Also, the longer the packet, the greater
  18212.     the chance it will be hit by noise, and the longer it takes to
  18213.     retransmit.
  18214.  
  18215.  3. On full duplex connections, use sliding windows.  Sliding windows
  18216.     allow packets to be transmitted in a continuous stream, rather than
  18217.     "stop and wait" style.  The command is:
  18218.  
  18219.       SET WINDOW 4 ; (or other number)
  18220.  
  18221.     The maximum is 32 (or less, depending on the implementation).  Give
  18222.     this command to *both* Kermit programs.
  18223.  
  18224. For text files and uncompressed binary files, this should give you very
  18225. good performance -- efficiencies in the 85%-100% range.  For compressed
  18226. files, and certain other types of binary files, you can squeeze out
  18227. another 20-25% efficiency by telling Kermit not to prefix a given list of
  18228. control characters.  A typical sequence might be:
  18229.  
  18230.   SET CONTROL UNPREFIX ALL  ;  Unprefix all control characters.
  18231.   SET CONTROL PREFIX 0 1 13 129 141 ...  ; Add back prefixes for these.
  18232.  
  18233. This requires a lot of trial and error because there is no way that a
  18234. communication software program can know what characters are safe and
  18235. which ones are not on a particular connection.  For example, you might be
  18236. going through an X.25 PAD where Ctrl-P will pop you back to the PAD
  18237. prompt.  Or you might be going through a TELNET terminal server where
  18238. Ctrl-] or Ctrl-^ will pop you back to the terminal server prompt.  Or the
  18239. connection might be using Xon/Xoff flow control, and sending Ctrl-S as a
  18240. data character might freeze the connection.
  18241.  
  18242. If you take all of these steps, using optimal packet lengths, window
  18243. sizes, and unprefixing, you should achieve transfer rates comparable to,
  18244. and often better than, the Zmodem implementations that you find in Telix,
  18245. Procomm, and similar shareware and commercial packages; for example, on a
  18246. V.32bis/V.42/V.42bis connection, RTS/CTS flow control, no parity, 57600
  18247. bps interface speed:
  18248.  
  18249.   Typical text files:        3500 cps (characters per second)
  18250.   Uncompressed binary files: 2400 cps (e.g. PC KERMIT.EXE)
  18251.   Compressed files:          1600 cps (e.g. ZIP files)
  18252.  
  18253. These figures come from Kermit News #5, June 1993, which is available via
  18254. anonymous ftp from kermit.columbia.edu, directory kermit/e, file
  18255. newsn5.txt (ASCII) or newsn5.ps (PostScript).  Also see newsn4.txt (.ps)
  18256. for a detailed discussion of long packets and sliding windows.
  18257.  
  18258. Kermit software is available via anonymous ftp to kermit.columbia.edu
  18259. [128.59.39.2], directory kermit and its subdirectories.  There are
  18260. literally hundreds of different Kermit programs for *almost* every machine
  18261. and operating system imaginable.  The most widely used Kermit programs
  18262. are:
  18263.  
  18264.  . MS-DOS Kermit 3.13 for DOS and Windows.
  18265.    No, this is not a native Windows application, but yes, this
  18266.    is the software we recommend for Windows.
  18267.    File: kermit/bin/msvib.zip.
  18268.  
  18269.  . C-Kermit 5A(189) for UNIX, VMS, OS/2, AOS/VS, the Commodore Amiga, etc.
  18270.    UNIX: kermit/bin/cku190.tar.Z.
  18271.    VMS: Get kermit/b/ckvaaa.hlp, read it, take it from there.
  18272.    Others: Get kermit/b/ckaaaa.hlp, read it, take it from there.
  18273.  
  18274.  . IBM Mainframe Kermit-370 for VM/CMS, MVS/TSO, CICS, and MUSIC.
  18275.    kermit/b/ik*.*.
  18276.  
  18277. - Frank
  18278.  
  18279. From news@columbia.edu Sun Oct  2 18:17:30 1994
  18280. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03383
  18281.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Oct 1994 14:17:33 -0400
  18282. Received: by apakabar.cc.columbia.edu id AA10583
  18283.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Oct 1994 14:17:32 -0400
  18284. Path: news.columbia.edu!usenet
  18285. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  18286. Newsgroups: comp.protocols.kermit.misc
  18287. Subject: Policy, final word
  18288. Date: 2 Oct 1994 18:17:30 GMT
  18289. Organization: Columbia University
  18290. Lines: 21
  18291. Message-Id: <36mtfq$aak@apakabar.cc.columbia.edu>
  18292. Nntp-Posting-Host: fdc.cc.columbia.edu
  18293. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  18294.  
  18295. Signing off from this discussion:
  18296.  
  18297.  a. Apologies to anyone I have offended, and to anyone else who might
  18298.     have been offended by anything that has passed through this newsgroup
  18299.     even if it wasn't offensive.
  18300.  
  18301.  b. If you want to use Kermit softwre, go ahead and use it.  Same as
  18302.     always.  No change.
  18303.  
  18304.  c. If you want to *sell* Kermit software, get in touch with us and we'll
  18305.     talk about it.  Same as always, no change.  (Lest I have misspoken
  18306.     again, then let me rephrase: If you want to sell an object or other
  18307.     entity that has Kermit software engraved, embedded, inscribed, or 
  18308.     otherwise adhering to it or imprinted upon its molecular structure,
  18309.     in a fashion that is retrievable or usable by your customers or
  18310.     clients, also please consult with us first.)
  18311.  
  18312.  d. If all you want is an argument, there is a great Monty Python skit
  18313.     I can recommend ... :-)
  18314.  
  18315. - Frank
  18316.  
  18317. From news@columbia.edu Sun Oct  2 19:00:45 1994
  18318. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07005
  18319.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Oct 1994 15:12:35 -0400
  18320. Received: by apakabar.cc.columbia.edu id AA13923
  18321.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Oct 1994 15:12:34 -0400
  18322. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!concert!news.wfu.edu!matthews
  18323. From: matthews@wfu.edu (Rick Matthews)
  18324. Newsgroups: comp.protocols.kermit.misc
  18325. Subject: Re: Are Columbia U's files still avial for FTP?
  18326. Date: 2 Oct 1994 19:00:45 GMT
  18327. Organization: Wake Forest University
  18328. Lines: 23
  18329. Message-Id: <36n00t$pp5@eis.wfunet.wfu.edu>
  18330. References: <dmurdoch.1325.2E8C5321@mast.queensu.ca> <36hsus$qtn@apakabar.cc.columbia.edu> <36l7j2$6uh@lynx.unm.edu>
  18331. Nntp-Posting-Host: acg60.wfunet.wfu.edu
  18332. X-Newsreader: TIN [version 1.2 PL2]
  18333. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  18334.  
  18335. Denis McKeon (galway@chtm.eece.unm.edu) wrote:
  18336. : The CDROM entrepreneur and the software developer/supporters
  18337. : are faced with negotiating issues like those Frank has outlined
  18338. : (who gets how much from CDROM sales, how to recover support costs,
  18339. : whether focus on support or on development.)  Like it or not,
  18340. : those issues and the various contracts cost money.
  18341.  
  18342. : The bottom line is that with that additional cost threshold, it is more
  18343. : difficult to find an exploitable niche.
  18344.  
  18345. I don't think we need to worry about what would happen to the
  18346. PD/shareware CD-ROM vendors if "everything like Kermit" had similar
  18347. distribution policies.  There simply isn't that much stuff out there
  18348. that is high quality, free, complex enough to require substantial
  18349. support, and well supported, which is my definition of "like Kermit."
  18350.  
  18351. And even if there was, it's the developers' call to make.
  18352.  
  18353. --
  18354. Rick Matthews                     matthews@wfu.edu            Ham radio:
  18355. Wake Forest University            910-759-5340   (Voice)      WA4GSP
  18356. Winston-Salem, NC 27109-7507      910-759-6142   (FAX)
  18357.  
  18358.  
  18359. From news@columbia.edu Sun Oct  2 18:40:51 1994
  18360. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07457
  18361.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Oct 1994 15:22:41 -0400
  18362. Received: by apakabar.cc.columbia.edu id AA14738
  18363.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Oct 1994 15:22:40 -0400
  18364. Newsgroups: comp.protocols.kermit.misc
  18365. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!swrinde!elroy.jpl.nasa.gov!decwrl!netcomsv!ix.netcom.com!netcom.com!jhurwit
  18366. From: jhurwit@netcom.com (Jeffrey Hurwit)
  18367. Subject: Re: SLOW downloads
  18368. Message-Id: <jhurwitCx26K5.26E@netcom.com>
  18369. Organization: Organization?  What organization?
  18370. X-Newsreader: TIN [version 1.2 PL1]
  18371. References: <36mmu9$qj0@news.iastate.edu>
  18372. Date: Sun, 2 Oct 1994 18:40:51 GMT
  18373. Lines: 22
  18374. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  18375.  
  18376. In article <36mmu9$qj0@news.iastate.edu>, 
  18377. WhoWantsTaKnow (billmaly@iastate.edu) wrote:
  18378.  
  18379. >I use KERMIT as my primary(only) comm. software, mostly to tie into my
  18380. >University's computer(internet) and to download files. The problem I
  18381. >have, even when connecting at speeds of 9600 and above, my download time
  18382. >is so slow. It takes more than an hour to dowload a 1 meg file. Is this
  18383. >normal, and if not, what can be done to fix it? Thanks!
  18384.  
  18385.     o If the file is not already compressed, compress it.
  18386.     o Use (reasonably) long packets-- 1K-2K works well.
  18387.     o Use sliding windows (3-5 usually works well).
  18388.     o Unprefix as many control characters as you can (this requires
  18389.       experimentation, but in general you need to prefix OS-sensitive
  18390.       characters such as ^C (DOS and Unix), ^Z (Unix), and also ^M
  18391.       (CR), ^J (LF), ^A (start of packet), etc).
  18392.     o Get the latest Kermit software; older versions don't support
  18393.       these features.
  18394.     o Read the help files and spend some time experimenting to find out
  18395.       how to make and optimize these settings.
  18396.  
  18397.                         Jeff
  18398.  
  18399. From news@columbia.edu Sun Oct  2 19:12:33 1994
  18400. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07882
  18401.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Oct 1994 15:31:15 -0400
  18402. Received: by apakabar.cc.columbia.edu id AA15354
  18403.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Oct 1994 15:31:14 -0400
  18404. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!pipex!sunic!news.funet.fi!zippo.uwasa.fi!uwasa.fi!ts
  18405. From: ts@uwasa.fi (Timo Salmi)
  18406. Newsgroups: comp.protocols.kermit.misc
  18407. Subject: Re: Please explain Kermit's copyright
  18408. Date: 2 Oct 1994 19:12:33 GMT
  18409. Organization: University of Vaasa
  18410. Lines: 29
  18411. Message-Id: <36n0n1$4uo@zippo.uwasa.fi>
  18412. References: <36lpdt$ns4@cruella.ee.pdx.edu> <36ml93$1ja@apakabar.cc.columbia.edu>
  18413. Nntp-Posting-Host: uwasa.fi
  18414. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  18415.  
  18416. In article <36ml93$1ja@apakabar.cc.columbia.edu> fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  18417. :In article <36lpdt$ns4@cruella.ee.pdx.edu> rkwee@ee.pdx.edu (Roland Kwee)
  18418. :writes:
  18419. :> 3) In the case of the Simtel/Garbo CD's, did I understand it correcly
  18420. :> that Columbia told them that the distribution of Kermit required an
  18421. :> agreement with Columbia?
  18422. :>
  18423. :More to the point: the copyright notice says that, and the copyright
  18424. :notice was overlooked.
  18425.  
  18426. Exactly.  That is true.  And, as you know, as responsible net
  18427. citizens we remedied the situation at our end immediately when we
  18428. realized the conditions.  I am *NOT* objecting, but the sadly funny
  18429. part is that the more responsibly one acts the more often one gets
  18430. bitten.  I am not changing that, though.
  18431.  
  18432. :Who on this planet has suffered from how we conduct our business?  Now you
  18433. :want us to bring in the lawyers and accountants?
  18434.  
  18435. Frank, on the lighter side of things.  Do you realize that I *AM* an
  18436. accountant.  Perhaps it explains everything :-). 
  18437.  
  18438.    All the best, Timo
  18439.  
  18440. ..................................................................
  18441. Prof. Timo Salmi      Co-moderator of comp.archives.msdos.announce
  18442. Moderating at garbo.uwasa.fi anonymous FTP  archives  128.214.87.1
  18443. Faculty of Accounting & Industrial Management; University of Vaasa
  18444. Internet: ts@uwasa.fi   BBS +(358)-61-3170972; FIN-65101,  Finland
  18445.  
  18446. From news@columbia.edu Sun Oct  2 22:34:46 1994
  18447. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18457
  18448.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Oct 1994 18:45:44 -0400
  18449. Received: by apakabar.cc.columbia.edu id AA27729
  18450.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Oct 1994 18:45:42 -0400
  18451. Newsgroups: comp.protocols.kermit.misc
  18452. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!library.ucla.edu!agate!msuinfo!harbinger.cc.monash.edu.au!bunyip.cc.uq.oz.au!janus.cat.csiro.au!grl
  18453. From: grl@janus.cat.csiro.au (Greg Lehmann)
  18454. Subject: Re: vt220 mode in OS/2 ckermit 1.90 beta
  18455. Message-Id: <1994Oct2.223446.20598@janus.cat.csiro.au>
  18456. Organization: CSIRO Queensland Centre for Advanced Technologies
  18457. References: <1994Oct2.035230.5054@janus.cat.csiro.au> <36mi9l$s07@apakabar.cc.columbia.edu> <36mmc6$2ml@apakabar.cc.columbia.edu>
  18458. Date: Sun, 2 Oct 94 22:34:46 GMT
  18459. Lines: 81
  18460. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  18461.  
  18462. jaltman@watsun.cc.columbia.edu (Jeffrey Altman) writes:
  18463.  
  18464. >In article <36mi9l$s07@apakabar.cc.columbia.edu>,
  18465. >Frank da Cruz <fdc@fdc.cc.columbia.edu> wrote:
  18466. >>lIn article <1994Oct2.035230.5054@janus.cat.csiro.au>
  18467. >>grl@janus.cat.csiro.au (Greg Lehmann) writes:
  18468. >>
  18469. >>> I have read the manuals but am afraid the terminology does me in. I have
  18470. >>> a wordperfect document on a sun and want to edit it on my pc emulating a
  18471. >>> vt220. It appears that the character sets are stuffed up because the
  18472. >>> accents are not working properly. It was originally entered into wp on a
  18473. >>> vt220 and 1now I need to change a few things, without access to a real
  18474. >>> vt220 anymore.  The document is in french.
  18475. >>>
  18476. >>It all works, but C-Kermit is not a mind reader.  French can be represented
  18477. >>by at least the following character sets on the host:
  18478. >>
  18479. >>  ISO 646 French national version (7-bit)
  18480. >>  The VTxxx Canadian French "NRC" (7-bit)
  18481. >>  ISO 8859-1 Latin Alphabet 1 (8-bit)
  18482. >>  DEC Multinational Character set (8-bit)
  18483. >>  Data General International (8-bit)
  18484. >>  Hewlett-Packard Roman8 (8-bit)
  18485. >>  NeXT Multinational (8-bit)
  18486. >>
  18487. >> ... to name a few.  Kermit understands all of these, but you have to tell
  18488. >>it which one to use.  The comand is SET TERMINAL CHARACTER-SET.  Come to
  18489.  
  18490. >This part is correct.  Word Perfect exists on the Sun as a Sun executable.
  18491. >There was no file transfer.  So don't worry about the IBM code pages.
  18492.  
  18493. I did
  18494.  
  18495. SET TERM CHAR FRENCH
  18496. SET TERM BYTE 8
  18497.  
  18498. and checked with show term after starting kermit
  18499.  
  18500. >>Secondly, if the file is encoded in an 8-bit character you have to make
  18501. >>sure that you have opened up an 8-bit connection to the Sun.  Tell
  18502. >>C-Kermit to SET TERMINAL BYTESIZE 8.  You might also have to tell the Sun
  18503. >>to "stty pass8".  
  18504.  
  18505. >This is accurate.
  18506.  
  18507. on the sun (sunos 4.1.3) I did an (which was something I hadn't tried before)
  18508.  
  18509. stty pass8
  18510.  
  18511. >>You also have to be using an 8-bit clean editor on the
  18512. >>Sun, such as EMACS 19 or Mule.  EMACS 18 won't do it.  I don't know about
  18513. >>VI, but I doubt it.
  18514.  
  18515. >Again.  Don't worry about this.  You are using Word Perfect as your editor.
  18516.  
  18517. >>> The first thing I notice is
  18518. >>> that even the line graphics don't work, although they do when kermit is
  18519. >>> in vt102 mode. Does anyone know how to get it working?
  18520. >>>
  18521. >>There was a bug in OS/2 C-Kermit in some of the 5A(190) Alphas and Betas,
  18522. >>now fixed.  Line graphics work fine in the copy that you will find on
  18523. >>kermit.columbia.edu, directory kermit/test/bin, file cku190.zip.
  18524.  
  18525.  
  18526. I only got the last one from there about 1 week ago.
  18527. Still, after all these suggestions, the accents are wrong and there is no
  18528. line graphics box around the WordPerfect and Version 5.1 message at
  18529. startup. Instead there are J's and K's etc.
  18530.  
  18531.  
  18532. >Just set the character set to an appropriate one.  And us the Updates 
  18533. >command to view the CKERMIT.INF file.  Look up the Compose command which
  18534. >will allow you to easily enter all of the accented characters.
  18535.  
  18536.  
  18537. Thanks for the help so far but have you any other ideas on what to try?
  18538. -- 
  18539. Greg Lehmann,
  18540. CSIRO Division of Manufacturing Technology,   Telephone: +61 7 212 4537
  18541. P.O. Box 883, Kenmore, QLD 4069, Australia.   Facsimile: +61 7 212 4681
  18542. 2643 Moggill Rd., Pinjarra Hills, QLD 4069.   Internet:  grl@brb.dmt.csiro.au
  18543.  
  18544. From news@columbia.edu Sun Oct  2 23:11:38 1994
  18545. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19891
  18546.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Oct 1994 19:11:40 -0400
  18547. Received: by apakabar.cc.columbia.edu id AA29317
  18548.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Oct 1994 19:11:39 -0400
  18549. Path: news.columbia.edu!usenet
  18550. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  18551. Newsgroups: comp.protocols.kermit.misc
  18552. Subject: Re: vt220 mode in OS/2 ckermit 1.90 beta
  18553. Date: 2 Oct 1994 23:11:38 GMT
  18554. Organization: Columbia University
  18555. Lines: 22
  18556. Message-Id: <36nena$sk1@apakabar.cc.columbia.edu>
  18557. References: <1994Oct2.223446.20598@janus.cat.csiro.au>
  18558. Nntp-Posting-Host: fdc.cc.columbia.edu
  18559. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  18560.  
  18561. In article <1994Oct2.223446.20598@janus.cat.csiro.au> grl@janus.cat.csiro.au  
  18562. (Greg Lehmann) writes:
  18563. > I did:
  18564. > SET TERM CHAR FRENCH
  18565. > SET TERM BYTE 8
  18566. But how do you know the character-set is "french"?  How do you know it
  18567. is not Latin-1, or DEC-MCS, or one of the others?  Note that "french"
  18568. is a 7-bit set, so you don't need to SET TERM BYTE 8 in order to use it.
  18569. Ditto for "stty pass8" on the Sun.
  18570.  
  18571. Why don't we take this offline -- please send me a message containing:
  18572.  
  18573.  . The exact Kermit version, e.g. 5A(190) Beta.23 18 Sep 94.
  18574.  . The exact sequence of commands you issued.
  18575.  . A uuencoded piece of the file in question so I can figure out
  18576.    which character-set it is encoded in.
  18577.  
  18578. Thanks.
  18579.  
  18580. - Frank <fdc@columbia.edu>
  18581.  
  18582. From news@columbia.edu Sun Oct  2 23:54:37 1994
  18583. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21802
  18584.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Oct 1994 19:54:51 -0400
  18585. Received: by apakabar.cc.columbia.edu id AA02338
  18586.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Oct 1994 19:54:50 -0400
  18587. Path: news.columbia.edu!panix!ddsw1!redstone.interpath.net!mercury.interpath.net!not-for-mail
  18588. From: puff@mercury.interpath.net (Pat Fogarty)
  18589. Newsgroups: comp.protocols.kermit.misc
  18590. Subject: Re: Columbia University's Kermit copyright
  18591. Date: 2 Oct 1994 19:54:37 -0400
  18592. Organization: Interpath -- Public Access UNIX for North Carolina
  18593. Lines: 15
  18594. Message-Id: <36nh7t$gbj@mercury.interpath.net>
  18595. References: <9409300557.AA12036@simtel.coast.net> <36h490$9hc@apakabar.cc.columbia.edu> <36kaa4$lmm@knot.queensu.ca>
  18596. Nntp-Posting-Host: mercury.interpath.net
  18597. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  18598.  
  18599. It seems to me that if the principals in this brouhaha can agree to 
  18600. respect each other's positions, all the rest of us should do likewise. 
  18601.  
  18602. As far as folks without ftp access, there's usually a free BBS around 
  18603. with it. Or email ftp. Or break down and buy a disk from Columbia. It's 
  18604. not like there's a new version out three times a year.
  18605.  
  18606.  
  18607. My .02; you mileage may vary....
  18608.  
  18609.  
  18610. Pat
  18611.  
  18612. -- 
  18613. Pat Fogarty    puff@mercury.interpath.net    pff@shell.portal.com
  18614.  
  18615. From news@columbia.edu Mon Oct  3 02:52:31 1994
  18616. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00690
  18617.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Oct 1994 23:12:34 -0400
  18618. Received: by apakabar.cc.columbia.edu id AA15252
  18619.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Oct 1994 23:12:33 -0400
  18620. Path: news.columbia.edu!panix!MathWorks.Com!news.kei.com!ub!ns.potsdam.edu!news.potsdam.edu!nelson
  18621. From: nelson@crynwr.crynwr.com (Russell Nelson)
  18622. Newsgroups: comp.protocols.kermit.misc
  18623. Subject: Re: Which ethernet card for MS-Kermit?
  18624. Date: 03 Oct 1994 02:52:31 GMT
  18625. Organization: Crynwr Software
  18626. Lines: 19
  18627. Message-Id: <NELSON.94Oct2225231@crynwr.crynwr.com>
  18628. References: <36el10$5hq@xmission.xmission.com>
  18629. Nntp-Posting-Host: nh2.potsdam.edu
  18630. In-Reply-To: fozz@xmission.com's message of 29 Sep 1994 09:04:00 -0600
  18631. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  18632.  
  18633. In article <36el10$5hq@xmission.xmission.com> fozz@xmission.com (Fozziliny Moo) writes:
  18634.  
  18635.    Is an NE2000 compatible card going to work for me? Then do I just
  18636.    load IPX? Or do I use a different driver software?  correctly, upon
  18637.    knowing the software interrupt of the device driver I can just go
  18638.    into MS-Kermit and say SET TCP/IP PACKET-DRIVER-INTERRUPT \xXX.
  18639.  
  18640. It's not even that hard.  Just install a packet driver.  Put it at
  18641. 0x7e (I've never heard any complaints about conflicts at that
  18642. interrupt).  So for the NE2000, you'd say "ne2000 0x7e 3 0x300".  Then
  18643. set Kermit up to use TCP/IP (and you don't even need the above command
  18644. -- it's only used if you have multiple packet drivers), and whooosh,
  18645. you're up.
  18646.  
  18647. --
  18648. -russ <nelson@crynwr.com>    http://www.crynwr.com/crynwr/nelson.html
  18649. Crynwr Software   | Crynwr Software sells packet driver support | ask4 PGP key
  18650. 11 Grant St.      | +1 315 268 1925 (9201 FAX)  | What is thee doing about it?
  18651. Potsdam, NY 13676 | LPF member - ask me about the harm software patents do.
  18652.  
  18653. From news@columbia.edu Mon Oct  3 08:04:37 1994
  18654. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14438
  18655.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 3 Oct 1994 04:53:05 -0400
  18656. Received: by apakabar.cc.columbia.edu id AA00515
  18657.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 3 Oct 1994 04:53:04 -0400
  18658. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!EU.net!sun4nl!philapd!apdnews!taren2la.apd.dec.com!groot
  18659. From: groot@apd.dec.com (Henk de Groot)
  18660. Newsgroups: comp.protocols.kermit.misc
  18661. Subject: Re: Please explain Kermit's copyright
  18662. Message-Id: <groot.781171477@taren2la.apd.dec.com>
  18663. Date: 3 Oct 94 08:04:37 GMT
  18664. References: <36lpdt$ns4@cruella.ee.pdx.edu> <36ml93$1ja@apakabar.cc.columbia.edu>
  18665. Sender: news@apd.dec.com
  18666. Reply-To: groot@apd.dec.com (Henk de Groot)
  18667. Lines: 58
  18668. X-Disclaimer: This opinion is mine alone
  18669. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  18670.  
  18671. In <36ml93$1ja@apakabar.cc.columbia.edu> fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  18672. > . Columbia gets no income.
  18673. > . Real Kermit software loses "market share".
  18674. > . The Kermit implementations in many of these programs give
  18675. >   Kermit a bad name.
  18676. > . These people *are* making money from Kermit -- Look at all the
  18677. >   postings on the many newsgroups from people talking about using
  18678. >   Kermit in <commercial-or-shareware-package-of-your-choice>.  Who
  18679. >   is to say the presence of the word "Kermit" on their package
  18680. >   has not affected their sales?
  18681. > . We (Columbia) get countless tech support questions from users of
  18682. >   these products.  Some of the vendors even go so far as to tell
  18683. >   their customers: "Kermit problem? Call Columbia."
  18684.  
  18685. Let I start with saying that I don't understand this argument. Frank
  18686. stated that they have to distribute copies to het some income. Still he
  18687. allows the software on FTP and also maintains the claim that the software is
  18688. free, also fine. CDROM whould make the distribution too broad without
  18689. generating income; also fine.
  18690.  
  18691. Now if I get Kermit from the FTP archive at Columbia and put it on a local
  18692. BBS (which is permitted as far as I understood the copyright). Every copy
  18693. from the BBS doesn't generate any income. This is also the case if I give
  18694. a copy to a friend (and he will pass a copy to his friends because kermit is
  18695. great!). The distribution as it is now is a pyramid sceme, generating a lot
  18696. of copies without income for Columbia.
  18697.  
  18698. Frank explicity prohibited distribution on CDROM with the argument that it
  18699. will not generate income. If that is the goal then excluding CDROM is not
  18700. enough to accomplish that. The only way to limit copying without income is:
  18701.  
  18702. a) You either get it directly from an FTP site on internet.
  18703. b) Or you get it by mail order from Columbia.
  18704.  
  18705. So no more copying for friends or distribution through BBSses - this will
  18706. surely limit the number of copies (and will make it almost impossible in
  18707. Europe to get it unless you are connected to Internet or know exactly where
  18708. to write to to order it).
  18709.  
  18710. But the argument I hear is that the distribution policy is not changed so you
  18711. will allow the generation of copies without income as long as it is not
  18712. through CDROM - this is the part I don't understand. Do CDROMs contribute so
  18713. much to the distribution (and use!) of kermit that it is worthwhile to make
  18714. an exception (and make it difficult for us all)? I assume you'll say yes but
  18715. frankly I have my doubts.
  18716.  
  18717. All I can say is that I came to know kermit trough Garbo; Timo has a lot of
  18718. tools for kermit on his system (some of which he created himself) and that's
  18719. what caught my attention. We are now considering use of Kermit in a large
  18720. project (which we will negotiate with Columbia and pay for of couse) so maybe
  18721. the copy of your software on Garbo will pay off in the end.
  18722.  
  18723. Henk.
  18724.  
  18725. --
  18726.   /   / de Groot  Dep: ALD2          | E-Mail: groot@apd.dec.com
  18727.  /---/ __  __  /  Tel: +31 55 432104 | Corp: Digital Equipment Corporation
  18728. /   / (-_ / / /(  Loc: FP-B09        | Site: Apeldoorn, The Netherlands
  18729.  
  18730. From news@columbia.edu Mon Oct  3 09:40:43 1994
  18731. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16167
  18732.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 3 Oct 1994 05:51:24 -0400
  18733. Received: by apakabar.cc.columbia.edu id AA02580
  18734.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 3 Oct 1994 05:51:23 -0400
  18735. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!math.ohio-state.edu!jussieu.fr!univ-lyon1.fr!swidir.switch.ch!newsfeed.ACO.net!Austria.EU.net!EU.net!uunet!tymix.Tymnet.COM!tardis.Tymnet.COM!tardis.Tymnet.COM!not-for-mail
  18736. From: jms@tardis.Tymnet.COM (Joe Smith)
  18737. Newsgroups: comp.protocols.kermit.misc
  18738. Subject: Re: kermit packets past 9024 barrier??
  18739. Date: 3 Oct 1994 02:40:43 -0700
  18740. Organization: MCI Data Services, TYMNET Global Network Operations
  18741. Lines: 29
  18742. Message-Id: <36ojir$t34@tardis.Tymnet.COM>
  18743. References: <367e23$d01@news.iastate.edu> <1994Sep26.172014.27900@cc.usu.edu>
  18744. Nntp-Posting-Host: tardis.tymnet.com
  18745. Summary: 9024 divided by number of windows?
  18746. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  18747.  
  18748. In article <1994Sep26.172014.27900@cc.usu.edu> jrd@cc.usu.edu (Joe Doupnik) writes:
  18749. >> Any way to increase packet sizes past 9024??
  18750. >    Read up on Columbia Kermits, discover sliding windows. 31 window
  18751. >slots times 9KB per slot/packet = 279KB of stuff to be held pending ack.
  18752.  
  18753. Is that something new with version 3.14 or 5A(190)?
  18754.  
  18755. The versions of Kermit I've been using limit the buffer to 9024 bytes
  18756. total, to be divided between the windows.
  18757.  
  18758.     tardis% kermit
  18759.     C-Kermit 5A(189), 30 June 93, SunOS 4.1 (BSD)
  18760.     Type ? or HELP for help
  18761.     C-Kermit>set window 31
  18762.      Adjusting receive packet-length to 286 for 31 window slots
  18763.     C-Kermit>quit
  18764.  
  18765. On a related subject, I have found that when going through TYMNET, I can
  18766. get full speed by setting the number of window slots to anything above 1.
  18767. In particular, when downloading files from a Sun UNIX host to my Amiga
  18768. at home, SET WINDOW 2 is sufficient to keep the receive light flashing
  18769. continuously.
  18770.  
  18771.     -Joe
  18772. -- 
  18773. Joe Smith        MCI Data Services, TYMNET Global Network Operations (Vnet 854)
  18774. <jms@tymnet.com>    2560 N 1st St, MS-F2, San Jose, CA 95131     (408)922-6220
  18775. CA license plate: "POPJ P,"  36-bits forever! (4 Tymshare PDP-10s still up!)
  18776. Humorous disclaimer: "My Amiga 3000 speaks for me."
  18777.  
  18778. From news@columbia.edu Mon Oct  3 12:08:53 1994
  18779. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18475
  18780.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 3 Oct 1994 08:08:55 -0400
  18781. Received: by apakabar.cc.columbia.edu id AA07897
  18782.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 3 Oct 1994 08:08:54 -0400
  18783. Path: news.columbia.edu!usenet
  18784. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  18785. Newsgroups: comp.protocols.kermit.misc
  18786. Subject: Re: Which ethernet card for MS-Kermit?
  18787. Date: 3 Oct 1994 12:08:53 GMT
  18788. Organization: Columbia University
  18789. Lines: 42
  18790. Message-Id: <36os8l$7mn@apakabar.cc.columbia.edu>
  18791. References: <NELSON.94Oct2225231@crynwr.crynwr.com>
  18792. Nntp-Posting-Host: fdc.cc.columbia.edu
  18793. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  18794.  
  18795. In article <NELSON.94Oct2225231@crynwr.crynwr.com> nelson@crynwr.crynwr.com  
  18796. (Russell Nelson) writes:
  18797. > In article <36el10$5hq@xmission.xmission.com> fozz@xmission.com (Fozziliny  
  18798. Moo) writes:
  18799. >    Is an NE2000 compatible card going to work for me? Then do I just
  18800. >    load IPX? Or do I use a different driver software?  correctly, upon
  18801. >    knowing the software interrupt of the device driver I can just go
  18802. >    into MS-Kermit and say SET TCP/IP PACKET-DRIVER-INTERRUPT \xXX.
  18803. > It's not even that hard.  Just install a packet driver.  Put it at
  18804. > 0x7e (I've never heard any complaints about conflicts at that
  18805. > interrupt).  So for the NE2000, you'd say "ne2000 0x7e 3 0x300".  Then
  18806. > set Kermit up to use TCP/IP (and you don't even need the above command
  18807. > -- it's only used if you have multiple packet drivers), and whooosh,
  18808. > you're up.
  18809. >
  18810. Thanks, Russ.
  18811.  
  18812. And as Joe pointed, we are absolutely not in the business of recommending
  18813. hardware.  But...
  18814.  
  18815. It migh be a useful exercise if those of you who are using MS-DOS Kermit's
  18816. built-in TCP/IP stack over a network board (not a serial port thru SLIP)
  18817. drop a note to kermit@columbia.edu listing:
  18818.  
  18819. PC hardware and OS and OS version
  18820. Network board make and model
  18821. Netword board driver(s) and version(s)
  18822.  
  18823. so we can compile a list of combinations that are known to work.  While
  18824. this list will not comprise any kind of recommendation, it will still be
  18825. useful.
  18826.  
  18827. And of course if you have a board and/or driver that does not work with
  18828. Kermit, let us know too.  We'll try to help you get it going, and if the
  18829. combination is hopeless (we don't know of any like this), that's useful
  18830. information too.
  18831.  
  18832. Thanks.
  18833.  
  18834. - Frank
  18835.  
  18836. From news@columbia.edu Mon Oct  3 12:15:47 1994
  18837. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18746
  18838.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 3 Oct 1994 08:15:51 -0400
  18839. Received: by apakabar.cc.columbia.edu id AA10929
  18840.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 3 Oct 1994 08:15:49 -0400
  18841. Path: news.columbia.edu!usenet
  18842. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  18843. Newsgroups: comp.protocols.kermit.misc
  18844. Subject: Re: kermit packets past 9024 barrier??
  18845. Date: 3 Oct 1994 12:15:47 GMT
  18846. Organization: Columbia University
  18847. Lines: 24
  18848. Message-Id: <36oslj$ako@apakabar.cc.columbia.edu>
  18849. References: <36ojir$t34@tardis.Tymnet.COM>
  18850. Nntp-Posting-Host: fdc.cc.columbia.edu
  18851. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  18852.  
  18853. In article <36ojir$t34@tardis.Tymnet.COM> jms@tardis.Tymnet.COM (Joe Smith)  
  18854. writes:
  18855. > In article <1994Sep26.172014.27900@cc.usu.edu> jrd@cc.usu.edu (Joe Doupnik)  
  18856. writes:
  18857. > >> Any way to increase packet sizes past 9024??
  18858. > >Read up on Columbia Kermits, discover sliding windows. 31 window
  18859. > >slots times 9KB per slot/packet = 279KB of stuff to be held pending ack.
  18860. > Is that something new with version 3.14 or 5A(190)?
  18861. > The versions of Kermit I've been using limit the buffer to 9024 bytes
  18862. > total, to be divided between the windows.
  18863. Not at all.  As Joe says, you can have 31 x 9024 packets in the pipe at
  18864. once.  In the new versions (3.14 and 5A(190)), 32 x 9024.
  18865.  
  18866. Obviously, you need the memory to hold all these packet buffers.
  18867. 32 x 9024 = 288768 bytes.  In MS-DOS Kermit, that means free physical
  18868. conventional memory.  (Yes, we considered putting packet buffers "high",
  18869. but it turns out to be a bad idea for performance reasons.)
  18870.  
  18871. In C-Kermit, you might have to give a SET BUFFERS command first, to allocate
  18872. the buffer memory.  This might seem silly to you, but there is a good reason
  18873. for it -- see the documentation.
  18874.  
  18875. - Frank
  18876.  
  18877. From news@columbia.edu Mon Oct  3 13:15:58 1994
  18878. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22604
  18879.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 3 Oct 1994 09:16:04 -0400
  18880. Received: by apakabar.cc.columbia.edu id AA23944
  18881.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 3 Oct 1994 09:16:03 -0400
  18882. Path: news.columbia.edu!usenet
  18883. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  18884. Newsgroups: comp.protocols.kermit.misc
  18885. Subject: Re: Kermit for DOS/V (Kanji Terminal Emulation)
  18886. Date: 3 Oct 1994 13:15:58 GMT
  18887. Organization: Columbia University
  18888. Lines: 31
  18889. Message-Id: <36p06e$nbp@apakabar.cc.columbia.edu>
  18890. Nntp-Posting-Host: fdc.cc.columbia.edu
  18891. Keywords: Kanji
  18892. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  18893.  
  18894. On 20 Sep 1994, jp1ek@sunc.sheffield.ac.uk (Earl H. Kinmonth) wrote:
  18895. > Does anyone know the current state of kermit for DOS/V (the
  18896. > IBM/Microsoft dual mode version for Japanese/English)?  I have a 3.13
  18897. > beta from a site in Japan, but it has one bug that renders it almost
  18898. > unusable.  The code conversion does not work properly for Old-Jis
  18899. > coding as used by Japan's largest commercial database vendor, Nikkei
  18900. > Telecom.
  18901. >
  18902. I don't know about the 3.13 beta you have -- Kanji terminal emulation for
  18903. DOS/V might or might not be in it.  It will be in version 3.14 when it is
  18904. announced (hopefully very soon).  I sent your question to the person who
  18905. wrote the Kanji terminal support for MS-DOS Kermit and received this
  18906. response:
  18907.  
  18908. "Sorry for the delay.
  18909.  
  18910. "I don't know about the Nikkei Data Base, and unfortunately, I have
  18911. no friends who are using that DataBase.
  18912.  
  18913. "However, I got another report from someone who is using the Nikkei
  18914. Telecom DataBase, and he pointed out that Nikkei Telecom uses an
  18915. improper ESC sequence to designate the JIS X 201 character set.  This
  18916. is a well-known wrong sequence which was implemented in very very old
  18917. software, and the sequence is 'ESC ( H' which should be used to
  18918. designate the Swedish character set."
  18919.  
  18920. So it looks like the right thing to do would be to get Nikkei Telecom
  18921. to fix their character-set designating escape sequence.  If this is not
  18922. the correct answer, let me know.
  18923.  
  18924. - Frank
  18925.  
  18926. From news@columbia.edu Mon Oct  3 13:14:37 1994
  18927. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23186
  18928.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 3 Oct 1994 09:21:27 -0400
  18929. Received: by apakabar.cc.columbia.edu id AA24245
  18930.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 3 Oct 1994 09:21:26 -0400
  18931. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!pipex!lyra.csx.cam.ac.uk!warwick!bham!news!B.A.McCauley
  18932. From: B.A.McCauley@bham.ac.uk
  18933. Newsgroups: comp.protocols.kermit.misc
  18934. Subject: Transparent kermit servers
  18935. Followup-To: comp.protocols.kermit.misc
  18936. Date: 03 Oct 1994 13:14:37 GMT
  18937. Organization: The University of Birmingham, UK.
  18938. Lines: 17
  18939. Message-Id: <B.A.MCCAULEY.94Oct3141437@wcl-l.bham.ac.uk>
  18940. Nntp-Posting-Host: wcl-l.bham.ac.uk
  18941. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  18942.  
  18943. Why is it that I have to issue local kermit commands as well as remote
  18944. ones. Would it not be possible to have the local copy of Kermit simply
  18945. respond to the start of packet characters and behave like a server at
  18946. all times?
  18947.  
  18948. Similarly would it be possible (on suitable OSs) to have the kermit
  18949. server program pass all non-kermit characters to another process via a
  18950. virtual terminal thus allowing the use of a mixture of Kermit server
  18951. commands and direct host OS interaction without the need to start the
  18952. and stop the remote server?
  18953. --
  18954.     \\   ( )   No Bullshit!   | Email: B.A.McCauley@bham.ac.uk
  18955.  .  _\\__[oo       from       | Phones: +44 121 471 3789 (home)
  18956. .__/  \\ /\@  /~)  /~[   /\/[ |  +44 121 627 2171 (voice) 2175 (fax)
  18957. .  l___\\    /~~) /~~[  /   [ | PGP-fp: D7 03 2A 4B D8 3A 05 37
  18958.  # ll  l\\  ~~~~ ~   ~ ~    ~ |         A1 93 FE EA BE E3 2A 91
  18959. ###LL  LL\\ (Brian McCauley)  | More: finger bam@wcl-rs.bham.ac.uk
  18960.  
  18961. From news@columbia.edu Mon Oct  3 13:21:55 1994
  18962. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23881
  18963.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 3 Oct 1994 09:30:23 -0400
  18964. Received: by apakabar.cc.columbia.edu id AA24951
  18965.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 3 Oct 1994 09:30:22 -0400
  18966. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!pipex!lyra.csx.cam.ac.uk!warwick!bham!news!B.A.McCauley
  18967. From: B.A.McCauley@bham.ac.uk
  18968. Newsgroups: comp.protocols.kermit.misc
  18969. Subject: Undocumented kermit server commands?
  18970. Followup-To: comp.protocols.kermit.misc
  18971. Date: 03 Oct 1994 13:21:55 GMT
  18972. Organization: The University of Birmingham, UK.
  18973. Lines: 22
  18974. Message-Id: <B.A.MCCAULEY.94Oct3142155@wcl-l.bham.ac.uk>
  18975. Nntp-Posting-Host: wcl-l.bham.ac.uk
  18976. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  18977.  
  18978. I've looked in "Kermit, A file transfer protocol" but I cannot find
  18979. docuemntation of what the "REMOTE SET" command sends to the server.
  18980.  
  18981. It appears to send a kermit generic command (packet type "G") with a
  18982. command "S".
  18983.  
  18984. I have assumed that this is equivlent to a command "V", subcommand
  18985. "S". Am I right?
  18986.  
  18987. Is there a table anywhere that list the standard variable names
  18988. (numbers?).
  18989.  
  18990. I would go look in the source myself but I read somewhere that
  18991. because I'm incorporating support for kermit protocols into another
  18992. program I'm not allowed to even *look at* the sources!
  18993. --
  18994.     \\   ( )   No Bullshit!   | Email: B.A.McCauley@bham.ac.uk
  18995.  .  _\\__[oo       from       | Phones: +44 121 471 3789 (home)
  18996. .__/  \\ /\@  /~)  /~[   /\/[ |  +44 121 627 2171 (voice) 2175 (fax)
  18997. .  l___\\    /~~) /~~[  /   [ | PGP-fp: D7 03 2A 4B D8 3A 05 37
  18998.  # ll  l\\  ~~~~ ~   ~ ~    ~ |         A1 93 FE EA BE E3 2A 91
  18999. ###LL  LL\\ (Brian McCauley)  | More: finger bam@wcl-rs.bham.ac.uk
  19000.  
  19001. From news@columbia.edu Mon Oct  3 13:48:20 1994
  19002. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24772
  19003.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 3 Oct 1994 09:48:22 -0400
  19004. Received: by apakabar.cc.columbia.edu id AA26185
  19005.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 3 Oct 1994 09:48:21 -0400
  19006. Path: news.columbia.edu!usenet
  19007. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  19008. Newsgroups: comp.protocols.kermit.misc
  19009. Subject: Re: Transparent kermit servers
  19010. Date: 3 Oct 1994 13:48:20 GMT
  19011. Organization: Columbia University
  19012. Lines: 29
  19013. Message-Id: <36p234$pi7@apakabar.cc.columbia.edu>
  19014. References: <B.A.MCCAULEY.94Oct3141437@wcl-l.bham.ac.uk>
  19015. Nntp-Posting-Host: fdc.cc.columbia.edu
  19016. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  19017.  
  19018. In article <B.A.MCCAULEY.94Oct3141437@wcl-l.bham.ac.uk>  
  19019. B.A.McCauley@bham.ac.uk writes:
  19020. > Why is it that I have to issue local kermit commands as well as remote
  19021. > ones. Would it not be possible to have the local copy of Kermit simply
  19022. > respond to the start of packet characters and behave like a server at
  19023. > all times?
  19024. >
  19025. Yes, it should be.  Read the release notes (.upd files) for the forthcoming
  19026. new versions of MS-DOS Kermit, C-Kermit, and IBM mainframe Kermit.
  19027.  
  19028. > Similarly would it be possible (on suitable OSs) to have the kermit
  19029. > server program pass all non-kermit characters to another process via a
  19030. > virtual terminal thus allowing the use of a mixture of Kermit server
  19031. > commands and direct host OS interaction without the need to start the
  19032. > and stop the remote server?
  19033. >
  19034. How does the server tell the difference between non-Kermit characters
  19035. and a trashed Kermit packet?
  19036.  
  19037. - Frank
  19038. x
  19039. x
  19040. x
  19041. x
  19042. x
  19043. x
  19044. x
  19045. x
  19046. x
  19047.  
  19048. From news@columbia.edu Mon Oct  3 13:50:46 1994
  19049. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24911
  19050.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 3 Oct 1994 09:50:48 -0400
  19051. Received: by apakabar.cc.columbia.edu id AA26321
  19052.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 3 Oct 1994 09:50:47 -0400
  19053. Path: news.columbia.edu!usenet
  19054. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  19055. Newsgroups: comp.protocols.kermit.misc
  19056. Subject: Re: Undocumented kermit server commands?
  19057. Date: 3 Oct 1994 13:50:46 GMT
  19058. Organization: Columbia University
  19059. Lines: 12
  19060. Message-Id: <36p27m$pmf@apakabar.cc.columbia.edu>
  19061. References: <B.A.MCCAULEY.94Oct3142155@wcl-l.bham.ac.uk>
  19062. Nntp-Posting-Host: fdc.cc.columbia.edu
  19063. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  19064.  
  19065. In article <B.A.MCCAULEY.94Oct3142155@wcl-l.bham.ac.uk>  
  19066. B.A.McCauley@bham.ac.uk writes:
  19067. > I've looked in "Kermit, A file transfer protocol" but I cannot find
  19068. > docuemntation of what the "REMOTE SET" command sends to the server.
  19069. For now, it's still in Info-Kermit Digest V 11 # 1, 4 Jan 1990,
  19070. available on kermit.columbia.edu, directory kermit/e, file mail.90a.
  19071.  
  19072. - Frank
  19073. x
  19074. x
  19075.  
  19076.  
  19077. From news@columbia.edu Mon Oct  3 13:48:47 1994
  19078. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28961
  19079.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 3 Oct 1994 10:48:00 -0400
  19080. Received: by apakabar.cc.columbia.edu id AA00929
  19081.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 3 Oct 1994 10:47:58 -0400
  19082. Newsgroups: comp.protocols.kermit.misc
  19083. Path: news.columbia.edu!spcuna!ritz!kudut
  19084. From: kudut@ritz.mordor.com (Ken Udut)
  19085. Subject: Re: Please explain Kermit's copyright
  19086. References: <36lpdt$ns4@cruella.ee.pdx.edu> <36ml93$1ja@apakabar.cc.columbia.edu>
  19087. Organization: Mordor International BBS - Jersey City, NJ
  19088. Date: Mon, 3 Oct 1994 13:48:47 GMT
  19089. Message-Id: <Cx3npB.74n@ritz.mordor.com>
  19090. Lines: 30
  19091. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  19092.  
  19093. Dear Frank,
  19094.  
  19095.     I've been a quiet viewer of this discussion.
  19096.  
  19097.     You have my upmost respect and admiration for Kermit, for making 
  19098. yourself available (which took more guts than I can ever imagine having), 
  19099. for sticking to your guns.
  19100.  
  19101.     I'm not much of a prayer but you have my prayers, Frank.  Kermit 
  19102. has saved me more times than I can count.  Whenever my hard drive decides 
  19103. not to work, and I need to get online to finish up a project (or to read 
  19104. news, answer mail), I pop in my emergency bootup-Kermit diskette.  Nothing
  19105. else is as reliable as Kermit.  Nothing else is as sturdy, dependable and 
  19106. nearly as marvelous as Kermit.
  19107.  
  19108. I've advocated its use by local BBS sysops so that they can impliment the 
  19109. "real" Kermit.  Most of them have purchased the manuals from the local 
  19110. Barnes & Noble so that they could make the most out of it.
  19111.  
  19112. And seeing the dedication of Frank to following his ideals, I will 
  19113. finally (finally!) purchase the documentation, as I'm at the point where 
  19114. the things I want to do I simply *can't* do without knowing more of what 
  19115. I'm doing :-)
  19116.  
  19117. You have my blessings, Frank, and the Kermit development team.
  19118.  
  19119.  
  19120. Ken
  19121. kudut@ritz.mordor.com
  19122. Listowner of Y-RIGHTS@SJUVM.BITNET - Discussion on the rights of kids/teens
  19123.  
  19124. From news@columbia.edu Mon Oct  3 13:32:32 1994
  19125. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04063
  19126.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 3 Oct 1994 11:41:57 -0400
  19127. Received: by apakabar.cc.columbia.edu id AA05445
  19128.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 3 Oct 1994 11:41:51 -0400
  19129. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!EU.net!news.eunet.fi!KremlSun!kiae!relcom!newsserv
  19130. From: Nicolay V. Danilov <isdltd@isdltd.msk.ru>
  19131. Newsgroups: comp.protocols.kermit.misc
  19132. Subject: Where can I get SUPER KERMIT protocol description ?
  19133. Date: Mon, 03 Oct 94 17:32:32 +0400
  19134. Distribution: world
  19135. Organization: Private Person
  19136. Message-Id: <ABmV0akO23@isdltd.msk.ru>
  19137. Sender: news-service@kiae.su
  19138. Reply-To: isdltd@isdltd.msk.ru
  19139. X-Return-Path: kiae!isdltd!isdltd.msk.ru!isdltd
  19140. Lines: 4
  19141. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  19142.  
  19143.         I need a SUPER KERMIT protocol, used in Sprint Networks
  19144. desctiption and/or C source code.
  19145.  
  19146.  
  19147.  
  19148. From news@columbia.edu Mon Oct  3 16:25:08 1994
  19149. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08771
  19150.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 3 Oct 1994 12:40:09 -0400
  19151. Received: by apakabar.cc.columbia.edu id AA10484
  19152.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 3 Oct 1994 12:40:06 -0400
  19153. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!swiss.ans.net!prodigy.com!prodigy.com!not-for-mail
  19154. From: davidsen@tmr.com
  19155. Newsgroups: comp.protocols.kermit.misc
  19156. Subject: Re: FTP Mirrors and CDROMs - again
  19157. Date: 3 Oct 1994 12:25:08 -0400
  19158. Organization: Prodigy Services
  19159. Lines: 28
  19160. Sender: davidsen@usenety1.news.prodigy.com
  19161. Message-Id: <36pb94$cbf@usenety1.news.prodigy.com>
  19162. References: <36hv50$kgn@news.icaen.uiowa.edu> <36i5s7$90e@apakabar.cc.columbia.edu> <9410010116.AA24289@SimTel.Coast.NET> <CwzKJs.Fx7@news.cern.ch>
  19163. Reply-To: davidsen@usenety1.news.prodigy.com
  19164. Nntp-Posting-Host: loopback.news.prodigy.com
  19165. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  19166.  
  19167. In article <CwzKJs.Fx7@news.cern.ch>,
  19168. Sergio Fanchiotti <fanchiot@surya1.cern.ch> wrote:
  19169.  
  19170. :Keith & Frank,
  19171. :
  19172. :
  19173. :    Well, as someone looking at this silly discussion for some time
  19174. :    it seems that the time has come to get to work on a GPL'd version
  19175. :    of a portable data transfer program like Kermit (As Les said before).
  19176.  
  19177. Actually a terminal emulator which could easily be expanded to cover a
  19178. number of protocols would be nice, just as ghostscript can include
  19179. target formats. I think the obvious choices are Kermit, Xmodem (for
  19180. historical reasons), and zmodem.
  19181.  
  19182. The question is can someone come up with a better file transfer protocol
  19183. and include that, thus eventually driving out the lesser protocols
  19184. eventually? As I see it:
  19185.  1. fast, performance like zmodem.
  19186.  2. ability to continue if connections are lost (again like zmodem).
  19187.  3. bidirectional, to use links better.
  19188.  
  19189. Maybe we're reinventing IP? Anyway, I think the time has come, now that
  19190. the distribution of Kermit has been officially limited.
  19191. -- 
  19192. Speaking *from* but never *for* Prodigy
  19193.     "Pain builds moral fiber"  -my dad
  19194.     "Pain hurts"  -me
  19195.  
  19196. From news@columbia.edu Mon Oct  3 16:36:03 1994
  19197. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11363
  19198.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 3 Oct 1994 13:15:36 -0400
  19199. Received: by apakabar.cc.columbia.edu id AA13630
  19200.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 3 Oct 1994 13:15:35 -0400
  19201. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!swiss.ans.net!prodigy.com!prodigy.com!not-for-mail
  19202. From: davidsen@usenety1.news.prodigy.com (Bill Davidsen)
  19203. Newsgroups: comp.protocols.kermit.misc
  19204. Subject: Re: Columbia University's Kermit copyright
  19205. Date: 3 Oct 1994 12:36:03 -0400
  19206. Organization: Prodigy Services
  19207. Lines: 26
  19208. Message-Id: <36pbtj$cc0@usenety1.news.prodigy.com>
  19209. References: <9409300557.AA12036@simtel.coast.net> <36h490$9hc@apakabar.cc.columbia.edu>
  19210. Nntp-Posting-Host: loopback.news.prodigy.com
  19211. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  19212.  
  19213. In article <36h490$9hc@apakabar.cc.columbia.edu>,
  19214. Frank da Cruz <fdc@fdc.cc.columbia.edu> wrote:
  19215. :In article <9409300557.AA12036@simtel.coast.net> w8sdz@SimTel.Coast.NET  
  19216.  
  19217. :As somebody pointed out yesterday, something *is* wrong with this picture
  19218. :if this debate must be carried out over and over again.  Maybe what is
  19219. :wrong is that we -- silly us -- are still basically trying to provide a
  19220. :public service: FREE SOFTWARE, of high quality, with solid technical support
  19221. :behind it, all free.  All we ask in return is that at enough of you purchase
  19222. :the accompanying manuals to keep us afloat, and that you stop haranging us
  19223. :for our commercial-redistribution policies and let us get on with our work
  19224. :on your behalf.  Maybe it will turn out that we really do have to change
  19225. :the way we get income; I hope not.
  19226.  
  19227. I totally fail to see how the funding of Kermit is diferent from the way
  19228. shareware works. You want people to use the software and buy the manual.
  19229. SO DO WE! But the idea that more people will buy the manuals if fewer
  19230. people have the software completely eludes me.
  19231.  
  19232. My impression is that people in this group are trying VERY hard to keep
  19233. you from shooting yourself in the foot, and all you see is a profit
  19234. motive.
  19235. -- 
  19236. Speaking *from* but never *for* Prodigy
  19237.     "Pain builds moral fiber"  -my dad
  19238.     "Pain hurts"  -me
  19239.  
  19240. From news@columbia.edu Mon Oct  3 12:41:26 1994
  19241. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14032
  19242.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 3 Oct 1994 13:53:42 -0400
  19243. Received: by apakabar.cc.columbia.edu id AA16703
  19244.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 3 Oct 1994 13:53:41 -0400
  19245. Path: news.columbia.edu!panix!zip.eecs.umich.edu!newsxfer.itd.umich.edu!nntp.cs.ubc.ca!alberta!quartz.ucs.ualberta.ca!tribune.usask.ca!canopus.cc.umanitoba.ca!rahardj
  19246. From: rahardj@cc.umanitoba.ca (Budi Rahardjo)
  19247. Newsgroups: comp.protocols.kermit.misc
  19248. Subject: GNU implementation of kermit :-)
  19249. Date: 3 Oct 1994 12:41:26 GMT
  19250. Organization: The University of Manitoba
  19251. Lines: 9
  19252. Message-Id: <36ou5m$5ou@canopus.cc.umanitoba.ca>
  19253. Nntp-Posting-Host: antares.cc.umanitoba.ca
  19254. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  19255.  
  19256. Re: the thread on compyrights/policies etc.
  19257. Maybe what we need is a GNU implementation of kermit :-)
  19258. Or if they cannot use kermit, then invent GNUprotocol.
  19259.  
  19260. -- budi
  19261. -- 
  19262. Budi Rahardjo <Budi_Rahardjo@UManitoba.Ca>
  19263. #include <std-disclaimer.h>
  19264. Unix Support - Computer Services - University of Manitoba
  19265.  
  19266. From news@columbia.edu Mon Oct  3 18:16:11 1994
  19267. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15937
  19268.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 3 Oct 1994 14:16:18 -0400
  19269. Received: by apakabar.cc.columbia.edu id AA18738
  19270.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 3 Oct 1994 14:16:17 -0400
  19271. Path: news.columbia.edu!usenet
  19272. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  19273. Newsgroups: comp.protocols.kermit.misc
  19274. Subject: Re: GNU implementation of kermit :-)
  19275. Date: 3 Oct 1994 18:16:11 GMT
  19276. Organization: Columbia University
  19277. Lines: 18
  19278. Message-Id: <36phpb$i9b@apakabar.cc.columbia.edu>
  19279. References: <36ou5m$5ou@canopus.cc.umanitoba.ca>
  19280. Nntp-Posting-Host: fdc.cc.columbia.edu
  19281. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  19282.  
  19283. In article <36ou5m$5ou@canopus.cc.umanitoba.ca> rahardj@cc.umanitoba.ca (Budi  
  19284. Rahardjo) writes:
  19285. > Re: the thread on compyrights/policies etc.
  19286. > Maybe what we need is a GNU implementation of kermit :-)
  19287. > Or if they cannot use kermit, then invent GNUprotocol.
  19288. I don't get it.  Why create a parallel universe?  What would GNU
  19289. Kermit get *you* that you don't already get from Columbia?  Public
  19290. domain software than anybody could sell?  No...  Software that costs *you*
  19291. less than Columbia Kermit (i.e. nothing)?  No...  Then what?
  19292.  
  19293. To recreate the Kermit universe will take years of work by lots of people,
  19294. and some of them will have to be full-time, or it won't succeed.  In other
  19295. words, you'll end up just like us, and for that matter the FSF -- needing 
  19296. operating funds.  Unless you are independently wealthy, and willing to 
  19297. bankroll the operation out of your pocket.
  19298.  
  19299. - Frank
  19300.  
  19301. From news@columbia.edu Mon Oct  3 17:17:31 1994
  19302. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16420
  19303.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 3 Oct 1994 14:23:01 -0400
  19304. Received: by apakabar.cc.columbia.edu id AA19348
  19305.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 3 Oct 1994 14:22:59 -0400
  19306. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!news.sprintlink.net!malgudi.oar.net!kira.cc.uakron.edu!ns.mcs.kent.edu!Snake.mcs.kent.edu!rothstei
  19307. From: rothstei@Snake.mcs.kent.edu (Michael Rothstein)
  19308. Newsgroups: comp.protocols.kermit.misc
  19309. Subject: Re: Are Columbia U's files still avial for FTP?
  19310. Date: 3 Oct 1994 17:17:31 GMT
  19311. Organization: Kent State University
  19312. Lines: 41
  19313. Message-Id: <36pebb$7v1@ns.mcs.kent.edu>
  19314. References: <dmurdoch.1325.2E8C5321@mast.queensu.ca> <36hsus$qtn@apakabar.cc.columbia.edu>
  19315. Nntp-Posting-Host: snake.mcs.kent.edu
  19316. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  19317.  
  19318. In article <36hsus$qtn@apakabar.cc.columbia.edu> fdc@fdc.cc.columbia.edu
  19319.  (Frank da Cruz) writes:
  19320. (snip, snip)
  19321. }I really wish I did not have to keep repeating myself -- it is really
  19322. }boring.  There is a paradox here: the more our software is spread to the
  19323. }general public on CDROM, and the more popular it becomes, the more work
  19324. }we have (tech support), the less time we have to devote to development,
  19325. }and the less money we have to pay for tech support AND development.
  19326. }
  19327. }Thus, the policy you are advocating is a very short-sighted one, the result
  19328. }of which would be that everybody would get Kermit software for "a fraction
  19329. }of a penny", and the Kermit effort would get nothing: our marketplace would
  19330. }disappear -- because nobody in their right mind would pay $35 for the same
  19331. }thing (more or less -- there is also the manual to consider) they can get
  19332. }for a third of a penny.  Meanwhile, since they do not have the manual, they
  19333. }pester us to death with questions that are already answered there.  Work
  19334. }grows to infinity, income shrinks to zero, and poof, you've killed it.
  19335. }Well, hooray, hooray, now we all have just what we wanted and it was free,
  19336. }so we won!  Yay!  But then technology changes, operating systems change,
  19337. }communication and networking methods change, and you are now left to the
  19338. }tender mercies of all those commercial and shareware software producers who
  19339. }care so much about quality and support.
  19340. }
  19341. }I'm sorry, it's a whole package -- if you don't like it, don't use it, and
  19342. }let us get on with devloping and supporting it for those who do,
  19343. }
  19344. }- Frank
  19345.  
  19346. Here is a different idea: make Kermit available the way it was before, but
  19347. **only** answer tech questions on a 900 line; this would enable you to
  19348. get the funds you need for tech support, and you could always slip in
  19349. a plug for the documentation instead of the hold muzak.
  19350. You might argue that overseas people don't have access to the 900 line,
  19351. which is true, but I think overseas people have to think twice before
  19352. calling in for support except for emergencies: calls from overseas are
  19353. ***real***expensive***.
  19354.  
  19355. -- 
  19356. Michael Rothstein (Kent State U)| Any similarity between Kent State's opinions
  19357. (rothstei@mcs.kent.edu)        | and my opinions is strictly coincidential.
  19358. The only way to tell you're sane is with a certificate from the insane asylum.
  19359.  
  19360. From news@columbia.edu Mon Oct  3 18:33:14 1994
  19361. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17414
  19362.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 3 Oct 1994 14:33:19 -0400
  19363. Received: by apakabar.cc.columbia.edu id AA20262
  19364.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 3 Oct 1994 14:33:16 -0400
  19365. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  19366. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  19367. Newsgroups: comp.protocols.kermit.misc
  19368. Subject: Re: Columbia University's Kermit copyright
  19369. Date: 3 Oct 1994 18:33:14 GMT
  19370. Organization: Columbia University
  19371. Lines: 43
  19372. Message-Id: <36pipa$jp4@apakabar.cc.columbia.edu>
  19373. References: <9409300557.AA12036@simtel.coast.net> <36h490$9hc@apakabar.cc.columbia.edu> <36pbtj$cc0@usenety1.news.prodigy.com>
  19374. Nntp-Posting-Host: watsun.cc.columbia.edu
  19375. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  19376.  
  19377. In article <36pbtj$cc0@usenety1.news.prodigy.com>,
  19378. Bill Davidsen <davidsen@usenety1.news.prodigy.com> wrote:
  19379. >In article <36h490$9hc@apakabar.cc.columbia.edu>,
  19380. >Frank da Cruz <fdc@fdc.cc.columbia.edu> wrote:
  19381. >:In article <9409300557.AA12036@simtel.coast.net> w8sdz@SimTel.Coast.NET  
  19382. >
  19383. >I totally fail to see how the funding of Kermit is diferent from the way
  19384. >shareware works. You want people to use the software and buy the manual.
  19385. >SO DO WE! But the idea that more people will buy the manuals if fewer
  19386. >people have the software completely eludes me.
  19387. >
  19388. There is a huge difference.  The shareware premise starts out by saying that
  19389. everybody that uses the software must pay money.  Some do and most don't
  19390. but you don't chase people because it doesn't pay too.
  19391.  
  19392. Kermit says, the software is free provided you receive it from some 
  19393. electronic means: ftp, gopher, www, bbs, ...
  19394.  
  19395. Kermit may not be distributed by anyone that charges money for physical 
  19396. media or that includes kermit as part of a larger package WITHOUT PERMISSION.
  19397. In other words, shareware libraries via mail; operating systems; Internet
  19398. access packages; third party terminal emulators or BBS programs.
  19399.  
  19400. Kermit is like your local museum or zoo which asks for a donation but will
  19401. let you in if you choose not to pay one (except for those special exhibits).
  19402.  
  19403. Shareware MUST be paid for, otherwise, you are breaking the law.  How many
  19404. people in this group are using Unregistered versions of DSZ, or ZOC, or
  19405. Telix, or ...?  If you continue, using them without registering you break 
  19406. the law.  Will you be caught, not likely.  But you are still guilty.
  19407.  
  19408. Kermit is FREE.  If you use it without ordering a manual, no big deal.
  19409. Its FREE.  If you need technical support, you will get it FREE.  However, 
  19410. we would like you to order the manual.  It reduces the need for technical
  19411. support and makes it easier to provide it when you do need it.  But
  19412. do you have to pay something, yes for the manual, no for anything else.
  19413.  
  19414. Can we get onto something else?
  19415.  
  19416. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  19417. "C-Kermit: available on more platforms than any other communications software."
  19418. "Kermit FTP: sending files whenever and wherever they are needed."
  19419. OS/2 version 189 via ftp from watsun.cc.columbia.edu /kermit/bin/ckoker.zip 
  19420.  
  19421. From news@columbia.edu Mon Oct  3 20:04:20 1994
  19422. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25421
  19423.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 3 Oct 1994 16:17:07 -0400
  19424. Received: by apakabar.cc.columbia.edu id AA29525
  19425.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 3 Oct 1994 16:17:03 -0400
  19426. Path: news.columbia.edu!sol.ctr.columbia.edu!newsxfer.itd.umich.edu!gumby!wupost!simtel.coast.net!w8sdz
  19427. From: w8sdz@SimTel.Coast.NET (Keith Petersen)
  19428. Newsgroups: comp.protocols.kermit.misc
  19429. Subject: Re: Columbia University's Kermit copyright
  19430. Message-Id: <9410032004.AA20257@SimTel.Coast.NET>
  19431. Date: Mon, 3 Oct 1994 20:04:20 GMT
  19432. Organization: SimTel, the Coast to Coast Software Repository (tm)
  19433. References: <9409300557.AA12036@simtel.coast.net> <36h490$9hc@apakabar.cc.columbia.edu> <36pbtj$cc0@usenety1.news.prodigy.com>
  19434. Lines: 17
  19435. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  19436.  
  19437. davidsen@usenety1.news.prodigy.com (Bill Davidsen) writes:
  19438. >I totally fail to see how the funding of Kermit is diferent from the way
  19439. >shareware works. You want people to use the software and buy the manual.
  19440. >SO DO WE! But the idea that more people will buy the manuals if fewer
  19441. >people have the software completely eludes me.
  19442.  
  19443. In my opinion Kermit became CRIPPLEWARE several years ago when Columbia
  19444. University stopped providing the full documentation as a file which could
  19445. be downloaded.  This forces users to purchase the book if they wish to
  19446. take full advantage of the software.
  19447.  
  19448. Keith
  19449. --
  19450. Keith Petersen
  19451. General Manager of SimTel, the Coast to Coast Software Repository (tm)
  19452. Internet: w8sdz@SimTel.Coast.NET    or      w8sdz@Vela.ACS.Oakland.Edu
  19453. Uucp: uunet!umich!vela!w8sdz                     BITNET: w8sdz@OAKLAND
  19454.  
  19455. From news@columbia.edu Mon Oct  3 21:12:25 1994
  19456. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02228
  19457.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 3 Oct 1994 17:54:36 -0400
  19458. Received: by apakabar.cc.columbia.edu id AA08365
  19459.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 3 Oct 1994 17:54:35 -0400
  19460. Path: news.columbia.edu!sol.ctr.columbia.edu!newsxfer.itd.umich.edu!europa.eng.gtefsd.com!swiss.ans.net!solaris.cc.vt.edu!news.duke.edu!concert!news.wfu.edu!matthews
  19461. From: matthews@wfu.edu (Rick Matthews)
  19462. Newsgroups: comp.protocols.kermit.misc
  19463. Subject: Re: Columbia University's Kermit copyright
  19464. Date: 3 Oct 1994 21:12:25 GMT
  19465. Organization: Wake Forest University
  19466. Lines: 23
  19467. Message-Id: <36ps3p$h2s@eis.wfunet.wfu.edu>
  19468. References: <9409300557.AA12036@simtel.coast.net> <36h490$9hc@apakabar.cc.columbia.edu> <36pbtj$cc0@usenety1.news.prodigy.com>
  19469. Nntp-Posting-Host: ac852.wfunet.wfu.edu
  19470. X-Newsreader: TIN [version 1.2 PL2]
  19471. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  19472.  
  19473. Bill Davidsen (davidsen@usenety1.news.prodigy.com) wrote:
  19474. : I totally fail to see how the funding of Kermit is diferent from the way
  19475. : shareware works.
  19476.  
  19477. Simple:  Kermit is free; shareware is not.
  19478.  
  19479. I am free to scatter Kermit all over my department, making it the
  19480. standard terminal emulation package for faculty, students, custodians,
  19481. etc., without paying a penny.
  19482.  
  19483. I wouldn't do this with shareware.  Unless I pay, it is against the law.
  19484. Shareware is not free.
  19485.  
  19486. Besides, the distribution decision is the developers' call to make.
  19487. Every possible argument for a change of policy has already been
  19488. presented.  Anything more is just hassle.  Please, thank them or
  19489. leave them alone.
  19490.  
  19491. --
  19492. Rick Matthews                     matthews@wfu.edu            Ham radio:
  19493. Wake Forest University            910-759-5340   (Voice)      WA4GSP
  19494. Winston-Salem, NC 27109-7507      910-759-6142   (FAX)
  19495.  
  19496.  
  19497. From news@columbia.edu Mon Oct  3 20:04:52 1994
  19498. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02834
  19499.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 3 Oct 1994 18:04:42 -0400
  19500. Received: by apakabar.cc.columbia.edu id AA09217
  19501.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 3 Oct 1994 18:04:41 -0400
  19502. Newsgroups: comp.protocols.kermit.misc
  19503. Path: news.columbia.edu!sol.ctr.columbia.edu!newsxfer.itd.umich.edu!europa.eng.gtefsd.com!howland.reston.ans.net!EU.net!chsun!pan!jw
  19504. From: jw@adasoft.ch (Jamie Watson)
  19505. Subject: Re: Columbia University's Kermit copyright
  19506. Message-Id: <Cx4544.9sC@adasoft.ch>
  19507. Reply-To: jw@adasoft.ch (Jamie Watson)
  19508. Organization: Adasoft AG, Switzerland
  19509. References: <9409300557.AA12036@simtel.coast.net> <36h490$9hc@apakabar.cc.columbia.edu> <36kaa4$lmm@knot.queensu.ca> <36l69c$n71@news.icaen.uiowa.edu>
  19510. Date: Mon, 3 Oct 1994 20:04:52 GMT
  19511. Expires: Sun, 2 Oct 1994 23:00:00 GMT
  19512. Lines: 74
  19513. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  19514.  
  19515. >With all due respect, Kermit is not the work of one individual.  A
  19516. >number of people have invested time and energy and resources into 
  19517. >making Kermit what it is today.
  19518.  
  19519. I've stayed out of this (publicly) as long as I can.  I'm sorry to be
  19520. fueling a discussion that I wish would simply die out...
  19521.  
  19522. Kermit is primarily the work of a *very* small number of people, helped
  19523. along to a *very* small amount of work contributed by a large number of
  19524. people.  Besides the group at Columbia, I would guess that there are
  19525. perhaps 10 people in the world who have contributed a quantity of work
  19526. that should be considered "substantial" in comparison with what has
  19527. been done at Columbia.  I'm not trying to denigrate anyone here, and
  19528. I am speaking from experience.  I have been contributing to the C-Kermit
  19529. effort for several years now.  On a few occasions, when my schedule and
  19530. interest permitted, I have contributed a considerable amount of work.
  19531. But I have no delusions as the the magnitude of my contribution compared
  19532. to the overall kermit effort - or even the overall C-Kermit effort.  I
  19533. certainly don't presume to attempt to tell Frank how kermit can or can
  19534. not be distributed because of my contribution.
  19535.  
  19536. >This isn't just about Simtel and 
  19537. >Garbo, but about anyone who cuts a CD for an OS -- note that some 
  19538. >vendors no longer ship kermit with their OS, like DEC OSF/1 and BSDI.
  19539.  
  19540. Well, is this supposed to be a negative point?  My experience has been
  19541. that virtually all of these are distributing versions of kermit that
  19542. are so old they are very limited in usefulness, and are virtually
  19543. certain to generate loads of requests to Columbia for help - exactly
  19544. what Frank has been saying they want to stop.
  19545.  
  19546. >And let's not forget those benevolent FTP archives who (ahem) do 
  19547. >dervie some amount of money from grants or corporate funding by 
  19548. >maintaining an FTP archive, like wuarchive and sunsite (just to name 
  19549. >two biggies) and may have a moneyary incentive (however slight) to
  19550. >keep Kermit online, thus supposedly putting themselves at odds with 
  19551. >the Columbia people.
  19552.  
  19553. There are real issues here, and Frank has already discussed them.
  19554.  
  19555. >Already, it appears that Kermit is suffering 
  19556. >something of a decline as overall line quality improves, and the
  19557. >omnipotent GUI has emerged.  So tell me, honestly, do YOU think that
  19558. >documentation sales are going to keep Kermit alive, or is it going 
  19559. >to just die and spell the end of an era.  
  19560.  
  19561. This is pure opinion.  I don't agree.
  19562.  
  19563. >No one wants to denigrate the Kermit developers' efforts toward making
  19564. >a quality software product.
  19565.  
  19566. So don't do it.
  19567.  
  19568. >But it seems like they need some help here,
  19569. >and the way they want us to help them doesn't seem to help anyone.  
  19570. >There appear to be people out there with better funding models, and
  19571. >every time someone suggests that a different funding model might better
  19572. >serve the interests of everyone involved, we get a lot of voodoo and 
  19573. >simplistic arguments.
  19574.  
  19575. Sorry, but I haven't seen *anyone* suggest a different funding model here.
  19576.  
  19577. >Why isn't this work just funded by Columbia?
  19578. >It certainly seems worthwhile enough just in advertising alone.  
  19579.  
  19580. Have you ever worked in a University environment?  I have, and I can tell
  19581. you that just because something "seems worthwhile" doesn't mean it will
  19582. be funded by the University.  Please, give Frank credit for a little bit
  19583. of intelligence in this area.  I'm quite sure that he has explored the
  19584. possibility of getting other kinds of funding.  I suspect that he still
  19585. does this on a regular basis.  Just because he doesn't post the details
  19586. for public discussion doesn't mean he isn't doing it.
  19587.  
  19588. jw
  19589.  
  19590. From news@columbia.edu Mon Oct  3 20:01:02 1994
  19591. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09592
  19592.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 3 Oct 1994 19:58:22 -0400
  19593. Received: by apakabar.cc.columbia.edu id AA17882
  19594.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 3 Oct 1994 19:58:21 -0400
  19595. Newsgroups: comp.protocols.kermit.misc
  19596. Path: news.columbia.edu!spcuna!ritz!kudut
  19597. From: kudut@ritz.mordor.com (Ken Udut)
  19598. Subject: Re: Columbia University's Kermit copyright
  19599. References: <9409300557.AA12036@simtel.coast.net> <36h490$9hc@apakabar.cc.columbia.edu> <36pbtj$cc0@usenety1.news.prodigy.com>
  19600. Organization: Mordor International BBS - Jersey City, NJ
  19601. Date: Mon, 3 Oct 1994 20:01:02 GMT
  19602. Message-Id: <Cx44xq.IJw@ritz.mordor.com>
  19603. Lines: 67
  19604. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  19605.  
  19606. >:As somebody pointed out yesterday, something *is* wrong with this picture
  19607. >:if this debate must be carried out over and over again.  Maybe what is
  19608. >:wrong is that we -- silly us -- are still basically trying to provide a
  19609. >:public service: FREE SOFTWARE, of high quality, with solid technical support
  19610. >:behind it, all free.  All we ask in return is that at enough of you purchase
  19611. >:the accompanying manuals to keep us afloat, and that you stop haranging us
  19612. >:for our commercial-redistribution policies and let us get on with our work
  19613. >:on your behalf.  Maybe it will turn out that we really do have to change
  19614. >:the way we get income; I hope not.
  19615. >
  19616. >I totally fail to see how the funding of Kermit is diferent from the way
  19617. >shareware works. You want people to use the software and buy the manual.
  19618. >SO DO WE! But the idea that more people will buy the manuals if fewer
  19619. >people have the software completely eludes me.
  19620.  
  19621. It's a different way of acheiving the same goals.  Except that Frank (and 
  19622. the Kermit team)'s motives aren't profit oriented - simply enough to 
  19623. support the project and keep it going.
  19624.  
  19625. warning: I am going to use gross generalizations.
  19626.  
  19627. Frank 'n co. have a limited staff.  By keeping the distribution to folks 
  19628. with ftp access and BBS people free, they are distributing it to people 
  19629. who, generally, have a greater understanding of how the computer works 
  19630. and how to set things up.
  19631.  
  19632. When people buy it with the manual, they have all of the answers that 
  19633. they need.
  19634.  
  19635. HOWEVER - when it is distributed on CD-ROMS - a *lot* of people will get 
  19636. it.  People who often have had their computers set up, who have a less 
  19637. extensive knowledge of computers.  I know this is true at least *some* of 
  19638. the time, because of the kinds of questions I've had to answer about my 
  19639. Deskmate .snd conversion program from people who found it on CD-ROM's, 
  19640. versus those who found it on BBS's, versus those who found it on the 
  19641. Internet.
  19642.  
  19643. The CD_ROM people's questions were questions about the simple stuff 
  19644. (relatively speaking)
  19645.  
  19646. The BBS people's questions were about more complex things.
  19647.  
  19648. And the Internet people seemed to be asking questions that were beyond my 
  19649. knowledge.  I could answer most, but some I had to refer to other people, 
  19650. newsgroups, etc.
  19651.  
  19652. I don't mind answering questions at all about it, but with a more general 
  19653. purpose program like Kermit (more general than my sound converter), there 
  19654. will be thousands more questions.  What is wrong with Frank and co. saying:
  19655.  
  19656. "Look... copy it to whom you wish.  Spread it around.  But a CD-ROM will 
  19657. simply be a case where its spread around too much.  We just don't have 
  19658. the support staff."
  19659.  
  19660. If they had the money, they could support the extra work.  But they 
  19661. don't.  People who search for Kermit, know what they want it for, will 
  19662. find it, and eventually (like myself, shortly) buy the manual.  But 
  19663. people who see it as one program of thousands aren't as likely to, as it 
  19664. won't be given the same weight in their minds.
  19665.  
  19666. Keep up the good work, Frank.
  19667.  
  19668. Remember - this too, shall pass (the dilemna on this newsgroup)
  19669.  
  19670. Ken
  19671. kudut@ritz.mordor.com
  19672.  
  19673.  
  19674. From news@columbia.edu Mon Oct  3 22:52:20 1994
  19675. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12742
  19676.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 3 Oct 1994 20:34:55 -0400
  19677. Received: by apakabar.cc.columbia.edu id AA20878
  19678.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 3 Oct 1994 20:34:54 -0400
  19679. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!heifetz.msen.com!simtel.coast.net!w8sdz
  19680. From: w8sdz@SimTel.Coast.NET (Keith Petersen)
  19681. Newsgroups: comp.protocols.kermit.misc
  19682. Subject: Re: Columbia University's Kermit copyright
  19683. Message-Id: <9410032252.AA21717@SimTel.Coast.NET>
  19684. Date: Mon, 3 Oct 1994 22:52:20 GMT
  19685. Organization: SimTel, the Coast to Coast Software Repository (tm)
  19686. References: <9409300557.AA12036@simtel.coast.net> <36kaa4$lmm@knot.queensu.ca> <36l69c$n71@news.icaen.uiowa.edu> <Cx4544.9sC@adasoft.ch>
  19687. Lines: 29
  19688. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  19689.  
  19690. jw@adasoft.ch (Jamie Watson) writes:
  19691. >Sorry, but I haven't seen *anyone* suggest a different funding model here.
  19692.  
  19693. Ok, here it is.  I already sent this to Frank and he rejected it.
  19694.  
  19695. Change the status of Kermit to ShareWare, with voluntary payment for
  19696. individuals and required payment for commercial and school use (i.e.,
  19697. a site license).  If Columbia charged $300 for a site license, even if
  19698. there were only 1,000 customers, the income produced would be $300,000
  19699. per year.
  19700.  
  19701. That's just a starting point.  I'm sure Columbia would have more than
  19702. 1,000 paying customers for such a well-supported product as Kermit -
  19703. if it was continually updated and improved.  I see no reason why this
  19704. funding model should not have the potential to bring in over $500,000
  19705. per year.  I feel confident that Columbia would have no trouble getting
  19706. releases from the authors of the various flavors of Kermit if they
  19707. stressed that this money will be used for product support and improving
  19708. the product through future development.
  19709.  
  19710. With that kind of income Columbia could hire programmers to write new
  19711. flavors of Kermit and to improve the already exiting flavors.
  19712.  
  19713. Keith
  19714. --
  19715. Keith Petersen
  19716. General Manager of SimTel, the Coast to Coast Software Repository (tm)
  19717. Internet: w8sdz@SimTel.Coast.NET    or      w8sdz@Vela.ACS.Oakland.Edu
  19718. Uucp: uunet!umich!vela!w8sdz                     BITNET: w8sdz@OAKLAND
  19719.  
  19720. From news@columbia.edu Tue Oct  4 00:56:33 1994
  19721. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15241
  19722.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 3 Oct 1994 20:56:36 -0400
  19723. Received: by apakabar.cc.columbia.edu id AA22289
  19724.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 3 Oct 1994 20:56:35 -0400
  19725. Path: news.columbia.edu!usenet
  19726. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  19727. Newsgroups: comp.protocols.kermit.misc
  19728. Subject: Re: Columbia University's Kermit copyright
  19729. Date: 4 Oct 1994 00:56:33 GMT
  19730. Organization: Columbia University
  19731. Lines: 26
  19732. Message-Id: <36q981$lof@apakabar.cc.columbia.edu>
  19733. References: <9410032252.AA21717@SimTel.Coast.NET>
  19734. Nntp-Posting-Host: fdc.cc.columbia.edu
  19735. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  19736.  
  19737. In article <9410032252.AA21717@SimTel.Coast.NET> w8sdz@SimTel.Coast.NET  
  19738. (Keith Petersen) writes:
  19739. > jw@adasoft.ch (Jamie Watson) writes:
  19740. > >Sorry, but I haven't seen *anyone* suggest a different funding model here.
  19741. > Ok, here it is.  I already sent this to Frank and he rejected it.
  19742. > Change the status of Kermit to ShareWare, ...
  19743. >
  19744. It's true, Keith did suggest changing Kermit to shareware.  And various
  19745. other people suggested charging for support, setting up 900 numbers, and
  19746. so on.  Our many well-wishers do not understand the detailed organizational
  19747. and legal constraints under which we operate.  I will only say that I have
  19748. not seen a suggestion posted in this discussion, or mailed to me privately,
  19749. that I did not already think of myself years ago.  And I think this 
  19750. discussion is scaring the (substitute appropriate garment) off lots of people
  19751. in universities and elsewhere -- needlessly.  Don't worry people, we Kermit
  19752. folks have been constant and faithful to you all these years, and the voices
  19753. in the newsgroups don't speak for us.  We have no intention of abandoning
  19754. our loyal "market niche" to chase after the fast buck, no matter how hard
  19755. some people -- and economic forces themselves -- push us to do it.  Your
  19756. support and words of encouragement are appreciated.
  19757.  
  19758. Thanks.
  19759.  
  19760. - Frank
  19761.  
  19762.  
  19763.  
  19764. From news@columbia.edu Tue Oct  4 03:13:34 1994
  19765. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25354
  19766.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 00:16:17 -0400
  19767. Received: by apakabar.cc.columbia.edu id AA06774
  19768.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 00:16:15 -0400
  19769. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!library.ucla.edu!news.mic.ucla.edu!unixg.ubc.ca!quartz.ucs.ualberta.ca!tribune.usask.ca!canopus.cc.umanitoba.ca!rahardj
  19770. From: rahardj@cc.umanitoba.ca (Budi Rahardjo)
  19771. Newsgroups: comp.protocols.kermit.misc
  19772. Subject: Re: Columbia University's Kermit copyright
  19773. Date: 4 Oct 1994 03:13:34 GMT
  19774. Organization: The University of Manitoba
  19775. Lines: 37
  19776. Message-Id: <36qh8u$j7n@canopus.cc.umanitoba.ca>
  19777. References: <9409300557.AA12036@simtel.coast.net> <36h490$9hc@apakabar.cc.columbia.edu> <36pbtj$cc0@usenety1.news.prodigy.com> <36ps3p$h2s@eis.wfunet.wfu.edu>
  19778. Nntp-Posting-Host: antares.cc.umanitoba.ca
  19779. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  19780.  
  19781. In <36ps3p$h2s@eis.wfunet.wfu.edu> matthews@wfu.edu (Rick Matthews) writes:
  19782.  
  19783. : Bill Davidsen (davidsen@usenety1.news.prodigy.com) wrote:
  19784. : : I totally fail to see how the funding of Kermit is diferent from the way
  19785. : : shareware works.
  19786.  
  19787. : Simple:  Kermit is free; shareware is not.
  19788.  
  19789. : I am free to scatter Kermit all over my department, making it the
  19790. : standard terminal emulation package for faculty, students, custodians,
  19791. : etc., without paying a penny.
  19792.  
  19793. Do they buy the manual ? What's going to happen with they have problems
  19794. and call Coulmbia ? Either through CD-ROM or through you, these people
  19795. do not get the manuals and hence create more problems for the Kermit's
  19796. group when they call the Kermit's group.
  19797. This is one of the arguments used to limit the distribution, people
  19798. that don't have manuals call them. This I don't undertand, the difference
  19799. between CD-ROM distribution and people like you an me distributing
  19800. copies of kermit. (money aside,  CD-ROM vendors and myself have the
  19801. effects.)
  19802.  
  19803. One argument that I do understand, is that the Kermit's developer
  19804. doesnot like CD-ROM vendors putting a copy of kermit in their CDs,
  19805. without permission. I do understand their view.
  19806. IMHO, it's a valid reason.
  19807.  
  19808. You know, if the software and book are really good, people will buy 
  19809. the book. Just like "perl + camel book", "Tk and Tcl + Oustherhout's book".
  19810. You don't have to beg people to buy it :-)
  19811.  
  19812. Good luck.
  19813. -- budi
  19814. -- 
  19815. Budi Rahardjo <Budi_Rahardjo@UManitoba.Ca>
  19816. #include <std-disclaimer.h>
  19817. Unix Support - Computer Services - University of Manitoba
  19818.  
  19819. From news@columbia.edu Tue Oct  4 03:26:49 1994
  19820. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26227
  19821.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 00:35:55 -0400
  19822. Received: by apakabar.cc.columbia.edu id AA07854
  19823.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 00:35:53 -0400
  19824. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!library.ucla.edu!news.mic.ucla.edu!unixg.ubc.ca!quartz.ucs.ualberta.ca!tribune.usask.ca!canopus.cc.umanitoba.ca!rahardj
  19825. From: rahardj@cc.umanitoba.ca (Budi Rahardjo)
  19826. Newsgroups: comp.protocols.kermit.misc
  19827. Subject: Re: GNU implementation of kermit :-)
  19828. Date: 4 Oct 1994 03:26:49 GMT
  19829. Organization: The University of Manitoba
  19830. Lines: 41
  19831. Message-Id: <36qi1p$k5p@canopus.cc.umanitoba.ca>
  19832. References: <36ou5m$5ou@canopus.cc.umanitoba.ca> <36phpb$i9b@apakabar.cc.columbia.edu>
  19833. Nntp-Posting-Host: antares.cc.umanitoba.ca
  19834. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  19835.  
  19836. fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  19837.  
  19838. : rahardj@cc.umanitoba.ca (Budi Rahardjo) writes:
  19839. : > Re: the thread on compyrights/policies etc.
  19840. : > Maybe what we need is a GNU implementation of kermit :-)
  19841. : > Or if they cannot use kermit, then invent GNUprotocol.
  19842. : > 
  19843. : I don't get it.  Why create a parallel universe?  What would GNU
  19844. : Kermit get *you* that you don't already get from Columbia?  Public
  19845. : domain software than anybody could sell?  No...  Software that costs *you*
  19846. : less than Columbia Kermit (i.e. nothing)?  No...  Then what?
  19847.  
  19848. Why are there a number of C compilers ? editors ? mail processors?
  19849. X windows ? etc.
  19850. There are a number of reasons; technical and non-technical.
  19851. What GNU Kermit (if such beast exists) get *me* that I don't already 
  19852. get from Columbia ?
  19853. A complete snap-shot of archieve site *including* kermit in a CD.
  19854. To me as a user, it is a convenience. But I am just one measly user,
  19855. you can just ignore me.
  19856.  
  19857.  
  19858. : To recreate the Kermit universe will take years of work by lots of people,
  19859. : and some of them will have to be full-time, or it won't succeed.  
  19860.  
  19861. Are you sure you need full-time people to make it success ?
  19862. How about Linux ? perl ? tcl ? ... and many others.
  19863.  
  19864. : In other
  19865. : words, you'll end up just like us, and for that matter the FSF -- needing 
  19866. : operating funds.  Unless you are independently wealthy, and willing to 
  19867. : bankroll the operation out of your pocket.
  19868.  
  19869. You are underestimating the power of collaboration of volunteers.
  19870.  
  19871. Good luck.
  19872. -- budi
  19873. -- 
  19874. Budi Rahardjo <Budi_Rahardjo@UManitoba.Ca>
  19875. #include <std-disclaimer.h>
  19876. Unix Support - Computer Services - University of Manitoba
  19877.  
  19878. From news@columbia.edu Sun Oct  4 04:41:13 1994
  19879. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28576
  19880.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 01:12:59 -0400
  19881. Received: by apakabar.cc.columbia.edu id AA09556
  19882.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 01:12:58 -0400
  19883. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!math.ohio-state.edu!hobbes.physics.uiowa.edu!newsfeed.ksu.ksu.edu!moe.ksu.ksu.edu!cbs.ksu.ksu.edu!not-for-mail
  19884. From: mcatlin@ksu.ksu.edu (Micah Catlin)
  19885. Newsgroups: comp.protocols.kermit.misc
  19886. Subject: Re: Windows Kermit?
  19887. Date: 3 Oct 1994 23:41:13 -0500
  19888. Organization: Kansas State University
  19889. Lines: 16
  19890. Distribution: World
  19891. Message-Id: <36qmd9$knk@cbs.ksu.ksu.edu>
  19892. References: <1994Sep28.001400.10550@emba.uvm.edu> <36bv4p$ps8@apakabar.cc.columbia.edu>
  19893. Nntp-Posting-Host: cbs.ksu.ksu.edu
  19894. X-Newsreader: NN version 6.5.0 #1 (NOV)
  19895. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  19896.  
  19897. fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  19898.  
  19899. >In article <1994Sep28.001400.10550@emba.uvm.edu> rdangel@moose.uvm.edu  
  19900. >(Robert S. Dangel) writes:
  19901. >> Is there a windows version of PC Kermit? I have qmodem Pro and
  19902. >> the Kermit protocol doesn't work with the UNIX machines..  
  19903. >>
  19904. >currently version 3.13.  It is a Windows-aware DOS application.  Until
  19905. >and unless we are able to create a native Windows version with anywhere
  19906.  
  19907.     I have one.
  19908.  
  19909. >near the same degree of functionality, we recommend and support MS-DOS
  19910. >Kermit for use with Windows.
  19911.  
  19912.     I don't know about that, but I have Windoze Kermit.
  19913.  
  19914. From news@columbia.edu Tue Oct  4 04:42:23 1994
  19915. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28650
  19916.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 01:13:41 -0400
  19917. Received: by apakabar.cc.columbia.edu id AA09602
  19918.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 01:13:40 -0400
  19919. Newsgroups: comp.protocols.kermit.misc
  19920. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!emory!swrinde!cs.utexas.edu!uunet!world!jeffb
  19921. From: jeffb@world.std.com (Jeffrey T Berntsen)
  19922. Subject: Re: GNU implementation of kermit :-)
  19923. Message-Id: <Cx4t2n.s1@world.std.com>
  19924. Organization: The World @ Software Tool & Die
  19925. References: <36ou5m$5ou@canopus.cc.umanitoba.ca> <36phpb$i9b@apakabar.cc.columbia.edu>
  19926. Date: Tue, 4 Oct 1994 04:42:23 GMT
  19927. Lines: 29
  19928. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  19929.  
  19930. fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  19931.  
  19932. >In article <36ou5m$5ou@canopus.cc.umanitoba.ca> rahardj@cc.umanitoba.ca (Budi  
  19933. >Rahardjo) writes:
  19934. >> Re: the thread on compyrights/policies etc.
  19935. >> Maybe what we need is a GNU implementation of kermit :-)
  19936. >> Or if they cannot use kermit, then invent GNUprotocol.
  19937. >> 
  19938. >I don't get it.  Why create a parallel universe?  What would GNU
  19939. >Kermit get *you* that you don't already get from Columbia?  Public
  19940. >domain software than anybody could sell?  No...  Software that costs *you*
  19941. >less than Columbia Kermit (i.e. nothing)?  No...  Then what?
  19942.  
  19943. More reasonable distribution.  NOT just Internet FTP.  The GNU project doesn't
  19944. CARE how their software is distributed as long as it's done more or less freely
  19945. (they don't seem to have any problems with CD-ROM's for instance), and source
  19946. is made freely (they also don't seem to have any problems with reasonable
  19947. handling and media charges) available.
  19948.  
  19949. >To recreate the Kermit universe will take years of work by lots of people,
  19950. >and some of them will have to be full-time, or it won't succeed.  In other
  19951. >words, you'll end up just like us, and for that matter the FSF -- needing 
  19952. >operating funds.  Unless you are independently wealthy, and willing to 
  19953. >bankroll the operation out of your pocket.
  19954.  
  19955. Hmmmm..  Now you DO have a point there...
  19956.  
  19957. Jeff Berntsen
  19958. jeffb@world.std.com
  19959.  
  19960. From news@columbia.edu Tue Oct  4 05:26:32 1994
  19961. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29182
  19962.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 01:28:38 -0400
  19963. Received: by apakabar.cc.columbia.edu id AA10461
  19964.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 01:28:36 -0400
  19965. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!news-feed-1.peachnet.edu!emory!swrinde!howland.reston.ans.net!math.ohio-state.edu!usenet
  19966. From: davis@pacific.mps.ohio-state.edu
  19967. Newsgroups: comp.protocols.kermit.misc
  19968. Subject: Re: USing Unix editors while under kermit
  19969. Date: 4 Oct 1994 05:26:32 GMT
  19970. Organization: None
  19971. Lines: 67
  19972. Message-Id: <36qp28$lbm@mathserv.mps.ohio-state.edu>
  19973. References: <1994Sep29.122443.7@scff.chinalake.navy.mil>
  19974. Reply-To: davis@amy.tch.harvard.edu
  19975. Nntp-Posting-Host: pacific.mps.ohio-state.edu
  19976. X-Newsreader: S-Lang: slrn (0.1.4.0)
  19977. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  19978.  
  19979. In article <1994Sep29.122443.7@scff.chinalake.navy.mil>, mbguest@scfe.chinalake.navy.mil writes:
  19980.  : The oddest part is that the program works fine, arrow keys in
  19981.  : application, etc - in calling into a VMS system. Is this some
  19982.  : sort of anti-unix plot <G>.
  19983.  
  19984. It might have something to do with MS-Kermit sending 8 bit control sequences
  19985. to your Unix editor.  
  19986.  
  19987. If you want an editor that works with these control sequences, I suggest
  19988. that you try JED.  I created and tested JED using MS-Kermit.  It even
  19989. exploits MS-Kermit running on a color PC through color syntax highlighting,
  19990. etc....  See jed/doc/color.txt for using JED with MS-Kermit.
  19991.  
  19992.  
  19993. JED is available from amy.tch.harvard.edu.  The latest version is 0.97-5b.
  19994.  
  19995. List of some of JED's features:
  19996.  
  19997.     Runs under Unix, VMS, OS/2, and MSDOS (all versions)
  19998.     
  19999.            *  XWindows
  20000.        *  DJGPP compiled version for 386/486 PCs support up to
  20001.              256 Megs of Virtual Memory.  This also is able
  20002.                  to run in a Windows DOS Box.
  20003.          
  20004.     Emacs*, wordstar*, EDT* emulation
  20005.     C, fortran*, tex*, text editing modes
  20006.     
  20007.            * Color Syntax Highlighting on
  20008.            ALL systems including dialup --- not just XWindows
  20009.            
  20010.     C-like extension language called S-Lang.
  20011.     User configurable (bind keys, write functions, etc....)
  20012.     Region highlighting (even on character based terminals*)
  20013.     8 bit clean, edit binary files too.
  20014.     Rectangular (box) cut/paste
  20015.     Backup and autosave files
  20016.     Full multilevel undo
  20017.     Regular expressions
  20018.     Gnu Emacs compatable info reader*
  20019.     Dynamic Abbreviation Expansion* (ESC /)
  20020.     Calendar*
  20021.     Mail* and elm like rmail* 
  20022.     Dired directory editor*
  20023.     Automatic horizontal pan/scroll  (configurable)
  20024.     Parenthesis matching/blinking
  20025.     Filename, buffername, function name completion
  20026.     Menu driven for novice users*
  20027.     Incremental search/replace*
  20028.     Sorting
  20029.     No hardcoded buffer/line limits
  20030.     Multiple windows and buffers
  20031.     Keyboard macros with macro query feature.
  20032.     Buffer mode lines are configurable, e.g., display time, line number, etc...
  20033.     Ispell*
  20034.     Shell commands and ``interactive'' shell*
  20035.  
  20036.      * Note:  these functions are written in the extension language.
  20037. --
  20038.      _____________
  20039. #___/John E. Davis\_________________________________________________________
  20040. #
  20041. # internet: davis@amy.tch.harvard.edu
  20042. #   bitnet: davis@ohstpy
  20043. #   office: 617-735-6746
  20044. #
  20045.  
  20046.  
  20047. From news@columbia.edu Sun Oct  4 03:30:54 1994
  20048. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01303
  20049.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 02:21:27 -0400
  20050. Received: by apakabar.cc.columbia.edu id AA12718
  20051.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 02:21:24 -0400
  20052. Path: news.columbia.edu!panix!MathWorks.Com!zombie.ncsc.mil!romulus.ncsc.mil!not-for-mail
  20053. From: richh@romulus.ncsc.mil (Richard L. Hamilton)
  20054. Newsgroups: comp.protocols.kermit.misc
  20055. Subject: looking for suggested parameters
  20056. Date: 3 Oct 1994 23:30:54 -0400
  20057. Organization: ncsc
  20058. Lines: 21
  20059. Message-Id: <36qi9e$oeb@romulus.ncsc.mil>
  20060. Nntp-Posting-Host: romulus
  20061. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  20062.  
  20063. Can anyone suggest "ideal" parameters for use at 9600 to 14400
  20064. (V.32 or V.32bis) with compression and error checking?
  20065.  
  20066. Right now, my .mykermrc file looks something like:
  20067.    set block-check 3
  20068.    set buffers 131072 131072
  20069.    set file name literal
  20070.    set file type binary
  20071.    set receive packet-length 4096
  20072.    set window-size 31
  20073.    ...
  20074.  
  20075. That's between a fast Un*x system and my relatively wimpy 3b1,
  20076. serial port on the 3b1 set at 19200 (fastest it goes), and
  20077. the modem actually maxing out at 1st V.32bis fallback speed of
  20078. 12000 baud.
  20079.  
  20080. -- 
  20081.                       I compute, therefore I am.
  20082. My opinions are strictly by own, and should not be construed to represent
  20083. anyone else.
  20084.  
  20085. From news@columbia.edu Tue Oct  4 00:04:06 1994
  20086. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03567
  20087.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 03:32:37 -0400
  20088. Received: by apakabar.cc.columbia.edu id AA14856
  20089.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 03:32:36 -0400
  20090. Newsgroups: comp.protocols.kermit.misc
  20091. Path: news.columbia.edu!panix!MathWorks.Com!news.kei.com!eff!news.duke.edu!godot.cc.duq.edu!newsfeed.pitt.edu!dsinc!netnews.upenn.edu!news.drexel.edu!news.ge.com!knight.vf.ge.com!not-for-mail
  20092. From: tcmayo@eng106.PSF.GE.COM (tom mayo)
  20093. Subject: Kermit on CD RAM
  20094. Message-Id: <36q65m$pq@eng106.PSF.GE.COM>
  20095. Lines: 27
  20096. Sender: news@knight.vf.ge.com
  20097. Nntp-Posting-Host: eng106.psf.ge.com
  20098. Organization: Martin Marietta Defense Systems
  20099. Date: Tue, 4 Oct 1994 00:04:06 GMT
  20100. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  20101.  
  20102. If you are feeling really grouchy and uptight about the ongoing
  20103. Kermit / CD ROM discussions, you may not want to read this.
  20104.  
  20105. +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  20106.  
  20107. Oh, wow.  This new Cheesebox 5000 computer is really snazzy.  It's just
  20108. like a TV---but with a typewriter too!
  20109.  
  20110. Well, I just got this thing, and wouldn't you know, it's got one of
  20111. those CD RAM drives.  Amazing!
  20112.  
  20113. Anyway, I think this CD Rome thing is really great, and I want to get
  20114. Kermit because I always loved the Muppets---especially the frog!
  20115.  
  20116. Do they sell Kermit for my CD RAM?  I can't wait to find out because
  20117. the computer also came with a ZModem too.  Maybe I could get Kermit
  20118. to sing "It ain't easy being green" over the Zmodem to my sister in
  20119. Topeka.
  20120.  
  20121. -George Creamcheese
  20122.  
  20123. +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  20124.  
  20125. This is my personal creation to be used for entertainment purposes
  20126. only.  Please forward all flames to /dev/null.
  20127.  
  20128. -Tom Mayo  N1RMU  tcmayo@mntr02.psf.ge.com
  20129.  
  20130. From news@columbia.edu Tue Oct  4 08:57:06 1994
  20131. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06908
  20132.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 05:01:25 -0400
  20133. Received: by apakabar.cc.columbia.edu id AA17461
  20134.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 05:01:23 -0400
  20135. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!EU.net!sunic!news.funet.fi!zippo.uwasa.fi!uwasa.fi!ts
  20136. From: ts@uwasa.fi (Timo Salmi)
  20137. Newsgroups: comp.protocols.kermit.misc
  20138. Subject: Re: Columbia University's Kermit copyright
  20139. Date: 4 Oct 1994 08:57:06 GMT
  20140. Organization: University of Vaasa
  20141. Lines: 70
  20142. Message-Id: <36r5d2$28f@zippo.uwasa.fi>
  20143. References: <36h490$9hc@apakabar.cc.columbia.edu> <36pbtj$cc0@usenety1.news.prodigy.com> <36pipa$jp4@apakabar.cc.columbia.edu>
  20144. Nntp-Posting-Host: uwasa.fi
  20145. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  20146.  
  20147. I am writing this time as a management scientist and consultant, not
  20148. as Garbo's moderator.
  20149.  
  20150. In article <36pipa$jp4@apakabar.cc.columbia.edu>
  20151. jaltman@watsun.cc.columbia.edu (Jeffrey Altman) writes:
  20152.  
  20153. :Kermit is FREE.  If you use it without ordering a manual, no big deal.
  20154. :Its FREE.  If you need technical support, you will get it FREE.  However,
  20155.  
  20156. Here is the core of your the problem provided that you are looking
  20157. for a good solution. You, that this the good Columbia people, may
  20158. have either of the two goals:
  20159.  
  20160. 1) Finding a solution that enhances YOUR situation both timewise and
  20161. financially. 
  20162.  
  20163. 2) Using every possible argument to defend retaining exactly the
  20164. current practices whether they are optimal for you or not. 
  20165.  
  20166. Please do not be offended, since I am trying to analyze this as
  20167. dispassionately as I can as a management scientist now.  I am afraid
  20168. that your (Columbia's) goal is rather clearly the second one, that
  20169. is pushing the problem under the carpet.  You wish the problem to go
  20170. away by itself, or deny that you have a problem by rationalizing
  20171. keeping exactly your current practices.  (That's why Frank has even
  20172. himself said he keeps repeating himself).  You have every right to
  20173. have this goal, but I can assure you that it is bad management.  I
  20174. wish you to be aware what your implicit assumptions in this are. 
  20175. Please do not deceive yourselves. 
  20176.  
  20177. Assume, however, your goal were the first, or that you can bring
  20178. yourself to redefine your true goal to be the first.  In this case
  20179. your problem is not generating enough funds.  One of the main
  20180. culprits for that is the FREE support you give.  That, not the
  20181. CDROMs.  Whatever you decide or have decided with respect to CDROMs
  20182. will not solve your problem.  Before one can begin to solve a
  20183. management problem one must realize amd definbe what the true
  20184. problem is, and here it is not overly difficult to pinpoint.  Onece
  20185. you have the problem pinpointed, then, if you truly want to solve
  20186. it, you can start looking how well the alternative strategies work
  20187. for your goal.
  20188.  
  20189. :we would like you to order the manual.  It reduces the need for technical
  20190. :support and makes it easier to provide it when you do need it.  But
  20191. :do you have to pay something, yes for the manual, no for anything else.
  20192.  
  20193. :Can we get onto something else?
  20194.  
  20195. Why!?  Is ending the discussion really the topmost priority.  Well,
  20196. if you wish to, but problems are not solved by ignoring them.  If
  20197. one has a dilemma, and truly wants to solve it, on does not keep
  20198. repeating that the discussion should cease.  Decide.  Is your goal
  20199. making this discussion to go away, or having a better solution than
  20200. what you no have.  Of course I have a vexed interest, but even so,
  20201. you are not making the best of this from your OWN point of view
  20202. either. 
  20203.  
  20204. Summary: Decide whether defending you position or solving your
  20205. management problem is your underlying goal.  If the latter, identify
  20206. your problems, and assess the conquences of the different
  20207. alternatives on your goals.  Do it dispassionately and
  20208. systematically. 
  20209.  
  20210.    All the best, Timo
  20211.  
  20212. ..................................................................
  20213. Prof. Timo Salmi      Co-moderator of comp.archives.msdos.announce
  20214. Moderating at garbo.uwasa.fi anonymous FTP  archives  128.214.87.1
  20215. Faculty of Accounting & Industrial Management; University of Vaasa
  20216. Internet: ts@uwasa.fi   BBS +(358)-61-3170972; FIN-65101,  Finland
  20217.  
  20218. From news@columbia.edu Tue Oct  4 09:04:52 1994
  20219. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07199
  20220.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 05:11:37 -0400
  20221. Received: by apakabar.cc.columbia.edu id AA17776
  20222.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 05:11:36 -0400
  20223. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!EU.net!sunic!news.funet.fi!zippo.uwasa.fi!uwasa.fi!ts
  20224. From: ts@uwasa.fi (Timo Salmi)
  20225. Newsgroups: comp.protocols.kermit.misc
  20226. Subject: Re: Columbia University's Kermit copyright
  20227. Date: 4 Oct 1994 09:04:52 GMT
  20228. Organization: University of Vaasa
  20229. Lines: 14
  20230. Message-Id: <36r5rk$2bo@zippo.uwasa.fi>
  20231. References: <36h490$9hc@apakabar.cc.columbia.edu> <36pbtj$cc0@usenety1.news.prodigy.com> <Cx44xq.IJw@ritz.mordor.com>
  20232. Nntp-Posting-Host: uwasa.fi
  20233. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  20234.  
  20235. In article <Cx44xq.IJw@ritz.mordor.com> kudut@ritz.mordor.com (Ken Udut) writes:
  20236. :Remember - this too, shall pass (the dilemna on this newsgroup)
  20237.  
  20238. Sigh!  Which do the gentle reades consider the bigger problem in
  20239. here? The existince of this discussion or Columbia's funding and
  20240. time allocation dilemma?
  20241.  
  20242.    All the best, Timo
  20243.  
  20244. ..................................................................
  20245. Prof. Timo Salmi      Co-moderator of comp.archives.msdos.announce
  20246. Moderating at garbo.uwasa.fi anonymous FTP  archives  128.214.87.1
  20247. Faculty of Accounting & Industrial Management; University of Vaasa
  20248. Internet: ts@uwasa.fi   BBS +(358)-61-3170972; FIN-65101,  Finland
  20249.  
  20250. From news@columbia.edu Tue Oct  4 09:06:53 1994
  20251. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08336
  20252.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 05:52:31 -0400
  20253. Received: by apakabar.cc.columbia.edu id AA19323
  20254.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 05:52:30 -0400
  20255. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!EU.net!sun4nl!philapd!apdnews!taren2la.apd.dec.com!groot
  20256. From: groot@apd.dec.com (Henk de Groot)
  20257. Newsgroups: comp.protocols.kermit.misc
  20258. Subject: How to catch SHIFT-ESC in kermit
  20259. Message-Id: <groot.781261613@taren2la.apd.dec.com>
  20260. Date: 4 Oct 94 09:06:53 GMT
  20261. Sender: news@apd.dec.com
  20262. Reply-To: groot@apd.dec.com (Henk de Groot)
  20263. Lines: 44
  20264. X-Disclaimer: This opinion is mine alone
  20265. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  20266.  
  20267. Hello Kermit users,
  20268.  
  20269. I have a problem. Our kermit version is MS-Kermit 3.13 with a patch file with
  20270. 21 patches in it.
  20271.  
  20272. We have to build an application that has to responds to the key combination
  20273. SHIFT-ESC. In the key-table you can catch many key combinations but I am
  20274. unable to map SHIFT-ESC to something different than ESC alone so I can't
  20275. make a distinction between ESC with or without SHIFT.
  20276.  
  20277. Is there a way to make it work? It is no problem to do this with other
  20278. keys (like function keys), only ESC seems to behave differently. I can
  20279. calculate what keycode SHIFT-ESC should have (scancode 1 + 256 + 512 = 769)
  20280. but
  20281.  
  20282.     set key \852 hello
  20283.  
  20284. works for SHIFT+F1 (outputs hello) but
  20285.  
  20286.     set key \769 hello
  20287.  
  20288. doesn't work for SHIFT+ESC!
  20289.  
  20290. When redefining the ESC key itself by
  20291.  
  20292.     set key \27 hello
  20293.  
  20294. also SHIFT+ESC outputs hello! (B.T.W. "set key \257 hello" doesn't work
  20295. either, so we can not make a distinction between ESC and Ctrl-[ too, but
  20296. that's not a problem for us at this moment).
  20297.  
  20298. Any suggestions to solve this problem are welcome (We also tried the product
  20299. KEATerm under Windows and that one will do it correctly; we need something
  20300. running under DOS however!)
  20301.  
  20302. Kind Regards,
  20303.  
  20304.  
  20305. Henk.
  20306.  
  20307. --
  20308.   /   / de Groot  Dep: ALD2          | E-Mail: groot@apd.dec.com
  20309.  /---/ __  __  /  Tel: +31 55 432104 | Corp: Digital Equipment Corporation
  20310. /   / (-_ / / /(  Loc: FP-B09        | Site: Apeldoorn, The Netherlands
  20311.  
  20312. From news@columbia.edu Tue Oct  4 10:19:40 1994
  20313. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08584
  20314.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 07:41:23 -0400
  20315. Received: by apakabar.cc.columbia.edu id AA23236
  20316.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 07:41:22 -0400
  20317. Newsgroups: comp.protocols.kermit.misc
  20318. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!eff!wariat.org!malgudi.oar.net!chemabs!swl07
  20319. From: swl07@cas.org (Steven W. Layten)
  20320. Subject: Re: Columbia University's Kermit copyright
  20321. Message-Id: <1994Oct4.101940.24819@chemabs.uucp>
  20322. Sender: usenet@chemabs.uucp
  20323. Cc: slayten@cas.org
  20324. Organization: Chemical Abstracts Service, Columbus, Ohio
  20325. References: <9409300557.AA12036@simtel.coast.net> <36h490$9hc@apakabar.cc.columbia.edu> <36pbtj$cc0@usenety1.news.prodigy.com>
  20326. Date: Tue, 4 Oct 1994 10:19:40 GMT
  20327. Lines: 71
  20328.  
  20329.  
  20330. Bill Davidson (davidsen@usenety1.news.prodigy.com) writes:
  20331. >I totally fail to see how the funding of Kermit is diferent from the way
  20332. >shareware works. You want people to use the software and buy the manual.
  20333. >SO DO WE! But the idea that more people will buy the manuals if fewer
  20334. >people have the software completely eludes me.
  20335. >
  20336. >My impression is that people in this group are trying VERY hard to keep
  20337. >you from shooting yourself in the foot, and all you see is a profit
  20338. >motive.
  20339.  
  20340. As one of the normally "silent readers" of this discussion, I'm going to
  20341. throw caution to the winds and add my comments.
  20342.  
  20343. I believe that the funding of Kermit IS different from shareware in that
  20344. Columbia provides a great deal of support via the network that shareware
  20345. authors don't.
  20346.  
  20347. People seem to expect that the Kermit group can and will always provide
  20348. technical support for free.  I know that I have asked for support from
  20349. both fdc and jrd, and never been denied.  Because they have a reputation
  20350. and a history of providing such excellent support, it is expected to
  20351. continue for everyone.
  20352.  
  20353. On the other hand, I expect that most shareware software users would not
  20354. expect such free support from a shareware author.  (Though most comm
  20355. programs I'm aware of that were shareware have now gone commercial,) let me
  20356. use Telix as an example.  If I knew the net address of the telix author, I
  20357. would probably NOT send a request for support without first sending the
  20358. shareware registration.
  20359.  
  20360. Thus, I believe that shareware funding IS different from Kermit funding in the
  20361. expectations of the users. (at least of this individual user. :-)  Most
  20362. software vendors are struggling with the problem of support.  Many
  20363. commercial ventures have moved away from free support.  
  20364.  
  20365. I agree with Frank -- putting Kermit on a CD-ROM and distributing to more
  20366. and more persons without a way to pick up funding for the support is
  20367. likely to kill the Kermit effort.  All resources would have to go to
  20368. support and no further development.  I'm sure that the Kermit group would
  20369. like to come up with an alternative funding mechanism, but being a
  20370. university, etc. etc. limits their alternatives.  I don't believe that
  20371. they could go to "900-number" support, or some of the other suggestions
  20372. made on this list.
  20373.  
  20374. Having said that, let me point out that the above is ONLY MY OPINION, and
  20375. MY OPINION DOESN'T COUNT.  Both sides of this discussion have their
  20376. positions, and I can see them both and respect them both.  I'm not trying
  20377. to cast dispersions on anyone.  I don't intend to criticize anyone.  If
  20378. I've offended, I hereby apologise.
  20379.  
  20380. Now, I'd like to see this discussion end.  If you have suggestions as to
  20381. how Columbia can increase revenue, I'd guess that they'd be willing to
  20382. review them in a private communcation.  If you have a suggestion to Timo
  20383. and/or Keith about how they might be able to easily keep the software on
  20384. their ftp site, but not distribute it on their CD-ROM, they might even
  20385. entertain those suggestions IN A PRIVATE COMMUNICATION.  We've heard both
  20386. sides of the story.  Now, rather than slinging any more arrows, let's drop
  20387. it.
  20388.  
  20389. Donning my asbestos underwear, if you have comments about MY opinions,
  20390. send them to me in private, and lets stop cluttering this list.
  20391.  
  20392. Regards,
  20393.  
  20394. Steve Layten
  20395. -- 
  20396. Steven W. Layten, Senior Engineer
  20397. Chemical Abstracts Service, PO Box 3012, Columbus, OH 43210    +1 614 447 3600
  20398. INET: slayten@cas.org                            UUCP: osu-cis!chemabs!slayten
  20399. # # # Speaking only for myself, and NOT for Chemical Abstracts Service! # # #
  20400.  
  20401. From news@columbia.edu Tue Oct  4 12:28:34 1994
  20402. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10424
  20403.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 08:28:38 -0400
  20404. Received: by apakabar.cc.columbia.edu id AA25243
  20405.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 08:28:36 -0400
  20406. Path: news.columbia.edu!usenet
  20407. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  20408. Newsgroups: comp.protocols.kermit.misc
  20409. Subject: Re: looking for suggested parameters
  20410. Date: 4 Oct 1994 12:28:34 GMT
  20411. Organization: Columbia University
  20412. Lines: 29
  20413. Message-Id: <36rhpi$okp@apakabar.cc.columbia.edu>
  20414. References: <36qi9e$oeb@romulus.ncsc.mil>
  20415. Nntp-Posting-Host: fdc.cc.columbia.edu
  20416. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  20417.  
  20418. In article <36qi9e$oeb@romulus.ncsc.mil> richh@romulus.ncsc.mil (Richard L.  
  20419. Hamilton) writes:
  20420. > Can anyone suggest "ideal" parameters for use at 9600 to 14400
  20421. > (V.32 or V.32bis) with compression and error checking?
  20422. > Right now, my .mykermrc file looks something like:
  20423. >    set block-check 3
  20424. >    set buffers 131072 131072
  20425. >    set receive packet-length 4096
  20426. >    set window-size 31 ...
  20427. > That's between a fast Un*x system and my relatively wimpy 3b1,
  20428. > serial port on the 3b1 set at 19200 (fastest it goes), and
  20429. > the modem actually maxing out at 1st V.32bis fallback speed of
  20430. > 12000 baud.
  20431. >
  20432. You might be able to use control-character unprefixing to squeeze out
  20433. a little additional speed, but the 3B1 itself is going to be the limiting
  20434. factor.  In fact, here is a case where huge buffers might actually slow
  20435. you down.  I have had reports that there is a certain size (of Kermit's
  20436. "core image") beyond which the 3b1 will swap itself into oblivion.  So
  20437. you might actually want to try less window slots, shorter packets.
  20438.  
  20439. Also, as an antiquated system running an old version of System V, hardware
  20440. flow control is not available, so buffer overruns are likely.  If your
  20441. modem allows it, you might want to set up Xon/Xoff flow control between
  20442. Kermit and your modem.
  20443.  
  20444. - Frank
  20445. x
  20446. x
  20447.  
  20448. From news@columbia.edu Tue Oct  4 12:28:49 1994
  20449. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11108
  20450.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 08:44:08 -0400
  20451. Received: by apakabar.cc.columbia.edu id AA26003
  20452.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 08:44:06 -0400
  20453. Path: news.columbia.edu!sol.ctr.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!MathWorks.Com!news.duke.edu!concert!news.wfu.edu!matthews
  20454. From: matthews@wfu.edu (Rick Matthews)
  20455. Newsgroups: comp.protocols.kermit.misc
  20456. Subject: Re: Columbia University's Kermit copyright
  20457. Date: 4 Oct 1994 12:28:49 GMT
  20458. Organization: Wake Forest University
  20459. Lines: 43
  20460. Message-Id: <36rhq1$rpo@eis.wfunet.wfu.edu>
  20461. References: <9409300557.AA12036@simtel.coast.net> <36h490$9hc@apakabar.cc.columbia.edu> <36pbtj$cc0@usenety1.news.prodigy.com> <36ps3p$h2s@eis.wfunet.wfu.edu> <36qh8u$j7n@canopus.cc.umanitoba.ca>
  20462. Nntp-Posting-Host: acg60.wfunet.wfu.edu
  20463. X-Newsreader: TIN [version 1.2 PL2]
  20464. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  20465.  
  20466. Budi Rahardjo (rahardj@cc.umanitoba.ca) wrote:
  20467. : In <36ps3p$h2s@eis.wfunet.wfu.edu> matthews@wfu.edu (Rick Matthews) writes:
  20468.  
  20469. : : Simple:  Kermit is free; shareware is not.
  20470.  
  20471. : : I am free to scatter Kermit all over my department, making it the
  20472. : : standard terminal emulation package for faculty, students, custodians,
  20473. : : etc., without paying a penny.
  20474.  
  20475. : Do they buy the manual ? What's going to happen with they have problems
  20476. : and call Coulmbia ? Either through CD-ROM or through you, these people
  20477. : do not get the manuals and hence create more problems for the Kermit's
  20478. : group when they call the Kermit's group.
  20479.  
  20480. We have four copies of the manual.  I keep one at home, one in my
  20481. office, and two in our department computer lab, available to everyone
  20482. to whom I distribute Kermit.
  20483.  
  20484. Since I have appended a custom startup file appropriate for our
  20485. facilty, and I supply a two-page description of how to get started,
  20486. there are very few problems or questions.  Another nice touch is that
  20487. I have reconfigured the keymap so that PageUp, PageDown, Insert,
  20488. Delete, and the function keys all behave more or less the same way in
  20489. emacs as they do in WordPerfect for DOS.  That gives us a near-zero
  20490. learning curve for editing.
  20491.  
  20492. When people do have problems, they
  20493.  
  20494. 1.   RTFM.
  20495. 2.   Ask me.  If I don't know the answer, I
  20496.     a.  RTFM.
  20497.     b.  E-mail Columbia.
  20498.  
  20499. Less than one problem per two years in our department makes it to
  20500. 2(b).  That's less than 0.125 support requests per manual per year.
  20501. What do you think the ratio of support requests to manuals purchased
  20502. is for people who get Kermit off a CD-ROM?
  20503.  
  20504. --
  20505. Rick Matthews                     matthews@wfu.edu            Ham radio:
  20506. Wake Forest University            910-759-5340   (Voice)      WA4GSP
  20507. Winston-Salem, NC 27109-7507      910-759-6142   (FAX)
  20508.  
  20509.  
  20510. From news@columbia.edu Tue Oct  4 12:12:39 1994
  20511. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11876
  20512.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 08:54:11 -0400
  20513. Received: by apakabar.cc.columbia.edu id AA26518
  20514.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 08:54:10 -0400
  20515. Newsgroups: comp.protocols.kermit.misc
  20516. Path: news.columbia.edu!sol.ctr.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!news.sprintlink.net!malgudi.oar.net!chemabs!swl07
  20517. From: swl07@cas.org (Steven W. Layten)
  20518. Subject: Re: Columbia University's Kermit copyright
  20519. Message-Id: <1994Oct4.121239.2205@chemabs.uucp>
  20520. Sender: usenet@chemabs.uucp
  20521. Cc: slayten@cas.org
  20522. Organization: Chemical Abstracts Service, Columbus, Ohio
  20523. References: <9409300557.AA12036@simtel.coast.net> <36h490$9hc@apakabar.cc.columbia.edu> <36pbtj$cc0@usenety1.news.prodigy.com>
  20524. Date: Tue, 4 Oct 1994 12:12:39 GMT
  20525. Lines: 71
  20526.  
  20527.  
  20528. Bill Davidson (davidsen@usenety1.news.prodigy.com) writes:
  20529. >I totally fail to see how the funding of Kermit is diferent from the way
  20530. >shareware works. You want people to use the software and buy the manual.
  20531. >SO DO WE! But the idea that more people will buy the manuals if fewer
  20532. >people have the software completely eludes me.
  20533. >
  20534. >My impression is that people in this group are trying VERY hard to keep
  20535. >you from shooting yourself in the foot, and all you see is a profit
  20536. >motive.
  20537.  
  20538. As one of the normally "silent readers" of this discussion, I'm going to
  20539. throw caution to the winds and add my comments.
  20540.  
  20541. I believe that the funding of Kermit IS different from shareware in that
  20542. Columbia provides a great deal of support via the network that shareware
  20543. authors don't.
  20544.  
  20545. People seem to expect that the Kermit group can and will always provide
  20546. technical support for free.  I know that I have asked for support from
  20547. both fdc and jrd, and never been denied.  Because they have a reputation
  20548. and a history of providing such excellent support, it is expected to
  20549. continue for everyone.
  20550.  
  20551. On the other hand, I expect that most shareware software users would not
  20552. expect such free support from a shareware author.  (Though most comm
  20553. programs I'm aware of that were shareware have now gone commercial,) let me
  20554. use Telix as an example.  If I knew the net address of the telix author, I
  20555. would probably NOT send a request for support without first sending the
  20556. shareware registration.
  20557.  
  20558. Thus, I believe that shareware funding IS different from Kermit funding in the
  20559. expectations of the users. (at least of this individual user. :-)  Most
  20560. software vendors are struggling with the problem of support.  Many
  20561. commercial ventures have moved away from free support.  
  20562.  
  20563. I agree with Frank -- putting Kermit on a CD-ROM and distributing to more
  20564. and more persons without a way to pick up funding for the support is
  20565. likely to kill the Kermit effort.  All resources would have to go to
  20566. support and no further development.  I'm sure that the Kermit group would
  20567. like to come up with an alternative funding mechanism, but being a
  20568. university, etc. etc. limits their alternatives.  I don't believe that
  20569. they could go to "900-number" support, or some of the other suggestions
  20570. made on this list.
  20571.  
  20572. Having said that, let me point out that the above is ONLY MY OPINION, and
  20573. MY OPINION DOESN'T COUNT.  Both sides of this discussion have their
  20574. positions, and I can see them both and respect them both.  I'm not trying
  20575. to cast dispersions on anyone.  I don't intend to criticize anyone.  If
  20576. I've offended, I hereby apologise.
  20577.  
  20578. Now, I'd like to see this discussion end.  If you have suggestions as to
  20579. how Columbia can increase revenue, I'd guess that they'd be willing to
  20580. review them in a private communcation.  If you have a suggestion to Timo
  20581. and/or Keith about how they might be able to easily keep the software on
  20582. their ftp site, but not distribute it on their CD-ROM, they might even
  20583. entertain those suggestions IN A PRIVATE COMMUNICATION.  We've heard both
  20584. sides of the story.  Now, rather than slinging any more arrows, let's drop
  20585. it.
  20586.  
  20587. Donning my asbestos underwear, if you have comments about MY opinions,
  20588. send them to me in private, and lets stop cluttering this list.
  20589.  
  20590. Regards,
  20591.  
  20592. Steve Layten
  20593. -- 
  20594. Steven W. Layten, Senior Engineer
  20595. Chemical Abstracts Service, PO Box 3012, Columbus, OH 43210    +1 614 447 3600
  20596. INET: slayten@cas.org                            UUCP: osu-cis!chemabs!slayten
  20597. # # # Speaking only for myself, and NOT for Chemical Abstracts Service! # # #
  20598.  
  20599. From news@columbia.edu Tue Oct  4 12:45:27 1994
  20600. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12648
  20601.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 09:04:38 -0400
  20602. Received: by apakabar.cc.columbia.edu id AA27170
  20603.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 09:04:37 -0400
  20604. Path: news.columbia.edu!sol.ctr.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!EU.net!uknet!acorn!not-for-mail
  20605. From: agodwin@acorn.co.uk (Adrian Godwin)
  20606. Newsgroups: comp.protocols.kermit.misc
  20607. Subject: Re: Why is Kermit not popular on BBS-es?
  20608. Date: 4 Oct 1994 13:45:27 +0100
  20609. Organization: Acorn Computers Ltd, Cambridge, UK
  20610. Lines: 18
  20611. Message-Id: <36rip8$l4i@acorn.acorn.co.uk>
  20612. References: <36g46d$m36@cruella.ee.pdx.edu> <1994Sep30.085933.28315@cc.usu.edu>
  20613. Nntp-Posting-Host: acorn.acorn.co.uk
  20614. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  20615.  
  20616. In article <1994Sep30.085933.28315@cc.usu.edu>,
  20617. Joe Doupnik <jrd@cc.usu.edu> wrote:
  20618.  
  20619. >  What you can do is to notify BBS operators of this Kermit-Lite edition,
  20620. >once it has been released, and urge them to upgrade. We do recommend reading 
  20621. >the fine manual so that their systems can exploit the heck out of scripts
  20622. >and set long packets and sliding windows etc.
  20623.  
  20624. Excellent, but I'm afraid that you're going to have to help them get the
  20625. settings correct by including defaults (or a default .ini file) that
  20626. optimises transfers for typical PC-BBS systems. If you hope that they'll
  20627. buy the manual (or even read the instructions in detail) I'm afraid
  20628. that you're likely to be disappointed in many cases. 
  20629.  
  20630. -adrian
  20631.  
  20632.  
  20633.  
  20634.  
  20635. From news@columbia.edu Tue Oct  4 12:48:37 1994
  20636. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12709
  20637.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 09:05:13 -0400
  20638. Received: by apakabar.cc.columbia.edu id AA27212
  20639.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 09:05:12 -0400
  20640. Path: news.columbia.edu!sol.ctr.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!heifetz.msen.com!simtel.coast.net!w8sdz
  20641. From: w8sdz@SimTel.Coast.NET (Keith Petersen)
  20642. Newsgroups: comp.protocols.kermit.misc
  20643. Subject: Re: Columbia University's Kermit copyright
  20644. Message-Id: <9410041248.AA26638@SimTel.Coast.NET>
  20645. Date: Tue, 4 Oct 1994 12:48:37 GMT
  20646. Organization: SimTel, the Coast to Coast Software Repository (tm)
  20647. References: <9409300557.AA12036@simtel.coast.net> <36h490$9hc@apakabar.cc.columbia.edu> <36pbtj$cc0@usenety1.news.prodigy.com> <1994Oct4.101940.24819@chemabs.uucp>
  20648. Lines: 15
  20649. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  20650.  
  20651. swl07@cas.org (Steven W. Layten) writes:
  20652. >I agree with Frank -- putting Kermit on a CD-ROM and distributing to more
  20653. >and more persons without a way to pick up funding for the support is
  20654. >likely to kill the Kermit effort.
  20655.  
  20656. It wouldn't kill the operation if Columbia offered their own CD-ROM.  If
  20657. it included the complete documentation it would sell like hotcakes.  The
  20658. proceeds of that would fund the entire Kermit operation.  They sell
  20659. 9-track tapes - why not CD-ROMs?
  20660.  
  20661. Keith
  20662. --
  20663. Keith Petersen
  20664. Internet: w8sdz@SimTel.Coast.NET    or      w8sdz@Vela.ACS.Oakland.Edu
  20665. Uucp: uunet!umich!vela!w8sdz                     BITNET: w8sdz@OAKLAND
  20666.  
  20667. From news@columbia.edu Tue Oct  4 12:16:49 1994
  20668. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13116
  20669.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 09:13:33 -0400
  20670. Received: by apakabar.cc.columbia.edu id AA27799
  20671.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 09:13:32 -0400
  20672. Newsgroups: comp.protocols.kermit.misc
  20673. Path: news.columbia.edu!sol.ctr.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!haven.umd.edu!news.umbc.edu!eff!wariat.org!malgudi.oar.net!chemabs!swl26
  20674. From: swl26@cas.org ()
  20675. Subject: Re: Columbia University's Kermit copyright
  20676. Message-Id: <1994Oct4.121649.2556@chemabs.uucp>
  20677. Sender: usenet@chemabs.uucp
  20678. Cc: slayten@cas.org
  20679. Organization: Chemical Abstracts Service, Columbus, Ohio
  20680. References: <9409300557.AA12036@simtel.coast.net> <36h490$9hc@apakabar.cc.columbia.edu> <36pbtj$cc0@usenety1.news.prodigy.com>
  20681. Date: Tue, 4 Oct 1994 12:16:49 GMT
  20682. Lines: 66
  20683.  
  20684.  
  20685. Bill Davidson (davidsen@usenety1.news.prodigy.com) writes:
  20686. >I totally fail to see how the funding of Kermit is diferent from the way
  20687. >shareware works. You want people to use the software and buy the manual.
  20688. >SO DO WE! But the idea that more people will buy the manuals if fewer
  20689. >people have the software completely eludes me.
  20690. >
  20691. >My impression is that people in this group are trying VERY hard to keep
  20692. >you from shooting yourself in the foot, and all you see is a profit
  20693. >motive.
  20694.  
  20695. As one of the normally "silent readers" of this discussion, I'm going to
  20696. throw caution to the winds and add my comments.
  20697.  
  20698. I believe that the funding of Kermit IS different from shareware in that
  20699. Columbia provides a great deal of support via the network that shareware
  20700. authors don't.
  20701.  
  20702. People seem to expect that the Kermit group can and will always provide
  20703. technical support for free.  I know that I have asked for support from
  20704. both fdc and jrd, and never been denied.  Because they have a reputation
  20705. and a history of providing such excellent support, it is expected to
  20706. continue for everyone.
  20707.  
  20708. On the other hand, I expect that most shareware software users would not
  20709. expect such free support from a shareware author.  (Though most comm
  20710. programs I'm aware of that were shareware have now gone commercial,) let me
  20711. use Telix as an example.  If I knew the net address of the telix author, I
  20712. would probably NOT send a request for support without first sending the
  20713. shareware registration.
  20714.  
  20715. Thus, I believe that shareware funding IS different from Kermit funding in the
  20716. expectations of the users. (at least of this individual user. :-)  Most
  20717. software vendors are struggling with the problem of support.  Many
  20718. commercial ventures have moved away from free support.  
  20719.  
  20720. I agree with Frank -- putting Kermit on a CD-ROM and distributing to more
  20721. and more persons without a way to pick up funding for the support is
  20722. likely to kill the Kermit effort.  All resources would have to go to
  20723. support and no further development.  I'm sure that the Kermit group would
  20724. like to come up with an alternative funding mechanism, but being a
  20725. university, etc. etc. limits their alternatives.  I don't believe that
  20726. they could go to "900-number" support, or some of the other suggestions
  20727. made on this list.
  20728.  
  20729. Having said that, let me point out that the above is ONLY MY OPINION, and
  20730. MY OPINION DOESN'T COUNT.  Both sides of this discussion have their
  20731. positions, and I can see them both and respect them both.  I'm not trying
  20732. to cast dispersions on anyone.  I don't intend to criticize anyone.  If
  20733. I've offended, I hereby apologise.
  20734.  
  20735. Now, I'd like to see this discussion end.  If you have suggestions as to
  20736. how Columbia can increase revenue, I'd guess that they'd be willing to
  20737. review them in a private communcation.  If you have a suggestion to Timo
  20738. and/or Keith about how they might be able to easily keep the software on
  20739. their ftp site, but not distribute it on their CD-ROM, they might even
  20740. entertain those suggestions IN A PRIVATE COMMUNICATION.  We've heard both
  20741. sides of the story.  Now, rather than slinging any more arrows, let's drop
  20742. it.
  20743.  
  20744. Donning my asbestos underwear, if you have comments about MY opinions,
  20745. send them to me in private, and lets stop cluttering this list.
  20746.  
  20747. Regards,
  20748.  
  20749. Steve Layten
  20750.  
  20751. From news@columbia.edu Tue Oct  4 12:45:05 1994
  20752. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13122
  20753.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 09:13:35 -0400
  20754. Received: by apakabar.cc.columbia.edu id AA27807
  20755.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 09:13:34 -0400
  20756. Control: cancel <1994Oct4.121239.2205@chemabs.uucp>
  20757. Newsgroups: comp.protocols.kermit.misc
  20758. Path: news.columbia.edu!sol.ctr.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!haven.umd.edu!news.umbc.edu!eff!wariat.org!malgudi.oar.net!chemabs!swl26
  20759. From: swl07@cas.org ()
  20760. Subject: cmsg cancel <1994Oct4.121239.2205@chemabs.uucp>
  20761. Message-Id: <1994Oct4.124505.4384@chemabs.uucp>
  20762. Originator: swl26@
  20763. Sender: usenet@chemabs.uucp
  20764. Organization: Chemical Abstracts Service, Columbus, Ohio
  20765. References: <36h490$9hc@apakabar.cc.columbia.edu> <36pbtj$cc0@usenety1.news.prodigy.com> <1994Oct4.121239.2205@chemabs.uucp>
  20766. Date: Tue, 4 Oct 1994 12:45:05 GMT
  20767. Lines: 1
  20768. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  20769.  
  20770. <1994Oct4.121239.2205@chemabs.uucp> was cancelled from within rn.
  20771.  
  20772. From news@columbia.edu Tue Oct  4 12:19:21 1994
  20773. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14736
  20774.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 09:40:27 -0400
  20775. Received: by apakabar.cc.columbia.edu id AA29791
  20776.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 09:40:26 -0400
  20777. Newsgroups: comp.protocols.kermit.misc
  20778. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!news.sprintlink.net!malgudi.oar.net!chemabs!swl07
  20779. From: swl07@cas.org (Steven W. Layten)
  20780. Subject: Re: Columbia University's Kermit copyright
  20781. Message-Id: <1994Oct4.121921.2752@chemabs.uucp>
  20782. Sender: usenet@chemabs.uucp
  20783. Cc: slayten@cas.org
  20784. Organization: Chemical Abstracts Service, Columbus, Ohio
  20785. References: <9409300557.AA12036@simtel.coast.net> <36h490$9hc@apakabar.cc.columbia.edu> <36pbtj$cc0@usenety1.news.prodigy.com>
  20786. Date: Tue, 4 Oct 1994 12:19:21 GMT
  20787. Lines: 71
  20788.  
  20789.  
  20790. Bill Davidson (davidsen@usenety1.news.prodigy.com) writes:
  20791. >I totally fail to see how the funding of Kermit is diferent from the way
  20792. >shareware works. You want people to use the software and buy the manual.
  20793. >SO DO WE! But the idea that more people will buy the manuals if fewer
  20794. >people have the software completely eludes me.
  20795. >
  20796. >My impression is that people in this group are trying VERY hard to keep
  20797. >you from shooting yourself in the foot, and all you see is a profit
  20798. >motive.
  20799.  
  20800. As one of the normally "silent readers" of this discussion, I'm going to
  20801. throw caution to the winds and add my comments.
  20802.  
  20803. I believe that the funding of Kermit IS different from shareware in that
  20804. Columbia provides a great deal of support via the network that shareware
  20805. authors don't.
  20806.  
  20807. People seem to expect that the Kermit group can and will always provide
  20808. technical support for free.  I know that I have asked for support from
  20809. both fdc and jrd, and never been denied.  Because they have a reputation
  20810. and a history of providing such excellent support, it is expected to
  20811. continue for everyone.
  20812.  
  20813. On the other hand, I expect that most shareware software users would not
  20814. expect such free support from a shareware author.  (Though most comm
  20815. programs I'm aware of that were shareware have now gone commercial,) let me
  20816. use Telix as an example.  If I knew the net address of the telix author, I
  20817. would probably NOT send a request for support without first sending the
  20818. shareware registration.
  20819.  
  20820. Thus, I believe that shareware funding IS different from Kermit funding in the
  20821. expectations of the users. (at least of this individual user. :-)  Most
  20822. software vendors are struggling with the problem of support.  Many
  20823. commercial ventures have moved away from free support.  
  20824.  
  20825. I agree with Frank -- putting Kermit on a CD-ROM and distributing to more
  20826. and more persons without a way to pick up funding for the support is
  20827. likely to kill the Kermit effort.  All resources would have to go to
  20828. support and no further development.  I'm sure that the Kermit group would
  20829. like to come up with an alternative funding mechanism, but being a
  20830. university, etc. etc. limits their alternatives.  I don't believe that
  20831. they could go to "900-number" support, or some of the other suggestions
  20832. made on this list.
  20833.  
  20834. Having said that, let me point out that the above is ONLY MY OPINION, and
  20835. MY OPINION DOESN'T COUNT.  Both sides of this discussion have their
  20836. positions, and I can see them both and respect them both.  I'm not trying
  20837. to cast dispersions on anyone.  I don't intend to criticize anyone.  If
  20838. I've offended, I hereby apologise.
  20839.  
  20840. Now, I'd like to see this discussion end.  If you have suggestions as to
  20841. how Columbia can increase revenue, I'd guess that they'd be willing to
  20842. review them in a private communcation.  If you have a suggestion to Timo
  20843. and/or Keith about how they might be able to easily keep the software on
  20844. their ftp site, but not distribute it on their CD-ROM, they might even
  20845. entertain those suggestions IN A PRIVATE COMMUNICATION.  We've heard both
  20846. sides of the story.  Now, rather than slinging any more arrows, let's drop
  20847. it.
  20848.  
  20849. Donning my asbestos underwear, if you have comments about MY opinions,
  20850. send them to me in private, and lets stop cluttering this list.
  20851.  
  20852. Regards,
  20853.  
  20854. Steve Layten
  20855. -- 
  20856. Steven W. Layten, Senior Engineer
  20857. Chemical Abstracts Service, PO Box 3012, Columbus, OH 43210    +1 614 447 3600
  20858. INET: slayten@cas.org                            UUCP: osu-cis!chemabs!slayten
  20859. # # # Speaking only for myself, and NOT for Chemical Abstracts Service! # # #
  20860.  
  20861. From news@columbia.edu Tue Oct  4 11:09:10 1994
  20862. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15972
  20863.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 10:02:11 -0400
  20864. Received: by apakabar.cc.columbia.edu id AA01404
  20865.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 10:02:10 -0400
  20866. Path: news.columbia.edu!panix!MathWorks.Com!zombie.ncsc.mil!news.duke.edu!news-feed-1.peachnet.edu!emory!swrinde!elroy.jpl.nasa.gov!lll-winken.llnl.gov!decwrl!pa.dec.com!nntpd.lkg.dec.com!taren2la.apd.dec.com!groot
  20867. From: groot@apd.dec.com (Henk de Groot)
  20868. Newsgroups: comp.protocols.kermit.misc
  20869. Subject: Re: Columbia University's Kermit copyright
  20870. Date: 4 Oct 94 11:09:10 GMT
  20871. Organization: Digital Equipment Corporation
  20872. Lines: 57
  20873. Message-Id: <groot.781268950@taren2la.apd.dec.com>
  20874. References: <9409300557.AA12036@simtel.coast.net> <36h490$9hc@apakabar.cc.columbia.edu> <36pbtj$cc0@usenety1.news.prodigy.com> <36ps3p$h2s@eis.wfunet.wfu.edu>
  20875. Reply-To: groot@apd.dec.com (Henk de Groot)
  20876. Nntp-Posting-Host: taren2la.apd.dec.com
  20877. X-Disclaimer: This opinion is mine alone
  20878. X-Newsreader: NN version 6.5.0 #1 (NOV)
  20879. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  20880.  
  20881. In <36ps3p$h2s@eis.wfunet.wfu.edu> matthews@wfu.edu (Rick Matthews) writes:
  20882. >Simple:  Kermit is free; shareware is not.
  20883.  
  20884. Kermit is not free, if I use it in a customer project I have to negotiate
  20885. with Columbia, if I want to put it on CDROM, I have to negotiate with
  20886. Columbia e.t.c. Thus, as soon as I start using it as a part of a bundle of
  20887. software, (which I might sell for a profit athough I don't charge anything
  20888. for the kermit part in it but do charge for my own contribution to it), I
  20889. have to negotiate with Columbia. This is different from truely free
  20890. software which is not restricted by anything (only by copyright to ensure
  20891. that the software stays free).
  20892.  
  20893. It's not strange or anything that you to do this but IMHO you can not
  20894. maintain the claim that Kermit is free; Kermit is free for a limited
  20895. number of purposes and the limitation is described in kermits copyright
  20896. notice.
  20897.  
  20898. As far as I can see Kermit is Shareware. Compare it with F-Prot. F-Prot is
  20899. Shareware but free for private use. Kermit is free for distribution on
  20900. FTP-sites and free to use for yourself but not free for use in a project
  20901. for a customer or for putting it with other programs on CD-ROM.
  20902.  
  20903. So both share the same principal, it is shareware but free to use as long as
  20904. you don't cross a set border-line. For F-Prot this border-line is Non-private
  20905. use, for Kermit it is distribution on CD-ROM or use in a customer project.
  20906.  
  20907. What might be confusing is that Shareware not means that you have to pay
  20908. always but that you have to pay if you meet certain conditions. For
  20909. Shareware most of the time a condition is set that you have to pay after
  20910. using the product for xxxx days or so, but like F-Prot shows the condition
  20911. can also be if you fall into a certain category and that it is still free
  20912. if that doesn't apply.
  20913.  
  20914. Kermit is not freeware, it is shareware and it has always been shareware, if
  20915. you use it after meeting a preset condition you have to negotiate with
  20916. Columbia. The amount of money Columbia will charge you is unknown, you are
  20917. completly in the dark because there is not a single document supplied
  20918. with kermit that will say anything about what you can expect.
  20919.  
  20920. Ok, I'm not going to reply on this subject anymore since everything to be
  20921. said is covered by now. Even if everyboby will tell me Kermit is free
  20922. I still beleive it is shareware; it is a matter of definition of the word
  20923. 'Shareware' to deterimine if it applies to Kermit. That I don't have to pay
  20924. is just a matter of not meeting the payment condition set for it.
  20925.  
  20926. Kind regards,
  20927.  
  20928.  
  20929. Henk.
  20930.  
  20931. P.S. There is a copy of Kermit in Prentice-Hall's distribution of MINIX (on
  20932. floppy) is that illegal too? I guess so...
  20933.  
  20934. --
  20935.   /   / de Groot  Dep: ALD2          | E-Mail: groot@apd.dec.com
  20936.  /---/ __  __  /  Tel: +31 55 432104 | Corp: Digital Equipment Corporation
  20937. /   / (-_ / / /(  Loc: FP-B09        | Site: Apeldoorn, The Netherlands
  20938.  
  20939. From news@columbia.edu Tue Oct  4 14:03:02 1994
  20940. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16214
  20941.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 10:03:06 -0400
  20942. Received: by apakabar.cc.columbia.edu id AA01465
  20943.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 10:03:04 -0400
  20944. Path: news.columbia.edu!usenet
  20945. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  20946. Newsgroups: comp.protocols.kermit.misc
  20947. Subject: Re: Columbia University's Kermit copyright
  20948. Date: 4 Oct 1994 14:03:02 GMT
  20949. Organization: Columbia University
  20950. Lines: 190
  20951. Message-Id: <36rnan$1dl@apakabar.cc.columbia.edu>
  20952. References: <36r5d2$28f@zippo.uwasa.fi>
  20953. Nntp-Posting-Host: fdc.cc.columbia.edu
  20954. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  20955.  
  20956. In article <36r5d2$28f@zippo.uwasa.fi> ts@uwasa.fi (Timo Salmi) writes:
  20957. > :Kermit is FREE.  If you use it without ordering a manual, no big deal.
  20958. > :Its FREE.  If you need technical support, you will get it FREE.  However,
  20959. > Here is the core of your the problem provided that you are looking
  20960. > for a good solution. You, that this the good Columbia people, may
  20961. > have either of the two goals:
  20962. > 1) Finding a solution that enhances YOUR situation both timewise and
  20963. > financially. 
  20964. > 2) Using every possible argument to defend retaining exactly the
  20965. > current practices whether they are optimal for you or not. 
  20966. > Please do not be offended...
  20967. >
  20968. Don't worry, Timo, I'm not.
  20969.  
  20970. And I hope *you* won't be offended if I sidestep this issue for a while,
  20971. even though the points you raise are worth discussing.
  20972.  
  20973. You see, it is not up to you, Keith, or the several other participants in
  20974. this debate to dictate how Joe, I, and the other Kermit workers spend our
  20975. time.  We work extremely long hours trying to satisfy the sometimes
  20976. pressing needs of our constituency, and that work must take precedence just
  20977. now over the solution to this problem.  Watch the new companion newsgroup,
  20978. comp.protocols.kermit.ann for results.
  20979.  
  20980. I understand that some people don't like our policy with respect to
  20981. CDROMs, and I suppose we will have to find a creative way to deal with
  20982. this issue down the road.  But for now, we are not set up to cope with it,
  20983. for reasons outlined -- if not microscopically detailed -- in previous
  20984. discussions.  We are satisfying hundreds of thousands, probably millions
  20985. of users with just a small handful of people.  That's because our users
  20986. either (a) order from us by mail, in which case they get the documentation
  20987. they need and therefore do not bother us with tech support calls unless
  20988. they are cases not covered in the documentation (and we like such calls,
  20989. because they tell us how to improve our products), or (b) they are large
  20990. organizations that have their own internal support structures, and
  20991. therefore do not impinge greatly upon our time, and when they do, again,
  20992. it is because of important issues that we need to address in our products
  20993. themselves.  This system has worked extraordinarily well for more than
  20994. a decade.
  20995.  
  20996. CDROMs, however, go to the mass market.  Let's use an analogy to
  20997. illustrate what this means.  Ten years ago (or so), computers were big,
  20998. loud, heavy things in the machine rooms of universities, companies,
  20999. hospitals, and government agencies, with tentacles reaching out to
  21000. terminals in the needed locations.  This was the now-discredited
  21001. centralized model.  The central computer had a central support
  21002. organization which trained its users, installed and maintained software,
  21003. and handled problems, and every user saw the same thing, experienced the
  21004. same behavior.  When there was a problem, it was fixed in one place.
  21005. Although the central computer was quite expensive, the support and
  21006. training issues were handled very efficiently.
  21007.  
  21008. The computer and software industries realized that there was only so much
  21009. money to be made this way, and therefore shifted their focus to the mass
  21010. market -- a computer in every home, store, office, etc.  Margins are
  21011. slimmer, prices are lower, power is higher, software is more "user
  21012. friendly", etc etc.  This same movement resulted in the abandonment of the
  21013. central computing model in organizations.  "Mainframes" were "dinosaurs"
  21014. that sucked up enormous amounts of capital and operating money; PCs were
  21015. cheap, throw-away commodoties that could go on every desk; each one,
  21016. according to popular wisdom, having the same power as the mainframe, and
  21017. much more user-friendly in the bargain.  Before we knew it, every
  21018. organization in the world was on a "downsizing" (hastily rechristened
  21019. "rightsizing") campaign.
  21020.  
  21021. This is all to the good.  Technology is the driving force of society, and
  21022. technlogy is always improving, and therefore society benefits more and
  21023. more with every innovation.  Costs go down, productivity goes up.
  21024.  
  21025. But something went wrong.  It didn't happen that way.  Costs went up,
  21026. productivity went down.  Why?  Because now we have literally millions of
  21027. computer-naive people needed massive amounts of help -- technical support;
  21028. training; one-on-one hand-holding.  An issue related not only to the  
  21029. "naivete"
  21030. of the end users and the rapid pace of change in technology and software,
  21031. and the resulting unreliability compared to the tried-and-true mainframe
  21032. environment, where bugs had been worked out over the course of decades.
  21033.  
  21034. A recent study by the Gartner group (I don't have the reference handy, but
  21035. I read this in one of the prominent trade publications) found that,
  21036. contrary to expectations, the cost to a "rightsized" IS-intensive company
  21037. of maintaining its previous level of productivity was SIX TIMES what it
  21038. was in the centralized model.
  21039.  
  21040. I know from my own experience, quite apart from anything to do with
  21041. Kermit, in my own very large organization, that this figure is not far off
  21042. the mark.  These people, finding computers on their desks instead of 3270
  21043. terminals (or a typewriter), need massive amounts of help, even with today's
  21044. prepackaged, slick, graphical client/server object-oriented technologies.
  21045. There is no "magic pill" for these people -- every problem is hideously
  21046. complex, and every solution is unique.  "I can't print my file!"  Not only
  21047. could there be 500 reasons for this, you can't even hope to talk the user
  21048. through exploring any of them because they don't even know what the words
  21049. mean.  They clicked on a printer icon and nothing came out.  You have to
  21050. over in person, read their AUTOEXEC.BAT and CONFIG.SYS, remove TSRs (that
  21051. some other helpful person installed for them), check for interrupt
  21052. conflicts and noisy buses, remove boards, fool with jumpers, figure out
  21053. their memory management configuration and address conflicts -- no two PCs
  21054. are configured the same way, and if the PC is on a LAN, then you have
  21055. networking issues at every level to worry about.  I could go on.  Most of
  21056. you have been there.
  21057.  
  21058. In this example, I have been talking about simple, supposedly
  21059. self-contained "office automation" or "personal productivity"
  21060. applications.  Now what happens when we are speaking of an application
  21061. that connects two computers via modems?  I am sure that all readers of
  21062. this newsgroup know that there is no "plug and play" solution to this
  21063. problem.  Today's modems are very complex instruments, with manuals nearly
  21064. an inch thick.  And every make and model is different.  The PC hardware is
  21065. different too and, I must say, increasingly difficult to deal with.  For
  21066. example: as CPU power and speed increase, serial port quality has not kept
  21067. pace, and in many cases has detiorated.  Our mass market consumer who buys
  21068. a 66 MHz Multimedia Turbo Screamer with at Sears or Computerland will have
  21069. a difficult time understanding why its much-vaunted communications
  21070. capabilities don't measure up to expectations, and soon enters the jungle
  21071. of non-buffered and/or defective UARTs, interrupt conflicts, and all the
  21072. rest.  Each of these cases takes considerable time and effort to resolve.
  21073. Again, there is no magic pill -- every case is different.
  21074.  
  21075. Within organizations, however, the pendulum is beginning to swing back in
  21076. the old, discredited direction.  Standardization, central support,
  21077. centralized resources such as modem pools, become key to saving costs and
  21078. boosting productivity.
  21079.  
  21080. Organizations: corporations, universities, hospitals, government agencies,
  21081. and so on -- this is where Kermit software can be used most effectively at
  21082. the present time, because of their centralized support of key resources
  21083. and their internal support structures.  They relieve us of the burden of
  21084. technical support.  Although most of them contribute little or nothing to
  21085. our financial health, most of them also do not impact adversely upon it.
  21086.  
  21087. In the mass market, very few people are going to be able to cope with
  21088. problems without some help.  Help comes in the form of what I consider to
  21089. be some excellent, thorough, "user-friendly" books, which take them
  21090. step-by-step through every phase of the communication process -- pictures,
  21091. examples, and all, and even go to some lengths to explain to them what is
  21092. really going on behind the scenes -- not just "press the F7 key".
  21093.  
  21094. Or else help must come in the form of individualized hand-holding -- in
  21095. the mass market there are no organizational hands-on training facilities
  21096. where we can achieve economies of scale.
  21097.  
  21098. Communications software is far more complex and difficult to support than
  21099. self-contained applications such as word processors, spreadsheets, etc,
  21100. because the number of combinations of variables is literally INFINITE.
  21101.  
  21102. Now, you might ask, isn't the same true for, say, Telix?  I don't know if
  21103. Telix is distributed on CDROM, but let's suppose it is.  The answer is:
  21104. not quite.  Telix and most other shareware PC communication software is
  21105. designed to communicate in a very special restricted environment: PC to
  21106. BBS.  Here the problem set is reduced to a manageable level: it only runs
  21107. on PCs, it only talks to other PCs on only one kind of communications
  21108. channel -- serial, full duplex, 8-bit clean, totally transparent to all
  21109. bit patterns, etc.  Directory structure and file names are the same, file
  21110. formats are the same, character sets are the same.  Our support people
  21111. have to cover territory that is INFINITELY wider than that.
  21112.  
  21113. Now, here is the final nail in the coffin.  In response to those who say:
  21114. "you're shooting yourself in the foot...  you want to keep Kermit all to
  21115. yourself...  you don't want it to be popular... putting it on CDROM would
  21116. increase its popularity and therefore be good for you...": I would agree
  21117. if I thought that CDROM buyers would purchase the documentation.  But they
  21118. won't.  If they happen to stumble across, say, MS-DOS Kermit among the
  21119. 11,000 other software programs that lay before them, they will either
  21120. dismiss it immediately because it does not have a GUI, or they will try it
  21121. and give up immediately, in disgust, because they can't figure out how to
  21122. use it.
  21123.  
  21124. Lest this sound as if I am denigrating MS-DOS Kermit, I most emphatically
  21125. am not.  Lone individual mass-market consumers are not backed up by an
  21126. organization that includes computer professionals capable of recognizing
  21127. the technical merits and tradeoffs in choosing one package over another.
  21128. Mass market consumers generally follow the trade press, which I'm sure you
  21129. will all agree, focuses only on the most superficial aspects of any issue.
  21130.  
  21131. I am quite willing to concede that as matters stand, Kermit software is
  21132. simply not suited for the mass market.  It is better suited for the
  21133. organizational world where it can be set up, customized, and supported
  21134. on a centralized basis.
  21135.  
  21136. I hope that we will be able to change this situation in the future.  It is
  21137. a matter of accumulating sufficient funds so we can invest in additional
  21138. development power.  And that is what we are trying to do.
  21139.  
  21140. I thank everyone for their support and encouragement.
  21141.  
  21142. - Frank
  21143.  
  21144. From news@columbia.edu Tue Oct  4 12:36:31 1994
  21145. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16469
  21146.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 10:06:41 -0400
  21147. Received: by apakabar.cc.columbia.edu id AA01671
  21148.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 10:06:40 -0400
  21149. Newsgroups: comp.protocols.kermit.misc
  21150. Path: news.columbia.edu!panix!MathWorks.Com!solaris.cc.vt.edu!uunet!spcuna!ritz!kudut
  21151. From: kudut@ritz.mordor.com (Ken Udut)
  21152. Subject: Re: Columbia University's Kermit copyright
  21153. References: <36pbtj$cc0@usenety1.news.prodigy.com> <36pipa$jp4@apakabar.cc.columbia.edu> <36r5d2$28f@zippo.uwasa.fi>
  21154. Organization: Mordor International BBS - Jersey City, NJ
  21155. Date: Tue, 4 Oct 1994 12:36:31 GMT
  21156. Message-Id: <Cx5F0w.FtJ@ritz.mordor.com>
  21157. Lines: 16
  21158. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  21159.  
  21160.  
  21161. Timo,
  21162.  
  21163.     Why must Frank be coerced into changing the practices of Kermit 
  21164. distribution?  Frank is repeating the same position simply because that 
  21165. *is* his position.  He is unnecessarily under fire.
  21166.  
  21167.     He seems to be starting to see things going in a downward spiral 
  21168. because he is being pressured into changing his policies.  Please stop 
  21169. pressuring him, especially in public.  It is a private matter between you 
  21170. and Frank.  If you can't come to agreement, then let it go, Timo.  Frank 
  21171. has good reason for not wanting people to sell Kermit, and he should be 
  21172. allowed that. 
  21173.  
  21174. Ken
  21175. kudut@ritz.mordor.com
  21176.  
  21177. From news@columbia.edu Tue Oct  4 12:38:35 1994
  21178. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16479
  21179.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 10:06:45 -0400
  21180. Received: by apakabar.cc.columbia.edu id AA01679
  21181.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 10:06:44 -0400
  21182. Newsgroups: comp.protocols.kermit.misc
  21183. Path: news.columbia.edu!panix!MathWorks.Com!solaris.cc.vt.edu!uunet!spcuna!ritz!kudut
  21184. From: kudut@ritz.mordor.com (Ken Udut)
  21185. Subject: Re: Columbia University's Kermit copyright
  21186. References: <36pbtj$cc0@usenety1.news.prodigy.com> <Cx44xq.IJw@ritz.mordor.com> <36r5rk$2bo@zippo.uwasa.fi>
  21187. Organization: Mordor International BBS - Jersey City, NJ
  21188. Date: Tue, 4 Oct 1994 12:38:35 GMT
  21189. Message-Id: <Cx5F4C.Fvw@ritz.mordor.com>
  21190. Lines: 18
  21191. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  21192.  
  21193. In article <36r5rk$2bo@zippo.uwasa.fi> ts@uwasa.fi (Timo Salmi) writes:
  21194. >In article <Cx44xq.IJw@ritz.mordor.com> kudut@ritz.mordor.com (Ken Udut) writes:
  21195. >:Remember - this too, shall pass (the dilemna on this newsgroup)
  21196. >
  21197. >Sigh!  Which do the gentle reades consider the bigger problem in
  21198. >here? The existince of this discussion or Columbia's funding and
  21199. >time allocation dilemma?
  21200.  
  21201. The bigger problem is that it's Columbia's business to concern themselves 
  21202. with it and Frank's business to concern himself with it.  It's *not* our 
  21203. concern.
  21204.  
  21205. The existance of the discussion is painful to Frank as he is getting 
  21206. blasted left and right for sticking to what he feels is best.  He DOESN'T 
  21207. want to turn Kermit into a commercial venture.
  21208.  
  21209. Ken
  21210. kudut@ritz.mordor.com
  21211.  
  21212. From news@columbia.edu Tue Oct  4 14:06:48 1994
  21213. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16492
  21214.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 10:06:52 -0400
  21215. Received: by apakabar.cc.columbia.edu id AA01685
  21216.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 10:06:51 -0400
  21217. Path: news.columbia.edu!usenet
  21218. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  21219. Newsgroups: comp.protocols.kermit.misc
  21220. Subject: Re: Columbia University's Kermit copyright
  21221. Date: 4 Oct 1994 14:06:48 GMT
  21222. Organization: Columbia University
  21223. Lines: 27
  21224. Message-Id: <36rnho$1kj@apakabar.cc.columbia.edu>
  21225. References: <9410041248.AA26638@SimTel.Coast.NET>
  21226. Nntp-Posting-Host: fdc.cc.columbia.edu
  21227. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  21228.  
  21229. In article <9410041248.AA26638@SimTel.Coast.NET> w8sdz@SimTel.Coast.NET  
  21230. (Keith Petersen) writes:
  21231. > swl07@cas.org (Steven W. Layten) writes:
  21232. > >I agree with Frank -- putting Kermit on a CD-ROM and distributing to more
  21233. > >and more persons without a way to pick up funding for the support is
  21234. > >likely to kill the Kermit effort.
  21235. > It wouldn't kill the operation if Columbia offered their own CD-ROM.  If
  21236. > it included the complete documentation it would sell like hotcakes.  The
  21237. > proceeds of that would fund the entire Kermit operation.  They sell
  21238. > 9-track tapes - why not CD-ROMs?
  21239. That's a very good suggestion, Keith.  We are, in fact, exploring this
  21240. option.  It is one of many options for us to explore.
  21241.  
  21242. - Frank
  21243. x
  21244. x
  21245. x
  21246. x
  21247. x
  21248. x
  21249. x
  21250. x
  21251. x
  21252. x
  21253. x
  21254.  
  21255. From news@columbia.edu Tue Oct  4 14:08:11 1994
  21256. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16584
  21257.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 10:08:13 -0400
  21258. Received: by apakabar.cc.columbia.edu id AA01749
  21259.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 10:08:12 -0400
  21260. Path: news.columbia.edu!usenet
  21261. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  21262. Newsgroups: comp.protocols.kermit.misc
  21263. Subject: Re: Why is Kermit not popular on BBS-es?
  21264. Date: 4 Oct 1994 14:08:11 GMT
  21265. Organization: Columbia University
  21266. Lines: 15
  21267. Message-Id: <36rnkb$1mj@apakabar.cc.columbia.edu>
  21268. References: <36rip8$l4i@acorn.acorn.co.uk>
  21269. Nntp-Posting-Host: fdc.cc.columbia.edu
  21270. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  21271.  
  21272. In article <36rip8$l4i@acorn.acorn.co.uk> agodwin@acorn.co.uk (Adrian Godwin)  
  21273. writes:
  21274. > Excellent, but I'm afraid that you're going to have to help them get the
  21275. > settings correct by including defaults (or a default .ini file) that
  21276. > optimises transfers for typical PC-BBS systems.
  21277. >
  21278. Let's postpone the discussion of Kermit on BBSs until after version 3.14
  21279. is announced.  Then we'll have something new to talk about.
  21280.  
  21281. - Frank
  21282. x
  21283. x
  21284. x
  21285. x
  21286. x
  21287.  
  21288. From news@columbia.edu Tue Oct  4 14:56:53 1994
  21289. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17721
  21290.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 10:21:55 -0400
  21291. Received: by apakabar.cc.columbia.edu id AA03466
  21292.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 10:21:53 -0400
  21293. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!swrinde!elroy.jpl.nasa.gov!lll-winken.llnl.gov!noc.near.net!eisner!stone_l
  21294. From: stone_l@eisner.decus.org (Larry Stone)
  21295. Newsgroups: comp.protocols.kermit.misc
  21296. Subject: Re: Columbia University's Kermit copyright
  21297. Message-Id: <1994Oct4.095654.6265@eisner>
  21298. Date: 4 Oct 94 09:56:53 -0500
  21299. References: <9409300557.AA12036@simtel.coast.net> <36kaa4$lmm@knot.queensu.ca> <36l69c$n71@news.icaen.uiowa.edu> <Cx4544.9sC@adasoft.ch> <9410032252.AA21717@SimTel.Coast.NET>
  21300. Organization: DECUServe
  21301. Lines: 29
  21302. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  21303.  
  21304. In article <9410032252.AA21717@SimTel.Coast.NET>, w8sdz@SimTel.Coast.NET (Keith Petersen) writes:
  21305. > jw@adasoft.ch (Jamie Watson) writes:
  21306. >>Sorry, but I haven't seen *anyone* suggest a different funding model here.
  21307. > Ok, here it is.  I already sent this to Frank and he rejected it.
  21308. > Change the status of Kermit to ShareWare, with voluntary payment for
  21309. > individuals and required payment for commercial and school use (i.e.,
  21310. > a site license).  If Columbia charged $300 for a site license, even if
  21311. > there were only 1,000 customers, the income produced would be $300,000
  21312. > per year.
  21313.  
  21314. Well that may be a good funding model but as a paying model for many companies,
  21315. it won't work. Getting my company to buy a manual is simple. Paying for
  21316. software, whether it's "traditional" or shareware, is very difficult. Let's put
  21317. it this way - I'll be retired (and that's in 25 years) before I could get $300
  21318. for shareware. My company (and also a previous employer) don't like to blindly
  21319. sign software license agreements because it places obligations on the company.
  21320. OTOH, buying a book entails no obligations (other than to pay) so it's no
  21321. problem.
  21322.  
  21323. > Keith Petersen
  21324. > General Manager of SimTel, the Coast to Coast Software Repository (tm)
  21325. > Internet: w8sdz@SimTel.Coast.NET    or      w8sdz@Vela.ACS.Oakland.Edu
  21326. > Uucp: uunet!umich!vela!w8sdz                     BITNET: w8sdz@OAKLAND
  21327. -- 
  21328. Larry Stone                             |
  21329. VAX Systems Administator                |
  21330. stone_l@eisner.decus.org                |
  21331.  
  21332. From news@columbia.edu Tue Oct  4 11:14:10 1994
  21333. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21525
  21334.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 11:14:10 -0400
  21335. Received: by apakabar.cc.columbia.edu id AA18784
  21336.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 11:14:08 -0400
  21337. Path: news.columbia.edu!panix!zip.eecs.umich.edu!newsxfer.itd.umich.edu!jobone!fiesta.srl.ford.com!fmsrlr.srl.ford.com!fmsrlu.srl.ford.com!milam
  21338. From: milam@fmsrlu.srl.ford.com (Bill Milam)
  21339. Newsgroups: comp.protocols.kermit.misc
  21340. Subject: Re: FTP Mirrors and CDROMs - again
  21341. Date: Tue, 4 Oct 1994 10:47:58
  21342. Organization: Control Systems Dept  @ Ford Scientific Research Lab
  21343. Lines: 68
  21344. Message-Id: <milam.166.000ACD06@fmsrlu.srl.ford.com>
  21345. References: <36hv50$kgn@news.icaen.uiowa.edu> <36i5s7$90e@apakabar.cc.columbia.edu> <9410010116.AA24289@SimTel.Coast.NET> <CwzKJs.Fx7@news.cern.ch>
  21346. Nntp-Posting-Host: fmsrly.srl.ford.com
  21347. X-Newsreader: Trumpet for Windows [Version 1.0 Rev A]
  21348. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  21349.  
  21350. Normally I am fairly mild mannered, and slow to anger but this really
  21351. got to me....
  21352.  
  21353. In article <CwzKJs.Fx7@news.cern.ch> fanchiot@surya1.cern.ch (Sergio 
  21354. Fanchiotti) writes:
  21355.  
  21356. >w8sdz@SimTel.Coast.NET (Keith Petersen) writes:
  21357.  
  21358. >>It appears to me that you have single-handedly killed the entire free
  21359. >>distribution system for Kermit, except for Internet anonymous FTP.  That
  21360. >>will probably result in the death of the Kermit protocol on systems
  21361. >>which do not have access to the Internet. 
  21362. What planet you been living on Keith? Do Sinclairs have Internet access? Do 
  21363. Apple II machines have Internet access? Over half the machines supported by 
  21364. Kermit do not normally attach to networks. Kermit is popular because it is 
  21365. a darn good product, not because SimTel or anyone else distributes it. 
  21366. People do not use software because it is easy to get, they use it because it 
  21367. preforms a task they need done, and it does that task well. Kermit and it's 
  21368. distribution predates most of what is now known as internet. For many years 
  21369. Kermit was the software that allowed all those poor non-Internet folks to 
  21370. communicate between systems. On dos platforms, I find Kermit to be the most 
  21371. robust package of it's type. There is no commercial package which works as 
  21372. well, and certainly no commercial package which is supported as well. I 
  21373. support Frank and Columbia for allowing us to use Kermit for all these years 
  21374. FREE of charge. I also have found that only Columbia had the latest versions 
  21375. of Kermit on-line and available, most other sites are a month or more behind. 
  21376. Same for most CD-ROM distributions. The program I am interested in is usually 
  21377. always out of date. If I am not mistaken you used to use Kermit to download 
  21378. from the old Simtel machine...
  21379.  
  21380. >        Well, as someone looking at this silly discussion for some time
  21381. >        it seems that the time has come to get to work on a GPL'd version
  21382. >        of a portable data transfer program like Kermit (As Les said before).
  21383. >        Kermit is decent software and ubquitous but not the last word in this 
  21384. >        area. And if something of the complexity of gcc is still beeing 
  21385.  
  21386. Without a core group of people, which Mr. Stallman has been keeping together, 
  21387. there would be no gcc. Try it for yourself, it is much harder than it looks.
  21388.  
  21389. >        supported... why not something like a kermit protocol clone? Here
  21390. >        the wheel has to be re-done, hard work it is, but it may have some 
  21391. >        improvements, just look at the way Linux is developed! 
  21392.  
  21393. If Linux is still here in 2004, you may have a point.
  21394.  
  21395. >        and their choice.   (Apparently if doesn't matter that 90% of the 
  21396. >        people don't have FTP access...)
  21397.  
  21398. See above. Kermit predates almost all of the archive sites, and has been doing 
  21399. just fine without the CD-ROM distribution.
  21400.  
  21401. >    In this respect we should thank the attitude of the Kermit team. In the
  21402. >     long run something else will appear to fill this gap, hopefully better
  21403. >        and easier to distribute.  Guess here is something else for RMS, once 
  21404. >        the TCL flame war is over... Maybe in a feww days we'll see
  21405.  
  21406. As to this comment...Fine, go ahead and prove you can replace the quality and 
  21407. support for a Kermit replacement and keep it running for a decade or two...it 
  21408. ain't as easy as many of you think. Kermit predates the IBM PC for cryin out 
  21409. loud...this is a tremendous accomplishment. To support a FREE product in the 
  21410. public domain for over a decade and keep it up to date with changing 
  21411. technology, port it to almost every platform known to man, even Sinclairs and 
  21412. the BBC machines, and find itself still setting the standard others shoot for 
  21413. as to quality and support is a ..... words fail....
  21414.  
  21415. If i have mortally offended anyone, please feel free to flame me via e-mail 
  21416. and let the people who have legitimate problems get some time in here. 
  21417.  
  21418.  
  21419. From news@columbia.edu Tue Oct  4 14:19:56 1994
  21420. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26762
  21421.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 12:39:02 -0400
  21422. Received: by apakabar.cc.columbia.edu id AA25671
  21423.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 12:38:59 -0400
  21424. Newsgroups: comp.protocols.kermit.misc
  21425. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!news-feed-1.peachnet.edu!emory!metro.atlanta.com!spcuna!ritz!kudut
  21426. From: kudut@ritz.mordor.com (Ken Udut)
  21427. Subject: Re: Why is Kermit not popular on BBS-es?
  21428. References: <36g46d$m36@cruella.ee.pdx.edu> <1994Sep30.085933.28315@cc.usu.edu> <36rip8$l4i@acorn.acorn.co.uk>
  21429. Organization: Mordor International BBS - Jersey City, NJ
  21430. Date: Tue, 4 Oct 1994 14:19:56 GMT
  21431. Message-Id: <Cx5Jt8.J8J@ritz.mordor.com>
  21432. Lines: 24
  21433. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  21434.  
  21435. In article <36rip8$l4i@acorn.acorn.co.uk> agodwin@acorn.co.uk (Adrian Godwin) writes:
  21436. >In article <1994Sep30.085933.28315@cc.usu.edu>,
  21437. >Joe Doupnik <jrd@cc.usu.edu> wrote:
  21438. >
  21439. >>  What you can do is to notify BBS operators of this Kermit-Lite edition,
  21440. >>once it has been released, and urge them to upgrade. We do recommend reading 
  21441. >>the fine manual so that their systems can exploit the heck out of scripts
  21442. >>and set long packets and sliding windows etc.
  21443. >
  21444. >Excellent, but I'm afraid that you're going to have to help them get the
  21445. >settings correct by including defaults (or a default .ini file) that
  21446. >optimises transfers for typical PC-BBS systems. If you hope that they'll
  21447. >buy the manual (or even read the instructions in detail) I'm afraid
  21448. >that you're likely to be disappointed in many cases. 
  21449. >
  21450. >-adrian
  21451.  
  21452. Well, for sysops like PCBoard and TBBS sysops... they'll probably buy the 
  21453. manuals, as they don't fear spending money to do things "right".  This at 
  21454. least seems to hold true to the local BBS fare in my part of New Jersey.
  21455.  
  21456. Ken
  21457.  
  21458.  
  21459.  
  21460. From news@columbia.edu Tue Oct  4 15:47:08 1994
  21461. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27026
  21462.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 12:45:05 -0400
  21463. Received: by apakabar.cc.columbia.edu id AA26264
  21464.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 12:45:03 -0400
  21465. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!europa.eng.gtefsd.com!newsxfer.itd.umich.edu!jobone!heifetz.msen.com!simtel.coast.net!w8sdz
  21466. From: w8sdz@SimTel.Coast.NET (Keith Petersen)
  21467. Newsgroups: comp.protocols.kermit.misc
  21468. Subject: Re: FTP Mirrors and CDROMs - again
  21469. Message-Id: <9410041547.AA29857@SimTel.Coast.NET>
  21470. Date: Tue, 4 Oct 1994 15:47:08 GMT
  21471. Organization: SimTel, the Coast to Coast Software Repository (tm)
  21472. References: <36hv50$kgn@news.icaen.uiowa.edu> <9410010116.AA24289@SimTel.Coast.NET> <CwzKJs.Fx7@news.cern.ch> <milam.166.000ACD06@fmsrlu.srl.ford.com>
  21473. Lines: 37
  21474. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  21475.  
  21476. milam@fmsrlu.srl.ford.com (Bill Milam) writes:
  21477. >On dos platforms, I find Kermit to be the most
  21478. >robust package of it's type. There is no commercial package which works as
  21479. >well, and certainly no commercial package which is supported as well. I
  21480. >support Frank and Columbia for allowing us to use Kermit for all these years
  21481. >FREE of charge.
  21482.  
  21483. Look again.  MS-Kermit is written and maintained by Joe Doupnik, not Frank.
  21484.  
  21485. >I also have found that only Columbia had the latest versions
  21486. >of Kermit on-line and available, most other sites are a month or more behind.
  21487.  
  21488. That's because Joe Doupnik was too busy to upload MS-Kermit to SimTel. 
  21489. I had to wait for its announcement in the Info-Kermit Digest and then do
  21490. the ftp transfer myself.  In the early days that wasn't easy because the
  21491. MS-Kermit package was not distributed as an ARC or ZIP file.  Instead it
  21492. was a dozen or more individual files that the user had to download, hoping
  21493. not to miss any.
  21494.  
  21495. >If I am not mistaken you used to use Kermit to download
  21496. >from the old Simtel machine...
  21497.  
  21498. In the early days of SIMTEL20 I used Xmodem.  Later when Zmodem was
  21499. ported to TOPS-20 I used Zmodem.  I still use Zmodem.
  21500.  
  21501. You seem to think that this is some sort of effort to get Columbia to
  21502. agree to allow MS-Kermit to be put back on SimTel.  That is NOT the
  21503. case.  SimTel's policy is that programs submitted to the collection MUST
  21504. include documentation.  If MS-Kermit were submitted today it would be
  21505. rejected because it does not include documentation.
  21506.  
  21507. Keith
  21508. --
  21509. Keith Petersen
  21510. General Manager of SimTel, the Coast to Coast Software Repository (tm)
  21511. Internet: w8sdz@SimTel.Coast.NET    or      w8sdz@Vela.ACS.Oakland.Edu
  21512. Uucp: uunet!umich!vela!w8sdz                     BITNET: w8sdz@OAKLAND
  21513.  
  21514. From news@columbia.edu Tue Oct  4 14:25:31 1994
  21515. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27386
  21516.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 12:53:10 -0400
  21517. Received: by apakabar.cc.columbia.edu id AA26843
  21518.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 12:53:09 -0400
  21519. Newsgroups: comp.protocols.kermit.misc
  21520. Path: news.columbia.edu!panix!MathWorks.Com!solaris.cc.vt.edu!spcuna!ritz!kudut
  21521. From: kudut@ritz.mordor.com (Ken Udut)
  21522. Subject: Re: Columbia University's Kermit copyright
  21523. References: <36pbtj$cc0@usenety1.news.prodigy.com> <1994Oct4.101940.24819@chemabs.uucp> <9410041248.AA26638@SimTel.Coast.NET>
  21524. Organization: Mordor International BBS - Jersey City, NJ
  21525. Date: Tue, 4 Oct 1994 14:25:31 GMT
  21526. Message-Id: <Cx5K2J.JEy@ritz.mordor.com>
  21527. Lines: 41
  21528. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  21529.  
  21530. In article <9410041248.AA26638@SimTel.Coast.NET> w8sdz@SimTel.Coast.NET (Keith Petersen) writes:
  21531. >swl07@cas.org (Steven W. Layten) writes:
  21532. >>I agree with Frank -- putting Kermit on a CD-ROM and distributing to more
  21533. >>and more persons without a way to pick up funding for the support is
  21534. >>likely to kill the Kermit effort.
  21535. >
  21536. >It wouldn't kill the operation if Columbia offered their own CD-ROM.  If
  21537. >it included the complete documentation it would sell like hotcakes.  The
  21538. >proceeds of that would fund the entire Kermit operation.  They sell
  21539. >9-track tapes - why not CD-ROMs?
  21540.  
  21541. That's a good question, Keith :-)  I can understand why they might not 
  21542. wish to include the documentation on-disk, as then there's the 
  21543. possibility of folks copying it too much, which would hinder the project.
  21544.  
  21545. But if they offer, for example, a CD-ROM of their latest Kermit 
  21546. offerings, updated once a year, with two manuals for... oh, $99 or so, 
  21547. perhaps $129, they'd get some happy Information Services folks who like 
  21548. the new CD-ROM toys.  
  21549.  
  21550. In the case of Kermit, however, usually folks want only one version, 
  21551. perhaps two or three (unix, PC and Mac, for example for a typical college 
  21552. installation).  These can be distributed more cheaply via floppy disks or 
  21553. tape.  CD-ROMS have the problem of only being inexpensive if:
  21554.  
  21555. * Many are produced at once
  21556.  
  21557. or
  21558.  
  21559. * They have their own CD-writer, which is $5000 they probably don't have 
  21560. lying around.
  21561.  
  21562.  
  21563. If they produce many at once, the problem happens when Kermit upgrades 
  21564. occur, and the CD-ROMS are useless.  With magnetic media, *zot*, it's 
  21565. erased and a new copy is put on.
  21566.  
  21567. Am I on the right track, Frank?  :-)
  21568.  
  21569. Ken
  21570. kudut@ritz.mordor.com
  21571.  
  21572. From news@columbia.edu Tue Oct  4 18:02:32 1994
  21573. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07196
  21574.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 15:06:40 -0400
  21575. Received: by apakabar.cc.columbia.edu id AA08834
  21576.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 15:06:38 -0400
  21577. Path: news.columbia.edu!sol.ctr.columbia.edu!newsxfer.itd.umich.edu!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!not-for-mail
  21578. From: weber@rhrk.uni-kl.de
  21579. Newsgroups: comp.protocols.kermit.misc
  21580. Subject: Re: Columbia University's Kermit copyright
  21581. Date: 4 Oct 1994 13:02:32 -0500
  21582. Organization: UTexas Mail-to-News Gateway
  21583. Lines: 67
  21584. Sender: nobody@cs.utexas.edu
  21585. Message-Id: <9410041901.aa04352@sun.rhrk.uni-kl.de>
  21586. References: <9409300557.AA12036@simtel.coast.net> <36h490$9hc@apakabar.cc.columbia.edu> <36pbtj$cc0@usenety1.news.prodigy.com> <9410032004.AA20257@SimTel.Coast.NET>
  21587. Nntp-Posting-Host: news.cs.utexas.edu
  21588. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  21589.  
  21590. Hello,
  21591.  
  21592. w8sdz@SimTel.Coast.NET (Keith Petersen) writes:
  21593.  
  21594. >davidsen@usenety1.news.prodigy.com (Bill Davidsen) writes:
  21595. >>I totally fail to see how the funding of Kermit is diferent from the way
  21596. >>shareware works. You want people to use the software and buy the manual.
  21597. >>SO DO WE! But the idea that more people will buy the manuals if fewer
  21598. >>people have the software completely eludes me.
  21599.  
  21600. >In my opinion Kermit became CRIPPLEWARE several years ago when Columbia
  21601. >University stopped providing the full documentation as a file which could
  21602. >be downloaded.  This forces users to purchase the book if they wish to
  21603. >take full advantage of the software.
  21604.  
  21605. Oh please, give us a break.
  21606. I have been using Joe Doupnik's MS-Kermit every now and then for years, 
  21607. without ever reading a book about it. It comes with enough material to get
  21608. started and do what you need. It is everything else but "Crippleware" !
  21609.  
  21610. So, recently some of our power users switched from DOS to OS/2 and 
  21611. wanted, in that process, replace their early-eighties terminal software
  21612. that they used for their database retrieval sessions with something else. 
  21613. This was, in my opinion, a good job for OS/2-CKermit, and a good 
  21614. opportunity to buy the book. So I now have that book, and,
  21615. once we've figured out why this thing refuses telnet connections to 
  21616. some hosts while dealing perfectly with others, we will run C_Kermit
  21617. as well.
  21618.  
  21619. On the other hand, I have to admit that my boss wans't overly enthusiastic
  21620. to use "something you've pulled off the Net". So when he started playing
  21621. around with OS/2 I gave him the Walnut Creek Hobbes CD (on which kermit,
  21622. probaly for the last time, was) and suggested him to have a look
  21623. into the whole thing. The next day I had my purchase order for the book... :-)
  21624.  
  21625. So you can count at least one sold book onto a CD publishing...
  21626.  
  21627. I would like to add a personal remark: My posting, which was at the 
  21628. beginning of this thread, and which was a little bit furiously worded,
  21629. originally was meant as a private mail and was posted accidentally.
  21630. While I disagree with his opinion I respect Frank da Cruz' whish not to 
  21631. be further involved with this thread. What we are essentially discussing
  21632. here is the way Columbia funds the Kermit Project. The essence seems to be
  21633. that they earn money by both documentation sales and distribution fees.
  21634.  
  21635. Some people here have argued that CD publishing would increase documentation
  21636. sales. But no one has (and probably noone can do so without hard numbers
  21637. and good market estimates) weighed the increased publication revenues (?)
  21638. against estimated loss of distrubtion fees. Those who can do this best are
  21639. the Columbia folks, since they have at least hard numbers on their current 
  21640. funding status. Apparently these numbers tohether with the necessary estimates
  21641. say that they would not benefit from CDROM publishing. Without knowing 
  21642. their numbers, and without provably better own numbers, there isn't much
  21643. anybody can argue about that.
  21644.  
  21645. Regards
  21646.  
  21647. Christoph Weber-Fahr
  21648.  
  21649.  
  21650.  
  21651. -- 
  21652.   Christoph Weber-Fahr                  |  E-Mail:  weber@rhrk.uni-kl.de 
  21653.   Universitaet Kaiserslautern,  KIT     |  S-Mail:  Postfach 3049
  21654.   Tel. 0631/205-3391                    |           D-67653 Kaiserslautern
  21655. --------------------------  My personal opinion only    ---------------------
  21656.  
  21657.  
  21658. From news@columbia.edu Tue Oct  4 19:28:50 1994
  21659. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08759
  21660.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 15:28:53 -0400
  21661. Received: by apakabar.cc.columbia.edu id AA10798
  21662.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 15:28:52 -0400
  21663. Path: news.columbia.edu!usenet
  21664. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  21665. Newsgroups: comp.protocols.kermit.misc
  21666. Subject: Re: OS/2 C-Kermit (was Columbia University's Kermit copyrightt)
  21667. Date: 4 Oct 1994 19:28:50 GMT
  21668. Organization: Columbia University
  21669. Lines: 28
  21670. Message-Id: <36sadi$aha@apakabar.cc.columbia.edu>
  21671. References: <9410041901.aa04352@sun.rhrk.uni-kl.de>
  21672. Nntp-Posting-Host: fdc.cc.columbia.edu
  21673. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  21674.  
  21675. In article <9410041901.aa04352@sun.rhrk.uni-kl.de> weber@rhrk.uni-kl.de  
  21676. writes:
  21677. > So, recently some of our power users switched from DOS to OS/2 and 
  21678. > wanted, in that process, replace their early-eighties terminal software
  21679. > that they used for their database retrieval sessions with something else. 
  21680. > This was, in my opinion, a good job for OS/2-CKermit, and a good 
  21681. > opportunity to buy the book. So I now have that book, and,
  21682. > once we've figured out why this thing refuses telnet connections to 
  21683. > some hosts while dealing perfectly with others, we will run C_Kermit
  21684. > as well.
  21685. Fixed in 5A(190).  It was a bug :-)
  21686.  
  21687. You will like 5A(190) much better than 189.
  21688.  
  21689. Anonymous ftp to kermit.columbia.edu, directory kermit/test/bin,
  21690. binary mode, file cko190.zip.
  21691.  
  21692. - Frank
  21693. x
  21694. x
  21695. x
  21696. x
  21697. x
  21698. x
  21699. x
  21700. x
  21701. x
  21702.  
  21703. From news@columbia.edu Tue Oct  4 18:31:52 1994
  21704. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13221
  21705.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 16:21:47 -0400
  21706. Received: by apakabar.cc.columbia.edu id AA15681
  21707.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 16:21:46 -0400
  21708. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!pipex!lyra.csx.cam.ac.uk!warwick!news.shef.ac.uk!sunc!jp1ek
  21709. From: jp1ek@sunc.shef.ac.uk (Earl H. Kinmonth)
  21710. Newsgroups: comp.protocols.kermit.misc
  21711. Subject: Re: Kermit for DOS/V (Kanji Terminal Emulation)
  21712. Date: 4 Oct 1994 18:31:52 GMT
  21713. Organization: Centre for Japanese Studies, Univ. of Sheffield
  21714. Lines: 64
  21715. Message-Id: <36s72o$44l@hippo.shef.ac.uk>
  21716. References: <36p06e$nbp@apakabar.cc.columbia.edu>
  21717. Reply-To: jp1ek@sunc.shef.ac.uk
  21718. Nntp-Posting-Host: sunc.shef.ac.uk
  21719. X-Newsreader: TIN [version 1.2 PL2]
  21720. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  21721.  
  21722. Frank da Cruz (fdc@fdc.cc.columbia.edu) wrote:
  21723. : On 20 Sep 1994, jp1ek@sunc.sheffield.ac.uk (Earl H. Kinmonth) wrote:
  21724.  
  21725. [Question from jp1ek about DOS/V kermit pointing out bug in handling
  21726. of Old-Jis as used by Nikkei Telecom.]
  21727.  
  21728. : I don't know about the 3.13 beta you have -- Kanji terminal emulation for
  21729. : DOS/V might or might not be in it.  It will be in version 3.14 when it is
  21730. : announced (hopefully very soon).  I sent your question to the person who
  21731. : wrote the Kanji terminal support for MS-DOS Kermit and received this
  21732. : response:
  21733. : response:
  21734.  
  21735. : "Sorry for the delay.
  21736.  
  21737. : "I don't know about the Nikkei Data Base, and unfortunately, I have
  21738. : no friends who are using that DataBase.
  21739.  
  21740. : "However, I got another report from someone who is using the Nikkei
  21741. : Telecom DataBase, and he pointed out that Nikkei Telecom uses an
  21742. : improper ESC sequence to designate the JIS X 201 character set.  This
  21743. : is a well-known wrong sequence which was implemented in very very old
  21744. : software, and the sequence is 'ESC ( H' which should be used to
  21745. : designate the Swedish character set."
  21746.  
  21747. : So it looks like the right thing to do would be to get Nikkei Telecom
  21748. : to fix their character-set designating escape sequence.  If this is not
  21749. : the correct answer, let me know.
  21750.  
  21751. The response above is correct but unlikely to get much of a hearing
  21752. from Nikkei.  I have had dealings with the Nikkei people in the US,
  21753. the UK, and Japan.  Among the printable adjectives that come to mind
  21754. are smug, arrogant, thick, stupid, condescending, etc.  When you've
  21755. got a monopoly or near monopoly, your standards, however FUBAR they
  21756. may be you are "correct."
  21757.  
  21758. Just to give perspective on Nikkei, they consider themselves state of
  21759. the art because in the last couple of years, they've finally started
  21760. providing 2400 baud dialup service in Japan and packet switching ports
  21761. (at 2400 baud half duplex).  When I pointed out that most pimply
  21762. teenagers running a BBS out of some attic in the US or the UK were
  21763. providing 9600 baud or better, the irony was lost.
  21764.  
  21765. The interface on the Nikkei database has to be experienced to be
  21766. believed.  A former database expert at the British Library described
  21767. it as "user vicious" as contrasted with "user friendly."  When I was
  21768. programming mainframes in the early 1970s, the UNIVAC software for
  21769. interactive access was already more sophisticated than what Nikkei
  21770. offers in the 1990s.  The software that they supply for this very
  21771. pricey "service" seems to be at least 10 years old.  The highest
  21772. screen resolution it offers is EGA.
  21773.  
  21774. Nevertheless, dealing with the Nikkei is rather like working with the
  21775. IBM AT standard.  Yes, it's crap.  Yes, it's wrong.  But it's there
  21776. and it's a very big chunk of the market....
  21777.  
  21778. PS
  21779.  
  21780. The version of kterm supplied with SCO UNIX ODT Japanese supplement
  21781. does handle the Nikkei improper escape sequence properly....
  21782.  
  21783. --
  21784. Earl H. Kinmonth, Centre for Japanese Studies, University of Sheffield,
  21785. Sheffield, England S10 2TN jp1ek@sunc.sheffield.ac.uk
  21786.  
  21787.  
  21788. From news@columbia.edu Tue Oct  4 17:41:27 1994
  21789. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26039
  21790.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 19:32:39 -0400
  21791. Received: by apakabar.cc.columbia.edu id AA02229
  21792.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 19:32:38 -0400
  21793. Newsgroups: comp.protocols.kermit.misc
  21794. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!uunet!spcuna!ritz!kudut
  21795. From: kudut@ritz.mordor.com (Ken Udut)
  21796. Subject: "Fun" Kermit scripts?
  21797. Organization: Mordor International BBS - Jersey City, NJ
  21798. Date: Tue, 4 Oct 1994 17:41:27 GMT
  21799. Message-Id: <Cx5t53.2Cw@ritz.mordor.com>
  21800. Lines: 15
  21801. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  21802.  
  21803.  
  21804. Has anybody devised any "fun" Kermit scripts?
  21805.  
  21806. Things to answer questions, simulate an ftp site, such like that?
  21807.  
  21808. I know it's got to be possible (while perhaps no "real" FTP on MS-DOS, at
  21809. least look and feel like FTP, and then offer Kermit to download the file(s)
  21810. with)
  21811.  
  21812. Comments?
  21813.  
  21814.  
  21815. Ken
  21816. kudut@ritz.mordor.com
  21817.  
  21818.  
  21819. From news@columbia.edu Tue Oct  4 20:15:39 1994
  21820. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26069
  21821.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 19:33:03 -0400
  21822. Received: by apakabar.cc.columbia.edu id AA02247
  21823.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 19:33:02 -0400
  21824. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!uunet!news1.digex.net!cpcug!gerhard
  21825. From: gerhard@cpcug.digex.net (Gerhard Postpischil)
  21826. Newsgroups: comp.protocols.kermit.misc
  21827. Subject: Re: Windows Modem setup
  21828. Date: 4 Oct 1994 20:15:39 GMT
  21829. Organization: Capital PC User Group Rockville, MD USA
  21830. Lines: 25
  21831. Message-Id: <36sd5b$cg9@news1.digex.net>
  21832. References: <360h05$u6k@hermes.acs.ryerson.ca>
  21833. Nntp-Posting-Host: cpcug.org
  21834. X-Newsreader: TIN [version 1.2 PL2]
  21835. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  21836.  
  21837. Edmond Siu (esiu@ee.ryerson.ca) wrote:
  21838.  
  21839. : Does anybody know what line I have to add to system.ini or win.ini for windows inorder to use com port 4? because if I run telix in windows on com 4. the computer crashes.. There is a special line I'm suppose to add to it inorder to make windows accept 
  21840. communication on com port 4.
  21841.  
  21842. I'm not sure of the text you'd need to add to the .INI files, but have 
  21843. you tried defining the port explicitly?  If you go to the Setup, then 
  21844. Comm(serial?) ports, then Advanced Setup, you should be able to define 
  21845. the port explicitly - it adds one or two lines to the .INI file (if it 
  21846. doesn't, give it an incorrect address/IRQ to force the text to be added, 
  21847. then fix manually).
  21848.  
  21849. It is also possible that you have run afoul of another problem, that of 
  21850. serial ports having to be contiguous. If you do not have a COM2 or COM3, 
  21851. Windows will make them contiguous (e.g., by changing your COM4 to COM3), 
  21852. without changing the I/O address or IRQ.
  21853.  
  21854. Note also that the MicroSoft Diagnostic program (MSD.EXE) does *not* display 
  21855. correct IRQ information - it only shows the defaults.
  21856.  
  21857. Hope this helps.
  21858.  
  21859. Gerhard Postpischil                        @ Capital PC User Group
  21860. Vienna, VA    703-938-1928                   Rockville, MD
  21861. [Team OS/360]  [Team OS/2]
  21862.  
  21863. From news@columbia.edu Tue Oct  4 23:47:48 1994
  21864. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26792
  21865.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 19:47:52 -0400
  21866. Received: by apakabar.cc.columbia.edu id AA03321
  21867.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 19:47:50 -0400
  21868. Path: news.columbia.edu!usenet
  21869. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  21870. Newsgroups: comp.protocols.kermit.misc
  21871. Subject: Re: "Fun" Kermit scripts?
  21872. Date: 4 Oct 1994 23:47:48 GMT
  21873. Organization: Columbia University
  21874. Lines: 127
  21875. Message-Id: <36spj4$37l@apakabar.cc.columbia.edu>
  21876. References: <Cx5t53.2Cw@ritz.mordor.com>
  21877. Nntp-Posting-Host: fdc.cc.columbia.edu
  21878. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  21879.  
  21880. In article <Cx5t53.2Cw@ritz.mordor.com> kudut@ritz.mordor.com (Ken Udut)  
  21881. writes:
  21882. > Has anybody devised any "fun" Kermit scripts?
  21883. Yes, folks, Kermit can be fun too!
  21884.  
  21885. > Things to answer questions, simulate an ftp site, such like that?
  21886. Of course -- Even ELIZA-like programs can be written very easily.
  21887. Hint: make liberal use of the ASK and GETOK commands.
  21888.  
  21889. By the way, a long time ago, before Kermit had arithmetic operations
  21890. like INCREMENT and DECREMENT, etc, we had the following truly atrocious
  21891. submission from our good friend Gisbert in Bonn, still one of my all-time
  21892. favorites -- very much an "in" joke, don't take it seriously:
  21893.  
  21894. ;Date: Sat, 24 Aug 91 01:19:23 MEZ
  21895. ;From: "Gisbert W.Selke" <S00100%DBNRHRZ1@cuvmb.cc.columbia.edu>
  21896. ;Subject: The Old Curiosity Shop
  21897. ;Keywords: MS-DOS Kermit, PRODUCT macro
  21898. ;
  21899. ; File ARITHMET.INI
  21900. ; Arithmetic for MS-DOS-Kermit!
  21901. ; Gisbert W.Selke, Aug 1991.
  21902. ; Share and enjoy.
  21903. ;
  21904. ; This collection of macro definitions for MS-DOS Kermit 3.10 (or later)
  21905. ; was prompted by Chris Gianone's remark:
  21906. ; "Meanwhile, creative Kermit users will no doubt find their own uses for
  21907. ; [the PRODUCT macro]". (Using MS-DOS Kermit, 2nd ed., p 182)
  21908. ;
  21909. ; Having done some math, I think I *know* what a product is...
  21910. ; Given that Joe D. has made Kermit with its script language a universal
  21911. ; Turing machine...  There you are.
  21912. ;
  21913. ; TAKE this file from the MS-Kermit> prompt; then, you can do calculations:
  21914. ; tadd  <number1> <number2> <...> : show sum of numbers
  21915. ;                                   ex: tadd  15 17    yields 32
  21916. ;                                   ex: tadd  15 17 19 yields 51
  21917. ; tmult <number1> <number2> <...> : show product of numbers
  21918. ;                                   ex: tmult 11 13    yields 143
  21919. ;                                   ex: tmult 2 3 4 5  yields 120
  21920. ; tfact <number>                  : show factorial of number
  21921. ;                                   ex: tfact 5        yields 120
  21922. ; Macros used internally are explained below.
  21923. ;
  21924. ; More importantly, when you're in CONNECT mode and your host sends a
  21925. ; sequence like "ESC [ 15;7 ~", the product of the two numbers will
  21926. ; appear on your screen.
  21927. ;
  21928. ; Remark: Multiplication can be implemented more efficiently. This is
  21929. ;         left as an exercise for the reader. So are FFT and primality
  21930. ;         testing for large integers.
  21931. ;
  21932. ; Uses variables \%a..\%e as arithmetic registers and for passing results.
  21933. ;
  21934. ; Elementary operations:
  21935. ; Increment one-digit number (\%1) by 1; result in \%r, overflow in \%o:
  21936. def inc1  def \%o 0,if = \%1 0 def \%r 1,if = \%1 1 def \%r 2,-
  21937. if = \%1 2 def \%r 3,if = \%1 3 def \%r 4,if = \%1 4 def \%r 5,-
  21938. if > \%1 4 inc1b \%1
  21939. ; internal macro for inc1:
  21940. def inc1b if = \%1 5 def \%r 6,if = \%1 6 def \%r 7,if = \%1 7 def \%r 8,-
  21941. if = \%1 8 def \%r 9,if = \%1 9 def \%r 0,if = \%1 9 def \%o 1
  21942. ; Increment the number in registers \%a..\%e by 1:
  21943. def inc5  inc1 \%e, ass \%e \%r,if = \%o 0 go e,inc1 \%d, ass \%d \%r,-
  21944. if = \%o 0 go e,inc1 \%c, ass \%c \%r, if = \%o 0 go e,inc1 \%b,-
  21945. ass \%b \%r, if = \%o 0 go e,inc1 \%a, ass \%a \%r,:e
  21946.  
  21947. ; Split multi-digit number into digits, result in \%a..\%e:
  21948. def split def \%a 0,def \%b 0,def \%c 0,def \%d 0,def \%e 0,-
  21949. if = \%1 0 go e,set cou \%1,:l,inc5 \%a \%b \%c \%d \%e,if cou go l,:e
  21950.  
  21951. ; Add \%1 to number in \%a..\%e:
  21952. def add1  if = \%1 0 go e,set cou \%1,:l,inc5 \%a \%b \%c \%d \%e,-
  21953. if cou go l,:e
  21954. ; Add two numbers; result in \%a..\%e:
  21955. def add   split 0,if > \v(argc) 1 split \%1,if > \v(argc) 2 add1 \%2,-
  21956. if > \v(argc) 3 add1 \%3,if > \v(argc) 4 add1 \%4,-
  21957. if > \v(argc) 5 add1 \%5,if > \v(argc) 6 add1 \%6,-
  21958. if > \v(argc) 7 add1 \%7,if > \v(argc) 8 add1 \%8,-
  21959. if > \v(argc) 9 add1 \%9
  21960.  
  21961. ; Multiply number in \%a..\%e by \%1; result in \%a..\%e:
  21962. def mult1 set cou \%1,ass \%9 \%a\%b\%c\%d\%e,if > \%1 0 go s,split 0,-
  21963. go e,:l,add1 \%9,:s,if cou go l,:e
  21964. ; Multiply two numbers; result in \%a..\%e:
  21965. def mult  split 1,if > \v(argc) 1 split \%1,if > \v(argc) 2 mult1 \%2,-
  21966. if > \v(argc) 3 mult1 \%3,if > \v(argc) 4 mult1 \%4,-
  21967. if > \v(argc) 5 mult1 \%5,if > \v(argc) 6 mult1 \%6,-
  21968. if > \v(argc) 7 mult1 \%7,if > \v(argc) 7 mult1 \%8,-
  21969. if > \v(argc) 9 mult1 \%9
  21970.  
  21971. ; Time-honoured practice: a factorial routine:
  21972. def fact  split 1,if = \%1 0 go e,set count \%1,:l,mult1 \v(count),-
  21973. if cou go l,:e
  21974.  
  21975. ; user interface macros: calls for macros above, plus display of result:
  21976. def fatal echo Error: \%1\13, def \%1, stop      ; error handler
  21977. def tinc1  inc1 \%1,echo \%o\%r                  ; ex: tinc1  5
  21978. def tinc5b inc5b \%1 \%2 \%3 \%4 \%5,echo \%a\%b\%c\%d\%e
  21979.                                                  ; ex: tinc5b 1 2 3 9 9
  21980. def tinc5  split \%1,inc5 \%a \%b \%c \%d \%e,echo \%a\%b\%c\%d\%e
  21981.                                                  ; ex: tinc5 99
  21982. def tsplit split \%1,echo \%a\%b\%c\%d\%e        ; ex: tsplit 12399
  21983. def tadd   add  \%1 \%2 \%3 \%4 \%5 \%6 \%7 \%8 \%9,echo \%a\%b\%c\%d\%e
  21984. def tadd1  add1 \%1,echo \%a\%b\%c\%d\%e         ; ex: split 17, tadd1 15
  21985. def tmult1 mult1 \%1,echo \%a\%b\%c\%d\%e        ; ex: split 13, tmult1 7
  21986. def tmult  mult \%1 \%2 \%3 \%4 \%5 \%6 \%7 \%8 \%9,echo \%a\%b\%c\%d\%e
  21987. def tfact  if not = \v(argc) 2 fatal {TFact takes exactly 1 numeric -
  21988. argument},fact \%1,echo \%a\%b\%c\%d\%e
  21989. ; Multiplication per PRODUCT macro:
  21990. def product   mult \%1 \%2 \%3 \%4 \%5 \%6 \%7 \%8 \%9,-
  21991. askq \%9 Result is \%a\%b\%c\%d\%e\59 hit RETURN:,connect
  21992. ; Factorial:
  21993. def factorial if not = \v(argc) 2 fatal {Factorial takes exactly 1 -
  21994. numeric argument},fact \%1,askq \%9 Result is \%a\%b\%c\%d\%e\59 -
  21995. hit RETURN:,connect
  21996. ; End of MS-DOS-Kermit arithmetic routines.
  21997. ;
  21998. ;\Gisbert
  21999. ;
  22000. ;[Ed. - Gisbert, you have done a fine job of demonstrating the power,  
  22001. elegance,
  22002. ;user-friendliness, and ease of use of MS-DOS Kermit's script programming
  22003. ;language!  This breakthrough makes cryptic programming languages like C,
  22004. ;Fortran, and BASIC -- not to mention hand calculators -- totally obsolete.]
  22005.  
  22006. From news@columbia.edu Sat Oct  1 21:26:13 1994
  22007. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04665
  22008.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 22:03:40 -0400
  22009. Received: by apakabar.cc.columbia.edu id AA13342
  22010.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 22:03:39 -0400
  22011. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!godot.cc.duq.edu!newsfeed.pitt.edu!dsinc!netnews.upenn.edu!msuinfo!harbinger.cc.monash.edu.au!news.cs.su.oz.au!news.adelaide.edu.au!gateway.dircsa.org.au!cleese.apana.org.au!bugalugs.apana.org.au!andrew
  22012. From: andrew@bugalugs.apana.org.au (Andrew Dunstan)
  22013. Newsgroups: comp.protocols.kermit.misc
  22014. Subject: Re: CR translation in telnet connection
  22015. Date: 1 Oct 1994 21:26:13 GMT
  22016. Organization: The Bugalugs Machine
  22017. Lines: 35
  22018. Distribution: world
  22019. Message-Id: <36kk5l$drh@cleese.apana.org.au>
  22020. References: <28.335.uupcb@aecibbs.proxima.alt.za> <367bso$c1m@apakabar.cc.columbia.edu>
  22021. Nntp-Posting-Host: bugalugs.apana.org.au
  22022. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  22023.  
  22024. In article <367bso$c1m@apakabar.cc.columbia.edu>, fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  22025. |> In article <28.335.uupcb@aecibbs.proxima.alt.za>  
  22026. |> andrew.dunstan@aecibbs.proxima.alt.za (Andrew Dunstan)  writes:
  22027. |> > I am connecting to a DCX Ethergate which has a modem attached, and
  22028. |> > then dialling out on the modem. The Ethergate does no CRLF or CR-Nul
  22029. |> > translation, so I unfortunately end up sending one of these pairs,
  22030. |> > when all I want to send is a plain CR.
  22031. |> > 
  22032. |> The makers of the Ethergate should read RFC854.
  22033. |> 
  22034. |> However, this is becoming such a pervasive problem that the forthcoming
  22035. |> releases of MS-DOS Kermit and C-Kermit will add an option,
  22036. |> SET TELNET NEWLINE-MODE RAW, to allow carriage returns to be sent
  22037. |> bare, with no LF or NUL stuffed after them as required by the TELNET
  22038. |> NVT specification (RFC854).
  22039. |> 
  22040.  
  22041. Thanks for this, Frank. 
  22042.  
  22043. Strangely enough, old versions of kermit seem to work fine - it's only the
  22044. current version that I had to put together when we migrated to Solaris 2.3
  22045. that broke. Also, the Solaris Telnet client works fine - apparently it just
  22046. negotiates binary mode with the egate and then treats CR in raw mode.
  22047.  
  22048. BTW, apropos mirrors, insisting that columbia is the only official site
  22049. is a little hard on those of us who are an ocean and a continent away
  22050. from there. If every Australian user were to download via our US link, the
  22051. traffic would be quite heavy. Perhaps columbia should consider making
  22052. mirror arrangements with some well-known mirror sites, if only to ease the
  22053. network traffic.
  22054.  
  22055. cheers
  22056.  
  22057. andrew dunstan
  22058.  
  22059.  
  22060. From news@columbia.edu Sun Oct  2 08:37:05 1994
  22061. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04673
  22062.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 22:03:43 -0400
  22063. Received: by apakabar.cc.columbia.edu id AA13346
  22064.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 22:03:42 -0400
  22065. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!godot.cc.duq.edu!newsfeed.pitt.edu!dsinc!netnews.upenn.edu!msuinfo!harbinger.cc.monash.edu.au!news.cs.su.oz.au!news.adelaide.edu.au!gateway.dircsa.org.au!gateway.dircsa.org.au!not-for-mail
  22066. From: arthur@gateway.dircsa.org.au (Arthur Marsh)
  22067. Newsgroups: comp.protocols.kermit.misc
  22068. Subject: Re: Why is Kermit not popular on BBS-es?
  22069. Date: 2 Oct 1994 18:07:05 +0930
  22070. Organization: DIRCSA - Disability Information and Resource Centre
  22071. Lines: 27
  22072. Message-Id: <36lrfh$arb@gateway.dircsa.org.au>
  22073. References: <36g46d$m36@cruella.ee.pdx.edu>
  22074. Nntp-Posting-Host: gateway.dircsa.org.au
  22075. X-Newsreader: TIN [version 1.1 PL8]
  22076. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  22077.  
  22078. Roland Kwee (rkwee@ee.pdx.edu) wrote:
  22079.  
  22080. : While I like the Kermit protocol, the terminal emulator, the fact
  22081. : that it is available for free, and runs on nearly every platform,
  22082. : I am often unhappily surprised that many (most?) bulletin board
  22083. : systems offer an outdated and slow version of Kermit for downloading
  22084. : files. Also, products like Procomm show this trend.
  22085.  
  22086. : Is there a conspiracy against Kermit? Is it that because it is not
  22087. : a commercial enterprise that nobody lobbies for it? Are the owners
  22088. : of zmodem lobbying against it?
  22089.  
  22090. : Kermit deserves better.
  22091. : --Roland          email: RolandKwee@ACM.org
  22092.  
  22093. Agreed. Maximus 2.01wb has support for external protocols, and I'd love
  22094. to see a config file for using MS-Kermit with Maximus.
  22095.  
  22096. Having 25 cent local calls and only one PC, it's a little difficult and
  22097. expensive for me to do though.
  22098.  
  22099. Any volunteers?
  22100.  
  22101. -- 
  22102. Arthur Marsh, telephone +61-8-370-2365, fax +61-8-370-2133, +61-8-223-5082 
  22103.                arthur@gateway.dircsa.org.au, arthur@cswamp.apana.org.au
  22104. .endofsig
  22105.  
  22106. From news@columbia.edu Sun Oct  2 11:48:03 1994
  22107. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04681
  22108.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 22:03:46 -0400
  22109. Received: by apakabar.cc.columbia.edu id AA13351
  22110.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 22:03:46 -0400
  22111. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!godot.cc.duq.edu!newsfeed.pitt.edu!dsinc!netnews.upenn.edu!msuinfo!harbinger.cc.monash.edu.au!news.cs.su.oz.au!news.adelaide.edu.au!gateway.dircsa.org.au!gateway.dircsa.org.au!not-for-mail
  22112. From: arthur@gateway.dircsa.org.au (Arthur Marsh)
  22113. Newsgroups: comp.protocols.kermit.misc
  22114. Subject: Re: Minimal control prefixing
  22115. Date: 2 Oct 1994 21:18:03 +0930
  22116. Organization: DIRCSA - Disability Information and Resource Centre
  22117. Lines: 33
  22118. Message-Id: <36m6lj$cjg@gateway.dircsa.org.au>
  22119. References: <36hakv$f1u@panix3.panix.com>
  22120. Nntp-Posting-Host: gateway.dircsa.org.au
  22121. X-Newsreader: TIN [version 1.1 PL8]
  22122. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  22123.  
  22124. David Spencer (spencer@panix.com) wrote:
  22125. : What's the minimal set of control chars that should be prefixed in a
  22126. : sane environment?
  22127.  
  22128. : 99 44/100 % of my use of kermit is to have my i486 svr4.2 unix box
  22129. : talk over the phone lines to a Sun running Solaris. The modems on both
  22130. : ends are using Hayes protocol. The modem on the Sun end is connected
  22131. : to a terminal server, which I believe is using telnet to talk to the
  22132. : Suns. The modem on the i486 is hooked to a serial port.
  22133.  
  22134. : I assume I need to escape the flow control charaacters for the modems.
  22135. : I think both ends are using rts/cts, though at least one may use
  22136. : xon/xoff.
  22137.  
  22138. Would the output from stty -a at both ends be needed to see what characters
  22139. are intercepted by the Unixes at each end, or do kermit commands like the
  22140. following get around the problem:
  22141.  
  22142. set flow rts/cts
  22143. SET COMMAND BYTESIZE 8
  22144. SET TERMINAL BYTESIZE 8
  22145. SET TERMINAL CHARACTER-SET TRANSPARENT
  22146.  
  22147. I'd like to be able to make the data path from the serial port to C-Kermit
  22148. completely 8-bit transparent, with the only way of interrupting the 
  22149. connection being to drop carrier (which would send a SIGHUP).
  22150.  
  22151. Any suggestions?
  22152.  
  22153. -- 
  22154. Arthur Marsh, telephone +61-8-370-2365, fax +61-8-370-2133, +61-8-223-5082 
  22155.                arthur@gateway.dircsa.org.au, arthur@cswamp.apana.org.au
  22156. .endofsig
  22157.  
  22158. From news@columbia.edu Wed Oct  5 02:06:49 1994
  22159. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07224
  22160.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 23:02:48 -0400
  22161. Received: by apakabar.cc.columbia.edu id AA17378
  22162.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 23:02:47 -0400
  22163. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!swrinde!news.dell.com!tadpole.com!uunet!dove!venus.nist.gov!enh.nist.gov!reflib
  22164. From: reflib@enh.nist.gov
  22165. Newsgroups: comp.protocols.kermit.misc
  22166. Subject: Kermit takes an upper-case K.
  22167. Date: 5 OCT 94 02:06:49 GMT
  22168. Organization: NIST
  22169. Lines: 13
  22170. Message-Id: <5OCT94.02064950@enh.nist.gov>
  22171. Nntp-Posting-Host: enh.nist.gov
  22172. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  22173.  
  22174.   Some of you are committing the extreme indignity of referring
  22175. to this protocol as kermit.
  22176.  
  22177.   The original Kermit is the immortal brainchild of the alas all-
  22178. too-mortal Jim Henson; please do him the honor of capitalizing Kermit.
  22179.  
  22180.   If you are still in the dark, Kermit was the original Muppet, in
  22181. the form of a green frog, who originated the expression, "It's not
  22182. easy, being green."
  22183.  
  22184.   Thank you for your attention.
  22185.  
  22186. reflib@enh.nist.gov
  22187.  
  22188. From news@columbia.edu Sun Oct  5 03:16:54 1994
  22189. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07718
  22190.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 23:18:33 -0400
  22191. Received: by apakabar.cc.columbia.edu id AA18967
  22192.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 23:18:31 -0400
  22193. Path: news.columbia.edu!panix!MathWorks.Com!uhog.mit.edu!sgiblab!cs.uoregon.edu!usenet.ee.pdx.edu!not-for-mail
  22194. From: rkwee@ee.pdx.edu (Roland Kwee)
  22195. Newsgroups: comp.protocols.kermit.misc
  22196. Subject: Re: Columbia University's Kermit copyright
  22197. Date: 4 Oct 1994 20:16:54 -0700
  22198. Lines: 43
  22199. Message-Id: <36t5r6$2kl@cruella.ee.pdx.edu>
  22200. References: <36h490$9hc@apakabar.cc.columbia.edu> <36pbtj$cc0@usenety1.news.prodigy.com> <36pipa$jp4@apakabar.cc.columbia.edu> <36r5d2$28f@zippo.uwasa.fi>
  22201. Nntp-Posting-Host: cruella.ee.pdx.edu
  22202. X-Newsreader: NN version 6.4.19 #2
  22203. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  22204.  
  22205. ts@uwasa.fi (Timo Salmi) writes:
  22206.  
  22207. >I am writing this time as a management scientist and consultant, not
  22208. >as Garbo's moderator.
  22209.    [...very interesting argument deleted...]
  22210.  
  22211. This posting proves that it made sense to carry on this humungous thread
  22212. about _free_ kermit. It is a management problem. Columbia has a problem
  22213. with the costs of supporting users. Therefore, the problem is NOT
  22214. solved by restricting Kermit on CD roms.
  22215.  
  22216. In my opinion, Columbia should starting to charge for consulting. Or at
  22217. least ask a little louder for donations from users with questions.
  22218.  
  22219. If indeed there are so many users with problems, willing to spend time
  22220. and long-distance phone calls, then there is a market for Kermit consultants.
  22221. With a little preparation, I would like to think of starting a business.
  22222. (or is that against the principle that we are not allowed to make a profit
  22223. from Kermit....)
  22224.  
  22225. With free distribution of Kermit on as many CD's as possible, the consulting
  22226. business would do even better. Let the masses be introduced to Kermit!
  22227. As long as they like the features, and are willing to pay for solving the
  22228. problems, let them enjoy Kermit.
  22229.  
  22230. I would like to refer to organizations as the League for Programming
  22231. Freedom, and GNU (GNU's not Unix), and the Emacs Manifestos, that
  22232. contain further justifications of providing free software and how to
  22233. cover your costs.
  22234.  
  22235. Finally, I am for advancing the state of the art in computing, which in
  22236. the case of Kermit could mean: going to a better structured Kermit,
  22237. with a lot of reusable code. Right now, Kermit is dawntingly big. 
  22238. Popularizing Kermit would therefore be better than keeping it secluded.
  22239.  
  22240. Frank, I hope to encourage you this way, because I feel a lot for
  22241. you guys, and Kermit.
  22242.  
  22243. Timo, feel free to give us some more thoughts on management of the Kermit
  22244. project.
  22245.  
  22246.  
  22247. --Roland           email: RolandKwee@ACM.org
  22248.  
  22249. From news@columbia.edu Wed Oct  5 05:22:34 1994
  22250. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18133
  22251.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 5 Oct 1994 02:39:07 -0400
  22252. Received: by apakabar.cc.columbia.edu id AA29448
  22253.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 5 Oct 1994 02:39:06 -0400
  22254. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!newsxfer.itd.umich.edu!nntp.cs.ubc.ca!alberta!quartz.ucs.ualberta.ca!tribune.usask.ca!canopus.cc.umanitoba.ca!rahardj
  22255. From: rahardj@cc.umanitoba.ca (Budi Rahardjo)
  22256. Newsgroups: comp.protocols.kermit.misc
  22257. Subject: Re: Columbia University's Kermit copyright
  22258. Date: 5 Oct 1994 05:22:34 GMT
  22259. Organization: The University of Manitoba
  22260. Lines: 17
  22261. Message-Id: <36td6q$6bi@canopus.cc.umanitoba.ca>
  22262. References: <9409300557.AA12036@simtel.coast.net> <36h490$9hc@apakabar.cc.columbia.edu> <36pbtj$cc0@usenety1.news.prodigy.com> <36ps3p$h2s@eis.wfunet.wfu.edu> <36qh8u$j7n@canopus.cc.umanitoba.ca> <36rhq1$rpo@eis.wfunet.wfu.edu>
  22263. Nntp-Posting-Host: antares.cc.umanitoba.ca
  22264. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  22265.  
  22266. In <36rhq1$rpo@eis.wfunet.wfu.edu> matthews@wfu.edu (Rick Matthews) writes:
  22267. ...
  22268. :What do you think the ratio of support requests to manuals purchased
  22269. :is for people who get Kermit off a CD-ROM?
  22270.  
  22271. Do you have a hard number ? How big is it without a CD-ROM distribution?
  22272. As far as I am concern, we are speculating with this and can't
  22273. use it as the main issue.
  22274. As I said earlier, the main issue is not the people without manuals,
  22275. it is the objection of the CD-ROM vendors making money of kermit.
  22276. I understand this valid view, although am not totally agree.
  22277.  
  22278. -- budi
  22279. -- 
  22280. Budi Rahardjo <Budi_Rahardjo@UManitoba.Ca>
  22281. #include <std-disclaimer.h>
  22282. Unix Support - Computer Services - University of Manitoba
  22283.  
  22284. From news@columbia.edu Wed Oct  5 08:40:14 1994
  22285. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23374
  22286.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 5 Oct 1994 04:56:53 -0400
  22287. Received: by apakabar.cc.columbia.edu id AA03208
  22288.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 5 Oct 1994 04:56:52 -0400
  22289. Path: news.columbia.edu!panix!zip.eecs.umich.edu!newsxfer.itd.umich.edu!europa.eng.gtefsd.com!swiss.ans.net!news.dfn.de!Germany.EU.net!EU.net!sunic!trane.uninett.no!eunet.no!nuug!telepost.no!hydro.com!usenet
  22290. From: terjem@hda.hydro.com (Terje Mathisen)
  22291. Newsgroups: comp.protocols.kermit.misc
  22292. Subject: Faster Kermit protocol engine
  22293. Date: 5 Oct 1994 08:40:14 GMT
  22294. Organization: Hydro Data, Norsk Hydro (Norway)
  22295. Lines: 37
  22296. Message-Id: <36tope$13q1@vkhdib01.hda.hydro.com>
  22297. Reply-To: terjem@hda.hydro.com (Terje Mathisen)
  22298. Nntp-Posting-Host: sk08ts.hda.hydro.com
  22299. X-Newsreader: IBM NewsReader/2 v1.02
  22300. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  22301.  
  22302. When I wrote my Kermit implementation, I naturally looked for ways to
  22303. speed it up. Here are a few of the idea I used. Any comments?
  22304.  
  22305. Packet encoding:  I generate a 256x4 byte table of the needed encoding
  22306. for each possible character during the Send-Init negotiations.
  22307.  
  22308. The buffered file read routine sets the first position of the input
  22309. buffer after the file data to a value different from the last byte.
  22310.  
  22311. This lets me reduce the encoding to the following code: (MaxRep will
  22312. be either 1, if repeat quoting is unsupported or 94 if it is.)
  22313.  
  22314.   c = *ibuf; rep = 0;
  22315.   do {
  22316.     ibuf++;
  22317.     rep++;
  22318.   } while ((c == *ibuf) && (rep < MaxRep));
  22319. /* The previous loop must terminate due to the guard char */
  22320.  
  22321.   et = &encode_tab[c*4]; elen = *et++; /* Length-preceeded strings */
  22322.   if (rep + elen > 4) {  /* Use repeat prefix only if it's a win! */
  22323.     *ubuf++ = qrep;
  22324.     *ubuf++ = rep + ' ';
  22325.     rep = 1;
  22326.   }
  22327.   do {
  22328.     memcpy(ubuf,et,elen);
  22329.     ubuf += elen;
  22330.   } while (--rep);
  22331.  
  22332. The decoding process use another couple of 256-byte tables to handle
  22333. most of the logic and conversions.
  22334.  
  22335. -Terje Mathisen   (include std disclaimer)  <terjem@hda.hydro.com>
  22336. "almost all programming can be viewed as an exercise in caching"
  22337.  
  22338.  
  22339.  
  22340. From news@columbia.edu Wed Oct  5 04:45:15 1994
  22341. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23537
  22342.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 5 Oct 1994 05:00:28 -0400
  22343. Received: by apakabar.cc.columbia.edu id AA03299
  22344.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 5 Oct 1994 05:00:27 -0400
  22345. Newsgroups: comp.protocols.kermit.misc
  22346. Path: news.columbia.edu!panix!zip.eecs.umich.edu!newsxfer.itd.umich.edu!europa.eng.gtefsd.com!emory!metro.atlanta.com!spcuna!ritz!kudut
  22347. From: kudut@ritz.mordor.com (Ken)
  22348. Subject: Re: "Fun" Kermit scripts?
  22349. References: <Cx5t53.2Cw@ritz.mordor.com> <36spj4$37l@apakabar.cc.columbia.edu>
  22350. Sender: kudut@ritz.mordor.com (Ken Udut)
  22351. Organization: Mordor International BBS
  22352. Date: Wed, 5 Oct 1994 04:45:15 GMT
  22353. Message-Id: <RzYakqo7IFUS071yn@ritz.mordor.com>
  22354. Lines: 31
  22355. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  22356.  
  22357. In article <36spj4$37l@apakabar.cc.columbia.edu>,
  22358. fdc@fdc.cc.columbia.edu (Frank da Cruz) wrote:
  22359. > In article <Cx5t53.2Cw@ritz.mordor.com> kudut@ritz.mordor.com (Ken Udut)  
  22360. > writes:
  22361. > > Has anybody devised any "fun" Kermit scripts?
  22362. > > 
  22363. > Yes, folks, Kermit can be fun too!
  22364.  
  22365. :-)
  22366.  
  22367. > > Things to answer questions, simulate an ftp site, such like that?
  22368. > > 
  22369. > Of course -- Even ELIZA-like programs can be written very easily.
  22370. > Hint: make liberal use of the ASK and GETOK commands.
  22371.  
  22372. Thanks :-)  I'll be *definately* ordering the book shortly - there is *sooo* much I'll need to know, and this is a case where the documentation is a need, rather than a wish!  (from everything I've heard about the book, it's one of the most complete, best written books not only about Kermit, but about communications in general!)
  22373.  
  22374. I look forward to eventually being able to submit some cool scripts to you, Frank - and I surely hope to see others doing it too!  It seems like such an incredibly powerful tool, even at simple first glance!
  22375.  
  22376. > By the way, a long time ago, before Kermit had arithmetic operations
  22377. > like INCREMENT and DECREMENT, etc, we had the following truly atrocious
  22378. > submission from our good friend Gisbert in Bonn, still one of my all-time
  22379. > favorites -- very much an "in" joke, don't take it seriously:
  22380.  
  22381. Can't wait to check it out :-)
  22382.  
  22383. -- 
  22384. Kenneth Udut                                          kudut@ritz.mordor.com
  22385. Listowner of Y-RIGHTS@SJUVM.BITNET - discussion on the rights of kids/teens
  22386.  
  22387. From news@columbia.edu Wed Oct  5 11:45:11 1994
  22388. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28894
  22389.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 5 Oct 1994 07:55:19 -0400
  22390. Received: by apakabar.cc.columbia.edu id AA09167
  22391.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 5 Oct 1994 07:55:18 -0400
  22392. Path: news.columbia.edu!panix!zip.eecs.umich.edu!yeshua.marcam.com!charnel.ecst.csuchico.edu!nic-nac.CSU.net!news.Cerritos.edu!news.Arizona.EDU!helium.gas.uug.arizona.edu!rueiwun
  22393. From: rueiwun@helium.gas.uug.arizona.edu (Ruei-wun  Tu)
  22394. Newsgroups: comp.protocols.kermit.misc
  22395. Subject: Need kermit script for redial and idol protection...
  22396. Date: 5 Oct 1994 11:45:11 GMT
  22397. Organization: University of Arizona, Unix Users Group
  22398. Lines: 11
  22399. Message-Id: <36u3k7$nne@news.CCIT.Arizona.EDU>
  22400. Nntp-Posting-Host: helium.gas.uug.arizona.edu
  22401. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  22402.  
  22403. Hello,
  22404.      Does anyone have kermit script for Redial function?  I also try to
  22405.      write a script which can send a "SPACE" and "BACKSPACE" when the
  22406.      line is idol.  I am trying this because everytime I try to get a
  22407.      larger file from some FTP site to my remote account at home, my line
  22408.      will be cut off while I was waiting over 5 minutes without pressing
  22409.      any key on my keyboard.
  22410.  
  22411.      Please E-mail me your responses.  Thank you in advance...
  22412.  
  22413.      Rueiwun Tu
  22414.  
  22415. From news@columbia.edu Wed Oct  5 11:56:48 1994
  22416. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28941
  22417.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 5 Oct 1994 07:56:50 -0400
  22418. Received: by apakabar.cc.columbia.edu id AA09192
  22419.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 5 Oct 1994 07:56:49 -0400
  22420. Path: news.columbia.edu!usenet
  22421. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  22422. Newsgroups: comp.protocols.kermit.misc
  22423. Subject: Re: Minimal control prefixing
  22424. Date: 5 Oct 1994 11:56:48 GMT
  22425. Organization: Columbia University
  22426. Lines: 70
  22427. Message-Id: <36u4a0$8v6@apakabar.cc.columbia.edu>
  22428. References: <36m6lj$cjg@gateway.dircsa.org.au>
  22429. Nntp-Posting-Host: fdc.cc.columbia.edu
  22430. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  22431.  
  22432. In article <36m6lj$cjg@gateway.dircsa.org.au> arthur@gateway.dircsa.org.au  
  22433. (Arthur Marsh) writes:
  22434. > David Spencer (spencer@panix.com) wrote:
  22435. > : What's the minimal set of control chars that should be prefixed in a
  22436. > : sane environment?
  22437. > : 99 44/100 % of my use of kermit is to have my i486 svr4.2 unix box
  22438. > : talk over the phone lines to a Sun running Solaris. The modems on both
  22439. > : ends are using Hayes protocol. The modem on the Sun end is connected
  22440. > : to a terminal server, which I believe is using telnet to talk to the
  22441. > : Suns. The modem on the i486 is hooked to a serial port.
  22442. > : I assume I need to escape the flow control charaacters for the modems.
  22443. > : I think both ends are using rts/cts, though at least one may use
  22444. > : xon/xoff.
  22445. This is documented just about as much as it can practically be documented
  22446. in the update files that come with C-Kermit and MS-DOS Kermit.  Each
  22447. particular case is different.  If nobody is using Xon/Xoff, you don't
  22448. have to prefix 17, 19, 143, and 145.  But this is not something you can
  22449. derive by force of logic -- you really have to try it, because you really
  22450. never know.  Kermit itself does not use Xon/Xoff if you tell it not to.
  22451.  
  22452. > Would the output from stty -a at both ends be needed to see what characters
  22453. > are intercepted by the Unixes at each end?
  22454. >
  22455. Absolutely, positively not.  Kermit does everything in its power to change
  22456. the tty modes to make the connection transparent to every character --
  22457. except Xon and Xoff if that type of flow control is being used.  tty modes
  22458. are saved when Kermit starts up, modified for command parsing, modifited
  22459. again for file transfer, and restored (hopefully :-) when Kermit exits.
  22460.  
  22461. > or do kermit commands like the following get around the problem:
  22462. > set flow rts/cts
  22463. > SET COMMAND BYTESIZE 8
  22464. > SET TERMINAL BYTESIZE 8
  22465. > SET TERMINAL CHARACTER-SET TRANSPARENT
  22466. These commands (except SET FLOW) have nothing to do with file transfer.
  22467.  
  22468. > I'd like to be able to make the data path from the serial port to C-Kermit
  22469. > completely 8-bit transparent, with the only way of interrupting the 
  22470. > connection being to drop carrier (which would send a SIGHUP).
  22471. That is exactly what Kermit does itself.  You don't need to do anything
  22472. else in Kermit or on your Sun.  HOWEVER...  the problem is in the areas
  22473. outside of Kermit's control -- the modems (in your case), and in other
  22474. cases, the other components of the connection.
  22475.  
  22476. In your particular case you can probably get by with:
  22477.  
  22478.   SET FLOW RTS/CTS
  22479.   SET CONTROL UNPREFIX ALL
  22480.   SET CONTROL PREFIX 1 129
  22481.  
  22482. This prefixes only the packet-start character.  In fact, you don't even
  22483. need to do this, but then if you get any transmission errors, recovery is
  22484. more difficult, i.e. time-consuming.
  22485.  
  22486. The discussion above assumes you are using C-Kermit 5A(190) on both ends.
  22487. The picture is slightly different otherwise.
  22488.  
  22489. - Frank
  22490.  
  22491.  
  22492.  
  22493. > Arthur Marsh, telephone +61-8-370-2365, fax +61-8-370-2133, +61-8-223-5082 
  22494. >                arthur@gateway.dircsa.org.au, arthur@cswamp.apana.org.au
  22495. > ..endofsig
  22496.  
  22497. From news@columbia.edu Wed Oct  5 13:39:47 1994
  22498. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06020
  22499.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 5 Oct 1994 09:40:22 -0400
  22500. Received: by apakabar.cc.columbia.edu id AA15350
  22501.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 5 Oct 1994 09:40:21 -0400
  22502. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!eff!news.umbc.edu!not-for-mail
  22503. From: aalbin1@umbc.edu (Captain Adam Albina)
  22504. Newsgroups: comp.protocols.kermit.misc
  22505. Subject: Re: Windows Modem setup
  22506. Date: 5 Oct 1994 09:39:47 -0400
  22507. Organization: University of Maryland, Baltimore County
  22508. Lines: 18
  22509. Sender: aalbin1@umbc.edu
  22510. Message-Id: <36uab3$495@umbc8.umbc.edu>
  22511. References: <360h05$u6k@hermes.acs.ryerson.ca> <36sd5b$cg9@news1.digex.net>
  22512. Nntp-Posting-Host: f-umbc8.umbc.edu
  22513. Keywords: Windows, modem, base address
  22514. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  22515.  
  22516.  
  22517. I put the following lines in my system.ini and all works well on Com3.
  22518.  
  22519. (under the [386Enh] section, include:
  22520.  
  22521. Com1base=03F8
  22522. Com2base=2F8H
  22523. Com3base=03E8
  22524. Com4base=2E8H
  22525.  
  22526.  
  22527. No promises since I don't know your system- but this works for me.
  22528. Hope it helps.
  22529.  
  22530. Adam Albina
  22531.  
  22532.  
  22533.  
  22534.  
  22535. From news@columbia.edu Wed Oct  5 13:38:12 1994
  22536. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07467
  22537.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 5 Oct 1994 10:02:44 -0400
  22538. Received: by apakabar.cc.columbia.edu id AA16867
  22539.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 5 Oct 1994 10:02:43 -0400
  22540. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!library.ucla.edu!news.mic.ucla.edu!unixg.ubc.ca!quartz.ucs.ualberta.ca!tribune.usask.ca!canopus.cc.umanitoba.ca!rahardj
  22541. From: rahardj@cc.umanitoba.ca (Budi Rahardjo)
  22542. Newsgroups: comp.protocols.kermit.misc
  22543. Subject: Crash recovery ?
  22544. Date: 5 Oct 1994 13:38:12 GMT
  22545. Organization: University of Manitoba, Winnipeg, Manitoba, Canada
  22546. Lines: 9
  22547. Distribution: world
  22548. Message-Id: <36ua84$b7p@canopus.cc.umanitoba.ca>
  22549. Nntp-Posting-Host: antares.cc.umanitoba.ca
  22550. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  22551.  
  22552. Is there a plan to add crash recovery mechanism in kermit protocol?
  22553. This is the most important factor for me to use zmodem.
  22554.  
  22555. thanks
  22556. -- budi
  22557. -- 
  22558. Budi Rahardjo <Budi_Rahardjo@UManitoba.Ca>
  22559. #include <std-disclaimer.h>
  22560. Unix Support - Computer Services - University of Manitoba
  22561.  
  22562. From news@columbia.edu Wed Oct  5 13:57:54 1994
  22563. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09347
  22564.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 5 Oct 1994 10:24:35 -0400
  22565. Received: by apakabar.cc.columbia.edu id AA18940
  22566.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 5 Oct 1994 10:24:33 -0400
  22567. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!MathWorks.Com!zombie.ncsc.mil!news.duke.edu!eff!wariat.org!malgudi.oar.net!cmhcsys.cmhcsys.com!chuck
  22568. From: chuck@cmhcsys.com (Chuck Stickelman)
  22569. Newsgroups: comp.protocols.kermit.misc
  22570. Subject: Re: USing Unix editors while under kermit
  22571. Date: 5 Oct 1994 13:57:54 GMT
  22572. Organization: CMHC Systems
  22573. Lines: 32
  22574. Message-Id: <36ubd2$ao9@cmhcsys.cmhcsys.com>
  22575. References: <1994Sep29.122443.7@scff.chinalake.navy.mil>
  22576. Nntp-Posting-Host: news.cmhcsys.com
  22577. X-Newsreader: TIN [version 1.2 PL2]
  22578. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  22579.  
  22580. mbguest@scfe.chinalake.navy.mil wrote:
  22581. : I'm using version 1.89 on OS/2 to log into Unix box . The 
  22582. : problem I have is that I can't use either Emacs or Vi because
  22583. : of the lack of either an escape or an ALT-X that transmits
  22584. : to the application correctly.Also the arrow keys do not
  22585. : work in the applications . I have the book and have tried
  22586. : both set terminal arrow-keys and set terminal keypad-mode.
  22587. : What should I do next ?
  22588.  
  22589. : The oddest part is that the program works fine, arrow keys in
  22590. : application, etc - in calling into a VMS system. Is this some
  22591. : sort of anti-unix plot <G>.
  22592.  
  22593. : -- 
  22594. Matt,
  22595.  
  22596. I had the same sort of problem w/ vi and arrow keys from a DOS/Kermit
  22597. system.  One of our R&D folks pointed me to $HOME/.exrc.  (Note: ex and
  22598. vi are the same editor, different interface.)  When i added the line:
  22599.     set timeout=190
  22600. things got better.  Basically, vi has a timeout for escape sequences
  22601. which is based on the terminal's baud-rate.  Various pieces of a network
  22602. could cause timing delays that would exceed that limit.  Give it a try.
  22603.  
  22604. Chuck
  22605.  
  22606. --
  22607. Chuck Stickelman  <chuck@cmhcsys.com>
  22608. PC Sales Engineer                        Home:    (419) 362-1716
  22609. CMHC Systems, Inc.                       Work:    (614) 764-0143
  22610. 570 Metro Place N.                       WATTS:    (800) 528-9025
  22611. Dublin, OH 43017 USA                     FAX:    (614) 764-0439
  22612.  
  22613. From news@columbia.edu Wed Oct  5 14:18:26 1994
  22614. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09461
  22615.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 5 Oct 1994 10:27:17 -0400
  22616. Received: by apakabar.cc.columbia.edu id AA19118
  22617.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 5 Oct 1994 10:27:16 -0400
  22618. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!library.ucla.edu!ihnp4.ucsd.edu!usc!math.ohio-state.edu!jussieu.fr!univ-lille1.fr!zaphod.crihan.fr!warwick!bham!news!B.A.McCauley
  22619. From: B.A.McCauley@bham.ac.uk
  22620. Newsgroups: comp.protocols.kermit.misc
  22621. Subject: Re: Transparent kermit servers
  22622. Date: 05 Oct 1994 14:18:26 GMT
  22623. Organization: The University of Birmingham, UK.
  22624. Lines: 22
  22625. Message-Id: <B.A.MCCAULEY.94Oct5151826@wcl-l.bham.ac.uk>
  22626. References: <B.A.MCCAULEY.94Oct3141437@wcl-l.bham.ac.uk>
  22627.     <36p234$pi7@apakabar.cc.columbia.edu>
  22628. Nntp-Posting-Host: wcl-l.bham.ac.uk
  22629. In-Reply-To: fdc@fdc.cc.columbia.edu's message of 3 Oct 1994 13:48:20 GMT
  22630. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  22631.  
  22632. In article <36p234$pi7@apakabar.cc.columbia.edu> fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  22633. >In article <B.A.MCCAULEY.94Oct3141437@wcl-l.bham.ac.uk>  
  22634. >B.A.McCauley@bham.ac.uk writes:
  22635. >> Similarly would it be possible (on suitable OSs) to have the kermit
  22636. >> server program pass all non-kermit characters to another process via a
  22637. >> virtual terminal thus allowing the use of a mixture of Kermit server
  22638. >> commands and direct host OS interaction without the need to start the
  22639. >> and stop the remote server?
  22640. >>
  22641. >How does the server tell the difference between non-Kermit characters
  22642. >and a trashed Kermit packet?
  22643.  
  22644. A valid point. I would not expect to use this mode except over
  22645. relatively clean communication channels. Simply waiting for the EOL
  22646. character would probably suffice.
  22647. --
  22648.     \\   ( )   No Bullshit!   | Email: B.A.McCauley@bham.ac.uk
  22649.  .  _\\__[oo       from       | Phones: +44 121 471 3789 (home)
  22650. .__/  \\ /\@  /~)  /~[   /\/[ |  +44 121 627 2171 (voice) 2175 (fax)
  22651. .  l___\\    /~~) /~~[  /   [ | PGP-fp: D7 03 2A 4B D8 3A 05 37
  22652.  # ll  l\\  ~~~~ ~   ~ ~    ~ |         A1 93 FE EA BE E3 2A 91
  22653. ###LL  LL\\ (Brian McCauley)  | More: finger bam@wcl-rs.bham.ac.uk
  22654.  
  22655. From news@columbia.edu Wed Oct  5 14:46:56 1994
  22656. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10832
  22657.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 5 Oct 1994 10:47:04 -0400
  22658. Received: by apakabar.cc.columbia.edu id AA20624
  22659.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 5 Oct 1994 10:47:02 -0400
  22660. Path: news.columbia.edu!usenet
  22661. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  22662. Newsgroups: comp.protocols.kermit.misc
  22663. Subject: Re: Crash recovery ?
  22664. Date: 5 Oct 1994 14:46:56 GMT
  22665. Organization: Columbia University
  22666. Lines: 11
  22667. Distribution: world
  22668. Message-Id: <36ue90$k4c@apakabar.cc.columbia.edu>
  22669. References: <36ua84$b7p@canopus.cc.umanitoba.ca>
  22670. Nntp-Posting-Host: fdc.cc.columbia.edu
  22671. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  22672.  
  22673. In article <36ua84$b7p@canopus.cc.umanitoba.ca> rahardj@cc.umanitoba.ca (Budi  
  22674. Rahardjo) writes:
  22675. > Is there a plan to add crash recovery mechanism in kermit protocol?
  22676. > This is the most important factor for me to use zmodem.
  22677. Not only is there a plan, it's done.  Crash recovery will be in C-Kermit
  22678. 5A(190) and MS-DOS Kermit 3.14, and perhaps also in some other popular
  22679. Kermit implementations soon thereafter.  Watch comp.protocols.kermit.announce
  22680. for announcements.
  22681.  
  22682. - Frank
  22683.  
  22684. From news@columbia.edu Wed Oct  5 14:39:17 1994
  22685. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11605
  22686.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 5 Oct 1994 10:56:18 -0400
  22687. Received: by apakabar.cc.columbia.edu id AA21304
  22688.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 5 Oct 1994 10:56:16 -0400
  22689. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!concert!bigblue.oit.unc.edu!tipper.oit.unc.edu!ewt
  22690. From: ewt@tipper.oit.unc.edu (Erik Troan)
  22691. Newsgroups: comp.protocols.kermit.misc
  22692. Subject: Re: FTP Mirrors and CDROMs - again
  22693. Date: 5 Oct 1994 14:39:17 GMT
  22694. Organization: University of North Carolina, Chapel Hill
  22695. Lines: 34
  22696. Message-Id: <36udql$l3a@bigblue.oit.unc.edu>
  22697. References: <36hv50$kgn@news.icaen.uiowa.edu> <36i5s7$90e@apakabar.cc.columbia.edu> <9410010116.AA24289@simtel.coast.net>
  22698. Nntp-Posting-Host: tipper.oit.unc.edu
  22699. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  22700.  
  22701. In article <9410010116.AA24289@simtel.coast.net>,
  22702. Keith Petersen <w8sdz@SimTel.Coast.NET> wrote:
  22703. >fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  22704. >I hope that someone does have a magic pill because when you say that
  22705. >that Kermit cannot be distributed on *any* CD-ROMs it means that the
  22706. >folks who distribute FreeBSD, BSDI, SunOS, Linux, and other operating
  22707. >systems, as well as DECUS, may no longer include Kermit, even through
  22708. >it is free of charge, on their CD-ROMs.
  22709.  
  22710. For the record, I don't know of any Linux CDROM's that still distribute
  22711. kermit (there used to be some due to ignorance, but it looks like that
  22712. has been cleared up for a while now) and it doesn't seem to be hurting
  22713. linux at all. The CDROM's still ship with zmodem, xmodem, etc., and the
  22714. first thing I do after installing Linux is downlaod kermit with zmodem.
  22715.  
  22716. Inconvienent? Yes.
  22717. Unreasonable? No.
  22718.  
  22719. If Columbia doesn't make money from the CDROMs, why should the CDROMs make
  22720. money from Columbia? That doesn't seem fair at all.
  22721.  
  22722. Get real folks. Kermit is not going to die because of this, and neither are
  22723. ftp sites. It's not hard to find kermit on the net even if some sites
  22724. do exclude it.
  22725.  
  22726.  
  22727. Erik
  22728.  
  22729.  
  22730. -- 
  22731. ----------------------------------------------------------------------------
  22732. "Like a fool I let dreams become great expectations" - Chess
  22733.  
  22734.         Erik Troan = ewt@sunsite.unc.edu = http://sunsite.unc.edu/ewt
  22735.  
  22736. From news@columbia.edu Wed Oct  5 14:46:17 1994
  22737. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13462
  22738.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 5 Oct 1994 11:25:19 -0400
  22739. Received: by apakabar.cc.columbia.edu id AA23489
  22740.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 5 Oct 1994 11:25:17 -0400
  22741. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!europa.eng.gtefsd.com!uhog.mit.edu!news.kei.com!ub!ns.potsdam.edu!news.potsdam.edu!nelson
  22742. From: nelson@crynwr.crynwr.com (Russell Nelson)
  22743. Newsgroups: comp.protocols.kermit.misc
  22744. Subject: Re: Please explain Kermit's copyright
  22745. Date: 05 Oct 1994 14:46:17 GMT
  22746. Organization: Crynwr Software
  22747. Lines: 58
  22748. Message-Id: <NELSON.94Oct5104617@crynwr.crynwr.com>
  22749. References: <36lpdt$ns4@cruella.ee.pdx.edu> <36ml93$1ja@apakabar.cc.columbia.edu>
  22750. Nntp-Posting-Host: nh2.potsdam.edu
  22751. In-Reply-To: fdc@fdc.cc.columbia.edu's message of 2 Oct 1994 15:57:23 GMT
  22752. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  22753.  
  22754. In article <36ml93$1ja@apakabar.cc.columbia.edu> fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  22755.  
  22756.    I think what disturbs me most about this discussion is that people
  22757.    seem to be more concerned with "how can we make money from this?"
  22758.    than "how can I get it for my own use?" or "how can I learn to use
  22759.    it more effectively?".
  22760.  
  22761. I think you're wrong.  I think that most people's concern is "How can
  22762. I make Kermit available for other's use?"  YOUR concern is "How can
  22763. Columbia make sure it makes money from this?" or at least not lose
  22764. money.  However, Columbia University, which sells its reputation to
  22765. its students and researchers, gains reputation from greater use of
  22766. Kermit.  So, Columbia's greater goals are served by wider use of
  22767. Kermit, even if it costs Columbia money to support the Kermit group.
  22768.  
  22769. Similarly, it was in Clarkson's best interest to fund its free
  22770. software devlopment.  Unfortunately, universities are stupid and short
  22771. sighted, which is why I'm no longer at one.  I heard that a prominent
  22772. Clarkson alumni asked to meet the people behind the Clarkson Packet
  22773. Driver Collection, and the director of the computing center had to
  22774. explain that I'd left the university.
  22775.  
  22776.    If you want to make money from our work, then you will have to share that
  22777.    money with us.
  22778.  
  22779. But as others have pointed out, free software isn't free.  There's
  22780. always a price associated with it.  So *someone* is always making
  22781. money off Kermit distribution.  You are trying to force physical media
  22782. distributors to pay you, simply because you can.
  22783.  
  22784.    If you want to use our work directly, nobody is forcing you to
  22785.    spend one red cent.  If Kermit became shareware, as so many of you
  22786.    advocate, then everybody who uses it would have to (a) send us
  22787.    money, (b) stop using it, or (c) become an outlaw.  That would
  22788.    include the universities, government agencies, research institute,
  22789.    hospitals, convents, and orphanages.
  22790.  
  22791.    Why don't we give it rest, eh?  Thanks.
  22792.  
  22793. Because the Kermit copyright is limiting (intentionally or not) the
  22794. distribution of Kermit.  If you want universities, government
  22795. agencies, research institutes, hospitals, convents, and orphanages to
  22796. be able to use Kermit, you have to make sure that they can get it.
  22797.  
  22798. What you are doing, by forcing the non-Internet-connected users to buy
  22799. floppies from you, is forcing the poorest Kermit users to fund the
  22800. richest, because your floppy prices are much higher than any shareware
  22801. house.  I know, because you're listed in my HOWTOGET.IT file
  22802. for packet drivers as the only place to get packet drivers on
  22803. floppies.
  22804.  
  22805. Your policies are perverse, and do not meet your stated goals.
  22806.  
  22807. --
  22808. -russ <nelson@crynwr.com>    http://www.crynwr.com/crynwr/nelson.html
  22809. Crynwr Software   | Crynwr Software sells packet driver support | ask4 PGP key
  22810. 11 Grant St.      | +1 315 268 1925 (9201 FAX)  | What is thee doing about it?
  22811. Potsdam, NY 13676 | LPF member - ask me about the harm software patents do.
  22812.  
  22813. From news@columbia.edu Wed Oct  5 15:56:36 1994
  22814. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15785
  22815.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 5 Oct 1994 11:56:45 -0400
  22816. Received: by apakabar.cc.columbia.edu id AA25665
  22817.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 5 Oct 1994 11:56:39 -0400
  22818. Path: news.columbia.edu!usenet
  22819. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  22820. Newsgroups: comp.protocols.kermit.misc
  22821. Subject: Re: Please explain Kermit's copyright
  22822. Date: 5 Oct 1994 15:56:36 GMT
  22823. Organization: Columbia University
  22824. Lines: 48
  22825. Message-Id: <36uibk$p1s@apakabar.cc.columbia.edu>
  22826. References: <NELSON.94Oct5104617@crynwr.crynwr.com>
  22827. Nntp-Posting-Host: fdc.cc.columbia.edu
  22828. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  22829.  
  22830. In article <NELSON.94Oct5104617@crynwr.crynwr.com> nelson@crynwr.crynwr.com  
  22831. (Russell Nelson) writes:
  22832. > What you are doing, by forcing the non-Internet-connected users to buy
  22833. > floppies from you, is forcing the poorest Kermit users to fund the
  22834. > richest, because your floppy prices are much higher than any shareware
  22835. > house.
  22836. >
  22837. "Forcing" might be too strong a word, Russ, but you have point which most
  22838. of our readers are missing (even though I have brought it up before):
  22839.  
  22840. These "poorest Kermit users" (if we can infer they are poor from
  22841. the fact that they are not on the Internet) are paying the money that
  22842. supports the work that we do which you, the "richest" are benefitting from
  22843. for free.  Is there something wrong with this picture?  Of course.
  22844.  
  22845. Suppose the situation were reversed, and the Internet users, who are so
  22846. particular about how they can get our software and turn it into a moneymaker
  22847. for themselves without supporting our work -- or even, leaving those
  22848. people aside (even though it is in their behalf that these discussions are
  22849. being conducted, ad nauseum) -- those on the Internet who simply use our
  22850. software themselves... (now remember how this clause began, all of you
  22851. full backup parsers in human clothing...) paid for our work so that we
  22852. could distribute it free of charge to the people who are not on the
  22853. Internet?  You all know where to send your money.  Thanks.
  22854.  
  22855. I think everybody would like to see Kermit on CDROMs.  The
  22856. question is -- and nobody has yet answered it -- how do we do that without
  22857. killing the Kermit effort?  I'm not asking any of you to answer this
  22858. question: I don't think you can, unless you step forward with an endowment
  22859. that lets us carry on our work indefinitely in such a way that no funds
  22860. need to be raised, and everybody's needs are met.  As long as we must pay
  22861. or our own work, then it is up to us to decide how to do it.
  22862.  
  22863. I'd also like to remind everybody of the dynamics of newsgroups -- there
  22864. are variable amounts of time delay, which result in a peculiar kind of
  22865. resonance in discussions like this.  Russ's message was in response to one
  22866. of mine from many days ago.  Russ has a unique perspective, and apart from
  22867. his uncharacteristic closing sentence, offers some valuable insights.
  22868.  
  22869. But most of this is old territory,
  22870. and does not need to come to the foreground again and again simply because
  22871. of the mechanics of netnews.  So please, when you are composing your next
  22872. barb in the heat of the moment, pay attention to the date of the message
  22873. you are responding to, and if it is a day or two or more in the past, you
  22874. are probably not going to contribute anything new.
  22875.  
  22876. - Frank
  22877.  
  22878.  
  22879. From news@columbia.edu Wed Oct  5 14:01:39 1994
  22880. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16982
  22881.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 5 Oct 1994 12:08:56 -0400
  22882. Received: by apakabar.cc.columbia.edu id AA26668
  22883.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 5 Oct 1994 12:08:55 -0400
  22884. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!usc!elroy.jpl.nasa.gov!lll-winken.llnl.gov!decwrl!pa.dec.com!nntpd.lkg.dec.com!taren2la.apd.dec.com!groot
  22885. From: groot@apd.dec.com (Henk de Groot)
  22886. Newsgroups: comp.protocols.kermit.misc
  22887. Subject: Re: Columbia University's Kermit copyright
  22888. Date: 5 Oct 94 14:01:39 GMT
  22889. Organization: Digital Equipment Corporation
  22890. Lines: 29
  22891. Message-Id: <groot.781365699@taren2la.apd.dec.com>
  22892. References: <9410041248.AA26638@SimTel.Coast.NET> <36rnho$1kj@apakabar.cc.columbia.edu>
  22893. Reply-To: groot@apd.dec.com (Henk de Groot)
  22894. Nntp-Posting-Host: taren2la.apd.dec.com
  22895. X-Disclaimer: This opinion is mine alone
  22896. X-Newsreader: NN version 6.5.0 #1 (NOV)
  22897. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  22898.  
  22899. Ok, we all jumped on Frank for not allowing Kermit on CD-ROM. We heard his
  22900. arguments and it is clear that it has to be this way. Still I find it a
  22901. pitty that Kermit was removed from the major archives for this reason. I
  22902. remember that we lost other programs too this way.
  22903.  
  22904. Is it possible to set up a special directory tree for those programs that
  22905. are of great value (like Kermit) but are not allowed to go on a CD-ROM.
  22906. This directory is not meant for every other program, authors must still
  22907. be pushed to allow their programs on CD-ROM, but it would solve difficult
  22908. situations like this one (an author that will not give-in and a product that
  22909. is too valuable to looze). During the generation of the CD-ROM this
  22910. directory can be skipped so that the programs will not appear on CD-ROM.
  22911.  
  22912. Maybe we can get some of the other programs that were lost because of the
  22913. CD-ROM restiction back also (or did they all agree with the CD-ROM
  22914. distribution in the end?).
  22915.  
  22916. Please Keith or Timo, can this be arranged or are we in a Draw position as
  22917. far as Kermit is concerned? I think its your turn now to give in or give up.
  22918.  
  22919. Kind Regards,
  22920.  
  22921.  
  22922. Henk.
  22923.  
  22924. --
  22925.   /   / de Groot  Dep: ALD2          | E-Mail: groot@apd.dec.com
  22926.  /---/ __  __  /  Tel: +31 55 432104 | Corp: Digital Equipment Corporation
  22927. /   / (-_ / / /(  Loc: FP-B09        | Site: Apeldoorn, The Netherlands
  22928.  
  22929. From news@columbia.edu Wed Oct  5 16:08:58 1994
  22930. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17009
  22931.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 5 Oct 1994 12:09:08 -0400
  22932. Received: by apakabar.cc.columbia.edu id AA26697
  22933.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 5 Oct 1994 12:09:06 -0400
  22934. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  22935. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  22936. Newsgroups: comp.protocols.kermit.misc
  22937. Subject: Re: Need kermit script for redial and idol protection...
  22938. Date: 5 Oct 1994 16:08:58 GMT
  22939. Organization: Columbia University
  22940. Lines: 25
  22941. Message-Id: <36uj2q$q1g@apakabar.cc.columbia.edu>
  22942. References: <36u3k7$nne@news.ccit.arizona.edu>
  22943. Nntp-Posting-Host: watsun.cc.columbia.edu
  22944. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  22945.  
  22946. In article <36u3k7$nne@news.ccit.arizona.edu>,
  22947. Ruei-wun  Tu <rueiwun@helium.gas.uug.arizona.edu> wrote:
  22948. >Hello,
  22949. >     Does anyone have kermit script for Redial function?  I also try to
  22950. >     write a script which can send a "SPACE" and "BACKSPACE" when the
  22951. >     line is idol.  I am trying this because everytime I try to get a
  22952. >     larger file from some FTP site to my remote account at home, my line
  22953. >     will be cut off while I was waiting over 5 minutes without pressing
  22954. >     any key on my keyboard.
  22955. >
  22956. >     Please E-mail me your responses.  Thank you in advance...
  22957. >
  22958. >     Rueiwun Tu
  22959.  
  22960. C-Kermit 5a(190) comes with a REDIAL macro.  
  22961.  
  22962. As far as idle states, and disconnects during large ftp's.  I would suggest
  22963. using the HASH mode for ftp's.  This will generate a # mark for every X
  22964. bytes transfered.  This might prevent the disconnection, unless the daemon
  22965. only monitors incoming characters.
  22966.  
  22967. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  22968. "C-Kermit: available on more platforms than any other communications software."
  22969. "Kermit FTP: sending files whenever and wherever they are needed."
  22970. OS/2 version 189 via ftp from watsun.cc.columbia.edu /kermit/bin/ckoker.zip 
  22971.  
  22972. From news@columbia.edu Wed Oct  5 15:25:21 1994
  22973. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20948
  22974.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 5 Oct 1994 12:53:05 -0400
  22975. Received: by apakabar.cc.columbia.edu id AA00553
  22976.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 5 Oct 1994 12:53:04 -0400
  22977. Path: news.columbia.edu!panix!MathWorks.Com!solaris.cc.vt.edu!uunet!news.uiowa.edu!icaen!mjo
  22978. From: mjo@ecn.uiowa.edu (Mike O'Connor)
  22979. Newsgroups: comp.protocols.kermit.misc
  22980. Subject: Re: FTP Mirrors and CDROMs - again
  22981. Date: 5 Oct 1994 15:25:21 GMT
  22982. Organization: HP InterWorks Member
  22983. Lines: 53
  22984. Message-Id: <36ugh1$2u9@news.icaen.uiowa.edu>
  22985. References: <36i5s7$90e@apakabar.cc.columbia.edu> <9410010116.AA24289@simtel.coast.net> <36udql$l3a@bigblue.oit.unc.edu>
  22986. Nntp-Posting-Host: iworks.ecn.uiowa.edu
  22987. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  22988.  
  22989. In article <36udql$l3a@bigblue.oit.unc.edu> ewt@tipper.oit.unc.edu (Erik Troan) writes:
  22990.  
  22991. >Get real folks. Kermit is not going to die because of this, and neither are
  22992. >ftp sites. It's not hard to find kermit on the net even if some sites
  22993. >do exclude it.
  22994. >
  22995. >Erik
  22996. >        Erik Troan = ewt@sunsite.unc.edu = http://sunsite.unc.edu/ewt
  22997.  
  22998. Then practice what you preach.  sunsite is funded in part by Sun, a 
  22999. commercial concern if ever there was one.  sunsite, specifically,
  23000. you, though there's kermit stuff on there owned by other users, 
  23001. is distributing Kermit.  Unless you have written authorization from
  23002. Columbia, I suggest that you think about what you are saying.      
  23003.  
  23004. Here's the pertinent section of the Kermit Copyright:
  23005.  
  23006.   product itself, and it may not be included in or distributed with
  23007.   commercial products or otherwise distributed by commercial concerns to
  23008.   their clients or customers without written permission of the Office of
  23009.   Kermit Development and Distribution, Columbia University.
  23010.  
  23011. Here's the pertinent part of ftp://kermit.columbia.edu/READ.ME:
  23012.  
  23013. are provided without warranty of any kind.  Please read specific copyright
  23014. notices and disclaimers.  Most of this software is not "public domain".
  23015.  
  23016. Here's the pertinent part of ftp://sunsite.unc.edu/DISCLAIMER.readme:
  23017.  
  23018. ACCESS TO AND USE OF THE SunSite.unc.edu FTP SERVER IS SUBJECT TO THE 
  23019. FOLLOWING TERMS AND CONDITIONS:   All software, documentation, research 
  23020. data, and other materials ("Materials") submitted for installation on the 
  23021. SunSite.unc.edu FTP Server will be deemed in the public domain, except for 
  23022. any express restrictions included in such Materials by the submitting party.  
  23023. Neither the University of North Carolina ("UNC") nor Sun Microsystems 
  23024. Computer Corporation ("Sun") are responsible for providing notice of or 
  23025. enforcing any such restrictions.  All parties submitting Materials to 
  23026. the SunSite.unc.edu FTP Server represent and warrant to UNC and Sun that 
  23027. the submission, installation, copying, distribution, and use of such 
  23028. Materials in connection with the SunSite.unc.edu FTP Server will not 
  23029. violate any other party's proprietary rights.  Neither UNC nor Sun are 
  23030.  
  23031. And check out the files that you own on sunsite.unc.edu:
  23032.  
  23033.  pub/Linux/apps/comm:
  23034.  
  23035. -rwxr--r--  1 ewt        175588 Aug 11  1993 ckermit-189.tar.gz
  23036.  
  23037.  pub/Linux/distributions/MCC/1.0+/extra_packages:
  23038.  
  23039. -r--r--r--  1 ewt        173334 Mar 27 05:29 kermit.tgz
  23040.  
  23041. -Mike
  23042.  
  23043. From news@columbia.edu Wed Oct  5 15:56:29 1994
  23044. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21316
  23045.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 5 Oct 1994 12:58:02 -0400
  23046. Received: by apakabar.cc.columbia.edu id AA01022
  23047.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 5 Oct 1994 12:58:00 -0400
  23048. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!zip.eecs.umich.edu!newsxfer.itd.umich.edu!news1.oakland.edu!wsu-cs!mathsun!handel
  23049. From: handel@math.wayne.edu (David Handel)
  23050. Newsgroups: comp.protocols.kermit.misc
  23051. Subject: Information display during transfers
  23052. Date: 5 Oct 1994 15:56:29 GMT
  23053. Organization: Wayne State University Math Department, Detroit
  23054. Lines: 21
  23055. Distribution: world
  23056. Message-Id: <36uibd$n8j@wsu-cs.cs.wayne.edu>
  23057. Reply-To: handel@math.wayne.edu (David Handel)
  23058. Nntp-Posting-Host: mathsun.math.wayne.edu
  23059. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  23060.  
  23061. I recently started using MS-Kermit 3.13 to connect from my home PC
  23062. (a Dell XPS P60) to my Sun login at my university. The Kermit at
  23063. the Sun end seems to be C-Kermit and the information
  23064. "4D(061) 8 Sep 86, 4.2 BSD" appears when it is summoned up.
  23065.  
  23066. I have experienced inconsistencies in the information display during
  23067. file transfer. Sometimes during a transfer the percentage of the
  23068. transfer completed is displayed (sometimes digitally, sometimes in
  23069. a linear graphical fashion), and other times this piece of information
  23070. is not displayed at all. I am not aware of any variations in my 
  23071. procedure which would cause these differences. Can anyone explain? 
  23072. Are there measures I can take to ensure that the percent completed
  23073. information is always displayed?
  23074.  
  23075. Thank you,
  23076. Dave
  23077.  
  23078. -- 
  23079.      Dave Handel                  Department of Mathematics 
  23080.      handel@math.wayne.edu        Wayne State University 
  23081.                                   Detroit, Michigan 48202
  23082.  
  23083. From news@columbia.edu Wed Oct  5 17:18:52 1994
  23084. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22716
  23085.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 5 Oct 1994 13:19:06 -0400
  23086. Received: by apakabar.cc.columbia.edu id AA09559
  23087.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 5 Oct 1994 13:19:05 -0400
  23088. Path: news.columbia.edu!usenet
  23089. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  23090. Newsgroups: comp.protocols.kermit.misc
  23091. Subject: Re: Information display during transfers
  23092. Date: 5 Oct 1994 17:18:52 GMT
  23093. Organization: Columbia University
  23094. Lines: 16
  23095. Distribution: world
  23096. Message-Id: <36un5s$95r@apakabar.cc.columbia.edu>
  23097. References: <36uibd$n8j@wsu-cs.cs.wayne.edu>
  23098. Nntp-Posting-Host: fdc.cc.columbia.edu
  23099. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  23100.  
  23101. In article <36uibd$n8j@wsu-cs.cs.wayne.edu> handel@math.wayne.edu (David  
  23102. Handel) writes:
  23103. > I recently started using MS-Kermit 3.13 to connect from my home PC
  23104. > (a Dell XPS P60) to my Sun login at my university. The Kermit at
  23105. > the Sun end seems to be C-Kermit and the information
  23106. > "4D(061) 8 Sep 86, 4.2 BSD" appears when it is summoned up.
  23107. Notice the date: eight years and four weeks ago.  That has given us
  23108. time to make quite a few improvements :-)  -- including the ones you
  23109. are asking about.
  23110.  
  23111. C-Kermit 5A(190), in its VERY LAST beta edit, is available via anonymous
  23112. ftp from kermit.columbia.edu, directory kermit/test/bin, binary mode,
  23113. file cku190.tar.Z (and .gz).
  23114.  
  23115. - Frank
  23116.  
  23117. From news@columbia.edu Wed Oct  5 16:58:07 1994
  23118. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24603
  23119.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 5 Oct 1994 13:47:01 -0400
  23120. Received: by apakabar.cc.columbia.edu id AA17006
  23121.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 5 Oct 1994 13:46:59 -0400
  23122. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!godot.cc.duq.edu!toads.pgh.pa.us!newsfeed.pitt.edu!ctc.com!news.mic.ucla.edu!unixg.ubc.ca!quartz.ucs.ualberta.ca!news.ucalgary.ca!cpsc.ucalgary.ca!usenet
  23123. From: zydyk@cpsc.ucalgary.ca (Mariusz Zydyk)
  23124. Newsgroups: comp.protocols.kermit.misc
  23125. Subject: Re: Why is Kermit not popular on BBS-es?
  23126. Date: 5 Oct 1994 16:58:07 GMT
  23127. Organization: University of Calgary CPSC
  23128. Lines: 20
  23129. Message-Id: <36uluv$3sf@linux.cpsc.ucalgary.ca>
  23130. References: <36g46d$m36@cruella.ee.pdx.edu>
  23131. Nntp-Posting-Host: fsb.cpsc.ucalgary.ca
  23132. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  23133.  
  23134. > While I like the Kermit protocol, the terminal emulator, the fact
  23135. > that it is available for free, and runs on nearly every platform,
  23136. > I am often unhappily surprised that many (most?) bulletin board
  23137. > systems offer an outdated and slow version of Kermit for downloading
  23138. > files. Also, products like Procomm show this trend.
  23139.  
  23140. > Is there a conspiracy against Kermit? Is it that because it is not
  23141. > a commercial enterprise that nobody lobbies for it? Are the owners
  23142. > of zmodem lobbying against it?
  23143.  
  23144. There is no conspiracy against Kermit. I myself only started to use it
  23145. when I got my INet access. It is supported on quite a few BBS [mainly
  23146. those run on Maximus] but you say it is an outdated version. Most
  23147. people do not use Kermit on BBSs because it is quite difficult to set
  23148. up an external protocol [for sysops who want a newer version of Kermit]
  23149. and there are faster and more popular protocols [namely Z-modem, Bimodem,
  23150. and a bunch of others] and Kermit is not seen as a very fast protocol.
  23151. I get about 55-60% efficiency, and my terminal program always gives an
  23152. inflated ratio, so I don't know. But you're right that Kermit deserves
  23153. better...
  23154.  
  23155. From news@columbia.edu Sun Oct  2 15:02:29 1994
  23156. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29775
  23157.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 5 Oct 1994 15:02:30 -0400
  23158. Received: by apakabar.cc.columbia.edu id AA23355
  23159.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 5 Oct 1994 15:02:29 -0400
  23160. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!MathWorks.Com!europa.eng.gtefsd.com!swiss.ans.net!news.dfn.de!Germany.EU.net!EU.net!ub4b!idefix.CS.kuleuven.ac.be!blekul11!bliulg11!pirard
  23161. Organization: Universite de Liege - Service general d'Informatique
  23162. Date: Sun, 2 Oct 1994 15:03:29 +01
  23163. From: Andre' PIRARD <PIRARD@vm1.ulg.ac.be>
  23164. Message-Id: <94275.150329PIRARD@vm1.ulg.ac.be>
  23165. Newsgroups: comp.protocols.kermit.misc
  23166. Subject: Re: Kermit via tn3270
  23167. References: <36481e$3bv@gwis2.circ.gwu.edu> <36a8de$pri@muss.cis.McMaster.CA>
  23168. Lines: 32
  23169. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  23170.  
  23171. In article <36481e$3bv@gwis2.circ.gwu.edu>,
  23172. Philip Wirtz <pww@gwis2.circ.gwu.edu> wrote:
  23173. >I use MSDOS Kermit on a PC-compatible machine to emulate a VT100 when
  23174. >connecting (over a modem) to a Sun running Solaris.  I can upload,
  23175. >download, and "transparent print" without problem.  When logged on to the
  23176. >Sun, I use tn3270 to connect to an IBM mainframe running VM/CMS.  As an
  23177. >alternative route to the IBM mainframe, I can use MSDOS Kermit to dial up
  23178. >through a 7171 protocol emulator.  I have no problem using Kermit to
  23179. >upload, download, or transparent print when I use the ALTERNATIVE route to
  23180. >the IBM mainframe (i.e., dialing up through the 7171).  However, when
  23181. >using the tn3270 route (which of course bypasses the 7171), I cannot
  23182. >upload, download or transparent print.  Speculatively, it appears that
  23183. >escape sequences are not being properly passed to the Sun (and therefore
  23184. >to my PC), so (for example) the PC Kermit does not know that it needs to
  23185.  
  23186. The 7171 use a "transparent mode" bypassing ASCII/EBCDIC translation
  23187. and screen formats to transmit data in half duplex mode during file
  23188. transfers with VM Kermit, printing with TPRINT and others.
  23189. VM Kermit reconises the 7171 automagically and uses it that way.
  23190. A 3270 emulator may or may not recognise the special buffer format
  23191. it receives from the mainframe when entering transparent mode.
  23192. If it does not, results are unpredictable.
  23193. If it does, look into your man tn3270 to see what it does with the data.
  23194. As I recall vaguely, you might pipe it to your communication line, but I
  23195. have never tried and I'm uncertain about how replies can be sent back.
  23196. An alternative might be to instruct VM Kermit not to use transparent
  23197. mode but normal screen I/O with a SET CONTROLLER command.
  23198. I understand one should exist for your purpose, but I've never tried
  23199. it either, sorry. Look into the doc.
  23200. Beware of ASCII/EBCDIC translation in this case.
  23201.  
  23202. Andri.
  23203.  
  23204. From news@columbia.edu Wed Oct  5 17:48:16 1994
  23205. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00286
  23206.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 5 Oct 1994 15:10:59 -0400
  23207. Received: by apakabar.cc.columbia.edu id AA24024
  23208.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 5 Oct 1994 15:10:57 -0400
  23209. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!MathWorks.Com!europa.eng.gtefsd.com!library.ucla.edu!news.mic.ucla.edu!unixg.ubc.ca!quartz.ucs.ualberta.ca!tribune.usask.ca!canopus.cc.umanitoba.ca!rahardj
  23210. From: rahardj@cc.umanitoba.ca (Budi Rahardjo)
  23211. Newsgroups: comp.protocols.kermit.misc
  23212. Subject: Re: Crash recovery ?
  23213. Date: 5 Oct 1994 17:48:16 GMT
  23214. Organization: The University of Manitoba
  23215. Lines: 20
  23216. Message-Id: <36uot0$ioh@canopus.cc.umanitoba.ca>
  23217. References: <36ua84$b7p@canopus.cc.umanitoba.ca> <36ue90$k4c@apakabar.cc.columbia.edu>
  23218. Nntp-Posting-Host: antares.cc.umanitoba.ca
  23219. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  23220.  
  23221. fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  23222.  
  23223. :rahardj@cc.umanitoba.ca (Budi Rahardjo) writes:
  23224. :> Is there a plan to add crash recovery mechanism in kermit protocol?
  23225. :> This is the most important factor for me to use zmodem.
  23226. :> 
  23227. :Not only is there a plan, it's done.  Crash recovery will be in C-Kermit
  23228. :5A(190) and MS-DOS Kermit 3.14, and perhaps also in some other popular
  23229. :Kermit implementations soon thereafter.  Watch comp.protocols.kermit.announce
  23230. :for announcements.
  23231.  
  23232. Bravo... I am waiting for the announcement.
  23233. [the first newsgroup I am going to scan  :-)  ]
  23234.  
  23235.  
  23236. -- budi
  23237. -- 
  23238. Budi Rahardjo <Budi_Rahardjo@UManitoba.Ca>
  23239. #include <std-disclaimer.h>
  23240. Unix Support - Computer Services - University of Manitoba
  23241.  
  23242. From news@columbia.edu Wed Oct  5 18:04:39 1994
  23243. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01722
  23244.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 5 Oct 1994 15:32:36 -0400
  23245. Received: by apakabar.cc.columbia.edu id AA26142
  23246.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 5 Oct 1994 15:32:34 -0400
  23247. Control: cancel <1994Oct4.121921.2752@chemabs.uucp>
  23248. Newsgroups: comp.protocols.kermit.misc
  23249. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!malgudi.oar.net!chemabs!swl07
  23250. From: swl07@cas.org (Steven W. Layten)
  23251. Subject: cancel
  23252. Message-Id: <1994Oct5.180439.26290@chemabs.uucp>
  23253. Sender: usenet@chemabs.uucp
  23254. Organization: Chemical Abstracts Service
  23255. Date: Wed, 5 Oct 1994 18:04:39 GMT
  23256. Lines: 6
  23257. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  23258.  
  23259. <1994Oct4.121921.2752@chemabs.uucp> was cancelled from within trn.
  23260. -- 
  23261. Steven W. Layten, Senior Engineer
  23262. Chemical Abstracts Service, PO Box 3012, Columbus, OH 43210    +1 614 447 3600
  23263. INET: slayten@cas.org                            UUCP: osu-cis!chemabs!slayten
  23264. # # # Speaking only for myself, and NOT for Chemical Abstracts Service! # # #
  23265.  
  23266. From news@columbia.edu Wed Oct  5 09:18:32 1994
  23267. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01782
  23268.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 5 Oct 1994 15:33:30 -0400
  23269. Received: by apakabar.cc.columbia.edu id AA26201
  23270.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 5 Oct 1994 15:33:29 -0400
  23271. Newsgroups: comp.protocols.kermit.misc
  23272. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!swiss.ans.net!news.dfn.de!Germany.EU.net!EU.net!uknet!dcs.gla.ac.uk!brunel!xxxxajh
  23273. From: Alan.Holmes@brunel.ac.uk (Alan J Holmes)
  23274. Subject: Re: Columbia University's Kermit copyright
  23275. Message-Id: <Cx70Ix.qL@brunel.ac.uk>
  23276. Organization: Brunel University, West London, UK
  23277. References: <36pbtj$cc0@usenety1.news.prodigy.com> <1994Oct4.101940.24819@chemabs.uucp> <9410041248.AA26638@SimTel.Coast.NET>
  23278. Date: Wed, 5 Oct 1994 09:18:32 GMT
  23279. Lines: 19
  23280. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  23281.  
  23282. In article <9410041248.AA26638@SimTel.Coast.NET> w8sdz@SimTel.Coast.NET (Keith Petersen) writes:
  23283. >swl07@cas.org (Steven W. Layten) writes:
  23284. >>I agree with Frank -- putting Kermit on a CD-ROM and distributing to more
  23285. >>and more persons without a way to pick up funding for the support is
  23286. >>likely to kill the Kermit effort.
  23287.  
  23288. >It wouldn't kill the operation if Columbia offered their own CD-ROM.  If
  23289. >it included the complete documentation it would sell like hotcakes.  The
  23290. >proceeds of that would fund the entire Kermit operation.  They sell
  23291. >9-track tapes - why not CD-ROMs?
  23292.  
  23293. There are an awful lot of people who do not have CD-ROM players,
  23294. how are they to obtain the documentation?  Is it on the file from
  23295. ftp?
  23296.  
  23297. Regards
  23298.  
  23299. Alan Holmes
  23300.  
  23301.  
  23302. From news@columbia.edu Wed Oct  5 16:55:52 1994
  23303. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03055
  23304.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 5 Oct 1994 15:47:54 -0400
  23305. Received: by apakabar.cc.columbia.edu id AA27341
  23306.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 5 Oct 1994 15:47:51 -0400
  23307. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!math.ohio-state.edu!hobbes.physics.uiowa.edu!news.uiowa.edu!icaen!mjo
  23308. From: mjo@ecn.uiowa.edu (Mike O'Connor)
  23309. Newsgroups: comp.protocols.kermit.misc
  23310. Subject: Re: Columbia University's Kermit copyright
  23311. Date: 5 Oct 1994 16:55:52 GMT
  23312. Organization: HP InterWorks Member
  23313. Lines: 15
  23314. Message-Id: <36ulqo$32u@news.icaen.uiowa.edu>
  23315. References: <9410041248.AA26638@SimTel.Coast.NET> <36rnho$1kj@apakabar.cc.columbia.edu> <groot.781365699@taren2la.apd.dec.com>
  23316. Nntp-Posting-Host: iworks.ecn.uiowa.edu
  23317. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  23318.  
  23319. In article <groot.781365699@taren2la.apd.dec.com> groot@apd.dec.com (Henk de Groot) writes:
  23320.  
  23321. >Please Keith or Timo, can this be arranged or are we in a Draw position as
  23322. >far as Kermit is concerned? I think its your turn now to give in or give up.
  23323. >  /   / de Groot  Dep: ALD2          | E-Mail: groot@apd.dec.com
  23324.  
  23325. Ahhh...  DEC.  Aren't you the guys that are shipping Kermit on CD-ROM
  23326. yourselves, as part of the Alpha OSF/1 Freeware stuff?  I'd suggest that
  23327. before asking Timo and Keith to be nice guys that you ought to start
  23328. asking the people who cut your Freeware CD to obtain written permission
  23329. from Columbia to distribute.  
  23330.  
  23331. Hey, your stock is rebounding a bit -- you can afford it.  
  23332.  
  23333. -Mike
  23334.  
  23335. From news@columbia.edu Wed Oct  5 18:14:00 1994
  23336. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05547
  23337.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 5 Oct 1994 16:16:03 -0400
  23338. Received: by apakabar.cc.columbia.edu id AA00354
  23339.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 5 Oct 1994 16:16:02 -0400
  23340. Path: news.columbia.edu!panix!MathWorks.Com!uhog.mit.edu!europa.eng.gtefsd.com!library.ucla.edu!news.mic.ucla.edu!unixg.ubc.ca!quartz.ucs.ualberta.ca!news.ucalgary.ca!cpsc.ucalgary.ca!usenet
  23341. From: zydyk@cpsc.ucalgary.ca (Mariusz Zydyk)
  23342. Newsgroups: comp.protocols.kermit.misc
  23343. Subject: File sizes and Kermit
  23344. Date: 5 Oct 1994 18:14:00 GMT
  23345. Organization: University of Calgary CPSC
  23346. Lines: 9
  23347. Message-Id: <36uqd8$7in@linux.cpsc.ucalgary.ca>
  23348. Nntp-Posting-Host: fsb.cpsc.ucalgary.ca
  23349. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  23350.  
  23351. ------- I just started using Kermit [5A(189)] and I noticed that
  23352. when transferring files the file size on my PC at home is very
  23353. different from the original. It is always larger [72K file comes
  23354. out as 78K], but I haven't been able to see any differences between
  23355. the two. It is not a big deal at the moment, but shortly [today] I
  23356. will need to transfer some ZIP files and I'd like the size to
  23357. be preserved for obvious reasons. Why does Kermit do this and is
  23358. there a way around it?
  23359. Any help would be appreciated..
  23360.  
  23361. From news@columbia.edu Wed Oct  5 21:00:51 1994
  23362. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08980
  23363.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 5 Oct 1994 17:00:54 -0400
  23364. Received: by apakabar.cc.columbia.edu id AA04373
  23365.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 5 Oct 1994 17:00:53 -0400
  23366. Path: news.columbia.edu!usenet
  23367. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  23368. Newsgroups: comp.protocols.kermit.misc
  23369. Subject: Re: File sizes and Kermit
  23370. Date: 5 Oct 1994 21:00:51 GMT
  23371. Organization: Columbia University
  23372. Lines: 27
  23373. Message-Id: <36v463$48j@apakabar.cc.columbia.edu>
  23374. References: <36uqd8$7in@linux.cpsc.ucalgary.ca>
  23375. Nntp-Posting-Host: fdc.cc.columbia.edu
  23376. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  23377.  
  23378. In article <36uqd8$7in@linux.cpsc.ucalgary.ca> zydyk@cpsc.ucalgary.ca  
  23379. (Mariusz Zydyk) writes:
  23380. > ------- I just started using Kermit [5A(189)] and I noticed that
  23381. > when transferring files the file size on my PC at home is very
  23382. > different from the original. It is always larger [72K file comes
  23383. > out as 78K], but I haven't been able to see any differences between
  23384. > the two. It is not a big deal at the moment, but shortly [today] I
  23385. > will need to transfer some ZIP files and I'd like the size to
  23386. > be preserved for obvious reasons. Why does Kermit do this and is
  23387. > there a way around it?
  23388. >
  23389. Tell the Kermit program that is sending the file to "set file type
  23390. binary".  The differences between text and binary mode transfer are
  23391. explained in the documentation, and have also been discussed on this
  23392. newsgroup.
  23393.  
  23394. - Frank
  23395.  
  23396. x
  23397. x
  23398. x
  23399. x
  23400. x
  23401. x
  23402. x
  23403. x
  23404. x
  23405.  
  23406. From news@columbia.edu Wed Oct  5 21:42:07 1994
  23407. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15917
  23408.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 5 Oct 1994 18:48:30 -0400
  23409. Received: by apakabar.cc.columbia.edu id AA13669
  23410.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 5 Oct 1994 18:48:29 -0400
  23411. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!simtel.coast.net!w8sdz
  23412. From: w8sdz@SimTel.Coast.NET (Keith Petersen)
  23413. Newsgroups: comp.protocols.kermit.misc
  23414. Subject: Re: Columbia University's Kermit copyright
  23415. Message-Id: <9410052142.AA18367@SimTel.Coast.NET>
  23416. Date: Wed, 5 Oct 1994 21:42:07 GMT
  23417. Organization: SimTel, the Coast to Coast Software Repository (tm)
  23418. References: <36pbtj$cc0@usenety1.news.prodigy.com> <1994Oct4.101940.24819@chemabs.uucp> <9410041248.AA26638@SimTel.Coast.NET> <Cx70Ix.qL@brunel.ac.uk>
  23419. Lines: 66
  23420. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  23421.  
  23422. Alan.Holmes@brunel.ac.uk (Alan J Holmes) writes:
  23423. >There are an awful lot of people who do not have CD-ROM players,
  23424. >how are they to obtain the documentation?  Is it on the file from
  23425. >ftp?
  23426.  
  23427. No.  That's what this whole discussion is about.  You must purchase the
  23428. Kermit book to get the documentation because Columbia withdrew it from
  23429. free distribution several years ago.  This makes it impossible to use
  23430. all of Kermit's features unless you pay US$34.95 for the documentation.
  23431.  
  23432. Here is the information on how to purchase the book.
  23433.  
  23434.   Christine M. Gianone, "Using MS-DOS Kermit", Second Edition, Digital
  23435.   Press / Butterworth-Heinemann, Woburn, MA, 1992, 345 pages, ISBN
  23436.   1-55558-082-3.  Packaged with version 3.13 of MS-DOS Kermit for the
  23437.   IBM PC, PS/2, and compatibles on a 3.5-inch diskette.
  23438.  
  23439.   US single-copy price: $34.95; quantity discounts available.  Available
  23440.   in computer bookstores or directly from:
  23441.  
  23442.     Kermit Development and Distribution
  23443.     Columbia University Academic Information Systems
  23444.     612 West 115th Street
  23445.     New York, NY  10025  USA
  23446.     Telephone: (USA) 212 854-3703
  23447.  
  23448.   Domestic and overseas orders accepted.  Price: $34.95 (US, Canada, and
  23449.   Mexico), $45 elsewhere.  Orders may be paid by MasterCard or Visa, or
  23450.   prepaid by check in US dollars.  Add $35 bank fee for checks not drawn
  23451.   on a US bank.  Price includes shipping.  Do not include sales tax.
  23452.  
  23453.   You can also order by phone from the publisher, Digital Press /
  23454.   Butterworth-Heinemann, with MasterCard, Visa, or American Express:
  23455.  
  23456.     +1 800 366-2665 (Woburn, Massachusetts office for USA and Canada)
  23457.     +1 800 665-1148 (Logan Bros, Winnepeg, Manitoba office for Canada)
  23458.     +44 993 58521   (Rushden, England office for Europe)
  23459.     +61 02 372-5511 (Chatswood, NSW office for Australia & New Zealand)
  23460.     +65 220-3684    (Singapore office for Asia)
  23461.  
  23462.   A German-language edition is also available:
  23463.  
  23464.     Christine M. Gianone, "MS-DOS Kermit, das universelle
  23465.     Kommunikationsprogramm", Verlag Heinz Heise, Hannover, Germany
  23466.     (1991), 414 pages.  Packaged with version 3.12 of MS-DOS Kermit for
  23467.     the IBM PC, PS/2, and compatibles on a 5.25-inch diskette, including
  23468.     German-language help files.  Deutsch von Gisbert W. Selke.  Price:
  23469.     DM 69,00.  ISBN 3-88229-006-4.  Verlag Heinz Heise GmbH & Co. KG,
  23470.     Helstorfer Strasse 7, D-30625 Hannover.  Tel. +49 (05 11) 53 52-0,
  23471.     Fax. +49 (05 11) 53 53-1 29.
  23472.  
  23473.   And a French-language edition:
  23474.  
  23475.     Christine M. Gianone, "Kermit MS-DOS mode d'emploi", Heinz Schiefer
  23476.     & Cie., Versailles (1993), 406 pages.  Packaged with version 3.11 of
  23477.     MS-DOS Kermit for the IBM PC, PS/2, and compatibles on a 5.25-inch
  23478.     diskette.  Adaption francaise: Jean Dutertre.  ISBN 2-901143-20-2.
  23479.     Heinz Schiefer & Cie., 45 rue Henri de Regnier, F-78000 Versailles.
  23480.     Tel. +33 39 53 95 26, Fax. +33 39 02 39 71.
  23481.  
  23482.  
  23483. Keith
  23484. --
  23485. Keith Petersen
  23486. Internet: w8sdz@SimTel.Coast.NET    or      w8sdz@Vela.ACS.Oakland.Edu
  23487. Uucp: uunet!umich!vela!w8sdz                     BITNET: w8sdz@OAKLAND
  23488.  
  23489. From news@columbia.edu Wed Oct  5 21:52:07 1994
  23490. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16549
  23491.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 5 Oct 1994 18:57:09 -0400
  23492. Received: by apakabar.cc.columbia.edu id AA14277
  23493.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 5 Oct 1994 18:57:08 -0400
  23494. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!simtel.coast.net!w8sdz
  23495. From: w8sdz@SimTel.Coast.NET (Keith Petersen)
  23496. Newsgroups: comp.protocols.kermit.misc
  23497. Subject: Re: Columbia University's Kermit copyright
  23498. Message-Id: <9410052152.AA18509@SimTel.Coast.NET>
  23499. Date: Wed, 5 Oct 1994 21:52:07 GMT
  23500. Organization: SimTel, the Coast to Coast Software Repository (tm)
  23501. References: <9410041248.AA26638@SimTel.Coast.NET> <36rnho$1kj@apakabar.cc.columbia.edu> <groot.781365699@taren2la.apd.dec.com>
  23502. Lines: 35
  23503. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  23504.  
  23505. groot@apd.dec.com (Henk de Groot) writes:
  23506. >Is it possible to set up a special directory tree for those programs that
  23507. >are of great value (like Kermit) but are not allowed to go on a CD-ROM.
  23508. >This directory is not meant for every other program, authors must still
  23509. >be pushed to allow their programs on CD-ROM, but it would solve difficult
  23510. >situations like this one (an author that will not give-in and a product that
  23511. >is too valuable to looze). During the generation of the CD-ROM this
  23512. >directory can be skipped so that the programs will not appear on CD-ROM.
  23513.  
  23514. SimTel's policy is not to maintain a separate collection of limited
  23515. distribution programs.
  23516.  
  23517. >Maybe we can get some of the other programs that were lost because of the
  23518. >CD-ROM restiction back also (or did they all agree with the CD-ROM
  23519. >distribution in the end?).
  23520.  
  23521. They all agreed to either change their CD-ROM distribution limitations
  23522. or they gave SimTel special permission to include their programs on our
  23523. CD-ROMs because they realized that Simtel could not exist without the
  23524. revenues produced from CD-ROM sales.
  23525.  
  23526. >Please Keith or Timo, can this be arranged or are we in a Draw position as
  23527. >far as Kermit is concerned? I think its your turn now to give in or give up.
  23528.  
  23529. MS-Kermit can not be accepted in its present form because the
  23530. documentation is not included.  SimTel's policy is not to accept
  23531. programs which do not include documentation.  You will not see
  23532. MS-Kermit on SimTel again until that situation changes.
  23533.  
  23534. Keith
  23535. --
  23536. Keith Petersen
  23537. General Manager of SimTel, the Coast to Coast Software Repository (tm)
  23538. Internet: w8sdz@SimTel.Coast.NET    or      w8sdz@Vela.ACS.Oakland.Edu
  23539. Uucp: uunet!umich!vela!w8sdz                     BITNET: w8sdz@OAKLAND
  23540.  
  23541. From news@columbia.edu Wed Oct  5 22:34:56 1994
  23542. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17163
  23543.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 5 Oct 1994 19:05:34 -0400
  23544. Received: by apakabar.cc.columbia.edu id AA14941
  23545.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 5 Oct 1994 19:05:32 -0400
  23546. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!europa.eng.gtefsd.com!MathWorks.Com!udel!news-4.nss.udel.edu!chopin.udel.edu!not-for-mail
  23547. From: darkstar@chopin.udel.edu (Jerry Alexandratos)
  23548. Newsgroups: comp.protocols.kermit.misc
  23549. Subject: Re: Columbia University's Kermit copyright
  23550. Date: 5 Oct 1994 18:34:56 -0400
  23551. Organization: Broken Toys Unlimited
  23552. Lines: 39
  23553. Message-Id: <36v9mg$t22@chopin.udel.edu>
  23554. References: <9410041248.AA26638@SimTel.Coast.NET> <36rnho$1kj@apakabar.cc.columbia.edu> <groot.781365699@taren2la.apd.dec.com> <9410052152.AA18509@simtel.coast.net>
  23555. Nntp-Posting-Host: chopin.udel.edu
  23556. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  23557.  
  23558. In article <9410052152.AA18509@simtel.coast.net>,
  23559. Keith Petersen <w8sdz@SimTel.Coast.NET> wrote:
  23560.  
  23561. [stuff deleted]
  23562.  
  23563. :MS-Kermit can not be accepted in its present form because the
  23564. :documentation is not included.  SimTel's policy is not to accept
  23565. :programs which do not include documentation.  You will not see
  23566. :MS-Kermit on SimTel again until that situation changes.
  23567.  
  23568. Well, what about TeX/LaTeX, and the implementations of it that exist? 
  23569. With those programs it's the exact same thing--everything is publically
  23570. available, but if you want to know every little thing, you need to
  23571. purchase the TeXbook, LaTeX-A Document Preparation System, and ideally,
  23572. The LaTeX Companion.  Does this mean that you'll be getting rid of the
  23573. DOS version of TeX that exists on SimTel?
  23574.  
  23575. What about some of the GNU programs ported to DOS?  Their documentation
  23576. isn't that complete.  Hell, gsed only includes the GNU copying.doc
  23577. file.  And gsed --help doesn't give you any form of informative help,
  23578. so that can't be construed as documentation.
  23579.  
  23580. Or what about Pmail?  Same thing.  On-line help, but they still suggest
  23581. you purchase the manual.  In fact, quite a few programs do this.
  23582.  
  23583. Are you complaining about Kermit's documentation becasue there isn't
  23584. any, or because it isn't as comprehensive as the book?  But then again,
  23585. it seems to be okay for MicroSlop to sell me DOS v6.22 with a flimsy
  23586. pamphlet, and then expect me to shell out another $39.99 for a manual.
  23587.  
  23588. Oh well, you win some, you lose some...
  23589.  
  23590.         --Jerry
  23591.  
  23592.  
  23593. -- 
  23594. |>  Jerry Alexandratos             **  "vengo de la tierra del    <|
  23595. |>  darkstar@strauss.udel.edu      **   fuego ten cuidado cuando  <|
  23596. |>  darkstar@canary.cns.udel.edu   **   llamas mi nombre..."      <|
  23597.  
  23598. From news@columbia.edu Wed Oct  5 23:32:22 1994
  23599. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19714
  23600.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 5 Oct 1994 19:50:54 -0400
  23601. Received: by apakabar.cc.columbia.edu id AA18104
  23602.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 5 Oct 1994 19:50:52 -0400
  23603. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!europa.eng.gtefsd.com!ulowell!simtel.coast.net!w8sdz
  23604. From: w8sdz@SimTel.Coast.NET (Keith Petersen)
  23605. Newsgroups: comp.protocols.kermit.misc
  23606. Subject: Re: Columbia University's Kermit copyright
  23607. Message-Id: <9410052332.AA19378@SimTel.Coast.NET>
  23608. Date: Wed, 5 Oct 1994 23:32:22 GMT
  23609. Organization: SimTel, the Coast to Coast Software Repository (tm)
  23610. References: <9410041248.AA26638@SimTel.Coast.NET> <groot.781365699@taren2la.apd.dec.com> <9410052152.AA18509@simtel.coast.net> <36v9mg$t22@chopin.udel.edu>
  23611. Lines: 16
  23612. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  23613.  
  23614. darkstar@chopin.udel.edu (Jerry Alexandratos) writes:
  23615. >Are you complaining about Kermit's documentation becasue there isn't
  23616. >any, or because it isn't as comprehensive as the book?
  23617.  
  23618. The help file supplied with MS-Kermit says:
  23619.  
  23620.    This file briefly summarizes the commands and features of MS-DOS
  23621.    Kermit 3.13.  For detailed information, consult "Using MS-DOS Kermit",
  23622.    second edition, by Christine M. Gianone, published by ......
  23623.  
  23624. Keith
  23625. --
  23626. Keith Petersen
  23627. General Manager of SimTel, the Coast to Coast Software Repository (tm)
  23628. Internet: w8sdz@SimTel.Coast.NET    or      w8sdz@Vela.ACS.Oakland.Edu
  23629. Uucp: uunet!umich!vela!w8sdz                     BITNET: w8sdz@OAKLAND
  23630.  
  23631. From news@columbia.edu Sun Oct  6 00:40:31 1994
  23632. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22854
  23633.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 5 Oct 1994 20:50:18 -0400
  23634. Received: by apakabar.cc.columbia.edu id AA21982
  23635.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 5 Oct 1994 20:50:16 -0400
  23636. Path: news.columbia.edu!panix!MathWorks.Com!udel!news-4.nss.udel.edu!chopin.udel.edu!not-for-mail
  23637. From: darkstar@chopin.udel.edu (Jerry Alexandratos)
  23638. Newsgroups: comp.protocols.kermit.misc
  23639. Subject: Re: Columbia University's Kermit copyright
  23640. Date: 5 Oct 1994 20:40:31 -0400
  23641. Organization: Broken Toys Unlimited
  23642. Lines: 23
  23643. Message-Id: <36vh1v$bo8@chopin.udel.edu>
  23644. References: <9410041248.AA26638@SimTel.Coast.NET> <9410052152.AA18509@simtel.coast.net> <36v9mg$t22@chopin.udel.edu> <9410052332.AA19378@simtel.coast.net>
  23645. Nntp-Posting-Host: chopin.udel.edu
  23646. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  23647.  
  23648. In article <9410052332.AA19378@simtel.coast.net>,
  23649. Keith Petersen <w8sdz@SimTel.Coast.NET> wrote:
  23650. :darkstar@chopin.udel.edu (Jerry Alexandratos) writes:
  23651. :>Are you complaining about Kermit's documentation becasue there isn't
  23652. :>any, or because it isn't as comprehensive as the book?
  23653. :
  23654. :The help file supplied with MS-Kermit says:
  23655. :
  23656. :   This file briefly summarizes the commands and features of MS-DOS
  23657. :   Kermit 3.13.  For detailed information, consult "Using MS-DOS Kermit",
  23658. :   second edition, by Christine M. Gianone, published by ......
  23659.  
  23660. I'm not denying that.  But what about all of the other examples that I
  23661. listed?  All of them are definitely breaking your documentation rules. 
  23662. So, will you or won't you be getting rid of them, and refusing to keep
  23663. them on SimTel until they change their documentation?
  23664.  
  23665.         --Jerry
  23666.  
  23667. -- 
  23668. |>  Jerry Alexandratos             **  "vengo de la tierra del    <|
  23669. |>  darkstar@strauss.udel.edu      **   fuego ten cuidado cuando  <|
  23670. |>  darkstar@canary.cns.udel.edu   **   llamas mi nombre..."      <|
  23671.  
  23672. From news@columbia.edu Thu Oct  6 02:02:00 1994
  23673. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26286
  23674.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 5 Oct 1994 22:09:59 -0400
  23675. Received: by apakabar.cc.columbia.edu id AA27584
  23676.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 5 Oct 1994 22:09:57 -0400
  23677. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!eff!neoucom.edu!news.ysu.edu!yfn.ysu.edu!ac608
  23678. From: ac608@YFN.YSU.EDU (Chris Madsen)
  23679. Newsgroups: comp.protocols.kermit.misc
  23680. Subject: Re: USing Unix editors while under kermit
  23681. Date: 6 Oct 1994 02:02:00 GMT
  23682. Organization: St. Elizabeth Hospital, Youngstown, OH
  23683. Lines: 26
  23684. Message-Id: <36vlqo$ks2@news.ysu.edu>
  23685. References: <1994Sep29.122443.7@scff.chinalake.navy.mil>
  23686. Reply-To: ac608@yfn.ysu.edu (Chris Madsen)
  23687. Nntp-Posting-Host: yfn.ysu.edu
  23688. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  23689.  
  23690.  
  23691. In a previous article, mbguest@scfe.chinalake.navy.mil () says:
  23692.  
  23693. >I'm using version 1.89 on OS/2 to log into Unix box . The 
  23694. >problem I have is that I can't use either Emacs or Vi because
  23695. >of the lack of either an escape or an ALT-X that transmits
  23696. >to the application correctly.
  23697.  
  23698. Did you realize that the default init file for OS/2 swaps the Esc and
  23699. backquote keys?  To get Esc, you have to type backquote (`), and vice versa.
  23700. To fix this <expletive deleted>, edit CKERMOD.INI (on your OS/2 system).
  23701. Search for the two lines:
  23702.   set key \27 \96                 ; Swap the Escape and Accent-Grave keys
  23703.   set key \96 \27                 ; during CONNECT mode
  23704. Delete these (or comment them out by putting a semicolon at the beginning
  23705. of each) and your Esc key should work again.  (You use Esc X to send M-X
  23706. to Emacs, of course.)
  23707.  
  23708. >Also the arrow keys do not work in the applications.
  23709.  
  23710. The arrow keys work fine for me.  Check the TERM environment variable
  23711. on the Unix box and make sure it thinks you're a VT100 or similar terminal.
  23712.  
  23713. BTW, the version is 5A(189), not 1.89 :-)  C-Kermit has weird version numbers.
  23714. -- 
  23715. Chris Madsen           ac608@yfn.ysu.edu               GEnie: C.MADSEN
  23716.  
  23717. From news@columbia.edu Thu Oct  6 02:58:22 1994
  23718. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00702
  23719.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 5 Oct 1994 23:54:01 -0400
  23720. Received: by apakabar.cc.columbia.edu id AA04740
  23721.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 5 Oct 1994 23:53:59 -0400
  23722. Newsgroups: comp.protocols.kermit.misc
  23723. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!utnut!torn!uunet.ca!uunet.ca!tsltor!louk
  23724. From: louk@teleride.on.ca (Lou Kates)
  23725. Subject: Re: Columbia University's Kermit copyright
  23726. Message-Id: <Cx8DLB.877@teleride.on.ca>
  23727. Organization: Teleride Sage Ltd.
  23728. References: <9410032252.AA21717@SimTel.Coast.NET> <36q981$lof@apakabar.cc.columbia.edu>
  23729. Date: Thu, 6 Oct 1994 02:58:22 GMT
  23730. Lines: 21
  23731. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  23732.  
  23733. In article <36q981$lof@apakabar.cc.columbia.edu>,
  23734. Frank da Cruz <fdc@fdc.cc.columbia.edu> wrote:
  23735. >It's true, Keith did suggest changing Kermit to shareware.  And various
  23736. >other people suggested charging for support, setting up 900 numbers, and
  23737. >so on.  Our many well-wishers do not understand the detailed organizational
  23738. >and legal constraints under which we operate.  I will only say that I have
  23739. >not seen a suggestion posted in this discussion, or mailed to me privately,
  23740. >that I did not already think of myself years ago.  
  23741.  
  23742. Timo hit the nail on the head when he pointed out that you are not likely
  23743. going to solve the problem until you understand what the problem is.
  23744.  
  23745. What are these detailed organizational and legal constraints under which
  23746. you operate which supposedly prevent you from simply charging for support
  23747. or implementing other solutions which seem to make a lot more sense than
  23748. restricting distribution?
  23749.  
  23750. Perhaps if you spelled them out so that we can all understand
  23751. these barriers then we could all creatively figure out a way around them.   
  23752.  
  23753. Lou Kates, louk@teleride.on.ca
  23754.  
  23755. From news@columbia.edu Thu Oct  6 04:13:56 1994
  23756. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02009
  23757.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 6 Oct 1994 00:13:59 -0400
  23758. Received: by apakabar.cc.columbia.edu id AA06448
  23759.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 6 Oct 1994 00:13:57 -0400
  23760. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!vixen.cso.uiuc.edu!ux2.cso.uiuc.edu!shair
  23761. From: shair@uiuc.edu (Bob Shair)
  23762. Newsgroups: comp.protocols.kermit.misc
  23763. Subject: C-Kermit for OS/2 and "set send start"
  23764. Date: 6 Oct 1994 04:13:56 GMT
  23765. Organization: University of Illinois at Urbana
  23766. Lines: 42
  23767. Message-Id: <36vti4$3h4@vixen.cso.uiuc.edu>
  23768. Nntp-Posting-Host: ux2.cso.uiuc.edu
  23769. Originator: shair@ux2.cso.uiuc.edu
  23770. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  23771.  
  23772. I'm attempting to do Kermit file transfer through a particularly
  23773. obstinate controller which has no transparent mode (a RS/6000 runnin HCON).
  23774.  
  23775. Following the model on p.136 of Using C-Kermit, I begin by telling my OS/2
  23776. system:
  23777. [C:\CKERMIT] C-Kermit>set parity even
  23778. [C:\CKERMIT] C-Kermit>set send start 58
  23779.  
  23780. ?Not in ASCII control range - 58
  23781. ?Invalid: set send start 58
  23782. (It complains)..
  23783.  
  23784. I'm in local mode on OS/2 2.99 (Warp II Beta) 
  23785. running over a V42 56/14.4Kbps dialup link to the 6000.
  23786. Version of C-Kermit is:
  23787. C-Kermit 5A(190) BETA.16. 7 Aug 94 for OS/2
  23788.  C-Kermit Protocol Module 5A(068), 31 Jul 94
  23789.  C-Kermit functions, 5A(117) 30 Jul 94
  23790.  Command package 5A(062), 24 Jul 94
  23791.  User Interface 5A(145), 7 Aug 94
  23792.  Character Set Translation 5A(022), 24 Jan 94
  23793.  OS/2 CONNECT command 5A(152), 5 Aug 94
  23794.  Dial Command, 5A(060) 7 Aug 94
  23795.  Script Command, 5A(022) 7 Aug 93
  23796.  Network support, 5A(036) 7 Aug 94
  23797.  OS/2 Network support, 5A(028) 5 Aug 94
  23798.  OS/2 NetBios support, 5A(008) 22 Jul 94
  23799.  OS/2 Mouse Support 5A(002), 5 Aug 94
  23800.  
  23801. It's probably something that I don't understand properly.  When I fire up
  23802. C-Kermit 190 on the 6000 (in remote mode) the set start command is accepted.
  23803.  
  23804. C-Kermit 5A(190) ALPHA.02, 10 Apr 94, for IBM RS/6000 AIX 3.2
  23805. Type ? or HELP for help
  23806. C-Kermit>set send start 58
  23807. C-Kermit>
  23808.  
  23809. -- 
  23810.  
  23811. Bob Shair                          shair@uiuc.edu
  23812. Open Systems Specialist           SHAIR@UIUCVMD (bitnet)
  23813. Champaign, Illinois           217/356-2684
  23814.  
  23815. From news@columbia.edu Thu Oct  6 05:41:00 1994
  23816. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06706
  23817.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 6 Oct 1994 01:47:12 -0400
  23818. Received: by apakabar.cc.columbia.edu id AA11078
  23819.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 6 Oct 1994 01:47:11 -0400
  23820. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!simtel.coast.net!w8sdz
  23821. From: w8sdz@SimTel.Coast.NET (Keith Petersen)
  23822. Newsgroups: comp.protocols.kermit.misc
  23823. Subject: Re: Columbia University's Kermit copyright
  23824. Message-Id: <9410060541.AA21338@SimTel.Coast.NET>
  23825. Date: Thu, 6 Oct 1994 05:41:00 GMT
  23826. Organization: SimTel, the Coast to Coast Software Repository (tm)
  23827. References: <9410041248.AA26638@SimTel.Coast.NET> <36v9mg$t22@chopin.udel.edu> <9410052332.AA19378@simtel.coast.net> <36vh1v$bo8@chopin.udel.edu>
  23828. Lines: 21
  23829. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  23830.  
  23831. darkstar@chopin.udel.edu (Jerry Alexandratos) writes:
  23832. >I'm not denying that.  But what about all of the other examples that I
  23833. >listed?  All of them are definitely breaking your documentation rules.
  23834. >So, will you or won't you be getting rid of them, and refusing to keep
  23835. >them on SimTel until they change their documentation?
  23836.  
  23837. The other programs you listed are documented in the GNU distribution
  23838. which is available from SimTel's primary mirror site OAK.Oakland.Edu,
  23839. and most of its mirrors.  Since they are on the same site that meets the
  23840. criteria.
  23841.  
  23842. If you find any other programs in the msdos collection which lack
  23843. documentation please send me a list by e-mail and I will immediately
  23844. delete them.                        ^^^^^^^^^
  23845.  
  23846. Keith
  23847. --
  23848. Keith Petersen
  23849. General Manager of SimTel, the Coast to Coast Software Repository (tm)
  23850. Internet: w8sdz@SimTel.Coast.NET    or      w8sdz@Vela.ACS.Oakland.Edu
  23851. Uucp: uunet!umich!vela!w8sdz                     BITNET: w8sdz@OAKLAND
  23852.  
  23853. From news@columbia.edu Tue Oct  4 15:12:25 1994
  23854. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09666
  23855.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 6 Oct 1994 03:02:35 -0400
  23856. Received: by apakabar.cc.columbia.edu id AA13646
  23857.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 6 Oct 1994 03:02:33 -0400
  23858. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!yeshua.marcam.com!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!EU.net!sunic!news.funet.fi!zippo.uwasa.fi!uwasa.fi!ts
  23859. From: ts@uwasa.fi (Timo Salmi)
  23860. Newsgroups: comp.protocols.kermit.misc
  23861. Subject: Re: Columbia University's Kermit copyright
  23862. Date: 4 Oct 1994 15:12:25 GMT
  23863. Organization: University of Vaasa
  23864. Lines: 39
  23865. Message-Id: <36rrcp$79c@zippo.uwasa.fi>
  23866. References: <36h490$9hc@apakabar.cc.columbia.edu> <36pbtj$cc0@usenety1.news.prodigy.com> <1994Oct4.101940.24819@chemabs.uucp>
  23867. Nntp-Posting-Host: uwasa.fi
  23868. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  23869.  
  23870. In article <1994Oct4.101940.24819@chemabs.uucp> swl07@cas.org (Steven W. Layten) writes:
  23871. :As one of the normally "silent readers" of this discussion, I'm going to
  23872. :throw caution to the winds and add my comments.
  23873.  
  23874. And a very good and balanced posting it is.
  23875.  
  23876. :I agree with Frank -- putting Kermit on a CD-ROM and distributing to more
  23877. :and more persons without a way to pick up funding for the support is
  23878. :likely to kill the Kermit effort.  All resources would have to go to
  23879. :support and no further development.  I'm sure that the Kermit group would
  23880.  
  23881. This is the fallacy that besets this dilemma.  The problem in likely
  23882. to gradually get worse whether or not CD-ROM distribution is
  23883. accepted by Columbia.  The only difference is that it will get worse
  23884. just a bit more quickly if CD-ROM distribution is involved. 
  23885.  
  23886. It is not for me to try to dictate what Columbia should do, but I
  23887. can try to help my friends by pointing out that it is useful them to
  23888. list all the alternatives dispassionately and consider their pros
  23889. and cons financially and workloadwise. 
  23890.  
  23891. The problem will not disappear with non-CDROM distribution.  It will
  23892. not disappear if for example SimTel and Garbo CDROMs were allowed. 
  23893. It will not even disappear if and when I shut up.  The cause is in
  23894. the exponential grown of computer users with an interest in products
  23895. like Kermit.  If there is no cost, user demand for free services
  23896. always finally will exceed the supply, and anyone with a basic
  23897. economics course will know.  There is no suplly-demand equiligbrium
  23898. at zero price. 
  23899.  
  23900.    All the best, Timo
  23901.  
  23902. ..................................................................
  23903. Prof. Timo Salmi      Co-moderator of comp.archives.msdos.announce
  23904. Moderating at garbo.uwasa.fi anonymous FTP  archives  128.214.87.1
  23905. Faculty of Accounting & Industrial Management; University of Vaasa
  23906. Internet: ts@uwasa.fi   BBS +(358)-61-3170972; FIN-65101,  Finland
  23907.  
  23908.  
  23909.  
  23910. From news@columbia.edu Tue Oct  4 17:36:41 1994
  23911. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10900
  23912.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 6 Oct 1994 03:32:35 -0400
  23913. Received: by apakabar.cc.columbia.edu id AA14535
  23914.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 6 Oct 1994 03:32:34 -0400
  23915. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!EU.net!sunic!news.funet.fi!zippo.uwasa.fi!uwasa.fi!ts
  23916. From: ts@uwasa.fi (Timo Salmi)
  23917. Newsgroups: comp.protocols.kermit.misc
  23918. Subject: Re: Columbia University's Kermit copyright
  23919. Date: 4 Oct 1994 17:36:41 GMT
  23920. Organization: University of Vaasa
  23921. Lines: 25
  23922. Message-Id: <36s3r9$ae0@zippo.uwasa.fi>
  23923. References: <36pipa$jp4@apakabar.cc.columbia.edu> <36r5d2$28f@zippo.uwasa.fi> <Cx5F0w.FtJ@ritz.mordor.com>
  23924. Nntp-Posting-Host: uwasa.fi
  23925. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  23926.  
  23927. In article <Cx5F0w.FtJ@ritz.mordor.com> kudut@ritz.mordor.com (Ken Udut) writes:
  23928. :Timo,
  23929. :    Why must Frank be coerced into changing the practices of Kermit 
  23930. :distribution?  Frank is repeating the same position simply because that 
  23931. :*is* his position.  He is unnecessarily under fire.
  23932.  
  23933. Wherever did you get that notion, dear Ken?  I am not coercing Frank
  23934. to do anything he is not willing to do.  Economic realities and his
  23935. limited time (only 24 hours a day) to allocate to give support may,
  23936. however, do so in the long run.  I may be right, I may be wrong,
  23937. but I predict (I cannot know) that Columbia's solution will not be
  23938. viable.  What I forecast is that they will sooner or later have to
  23939. find ways to charge for at least part of the support. 
  23940.  
  23941. Telling about realities of life as I see them is not putting someone
  23942. under fire.  Have you seen me make any DEMANDS on Frank during this
  23943. discussion?
  23944.  
  23945.    All the best, Timo
  23946.  
  23947. ..................................................................
  23948. Prof. Timo Salmi      Co-moderator of comp.archives.msdos.announce
  23949. Moderating at garbo.uwasa.fi anonymous FTP  archives  128.214.87.1
  23950. Faculty of Accounting & Industrial Management; University of Vaasa
  23951. Internet: ts@uwasa.fi   BBS +(358)-61-3170972; FIN-65101,  Finland
  23952.  
  23953. From news@columbia.edu Tue Oct  4 17:44:28 1994
  23954. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10905
  23955.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 6 Oct 1994 03:32:37 -0400
  23956. Received: by apakabar.cc.columbia.edu id AA14540
  23957.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 6 Oct 1994 03:32:36 -0400
  23958. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!EU.net!sunic!news.funet.fi!zippo.uwasa.fi!uwasa.fi!ts
  23959. From: ts@uwasa.fi (Timo Salmi)
  23960. Newsgroups: comp.protocols.kermit.misc
  23961. Subject: Re: Columbia University's Kermit copyright
  23962. Date: 4 Oct 1994 17:44:28 GMT
  23963. Organization: University of Vaasa
  23964. Lines: 21
  23965. Message-Id: <36s49s$aha@zippo.uwasa.fi>
  23966. References: <Cx44xq.IJw@ritz.mordor.com> <36r5rk$2bo@zippo.uwasa.fi> <Cx5F4C.Fvw@ritz.mordor.com>
  23967. Nntp-Posting-Host: uwasa.fi
  23968. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  23969.  
  23970. In article <Cx5F4C.Fvw@ritz.mordor.com> kudut@ritz.mordor.com (Ken Udut) writes:
  23971. :The bigger problem is that it's Columbia's business to concern themselves 
  23972. :with it and Frank's business to concern himself with it.  It's *not* our 
  23973. :concern.
  23974.  
  23975. :The existance of the discussion is painful to Frank as he is getting 
  23976. :blasted left and right for sticking to what he feels is best.  He DOESN'T 
  23977. :want to turn Kermit into a commercial venture.
  23978.  
  23979. Frank, if you truly feel about this as Ken here assumes, that I have
  23980. overstepped the line and that I am on your back, I promise to
  23981. unsubscribe comp.protocols.kermit.misc the very second you ask me
  23982. to. 
  23983.  
  23984.    All the best, Timo
  23985.  
  23986. ..................................................................
  23987. Prof. Timo Salmi      Co-moderator of comp.archives.msdos.announce
  23988. Moderating at garbo.uwasa.fi anonymous FTP  archives  128.214.87.1
  23989. Faculty of Accounting & Industrial Management; University of Vaasa
  23990. Internet: ts@uwasa.fi   BBS +(358)-61-3170972; FIN-65101,  Finland
  23991.  
  23992. From news@columbia.edu Thu Oct  6 01:23:41 1994
  23993. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10993
  23994.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 6 Oct 1994 03:35:21 -0400
  23995. Received: by apakabar.cc.columbia.edu id AA14640
  23996.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 6 Oct 1994 03:35:19 -0400
  23997. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!EU.net!sunic!news.funet.fi!zippo.uwasa.fi!uwasa.fi!ts
  23998. From: ts@uwasa.fi (Timo Salmi)
  23999. Newsgroups: comp.protocols.kermit.misc
  24000. Subject: cmsg cancel <36vjgs$16i@zippo.uwasa.fi>
  24001. Control: cancel <36vjgs$16i@zippo.uwasa.fi>
  24002. Date: 6 Oct 1994 01:23:41 GMT
  24003. Organization: University of Vaasa
  24004. Lines: 1
  24005. Message-Id: <36vjit$16l@zippo.uwasa.fi>
  24006. References: <36r5d2$28f@zippo.uwasa.fi> <36t5r6$2kl@cruella.ee.pdx.edu> <36vjgs$16i@zippo.uwasa.fi>
  24007. Nntp-Posting-Host: uwasa.fi
  24008. Originator: ts@uwasa.fi
  24009. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  24010.  
  24011. <36vjgs$16i@zippo.uwasa.fi> was cancelled from within rn.
  24012.  
  24013. s:
  24014. :   [...very interesting argument deleted...]
  24015. :
  24016. :This posting proves that it made sense to carry on this humungous thread
  24017. :about _free_ kermit. It is a management problem. Columbia has a problem
  24018.  
  24019. :Frank, I hope to encourage you this way, because I feel a lot for
  24020. :you guys, and Kermit.
  24021. :
  24022. :Timo, feel free to give us some more thoughts on management of the Kermit
  24023. :project.
  24024.  
  24025. Thank you for the very nice posting.  I think, however, that I have
  24026. already about covered all the essential points that I had.  For the
  24027. time being I do not have anything additional to contribute without
  24028. repeating myself.
  24029.  
  24030. My compliments for everyone for participating in a constructive
  24031. manner, which is the way we should always manage to work on the
  24032. Usenet news. 
  24033.  
  24034.    All the best, Timo
  24035.  
  24036. ..................................................................
  24037. Prof. Timo Salmi      Co-moderator of comp.archives.msdos.announce
  24038. Moderating at garbo.uwasa.fi anonymous FTP  archives  128.214.87.1
  24039. Faculty of Accounting & Industrial Management; University of Vaasa
  24040. Internet: ts@uwasa.fi   BBS +(358)-61-3170972; FIN-65101,  Finland
  24041.  
  24042. From news@columbia.edu Thu Oct  6 08:40:51 1994
  24043. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15713
  24044.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 6 Oct 1994 05:51:20 -0400
  24045. Received: by apakabar.cc.columbia.edu id AA18986
  24046.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 6 Oct 1994 05:51:19 -0400
  24047. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!EU.net!sun4nl!philapd!apdnews!taren2la.apd.dec.com!groot
  24048. From: groot@apd.dec.com (Henk de Groot)
  24049. Newsgroups: comp.protocols.kermit.misc
  24050. Subject: Re: Columbia University's Kermit copyright
  24051. Message-Id: <groot.781432851@taren2la.apd.dec.com>
  24052. Date: 6 Oct 94 08:40:51 GMT
  24053. References: <9410041248.AA26638@SimTel.Coast.NET> <36rnho$1kj@apakabar.cc.columbia.edu> <groot.781365699@taren2la.apd.dec.com> <36ulqo$32u@news.icaen.uiowa.edu>
  24054. Sender: news@apd.dec.com
  24055. Reply-To: groot@apd.dec.com (Henk de Groot)
  24056. Lines: 57
  24057. X-Disclaimer: This opinion is mine alone
  24058. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  24059.  
  24060. In <36ulqo$32u@news.icaen.uiowa.edu> mjo@ecn.uiowa.edu (Mike O'Connor) writes:
  24061. >In article <groot.781365699@taren2la.apd.dec.com> groot@apd.dec.com (Henk de Groot) writes:
  24062. >>Please Keith or Timo, can this be arranged or are we in a Draw position as
  24063. >>far as Kermit is concerned? I think its your turn now to give in or give up.
  24064. >>  /   / de Groot  Dep: ALD2          | E-Mail: groot@apd.dec.com
  24065. >
  24066. >Ahhh...  DEC.  Aren't you the guys that are shipping Kermit on CD-ROM
  24067. >[...]
  24068. >
  24069. >Hey, your stock is rebounding a bit -- you can afford it.  
  24070. >
  24071. >-Mike
  24072.  
  24073. Hello Mike,
  24074.  
  24075. I don't understand your followup.
  24076.  
  24077. Two things for comment:
  24078.  
  24079. 1)
  24080.  
  24081. I work for Digital but I have nothing to do with the Alpha-AXP OSF/2 Cdroms
  24082. or whatever CD-ROM Digital is publishing. Digital is a company with more
  24083. than 80000 employees, you can't blame a single person for everything Digital
  24084. does.
  24085.  
  24086. You made an assumption that Kermit on the Freeware CD-ROM is there
  24087. without permission of Columbia University. I don't know if that is true but
  24088. I would like to know where you got this information from. If you are just
  24089. guessing I suggest you shut up and first get your facts straight. I saw
  24090. that you are harassing SUN employees also, the same applies there. If you
  24091. have your facts please inform Digital, SUN or Columbia through propper
  24092. chanels, not through posting employees of either companies.
  24093.  
  24094. (Usual disclaimers apply, I don't/can't speak for Digital (or SUN).)
  24095.  
  24096. 2)
  24097.  
  24098. I'm trying to suggest a solution to this problem. There are two parties,
  24099. Columbia University and the Major Archive sites. Your comment doesn't
  24100. contribute in any way to solve this problem, it mearly creates redundant
  24101. noice in the group. I suggest that you make a contribution or shut up.
  24102.  
  24103.  
  24104. I will not follow up on this or discus this any further, it is off topic
  24105. and I'm nog going to speak for either Digital nor SUN, my suggestions were
  24106. my own. If you have facts, send them to Columbia, Digital or SUN.
  24107.  
  24108. Kind Regards,
  24109.  
  24110.  
  24111. Henk.
  24112.  
  24113. --
  24114.   /   / de Groot  Dep: ALD2          | E-Mail: groot@apd.dec.com
  24115.  /---/ __  __  /  Tel: +31 55 432104 | Corp: Digital Equipment Corporation
  24116. /   / (-_ / / /(  Loc: FP-B09        | Site: Apeldoorn, The Netherlands
  24117.  
  24118. From news@columbia.edu Thu Oct  6 11:11:04 1994
  24119. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18823
  24120.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 6 Oct 1994 07:39:34 -0400
  24121. Received: by apakabar.cc.columbia.edu id AA22865
  24122.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 6 Oct 1994 07:39:32 -0400
  24123. Path: news.columbia.edu!sol.ctr.columbia.edu!math.ohio-state.edu!jussieu.fr!univ-lyon1.fr!swidir.switch.ch!newsfeed.ACO.net!Austria.EU.net!EU.net!uunet!Germany.EU.net!Munich.Germany.EU.net!thoth.mch.sni.de!fam168!not-for-mail
  24124. From: Frank Hoffmann <fh.muc@sni.de>
  24125. Newsgroups: comp.protocols.kermit.misc
  24126. Subject: Re: Columbia University's Kermit copyright
  24127. Date: 6 Oct 1994 12:11:04 +0100
  24128. Organization: Siemens-Nixdorf Informationssysteme AG, Munich, Germany
  24129. Lines: 42
  24130. Sender: fh@fam168.mch.sni.de
  24131. Message-Id: <370m08$30j@fam168.mch.sni.de>
  24132. References: <9410041248.AA26638@SimTel.Coast.NET> <36rnho$1kj@apakabar.cc.columbia.edu> <groot.781365699@taren2la.apd.dec.com> <9410052152.AA18509@SimTel.Coast.NET>
  24133. Nntp-Posting-Host: fam168.mch.sni.de
  24134. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  24135.  
  24136.  
  24137.  
  24138.             * Sigh *
  24139.  
  24140.  
  24141.  
  24142. I kept quiet until now, but ....
  24143.  
  24144. As far as I can see, we're in a deadlock situation here. I have the utmost
  24145. respect for Timo, Keith, Frank and all the other guys providing the net-
  24146. community with fine software and great services.
  24147.  
  24148. Since the quarrel about the CD-ROM distribution has been discussed for
  24149. quite some time here in the opening and in private between the concerned
  24150. parties, I would vote to end it now and here.
  24151.  
  24152. Right now nothing seeems to change anyway and if one or the other changes
  24153. his/her mind, I believe we all will be notified in this group or the other.
  24154.  
  24155. If and how the copyright concept affects the Kermit distribution and/or usage
  24156. everywhere remains to be seen, but I grant Frank the right to see it his way
  24157. as well as I respect the decisions of Keith and Timo.
  24158.  
  24159. It is everybodys right to feel unhappy about this. Anyway, I think we have
  24160. heard the respective views and even if we would like to, we (meaning the
  24161. bystanders, not the involved parties) cannot change it.
  24162.  
  24163. So, please, accept the decisions made and even if you can't accept, don't
  24164. post anymore something like "Waahh, I'm unhappy with this" etc.pp.
  24165.  
  24166.  
  24167. These are just my very own $.02
  24168.  
  24169. Kind regards
  24170. +frank
  24171.  ------------------------------------------------------------------------------
  24172.            Frank Hoffmann +++ Siemens Nixdorf Germany
  24173.         Voice: +49-894-144-7615 +++ Fx: +49-894-144-7746
  24174.            Senior network controller +++ System administrator
  24175.           E-Mail: fh.muc@sni-usa.com +++ fh.muc@sni.de
  24176.  ------------------------------------------------------------------------------
  24177.        The Light at the end of the tunnel is the headlamp of an oncoming train.
  24178.  
  24179. From news@columbia.edu Thu Oct  6 12:51:40 1994
  24180. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23900
  24181.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 6 Oct 1994 09:20:19 -0400
  24182. Received: by apakabar.cc.columbia.edu id AA28289
  24183.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 6 Oct 1994 09:20:12 -0400
  24184. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!math.ohio-state.edu!scipio.cyberstore.ca!vanbc.wimsey.com!unixg.ubc.ca!quartz.ucs.ualberta.ca!tribune.usask.ca!canopus.cc.umanitoba.ca!rahardj
  24185. From: rahardj@cc.umanitoba.ca (Budi Rahardjo)
  24186. Newsgroups: comp.protocols.kermit.misc
  24187. Subject: Re: Columbia University's Kermit copyright
  24188. Date: 6 Oct 1994 12:51:40 GMT
  24189. Organization: The University of Manitoba
  24190. Lines: 34
  24191. Message-Id: <370rss$cf7@canopus.cc.umanitoba.ca>
  24192. References: <9410041248.AA26638@SimTel.Coast.NET> <36rnho$1kj@apakabar.cc.columbia.edu> <groot.781365699@taren2la.apd.dec.com> <9410052152.AA18509@simtel.coast.net> <36v9mg$t22@chopin.udel.edu>
  24193. Nntp-Posting-Host: antares.cc.umanitoba.ca
  24194. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  24195.  
  24196. darkstar@chopin.udel.edu (Jerry Alexandratos) writes:
  24197.  
  24198. >Well, what about TeX/LaTeX, and the implementations of it that exist? 
  24199. >With those programs it's the exact same thing--everything is publically
  24200. >available, but if you want to know every little thing, you need to
  24201. >purchase the TeXbook, LaTeX-A Document Preparation System, and ideally,
  24202. >The LaTeX Companion.  Does this mean that you'll be getting rid of the
  24203. >DOS version of TeX that exists on SimTel?
  24204.  
  24205. 1. There are no restriction to distribute those program on CD-ROMs.
  24206.    This is the most important part.
  24207. 2. There are documentations for LaTeX and the like and their distribution
  24208.    are not restricted. I've seen Kermit's on-line documentation, but
  24209.    now they intentionally pull it out of the distribution.
  24210.    In a way, intentionally crippling the electronic distribution
  24211.    which is claimed to be free.
  24212.  
  24213. ...
  24214. >Are you complaining about Kermit's documentation becasue there isn't
  24215. >any, or because it isn't as comprehensive as the book?  
  24216.  
  24217. I think he was saying that the Kermit's team intentionally took
  24218. the electronic/on-line documentation forcing the people to buy the book.
  24219. Both parties have valid aruments. 
  24220.  
  24221. [Does book sales have *that* large revenue ? Would the book sale
  24222. be able to pay the salary of one full-time worker ? 
  24223. Wow, for sure I am going to write a book]
  24224.  
  24225. -- budi
  24226. -- 
  24227. Budi Rahardjo <Budi_Rahardjo@UManitoba.Ca>
  24228. #include <std-disclaimer.h>
  24229. Unix Support - Computer Services - University of Manitoba
  24230.  
  24231. From news@columbia.edu Sun Oct  6 01:05:54 1994
  24232. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26454
  24233.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 6 Oct 1994 09:49:18 -0400
  24234. Received: by apakabar.cc.columbia.edu id AA29966
  24235.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 6 Oct 1994 09:49:15 -0400
  24236. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!usc!howland.reston.ans.net!news.sprintlink.net!sundog.tiac.net!wizard.pn.com!Germany.EU.net!EU.net!uunet!psinntp!newton.hartwick.edu!wisanr
  24237. From: wisanr@hartwick.edu (Dick Wisan)
  24238. Newsgroups: comp.protocols.kermit.misc
  24239. Subject: How IS Kermit paid for?
  24240. Message-Id: <1994Oct5.200554.1099@newton.hartwick.edu>
  24241. Date: 5 Oct 94 20:05:54 -0500
  24242. Organization: HARTWICK COLLEGE
  24243. Lines: 33
  24244. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  24245.  
  24246. It looks to me as if the brouhaha about Kermit on CDROM & SimTel, &c
  24247. turns on the question how Kermit is paid for.  If it were shareware, 
  24248. CDROM would be welcome because exposure is what brings registrations.  
  24249. If it were a straight commercial program, NO distribution without 
  24250. charge would be permitted.  If it were fully subsidized, CDROM &c. 
  24251. would be mostly harmless.  Trying to follow the logic of all these 
  24252. exchanges, it finally gets through to me, I have no idea how Kermit 
  24253. is paid for?  I think I have been assuming that Columbia picks up the 
  24254. tab, though recalling the tuition they use to charge me (many years 
  24255. ago), I suppose I should have known better.  
  24256.  
  24257. I got MS Kermit 3.13 free from either SimTel or from SIMTEL20, its US 
  24258. Government subsidized predecessor.  Should I have paid something?  Who 
  24259. has to pay for it?  Who does pay for it?  How does keeping it off CDROMs
  24260. help?
  24261.  
  24262. Frank da Cruz doesn't owe us explanations.  He doesn't have to respond
  24263. to anything on this newsgroup unless he feels like it.  The idea of
  24264. opening it up unmoderated wasn't to shower him with chores.  The idea 
  24265. was we could kick around our ideas and problems *without* the Columbia 
  24266. crew having to put time on it.  We can even complain and try to explain
  24267. to each other about Columbia's policies.  On the other hand, if he looks 
  24268. into the group and sees postings that make him unhappy --well, we didn't 
  24269. make him look.
  24270.  
  24271. Now with all that for preface, making no claim of right to an answer, may
  24272. I suggest it might help if someone would explain how the Kermit operation
  24273. gets its funds. 
  24274.  
  24275. -- 
  24276. R. N. (Dick) Wisan  - Email: internet WISANR@hartwick.edu
  24277.                     - Snail: 37 Clinton Street, Oneonta NY 13820, U.S.A.
  24278.                     - Just your opinion, please, ma'am: No fax.
  24279.  
  24280. From news@columbia.edu Thu Oct  6 13:43:06 1994
  24281. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26568
  24282.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 6 Oct 1994 09:51:15 -0400
  24283. Received: by apakabar.cc.columbia.edu id AA00220
  24284.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 6 Oct 1994 09:51:13 -0400
  24285. Path: news.columbia.edu!sol.ctr.columbia.edu!math.ohio-state.edu!cs.utexas.edu!swrinde!sgiblab!munnari.oz.au!ariel.ucs.unimelb.EDU.AU!ariel!nicks
  24286. From: nicks@ariel.ucs.unimelb.EDU.AU (Nick Smith)
  24287. Newsgroups: comp.protocols.kermit.misc
  24288. Subject: Re: Kermit for Windows/NT
  24289. Date: 6 Oct 1994 23:43:06 +1000
  24290. Organization: University of Melbourne
  24291. Lines: 29
  24292. Message-Id: <nicks.781450918@ariel>
  24293. References: <1994Sep19.071445.15802@medicus.com>
  24294. Nntp-Posting-Host: ariel.ucs.unimelb.edu.au
  24295. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  24296.  
  24297. bill@medicus.com (Bill Chinn) writes:
  24298.  
  24299. >Hello,
  24300.  
  24301. >I was wondering if anyone is working on porting Kermit to
  24302. >Windows/NT?  
  24303.  
  24304. >If anyone is working on an NT port, I know some people here
  24305. >who would love to beta test it.
  24306.  
  24307. >I'm also wondering if anyone is planning on adding support 
  24308. >for the new Microsoft TCP/IP stack into Kermit.
  24309.  
  24310. >Thanks for any info and if anyone else is interested in this
  24311. >info I'll post a summary of whatever info I get.
  24312. >--Bill
  24313.  
  24314. Kermit is built into the Windows NT Terminal.  I've used it to
  24315. transfer files from my local university to my home PC with no
  24316. troubles.
  24317.  
  24318.  
  24319. =============================================================
  24320. = Nick Smith    Account Manager - Century Analysis, Inc.    =
  24321. = Specializing in Client-Server Information Integration     =
  24322. = 110 Albert Street, Suite 3                                =
  24323. = East Melbourne, VIC  3002                                 =
  24324. = Australia                  nicks@ariel.ucs.unimelb.edu.au =
  24325. =============================================================
  24326.  
  24327. From news@columbia.edu Thu Oct  6 13:39:05 1994
  24328. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26574
  24329.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 6 Oct 1994 09:51:41 -0400
  24330. Received: by apakabar.cc.columbia.edu id AA00241
  24331.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 6 Oct 1994 09:51:39 -0400
  24332. Path: news.columbia.edu!sol.ctr.columbia.edu!math.ohio-state.edu!cs.utexas.edu!uunet!mnemosyne.cs.du.edu!nyx.cs.du.edu!not-for-mail
  24333. From: kschwab@nyx.cs.du.edu (Kerry Schwab)
  24334. Newsgroups: comp.protocols.kermit.misc
  24335. Subject: Re: CR translation in telnet connection
  24336. Date: 6 Oct 1994 07:39:05 -0600
  24337. Organization: /usr/lib/news/organi[sz]ation
  24338. Lines: 23
  24339. Message-Id: <370ulp$d19@nyx.cs.du.edu>
  24340. References: <28.335.uupcb@aecibbs.proxima.alt.za> <367bso$c1m@apakabar.cc.columbia.edu> <36kk5l$drh@cleese.apana.org.au>
  24341. Nntp-Posting-Host: nyx.cs.du.edu
  24342. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  24343.  
  24344. >In article <367bso$c1m@apakabar.cc.columbia.edu>, fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  24345. |> In article <28.335.uupcb@aecibbs.proxima.alt.za>  
  24346. |> andrew.dunstan@aecibbs.proxima.alt.za (Andrew Dunstan)  writes:
  24347. |> > I am connecting to a DCX Ethergate which has a modem attached, and
  24348. |> > then dialling out on the modem. The Ethergate does no CRLF or CR-Nul
  24349. |> > translation, so I unfortunately end up sending one of these pairs,
  24350. |> > when all I want to send is a plain CR.
  24351. |> > 
  24352. |> The makers of the Ethergate should read RFC854.
  24353. |> 
  24354. |> However, this is becoming such a pervasive problem that the forthcoming
  24355. |> releases of MS-DOS Kermit and C-Kermit will add an option,
  24356. |> SET TELNET NEWLINE-MODE RAW, to allow carriage returns to be sent
  24357. |> bare, with no LF or NUL stuffed after them as required by the TELNET
  24358. |> NVT specification (RFC854).
  24359. |> 
  24360. >
  24361.  
  24362. To be fair to the terminal server folks, I had the same problem, but it was 
  24363. because the thing wanted an rlogin connection...(so I spoofed it).
  24364.  
  24365. --
  24366. Kerry
  24367.  
  24368. From news@columbia.edu Thu Oct  6 14:29:58 1994
  24369. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29589
  24370.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 6 Oct 1994 10:30:09 -0400
  24371. Received: by apakabar.cc.columbia.edu id AA02896
  24372.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 6 Oct 1994 10:30:07 -0400
  24373. Path: news.columbia.edu!usenet
  24374. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  24375. Newsgroups: comp.protocols.kermit.misc
  24376. Subject: Re: Columbia University's Kermit copyright
  24377. Date: 6 Oct 1994 14:29:58 GMT
  24378. Organization: Columbia University
  24379. Lines: 17
  24380. Message-Id: <3711l6$2p5@apakabar.cc.columbia.edu>
  24381. References: <370rss$cf7@canopus.cc.umanitoba.ca>
  24382. Nntp-Posting-Host: fdc.cc.columbia.edu
  24383. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  24384.  
  24385. In article <370rss$cf7@canopus.cc.umanitoba.ca> rahardj@cc.umanitoba.ca (Budi  
  24386. Rahardjo) writes:
  24387. > 2. There are documentations for LaTeX and the like and their distribution
  24388. >    are not restricted. I've seen Kermit's on-line documentation, but
  24389. >    now they intentionally pull it out of the distribution.
  24390. >    In a way, intentionally crippling the electronic distribution
  24391. >    which is claimed to be free.
  24392. This claim has been made repeatedly, but it isn't true.  Kermit has better
  24393. online documentation than most other software, and we have never pulled any
  24394. of it off our server.  For example, the help file whose first couple lines
  24395. were displayed recently is 74K long, and it is accompanied by an "update"
  24396. file that is 55K long and a "hints and tips" file that is 134K long.  Most
  24397. people get by just fine using these documentation files, and never bother
  24398. to consult the printed manuals, as many users have attested.
  24399.  
  24400. - Frank
  24401.  
  24402. From news@columbia.edu Thu Oct  6 14:36:05 1994
  24403. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29991
  24404.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 6 Oct 1994 10:36:13 -0400
  24405. Received: by apakabar.cc.columbia.edu id AA03588
  24406.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 6 Oct 1994 10:36:12 -0400
  24407. Path: news.columbia.edu!usenet
  24408. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  24409. Newsgroups: comp.protocols.kermit.misc
  24410. Subject: Re: C-Kermit for OS/2 and "set send start"
  24411. Date: 6 Oct 1994 14:36:05 GMT
  24412. Organization: Columbia University
  24413. Lines: 24
  24414. Message-Id: <37120l$3fr@apakabar.cc.columbia.edu>
  24415. References: <36vti4$3h4@vixen.cso.uiuc.edu>
  24416. Nntp-Posting-Host: fdc.cc.columbia.edu
  24417. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  24418.  
  24419. In article <36vti4$3h4@vixen.cso.uiuc.edu> shair@uiuc.edu (Bob Shair) writes:
  24420. > I'm attempting to do Kermit file transfer through a particularly
  24421. > obstinate controller which has no transparent mode (a RS/6000 runnin HCON).
  24422. > Following the model on p.136 of Using C-Kermit, I begin by telling my OS/2
  24423. > system:
  24424. > [C:\CKERMIT] C-Kermit>set parity even
  24425. > [C:\CKERMIT] C-Kermit>set send start 58
  24426. > ?Not in ASCII control range - 58
  24427. >
  24428. This was fixed subsequent to the Alpha version you are using.  Please pick
  24429. up the final Beta version from host:
  24430.  
  24431.   kermit.columbia.edu
  24432.  
  24433. directory:
  24434.  
  24435.   kermit/test/bin
  24436.  
  24437. binary mode, file:
  24438.  
  24439.   cko190.zip
  24440.  
  24441. - Frank
  24442.  
  24443. From news@columbia.edu Thu Oct  6 15:25:49 1994
  24444. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04366
  24445.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 6 Oct 1994 11:25:59 -0400
  24446. Received: by apakabar.cc.columbia.edu id AA07761
  24447.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 6 Oct 1994 11:25:55 -0400
  24448. Path: news.columbia.edu!usenet
  24449. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  24450. Newsgroups: comp.protocols.kermit.misc
  24451. Subject: Funding Kermit
  24452. Date: 6 Oct 1994 15:25:49 GMT
  24453. Organization: Columbia University
  24454. Lines: 21
  24455. Message-Id: <3714tt$7hu@apakabar.cc.columbia.edu>
  24456. Nntp-Posting-Host: fdc.cc.columbia.edu
  24457. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  24458.  
  24459. I hope everybody realizes how absurd this discussion is.
  24460.  
  24461. It seems we have reached the level at which everyone finally
  24462. understands that the Kermit effort must be funded.  So the
  24463. debate now hinges on exactly how that is to be accomplished.
  24464. Everyone seems genuinely concerned that we find an effective
  24465. funding model.  How about this one:
  24466.  
  24467.   PURCHASE THE APPROPRIATE MANUALS
  24468.  
  24469. In other words, put up or shut up.  I'm sorry, does that sound
  24470. rude?  Look at it this way.  If you agree that everyone who uses
  24471. Kermit software should pay her/his fair share, then that includes
  24472. you, personally -- each and every one of you.  We already have a
  24473. funding model, and we ask you to respect it.  Most of you do not.
  24474.  
  24475. If you use Kermit software but you have not respected our wishes
  24476. in this regard, then you have no business telling us how
  24477. to run our business.
  24478.  
  24479. - Frank
  24480.  
  24481. From news@columbia.edu Thu Oct  6 13:56:51 1994
  24482. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06141
  24483.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 6 Oct 1994 11:48:24 -0400
  24484. Received: by apakabar.cc.columbia.edu id AA09236
  24485.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 6 Oct 1994 11:48:16 -0400
  24486. Newsgroups: comp.protocols.kermit.misc
  24487. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!swrinde!cs.utexas.edu!uunet!spcuna!ritz!kudut
  24488. From: kudut@ritz.mordor.com (Ken Udut)
  24489. Subject: Re: Columbia University's Kermit copyright
  24490. References: <36r5d2$28f@zippo.uwasa.fi> <Cx5F0w.FtJ@ritz.mordor.com> <36s3r9$ae0@zippo.uwasa.fi>
  24491. Organization: Mordor International BBS - Jersey City, NJ
  24492. Date: Thu, 6 Oct 1994 13:56:51 GMT
  24493. Message-Id: <Cx982r.pK@ritz.mordor.com>
  24494. Lines: 64
  24495. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  24496.  
  24497. In article <36s3r9$ae0@zippo.uwasa.fi> ts@uwasa.fi (Timo Salmi) writes:
  24498. >In article <Cx5F0w.FtJ@ritz.mordor.com> kudut@ritz.mordor.com (Ken Udut) writes:
  24499. >:Timo,
  24500. >:    Why must Frank be coerced into changing the practices of Kermit 
  24501. >:distribution?  Frank is repeating the same position simply because that 
  24502. >:*is* his position.  He is unnecessarily under fire.
  24503.  
  24504. >Telling about realities of life as I see them is not putting someone
  24505. >under fire.  Have you seen me make any DEMANDS on Frank during this
  24506. >discussion?
  24507.  
  24508. When I listen to Frank, I see a man who is a dreamer and a doer.  I've 
  24509. read everything online that I can find about Kermit, over the past few years.
  24510. In everything that Frank has written about Kermit, I have seen *passion* 
  24511. and *drive*, to make this world a better place through intercommunications.
  24512.  
  24513. Through Kermit, Frank has managed to get computers hooked together that, 
  24514. previously weren't talking to one another.  Implimenting a very simply 
  24515. protocol, with simple mechanisms, with very sound concepts and ideas, and 
  24516. the most backward compatability I have *ever* seen in *any* product - it 
  24517. has never been done before Kermit, and NOTHING of its scope has been done 
  24518. since.
  24519.  
  24520. Kermit is a specialized product, servicing the needs of people who need 
  24521. to communicate with dissimilar devices, and not the needs of a mass 
  24522. audience.  I can't picture a sudden *rush* in the use of Kermit, unless 
  24523. it starts getting distributed in a common medium like CD-ROM.  How will 
  24524. the new rush of people that you speak of be getting Kermit?
  24525.  
  24526. If they're getting it through FTP sites, they will have system 
  24527. administrators and local gurus to help out.
  24528.  
  24529. If they're getting it in their business usage or university, they have 
  24530. sysadmins and gurus to help out.
  24531.  
  24532. Local BBS's too, have their gurus.  (if nothing else, the person who 
  24533. uploaded the file to the BBS must know *something* about Kermit).
  24534.  
  24535. People that buy the software with the book have what they need in their 
  24536. hands.
  24537.  
  24538. But CD-ROM - I'm sorry, but CD-ROMmers are generally lone wolves.  BBS's 
  24539. have community.  The Internet has community.  Businesses and Universities 
  24540. have community.
  24541.  
  24542.  
  24543. And what does this have to do with my defense of Frank?  He sounds like 
  24544. an optimist and a dreamer in everything I've seen him write about Kermit, 
  24545. UNTIL this discussion began.  He started to sound defeated... 
  24546. depressed... lonely because the fun... the dream and vision vanishes when 
  24547. under attack.
  24548.  
  24549. Frank has his policies, and good sound reason for them.  He's explained 
  24550. it 100 times here - HE SHOULDN'T HAVE TO DEFEND HIMSELF.  
  24551.  
  24552. Thanks for listening.
  24553.  
  24554.  
  24555. Ken
  24556. kudut@ritz.mordor.com
  24557. listowner of Y-RIGHTS@SJUVM.BITNET - discussion on the rights of kids/teens
  24558. listowner of the new weekly Optimism Digest - OPTIMISM@SJUVM.BITNET
  24559. To subscribe, send e-mail to: LISTSERV@SJUVM.BITNET (SJUVM.STJOHNS.EDU)
  24560. with the message: SUB Y-RIGHTS (or OPTIMISM) Firstname Lastname
  24561.  
  24562. From news@columbia.edu Thu Oct  6 14:27:15 1994
  24563. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06516
  24564.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 6 Oct 1994 11:55:48 -0400
  24565. Received: by apakabar.cc.columbia.edu id AA09805
  24566.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 6 Oct 1994 11:55:47 -0400
  24567. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!uunet!dove!venus.nist.gov!enh.nist.gov!reflib
  24568. From: reflib@enh.nist.gov
  24569. Newsgroups: comp.protocols.kermit.misc
  24570. Subject: Query for fcd; was: Kermit takes an upper-case K
  24571. Date: 6 OCT 94 14:27:15 GMT
  24572. Organization: NIST
  24573. Lines: 11
  24574. Message-Id: <6OCT94.14271506@enh.nist.gov>
  24575. Nntp-Posting-Host: enh.nist.gov
  24576. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  24577.  
  24578.   My recent assertion that Kermit takes its name from the Muppet
  24579. has been challenged.
  24580.  
  24581.   Someone claims that it began as an acronym: K.E.R.M.I.T; but no
  24582. explanation of the acronym was given.
  24583.  
  24584.   Can we get an official answer from Frank da Cruz?
  24585.  
  24586.   Thank you.
  24587.  
  24588. reflib@enh.nist.gov
  24589.  
  24590. From news@columbia.edu Thu Oct  6 15:12:32 1994
  24591. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07340
  24592.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 6 Oct 1994 12:09:02 -0400
  24593. Received: by apakabar.cc.columbia.edu id AA10723
  24594.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 6 Oct 1994 12:09:00 -0400
  24595. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!godot.cc.duq.edu!newsfeed.pitt.edu!dsinc!netnews.upenn.edu!netnews.CC.Lehigh.EDU!ns2.CC.Lehigh.EDU!not-for-mail
  24596. From: jmt7@ns2.CC.Lehigh.EDU (JOHN M. TROIANO)
  24597. Newsgroups: comp.protocols.kermit.misc
  24598. Subject: Windows Kermit question
  24599. Date: 6 Oct 1994 11:12:32 -0400
  24600. Organization: Lehigh University
  24601. Lines: 24
  24602. Message-Id: <371450$18ou@ns2.CC.Lehigh.EDU>
  24603. Nntp-Posting-Host: ns2.cc.lehigh.edu
  24604. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  24605.  
  24606. Hi,
  24607.  
  24608.         I have been using the Windows version of Kermit (Win100 v2.3,
  24609. 5/1/91) and it seems that it will not allow you to define the function
  24610. keys F5 and F10 (or Shift-F5, F10). Unfortunately the remote application
  24611. that we would like to use Win100 to connect to relies very heavily on
  24612. these keys. The program maps F5 to "break" and Shift-F5 to "long break"
  24613. (ie., disconnect). It allows you to disable the former but not the
  24614. latter setting. Is there any way around this? Does anyone know why it
  24615. was written this way?
  24616.  
  24617. Thanks in advance!
  24618.  
  24619.  
  24620. ---------------------------------------------------------------------
  24621. John M. Troiano
  24622. Lehigh University Computing Center         Internet: jmt7@lehigh.edu
  24623. Bethlehem, PA
  24624.  
  24625.  
  24626. ---------------------------------------------------------------------
  24627. John M. Troiano                               phone: (610)758-5060
  24628. Lehigh University Computing Center              fax: (610)974-6436
  24629.  
  24630.  
  24631. From news@columbia.edu Thu Oct  6 14:42:49 1994
  24632. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10393
  24633.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 6 Oct 1994 12:43:41 -0400
  24634. Received: by apakabar.cc.columbia.edu id AA13341
  24635.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 6 Oct 1994 12:43:40 -0400
  24636. Newsgroups: comp.protocols.kermit.misc
  24637. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!uunet!spcuna!ritz!kudut
  24638. From: kudut@ritz.mordor.com (Ken Udut)
  24639. Subject: Re: Columbia University's Kermit copyright
  24640. References: <9410052152.AA18509@simtel.coast.net> <36v9mg$t22@chopin.udel.edu> <370rss$cf7@canopus.cc.umanitoba.ca>
  24641. Organization: Mordor International BBS - Jersey City, NJ
  24642. Date: Thu, 6 Oct 1994 14:42:49 GMT
  24643. Message-Id: <Cx9A7D.23I@ritz.mordor.com>
  24644. Lines: 33
  24645. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  24646.  
  24647. >
  24648. >I think he was saying that the Kermit's team intentionally took
  24649. >the electronic/on-line documentation forcing the people to buy the book.
  24650. >Both parties have valid aruments. 
  24651. >
  24652. >[Does book sales have *that* large revenue ? Would the book sale
  24653. >be able to pay the salary of one full-time worker ? 
  24654. >Wow, for sure I am going to write a book]
  24655.  
  24656. Budi,
  24657.  
  24658.     Why are you treating Frank like a bad guy?  He is one man, with a 
  24659. small team of developers - NOT some big company.  To top it off, Budi, 
  24660. you are being sarcastic to him -in front of his face-.  There is nothing 
  24661. ruder that I can think of.
  24662.  
  24663. Outside of trying trash the beauty of Kermit, which exists on hundreds of 
  24664. vastly diverse computer types, allowing the big and the small to talk... 
  24665. the great equalizer which does something networks have not done - 
  24666. something even terminal emulators haven't done.
  24667.  
  24668. Sure, Zmodem seems faster.  But try transferring files from your color 
  24669. computer to your PC.  Or from your TOPS-20 to a DECSERVER.  How about 
  24670. from an Alpha to a Zenith-100?
  24671.  
  24672. Only ONE, truly portable protocol.  Kermit.  
  24673.  
  24674. Am I the only person who sees the beauty in Kermit and is disgusting by 
  24675. people trying to coerce Frank into turning Kermit into (ugh!) "Shareware"?
  24676.  
  24677.  
  24678. Ken
  24679. kudut@ritz.mordor.com
  24680.  
  24681. From news@columbia.edu Thu Oct  6 16:44:30 1994
  24682. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14763
  24683.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 6 Oct 1994 13:38:04 -0400
  24684. Received: by apakabar.cc.columbia.edu id AA17767
  24685.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 6 Oct 1994 13:38:03 -0400
  24686. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!ub!ns.potsdam.edu!news.potsdam.edu!nelson
  24687. From: nelson@crynwr.crynwr.com (Russell Nelson)
  24688. Newsgroups: comp.protocols.kermit.misc
  24689. Subject: "No Manual, No Support"
  24690. Date: 06 Oct 1994 16:44:30 GMT
  24691. Organization: Crynwr Software
  24692. Lines: 16
  24693. Message-Id: <NELSON.94Oct6124430@crynwr.crynwr.com>
  24694. Nntp-Posting-Host: nh2.potsdam.edu
  24695. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  24696.  
  24697. Hey Frank, how about only supporting people who have purchased the
  24698. Kermit manual?
  24699.  
  24700.  1) It generates the income you need to support Kermit.
  24701.  2) It's reasonable.  Why should you help someone who hasn't bothered
  24702.     to help themselves first?
  24703.  
  24704. You can serialize new manuals, and ask current manual holders to send
  24705. in the manual's copyright page (with an SASE) to be serialized.  Then,
  24706. if you get a request for help without a valid serial number, refuse it.
  24707.  
  24708. --
  24709. -russ <nelson@crynwr.com>    http://www.crynwr.com/crynwr/nelson.html
  24710. Crynwr Software   | Crynwr Software sells packet driver support | ask4 PGP key
  24711. 11 Grant St.      | +1 315 268 1925 (9201 FAX)  | What is thee doing about it?
  24712. Potsdam, NY 13676 | LPF member - ask me about the harm software patents do.
  24713.  
  24714. From news@columbia.edu Thu Oct  6 17:51:55 1994
  24715. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20183
  24716.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 6 Oct 1994 14:42:31 -0400
  24717. Received: by apakabar.cc.columbia.edu id AA04825
  24718.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 6 Oct 1994 14:42:29 -0400
  24719. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!europa.eng.gtefsd.com!MathWorks.Com!news.kei.com!ddsw1!not-for-mail
  24720. From: les@MCS.COM (Leslie Mikesell)
  24721. Newsgroups: comp.protocols.kermit.misc
  24722. Subject: Re: Funding Kermit
  24723. Date: 6 Oct 1994 12:51:55 -0500
  24724. Organization: /usr/lib/news/organi[sz]ation
  24725. Lines: 76
  24726. Message-Id: <371dfr$qf7@Mercury.mcs.com>
  24727. References: <3714tt$7hu@apakabar.cc.columbia.edu>
  24728. Nntp-Posting-Host: mercury.mcs.com
  24729. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  24730.  
  24731. In article <3714tt$7hu@apakabar.cc.columbia.edu>,
  24732. Frank da Cruz <fdc@fdc.cc.columbia.edu> wrote:
  24733. >I hope everybody realizes how absurd this discussion is.
  24734.  
  24735. Not at all.  I suppose it is absurd to talk when it is obvious that
  24736. the intended target is making a point of not listening but otherwise
  24737. it is a decision that affects a lot of people adversely and you should
  24738. expect them to react accordingly.
  24739.  
  24740. >Everyone seems genuinely concerned that we find an effective
  24741. >funding model.  How about this one:
  24742. >
  24743. >  PURCHASE THE APPROPRIATE MANUALS
  24744.  
  24745. How is this different from straight shareware with the manual on
  24746. the disk, other than being more difficult for everyone involved?  I think
  24747. Russ Nelson was exactly on target when he pointed out that restricting
  24748. distribution unfairly puts the burden on the people who can least
  24749. afford it and also reduces the number of people who will use the program.
  24750.  
  24751. >If you use Kermit software but you have not respected our wishes
  24752. >in this regard, then you have no business telling us how
  24753. >to run our business.
  24754.  
  24755. Come on - what would you say if *any* commercial business made a statement
  24756. like that?  Or non-commercial for that matter?  Or even the government? 
  24757.  
  24758. I appreciate the effort that has gone into maintaining the kermit line.
  24759. However, disagreeing with your distribution policy is an unrelated issue.
  24760. I have made a bug-fix or two myself and you'll find my name among the
  24761. hundreds in the C-kermit listing.  The fixes were trivial (but necessary
  24762. for what I wanted to do), but the time to find the problems was not, and
  24763. I appreciate not having to repeat the process after each release.  I
  24764. have at least three copies of the ms-dos kermit book floating around in
  24765. my office that came bundled with some commercial software and if the added
  24766. cost helped fund the improvements that is fine with me.  However, it is
  24767. not a simple issue: the books are always out of date and thus not much help
  24768. with your actual problems, and the software package that included them has
  24769. never been popular so you have to wonder if this was in part due to the
  24770. extra cost of the book.
  24771.  
  24772. I have no particular financial interest one way or another since I have
  24773. arranged ftp access (made possible largely by my location...). However
  24774. I think the world needs a communication protocol that is freely available
  24775. to everyone and if it isn't going to be kermit, perhaps someone will
  24776. come up with something else. 
  24777.  
  24778. I think the issue of free vs. non-free access should revolve around whether
  24779. it is appropriate for the files to be on ftp.uu.net.  This site exists
  24780. specifically to provide access to the internet for people who are not
  24781. directly connected, and they make a profit from providing this access.
  24782. They are very good at mirroring files from master locations so there is
  24783. no issue of out-of-date copies here.  The files can, of course, also
  24784. be ftp'd directly from there at no cost, so there can be no question
  24785. about them selling anything other than an alternative access method.  They
  24786. also offer the service of putting the entire machine's archives on a tape
  24787. for you.  Again, simply an alternative access method.  Plus, they will
  24788. ftp something specifically for you if they don't normally archive it.
  24789. And, of course, you can coax a third-party ftpmail server to cough up
  24790. just about anything through uunet and they'll get the same fee for the
  24791. recipient's connect time.
  24792.  
  24793. There are some very messy issues here. Is calling kermit "free" a
  24794. misrepresentation?  Is a distribution service acting as an agent for
  24795. the recipient and thus able to perform any copy that the recipient
  24796. could do himself?  Why does it make a difference if this agent makes
  24797. a profit or not?  Or if it provides IP connectivity instead of some
  24798. other media?  Like it or not, the decisions on these issues are going
  24799. to affect the future of kermit usage.  I've often wondered why no one
  24800. has bundled an off-line email package along with scripted kermit
  24801. communications as an obvious low-budget talk-to-any-host solution.
  24802. Now I see that it couldn't be distributed through any media usable
  24803. by the people who need such a thing...
  24804.  
  24805. Les Mikesell
  24806.   les@mcs.com
  24807.  
  24808. From news@columbia.edu Thu Oct  6 06:41:07 1994
  24809. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20989
  24810.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 6 Oct 1994 14:52:56 -0400
  24811. Received: by apakabar.cc.columbia.edu id AA05658
  24812.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 6 Oct 1994 14:52:54 -0400
  24813. Newsgroups: comp.protocols.kermit.misc
  24814. Path: news.columbia.edu!sol.ctr.columbia.edu!math.ohio-state.edu!cs.utexas.edu!swrinde!howland.reston.ans.net!EU.net!chsun!pan!jw
  24815. From: jw@adasoft.ch (Jamie Watson)
  24816. Subject: Re: Columbia University's Kermit copyright
  24817. Message-Id: <Cx8nwJ.E3I@adasoft.ch>
  24818. Reply-To: jw@adasoft.ch (Jamie Watson)
  24819. Organization: Adasoft AG, Switzerland
  24820. References: <9409300557.AA12036@simtel.coast.net> <36h490$9hc@apakabar.cc.columbia.edu> <36pbtj$cc0@usenety1.news.prodigy.com>
  24821. Date: Thu, 6 Oct 1994 06:41:07 GMT
  24822. Expires: Wed, 5 Oct 1994 23:00:00 GMT
  24823. Lines: 36
  24824. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  24825.  
  24826. >I totally fail to see how the funding of Kermit is diferent from the way
  24827. >shareware works. You want people to use the software and buy the manual.
  24828. >SO DO WE! But the idea that more people will buy the manuals if fewer
  24829. >people have the software completely eludes me.
  24830.  
  24831. The point that Frank has made several times in this discussion is not only
  24832. the funding of kermit through book sales, but also the load that is put
  24833. on the developers to provide support - of all kinds, not only telephone
  24834. but also email, and others.  I would turn your stement around a bit; while
  24835. it may be true that some more books will be sold because of distribution
  24836. on various CD-ROM and other media, that will be totally out of proportion
  24837. to the increase in support demands on Columbia from people who get kermit
  24838. from these other sources and do *not* buy the book.  So the result will be
  24839. a dramatic increase in workload to provide support at Columbia, with a very
  24840. small increase in revenue.  In fact, I personally believe that the increase
  24841. in revenue would be virtually nil, because I believe that overwhelming
  24842. majority of people would never even consider buying or reading the book
  24843. when they got the software this way.
  24844.  
  24845. >My impression is that people in this group are trying VERY hard to keep
  24846. >you from shooting yourself in the foot, and all you see is a profit
  24847. >motive.
  24848.  
  24849. My impression is that Frank and the development group at Columbia have a
  24850. very difficult job to do with extremely limited resources, and they are
  24851. trying to keep people from making it a lot more difficult and limiting
  24852. the resources even further.  My impression of the people who are involved
  24853. in the CD-ROM distribution is that they are being totally unreasonable;
  24854. the statement "I don't have the time or interest to arrange my archive
  24855. and/or CD-ROM distribution to include kermit on one but not the other"
  24856. is completely bogus, in my opinion.  My impression of the rest of those
  24857. who have been flaming Frank about this is that they are a typical bunch
  24858. of net.people looking for chance to be flame someone.  They say that one
  24859. way to feel "bigger" is by standing on someone else.
  24860.  
  24861. jw
  24862.  
  24863. From news@columbia.edu Thu Oct  6 18:00:09 1994
  24864. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26168
  24865.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 6 Oct 1994 15:54:02 -0400
  24866. Received: by apakabar.cc.columbia.edu id AA10434
  24867.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 6 Oct 1994 15:54:00 -0400
  24868. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!swrinde!sgiblab!gatekeeper.us.oracle.com!decwrl!pa.dec.com!bora-bora.pa.dec.com!flaherty
  24869. From: flaherty@pa.dec.com (Paul Flaherty)
  24870. Newsgroups: comp.protocols.kermit.misc
  24871. Subject: Re: Columbia University's Kermit copyright
  24872. Date: 6 Oct 94 18:00:09 GMT
  24873. Organization: Digital Equipment Corporation, Palo Alto, CA, USA
  24874. Lines: 18
  24875. Message-Id: <flaherty.781466409@bora-bora.pa.dec.com>
  24876. References: <36pbtj$cc0@usenety1.news.prodigy.com> <1994Oct4.101940.24819@chemabs.uucp> <9410041248.AA26638@SimTel.Coast.NET> <Cx70Ix.qL@brunel.ac.uk> <9410052142.AA18367@SimTel.Coast.NET>
  24877. Nntp-Posting-Host: bora-bora.pa.dec.com
  24878. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  24879.  
  24880. w8sdz@SimTel.Coast.NET (Keith Petersen) writes:
  24881.  
  24882. >No.  That's what this whole discussion is about.  You must purchase the
  24883. >Kermit book to get the documentation because Columbia withdrew it from
  24884. >free distribution several years ago.  This makes it impossible to use
  24885. >all of Kermit's features unless you pay US$34.95 for the documentation.
  24886.  
  24887. That's a pretty sweeping generalization, and wrong, too.  All of the features
  24888. are documented online, and the more sticky issues are discussed in the .BWR
  24889. files.  And of course, there's always the source code, which provides better
  24890. documentation than some of the shareware that's out there...
  24891.  
  24892. The book is really only necessary as a suppliment, or for folks who are totally
  24893. new to telecomputing.
  24894.  
  24895. -- 
  24896. -=Paul Flaherty, N9FZX |     "Just name a hero, and I'll prove he's a bum."
  24897. ->paulf@pa.dec.com     |          -- Col. Gregory "Pappy" Boyington
  24898.  
  24899. From news@columbia.edu Thu Oct  6 20:23:27 1994
  24900. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04670
  24901.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 6 Oct 1994 17:19:52 -0400
  24902. Received: by apakabar.cc.columbia.edu id AA18314
  24903.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 6 Oct 1994 17:19:48 -0400
  24904. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!uunet!news.uiowa.edu!icaen!mjo
  24905. From: mjo@ecn.uiowa.edu (Mike O'Connor)
  24906. Newsgroups: comp.protocols.kermit.misc
  24907. Subject: Re: Columbia University's Kermit copyright
  24908. Date: 6 Oct 1994 20:23:27 GMT
  24909. Organization: HP InterWorks Member
  24910. Lines: 59
  24911. Message-Id: <371mbv$687@news.icaen.uiowa.edu>
  24912. References: <groot.781365699@taren2la.apd.dec.com> <36ulqo$32u@news.icaen.uiowa.edu> <groot.781432851@taren2la.apd.dec.com>
  24913. Nntp-Posting-Host: iworks.ecn.uiowa.edu
  24914. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  24915.  
  24916. In article <groot.781432851@taren2la.apd.dec.com> groot@apd.dec.com (Henk de Groot) writes:
  24917.  
  24918. >>Ahhh...  DEC.  Aren't you the guys that are shipping Kermit on CD-ROM
  24919. >>Hey, your stock is rebounding a bit -- you can afford it.  
  24920. >I don't understand your followup.
  24921.  
  24922. Call it a bad attempt at humor.  I'm just glad to see DEC finally 
  24923. starting to recover, but that's a separate issue entirely.  :-) 
  24924.  
  24925. >I work for Digital but I have nothing to do with the Alpha-AXP OSF/2 Cdroms
  24926. >or whatever CD-ROM Digital is publishing. Digital is a company with more
  24927. >than 80000 employees, you can't blame a single person for everything Digital
  24928. >does.
  24929.  
  24930. No, of course not -- I wasn't trying to make you out to represent anyone
  24931. other than yourself.  I was suggesting that this problem goes beyond 
  24932. Simtel and Garbo, and that some of the offenders are in your back yard.
  24933. (Well, at least virtually speaking.)  I'm sorry if my point wasn't as
  24934. spelled out as it could have been.  It probably makes more sense in
  24935. the context of my other messages.
  24936.  
  24937. >You made an assumption that Kermit on the Freeware CD-ROM is there
  24938. >without permission of Columbia University. I don't know if that is true but
  24939. >I would like to know where you got this information from. If you are just
  24940. >guessing I suggest you shut up and first get your facts straight. I saw
  24941. >that you are harassing SUN employees also, the same applies there. If you
  24942. >have your facts please inform Digital, SUN or Columbia through propper
  24943. >chanels, not through posting employees of either companies.
  24944.  
  24945. My presumption was based on the fact that Frank had said that there
  24946. were no deals made with anyone manufacturing CD-ROMs to distribute
  24947. Kermit on them.  Here's the pertinent words from Frank:
  24948.  
  24949.  From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  24950.  Date: 30 Sep 1994 13:14:42 GMT
  24951.  Message-ID: <36h302$7qj@apakabar.cc.columbia.edu>
  24952.  
  24953.  If it is on ANY CDROM, it is there without our permission, as we have never
  24954.  yet negotiated a successful agreement with any CDROM distributor.  Read on
  24955.  and see why (as if I have explained this seventeen times already).
  24956.  
  24957. >(Usual disclaimers apply, I don't/can't speak for Digital (or SUN).)
  24958.  
  24959. Of course not -- sorry if it was presented the wrong way.  I just
  24960. don't see the sense in asking Keith and Timo to bend, when they're 
  24961. clearly not the only players involved.
  24962.  
  24963. >I'm trying to suggest a solution to this problem. There are two parties,
  24964. >Columbia University and the Major Archive sites. Your comment doesn't
  24965. >contribute in any way to solve this problem, it mearly creates redundant
  24966. >noice in the group. I suggest that you make a contribution or shut up.
  24967.  
  24968. There aren't just two parties, and this is going to come up time and time 
  24969. again.  Next it'll be the FreeBSD CD-ROM people.  Or some other FTP site.
  24970. I'm certainly not an attorney, and feel free to correct me if I am full
  24971. of it, but if Kermit doesn't protect its copyright, does it lose it?
  24972.  
  24973. -Mike
  24974.  
  24975.  
  24976. From news@columbia.edu Thu Oct  6 19:02:18 1994
  24977. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10631
  24978.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 6 Oct 1994 18:49:42 -0400
  24979. Received: by apakabar.cc.columbia.edu id AA25113
  24980.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 6 Oct 1994 18:49:40 -0400
  24981. Newsgroups: comp.protocols.kermit.misc
  24982. Path: news.columbia.edu!panix!MathWorks.Com!solaris.cc.vt.edu!uunet!spcuna!ritz!kudut
  24983. From: kudut@ritz.mordor.com (Ken Udut)
  24984. Subject: Re: Windows Kermit question
  24985. References: <371450$18ou@ns2.CC.Lehigh.EDU>
  24986. Organization: Mordor International BBS - Jersey City, NJ
  24987. Date: Thu, 6 Oct 1994 19:02:18 GMT
  24988. Message-Id: <Cx9M7u.Bs4@ritz.mordor.com>
  24989. Lines: 33
  24990. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  24991.  
  24992. In article <371450$18ou@ns2.CC.Lehigh.EDU> jmt7@ns2.CC.Lehigh.EDU (JOHN M. TROIANO) writes:
  24993. >Hi,
  24994. >
  24995. >        I have been using the Windows version of Kermit (Win100 v2.3,
  24996. >5/1/91) and it seems that it will not allow you to define the function
  24997. >keys F5 and F10 (or Shift-F5, F10). Unfortunately the remote application
  24998. >that we would like to use Win100 to connect to relies very heavily on
  24999. >these keys. The program maps F5 to "break" and Shift-F5 to "long break"
  25000. >(ie., disconnect). It allows you to disable the former but not the
  25001. >latter setting. Is there any way around this? Does anyone know why it
  25002. >was written this way?
  25003. >
  25004. >Thanks in advance!
  25005.  
  25006. Dear John,
  25007.  
  25008.     I'm not an official anything in regards to Kermit, outside of 
  25009. official supporter (cheerleading team, so to speak).  From what Frank and 
  25010. the Kermit team say, the Windows versions of Kermit aren't supported by 
  25011. the authors or Columbia University.  However, they fully support 
  25012. MS-Kermit 3.13 (soon 3.14) in a DOS window under Windows.
  25013.  
  25014. My suggestion is to (I know it's a pain :-> ) switch to MS-Kermit 3.13, 
  25015. as it's much more robust in features and is supported and updated by the 
  25016. Kermit people :-)
  25017.  
  25018. (I know little about the Windows Kermit implimentation, so I can't really 
  25019. comment on it, outside of what Kermit representatives have said :-> )
  25020.  
  25021.  
  25022. Ken
  25023. kudut@ritz.mordor.com
  25024.  
  25025.  
  25026. From news@columbia.edu Thu Oct  6 19:51:08 1994
  25027. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13394
  25028.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 6 Oct 1994 19:32:34 -0400
  25029. Received: by apakabar.cc.columbia.edu id AA28342
  25030.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 6 Oct 1994 19:32:32 -0400
  25031. Newsgroups: comp.protocols.kermit.misc
  25032. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!godot.cc.duq.edu!newsfeed.pitt.edu!uunet!spcuna!ritz!kudut
  25033. From: kudut@ritz.mordor.com (Ken Udut)
  25034. Subject: Useful Kermit Stuff.
  25035. Organization: Mordor International BBS - Jersey City, NJ
  25036. Date: Thu, 6 Oct 1994 19:51:08 GMT
  25037. Message-Id: <Cx9oH8.DsF@ritz.mordor.com>
  25038. Lines: 44
  25039. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  25040.  
  25041.  
  25042. Does anyone have any useful Kermit stuff?  Scripts, Macros, add-on utilities 
  25043. (such as the GOLD.COM that now comes with MS-Kermit), and the like?
  25044.  
  25045. Here's something I found out of the archives of the Kermit-Info mailing 
  25046. list, from 1990-sometime.
  25047.  
  25048. ================>8 cut here and your monitor will surely blow up 8<==========
  25049.  
  25050. [Somebody asked whether or not it was possible to APPEND using MS-Kermit 
  25051. as you can in other versions.  The response from the Editor was a macro!]
  25052.  
  25053.  
  25054. The software that she uses will produce a voice rendition of the document
  25055. after she downloads it.
  25056.  
  25057. [Ed. - You could define a macro to do it, like this:
  25058.  
  25059. define fatal if defined \%1 echo \%1, stop 1
  25060.  
  25061. define append,-
  25062.   if not defined \%1 fatal {Usage: append filename}
  25063.   receive kermit.tmp,-
  25064.   if fail stop 1,-
  25065.   if exist \%1 run copy \%1+kermit.tmp kermit2.tmp,-
  25066.   if not exist \%1 copy kermit.tmp kermit2.tmp,-
  25067.   if exist \%1 delete \%1,-
  25068.   run rename kermit2.tmp \%1,-
  25069.   delete kermit.tmp
  25070.  
  25071. Put this macro definition in the user's MSCUSTOM.INI file, and then tell her
  25072. to use the command:
  25073.  
  25074. APPEND FILENAME.TXT
  25075.  
  25076. instead of RECEIVE FILENAME.TXT
  25077.  
  25078.  
  25079.  
  25080. Anyone have other neat macros, etc. that they'd like to trade?
  25081.  
  25082.  
  25083. Ken
  25084. kudut@ritz.mordor.com
  25085.  
  25086. From news@columbia.edu Thu Oct  6 23:47:36 1994
  25087. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14961
  25088.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 6 Oct 1994 20:12:30 -0400
  25089. Received: by apakabar.cc.columbia.edu id AA01150
  25090.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 6 Oct 1994 20:12:29 -0400
  25091. Newsgroups: comp.protocols.kermit.misc
  25092. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!swrinde!sgiblab!cs.uoregon.edu!reuter.cse.ogi.edu!netnews.nwnet.net!serval.net.wsu.edu!wsuvm1.csc.wsu.edu!MSIMONDS
  25093. From: MSIMONDS@wsuvm1.csc.wsu.edu
  25094. Subject: script for redialing
  25095. Message-Id: <17047EC28S85.MSIMONDS@wsuvm1.csc.wsu.edu>
  25096. Sender: news@serval.net.wsu.edu (News)
  25097. Organization: Washington State University
  25098. Date: Thu, 6 Oct 1994 23:47:36 GMT
  25099. Lines: 10
  25100. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  25101.  
  25102. I am a new user of PC-Kermit ver 3.11.  I want to know if anybody has a script
  25103. file that will make the modem redial?
  25104.  
  25105.  
  25106.  
  25107.  
  25108.  
  25109.  
  25110.  
  25111.  
  25112.  
  25113. From news@columbia.edu Wed Oct  5 06:48:33 1994
  25114. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15098
  25115.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 6 Oct 1994 20:14:38 -0400
  25116. Received: by apakabar.cc.columbia.edu id AA01266
  25117.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 6 Oct 1994 20:14:37 -0400
  25118. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  25119. From: jrd@cc.usu.edu (Joe Doupnik)
  25120. Newsgroups: comp.protocols.kermit.misc
  25121. Subject: Re: Information display during transfers
  25122. Message-Id: <1994Oct5.124834.28826@cc.usu.edu>
  25123. Date: 5 Oct 94 12:48:33 MDT
  25124. References: <36uibd$n8j@wsu-cs.cs.wayne.edu>
  25125. Distribution: world
  25126. Organization: Utah State University
  25127. Lines: 28
  25128. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  25129.  
  25130. In article <36uibd$n8j@wsu-cs.cs.wayne.edu>, handel@math.wayne.edu (David Handel) writes:
  25131. > I recently started using MS-Kermit 3.13 to connect from my home PC
  25132. > (a Dell XPS P60) to my Sun login at my university. The Kermit at
  25133. > the Sun end seems to be C-Kermit and the information
  25134. > "4D(061) 8 Sep 86, 4.2 BSD" appears when it is summoned up.
  25135.     ^^^^^^^^^^^------- long in the tooth, I'd say. But it works!
  25136.  
  25137. > I have experienced inconsistencies in the information display during
  25138. > file transfer. Sometimes during a transfer the percentage of the
  25139. > transfer completed is displayed (sometimes digitally, sometimes in
  25140. > a linear graphical fashion), and other times this piece of information
  25141. > is not displayed at all. I am not aware of any variations in my 
  25142. > procedure which would cause these differences. Can anyone explain? 
  25143. > Are there measures I can take to ensure that the percent completed
  25144. > information is always displayed?
  25145. ---------
  25146.     To show the MSK therometer or the digital % done an MSK receiver
  25147. has to know the file size being sent. File size and time/date information
  25148. and character set (text) and so on are conveyed in Kermit file attributes
  25149. packets at the start of each file. Not all Kermits support attributes
  25150. packets, and hence that info may be missing. The CKermit of 1986 vintage
  25151. did not have them, nor did the MSK of that vintage. They do today.
  25152.     A file transmitter has this information, locally, and can show
  25153. the visual teasers.
  25154.     May I warmly recommend upgrading your C Kermit to the current,
  25155. the current beta as a matter of fact, as discussed on this list. Attributes
  25156. packets are present.
  25157.     Joe D
  25158.  
  25159. From news@columbia.edu Mon Oct  3 16:34:38 1994
  25160. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15242
  25161.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 6 Oct 1994 20:17:15 -0400
  25162. Received: by apakabar.cc.columbia.edu id AA01627
  25163.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 6 Oct 1994 20:17:13 -0400
  25164. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  25165. From: jrd@cc.usu.edu (Joe Doupnik)
  25166. Newsgroups: comp.protocols.kermit.misc
  25167. Subject: Re: Columbia University's Kermit copyright
  25168. Message-Id: <1994Oct3.223438.28658@cc.usu.edu>
  25169. Date: 3 Oct 94 22:34:38 MDT
  25170. References: <9409300557.AA12036@simtel.coast.net> <36kaa4$lmm@knot.queensu.ca> <36l69c$n71@news.icaen.uiowa.edu> <Cx4544.9sC@adasoft.ch> <9410032252.AA21717@SimTel.Coast.NET>
  25171. Organization: Utah State University
  25172. Lines: 46
  25173. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  25174.  
  25175. In article <9410032252.AA21717@SimTel.Coast.NET>, w8sdz@SimTel.Coast.NET (Keith Petersen) writes:
  25176. > jw@adasoft.ch (Jamie Watson) writes:
  25177. >>Sorry, but I haven't seen *anyone* suggest a different funding model here.
  25178. > Ok, here it is.  I already sent this to Frank and he rejected it.
  25179. > Change the status of Kermit to ShareWare, with voluntary payment for
  25180. > individuals and required payment for commercial and school use (i.e.,
  25181. > a site license).  If Columbia charged $300 for a site license, even if
  25182. > there were only 1,000 customers, the income produced would be $300,000
  25183. > per year.
  25184.     <part omitted>
  25185. > Keith Petersen
  25186. > General Manager of SimTel, the Coast to Coast Software Repository (tm)
  25187. > Internet: w8sdz@SimTel.Coast.NET    or      w8sdz@Vela.ACS.Oakland.Edu
  25188. > Uucp: uunet!umich!vela!w8sdz                     BITNET: w8sdz@OAKLAND
  25189. ------------
  25190. Keith,
  25191.     Even though you and I have worked together in small ways for years
  25192. I have to say this bluntly. Readers are warned this message contains
  25193. language material not suitable for children.
  25194.     I write MS-DOS Kermit. Just so readers know who's who in this 
  25195. discussion. I put a tremendous effort, and my neck, into this project.
  25196. I have a say in what goes on here.
  25197.      We discussed the above topic at length privately with you, it was 
  25198. discussed on the list in public, and the suggestion was declined for good 
  25199. reasons.
  25200.     Yet today you first cast stones on decent publications, I will presume 
  25201. only the naive will fall for that one, and then you try to raise a hew and cry 
  25202. in public. I regard both actions as deliberately destructive. I expected
  25203. better of you.
  25204.      We appreciate and want suggestions and intelligent discussion; this 
  25205. list has had many fine examples of both. Your messages today are neither. You 
  25206. will not pressure me and other volunteers on how to sell our own time and 
  25207. effort. You will not slander our work.
  25208.     Do you read me Mr. Petersen?
  25209.  
  25210.     My appologies to the other readers for having to speak this way in 
  25211. public.
  25212.         Despite what some of the people out there may think, Frank and I and 
  25213. the many other Kermit volunteers hear what you are saying, and we are trying 
  25214. hard to continue a large successful project lasting many years and affecting 
  25215. very large numbers of people.
  25216.     I will now go back to work so the Z-100 version of MSK 3.14 will
  25217. be ready for beta testing asap.
  25218.         Joe D.
  25219.  
  25220. From news@columbia.edu Tue Oct  4 01:54:43 1994
  25221. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15257
  25222.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 6 Oct 1994 20:17:31 -0400
  25223. Received: by apakabar.cc.columbia.edu id AA01639
  25224.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 6 Oct 1994 20:17:29 -0400
  25225. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!math.ohio-state.edu!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  25226. From: jrd@cc.usu.edu (Joe Doupnik)
  25227. Newsgroups: comp.protocols.kermit.misc
  25228. Subject: Re: How to catch SHIFT-ESC in kermit
  25229. Message-Id: <1994Oct4.075443.28687@cc.usu.edu>
  25230. Date: 4 Oct 94 07:54:43 MDT
  25231. References: <groot.781261613@taren2la.apd.dec.com>
  25232. Organization: Utah State University
  25233. Lines: 40
  25234. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  25235.  
  25236. In article <groot.781261613@taren2la.apd.dec.com>, groot@apd.dec.com (Henk de Groot) writes:
  25237. > Hello Kermit users,
  25238. > I have a problem. Our kermit version is MS-Kermit 3.13 with a patch file with
  25239. > 21 patches in it.
  25240. > We have to build an application that has to responds to the key combination
  25241. > SHIFT-ESC. In the key-table you can catch many key combinations but I am
  25242. > unable to map SHIFT-ESC to something different than ESC alone so I can't
  25243. > make a distinction between ESC with or without SHIFT.
  25244. > Is there a way to make it work? It is no problem to do this with other
  25245. > keys (like function keys), only ESC seems to behave differently. I can
  25246. > calculate what keycode SHIFT-ESC should have (scancode 1 + 256 + 512 = 769)
  25247. > but
  25248. >     set key \852 hello
  25249. > works for SHIFT+F1 (outputs hello) but
  25250. >     set key \769 hello
  25251. > doesn't work for SHIFT+ESC!
  25252. > When redefining the ESC key itself by
  25253. >     set key \27 hello
  25254. > also SHIFT+ESC outputs hello! (B.T.W. "set key \257 hello" doesn't work
  25255. > either, so we can not make a distinction between ESC and Ctrl-[ too, but
  25256. > that's not a problem for us at this moment).
  25257. > Any suggestions to solve this problem are welcome (We also tried the product
  25258. > KEATerm under Windows and that one will do it correctly; we need something
  25259. > running under DOS however!)
  25260. ---------
  25261. Henk,
  25262.     I added that this morning to MSK v3.14 beta. <Alt, Shift, Control> Esc
  25263. are now distinguishable.
  25264.     Joe D.
  25265.  
  25266. From news@columbia.edu Mon Oct  3 04:31:00 1994
  25267. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15347
  25268.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 6 Oct 1994 20:19:22 -0400
  25269. Received: by apakabar.cc.columbia.edu id AA01734
  25270.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 6 Oct 1994 20:19:21 -0400
  25271. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  25272. From: jrd@cc.usu.edu (Joe Doupnik)
  25273. Newsgroups: comp.protocols.kermit.misc
  25274. Subject: Re: Undocumented kermit server commands?
  25275. Message-Id: <1994Oct3.103100.28574@cc.usu.edu>
  25276. Date: 3 Oct 94 10:31:00 MDT
  25277. References: <B.A.MCCAULEY.94Oct3142155@wcl-l.bham.ac.uk>
  25278. Followup-To: comp.protocols.kermit.misc
  25279. Organization: Utah State University
  25280. Lines: 26
  25281. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  25282.  
  25283. In article <B.A.MCCAULEY.94Oct3142155@wcl-l.bham.ac.uk>, B.A.McCauley@bham.ac.uk writes:
  25284. > I've looked in "Kermit, A file transfer protocol" but I cannot find
  25285. > docuemntation of what the "REMOTE SET" command sends to the server.
  25286. > It appears to send a kermit generic command (packet type "G") with a
  25287. > command "S".
  25288. > I have assumed that this is equivlent to a command "V", subcommand
  25289. > "S". Am I right?
  25290. > Is there a table anywhere that list the standard variable names
  25291. > (numbers?).
  25292. > I would go look in the source myself but I read somewhere that
  25293. > because I'm incorporating support for kermit protocols into another
  25294. > program I'm not allowed to even *look at* the sources!
  25295. ----------
  25296.     I see no problem using the sources to decipher the protocol, but 
  25297. of course the particular implementation sources remain copyright. It's up 
  25298. to you to play the game properly.
  25299.     Common sense suggests reading the spec updates, as Frank indicated,
  25300. and then running against Columbia Kermits for verification tests. The LOG
  25301. PACKET facility in Columbia Kermits shows packets going in both directions
  25302. for a little reverse engineering information if that's needed. The specs
  25303. are open to everyone, free of charge.
  25304.         Joe D.
  25305.  
  25306. From news@columbia.edu Sun Oct  2 04:49:44 1994
  25307. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15524
  25308.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 6 Oct 1994 20:20:38 -0400
  25309. Received: by apakabar.cc.columbia.edu id AA01808
  25310.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 6 Oct 1994 20:20:37 -0400
  25311. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!convex!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!ibm.mtsac.edu!1CMC3466
  25312. Newsgroups: comp.protocols.kermit.misc
  25313. Subject: Re: Columbia University MS-Kermit files removed from SimTel
  25314. Message-Id: <17043A660.1CMC3466@ibm.mtsac.edu>
  25315. From: 1CMC3466@ibm.mtsac.edu
  25316. Date: Sun, 02 Oct 94 11:49:44 PDT
  25317. References: <9409270646.kp1130@simtel.coast.net> <3699u3$fe9@Venus.mcs.com>
  25318. Organization: Mt. San Antonio College
  25319. Nntp-Posting-Host: 140.144.202.50
  25320. X-Newsreader: NNR/VM S_1.3.2
  25321. Lines: 17
  25322. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  25323.  
  25324. In article <3699u3$fe9@Venus.mcs.com>
  25325. les@MCS.COM (Leslie Mikesell) writes:
  25326.  
  25327. >
  25328. >In article <9409270646.kp1130@simtel.coast.net>,
  25329. >Keith Petersen <w8sdz@SimTel.Coast.NET> wrote:
  25330. >>According to e-mail I received this evening it appears that Columbia
  25331. >>University now feels that SimTel should no longer distribute MS-Kermit.
  25332. >
  25333. >Does this mean that it is time for someone else to start work on
  25334. >a file transfer program that *can* be distributed freely?
  25335. >
  25336. >Les Mikesell
  25337. >  les@mcs.com
  25338.  
  25339.     Isn't that a contradiction in terms? a program that is supposed to be
  25340.  _FREE_ yet was being put in a package that was sold for a _profit_.
  25341.  
  25342. From news@columbia.edu Sun Oct  2 02:59:25 1994
  25343. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15540
  25344.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 6 Oct 1994 20:20:56 -0400
  25345. Received: by apakabar.cc.columbia.edu id AA01819
  25346.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 6 Oct 1994 20:20:45 -0400
  25347. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  25348. From: jrd@cc.usu.edu (Joe Doupnik)
  25349. Newsgroups: comp.protocols.kermit.misc
  25350. Subject: Re: NDIS Driver for Kermit
  25351. Message-Id: <1994Oct2.085926.28459@cc.usu.edu>
  25352. Date: 2 Oct 94 08:59:25 MDT
  25353. References: <36jr4b$hlk@Venus.mcs.com>
  25354. Organization: Utah State University
  25355. Lines: 11
  25356. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  25357.  
  25358. In article <36jr4b$hlk@Venus.mcs.com>, cnt@MCS.COM (Center / NT) writes:
  25359. > One article mentions the dis_pkt9 shim to use Kermit with
  25360. > NDIS compliant ethernet adapters.
  25361. > Where can I find this?
  25362. > Joel    cnt@mcs.com
  25363. ------------
  25364.     We will be distributing a copy with MSK v3.14. Home base for the
  25365. file is my place, netlab2.usu.edu, cd drivers.
  25366.     Joe D.
  25367.  
  25368. From news@columbia.edu Thu Oct  6 07:05:54 1994
  25369. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15555
  25370.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 6 Oct 1994 20:21:01 -0400
  25371. Received: by apakabar.cc.columbia.edu id AA01822
  25372.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 6 Oct 1994 20:20:52 -0400
  25373. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  25374. From: jrd@cc.usu.edu (Joe Doupnik)
  25375. Newsgroups: comp.protocols.kermit.misc
  25376. Subject: Re: Windows Kermit question
  25377. Message-Id: <1994Oct6.130554.28949@cc.usu.edu>
  25378. Date: 6 Oct 94 13:05:54 MDT
  25379. References: <371450$18ou@ns2.CC.Lehigh.EDU>
  25380. Organization: Utah State University
  25381. Lines: 20
  25382. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  25383.  
  25384. In article <371450$18ou@ns2.CC.Lehigh.EDU>, jmt7@ns2.CC.Lehigh.EDU (JOHN M. TROIANO) writes:
  25385. > Hi,
  25386. >         I have been using the Windows version of Kermit (Win100 v2.3,
  25387. > 5/1/91) and it seems that it will not allow you to define the function
  25388. > keys F5 and F10 (or Shift-F5, F10). Unfortunately the remote application
  25389. > that we would like to use Win100 to connect to relies very heavily on
  25390. > these keys. The program maps F5 to "break" and Shift-F5 to "long break"
  25391. > (ie., disconnect). It allows you to disable the former but not the
  25392. > latter setting. Is there any way around this? Does anyone know why it
  25393. > was written this way?
  25394. ----------
  25395.     The program was written more as a demonstration for Windows workers
  25396. than as a mainline production tool. It was a subset of mainline Kermits when
  25397. it was written. It has not been updated and lacks support. Given these factors 
  25398. and its vintage we recommend that you use MS-DOS Kermit in Windows (it works 
  25399. well there, by design). When and if we acquire sufficient funding and people
  25400. to create a pure Windows Kermit then it will be uptodate and full, but we
  25401. don't have either at the moment.
  25402.     Joe D.
  25403.  
  25404. From news@columbia.edu Thu Oct  6 08:49:56 1994
  25405. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15620
  25406.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 6 Oct 1994 20:22:56 -0400
  25407. Received: by apakabar.cc.columbia.edu id AA02078
  25408.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 6 Oct 1994 20:22:55 -0400
  25409. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  25410. From: jrd@cc.usu.edu (Joe Doupnik)
  25411. Newsgroups: comp.protocols.kermit.misc
  25412. Subject: Re: "No Manual, No Support"
  25413. Message-Id: <1994Oct6.144957.28961@cc.usu.edu>
  25414. Date: 6 Oct 94 14:49:56 MDT
  25415. References: <NELSON.94Oct6124430@crynwr.crynwr.com>
  25416. Organization: Utah State University
  25417. Lines: 33
  25418. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  25419.  
  25420. In article <NELSON.94Oct6124430@crynwr.crynwr.com>, nelson@crynwr.crynwr.com (Russell Nelson) writes:
  25421. > Hey Frank, how about only supporting people who have purchased the
  25422. > Kermit manual?
  25423. >  1) It generates the income you need to support Kermit.
  25424. >  2) It's reasonable.  Why should you help someone who hasn't bothered
  25425. >     to help themselves first?
  25426. > You can serialize new manuals, and ask current manual holders to send
  25427. > in the manual's copyright page (with an SASE) to be serialized.  Then,
  25428. > if you get a request for help without a valid serial number, refuse it.
  25429. --------
  25430.     That may be your way of dealing with people, but it's not mine
  25431. nor that of the other Kermit project members.
  25432.     What am I supposed to do if a person askes me a Kermit question,
  25433. as they do all day every day? Say "I don't exist, please visit a book store?" 
  25434. Sure, right. How about asking a Kermit question of anyone at all remotely 
  25435. associated with the project (and there are a great many such people)? Oh, I 
  25436. forgot, they don't exist either. Maybe, just perhaps, the "project" includes 
  25437. folks who just make suggestions or interesting critisisms in an arena such as 
  25438. this, and we include parts in the programs. Hmmm.
  25439.     On the other hand, maybe our intention is to actually help people,
  25440. through the programs and giving moderate assistance about the programs to the 
  25441. limits of our resources. We're obviously not out to become millionaires,
  25442. so there must be other reasons, such as the preceeding sentence, which cause
  25443. us to keep at this day after day, year after year. Hmmm, again. 
  25444.     As others have said recently, the fun is over, all views have been
  25445. expressed multiple times, intelligent people have thought about them and
  25446. voiced opinions, good ideas have been filed away for further reflection and
  25447. consideration by all concerned (and we do have some good ones), the decisions 
  25448. have been made (some years ago, interestingly). Please let the topic fade away.
  25449.     Thanks,
  25450.         Joe D.
  25451.  
  25452. From news@columbia.edu Fri Oct  7 02:38:35 1994
  25453. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22567
  25454.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 6 Oct 1994 23:02:01 -0400
  25455. Received: by apakabar.cc.columbia.edu id AA12644
  25456.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 6 Oct 1994 23:02:00 -0400
  25457. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!yeshua.marcam.com!insosf1.infonet.net!mcrware.microware.com!jejones
  25458. From: jejones@microware.com (James Jones)
  25459. Newsgroups: comp.protocols.kermit.misc
  25460. Subject: Re: Columbia University's Kermit copyright
  25461. Date: 7 Oct 1994 02:38:35 GMT
  25462. Organization: Microware Systems Corp., Des Moines, Iowa
  25463. Lines: 20
  25464. Message-Id: <372cbb$p7l@mcrware.microware.com>
  25465. References: <36v9mg$t22@chopin.udel.edu> <370rss$cf7@canopus.cc.umanitoba.ca> <Cx9A7D.23I@ritz.mordor.com>
  25466. Nntp-Posting-Host: snake.microware.com
  25467. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  25468.  
  25469. In article <Cx9A7D.23I@ritz.mordor.com> kudut@ritz.mordor.com (Ken Udut) writes:
  25470. >Am I the only person who sees the beauty in Kermit and is disgusting by 
  25471. >people trying to coerce Frank into turning Kermit into (ugh!) "Shareware"?
  25472.  
  25473. I hope not.  Were I Frank, I'd be sorely tempted to pull a John Galt.
  25474.  
  25475. The matter's been rehashed until the particles are about to tobacco mosaic
  25476. virus size :-); I agree with those who have urged dropping the matter.
  25477.  
  25478. (I *do* kind of wish there were a hardcover ring-bound edition of
  25479. *Using C Kermit*.  My softcover copy's cover tends to settle in a semi-
  25480. open state, and the open book doesn't lie flat.)
  25481.  
  25482.     James Jones
  25483.  
  25484. Opinions herein are those of their respective authors, and not necessarily
  25485. those of any organization.
  25486.  
  25487.  
  25488.  
  25489.  
  25490. From news@columbia.edu Thu Oct  6 22:31:17 1994
  25491. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26024
  25492.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 7 Oct 1994 00:09:32 -0400
  25493. Received: by apakabar.cc.columbia.edu id AA17162
  25494.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 7 Oct 1994 00:09:31 -0400
  25495. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!MathWorks.Com!europa.eng.gtefsd.com!library.ucla.edu!news.mic.ucla.edu!unixg.ubc.ca!quartz.ucs.ualberta.ca!news.ucalgary.ca!cpsc.ucalgary.ca!usenet
  25496. From: zydyk@cpsc.ucalgary.ca (Mariusz Zydyk)
  25497. Newsgroups: comp.protocols.kermit.misc
  25498. Subject: Kermit Documentation
  25499. Date: 6 Oct 1994 22:31:17 GMT
  25500. Organization: University of Calgary CPSC
  25501. Lines: 2
  25502. Message-Id: <371trl$i1j@linux.cpsc.ucalgary.ca>
  25503. Nntp-Posting-Host: fsb.cpsc.ucalgary.ca
  25504. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  25505.  
  25506. It seems that all my Kermit problems would be solved by a
  25507. manual. How do I get a copy of it?
  25508.  
  25509. From news@columbia.edu Thu Oct  6 19:46:12 1994
  25510. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04247
  25511.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 7 Oct 1994 03:19:16 -0400
  25512. Received: by apakabar.cc.columbia.edu id AA25034
  25513.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 7 Oct 1994 03:19:13 -0400
  25514. Newsgroups: comp.protocols.kermit.misc
  25515. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!swrinde!sgiblab!pacbell.com!amdahl!netcomsv!ix.netcom.com!netcom.com!jhurwit
  25516. From: jhurwit@netcom.com (Jeffrey Hurwit)
  25517. Subject: Re: FTP Mirrors and CDROMs - again
  25518. Message-Id: <jhurwitCx9o91.JpI@netcom.com>
  25519. Organization: Organization?  What organization?
  25520. X-Newsreader: TIN [version 1.2 PL1]
  25521. References: <36hv50$kgn@news.icaen.uiowa.edu> <9410010116.AA24289@SimTel.Coast.NET> <CwzKJs.Fx7@news.cern.ch> <milam.166.000ACD06@fmsrlu.srl.ford.com> <9410041547.AA29857@SimTel.Coast.NET>
  25522. Date: Thu, 6 Oct 1994 19:46:12 GMT
  25523. Lines: 22
  25524. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  25525.  
  25526. In article <9410041547.AA29857@SimTel.Coast.NET>, 
  25527. Keith Petersen (w8sdz@SimTel.Coast.NET) wrote:
  25528.  
  25529. >SimTel's policy is that programs submitted to the collection MUST
  25530. >include documentation.  If MS-Kermit were submitted today it would be
  25531. >rejected because it does not include documentation.
  25532.  
  25533.     Um, I wouldn't go that far, Keith, to say that MS-Kermit doesn't
  25534.     include documentation.  I'm no computer professional by any stretch
  25535.     of anyone's imagination, and was relatively new to computer
  25536.     communications, but I was able to set Kermit up on my system (I
  25537.     started with v.3.12), remap my keyboard for 3270 functions (to
  25538.     communicate with an IBM 370 through a 7171), optimize file
  25539.     transfers (including control char unprefixing when I got my Unix
  25540.     account), and figure out the script programming language well
  25541.     enough to write my own login scripts, all from the help files
  25542.     included with Columbia's MS-Kermit distribution.  I don't know
  25543.     whether or not the documentation that comes with the distribution
  25544.     is to be considered "complete," but I've ftp'd packages from SimTel
  25545.     and other ftp sites that weren't as well documented as MS-Kermit.
  25546.  
  25547.                         Jeff
  25548.  
  25549. From news@columbia.edu Thu Oct  6 20:17:09 1994
  25550. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04906
  25551.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 7 Oct 1994 03:40:31 -0400
  25552. Received: by apakabar.cc.columbia.edu id AA25522
  25553.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 7 Oct 1994 03:40:30 -0400
  25554. Newsgroups: comp.protocols.kermit.misc
  25555. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!MathWorks.Com!uhog.mit.edu!sgiblab!pacbell.com!amdahl!netcomsv!ix.netcom.com!netcom.com!jhurwit
  25556. From: jhurwit@netcom.com (Jeffrey Hurwit)
  25557. Subject: Re: Need kermit script for redial and idol protection...
  25558. Message-Id: <jhurwitCx9poL.M7M@netcom.com>
  25559. Organization: Organization?  What organization?
  25560. X-Newsreader: TIN [version 1.2 PL1]
  25561. References: <36u3k7$nne@news.ccit.arizona.edu> <36uj2q$q1g@apakabar.cc.columbia.edu>
  25562. Date: Thu, 6 Oct 1994 20:17:09 GMT
  25563. Lines: 37
  25564. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  25565.  
  25566. In article <36uj2q$q1g@apakabar.cc.columbia.edu>, 
  25567. Jeffrey Altman (jaltman@watsun.cc.columbia.edu) wrote:
  25568.  
  25569. >In article <36u3k7$nne@news.ccit.arizona.edu>,
  25570. >Ruei-wun  Tu <rueiwun@helium.gas.uug.arizona.edu> wrote:
  25571. >>Hello,
  25572. >>     Does anyone have kermit script for Redial function?  I also try to
  25573. >>     write a script which can send a "SPACE" and "BACKSPACE" when the
  25574. >>     line is idol.  I am trying this because everytime I try to get a
  25575. >>     larger file from some FTP site to my remote account at home, my line
  25576. >>     will be cut off while I was waiting over 5 minutes without pressing
  25577. >>     any key on my keyboard.
  25578. >>
  25579. >>     Please E-mail me your responses.  Thank you in advance...
  25580. >>
  25581. >>     Rueiwun Tu
  25582.  
  25583. >C-Kermit 5a(190) comes with a REDIAL macro.  
  25584.  
  25585.     MS-Kermit also comes with dialer scripts; I suspect this person is
  25586.     concerned about having the script on a PC to automate dial-up
  25587.     connections to his/her Unix account.
  25588.  
  25589. >As far as idle states, and disconnects during large ftp's.  I would suggest
  25590. >using the HASH mode for ftp's.  This will generate a # mark for every X
  25591. >bytes transfered.  This might prevent the disconnection, unless the daemon
  25592. >only monitors incoming characters.
  25593.  
  25594.     Probably it does.  Besides, activating a script in Kermit means
  25595.     leaving terminal emulation mode, which is probably not a good idea
  25596.     while you're in the middle of an ftp session.  You're better off to
  25597.     just hit the space bar.  Or better yet, get batchftp for your Unix
  25598.     account, which will run your ftp sessions in the background for
  25599.     you, while you're reading news or doing something else more
  25600.     interesting.
  25601.  
  25602.                         Jeff
  25603.  
  25604. From news@columbia.edu Fri Oct  7 03:12:26 1994
  25605. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06829
  25606.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 7 Oct 1994 04:23:33 -0400
  25607. Received: by apakabar.cc.columbia.edu id AA27238
  25608.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 7 Oct 1994 04:23:32 -0400
  25609. Newsgroups: comp.protocols.kermit.misc
  25610. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news.cac.psu.edu!news.pop.psu.edu!psuvax1!news.ecn.bgu.edu!feenix.metronet.com!jhuber
  25611. From: jhuber@metronet.com (Joseph Huber)
  25612. Subject: What's the secret (to fast file transfer)?
  25613. Message-Id: <CxA8wq.30v@metronet.com>
  25614. Date: Fri, 7 Oct 1994 03:12:26 GMT
  25615. Organization: Texas Metronet Communications Services, Dallas TX
  25616. Lines: 18
  25617. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  25618.  
  25619. I've read the comparison by Frank da Cruz that gives benchmarks of ckermit vs.
  25620. other file transfer protocols. That comparison shows that ckermit can do about
  25621. 1600 cps over a 14.4kbps modem for compressed files, which is just as good as
  25622. Zmodem. 
  25623.  
  25624. For some reason, I can't get more than 1250cps with compressed files using
  25625. kermit; however, running an external zmodem protocol from within kermit, I can
  25626. get 1600cps.  I'm using 5A(189) for OS/2 on one end and 5A(190) for the
  25627. HP-9000 on the otther. I've tried large packets, multiple windows, large
  25628. buffers. I've got rts/cts flow control set on the OS/2 end, but I'm not sure
  25629. what flow control is the best for the HP end. I've noticed that the packet
  25630. length rarely gets above 2000 during transfers, and that I rarely use more
  25631. than one window. 
  25632.  
  25633. Any ideas? 
  25634.  
  25635. Thanks.
  25636.  
  25637.  
  25638. From news@columbia.edu Fri Oct  7 09:54:27 1994
  25639. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09426
  25640.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 7 Oct 1994 05:54:35 -0400
  25641. Received: by apakabar.cc.columbia.edu id AA00531
  25642.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 7 Oct 1994 05:54:34 -0400
  25643. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!EU.net!sunic!news.chalmers.se!ce.chalmers.se!olovsson
  25644. From: olovsson@ce.chalmers.se (Tomas Olovsson)
  25645. Newsgroups: comp.protocols.kermit.misc
  25646. Subject: Re: Kermit for Windows/NT
  25647. Date: 7 Oct 1994 09:54:27 GMT
  25648. Organization: Chalmers Univ. of Technology, Dept. of Comp. Eng., Gothenburg, Sweden
  25649. Lines: 44
  25650. Distribution: world
  25651. Message-Id: <3735sj$rl8@nyheter.chalmers.se>
  25652. References: <1994Sep19.071445.15802@medicus.com> <nicks.781450918@ariel>
  25653. Reply-To: olovsson@ce.chalmers.se
  25654. Nntp-Posting-Host: triffid.ce.chalmers.se
  25655. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  25656.  
  25657. In article <nicks.781450918@ariel>, nicks@ariel.ucs.unimelb.EDU.AU (Nick Smith) writes:
  25658. |> bill@medicus.com (Bill Chinn) writes:
  25659. |> 
  25660. |> >Hello,
  25661. |> 
  25662. |> >I was wondering if anyone is working on porting Kermit to
  25663. |> >Windows/NT?  
  25664. |> 
  25665. |> >If anyone is working on an NT port, I know some people here
  25666. |> >who would love to beta test it.
  25667. |> 
  25668. |> >I'm also wondering if anyone is planning on adding support 
  25669. |> >for the new Microsoft TCP/IP stack into Kermit.
  25670. |> 
  25671. |> >Thanks for any info and if anyone else is interested in this
  25672. |> >info I'll post a summary of whatever info I get.
  25673. |> >--Bill
  25674. |> 
  25675. |> Kermit is built into the Windows NT Terminal.  I've used it to
  25676. |> transfer files from my local university to my home PC with no
  25677. |> troubles.
  25678.  
  25679. I've tried this a couple of times too, but the throughput seems to be
  25680. about 25% of what you get when using MS-DOS kermit under NT!!
  25681.  
  25682. I have a ZyXEL modem, which connects at 19200 baud. It uses a
  25683. 57600 baud serial line (with a 16550 uart) and the throughput
  25684. with Kermit is normally just above 2kByte/sec.
  25685.  
  25686. Actually, 25% might be to give too much credit to the terminal program.
  25687. Look at your modem lights and you will find that the modem is idle most
  25688. of the time (or am I the only person who experience this???) Also, the
  25689. Terminal program is almost useless even as a terminal emulator. I normally
  25690. connect to a Unix host and the scrolling "feature" in the terminal always
  25691. gets confused when ANSI escape sequences for cursor motion arrives...
  25692. But Kermit handles this fine.
  25693.  
  25694.   -- Tomas
  25695.  
  25696. _______________________________________________________________________________
  25697. ___                    _                           Dept of Computer Engineering
  25698.  |  _  ,___   _   _   | | |   _      _  _  _  ,_   Chalmers Univ of Technology
  25699.  | |_| | | | |_\ _>   |_| |_ |_| \/ _> _> |_| | |  S-412 96 Gothenburg, SWEDEN
  25700. ___________________________________________________olovsson@ce.chalmers.se_____
  25701.  
  25702. From news@columbia.edu Fri Oct  7 10:17:47 1994
  25703. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11392
  25704.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 7 Oct 1994 06:54:08 -0400
  25705. Received: by apakabar.cc.columbia.edu id AA02557
  25706.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 7 Oct 1994 06:54:07 -0400
  25707. Newsgroups: comp.protocols.kermit.misc
  25708. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!EU.net!uknet!dcs.gla.ac.uk!brunel!xxxxajh
  25709. From: Alan.Holmes@brunel.ac.uk (Alan J Holmes)
  25710. Subject: Re: Please explain Kermit's copyright
  25711. Message-Id: <CxAsLn.tD@brunel.ac.uk>
  25712. Organization: Brunel University, West London, UK
  25713. References: <36lpdt$ns4@cruella.ee.pdx.edu> <36ml93$1ja@apakabar.cc.columbia.edu> <NELSON.94Oct5104617@crynwr.crynwr.com>
  25714. Date: Fri, 7 Oct 1994 10:17:47 GMT
  25715. Lines: 26
  25716. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  25717.  
  25718. In article <NELSON.94Oct5104617@crynwr.crynwr.com> nelson@crynwr.crynwr.com (Russell Nelson) writes:
  25719. >In article <36ml93$1ja@apakabar.cc.columbia.edu> fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  25720.  
  25721. >   If you want to use our work directly, nobody is forcing you to
  25722. >   spend one red cent.  If Kermit became shareware, as so many of you
  25723. >   advocate, then everybody who uses it would have to (a) send us
  25724. >   money, (b) stop using it, or (c) become an outlaw.  That would
  25725. >   include the universities, government agencies, research institute,
  25726. >   hospitals, convents, and orphanages.
  25727.  
  25728. >   Why don't we give it rest, eh?  Thanks.
  25729.  
  25730. >Because the Kermit copyright is limiting (intentionally or not) the
  25731. >distribution of Kermit.  If you want universities, government
  25732. >agencies, research institutes, hospitals, convents, and orphanages to
  25733. >be able to use Kermit, you have to make sure that they can get it.
  25734.  
  25735. Perhaps I have missed something, I was under the
  25736. impression that distribution was already free to this
  25737. list and indeed anyone who has access to the email
  25738. system.
  25739.  
  25740. Regards
  25741.  
  25742. Alan Holmes
  25743.  
  25744.  
  25745. From news@columbia.edu Thu Oct  6 22:23:09 1994
  25746. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12358
  25747.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 7 Oct 1994 07:20:41 -0400
  25748. Received: by apakabar.cc.columbia.edu id AA03697
  25749.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 7 Oct 1994 07:20:40 -0400
  25750. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!charnel.ecst.csuchico.edu!olivea!uunet!newsflash.concordia.ca!canopus.cc.umanitoba.ca!rahardj
  25751. From: rahardj@cc.umanitoba.ca (Budi Rahardjo)
  25752. Newsgroups: comp.protocols.kermit.misc
  25753. Subject: Re: Columbia University's Kermit copyright
  25754. Date: 6 Oct 1994 22:23:09 GMT
  25755. Organization: The University of Manitoba
  25756. Lines: 38
  25757. Message-Id: <371tcd$q41@canopus.cc.umanitoba.ca>
  25758. References: <9410052152.AA18509@simtel.coast.net> <36v9mg$t22@chopin.udel.edu> <370rss$cf7@canopus.cc.umanitoba.ca> <Cx9A7D.23I@ritz.mordor.com>
  25759. Nntp-Posting-Host: antares.cc.umanitoba.ca
  25760. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  25761.  
  25762. In <Cx9A7D.23I@ritz.mordor.com> kudut@ritz.mordor.com (Ken Udut) writes:
  25763.  
  25764. :>I think he was saying that the Kermit's team intentionally took
  25765. :>the electronic/on-line documentation forcing the people to buy the book.
  25766. :>Both parties have valid aruments. 
  25767. :>
  25768. :>[Does book sales have *that* large revenue ? Would the book sale
  25769. :>be able to pay the salary of one full-time worker ? 
  25770. :>Wow, for sure I am going to write a book]
  25771.  
  25772. :Budi,
  25773.  
  25774. :Why are you treating Frank like a bad guy?  He is one man, with a 
  25775. :small team of developers - NOT some big company.  To top it off, Budi, 
  25776. :you are being sarcastic to him -in front of his face-.  There is nothing 
  25777. :ruder that I can think of.
  25778.  
  25779. Am I treating him like a bad guy ? Not at all. He has my respect.
  25780. I am being frank (no pun intended :-) and don't want to beat around the bush.
  25781. We can have different opinions but still respect each other.
  25782.  
  25783. ...
  25784. :Am I the only person who sees the beauty in Kermit and is disgusting by 
  25785. :people trying to coerce Frank into turning Kermit into (ugh!) "Shareware"?
  25786.  
  25787. You are not the only one.
  25788. I also see kermit as a beautiful thing. On top of that, their
  25789. MS-Kermit has ***THE BEST*** vt100 emulation I have ever tried.
  25790. Nobody (including commercial programs that I have bought) beats them.
  25791.  
  25792. there ... so you know my position.
  25793.  
  25794.  
  25795. -- budi
  25796. -- 
  25797. Budi Rahardjo <Budi_Rahardjo@UManitoba.Ca>
  25798. #include <std-disclaimer.h>
  25799. Unix Support - Computer Services - University of Manitoba
  25800.  
  25801. From news@columbia.edu Fri Oct  7 12:22:56 1994
  25802. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14455
  25803.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 7 Oct 1994 08:23:07 -0400
  25804. Received: by apakabar.cc.columbia.edu id AA06167
  25805.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 7 Oct 1994 08:22:59 -0400
  25806. Path: news.columbia.edu!usenet
  25807. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  25808. Newsgroups: comp.protocols.kermit.misc
  25809. Subject: Re: What's the secret (to fast file transfer)?
  25810. Date: 7 Oct 1994 12:22:56 GMT
  25811. Organization: Columbia University
  25812. Lines: 22
  25813. Message-Id: <373ej0$60l@apakabar.cc.columbia.edu>
  25814. References: <CxA8wq.30v@metronet.com>
  25815. Nntp-Posting-Host: fdc.cc.columbia.edu
  25816. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  25817.  
  25818. In article <CxA8wq.30v@metronet.com> jhuber@metronet.com (Joseph Huber)  
  25819. writes:
  25820. > For some reason, I can't get more than 1250cps with compressed files
  25821. > using kermit; however, running an external zmodem protocol from within
  25822. > kermit, I can get 1600cps.  I'm using 5A(189) for OS/2 on one end and
  25823. > 5A(190) for the HP-9000 on the otther. I've tried large packets,
  25824. > multiple windows, large buffers. I've got rts/cts flow control set on
  25825. > the OS/2 end, but I'm not sure what flow control is the best for the HP
  25826. > end. I've noticed that the packet length rarely gets above 2000 during
  25827. > transfers, and that I rarely use more than one window.
  25828. As long as flow control is effective everywhere -- and it probably is
  25829. because Zmodem gets 1600cps on the same connection, you can squeeze the
  25830. additional 20-26% performance out of the connection by telling Kermit not
  25831. to prefix most control characters, since by default (for safety) it
  25832. prefixes all of them.  You can read about this in the ckcker.upd file that
  25833. comes with C-Kermit 5A(189) or 5A(190).  You can also increase your
  25834. packet size up to 9024, but, oddly enough, there is not always a direct
  25835. linear relationship between packet length and performance.  Each
  25836. connection has its own unique combination of packet length and window size.
  25837.  
  25838. - Frank
  25839.  
  25840. From news@columbia.edu Fri Oct  7 12:26:19 1994
  25841. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14565
  25842.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 7 Oct 1994 08:26:23 -0400
  25843. Received: by apakabar.cc.columbia.edu id AA06377
  25844.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 7 Oct 1994 08:26:21 -0400
  25845. Path: news.columbia.edu!usenet
  25846. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  25847. Newsgroups: comp.protocols.kermit.misc
  25848. Subject: Re: Kermit Documentation
  25849. Date: 7 Oct 1994 12:26:19 GMT
  25850. Organization: Columbia University
  25851. Lines: 160
  25852. Message-Id: <373epb$677@apakabar.cc.columbia.edu>
  25853. References: <371trl$i1j@linux.cpsc.ucalgary.ca>
  25854. Nntp-Posting-Host: fdc.cc.columbia.edu
  25855. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  25856.  
  25857. In article <371trl$i1j@linux.cpsc.ucalgary.ca> zydyk@cpsc.ucalgary.ca  
  25858. (Mariusz Zydyk) writes:
  25859. > It seems that all my Kermit problems would be solved by a
  25860. > manual. How do I get a copy of it?
  25861. >
  25862. The manuals are all that most people ever need.  When you have problems
  25863. that are not covered in the documentation, there are the supplemental
  25864. online files covering the minutiae of particular problems.  When that
  25865. doesn't help, that's what we are here for.  The most efficient use of
  25866. everybody's time is ensured by this approach.  First look in the manual.
  25867. If you don't find it there, look in the online help, hints-and-tips,
  25868. and update files.  If you still need help, contact us.  Here is our
  25869. current list of publications:
  25870.  
  25871.                            KERMIT BOOK LIST
  25872.  
  25873. -----------------------------------------------------------------------
  25874.  
  25875. MS-DOS Kermit, full-featured communications software for IBM and
  25876. compatible PCs with DOS or Windows, is documented in:
  25877.  
  25878.     Christine M. Gianone, Using MS-DOS Kermit, Second Edition, Digital
  25879.     Press / Butterworth-Heinemann, Woburn, MA, 1992, 345 pages, ISBN
  25880.     1-55558-082-3.  Packaged with version 3.13 of MS-DOS Kermit for the
  25881.     IBM PC, PS/2, and compatibles on a 3.5-inch diskette.  In computer
  25882.     and book stores, or order direct from Columbia University or from
  25883.     Digital Press.
  25884.  
  25885. A German-language edition is also available:
  25886.  
  25887.     Christine M. Gianone, MS-DOS Kermit, das universelle
  25888.     Kommunikationsprogramm, Verlag Heinz Heise, Hannover, Germany
  25889.     (1991), 414 pages.  Packaged with version 3.12 of MS-DOS Kermit for
  25890.     the IBM PC, PS/2, and compatibles on a 5.25-inch diskette,
  25891.     including German- language help files.  Deutsch von Gisbert W.
  25892.     Selke.  ISBN 3-88229-006-4.
  25893.  
  25894. And a French-language edition:
  25895.  
  25896.     Christine M. Gianone, Kermit MS-DOS mode d'emploi, Deuxieme
  25897.     edition, Heinz Schiefer & Cie., Versailles (1993), 406 pages.
  25898.     Packaged with version 3.11 of MS-DOS Kermit for the IBM PC, PS/2,
  25899.     and compatibles on a 5.25-inch diskette.  Adaption francaise: Jean
  25900.     Dutertre.  ISBN 2-901143-20-2.
  25901.  
  25902. There is also a Japanese book about MS-DOS Kermit, concentrating on the
  25903. NEC PC9801:
  25904.  
  25905.     Hirofumi Fujii and Fukuko Yuasa, MS-Kermit Nyumon, Computer Today
  25906.     Library 6, Saiensu-Sha Co., Ltd., publishers (1993), 160 pages.
  25907.     ISBN 4-7819-0669-9 C3355 P1854E.
  25908.  
  25909. -----------------------------------------------------------------------
  25910.  
  25911. C-Kermit 5A, full-function communication software for UNIX, VMS, OS/2,
  25912. AOS/VS, OS-9, Apollo Aegis, the Commodore Amiga, and the Atari ST is
  25913. documented in:
  25914.  
  25915.     Frank da Cruz and Christine M. Gianone, "Using C-Kermit", Digital
  25916.     Press / Butterworth-Heinemann, Woburn, MA, 1993, 514 pages, ISBN
  25917.     1-55558-108-0.  In computer and book stores, or order direct from
  25918.     Columbia University or from Digital Press.
  25919.  
  25920. A German-language edition is also available:
  25921.  
  25922.     Frank da Cruz und Christine M. Gianone, C-Kermit--Einfuhrung und
  25923.     Referenz, Verlag Heinz Heise, Hannover, Germany (1994).  ISBN
  25924.     3-88229-023-4.  Deutsch von Gisbert W. Selke.
  25925.  
  25926. -----------------------------------------------------------------------
  25927.  
  25928. The Kermit File transfer protocol is specified in the following book,
  25929. which also includes tutorials on computers, file systems, data
  25930. communications, and using Kermit:
  25931.  
  25932.     Frank da Cruz, Kermit, A File Transfer Protocol, Digital Press /
  25933.     Butterworth-Heinemann, Worburn, MA, 1987, 379 pages, ISBN
  25934.     0-932376-88-6.  In computer and book stores, or order direct from
  25935.     Columbia University or from Digital Press.
  25936.  
  25937. -----------------------------------------------------------------------
  25938.  
  25939. Kermit software for more than 400 different computers and operating
  25940. systems is available from Columbia University.  Contact Columbia for a
  25941. free Kermit software catalog.
  25942.  
  25943.  
  25944. -----------------------------------------------------------------------
  25945.  
  25946.                                  HOW TO ORDER
  25947.  
  25948. -----------------------------------------------------------------------
  25949.  
  25950. ENGLISH-LANGUAGE KERMIT BOOKS:
  25951.  
  25952.    1. In computer and book stores, or order direct from the publisher,
  25953.       Digital Press / Butterworth-Heinemann with MasterCard, Visa, or
  25954.       American Express:
  25955.  
  25956.           +1 800 366-2665     (Woburn, MA office for USA & Canada)
  25957.           +44 993 58521       (Rushden, England office for Europe)
  25958.           +61 02 372-5511     (Chatswood, NSW office for Australia & NZ)
  25959.           +65 220-3684        (Singapore office for Asia)
  25960.  
  25961.    2. From Columbia University:
  25962.  
  25963.           Kermit Development and Distribution
  25964.           Columbia University Academic Information Systems
  25965.           612 West 115th Street
  25966.           New York, NY  10025  USA
  25967.           Tel.  +1 212 854-3703
  25968.           Fax.  +1 212 663-8202
  25969.           E-Mail: kermit@columbia.edu
  25970.  
  25971.       Domestic and overseas orders accepted.  Add $5 US for shipping
  25972.       outside of North America.  Orders may be paid by MasterCard or
  25973.       Visa, or prepaid by check in US dollars.  Add $35 bank fee for
  25974.       checks not drawn on a US bank.  Price includes shipping.  Do not
  25975.       include sales tax.  Quantity discounts are available.
  25976.       Single-copy US prices (in US dollars):
  25977.  
  25978.           Using MS-DOS Kermit  . . . . . . . . . . . . . . . . .$ 34.95
  25979.           Using C-Kermit . . . . . . . . . . . . . . . . . . . .$ 34.95
  25980.           Kermit, A File Transfer Protocol . . . . . . . . . . .$ 29.95
  25981.           All three  . . . . . . . . . . . . . . . . . . . . . .$ 79.95
  25982.  
  25983. -----------------------------------------------------------------------
  25984.  
  25985. GERMAN-LANGUAGE KERMIT BOOKS:
  25986.  
  25987.         MS-DOS Kermit, das universelle Kommunikationsprogramm: DM 69,00
  25988.         C-Kermit--Einfuhrung und Referenz: . . . . . . . . . . DM 90,00
  25989.  
  25990.         Verlag Heinz Heise GmbH & Co. KG
  25991.         Helstorfer Strasse 7
  25992.         D-30625 Hannover, GERMANY
  25993.         Tel.  +49 (05 11) 53 52-0
  25994.         Fax.  +49 (05 11) 53 53-1 29
  25995.  
  25996. -----------------------------------------------------------------------
  25997.  
  25998. FRENCH:  Kermit MS-DOS Mode d'Emploi:  . . . . . . . . . . .  FF 495,00
  25999.  
  26000.         Heinz Schiefer & Cie.
  26001.         45 rue Henri de Regnier
  26002.         F-78000 Versailles, FRANCE
  26003.         Tel.  +33 39 53 95 26
  26004.         Fax.  +33 39 02 39 71
  26005.  
  26006. -----------------------------------------------------------------------
  26007.  
  26008. JAPANESE:  MS-Kermit Nyumon: . . . . . . . . . . . . . . . . .  1,800 Y
  26009.  
  26010.         Saiensu-Sha Co., Ltd.
  26011.         Abe-toku Building
  26012.         2-4 Kanda-suda cho, Chiyoda-ku
  26013.         Tokyo 101, JAPAN
  26014.         Tel.  +81-3-3256-1091
  26015.  
  26016. -----------------------------------------------------------------------
  26017.  
  26018. From news@columbia.edu Fri Oct  7 12:31:17 1994
  26019. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20549
  26020.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 7 Oct 1994 10:10:30 -0400
  26021. Received: by apakabar.cc.columbia.edu id AA13332
  26022.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 7 Oct 1994 10:10:27 -0400
  26023. Newsgroups: comp.protocols.kermit.misc
  26024. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!EU.net!chsun!pan!jw
  26025. From: jw@adasoft.ch (Jamie Watson)
  26026. Subject: Re: FTP Mirrors and CDROMs - again
  26027. Message-Id: <CxAys5.Gqn@adasoft.ch>
  26028. Reply-To: jw@adasoft.ch (Jamie Watson)
  26029. Organization: Adasoft AG, Switzerland
  26030. References: <36hv50$kgn@news.icaen.uiowa.edu> <9410010116.AA24289@SimTel.Coast.NET> <CwzKJs.Fx7@news.cern.ch> <milam.166.000ACD06@fmsrlu.srl.ford.com> <9410041547.AA29857@SimTel.Coast.NET>
  26031. Date: Fri, 7 Oct 1994 12:31:17 GMT
  26032. Expires: Thu, 6 Oct 1994 23:00:00 GMT
  26033. Lines: 20
  26034. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  26035.  
  26036. >Look again.  MS-Kermit is written and maintained by Joe Doupnik, not Frank.
  26037.  
  26038. Well, *that* is certainly a pertinent piece of information in this discussion.
  26039. When all else fails, I suppose the best thing to do is just obfuscate.
  26040.  
  26041. >You seem to think that this is some sort of effort to get Columbia to
  26042. >agree to allow MS-Kermit to be put back on SimTel.  That is NOT the
  26043. >case.  SimTel's policy is that programs submitted to the collection MUST
  26044. >include documentation.  If MS-Kermit were submitted today it would be
  26045. >rejected because it does not include documentation.
  26046.  
  26047. Perhaps I have not been reading the postings in this "discussion" closely
  26048. enough.  But I certainly don't recall this having been mentioned before;
  26049. in fact, what I recall was that you announced that kermit had been removed
  26050. from SimTel without explaining why, simply saying "contact fdc for an
  26051. explanation".  The very strong implication in that posting, and all of the
  26052. ensuing "discussion", was that it was the dastardly policies of Columbia
  26053. that had caused it to be removed.  When all else fails, obfuscate.
  26054.  
  26055. jw
  26056.  
  26057. From news@columbia.edu Fri Oct  7 14:12:59 1994
  26058. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22363
  26059.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 7 Oct 1994 10:39:31 -0400
  26060. Received: by apakabar.cc.columbia.edu id AA15403
  26061.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 7 Oct 1994 10:39:29 -0400
  26062. Newsgroups: comp.protocols.kermit.misc
  26063. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!MathWorks.Com!news.duke.edu!concert!sas!mozart.unx.sas.com!newshost!sasdrq
  26064. From: sasdrq@gamecock.unx.sas.com (David Quattlebaum)
  26065. Subject: reading the screen in kermit
  26066. Sender: news@unx.sas.com (Noter of Newsworthy Events)
  26067. Message-Id: <SASDRQ.94Oct7101300@gamecock.unx.sas.com>
  26068. Date: Fri, 7 Oct 1994 14:12:59 GMT
  26069. Nntp-Posting-Host: gamecock.unx.sas.com
  26070. Organization: SAS Institute Inc.
  26071. Lines: 19
  26072. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  26073.  
  26074. Will there be a way in MSK 3.14 to read the screen at a certain
  26075. row,col location? I use this ability in procomm plus, but can't find a
  26076. way to duplicate this feature in MSK 3.13.
  26077.  
  26078. When writing certain scripts, it is nice to check the top of the
  26079. screen for a screen id. This id might match something else on the
  26080. screen so the "INPUT" command might not work.
  26081.  
  26082. Am I missing something already in 3.14?
  26083.  
  26084. Thanks.
  26085.  
  26086. --
  26087.  
  26088. R. David Quattlebaum           SAS Institute Inc.
  26089. sasdrq@unx.sas.com             SAS Campus Drive, R4138
  26090. (919)677-8000 x6284            Cary, NC 27513-2414
  26091.  
  26092.  
  26093.  
  26094. From news@columbia.edu Fri Oct  7 14:28:55 1994
  26095. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22517
  26096.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 7 Oct 1994 10:41:22 -0400
  26097. Received: by apakabar.cc.columbia.edu id AA15563
  26098.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 7 Oct 1994 10:41:17 -0400
  26099. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!uhog.mit.edu!MathWorks.Com!news.duke.edu!concert!bigblue.oit.unc.edu!tipper.oit.unc.edu!ewt
  26100. From: ewt@tipper.oit.unc.edu (Erik Troan)
  26101. Newsgroups: comp.protocols.kermit.misc
  26102. Subject: Re: Columbia University's Kermit copyright
  26103. Date: 7 Oct 1994 14:28:55 GMT
  26104. Organization: University of North Carolina, Chapel Hill
  26105. Lines: 29
  26106. Message-Id: <373lv7$j12@bigblue.oit.unc.edu>
  26107. References: <9410041248.AA26638@SimTel.Coast.NET> <36rnho$1kj@apakabar.cc.columbia.edu> <groot.781365699@taren2la.apd.dec.com>
  26108. Nntp-Posting-Host: tipper.oit.unc.edu
  26109. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  26110.  
  26111. In article <groot.781365699@taren2la.apd.dec.com>,
  26112. Henk de Groot <groot@apd.dec.com> wrote:
  26113. >Is it possible to set up a special directory tree for those programs that
  26114. >are of great value (like Kermit) but are not allowed to go on a CD-ROM.
  26115. >This directory is not meant for every other program, authors must still
  26116. >be pushed to allow their programs on CD-ROM, but it would solve difficult
  26117. >situations like this one (an author that will not give-in and a product that
  26118. >is too valuable to looze). During the generation of the CD-ROM this
  26119. >directory can be skipped so that the programs will not appear on CD-ROM.
  26120.  
  26121. Do you realize how many anonymous ftp sites there are on internet?
  26122. Do you understand how many of those carry kermit?
  26123. Do you know how easy it is to find kermit on internet (try archie)?
  26124.  
  26125. Why are people complainging so much that it was removed from two ftp sites.
  26126. Plenty of major ftp sites still carry it and it's not hard to get. Columbia
  26127. has *no* plands on removing it from ftp, they just feel that they have the
  26128. right to control further distribution so they don't drown in the flood
  26129. of support requests that would ovvur from a large increase in users.
  26130.  
  26131. Get kermit, use kermit, and stop worrying that you won't be able to find it.
  26132. The net doesn't revolve around simtel and garbo.
  26133.  
  26134. Erik
  26135. -- 
  26136. ----------------------------------------------------------------------------
  26137. "Like a fool I let dreams become great expectations" - Chess
  26138.  
  26139.         Erik Troan = ewt@sunsite.unc.edu = http://sunsite.unc.edu/ewt
  26140.  
  26141. From news@columbia.edu Fri Oct  7 14:52:41 1994
  26142. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25224
  26143.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 7 Oct 1994 11:19:01 -0400
  26144. Received: by apakabar.cc.columbia.edu id AA00483
  26145.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 7 Oct 1994 11:18:57 -0400
  26146. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!MathWorks.Com!udel!news-4.nss.udel.edu!chopin.udel.edu!not-for-mail
  26147. From: sigurd@chopin.udel.edu (Sigurd Andersen)
  26148. Newsgroups: comp.protocols.kermit.misc
  26149. Subject: Re: reading the screen in kermit
  26150. Date: 7 Oct 1994 10:52:41 -0400
  26151. Organization: University of Delaware
  26152. Lines: 23
  26153. Message-Id: <373nbp$g8e@chopin.udel.edu>
  26154. References: <SASDRQ.94Oct7101300@gamecock.unx.sas.com>
  26155. Nntp-Posting-Host: chopin.udel.edu
  26156. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  26157.  
  26158. In article <SASDRQ.94Oct7101300@gamecock.unx.sas.com>,
  26159. David Quattlebaum <sasdrq@gamecock.unx.sas.com> wrote:
  26160.  
  26161. : Will there be a way in MSK 3.14 to read the screen at a certain
  26162. : row,col location?  ...
  26163. : Thanks.
  26164. : R. David Quattlebaum           SAS Institute Inc.  ...
  26165.  
  26166. I have a quasi-related item on my "wish list" -- an option to
  26167. display the current line and character position of the cursor
  26168. in the status area on the bottom line of the screen.  As that
  26169. line is now rather crowded, perhaps one would need to be able
  26170. to choose what items to display, and where?  Of course, this
  26171. should be done without making Kermit any larger or slower ;*)
  26172.  
  26173. -- 
  26174. Sigurd Andersen    Internet: sigurd@strauss.udel.edu   User Services
  26175.      __o            or  Sigurd.Andersen@MVS.udel.edu   023 Smith Hall
  26176.    _ \<,_                                              Univ. of Delaware
  26177.   (_)/ (_)         Ph: (302) 831-1992  Fax: 831-4205   Newark, DE. 19716
  26178.  
  26179. From news@columbia.edu Fri Oct  7 13:40:51 1994
  26180. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28068
  26181.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 7 Oct 1994 12:02:29 -0400
  26182. Received: by apakabar.cc.columbia.edu id AA03780
  26183.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 7 Oct 1994 12:02:28 -0400
  26184. Newsgroups: comp.protocols.kermit.misc
  26185. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!MathWorks.Com!zombie.ncsc.mil!paladin.american.edu!howland.reston.ans.net!swrinde!emory!metro.atlanta.com!spcuna!ritz!kudut
  26186. From: kudut@ritz.mordor.com (Ken Udut)
  26187. Subject: Re: NDIS Driver for Kermit
  26188. References: <36jr4b$hlk@Venus.mcs.com> <1994Oct2.085926.28459@cc.usu.edu>
  26189. Organization: Mordor International BBS - Jersey City, NJ
  26190. Date: Fri, 7 Oct 1994 13:40:51 GMT
  26191. Message-Id: <CxB203.K90@ritz.mordor.com>
  26192. Lines: 23
  26193. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  26194.  
  26195. In article <1994Oct2.085926.28459@cc.usu.edu> jrd@cc.usu.edu (Joe Doupnik) writes:
  26196. >In article <36jr4b$hlk@Venus.mcs.com>, cnt@MCS.COM (Center / NT) writes:
  26197. >> One article mentions the dis_pkt9 shim to use Kermit with
  26198. >> NDIS compliant ethernet adapters.
  26199. >> 
  26200. >> Where can I find this?
  26201. >> 
  26202. >> Joel    cnt@mcs.com
  26203. >------------
  26204. >    We will be distributing a copy with MSK v3.14. Home base for the
  26205. >file is my place, netlab2.usu.edu, cd drivers.
  26206. >    Joe D.
  26207.  
  26208.  
  26209. While I wouldn't advise flooding Joe's FTP site, there is a lot of 
  26210. interesting things there (including MS-Kermit 3.13 sources, as someone 
  26211. was asking about earlier).  A lot of is is available at 
  26212. kermit.columbia.edu, but Joe's FTP site is a little more streamlined for 
  26213. what he needs (after all - wouldn't the guy that writes MS-Kermit only 
  26214. really need MS-Kermit?  :-) )
  26215.  
  26216. Ken
  26217.  
  26218.  
  26219. From news@columbia.edu Fri Oct  7 14:04:08 1994
  26220. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28559
  26221.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 7 Oct 1994 12:06:22 -0400
  26222. Received: by apakabar.cc.columbia.edu id AA04017
  26223.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 7 Oct 1994 12:06:20 -0400
  26224. Newsgroups: comp.protocols.kermit.misc
  26225. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!MathWorks.Com!solaris.cc.vt.edu!spcuna!ritz!kudut
  26226. From: kudut@ritz.mordor.com (Ken Udut)
  26227. Subject: Ring-bound Kermit Manuals
  26228. References: <370rss$cf7@canopus.cc.umanitoba.ca> <Cx9A7D.23I@ritz.mordor.com> <372cbb$p7l@mcrware.microware.com>
  26229. Organization: Mordor International BBS - Jersey City, NJ
  26230. Date: Fri, 7 Oct 1994 14:04:08 GMT
  26231. Message-Id: <CxB32w.L21@ritz.mordor.com>
  26232. Lines: 36
  26233. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  26234.  
  26235. > = James Jones
  26236.  
  26237. >(I *do* kind of wish there were a hardcover ring-bound edition of
  26238. >*Using C Kermit*.  My softcover copy's cover tends to settle in a semi-
  26239. >open state, and the open book doesn't lie flat.)
  26240.  
  26241. Now *that's* a good idea!  I haven't send my money order in for MS-Kermit 
  26242. manual yet, but I will within the next few days. 
  26243.  
  26244. I *love* the hard cover ringbound manuals - they're hard to find.  
  26245.  
  26246.  
  26247.          --------------------------------------------
  26248.     **** Hey Frank, Joe and others on the Kermit team ****
  26249.          ____________________________________________
  26250.  
  26251. Whaddaya think about offering a ringbound version of the Kermit manuals 
  26252. (MS-Kermit and C-Kermit - don't know much about the manuals for CPM and 
  26253. such) for $10 more each?  
  26254.  
  26255. Maybe for the *next* MS-Kermit and C-Kermit book, perhaps, if not this one.
  26256.  
  26257.  
  26258. I'd be willing to pay $60 for the ringbound edition, if the paperbound 
  26259. edition that I'm ordering is as good as I expect and have heard!  :-)
  26260.  
  26261. Or, if ringbound is prohibitively expensive, how about looseleaf, and 
  26262. print a nice binder?  *Then* you could offer updates to the manual, when 
  26263. new revisions come out, and before the next Kermit book was written!
  26264.  
  26265. I fully expect Kermit to be around for a long long time to come.  It's so 
  26266. darned simple (as a protocol), and yet does so much!
  26267.  
  26268.  
  26269. Ken
  26270.  
  26271.  
  26272. From news@columbia.edu Fri Oct  7 04:40:45 1994
  26273. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21929
  26274.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 7 Oct 1994 13:39:45 -0400
  26275. Received: by apakabar.cc.columbia.edu id AA11824
  26276.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 7 Oct 1994 13:39:43 -0400
  26277. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!MathWorks.Com!news.duke.edu!convex!cs.utexas.edu!swrinde!howland.reston.ans.net!agate!dog.ee.lbl.gov!news.cs.utah.edu!cc.usu.edu!jrd
  26278. From: jrd@cc.usu.edu (Joe Doupnik)
  26279. Newsgroups: comp.protocols.kermit.misc
  26280. Subject: Re: reading the screen in kermit
  26281. Message-Id: <1994Oct7.104045.29099@cc.usu.edu>
  26282. Date: 7 Oct 94 10:40:45 MDT
  26283. References: <SASDRQ.94Oct7101300@gamecock.unx.sas.com>
  26284. Organization: Utah State University
  26285. Lines: 20
  26286. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  26287.  
  26288. In article <SASDRQ.94Oct7101300@gamecock.unx.sas.com>, sasdrq@gamecock.unx.sas.com (David Quattlebaum) writes:
  26289. > Will there be a way in MSK 3.14 to read the screen at a certain
  26290. > row,col location? I use this ability in procomm plus, but can't find a
  26291. > way to duplicate this feature in MSK 3.13.
  26292. > When writing certain scripts, it is nice to check the top of the
  26293. > screen for a screen id. This id might match something else on the
  26294. > screen so the "INPUT" command might not work.
  26295. > Am I missing something already in 3.14?
  26296. ---------
  26297.     Connect mode is a mode, unrelated to things we can say at the
  26298. Kermit prompt. Script commands run at the Kermit prompt and not in 
  26299. Connect mode. They are indeed modes, much different beasts in the code.
  26300.     Many comms programs sit in terminal emulation mode all the
  26301. time, and overlay file transfer screens. MS-DOS Kermit is not designed
  26302. that way.
  26303.     Thus, your scripts can check for a character string, but not for 
  26304. a formatted screen characteristic.
  26305.     Joe D.
  26306.  
  26307. From news@columbia.edu Fri Oct  7 04:59:34 1994
  26308. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21976
  26309.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 7 Oct 1994 13:40:09 -0400
  26310. Received: by apakabar.cc.columbia.edu id AA11867
  26311.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 7 Oct 1994 13:40:08 -0400
  26312. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!MathWorks.Com!news.duke.edu!convex!cs.utexas.edu!swrinde!howland.reston.ans.net!agate!dog.ee.lbl.gov!news.cs.utah.edu!cc.usu.edu!jrd
  26313. From: jrd@cc.usu.edu (Joe Doupnik)
  26314. Newsgroups: comp.protocols.kermit.misc
  26315. Subject: Re: reading the screen in kermit
  26316. Message-Id: <1994Oct7.105934.29107@cc.usu.edu>
  26317. Date: 7 Oct 94 10:59:34 MDT
  26318. References: <SASDRQ.94Oct7101300@gamecock.unx.sas.com> <373nbp$g8e@chopin.udel.edu>
  26319. Organization: Utah State University
  26320. Lines: 36
  26321. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  26322.  
  26323. In article <373nbp$g8e@chopin.udel.edu>, sigurd@chopin.udel.edu (Sigurd Andersen) writes:
  26324. > In article <SASDRQ.94Oct7101300@gamecock.unx.sas.com>,
  26325. > David Quattlebaum <sasdrq@gamecock.unx.sas.com> wrote:
  26326. > : Will there be a way in MSK 3.14 to read the screen at a certain
  26327. > : row,col location?  ...
  26328. > : 
  26329. > : Thanks.
  26330. > : 
  26331. > : R. David Quattlebaum           SAS Institute Inc.  ...
  26332. > : 
  26333. > I have a quasi-related item on my "wish list" -- an option to
  26334. > display the current line and character position of the cursor
  26335. > in the status area on the bottom line of the screen.  As that
  26336. > line is now rather crowded, perhaps one would need to be able
  26337. > to choose what items to display, and where?  Of course, this
  26338. > should be done without making Kermit any larger or slower ;*)
  26339. > -- 
  26340. > Sigurd Andersen    Internet: sigurd@strauss.udel.edu   User Services
  26341. >      __o            or  Sigurd.Andersen@MVS.udel.edu   023 Smith Hall
  26342. >    _ \<,_                                              Univ. of Delaware
  26343. >   (_)/ (_)         Ph: (302) 831-1992  Fax: 831-4205   Newark, DE. 19716
  26344. -----------
  26345.     Displaying the cursor position on the status line would be a 
  26346. performance killer. It's a decorative item, a la say WordPerfect. The
  26347. Connect mode status line is not designed to be a set of movable objects
  26348. so there is no user-editing of which components or where they go. Also
  26349. the host has control of that line if it wishes. Any of these items would
  26350. indeed cause program size increase and manual size increase, and generate
  26351. even more comments about "too many things which can be set/shown/tinkered
  26352. with."
  26353.     But thanks for the suggestions. Maybe a Windows version would have
  26354. such features.
  26355.     Joe D.
  26356.  
  26357. From news@columbia.edu Fri Oct  7 05:29:08 1994
  26358. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26518
  26359.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 7 Oct 1994 14:41:32 -0400
  26360. Received: by apakabar.cc.columbia.edu id AA17257
  26361.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 7 Oct 1994 14:41:25 -0400
  26362. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!swrinde!ihnp4.ucsd.edu!dog.ee.lbl.gov!news.cs.utah.edu!cc.usu.edu!jrd
  26363. From: jrd@cc.usu.edu (Joe Doupnik)
  26364. Newsgroups: comp.protocols.kermit.misc
  26365. Subject: Re: Columbia University's Kermit copyright
  26366. Message-Id: <1994Oct7.112908.29112@cc.usu.edu>
  26367. Date: 7 Oct 94 11:29:08 MDT
  26368. Organization: Utah State University
  26369. Lines: 22
  26370. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  26371.  
  26372.     Speaking for myself here. Reviewing the past ten days of intense
  26373. discussion on this list has left a very positive impression on me. To 
  26374. outsiders the discussion seems like a full powered attack on Kermits
  26375. and the Kermit Project policies. I see it differently. Over 90% of the
  26376. messages are from very thoughtful people trying to sort out choices and
  26377. alternatives, with the aim of improving matters. Not all messages are this 
  26378. way but the vast majority are. The insight and tenor of most messages is 
  26379. professional and experienced. I am impressed and, after time to recover good 
  26380. humor, pleased. I've learned things even if I don't agree with all points.
  26381.     Most of us realize that while Kermit programs and policies are the 
  26382. focus of discussion the real targets are the far more numerous programs and 
  26383. authors and distribution companies. The element of dramatically increasing 
  26384. scales of use and distribution make the problem very difficult to quantify 
  26385. and solve. Providing help to that vast user population, under circumstances 
  26386. of very tight financial and personnel resources, is the most difficult part, 
  26387. whether programs be commercial or free. The problem of copyright adherence is
  26388. emphasized. These issues will be faced by many people and companies, and our 
  26389. discussion should be of distinct benefit when their turn comes.
  26390.     Thus let me take this small breathing space to express my appreciation
  26391. to the many contributors for their time and effort to help all of us understand 
  26392. the situation, and maybe even find longer term solutions.
  26393.     Joe D.
  26394.  
  26395. From news@columbia.edu Fri Oct  7 16:27:34 1994
  26396. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27853
  26397.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 7 Oct 1994 15:01:07 -0400
  26398. Received: by apakabar.cc.columbia.edu id AA18737
  26399.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 7 Oct 1994 15:01:05 -0400
  26400. Newsgroups: comp.protocols.kermit.misc
  26401. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!convex!news.duke.edu!solaris.cc.vt.edu!spcuna!ritz!kudut
  26402. From: kudut@ritz.mordor.com (Ken Udut)
  26403. Subject: Kermit-lovers unite!
  26404. Organization: Mordor International BBS - Jersey City, NJ
  26405. Date: Fri, 7 Oct 1994 16:27:34 GMT
  26406. Message-Id: <CxB9pz.2op@ritz.mordor.com>
  26407. Lines: 12
  26408. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  26409.  
  26410.  
  26411. Sometimes I wish I had a mailing list program on my sysadmin's host.
  26412.  
  26413. I would dearly *love* to start a mailing list for people who absolutely 
  26414. ADORE Kermit!  That's the biggest problem with newsgroups.  Complainers 
  26415. pop in, pop out, without a hint of responsibility for what they say.
  26416.  
  26417. KERMIT-LVRS :->  Quite tempting, in fact!  Too much negativity around 
  26418. sometimes - it's great to get away from it when I can :-)
  26419.  
  26420. Ken
  26421. kudut@ritz.mordor.com
  26422.  
  26423. From news@columbia.edu Fri Oct  7 19:29:50 1994
  26424. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01078
  26425.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 7 Oct 1994 15:33:10 -0400
  26426. Received: by apakabar.cc.columbia.edu id AA21473
  26427.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 7 Oct 1994 15:33:08 -0400
  26428. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!news-feed-1.peachnet.edu!news.Gsu.EDU!gatech!howland.reston.ans.net!pipex!sunic!news.funet.fi!zippo.uwasa.fi!uwasa.fi!ts
  26429. From: ts@uwasa.fi (Timo Salmi)
  26430. Newsgroups: comp.protocols.kermit.misc
  26431. Subject: Re: Columbia University's Kermit copyright
  26432. Date: 7 Oct 1994 19:29:50 GMT
  26433. Organization: University of Vaasa
  26434. Lines: 28
  26435. Message-Id: <3747je$2sl@zippo.uwasa.fi>
  26436. References: <36h490$9hc@apakabar.cc.columbia.edu> <36pbtj$cc0@usenety1.news.prodigy.com> <Cx8nwJ.E3I@adasoft.ch>
  26437. Nntp-Posting-Host: uwasa.fi
  26438. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  26439.  
  26440. In article <Cx8nwJ.E3I@adasoft.ch> jw@adasoft.ch (Jamie Watson) writes:
  26441. :the resources even further.  My impression of the people who are involved
  26442. :in the CD-ROM distribution is that they are being totally unreasonable;
  26443. :the statement "I don't have the time or interest to arrange my archive
  26444. :and/or CD-ROM distribution to include kermit on one but not the other"
  26445. :is completely bogus, in my opinion.  My impression of the rest of those
  26446.  
  26447. Rubbish.  But since you imagine to know so well please advice how
  26448. does one set up a publicly accessible FTP sub-directory that will
  26449. not be automatically mirrored, and how do you negotiate all the
  26450. complicated arrangements with the CDROM producers.  Please also
  26451. advice where do I find the additional time an motivation needed. 
  26452.  
  26453. Develop a product of your own, and you'll see the Columbia's side of
  26454. things.
  26455.  
  26456. Maintain an FTP site and you'll see SimTel's and Garbo's side of
  26457. things.
  26458.  
  26459. I happen to have done both.
  26460.  
  26461.    All the best, Timo
  26462.  
  26463. ..................................................................
  26464. Prof. Timo Salmi      Co-moderator of comp.archives.msdos.announce
  26465. Moderating at garbo.uwasa.fi anonymous FTP  archives  128.214.87.1
  26466. Faculty of Accounting & Industrial Management; University of Vaasa
  26467. Internet: ts@uwasa.fi   BBS +(358)-61-3170972; FIN-65101,  Finland
  26468.  
  26469. From news@columbia.edu Fri Oct  7 06:50:13 1994
  26470. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01789
  26471.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 7 Oct 1994 15:42:34 -0400
  26472. Received: by apakabar.cc.columbia.edu id AA22279
  26473.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 7 Oct 1994 15:42:31 -0400
  26474. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!news-feed-1.peachnet.edu!gatech!swrinde!ihnp4.ucsd.edu!dog.ee.lbl.gov!news.cs.utah.edu!cc.usu.edu!jrd
  26475. From: jrd@cc.usu.edu (Joe Doupnik)
  26476. Newsgroups: comp.protocols.kermit.misc
  26477. Subject: Re: NDIS Driver for Kermit
  26478. Message-Id: <1994Oct7.125014.29124@cc.usu.edu>
  26479. Date: 7 Oct 94 12:50:13 MDT
  26480. References: <36jr4b$hlk@Venus.mcs.com> <1994Oct2.085926.28459@cc.usu.edu> <CxB203.K90@ritz.mordor.com>
  26481. Organization: Utah State University
  26482. Lines: 26
  26483. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  26484.  
  26485. In article <CxB203.K90@ritz.mordor.com>, kudut@ritz.mordor.com (Ken Udut) writes:
  26486. > In article <1994Oct2.085926.28459@cc.usu.edu> jrd@cc.usu.edu (Joe Doupnik) writes:
  26487. >>In article <36jr4b$hlk@Venus.mcs.com>, cnt@MCS.COM (Center / NT) writes:
  26488. >>> One article mentions the dis_pkt9 shim to use Kermit with
  26489. >>> NDIS compliant ethernet adapters.
  26490. >>> 
  26491. >>> Where can I find this?
  26492. >>> 
  26493. >>> Joel    cnt@mcs.com
  26494. >>------------
  26495. >>    We will be distributing a copy with MSK v3.14. Home base for the
  26496. >>file is my place, netlab2.usu.edu, cd drivers.
  26497. >>    Joe D.
  26498. > While I wouldn't advise flooding Joe's FTP site, there is a lot of 
  26499. > interesting things there (including MS-Kermit 3.13 sources, as someone 
  26500. > was asking about earlier).  A lot of is is available at 
  26501. > kermit.columbia.edu, but Joe's FTP site is a little more streamlined for 
  26502. > what he needs (after all - wouldn't the guy that writes MS-Kermit only 
  26503. > really need MS-Kermit?  :-) )
  26504. -------------
  26505.     My ftp servers are designed and built to take the load. They also
  26506. service a goodly chunk of the NetWare community and I doubt that you guys
  26507. will make much of a dent in the traffic stats. Feel free to raid and plunder.
  26508.     Joe D.
  26509.  
  26510. From news@columbia.edu Fri Oct  7 19:32:20 1994
  26511. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03052
  26512.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 7 Oct 1994 15:58:59 -0400
  26513. Received: by apakabar.cc.columbia.edu id AA23591
  26514.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 7 Oct 1994 15:58:57 -0400
  26515. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!pipex!sunic!news.funet.fi!zippo.uwasa.fi!uwasa.fi!ts
  26516. From: ts@uwasa.fi (Timo Salmi)
  26517. Newsgroups: comp.protocols.kermit.misc
  26518. Subject: cmsg cancel <3747je$2sl@zippo.uwasa.fi>
  26519. Control: cancel <3747je$2sl@zippo.uwasa.fi>
  26520. Date: 7 Oct 1994 19:32:20 GMT
  26521. Organization: University of Vaasa
  26522. Lines: 1
  26523. Message-Id: <3747o4$2ug@zippo.uwasa.fi>
  26524. References: <36pbtj$cc0@usenety1.news.prodigy.com> <Cx8nwJ.E3I@adasoft.ch> <3747je$2sl@zippo.uwasa.fi>
  26525. Nntp-Posting-Host: uwasa.fi
  26526. Originator: ts@uwasa.fi
  26527. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  26528.  
  26529. <3747je$2sl@zippo.uwasa.fi> was cancelled from within rn.
  26530.  
  26531. From news@columbia.edu Fri Oct  7 19:41:30 1994
  26532. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03683
  26533.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 7 Oct 1994 16:03:42 -0400
  26534. Received: by apakabar.cc.columbia.edu id AA23989
  26535.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 7 Oct 1994 16:03:41 -0400
  26536. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!news-feed-1.peachnet.edu!gatech!swrinde!howland.reston.ans.net!EU.net!sunic!news.funet.fi!zippo.uwasa.fi!uwasa.fi!ts
  26537. From: ts@uwasa.fi (Timo Salmi)
  26538. Newsgroups: comp.protocols.kermit.misc
  26539. Subject: Re: Columbia University's Kermit copyright
  26540. Date: 7 Oct 1994 19:41:30 GMT
  26541. Organization: University of Vaasa
  26542. Lines: 30
  26543. Message-Id: <37489a$30f@zippo.uwasa.fi>
  26544. References: <36h490$9hc@apakabar.cc.columbia.edu> <36pbtj$cc0@usenety1.news.prodigy.com> <Cx8nwJ.E3I@adasoft.ch>
  26545. Nntp-Posting-Host: uwasa.fi
  26546. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  26547.  
  26548. In article <Cx8nwJ.E3I@adasoft.ch> jw@adasoft.ch (Jamie Watson) writes:
  26549. :the resources even further.  My impression of the people who are involved
  26550. :in the CD-ROM distribution is that they are being totally unreasonable;
  26551. :the statement "I don't have the time or interest to arrange my archive
  26552. :and/or CD-ROM distribution to include kermit on one but not the other"
  26553. :is completely bogus, in my opinion.  My impression of the rest of those
  26554.  
  26555. Since you seem to know so well please advice how does one set up a
  26556. publicly accessible FTP sub-directory that will not be automatically
  26557. mirrored, and how do you negotiate all the complicated arrangements
  26558. with the CDROM producers.  Please also advice where do I find the
  26559. additional time an motivation needed for something which I do much
  26560. of my spare time. 
  26561.  
  26562. Develop a product and its support of your own, and you'll see the
  26563. Columbia's side of things. 
  26564.  
  26565. Maintain a well-organized and responsible FTP site and you'll see
  26566. SimTel's and Garbo's side of things. 
  26567.  
  26568. I happen to have done both so don't you "completely bogus" me
  26569. mister.
  26570.  
  26571.    All the best, Timo
  26572.  
  26573. ..................................................................
  26574. Prof. Timo Salmi      Co-moderator of comp.archives.msdos.announce
  26575. Moderating at garbo.uwasa.fi anonymous FTP  archives  128.214.87.1
  26576. Faculty of Accounting & Industrial Management; University of Vaasa
  26577. Internet: ts@uwasa.fi   BBS +(358)-61-3170972; FIN-65101,  Finland
  26578.  
  26579. From news@columbia.edu Fri Oct  7 16:34:36 1994
  26580. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04305
  26581.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 7 Oct 1994 16:11:58 -0400
  26582. Received: by apakabar.cc.columbia.edu id AA24689
  26583.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 7 Oct 1994 16:11:57 -0400
  26584. Path: news.columbia.edu!panix!MathWorks.Com!usenet.eel.ufl.edu!usenet.cis.ufl.edu!usenet.ufl.edu!hawk.csd.harris.com!amber!tom
  26585. From: tom@ssd.csd.harris.com (Tom Horsley)
  26586. Newsgroups: comp.protocols.kermit.misc
  26587. Subject: Re: Kermit for Windows/NT
  26588. Date: 07 Oct 1994 16:34:36 GMT
  26589. Organization: Harris Computer Systems Division
  26590. Lines: 14
  26591. Message-Id: <TOM.94Oct7123436@amber.ssd.csd.harris.com>
  26592. References: <1994Sep19.071445.15802@medicus.com> <nicks.781450918@ariel>
  26593. Reply-To: Tom.Horsley@mail.csd.harris.com
  26594. Nntp-Posting-Host: amber.ssd.csd.harris.com
  26595. In-Reply-To: nicks@ariel.ucs.unimelb.EDU.AU's message of 6 Oct 1994 23:43:06 +1000
  26596. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  26597.  
  26598. >I was wondering if anyone is working on porting Kermit to
  26599. >Windows/NT?  
  26600.  
  26601. I am vaugely sort of fooling around with porting the OS/2 kermit to native
  26602. Windows NT, but it is by no means an official "kermit porter" project, nor
  26603. do I anticipate being finished anytime soon (though if I do happen to get it
  26604. working, I will certainly look into feeding the source back to the folks
  26605. at columbia, but we are probably talking months or years here if at all :-).
  26606. --
  26607. --
  26608. Tom.Horsley@mail.csd.harris.com
  26609. Home: 511 Kingbird Circle Delray Beach FL  33444
  26610. Work: Harris Computers, 2101 W. Cypress Creek Rd. Ft. Lauderdale FL  33309
  26611. Take the pledge! No votes for Ollie North supporters! NO POND SCUM!
  26612.  
  26613. From news@columbia.edu Fri Oct  7 17:46:00 1994
  26614. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11422
  26615.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 7 Oct 1994 17:43:16 -0400
  26616. Received: by apakabar.cc.columbia.edu id AA02176
  26617.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 7 Oct 1994 17:43:14 -0400
  26618. Newsgroups: comp.protocols.kermit.misc
  26619. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!zip.eecs.umich.edu!caen!math.ohio-state.edu!cs.utexas.edu!utnut!utzoo!telly!evan
  26620. From: evan@telly.on.ca (Evan Leibovitch)
  26621. Subject: Re: Please explain Kermit's copyright
  26622. Message-Id: <CxBDCo.EKs@telly.on.ca>
  26623. Organization: Sound Software Ltd., Brampton, Ontario
  26624. References: <NELSON.94Oct5104617@crynwr.crynwr.com> <36uibk$p1s@apakabar.cc.columbia.edu>
  26625. Date: Fri, 7 Oct 1994 17:46:00 GMT
  26626. Lines: 78
  26627. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  26628.  
  26629. In article <36uibk$p1s@apakabar.cc.columbia.edu>,
  26630.     Frank da Cruz <fdc@fdc.cc.columbia.edu> wrote:
  26631.  
  26632. >I think everybody would like to see Kermit on CDROMs.  The
  26633. >question is -- and nobody has yet answered it -- how do we do that without
  26634. >killing the Kermit effort?  I'm not asking any of you to answer this
  26635. >question: I don't think you can, unless you step forward with an endowment
  26636. >that lets us carry on our work indefinitely in such a way that no funds
  26637. >need to be raised, and everybody's needs are met.  As long as we must pay
  26638. >or our own work, then it is up to us to decide how to do it.
  26639.  
  26640. Maybe, then, I'm misreading what "the Kermit effort" entails.
  26641.  
  26642. As a purely developmental effort, the nature of Kermit's distribution
  26643. should be of no concern. What has surprised me in this thread is
  26644. the revelation that Columbia actually offers help-desk-style support for
  26645. Kermit. This, frankly, amazes me.
  26646.  
  26647. I don't understand why "support" need be any more than a part-time task
  26648. perusing the Internet and/or a BBS-type system (whose number is built
  26649. into the default Kermit dialing directory :-). That person would
  26650. accept bug fixes and reply to other questions with a polite RTFM.
  26651.  
  26652. This might have the added effect of giving people more reason to buy
  26653. the book(s).
  26654.  
  26655. I would suggest that anything more than minimal Kermit support by
  26656. Columbia is a waste of funds. The software is mature enough that
  26657. user-driven support (such as this newsgroup!) will suffice for most
  26658. questions, just as it does for current users of GNU and Linux software.
  26659. Your effort, Frank, in creating an unmoderated Kermit group, should
  26660. significantly reduce the load on Columbia directly. Postings to the
  26661. formerly-moderated group that once had to be dealt with by your team
  26662. can now be dealt with by that big blob of Usenet.
  26663.  
  26664. People want support beyond that? Buy the books.
  26665.  
  26666. People want handholding beyond that? Allow third party efforts to
  26667. support Kermit to those who are willing to pay. Maybe less revenue
  26668. for Columbia, but far fewer headaches as well.
  26669.  
  26670. I'm not directly affected by the CD prohibition, but I see why a
  26671. seemingly insignificant issue like discrimination based on distribution
  26672. media would get under people's skin. It seems so arbitrary.
  26673.  
  26674. I like the idea of a Columbia-produced CD as was suggested elsewhere.
  26675. Its capacity would allow you to put just about every known architecture
  26676. implementation of Kermit on a single CD-ROM, which might solve a number
  26677. of problems. But let's take the idea further...
  26678.  
  26679. How about this? Consolidate all the current English-language
  26680. documentation into a single volume, and bundle in this book a
  26681. CD-ROM with all current Kermit implementations (as well as electronic
  26682. versions of the docs). Offer it for distribution through *software*
  26683. channels, not book channels (ie, Merisel rather than Waldenbooks).
  26684.  
  26685. Priced reasonably, it would sell alongside all of the other CD-ROM
  26686. releases in computer stores; and it would sell well, even with users
  26687. knowing they could get the stuff free from elsewhere.
  26688.  
  26689. Look at the boom in sales of CD-ROMs which only contain shareware
  26690. and freeware; people know they can get the stuff free, but are willing
  26691. to pay for convenience, virus-free media, and documentation.
  26692.  
  26693. From a publishing level, I'm sure the folks at O'Reilly and Prime Time
  26694. Software would be able to help you with such a CD/book project if
  26695. Digital Press won't. Note that because it's a book, the current
  26696. publication isn't on display in software areas; software and books
  26697. are currently sold in very different ways. Sold as a software CD-ROM,
  26698. as software rather than a book, I suggest sales would go up dramatically.
  26699.  
  26700. I've been lurking on this discussion for a while, waiting for someone
  26701. else to suggest this. To me it seems  almost obvious. What am I missing?
  26702.  
  26703. -- 
  26704.  Evan Leibovitch, Sound Software Ltd., located in beautiful Brampton, Ontario
  26705.        Novell Unix Master Reseller / evan@telly.on.ca / (905) 452-0504
  26706.           PCMCIA:  People Can't Memorize Computer Industry Acronyms
  26707.  
  26708. From news@columbia.edu Fri Oct  7 19:08:12 1994
  26709. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12870
  26710.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 7 Oct 1994 18:05:49 -0400
  26711. Received: by apakabar.cc.columbia.edu id AA03774
  26712.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 7 Oct 1994 18:05:31 -0400
  26713. Newsgroups: comp.protocols.kermit.misc
  26714. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!uunet!spcuna!ritz!kudut
  26715. From: kudut@ritz.mordor.com (Ken Udut)
  26716. Subject: Re: Kermit for Windows/NT
  26717. References: <1994Sep19.071445.15802@medicus.com> <nicks.781450918@ariel> <TOM.94Oct7123436@amber.ssd.csd.harris.com>
  26718. Organization: Mordor International BBS - Jersey City, NJ
  26719. Date: Fri, 7 Oct 1994 19:08:12 GMT
  26720. Message-Id: <CxBH5o.772@ritz.mordor.com>
  26721. Lines: 22
  26722. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  26723.  
  26724. In article <TOM.94Oct7123436@amber.ssd.csd.harris.com> Tom.Horsley@mail.csd.harris.com writes:
  26725. >>I was wondering if anyone is working on porting Kermit to
  26726. >>Windows/NT?  
  26727. >
  26728. >I am vaugely sort of fooling around with porting the OS/2 kermit to native
  26729. >Windows NT, but it is by no means an official "kermit porter" project, nor
  26730. >do I anticipate being finished anytime soon (though if I do happen to get it
  26731. >working, I will certainly look into feeding the source back to the folks
  26732. >at columbia, but we are probably talking months or years here if at all :-).
  26733. >--
  26734.  
  26735. Tom, maybe this is something that I'm confused about but... I thought 
  26736. that you would take the original C-Kermit code and simply compile it 
  26737. under Windows-NT.  Well, make changes for the file system and for the 
  26738. port assignments... but shouldn't it mostly take care of itself?
  26739.  
  26740. Or am I thinking too wishfully about the "portableness" of C code?  :->
  26741.  
  26742. (I really no little about C beyond "Hello, world!")
  26743.  
  26744. Ken
  26745. kudut@ritz.mordor.com
  26746.  
  26747. From news@columbia.edu Fri Oct  7 21:19:38 1994
  26748. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14718
  26749.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 7 Oct 1994 18:36:38 -0400
  26750. Received: by apakabar.cc.columbia.edu id AA05762
  26751.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 7 Oct 1994 18:36:36 -0400
  26752. Path: news.columbia.edu!panix!MathWorks.Com!solaris.cc.vt.edu!uunet!nwnexus!news.halcyon.com!chinook!ken
  26753. From: ken@chinook.halcyon.com (Ken Pizzini)
  26754. Newsgroups: comp.protocols.kermit.misc
  26755. Subject: Re: GNU implementation of kermit :-)
  26756. Date: 7 Oct 1994 21:19:38 GMT
  26757. Organization: What, me?
  26758. Lines: 19
  26759. Message-Id: <374e1a$kb6@news.halcyon.com>
  26760. References: <36ou5m$5ou@canopus.cc.umanitoba.ca> <36phpb$i9b@apakabar.cc.columbia.edu> <Cx4t2n.s1@world.std.com> <CxAyBn.GoB@adasoft.ch>
  26761. Nntp-Posting-Host: chinook.halcyon.com
  26762. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  26763.  
  26764. In article <CxAyBn.GoB@adasoft.ch>, Jamie Watson <jw@adasoft.ch> wrote:
  26765. >>The GNU project doesn't
  26766. >>CARE how their software is distributed as long as it's done more or less freely
  26767. >
  26768. >Oh, really?  Are you sure about this?  I've seen several statements, from
  26769. >several different people in the FSF, saying "If you are going to buy the
  26770. >distribution on tape {or whatever}, please buy it from us and not from
  26771. >others, because the money from this is important funding for us".  Sounds
  26772. >like a very similar situation to me.
  26773.  
  26774. But this is different -- it is a plea to the purchasers to help support
  26775. ongoing development.  It is not a demand.  If one finds a distribution
  26776. with desirable value-added and one still wants to support the Gnu project
  26777. then one can just send a monetary donation to the FSF.
  26778.  
  26779. But in a sense you're right: the do _care_, but they don't control (and
  26780. explicitly avoid controlling) distribution.
  26781.  
  26782.         --Ken Pizzini
  26783.  
  26784. From news@columbia.edu Fri Oct  7 20:31:23 1994
  26785. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17641
  26786.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 7 Oct 1994 19:34:49 -0400
  26787. Received: by apakabar.cc.columbia.edu id AA09145
  26788.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 7 Oct 1994 19:34:47 -0400
  26789. Newsgroups: comp.protocols.kermit.misc
  26790. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!pipex!uunet!spcuna!ritz!kudut
  26791. From: kudut@ritz.mordor.com (Ken Udut)
  26792. Subject: Re: reading the screen in kermit
  26793. References: <SASDRQ.94Oct7101300@gamecock.unx.sas.com> <373nbp$g8e@chopin.udel.edu> <1994Oct7.105934.29107@cc.usu.edu>
  26794. Organization: Mordor International BBS - Jersey City, NJ
  26795. Date: Fri, 7 Oct 1994 20:31:23 GMT
  26796. Message-Id: <CxBL0B.92E@ritz.mordor.com>
  26797. Lines: 34
  26798. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  26799.  
  26800. >    Displaying the cursor position on the status line would be a 
  26801. >performance killer. It's a decorative item, a la say WordPerfect. The
  26802. >Connect mode status line is not designed to be a set of movable objects
  26803. >so there is no user-editing of which components or where they go. Also
  26804. >the host has control of that line if it wishes. Any of these items would
  26805. >indeed cause program size increase and manual size increase, and generate
  26806. >even more comments about "too many things which can be set/shown/tinkered
  26807. >with."
  26808. >    But thanks for the suggestions. Maybe a Windows version would have
  26809. >such features.
  26810. >    Joe D.
  26811.  
  26812. There is another option.  While displaying the cursor position isn't 
  26813. practical, I know some people have asked about cut-and-paste functions.
  26814.  
  26815. Personally, I just scrollback to the part I want to remember, and while 
  26816. I'm sitting at the screen, type the command/filename/whatever while on 
  26817. that screen, using the first time it said it as a visual reminder.
  26818.  
  26819. But there are programs that cut/paste sections of a screen.  One I 
  26820. believe came with Qmodem 4.0 a few years ago.  It was very small, but it 
  26821. did work.  There is also (in my archives but I'm not likely to be able to 
  26822. find it for a while!) a program running around that allows you to use the 
  26823. mouse to cut/paste text info. from an MS-DOS screen.
  26824.  
  26825. While positioning the cursor over the text, press the left button to 
  26826. highlight.  To stop highlighting, let go of the button.  Then you click 
  26827. on the right mouse button to paste it.
  26828.  
  26829. I'll keep my eyes peeled for it.  There are some folks that would 
  26830. probably find that a useful item in Kermit :-)
  26831.  
  26832. Ken
  26833. kudut@ritz.mordor.com
  26834.  
  26835. From news@columbia.edu Fri Oct  7 11:05:32 1994
  26836. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19549
  26837.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 7 Oct 1994 20:13:01 -0400
  26838. Received: by apakabar.cc.columbia.edu id AA11413
  26839.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 7 Oct 1994 20:12:59 -0400
  26840. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  26841. From: jrd@cc.usu.edu (Joe Doupnik)
  26842. Newsgroups: comp.protocols.kermit.misc
  26843. Subject: Re: Kermit for Windows/NT
  26844. Message-Id: <1994Oct7.170533.29142@cc.usu.edu>
  26845. Date: 7 Oct 94 17:05:32 MDT
  26846. References: <1994Sep19.071445.15802@medicus.com> <nicks.781450918@ariel> <TOM.94Oct7123436@amber.ssd.csd.harris.com>
  26847. Organization: Utah State University
  26848. Lines: 15
  26849. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  26850.  
  26851. In article <TOM.94Oct7123436@amber.ssd.csd.harris.com>, tom@ssd.csd.harris.com (Tom Horsley) writes:
  26852. >>I was wondering if anyone is working on porting Kermit to
  26853. >>Windows/NT?  
  26854. > I am vaugely sort of fooling around with porting the OS/2 kermit to native
  26855. > Windows NT, but it is by no means an official "kermit porter" project, nor
  26856. > do I anticipate being finished anytime soon (though if I do happen to get it
  26857. > working, I will certainly look into feeding the source back to the folks
  26858. > at columbia, but we are probably talking months or years here if at all :-).
  26859. > --
  26860. Tom,
  26861.     People such as yourself should contact Frank da Cruz at Columbia,
  26862. fdc@watsun.cc.columbia.edu, about your plans so there is minimal expenditure
  26863. of effort and that matters can stay coordinated.
  26864.     Joe D.
  26865.  
  26866. From news@columbia.edu Sat Oct  8 00:54:43 1994
  26867. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22214
  26868.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 7 Oct 1994 21:01:51 -0400
  26869. Received: by apakabar.cc.columbia.edu id AA14418
  26870.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 7 Oct 1994 21:01:50 -0400
  26871. Newsgroups: comp.protocols.kermit.misc
  26872. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!pipex!uunet!zib-berlin.de!math.fu-berlin.de!drunivac.drew.edu!pcoen
  26873. From: pcoen@drunivac.drew.edu (Paul R. Coen)
  26874. Subject: Re: Kermit-lovers unite!
  26875. Message-Id: <1994Oct7.205443.1@drunivac.drew.edu>
  26876. Sender: news@math.fu-berlin.de (Math Department)
  26877. Nntp-Posting-Host: drunivac.drew.edu
  26878. Organization: Drew University Academic Computing
  26879. References: <CxB9pz.2op@ritz.mordor.com>
  26880. Date: Sat, 8 Oct 1994 00:54:43 GMT
  26881. Lines: 16
  26882. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  26883.  
  26884. In article <CxB9pz.2op@ritz.mordor.com>, kudut@ritz.mordor.com (Ken Udut) writes:
  26885. > Sometimes I wish I had a mailing list program on my sysadmin's host.
  26886. > I would dearly *love* to start a mailing list for people who absolutely 
  26887. > ADORE Kermit!  That's the biggest problem with newsgroups.  Complainers 
  26888. > pop in, pop out, without a hint of responsibility for what they say.
  26889. > KERMIT-LVRS :->  Quite tempting, in fact!  Too much negativity around 
  26890. > sometimes - it's great to get away from it when I can :-)
  26891.  
  26892. Yeah, and you'd have to put up with lots of people joining, thinking it's
  26893. a Muppets fan list.
  26894.  
  26895. Terrif :)
  26896.  
  26897. From news@columbia.edu Fri Oct  7 12:34:27 1994
  26898. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22656
  26899.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 7 Oct 1994 21:13:08 -0400
  26900. Received: by apakabar.cc.columbia.edu id AA15257
  26901.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 7 Oct 1994 21:13:07 -0400
  26902. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  26903. From: jrd@cc.usu.edu (Joe Doupnik)
  26904. Newsgroups: comp.protocols.kermit.misc
  26905. Subject: Re: Columbia University's Kermit copyright
  26906. Message-Id: <1994Oct7.183428.29152@cc.usu.edu>
  26907. Date: 7 Oct 94 18:34:27 MDT
  26908. References: <36h490$9hc@apakabar.cc.columbia.edu> <36pbtj$cc0@usenety1.news.prodigy.com> <Cx8nwJ.E3I@adasoft.ch> <37489a$30f@zippo.uwasa.fi>
  26909. Organization: Utah State University
  26910. Lines: 49
  26911. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  26912.  
  26913. In article <37489a$30f@zippo.uwasa.fi>, ts@uwasa.fi (Timo Salmi) writes:
  26914. > In article <Cx8nwJ.E3I@adasoft.ch> jw@adasoft.ch (Jamie Watson) writes:
  26915. > :the resources even further.  My impression of the people who are involved
  26916. > :in the CD-ROM distribution is that they are being totally unreasonable;
  26917. > :the statement "I don't have the time or interest to arrange my archive
  26918. > :and/or CD-ROM distribution to include kermit on one but not the other"
  26919. > :is completely bogus, in my opinion.  My impression of the rest of those
  26920. > Since you seem to know so well please advice how does one set up a
  26921. > publicly accessible FTP sub-directory that will not be automatically
  26922. > mirrored, and how do you negotiate all the complicated arrangements
  26923. > with the CDROM producers.  Please also advice where do I find the
  26924. > additional time an motivation needed for something which I do much
  26925. > of my spare time. 
  26926.     I think part of this came out wrong. It's not mirroring per se
  26927. which we are discussing, but rather what's sold to the CDROM vendors
  26928. for pressing. I understand mirroring issues since I run a fair sized
  26929. one myself (official Novell mirror) and I too have to pick and choose
  26930. which subdirectories are to be exposed and which not.
  26931.     From my own experience in the ftp business I have classes of
  26932. directories where items are treated differently (got to, my legal
  26933. agreement requires it). It's not that big of a deal. I also vet each 
  26934. third party file arriving at my place, virus scan it, read the docs, 
  26935. verify that the file can be reposted, and so on. I reject not a few,
  26936. but not based on extent if any or eloquence of English prose. Timo has 
  26937. much more than I do, but I still have a bunch to deal with. Btw, both
  26938. Timo and I earn our living holding real jobs as Prof types, not by
  26939. running archive sites.
  26940.     I think we have been suggesting that some programs live in
  26941. a directory area which is not melted into plastic. That can be done
  26942. by either adding a new branch on your ftp server tree (and I understand
  26943. what that means) and/or clipping out selected subdirectories during
  26944. the disk to tape making process for the CDROM vendor. How easy that
  26945. is depends on the operating system, etc, but I can't seeing it being
  26946. a major undertaking. Locating the files which need to be moved is
  26947. another matter, but that's part of the business.
  26948.      This rather repeats the obvious so I won't elaborate further.
  26949. And please don't read this as directions on how to run an ftp site;
  26950. it's just my own experience being related.
  26951.  
  26952. > Develop a product and its support of your own, and you'll see the
  26953. > Columbia's side of things. 
  26954.     Yes. 
  26955. > Maintain a well-organized and responsible FTP site and you'll see
  26956. > SimTel's and Garbo's side of things. 
  26957.     Ditto. It's not easy being a major ftp site. But to be one
  26958. there are these admin details with which we are stuck. 
  26959.  
  26960.     Joe D.
  26961.  
  26962. From news@columbia.edu Fri Oct  7 22:27:32 1994
  26963. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25408
  26964.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 7 Oct 1994 22:10:54 -0400
  26965. Received: by apakabar.cc.columbia.edu id AA18887
  26966.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 7 Oct 1994 22:10:52 -0400
  26967. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news.sprintlink.net!deathstar.cris.com!news1.oakland.edu!vtc.tacom.army.mil!ulowell!simtel.coast.net!w8sdz
  26968. From: w8sdz@SimTel.Coast.NET (Keith Petersen)
  26969. Newsgroups: comp.protocols.kermit.misc
  26970. Subject: Re: FTP Mirrors and CDROMs - again
  26971. Message-Id: <9410072227.AA19072@SimTel.Coast.NET>
  26972. Date: Fri, 7 Oct 1994 22:27:32 GMT
  26973. Organization: SimTel, the Coast to Coast Software Repository (tm)
  26974. References: <milam.166.000ACD06@fmsrlu.srl.ford.com> <9410041547.AA29857@SimTel.Coast.NET> <CxAys5.Gqn@adasoft.ch>
  26975. Lines: 55
  26976. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  26977.  
  26978. jw@adasoft.ch (Jamie Watson) writes:
  26979. >Perhaps I have not been reading the postings in this "discussion" closely
  26980. >enough.  But I certainly don't recall this having been mentioned before;
  26981. >in fact, what I recall was that you announced that kermit had been removed
  26982. >from SimTel without explaining why, simply saying "contact fdc for an
  26983.              ^^^^^^^^^^^^^^^^^^^^^^
  26984. >explanation".  The very strong implication in that posting, and all of the
  26985. >ensuing "discussion", was that it was the dastardly policies of Columbia
  26986. >that had caused it to be removed.  When all else fails, obfuscate.
  26987.  
  26988. You haven't been reading the postings in this discussion closely enough.
  26989. You are wrong when you say I did not explain why.  I DID, and yes it WAS
  26990. because of the restrictive distribution policy of Columbia that MS-Kermit
  26991. was removed.
  26992.  
  26993. Here is the original announcement:
  26994.  
  26995. > Date: Tue, 27 Sep 1994 01:02:46 EDT
  26996. > From: w8sdz@SimTel.Coast.NET (Keith Petersen)
  26997. > Subject: Columbia University MS-Kermit files removed from SimTel
  26998. > According to e-mail I received this evening it appears that Columbia
  26999. > University now feels that SimTel should no longer distribute MS-Kermit.
  27000. > SimTel's policy is:
  27001. >   Programs submitted to the SimTel collection may appear on CD-ROMs
  27002. >   offered by several vendors.  If the program submitted should not
  27003. >   be distributed this way, or has restrictions on such distribution,
  27004. >   it will not be accepted.
  27005. > Quoting the copyright included with MS-Kermit:
  27006. >   Copyright (C) 1985, 1993, Trustees of Columbia University in the City
  27007. >   of New York.  The MS-DOS Kermit software may be reproduced and shared
  27008. >   without restriction as long as this copyright notice is retained,
  27009. >   except that it may not be licensed or sold for profit as a software
  27010. >   product itself, and it may not be included in or distributed with
  27011. >   commercial products or otherwise distributed by commercial concerns to
  27012. >   their clients or customers without written permission of the Office of
  27013. >   Kermit Development and Distribution, Columbia University.
  27014. > Because of this restrictive distribution policy all MS-Kermit programs
  27015. > and other associated files bearing the Columbia University copyright
  27016. > have been removed from SimTel, the Coast to Coast Software Repository (tm).
  27017. > Questions and comments should be sent to Columbia, *not* to SimTel.
  27018. > The e-mail address is:  fdc@watsun.cc.columbia.edu (Frank da Cruz)
  27019.  
  27020. Keith
  27021. --
  27022. Keith Petersen
  27023. General Manager of SimTel, the Coast to Coast Software Repository (tm)
  27024. Internet: w8sdz@SimTel.Coast.NET    or      w8sdz@Vela.ACS.Oakland.Edu
  27025. Uucp: uunet!umich!vela!w8sdz                     BITNET: w8sdz@OAKLAND
  27026.  
  27027. From news@columbia.edu Fri Oct  7 08:07:10 1994
  27028. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04367
  27029.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 8 Oct 1994 01:30:53 -0400
  27030. Received: by apakabar.cc.columbia.edu id AA00228
  27031.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 8 Oct 1994 01:30:51 -0400
  27032. Newsgroups: comp.protocols.kermit.misc
  27033. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!MathWorks.Com!uhog.mit.edu!sgiblab!pacbell.com!amdahl!netcomsv!ix.netcom.com!netcom.com!jhurwit
  27034. From: jhurwit@netcom.com (Jeffrey Hurwit)
  27035. Subject: Re: File sizes and Kermit
  27036. Message-Id: <jhurwitCxAMJy.K3G@netcom.com>
  27037. Organization: Organization?  What organization?
  27038. X-Newsreader: TIN [version 1.2 PL1]
  27039. References: <36uqd8$7in@linux.cpsc.ucalgary.ca> <36v463$48j@apakabar.cc.columbia.edu>
  27040. Date: Fri, 7 Oct 1994 08:07:10 GMT
  27041. Lines: 34
  27042. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  27043.  
  27044. In article <36v463$48j@apakabar.cc.columbia.edu>, 
  27045. Frank da Cruz (fdc@fdc.cc.columbia.edu) wrote:
  27046.  
  27047. >In article <36uqd8$7in@linux.cpsc.ucalgary.ca> zydyk@cpsc.ucalgary.ca  
  27048. >(Mariusz Zydyk) writes:
  27049. >> ------- I just started using Kermit [5A(189)] and I noticed that
  27050. >> when transferring files the file size on my PC at home is very
  27051. >> different from the original. It is always larger [72K file comes
  27052. >> out as 78K], but I haven't been able to see any differences between
  27053. >> the two. It is not a big deal at the moment, but shortly [today] I
  27054. >> will need to transfer some ZIP files and I'd like the size to
  27055. >> be preserved for obvious reasons. Why does Kermit do this and is
  27056. >> there a way around it?
  27057. >>
  27058. >Tell the Kermit program that is sending the file to "set file type
  27059. >binary".  The differences between text and binary mode transfer are
  27060. >explained in the documentation, and have also been discussed on this
  27061. >newsgroup.
  27062.  
  27063.     True enough, but in brief:  In text files, Unix uses line feed (LF)
  27064.     characters to end lines, DOS uses carriage return (CR) and LF. When
  27065.     in text mode (set file type text), Kermit translates from Unix (LF)
  27066.     to DOS (CR/LF), which means that for each new line, your DOS file
  27067.     will be one character larger than your Unix file.
  27068.  
  27069.     If you use text mode to transfer binary files from Unix to your PC,
  27070.     a CR will be added before every LF in the file, and you'll have a
  27071.     corrupted file on your PC.  Set file type binary stops Kermit from
  27072.     making these changes; the received file on your PC will be the same
  27073.     size as the one on your Unix account.  You can quickly check the
  27074.     integrity of your downloaded zipfile by escaping back to the
  27075.     MS-Kermit> prompt and doing 'run pkunzip -t zipfile'.
  27076.  
  27077.                         Jeff
  27078.  
  27079. From news@columbia.edu Sun Oct  8 06:04:55 1994
  27080. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05362
  27081.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 8 Oct 1994 02:03:08 -0400
  27082. Received: by apakabar.cc.columbia.edu id AA01348
  27083.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 8 Oct 1994 02:03:07 -0400
  27084. Path: news.columbia.edu!panix!MathWorks.Com!uhog.mit.edu!sgiblab!cs.uoregon.edu!usenet.ee.pdx.edu!not-for-mail
  27085. From: rkwee@ee.pdx.edu (Roland Kwee)
  27086. Newsgroups: comp.protocols.kermit.misc
  27087. Subject: Re: Funding Kermit
  27088. Date: 7 Oct 1994 23:04:55 -0700
  27089. Lines: 83
  27090. Message-Id: <375cq7$nd@cruella.ee.pdx.edu>
  27091. References: <3714tt$7hu@apakabar.cc.columbia.edu> <371dfr$qf7@Mercury.mcs.com>
  27092. Nntp-Posting-Host: cruella.ee.pdx.edu
  27093. X-Newsreader: NN version 6.4.19 #2
  27094. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  27095.  
  27096. les@MCS.COM (Leslie Mikesell) writes:
  27097.  
  27098. >There are some very messy issues here. Is calling kermit "free" a
  27099. >misrepresentation?  Is a distribution service acting as an agent for
  27100. >the recipient ... Why does it make a difference if this agent makes
  27101. >a profit or not? ... I've often wondered why no one
  27102. >has bundled an off-line email package along with scripted kermit
  27103. >communications as an obvious low-budget talk-to-any-host solution.
  27104. >Now I see that it couldn't be distributed through any media usable
  27105. >by the people who need such a thing...
  27106.  
  27107. Les has an important point here. It is part of ''the legal issue''.
  27108. Because Kermit is not completely free, most modems are packaged, not
  27109. with Kermit, but with an invariably crude program instead. Such programs
  27110. are obviously made on the cheap, because they are just an add-on to the
  27111. modem. Most are using zmodem, perhaps that's easier to program from
  27112. scratch, or the source is public domain, or it is easier to license (I don't
  27113. know). I strongly believe that this is a factor to the BBS systems
  27114. preferring zmodem over Kermit protocol.
  27115.  
  27116. If Kermit were truly free, it would be bundled with many more modems than
  27117. today. It would save the modem vendors the cost of developing their own
  27118. version. Kermit would be more popular with the mainstream BBS users.
  27119. BBS's would install better Kermit versions, using the original source
  27120. code, yielding in fewer bugs.
  27121.  
  27122. I did hear Frank say something like Kermit is not for the masses. I don't
  27123. agree (meaning I still respect the opinion of others). I think it is a
  27124. waste of resources to reinvent the wheel, like modem vendors have to do
  27125. today. Kermit with some appropriate scripts (like the current dial scripts!)
  27126. is very easy to use. If most BBS communications are easy enough that they
  27127. can be handled with telix/procomm etc, i.e., 8 bits, short delays,
  27128. hardware handshaking, etc, then one script would fit all those situations.
  27129.  
  27130. Only if Kermit is truly free, without tricky restrictions based on such
  27131. criteria as ''for profit'' (in my opinion a very ambiguous criterion),
  27132. it can have it's maximum effect. That is easing communication between
  27133. as many computers as possible, and eliminating reinvention of Kermit.
  27134.  
  27135. The economic aspects must be resolved, of course.
  27136. 1) Nobody will be able to make exorbitant profits of Kermit, because it
  27137. is free. Competitors will prevent this through the market mechanism. 
  27138. 2) If Columbia gets swamped by support questions and has no resources to
  27139. handle those, Columbia should stop answering some users. Columbia has no
  27140. obligation to provide support. It should only support those it has an
  27141. interest in, and so many as it can affort (at the most).
  27142. 3) If Columbia has to refuse helping some users, it could refer them to
  27143. this list or to other volunteers. I happen to have no plans to contribute
  27144. any code to the Kermit project, but may be able to provide some user
  27145. support as an alternative contribution. Others may choose to donate some
  27146. money. This way, more people than just those genius hackers can
  27147. contribute to this wonderful Kermit project (no exageration, I mean it).
  27148. 4) If, as Frank fears, indeed huge numbers of users will beleage the Kermit
  27149. team with questions, I foresee businesses opening up to address that market.
  27150. Contrary to Franks opinion, I find this desirable. It will stimulate the
  27151. economy. Provide employment. The public gets the benefit of using a
  27152. REAL protocol/terminal emulator, instead of those makeshift products
  27153. currently bundled with most modems.
  27154. 5) Properly organized, voluntary donations (without legal-sounding
  27155. requirements as with shareware) can generate considerable funds. That's
  27156. how public radio/television does it. GNU. LPF. The Red Cross. The TeX
  27157. user group. (Is there a Kermit user group???)
  27158.  
  27159. With this posting I hoped to add a few new ideas (and to reiterate not
  27160. too many old ones). In no way I mean to say that Columbia SHOULD do
  27161. anything, only that it COULD consider this. Other people will have even
  27162. better ideas to solve the REAL problem, which is not distributing
  27163. Kermit on CDs to the masses, but to decide WHICH activities to fund in
  27164. WHAT way.
  27165.  
  27166. My own hope is that sometime C-Kermit will evolve to an even more
  27167. modular package allowing a greater amount of code reuse. I have ideas
  27168. for a program that combines fax, voice mail, terminal emulation,
  27169. callerid logging, in short: all thinkable phone functions. Wouldn't it
  27170. be nice if I could reuse large parts of Kermit, instead of having
  27171. to rewrite lots of low-level COM port code? With a well-organized and
  27172. well-funded Kermit project, the hopes of this are much higher.
  27173. POPULAR KERMIT---CODE REUSE---BETTER WORLD
  27174.  
  27175. Thanks for reading all this,
  27176.  
  27177. Roland Kwee
  27178.  
  27179.  
  27180. From news@columbia.edu Fri Oct  7 20:21:41 1994
  27181. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08153
  27182.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 8 Oct 1994 03:33:53 -0400
  27183. Received: by apakabar.cc.columbia.edu id AA04249
  27184.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 8 Oct 1994 03:33:51 -0400
  27185. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!pipex!uunet!newsflash.concordia.ca!canopus.cc.umanitoba.ca!rahardj
  27186. From: rahardj@cc.umanitoba.ca (Budi Rahardjo)
  27187. Newsgroups: comp.protocols.kermit.misc
  27188. Subject: Re: Kermit-lovers unite!
  27189. Date: 7 Oct 1994 20:21:41 GMT
  27190. Organization: The University of Manitoba
  27191. Lines: 15
  27192. Message-Id: <374akl$cdo@canopus.cc.umanitoba.ca>
  27193. References: <CxB9pz.2op@ritz.mordor.com>
  27194. Nntp-Posting-Host: antares.cc.umanitoba.ca
  27195. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  27196.  
  27197. In <CxB9pz.2op@ritz.mordor.com> kudut@ritz.mordor.com (Ken Udut) writes:
  27198.  
  27199. :I would dearly *love* to start a mailing list for people who absolutely 
  27200. :ADORE Kermit! 
  27201.  
  27202. Why don't you propose the creation of comp.protocols.kermit.advocacy ?
  27203. I would vote yes...  It is a bit difficult, though. Since many people 
  27204. have been brainwashed by the zmodem-cult :-)
  27205. Maybe under the alt hierarchy is easier to create the newsgroup.
  27206.  
  27207. -- budi
  27208. -- 
  27209. Budi Rahardjo <Budi_Rahardjo@UManitoba.Ca>
  27210. #include <std-disclaimer.h>
  27211. Unix Support - Computer Services - University of Manitoba
  27212.  
  27213. From news@columbia.edu Fri Oct  7 19:10:24 1994
  27214. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14353
  27215.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 8 Oct 1994 06:43:59 -0400
  27216. Received: by apakabar.cc.columbia.edu id AA10138
  27217.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 8 Oct 1994 06:43:58 -0400
  27218. Newsgroups: comp.protocols.kermit.misc
  27219. Path: news.columbia.edu!sol.ctr.columbia.edu!math.ohio-state.edu!cs.utexas.edu!convex!news.duke.edu!MathWorks.Com!europa.eng.gtefsd.com!library.ucla.edu!ihnp4.ucsd.edu!pacbell.com!amdahl!netcomsv!ix.netcom.com!netcom.com!kientzle
  27220. From: kientzle@netcom.com
  27221. Subject: Re: Crash recovery ?
  27222. Message-Id: <kientzleCxBH9D.5wC@netcom.com>
  27223. Organization: NETCOM On-line Communication Services (408 261-4700 guest)
  27224. References: <36ua84$b7p@canopus.cc.umanitoba.ca> <36ue90$k4c@apakabar.cc.columbia.edu>
  27225. Date: Fri, 7 Oct 1994 19:10:24 GMT
  27226. Lines: 19
  27227. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  27228.  
  27229. In article <36ue90$k4c@apakabar.cc.columbia.edu>,
  27230. Frank da Cruz <fdc@fdc.cc.columbia.edu> wrote:
  27231. >In article <36ua84$b7p@canopus.cc.umanitoba.ca> rahardj@cc.umanitoba.ca (Budi  
  27232. >Rahardjo) writes:
  27233. >> Is there a plan to add crash recovery mechanism in kermit protocol?
  27234. >> This is the most important factor for me to use zmodem.
  27235. >> 
  27236. >Not only is there a plan, it's done.  Crash recovery will be in C-Kermit
  27237. >5A(190) and MS-DOS Kermit 3.14, and perhaps also in some other popular
  27238. >Kermit implementations soon thereafter.  Watch comp.protocols.kermit.announce
  27239. >for announcements.
  27240. >
  27241. >- Frank
  27242.  
  27243.     Where is this protocol addition documented?  (Those of us writing
  27244. our own Kermit implementations from scratch would also like to take advantage
  27245. of this.)
  27246.               - Tim Kientzle
  27247.  
  27248.  
  27249. From news@columbia.edu Fri Oct  7 19:34:54 1994
  27250. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15786
  27251.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 8 Oct 1994 07:32:27 -0400
  27252. Received: by apakabar.cc.columbia.edu id AA11972
  27253.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 8 Oct 1994 07:32:26 -0400
  27254. Newsgroups: comp.protocols.kermit.misc
  27255. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!agate!ihnp4.ucsd.edu!pacbell.com!amdahl!netcomsv!ix.netcom.com!netcom.com!kientzle
  27256. From: kientzle@netcom.com
  27257. Subject: Re: What's the secret (to fast file transfer)?
  27258. Message-Id: <kientzleCxBIE6.8nq@netcom.com>
  27259. Organization: NETCOM On-line Communication Services (408 261-4700 guest)
  27260. References: <CxA8wq.30v@metronet.com>
  27261. Date: Fri, 7 Oct 1994 19:34:54 GMT
  27262. Lines: 43
  27263. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  27264.  
  27265. In article <CxA8wq.30v@metronet.com> jhuber@metronet.com (Joseph Huber)  
  27266. writes:
  27267. > For some reason, I can't get more than 1250cps with compressed files
  27268. > using kermit; however, running an external zmodem protocol from within
  27269. > kermit, I can get 1600cps.  I'm using 5A(189) for OS/2 on one end and
  27270.    Here's a quick comparison that may help nail down the difference.
  27271. Try enabling `escape control characters' in your ZModem transfer and
  27272. compare the speed there.  If that slows down ZModem to match your
  27273. Kermit speed, then the difference is that Kermit escapes all control
  27274. characters, while ZModem's default is more optimistic.
  27275.    Basically, Kermit's default is conservative, and ZModem's defaults
  27276. are optimistic.  Thus, Kermit's defaults allow it to work in
  27277. situations that ZModem won't, but make it slower under nice
  27278. conditions.  Properly configured, the two are pretty much equivalent,
  27279. speedwise.
  27280.    For comparison, the common ZModem default settings correspond
  27281. roughly to the following Kermit settings:
  27282.  
  27283.      block check: 3  (a)
  27284.      packet size: 1024
  27285.      window size: large (b) (c)
  27286.      control characters escaped: 1, 16, 17, 19 (d)
  27287.  
  27288. Notes:
  27289.   a) ZModem actually uses a 32-bit CRC instead of Kermit's 16-bit CRC.
  27290. For a variety of reasons, they're roughly equivalent.  (ZModem needs a
  27291. more robust CRC because it lacks other error checks that Kermit does
  27292. use.)
  27293.   b) Some ZModem implementations use the file on disk as a buffer,
  27294. which allows the window to be as large as the file.
  27295.   c) ZModem typically collapses to a 1-packet window after each error,
  27296. then goes back to a large window after the error is corrected.  Kermit
  27297. doesn't usually need to do this because of it's more sophisticated
  27298. windowing strategy.  (Thus, Kermit is often faster than ZModem when
  27299. errors do occur.)
  27300.   d) Actually, ZModem escapes 24 instead of 1, but the reason for that
  27301. doesn't apply to Kermit, so Kermit doesn't need 24, but typically does
  27302. need 1.
  27303.                 - Tim Kientzle
  27304.  
  27305.  
  27306.  
  27307.  
  27308. From news@columbia.edu Sat Oct  8 14:40:29 1994
  27309. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21562
  27310.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 8 Oct 1994 10:43:03 -0400
  27311. Received: by apakabar.cc.columbia.edu id AA01862
  27312.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 8 Oct 1994 10:43:01 -0400
  27313. Newsgroups: comp.protocols.kermit.misc
  27314. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!pipex!uunet!heifetz.msen.com!zib-berlin.de!math.fu-berlin.de!drunivac.drew.edu!pcoen
  27315. From: pcoen@drunivac.drew.edu (Paul R. Coen)
  27316. Subject: Re: Ring-bound Kermit Manuals
  27317. Message-Id: <1994Oct8.104029.1@drunivac.drew.edu>
  27318. Sender: news@math.fu-berlin.de (Math Department)
  27319. Nntp-Posting-Host: drunivac.drew.edu
  27320. Organization: Drew University Academic Computing
  27321. References: <370rss$cf7@canopus.cc.umanitoba.ca> <Cx9A7D.23I@ritz.mordor.com> <372cbb$p7l@mcrware.microware.com> <CxB32w.L21@ritz.mordor.com>
  27322. Date: Sat, 8 Oct 1994 14:40:29 GMT
  27323. Lines: 25
  27324. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  27325.  
  27326. In article <CxB32w.L21@ritz.mordor.com>, kudut@ritz.mordor.com (Ken Udut) writes:
  27327. > Whaddaya think about offering a ringbound version of the Kermit manuals 
  27328. > (MS-Kermit and C-Kermit - don't know much about the manuals for CPM and 
  27329. > such) for $10 more each?  
  27330. > Maybe for the *next* MS-Kermit and C-Kermit book, perhaps, if not this one.
  27331. > I'd be willing to pay $60 for the ringbound edition, if the paperbound 
  27332. > edition that I'm ordering is as good as I expect and have heard!  :-)
  27333. > Or, if ringbound is prohibitively expensive, how about looseleaf, and 
  27334. > print a nice binder?  *Then* you could offer updates to the manual, when 
  27335. > new revisions come out, and before the next Kermit book was written!
  27336.  
  27337.  
  27338. A paperback with a lay-flat binding, like O'Reilly & Associates use, IBM
  27339. uses for the OS/2 manual, and Digital now uses for OSF/1 and OpenVMS docs
  27340. seems to be the new thing.
  27341.  
  27342. It works as well as a standard three-ring binder, unless you're on the first
  27343. few pages (usually junk) or last few pages (who needs it flat when looking
  27344. through an index?)
  27345.  
  27346. From news@columbia.edu Sat Oct  8 18:29:35 1994
  27347. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29959
  27348.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 8 Oct 1994 14:31:53 -0400
  27349. Received: by apakabar.cc.columbia.edu id AA14396
  27350.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 8 Oct 1994 14:31:52 -0400
  27351. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!utnut!torn!news.ccs.queensu.ca!news
  27352. From: mike@ccs-sparc2post.QueensU.CA (Mike Smith)
  27353. Newsgroups: comp.protocols.kermit.misc
  27354. Subject: Re: Columbia University's Kermit copyright
  27355. Date: 8 Oct 1994 18:29:35 GMT
  27356. Organization: Queen's University, Kingston
  27357. Lines: 31
  27358. Sender: mike%ccs-sparc2@apakabar.cc.columbia.edu (Mike Smith)
  27359. Distribution: world
  27360. Message-Id: <376oef$dvv@knot.queensu.ca>
  27361. References: <36h490$9hc@apakabar.cc.columbia.edu> <36pbtj$cc0@usenety1.news.prodigy.com> <Cx8nwJ.E3I@adasoft.ch> <37489a$30f@zippo.uwasa.fi>
  27362. Nntp-Posting-Host: ccs-sparc2.ccs
  27363. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  27364.  
  27365. In article <37489a$30f@zippo.uwasa.fi>, ts@uwasa.fi (Timo Salmi) writes:
  27366.  
  27367. |> 
  27368. |> ... please advice how does one set up a
  27369. |> publicly accessible FTP sub-directory that will not be automatically
  27370. |> mirrored, and how do you negotiate all the complicated arrangements
  27371. |> with the CDROM producers.  Please also advice where do I find the
  27372. |> additional time an motivation needed for something which I do much
  27373. |> of my spare time. 
  27374. |> 
  27375.  
  27376. 1. I don't see how mirroring is a problem.  It is completely ok to have
  27377.    Kermit on an ftp site.
  27378. 2. When you first mentioned you had neither the time nor motivation to
  27379.    treat Kermit as a special case I wondered, but did not ask, "Could
  27380.    Kermit's special status be accomplished by setting group permissions?"
  27381.  
  27382. I admit that I am completely ignorant of garbo, I do not even know if it
  27383. is on a Unix host.  And I agree that you have every right not to spend
  27384. your time coming up with a special approach to include Kermit on your
  27385. ftp site and not on your CD-ROM distribution. But I wonder if there might
  27386. not be a simple solution to the problem if you were willing to look for it.
  27387. The answer that you've got better ways to spend your time is valid.  Mind you,
  27388. if it is as easy as setting group permissions then you can't really blame
  27389. people for saying that your position wrt Kermit is "completely bogus".   
  27390.  
  27391. -- 
  27392.  
  27393.  Mike Smith                                  mike@ccs.queensu.ca
  27394.  Queen's University                          Michael.D.Smith@QueensU.CA
  27395.  Computing and Communications Services       (613) 545-2024
  27396.  
  27397. From news@columbia.edu Sat Oct  8 19:21:54 1994
  27398. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02019
  27399.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 8 Oct 1994 15:22:00 -0400
  27400. Received: by apakabar.cc.columbia.edu id AA17141
  27401.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 8 Oct 1994 15:21:59 -0400
  27402. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!ddsw1!not-for-mail
  27403. From: les@MCS.COM (Leslie Mikesell)
  27404. Newsgroups: comp.protocols.kermit.misc
  27405. Subject: Re: Columbia University's Kermit copyright
  27406. Date: 8 Oct 1994 14:21:54 -0500
  27407. Organization: /usr/lib/news/organi[sz]ation
  27408. Lines: 43
  27409. Message-Id: <376rgi$8p4@Venus.mcs.com>
  27410. References: <1994Oct7.112908.29112@cc.usu.edu>
  27411. Nntp-Posting-Host: venus.mcs.com
  27412. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  27413.  
  27414. In article <1994Oct7.112908.29112@cc.usu.edu>,
  27415. Joe Doupnik <jrd@cc.usu.edu> wrote:
  27416. >    Speaking for myself here. Reviewing the past ten days of intense
  27417. >discussion on this list has left a very positive impression on me.
  27418.  
  27419. I'm glad to hear that.  I don't want anything I have said to be
  27420. taken as a criticism of the quality of the work that has gone into
  27421. kermit or the intentions of the people doing it.  But, times have
  27422. changed and perhaps the distribution policies have to adapt to
  27423. continue to serve the intent.  One thing that I think would help
  27424. would be to offer licensing for commercial use of either the full
  27425. program or parts of the code with an up-front pricing scheme less
  27426. than it would cost anyone to re-invent it.  This would have several
  27427. advantages besides generating some income.  There would be fewer
  27428. "bad" implementations around to reduce the support problems about
  27429. interoperation.  People who need hand-holding could be encouraged to
  27430. use one of the commercial products from companies prepared to provide
  27431. it.  Companies who want to hide a fully scripted communications module
  27432. inside a larger product would be able to use kermit (giving the end
  27433. user a book is kind of silly in this scenario).  And, you might even
  27434. get back some improvements to the code from commercial developers.
  27435.  
  27436. MS-kermit does some nifty network stuff in addition to the communication
  27437. protocol.  The same thing could be done in this area to make the code
  27438. reusable for both free and commercial products.  For example I put
  27439. together a version of GNUtar for DOS that speaks rsh/rexec to a unix host
  27440. using the WATTCP library.  I'd love to be able to do approximately
  27441. the same over netbios between two DOS machines or use ODI drivers without
  27442. a packet driver shim like kermit does.  However, it is pretty clear that
  27443. it is impossible to combine anything with the GNU and Columbia copyrights
  27444. in the same package, free or not (doing it with WATTCP is fuzzy enough).
  27445.  
  27446. Personally, even though I like free software and source availability, I
  27447. think that being available, supported and affordable is more important
  27448. than being free.  If it is impossible to keep up with the demands for
  27449. updates and support in a free product, maybe it is time to split the line
  27450. into free and commercial versions and let the user make the choice.  This
  27451. makes more sense to me than making people pay on the basis of whether or
  27452. not they have access to electronic distribution facilities or their intended
  27453. use of the product.
  27454.  
  27455. Les Mikesell
  27456.   les@mcs.com
  27457.  
  27458. From news@columbia.edu Sat Oct  8 19:47:31 1994
  27459. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02933
  27460.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 8 Oct 1994 15:47:38 -0400
  27461. Received: by apakabar.cc.columbia.edu id AA18587
  27462.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 8 Oct 1994 15:47:37 -0400
  27463. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!ddsw1!not-for-mail
  27464. From: les@MCS.COM (Leslie Mikesell)
  27465. Newsgroups: comp.protocols.kermit.misc
  27466. Subject: Re: GNU implementation of kermit :-)
  27467. Date: 8 Oct 1994 14:47:31 -0500
  27468. Organization: /usr/lib/news/organi[sz]ation
  27469. Lines: 28
  27470. Message-Id: <376t0j$ab4@Venus.mcs.com>
  27471. References: <36ou5m$5ou@canopus.cc.umanitoba.ca> <36phpb$i9b@apakabar.cc.columbia.edu> <Cx4t2n.s1@world.std.com> <CxAyBn.GoB@adasoft.ch>
  27472. Nntp-Posting-Host: venus.mcs.com
  27473. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  27474.  
  27475. In article <CxAyBn.GoB@adasoft.ch>, Jamie Watson <jw@adasoft.ch> wrote:
  27476. >>The GNU project doesn't
  27477. >>CARE how their software is distributed as long as it's done more or less freely
  27478. >
  27479. >Oh, really?  Are you sure about this?  I've seen several statements, from
  27480. >several different people in the FSF, saying "If you are going to buy the
  27481. >distribution on tape {or whatever}, please buy it from us and not from
  27482. >others, because the money from this is important funding for us".  Sounds
  27483. >like a very similar situation to me.
  27484.  
  27485. Not at all.  The GNU folks explicitly allow and encourage redistribution
  27486. of the original copy by any means, free or commercial.  They are simply
  27487. suggesting that if you are going to pay someone for your copy it might
  27488. as well be them.  
  27489.  
  27490. However I'm not all that fond of the GNU copyleft either once the code
  27491. reaches production quality and is useful to end users.  The GPL requires
  27492. that the source be distributed along with binaries with only a couple
  27493. of specific exceptions.  Dos/windows users seldom even have compilers
  27494. so it is kind of silly to require them to have source code.  With FTP
  27495. and CDROM distribution this isn't much of a problem, but with the
  27496. more common BBS and floppy disk distributions in the dos world it is
  27497. an extra burden.  I'm not against making the source available somewhere,
  27498. but I don't see much reason to require distribution to people who
  27499. don't want it (and yes, I understand the exceptions...).
  27500.  
  27501. Les Mikesell
  27502.   les@mcs.com
  27503.  
  27504. From news@columbia.edu Sat Oct  8 07:38:43 1994
  27505. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03869
  27506.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 8 Oct 1994 16:13:06 -0400
  27507. Received: by apakabar.cc.columbia.edu id AA19870
  27508.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 8 Oct 1994 16:13:05 -0400
  27509. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  27510. From: jrd@cc.usu.edu (Joe Doupnik)
  27511. Newsgroups: comp.protocols.kermit.misc
  27512. Subject: Re: Crash recovery ?
  27513. Message-Id: <1994Oct8.133843.29200@cc.usu.edu>
  27514. Date: 8 Oct 94 13:38:43 MDT
  27515. References: <36ua84$b7p@canopus.cc.umanitoba.ca> <36ue90$k4c@apakabar.cc.columbia.edu> <kientzleCxBH9D.5wC@netcom.com>
  27516. Organization: Utah State University
  27517. Lines: 29
  27518. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  27519.  
  27520. In article <kientzleCxBH9D.5wC@netcom.com>, kientzle@netcom.com writes:
  27521. > In article <36ue90$k4c@apakabar.cc.columbia.edu>,
  27522. > Frank da Cruz <fdc@fdc.cc.columbia.edu> wrote:
  27523. >>In article <36ua84$b7p@canopus.cc.umanitoba.ca> rahardj@cc.umanitoba.ca (Budi  
  27524. >>Rahardjo) writes:
  27525. >>> Is there a plan to add crash recovery mechanism in kermit protocol?
  27526. >>> This is the most important factor for me to use zmodem.
  27527. >>> 
  27528. >>Not only is there a plan, it's done.  Crash recovery will be in C-Kermit
  27529. >>5A(190) and MS-DOS Kermit 3.14, and perhaps also in some other popular
  27530. >>Kermit implementations soon thereafter.  Watch comp.protocols.kermit.announce
  27531. >>for announcements.
  27532. >>
  27533. >>- Frank
  27534. >     Where is this protocol addition documented?  (Those of us writing
  27535. > our own Kermit implementations from scratch would also like to take advantage
  27536. > of this.)
  27537. ---------
  27538.     Protocol extension docs usually end up in directory kermit/e on
  27539. kermit.columbia.edu. Since the crash recovery item has yet to be hammered
  27540. on in public (we have to get MSK 3.14 out) I think Frank is hanging back
  27541. on the matter until any gotcha's are resolved. That's just a guess on my
  27542. part. I'm sure he could ship you the current draft if you ask him.
  27543.     Before your program can take advantage of the feature the rest of 
  27544. the protocol needs to be implemented, particularly file attributes packets. 
  27545. If you have gotten that far then fine, else the preliminary work needs 
  27546. completion.
  27547.         Joe D.
  27548.  
  27549. From news@columbia.edu Fri Oct  7 21:45:47 1994
  27550. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05227
  27551.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 8 Oct 1994 16:48:51 -0400
  27552. Received: by apakabar.cc.columbia.edu id AA22044
  27553.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 8 Oct 1994 16:48:50 -0400
  27554. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!agate!news.Stanford.EDU!bloom-beacon.mit.edu!paperboy.osf.org!meissner
  27555. From: meissner@osf.org (Michael Meissner)
  27556. Newsgroups: comp.protocols.kermit.misc
  27557. Subject: Re: GNU implementation of kermit :-)
  27558. Date: 07 Oct 1994 21:45:47 GMT
  27559. Organization: Open Software Foundation
  27560. Lines: 70
  27561. Message-Id: <MEISSNER.94Oct7174547@pasta.osf.org>
  27562. References: <36ou5m$5ou@canopus.cc.umanitoba.ca> <36phpb$i9b@apakabar.cc.columbia.edu>
  27563.     <Cx4t2n.s1@world.std.com>
  27564. Nntp-Posting-Host: pasta.osf.org
  27565. In-Reply-To: jeffb@world.std.com's message of Tue, 4 Oct 1994 04:42:23 GMT
  27566. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  27567.  
  27568. In article <Cx4t2n.s1@world.std.com> jeffb@world.std.com (Jeffrey T Berntsen)
  27569. writes:
  27570.  
  27571. | More reasonable distribution.  NOT just Internet FTP.  The GNU project doesn't
  27572. | CARE how their software is distributed as long as it's done more or less freely
  27573. | (they don't seem to have any problems with CD-ROM's for instance), and source
  27574. | is made freely (they also don't seem to have any problems with reasonable
  27575. | handling and media charges) available.
  27576.  
  27577. Actually the same has come up in the GNU area too (though not as publically).
  27578. The following will be in the GCC 2.6.1 documentation (and presumably other GNU
  27579. software documentation as well).  Note the points about using distributers that
  27580. contribute money back to create new software.  When the flood of CD
  27581. distributions sprung up, the FSF's funding shrank, to the extent that they had
  27582. to lay off one or more people.
  27583.  
  27584. File: gcc.info,  Node: Funding,  Next: Look and Feel,  Prev: Contributors,  Up: Top
  27585.  
  27586. Funding Free Software
  27587. *********************
  27588.  
  27589.    If you want to have more free software a few years from now, it makes
  27590. sense for you to help encourage people to contribute funds for its
  27591. development.  The most effective approach known is to encourage
  27592. commercial redistributors to donate.
  27593.  
  27594.    Users of free software systems can boost the pace of development by
  27595. encouraging for-a-fee distributors to donate part of their selling price
  27596. to free software developers--the Free Software Foundation, and others.
  27597.  
  27598.    The way to convince distributors to do this is to demand it and
  27599. expect it from them.  So when you compare distributors, judge them
  27600. partly by how much they give to free software development.  Show
  27601. distributors they must compete to be the one who gives the most.
  27602.  
  27603.    To make this approach work, you must insist on numbers that you can
  27604. compare, such as, "We will donate ten dollars to the Frobnitz project
  27605. for each disk sold."  Don't be satisfied with a vague promise, such as
  27606. "A portion of the profits are donated," since it doesn't give a basis
  27607. for comparison.
  27608.  
  27609.    Even a precise fraction "of the profits from this disk" is not very
  27610. meaningful, since creative accounting and unrelated business decisions
  27611. can greatly alter what fraction of the sales price counts as profit.
  27612. If the price you pay is $50, ten percent of the profit is probably less
  27613. than a dollar; it might be a few cents, or nothing at all.
  27614.  
  27615.    Some redistributors do development work themselves.  This is useful
  27616. too; but to keep everyone honest, you need to inquire how much they do,
  27617. and what kind.  Some kinds of development make much more long-term
  27618. difference than others.  For example, maintaining a separate version of
  27619. a program contributes very little; maintaining the standard version of a
  27620. program for the whole community contributes much.  Easy new ports
  27621. contribute little, since someone else would surely do them; difficult
  27622. ports such as adding a new CPU to the GNU C compiler contribute more;
  27623. major new features or packages contribute the most.
  27624.  
  27625.    By establishing the idea that supporting further development is "the
  27626. proper thing to do" when distributing free software for a fee, we can
  27627. assure a steady flow of resources into making more free software.
  27628.  
  27629.      Copyright (C) 1994 Free Software Foundation, Inc.
  27630.      Verbatim copying and redistribution of this section is permitted
  27631.      without royalty; alteration is not permitted.
  27632.  
  27633. --
  27634. Michael Meissner    email: meissner@osf.org        phone: 617-621-8861
  27635. Open Software Foundation, 11 Cambridge Center, Cambridge, MA, 02142
  27636.  
  27637. Old hackers never die, their bugs just increase.
  27638.  
  27639. From news@columbia.edu Sat Oct  8 17:51:26 1994
  27640. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06563
  27641.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 8 Oct 1994 17:18:51 -0400
  27642. Received: by apakabar.cc.columbia.edu id AA24020
  27643.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 8 Oct 1994 17:18:50 -0400
  27644. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!swiss.ans.net!news.dfn.de!kfk.de!rz.uni-karlsruhe.de!darum.uni-mannheim.de!mips.ruessel.sub.org!not-for-mail
  27645. From: naddy@mips.ruessel.sub.org (Christian Weisgerber)
  27646. Newsgroups: comp.protocols.kermit.misc
  27647. Subject: Re: Kermit Documentation
  27648. Date: 8 Oct 1994 18:51:26 +0100
  27649. Lines: 15
  27650. Message-Id: <376m6u$ltn@mips.ruessel.sub.org>
  27651. References: <371trl$i1j@linux.cpsc.ucalgary.ca> <373epb$677@apakabar.cc.columbia.edu>
  27652. Reply-To: naddy@mips.lu.pfalz.de
  27653. Nntp-Posting-Host: mips.ruessel.sub.org
  27654. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  27655.  
  27656. With all the recent talk and flaming about distribution policies and
  27657. funding...
  27658.  
  27659. >     Frank da Cruz and Christine M. Gianone, "Using C-Kermit", Digital
  27660. >     Press / Butterworth-Heinemann, Woburn, MA, 1993, 514 pages, ISBN
  27661. >     1-55558-108-0.  In computer and book stores, or order direct from
  27662. >     Columbia University or from Digital Press.
  27663.  
  27664. How much does Columbia University actually get of the DEM 101.80 (~$63)
  27665. I paid for my copy?
  27666.  
  27667. -- 
  27668. Christian 'naddy' Weisgerber, Germany
  27669. naddy@mips.ruessel.sub.org / naddy@mips.lu.pfalz.de
  27670.    "I am Lefty of Borg.  Prepare to be assim... OOH! PIZZA!"  --Lefty
  27671.  
  27672. From news@columbia.edu Sat Oct  8 21:10:24 1994
  27673. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06640
  27674.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 8 Oct 1994 17:20:47 -0400
  27675. Received: by apakabar.cc.columbia.edu id AA24263
  27676.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 8 Oct 1994 17:20:46 -0400
  27677. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!pipex!sunic!news.funet.fi!zippo.uwasa.fi!uwasa.fi!ts
  27678. From: ts@uwasa.fi (Timo Salmi)
  27679. Newsgroups: comp.protocols.kermit.misc
  27680. Subject: Re: Kermit distribution
  27681. Date: 8 Oct 1994 21:10:24 GMT
  27682. Organization: University of Vaasa
  27683. Lines: 84
  27684. Distribution: world
  27685. Message-Id: <3771s0$j7h@zippo.uwasa.fi>
  27686. Nntp-Posting-Host: uwasa.fi
  27687. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  27688.  
  27689. This is what we have now come to.  I must have expressed myself very
  27690. thoughlessly on the Usenet news in comp.protocols.kermit.misc.  My
  27691. apologies for that.  However, I want set one thing straight publicly
  27692. in the open when I start getting this kind of feedback.  There is
  27693. not one single cent that I have ever earned from Garbo's operations. 
  27694.  
  27695.    All the best, Timo
  27696.  
  27697. :-Date: Sat, 8 Oct 1994 20:02:08 +0100
  27698. :-From: jw@adasoft.ch (Jamie Watson)
  27699. :-To: ts@uwasa.fi
  27700. :-Subject: Re: Kermit distribution
  27701. :
  27702. :> Jamie,
  27703. :
  27704. :Have we met before?  Do I know you from somewhere?  I think not, and in
  27705. :polite society one does not presume to address another by first name
  27706. :without being invited to do so.
  27707. :
  27708. :> so far this has been a genuine discsussion.
  27709. :
  27710. :There has been very little that has been "genuine" about the discussion.
  27711. :You, and some others, want to try to profit by selling the work of others.
  27712. :Some software authors are willing to allow you to do that.  Fine.  But
  27713. :when one stands up and says "No", you throw a temper tantrum and remove
  27714. :the software from your on-line distribution.  You constantly trumpet the
  27715. :fact that you are "providing a valuable service", but you can't be bothered
  27716. :to make a truly trivial effort to respect the wishes of an author and
  27717. :provide a significant piece of software under the conditions that author
  27718. :requires.  Arranging for kermit to be excluded from a CD would be absolutely
  27719. :trivial, but you simply aren't willing to make the slightest effort.  Fine,
  27720. :but don't then refer to what is going on as a "genuine" discussion, and
  27721. :don't bother announcing to the world what a wonderful, altruistic person
  27722. :you are to work so hard for the public good in providing this service.
  27723. :
  27724. :> You are most welcome to have your own views in this as much as you like.
  27725. :
  27726. :How very generous of you.
  27727. :
  27728. :> But no purpose is served by your "" insinuations.
  27729. :
  27730. :Yes, I would hope that they serve the purpose of enlightening a some
  27731. :people to the true nature of the "discussion" you and a few others are
  27732. :conducting.
  27733. :
  27734. :> It has been a difficult issue.  Starting a fight with such sniping is
  27735. :> not going to make it any easier.
  27736. :
  27737. :Starting this entire situation with your tantrums about not being allowed
  27738. :to sell someone else's hard work is what really made things difficult.
  27739. :Suppose that you, and everyone else, were allowed to include kermit on
  27740. :your CDs; then Frank turned out to be right, the burden on the Kermit
  27741. :group became too large, and they finally had to shut down.  Who would
  27742. :have profited from this?  You, and the others selling the software.
  27743. :Who would have lost?  Frank, and the others who work on kermit, and
  27744. :all the people who want to see it continue.  I believe very strongly
  27745. :that Frank *is* right, but even more important, I believe that it is
  27746. :absolutely not worth running this risk just so that you can make some
  27747. :money.
  27748. :
  27749. :Lest you think that I am "all talk" in this area, I would point out that
  27750. :I have been offering *free* distribution of the X Window System software,
  27751. :on several different magnetic tape formats, to anyone, anywhere in Europe,
  27752. :since Version 11 Release 1.  What *I* mean by free is *really* free, too.
  27753. :No charge.  No payment.  The only requirement is that I get back the same
  27754. :number of tapes that I send out, and even at that I lose about 10% of the
  27755. :tapes every release.  The mailing costs have been paid partially by my
  27756. :employers, and partially out of my own pocket.  The time and work to make
  27757. :the tapes, prepare the mailing labels, customs labels and such have all
  27758. :been donated by myself and my wife.  I have averages something over 150
  27759. :tapes per release, so I have sent over 600 tapes so far, and I am still
  27760. :making the same offer for R6.  So please, don't tell me what a wonderful
  27761. :saint you are because you are willing to get CDs make for $5 each and
  27762. :then sell them for $20 each.
  27763. :
  27764. :If you want to provide a service, then make an honest effort to do the
  27765. :best you can at it.  If it requires a little extra effort on your part
  27766. :to arrange things to comply with an authors requirements, then make
  27767. :the effort.  If you are not willing to do that, then at least have the
  27768. :decency not to interfere with, and significantly impede, the efforts
  27769. :of someone like Frank da Cruz, who is actually doing some work for the
  27770. :public good.
  27771. :
  27772. :jw
  27773.  
  27774. From news@columbia.edu Sat Oct  8 21:21:46 1994
  27775. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07071
  27776.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 8 Oct 1994 17:31:17 -0400
  27777. Received: by apakabar.cc.columbia.edu id AA24847
  27778.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 8 Oct 1994 17:31:15 -0400
  27779. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!pipex!sunic!news.funet.fi!zippo.uwasa.fi!uwasa.fi!ts
  27780. From: ts@uwasa.fi (Timo Salmi)
  27781. Newsgroups: comp.protocols.kermit.misc
  27782. Subject: cmsg cancel <3771s0$j7h@zippo.uwasa.fi>
  27783. Control: cancel <3771s0$j7h@zippo.uwasa.fi>
  27784. Date: 8 Oct 1994 21:21:46 GMT
  27785. Organization: University of Vaasa
  27786. Lines: 1
  27787. Distribution: world
  27788. Message-Id: <3772ha$j9f@zippo.uwasa.fi>
  27789. References: <3771s0$j7h@zippo.uwasa.fi>
  27790. Nntp-Posting-Host: uwasa.fi
  27791. Originator: ts@uwasa.fi
  27792. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  27793.  
  27794. <3771s0$j7h@zippo.uwasa.fi> was cancelled from within rn.
  27795.  
  27796. From news@columbia.edu Sat Oct  8 21:29:02 1994
  27797. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07072
  27798.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 8 Oct 1994 17:31:17 -0400
  27799. Received: by apakabar.cc.columbia.edu id AA24849
  27800.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 8 Oct 1994 17:31:15 -0400
  27801. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!pipex!sunic!news.funet.fi!zippo.uwasa.fi!uwasa.fi!ts
  27802. From: ts@uwasa.fi (Timo Salmi)
  27803. Newsgroups: comp.protocols.kermit.misc
  27804. Subject: Re: Kermit distribution
  27805. Date: 8 Oct 1994 21:29:02 GMT
  27806. Organization: University of Vaasa
  27807. Lines: 87
  27808. Distribution: world
  27809. Message-Id: <3772uu$j9k@zippo.uwasa.fi>
  27810. Nntp-Posting-Host: uwasa.fi
  27811. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  27812.  
  27813. I must have expressed myself very badly on the Usenet news in
  27814. comp.protocols.kermit.misc.  My apologies for that.  I have little
  27815. to add except that there is not a single cent that I earn from
  27816. Garbo's operations.  I fact I am personally way in the red in Garbo
  27817. operations since I pay my not negligible connection time from my
  27818. home to the office out of my own pocket.  I've done this out of
  27819. interest in what I do.  Please don't make me out like some kind of a
  27820. profiteering leech.
  27821.  
  27822.    All the best, Timo
  27823.  
  27824. :-Date: Sat, 8 Oct 1994 20:02:08 +0100
  27825. :-From: jw@adasoft.ch (Jamie Watson)
  27826. :-To: ts@uwasa.fi
  27827. :-Subject: Re: Kermit distribution
  27828. :
  27829. :> Jamie,
  27830. :
  27831. :Have we met before?  Do I know you from somewhere?  I think not, and in
  27832. :polite society one does not presume to address another by first name
  27833. :without being invited to do so.
  27834. :
  27835. :> so far this has been a genuine discsussion.
  27836. :
  27837. :There has been very little that has been "genuine" about the discussion.
  27838. :You, and some others, want to try to profit by selling the work of others.
  27839. :Some software authors are willing to allow you to do that.  Fine.  But
  27840. :when one stands up and says "No", you throw a temper tantrum and remove
  27841. :the software from your on-line distribution.  You constantly trumpet the
  27842. :fact that you are "providing a valuable service", but you can't be bothered
  27843. :to make a truly trivial effort to respect the wishes of an author and
  27844. :provide a significant piece of software under the conditions that author
  27845. :requires.  Arranging for kermit to be excluded from a CD would be absolutely
  27846. :trivial, but you simply aren't willing to make the slightest effort.  Fine,
  27847. :but don't then refer to what is going on as a "genuine" discussion, and
  27848. :don't bother announcing to the world what a wonderful, altruistic person
  27849. :you are to work so hard for the public good in providing this service.
  27850. :
  27851. :> You are most welcome to have your own views in this as much as you like.
  27852. :
  27853. :How very generous of you.
  27854. :
  27855. :> But no purpose is served by your "" insinuations.
  27856. :
  27857. :Yes, I would hope that they serve the purpose of enlightening a some
  27858. :people to the true nature of the "discussion" you and a few others are
  27859. :conducting.
  27860. :
  27861. :> It has been a difficult issue.  Starting a fight with such sniping is
  27862. :> not going to make it any easier.
  27863. :
  27864. :Starting this entire situation with your tantrums about not being allowed
  27865. :to sell someone else's hard work is what really made things difficult.
  27866. :Suppose that you, and everyone else, were allowed to include kermit on
  27867. :your CDs; then Frank turned out to be right, the burden on the Kermit
  27868. :group became too large, and they finally had to shut down.  Who would
  27869. :have profited from this?  You, and the others selling the software.
  27870. :Who would have lost?  Frank, and the others who work on kermit, and
  27871. :all the people who want to see it continue.  I believe very strongly
  27872. :that Frank *is* right, but even more important, I believe that it is
  27873. :absolutely not worth running this risk just so that you can make some
  27874. :money.
  27875. :
  27876. :Lest you think that I am "all talk" in this area, I would point out that
  27877. :I have been offering *free* distribution of the X Window System software,
  27878. :on several different magnetic tape formats, to anyone, anywhere in Europe,
  27879. :since Version 11 Release 1.  What *I* mean by free is *really* free, too.
  27880. :No charge.  No payment.  The only requirement is that I get back the same
  27881. :number of tapes that I send out, and even at that I lose about 10% of the
  27882. :tapes every release.  The mailing costs have been paid partially by my
  27883. :employers, and partially out of my own pocket.  The time and work to make
  27884. :the tapes, prepare the mailing labels, customs labels and such have all
  27885. :been donated by myself and my wife.  I have averages something over 150
  27886. :tapes per release, so I have sent over 600 tapes so far, and I am still
  27887. :making the same offer for R6.  So please, don't tell me what a wonderful
  27888. :saint you are because you are willing to get CDs make for $5 each and
  27889. :then sell them for $20 each.
  27890. :
  27891. :If you want to provide a service, then make an honest effort to do the
  27892. :best you can at it.  If it requires a little extra effort on your part
  27893. :to arrange things to comply with an authors requirements, then make
  27894. :the effort.  If you are not willing to do that, then at least have the
  27895. :decency not to interfere with, and significantly impede, the efforts
  27896. :of someone like Frank da Cruz, who is actually doing some work for the
  27897. :public good.
  27898. :
  27899. :jw
  27900.  
  27901. From news@columbia.edu Sat Oct  8 21:43:46 1994
  27902. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07780
  27903.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 8 Oct 1994 17:51:31 -0400
  27904. Received: by apakabar.cc.columbia.edu id AA25944
  27905.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 8 Oct 1994 17:51:30 -0400
  27906. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!pipex!sunic!news.funet.fi!zippo.uwasa.fi!uwasa.fi!ts
  27907. From: ts@uwasa.fi (Timo Salmi)
  27908. Newsgroups: comp.protocols.kermit.misc
  27909. Subject: cmsg cancel <3772uu$j9k@zippo.uwasa.fi>
  27910. Control: cancel <3772uu$j9k@zippo.uwasa.fi>
  27911. Date: 8 Oct 1994 21:43:46 GMT
  27912. Organization: University of Vaasa
  27913. Lines: 1
  27914. Distribution: world
  27915. Message-Id: <3773qi$jcr@zippo.uwasa.fi>
  27916. References: <3772uu$j9k@zippo.uwasa.fi>
  27917. Nntp-Posting-Host: uwasa.fi
  27918. Originator: ts@uwasa.fi
  27919. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  27920.  
  27921. <3772uu$j9k@zippo.uwasa.fi> was cancelled from within rn.
  27922.  
  27923. From news@columbia.edu Sat Oct  8 21:49:41 1994
  27924. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07781
  27925.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 8 Oct 1994 17:51:32 -0400
  27926. Received: by apakabar.cc.columbia.edu id AA25947
  27927.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 8 Oct 1994 17:51:30 -0400
  27928. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!pipex!sunic!news.funet.fi!zippo.uwasa.fi!uwasa.fi!ts
  27929. From: ts@uwasa.fi (Timo Salmi)
  27930. Newsgroups: comp.protocols.kermit.misc
  27931. Subject: Re: Kermit distribution
  27932. Date: 8 Oct 1994 21:49:41 GMT
  27933. Organization: University of Vaasa
  27934. Lines: 88
  27935. Distribution: world
  27936. Message-Id: <37745l$jeo@zippo.uwasa.fi>
  27937. Nntp-Posting-Host: uwasa.fi
  27938. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  27939.  
  27940. I must have expressed myself very badly on the Usenet news in
  27941. comp.protocols.kermit.misc.  My apologies for that.  I wish to say,
  27942. however, one additional thing here in public when the feedback
  27943. starts to be like this.  There is not one single cent that I have
  27944. ever personally earned from Garbo's operations.  In fact I am
  27945. personally way in the red in maitaining Garbo, since I pay my not
  27946. negligible connection time from my home to the office out of my own
  27947. pocket.  I've done this out of interest in what I do.  Please don't
  27948. take me as some kind of a profiteering leech. 
  27949.  
  27950.    All the best, Timo
  27951.  
  27952. :-Date: Sat, 8 Oct 1994 20:02:08 +0100
  27953. :-From: jw@adasoft.ch (Jamie Watson)
  27954. :-To: ts@uwasa.fi
  27955. :-Subject: Re: Kermit distribution
  27956. :
  27957. :> Jamie,
  27958. :
  27959. :Have we met before?  Do I know you from somewhere?  I think not, and in
  27960. :polite society one does not presume to address another by first name
  27961. :without being invited to do so.
  27962. :
  27963. :> so far this has been a genuine discussion.
  27964. :
  27965. :There has been very little that has been "genuine" about the discussion.
  27966. :You, and some others, want to try to profit by selling the work of others.
  27967. :Some software authors are willing to allow you to do that.  Fine.  But
  27968. :when one stands up and says "No", you throw a temper tantrum and remove
  27969. :the software from your on-line distribution.  You constantly trumpet the
  27970. :fact that you are "providing a valuable service", but you can't be bothered
  27971. :to make a truly trivial effort to respect the wishes of an author and
  27972. :provide a significant piece of software under the conditions that author
  27973. :requires.  Arranging for kermit to be excluded from a CD would be absolutely
  27974. :trivial, but you simply aren't willing to make the slightest effort.  Fine,
  27975. :but don't then refer to what is going on as a "genuine" discussion, and
  27976. :don't bother announcing to the world what a wonderful, altruistic person
  27977. :you are to work so hard for the public good in providing this service.
  27978. :
  27979. :> You are most welcome to have your own views in this as much as you like.
  27980. :
  27981. :How very generous of you.
  27982. :
  27983. :> But no purpose is served by your "" insinuations.
  27984. :
  27985. :Yes, I would hope that they serve the purpose of enlightening a some
  27986. :people to the true nature of the "discussion" you and a few others are
  27987. :conducting.
  27988. :
  27989. :> It has been a difficult issue.  Starting a fight with such sniping is
  27990. :> not going to make it any easier.
  27991. :
  27992. :Starting this entire situation with your tantrums about not being allowed
  27993. :to sell someone else's hard work is what really made things difficult.
  27994. :Suppose that you, and everyone else, were allowed to include kermit on
  27995. :your CDs; then Frank turned out to be right, the burden on the Kermit
  27996. :group became too large, and they finally had to shut down.  Who would
  27997. :have profited from this?  You, and the others selling the software.
  27998. :Who would have lost?  Frank, and the others who work on kermit, and
  27999. :all the people who want to see it continue.  I believe very strongly
  28000. :that Frank *is* right, but even more important, I believe that it is
  28001. :absolutely not worth running this risk just so that you can make some
  28002. :money.
  28003. :
  28004. :Lest you think that I am "all talk" in this area, I would point out that
  28005. :I have been offering *free* distribution of the X Window System software,
  28006. :on several different magnetic tape formats, to anyone, anywhere in Europe,
  28007. :since Version 11 Release 1.  What *I* mean by free is *really* free, too.
  28008. :No charge.  No payment.  The only requirement is that I get back the same
  28009. :number of tapes that I send out, and even at that I lose about 10% of the
  28010. :tapes every release.  The mailing costs have been paid partially by my
  28011. :employers, and partially out of my own pocket.  The time and work to make
  28012. :the tapes, prepare the mailing labels, customs labels and such have all
  28013. :been donated by myself and my wife.  I have averages something over 150
  28014. :tapes per release, so I have sent over 600 tapes so far, and I am still
  28015. :making the same offer for R6.  So please, don't tell me what a wonderful
  28016. :saint you are because you are willing to get CDs make for $5 each and
  28017. :then sell them for $20 each.
  28018. :
  28019. :If you want to provide a service, then make an honest effort to do the
  28020. :best you can at it.  If it requires a little extra effort on your part
  28021. :to arrange things to comply with an authors requirements, then make
  28022. :the effort.  If you are not willing to do that, then at least have the
  28023. :decency not to interfere with, and significantly impede, the efforts
  28024. :of someone like Frank da Cruz, who is actually doing some work for the
  28025. :public good.
  28026. :
  28027. :jw
  28028.  
  28029. From news@columbia.edu Sat Oct  8 21:51:44 1994
  28030. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08185
  28031.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 8 Oct 1994 18:00:59 -0400
  28032. Received: by apakabar.cc.columbia.edu id AA26469
  28033.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 8 Oct 1994 18:00:58 -0400
  28034. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!pipex!sunic!news.funet.fi!zippo.uwasa.fi!uwasa.fi!ts
  28035. From: ts@uwasa.fi (Timo Salmi)
  28036. Newsgroups: comp.protocols.kermit.misc
  28037. Subject: cmsg cancel <37745l$jeo@zippo.uwasa.fi>
  28038. Control: cancel <37745l$jeo@zippo.uwasa.fi>
  28039. Date: 8 Oct 1994 21:51:44 GMT
  28040. Organization: University of Vaasa
  28041. Lines: 1
  28042. Distribution: world
  28043. Message-Id: <37749g$jg6@zippo.uwasa.fi>
  28044. References: <37745l$jeo@zippo.uwasa.fi>
  28045. Nntp-Posting-Host: uwasa.fi
  28046. Originator: ts@uwasa.fi
  28047. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  28048.  
  28049. <37745l$jeo@zippo.uwasa.fi> was cancelled from within rn.
  28050.  
  28051. From news@columbia.edu Sat Oct  8 21:55:35 1994
  28052. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08218
  28053.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 8 Oct 1994 18:01:59 -0400
  28054. Received: by apakabar.cc.columbia.edu id AA26492
  28055.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 8 Oct 1994 18:01:58 -0400
  28056. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!pipex!sunic!news.funet.fi!zippo.uwasa.fi!uwasa.fi!ts
  28057. From: ts@uwasa.fi (Timo Salmi)
  28058. Newsgroups: comp.protocols.kermit.misc
  28059. Subject: Kermit distribution discussion, an apology
  28060. Date: 8 Oct 1994 21:55:35 GMT
  28061. Organization: University of Vaasa
  28062. Lines: 90
  28063. Distribution: world
  28064. Message-Id: <3774gn$jg9@zippo.uwasa.fi>
  28065. Nntp-Posting-Host: uwasa.fi
  28066. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  28067.  
  28068. I must have expressed myself very badly on the Usenet news in
  28069. comp.protocols.kermit.misc.  My apologies for that.  I wish to say,
  28070. however, one additional thing here in public when the feedback
  28071. starts to be like this.  There is not one single cent that I have
  28072. ever personally earned from Garbo's operations.  In fact I am
  28073. personally way in the red in maintaining Garbo, since I pay my not
  28074. negligible connection time from my home to the office out of my own
  28075. pocket.  I've done this out of interest in what I do.  Please, don't
  28076. take me as some kind of a profiteering leech. 
  28077.  
  28078.    All the best, Timo
  28079.  
  28080. :-Date: Sat, 8 Oct 1994 20:02:08 +0100
  28081. :-From: jw@adasoft.ch (Jamie Watson)
  28082. :-To: ts@uwasa.fi
  28083. :-Subject: Re: Kermit distribution
  28084. :
  28085. :> Jamie,
  28086. :
  28087. :Have we met before?  Do I know you from somewhere?  I think not, and in
  28088. :polite society one does not presume to address another by first name
  28089. :without being invited to do so.
  28090. :
  28091. :> so far this has been a genuine discussion.
  28092. :
  28093. :There has been very little that has been "genuine" about the discussion.
  28094. :You, and some others, want to try to profit by selling the work of others.
  28095. :Some software authors are willing to allow you to do that.  Fine.  But
  28096. :when one stands up and says "No", you throw a temper tantrum and remove
  28097. :the software from your on-line distribution.  You constantly trumpet the
  28098. :fact that you are "providing a valuable service", but you can't be bothered
  28099. :to make a truly trivial effort to respect the wishes of an author and
  28100. :provide a significant piece of software under the conditions that author
  28101. :requires.  Arranging for kermit to be excluded from a CD would be absolutely
  28102. :trivial, but you simply aren't willing to make the slightest effort.  Fine,
  28103. :but don't then refer to what is going on as a "genuine" discussion, and
  28104. :don't bother announcing to the world what a wonderful, altruistic person
  28105. :you are to work so hard for the public good in providing this service.
  28106. :
  28107. :> You are most welcome to have your own views in this as much as you like.
  28108. :
  28109. :How very generous of you.
  28110. :
  28111. :> But no purpose is served by your "" insinuations.
  28112. :
  28113. :Yes, I would hope that they serve the purpose of enlightening a some
  28114. :people to the true nature of the "discussion" you and a few others are
  28115. :conducting.
  28116. :
  28117. :> It has been a difficult issue.  Starting a fight with such sniping is
  28118. :> not going to make it any easier.
  28119. :
  28120. :Starting this entire situation with your tantrums about not being allowed
  28121. :to sell someone else's hard work is what really made things difficult.
  28122. :Suppose that you, and everyone else, were allowed to include kermit on
  28123. :your CDs; then Frank turned out to be right, the burden on the Kermit
  28124. :group became too large, and they finally had to shut down.  Who would
  28125. :have profited from this?  You, and the others selling the software.
  28126. :Who would have lost?  Frank, and the others who work on kermit, and
  28127. :all the people who want to see it continue.  I believe very strongly
  28128. :that Frank *is* right, but even more important, I believe that it is
  28129. :absolutely not worth running this risk just so that you can make some
  28130. :money.
  28131. :
  28132. :Lest you think that I am "all talk" in this area, I would point out that
  28133. :I have been offering *free* distribution of the X Window System software,
  28134. :on several different magnetic tape formats, to anyone, anywhere in Europe,
  28135. :since Version 11 Release 1.  What *I* mean by free is *really* free, too.
  28136. :No charge.  No payment.  The only requirement is that I get back the same
  28137. :number of tapes that I send out, and even at that I lose about 10% of the
  28138. :tapes every release.  The mailing costs have been paid partially by my
  28139. :employers, and partially out of my own pocket.  The time and work to make
  28140. :the tapes, prepare the mailing labels, customs labels and such have all
  28141. :been donated by myself and my wife.  I have averages something over 150
  28142. :tapes per release, so I have sent over 600 tapes so far, and I am still
  28143. :making the same offer for R6.  So please, don't tell me what a wonderful
  28144. :saint you are because you are willing to get CDs make for $5 each and
  28145. :then sell them for $20 each.
  28146. :
  28147. :If you want to provide a service, then make an honest effort to do the
  28148. :best you can at it.  If it requires a little extra effort on your part
  28149. :to arrange things to comply with an authors requirements, then make
  28150. :the effort.  If you are not willing to do that, then at least have the
  28151. :decency not to interfere with, and significantly impede, the efforts
  28152. :of someone like Frank da Cruz, who is actually doing some work for the
  28153. :public good.
  28154. :
  28155. :jw
  28156.  
  28157.  
  28158.  
  28159. From news@columbia.edu Sat Oct  8 22:38:57 1994
  28160. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11661
  28161.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 8 Oct 1994 19:40:49 -0400
  28162. Received: by apakabar.cc.columbia.edu id AA02329
  28163.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 8 Oct 1994 19:40:48 -0400
  28164. Newsgroups: comp.protocols.kermit.misc
  28165. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!pipex!uunet!EU.net!chsun!pan!jw
  28166. From: jw@adasoft.ch (Jamie Watson)
  28167. Subject: Re: Columbia University's Kermit copyright
  28168. Message-Id: <CxDLKx.JAD@adasoft.ch>
  28169. Reply-To: jw@adasoft.ch (Jamie Watson)
  28170. Organization: Adasoft AG, Switzerland
  28171. References: <9410052152.AA18509@simtel.coast.net> <36v9mg$t22@chopin.udel.edu> <370rss$cf7@canopus.cc.umanitoba.ca> <Cx9A7D.23I@ritz.mordor.com>
  28172. Date: Sat, 8 Oct 1994 22:38:57 GMT
  28173. Expires: Fri, 7 Oct 1994 23:00:00 GMT
  28174. Lines: 48
  28175. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  28176.  
  28177. >Am I the only person who sees the beauty in Kermit and is disgusting by 
  28178. >people trying to coerce Frank into turning Kermit into (ugh!) "Shareware"?
  28179.  
  28180. No, you certainly aren't.  I stayed out of this discussion for a long time,
  28181. because it seemed to be progressing rationally.  People complained about
  28182. not being able to put Kermit on CD-ROM.  Frank explained why that was not
  28183. going to be allowed.  But then the same people complained about the reason
  28184. it was not to be allowed, and things went downhill from there.  Now we
  28185. have reached the point where a several people are simply repeatedly
  28186. posting messages that say "Frank, I like you, and I respect you, but I
  28187. really don't understand why you would be so stupid as to stick to what
  28188. you believe in and have been saying all along, rather than changing your
  28189. mind and doing what I want you to do."
  28190.  
  28191. However, the absolute low point so far has been reached when people
  28192. start saying "Please tell us all exactly what the legal and financial
  28193. restrictions you are working under are, so we can suggest ways to get
  28194. around them."  I absolutely can't imagine *anyone* having the gall to
  28195. say something like this.  How would the people who say this like to
  28196. conduct a public discussion of their day to day decisions, so that
  28197. anyone and everyone can second-guess, criticise or simply dump on the
  28198. people who have to make these decisions?
  28199.  
  28200. It seems to me that a large part of the problem for both sides here is
  28201. that they are unwilling to allow a precedent to be set.  Frank is not
  28202. willing to allow the precedent of Kermit being distributed on CD-ROM,
  28203. because he believes that it will dramatically increase the support load
  28204. without a corresponding increase in revenue.  Those who operate Internet
  28205. archive sites and want to put Kermit on their CD-ROM are not willing to
  28206. allow the precedent of having some material on-line which is excluded from
  28207. the CD-ROM, because if this became very common, they would not be able to
  28208. make CD-ROMs for a couple of dollars and sell them for $20 or so.
  28209.  
  28210. Consider the potential consequences of each side of this.  If Kermit were
  28211. to be distributed on CD-ROM, and it turned out that Frank is right, there
  28212. is a possibility that Columbia would simply pull the plug on the Kermit
  28213. group.  Most likely, Kermit would then slowly die, in the worst case,
  28214. eventually there will be no kermit any more, so no one will be able to
  28215. get it.  On the other hand, if Kermit is not allowed on CD-ROMs, some
  28216. unknown number of people will not stumble across it by accident, and so
  28217. may never become Kermit users.  But the simple fact is, anyone who knows
  28218. that kermit exists and wants to get a copy will still be able to do that.
  28219. Either electronically, or from Columia by mail order, or from somewhere
  28220. else.  I simply don't believe that there will be anyone, anywhere, who
  28221. will end up saying "gee, I would really like to get a copy of Kermit,
  28222. but it is not on the XXYYZ CD-ROM, so I can't get it".
  28223.  
  28224. jw
  28225.  
  28226. From news@columbia.edu Sun Oct  9 00:38:52 1994
  28227. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13613
  28228.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 8 Oct 1994 20:38:57 -0400
  28229. Received: by apakabar.cc.columbia.edu id AA05631
  28230.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 8 Oct 1994 20:38:56 -0400
  28231. Path: news.columbia.edu!panix!ddsw1!not-for-mail
  28232. From: les@MCS.COM (Leslie Mikesell)
  28233. Newsgroups: comp.protocols.kermit.misc
  28234. Subject: Re: Columbia University's Kermit copyright
  28235. Date: 8 Oct 1994 19:38:52 -0500
  28236. Organization: /usr/lib/news/organi[sz]ation
  28237. Lines: 26
  28238. Message-Id: <377e2t$2hr@Mercury.mcs.com>
  28239. References: <9410052152.AA18509@simtel.coast.net> <370rss$cf7@canopus.cc.umanitoba.ca> <Cx9A7D.23I@ritz.mordor.com> <CxDLKx.JAD@adasoft.ch>
  28240. Nntp-Posting-Host: mercury.mcs.com
  28241. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  28242.  
  28243. In article <CxDLKx.JAD@adasoft.ch>, Jamie Watson <jw@adasoft.ch> wrote:
  28244.  
  28245. >However, the absolute low point so far has been reached when people
  28246. >start saying "Please tell us all exactly what the legal and financial
  28247. >restrictions you are working under are, so we can suggest ways to get
  28248. >around them." 
  28249.  
  28250. Guess I missed that one.  What I saw was more like people asking what
  28251. exactly the restrictions are so they can stay within them.  Even if
  28252. that means many people will be unable to use kermit or even remain
  28253. unaware that it exists, or only know about it from the commercial
  28254. copies.
  28255.  
  28256. >Those who operate Internet
  28257. >archive sites and want to put Kermit on their CD-ROM are not willing to
  28258. >allow the precedent of having some material on-line which is excluded from
  28259. >the CD-ROM, because if this became very common, they would not be able to
  28260. >make CD-ROMs for a couple of dollars and sell them for $20 or so.
  28261.  
  28262. It is actually pretty much irrelevant how many internet sites keep a
  28263. copy of kermit.  If you have access to any ftp archive you can just
  28264. as easily reach them all, including Columbia's.   The people without
  28265. ftp access are the ones affected here.
  28266.  
  28267. Les Mikesell
  28268.  les@mcs.com
  28269.  
  28270. From news@columbia.edu Sun Oct  9 01:01:13 1994
  28271. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14421
  28272.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 8 Oct 1994 21:01:16 -0400
  28273. Received: by apakabar.cc.columbia.edu id AA06735
  28274.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 8 Oct 1994 21:01:14 -0400
  28275. Path: news.columbia.edu!konichiwa.cc.columbia.edu!ycl6
  28276. From: ycl6@columbia.edu (Yee Chang Lee)
  28277. Newsgroups: comp.protocols.kermit.misc
  28278. Subject: How can I speed up screen updates in Kermit?
  28279. Date: 9 Oct 1994 01:01:13 GMT
  28280. Organization: Columbia University, New York City
  28281. Lines: 11
  28282. Message-Id: <377fcp$6id@apakabar.cc.columbia.edu>
  28283. Nntp-Posting-Host: konichiwa.cc.columbia.edu
  28284. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  28285.  
  28286. I use Kermit on my little Tandy XT clone, and I like it a lot.  I also use
  28287. Telix.  Now, Telix is noticeably faster on screen updates than Kermit.
  28288.  
  28289. What can I do to increase screen updates in Kermit?  Kermit _is_ writing to
  28290. hardware, not BIOS.
  28291.  
  28292. Any other ideas?
  28293. ---  _________________________________   o   ______________________________
  28294.      Yeechang Lee  (ycl6@columbia.edu) o   o I sure as heck don't speak for
  28295.      Nevada Las Vegas Mission 1992-'94 \_O_/ Columbia University, other New
  28296.      Columbia University/New York City   |   Yorkers, or anyone else at all
  28297.  
  28298. From news@columbia.edu Sun Oct  9 00:22:41 1994
  28299. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15978
  28300.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 8 Oct 1994 21:46:09 -0400
  28301. Received: by apakabar.cc.columbia.edu id AA09218
  28302.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 8 Oct 1994 21:46:08 -0400
  28303. Newsgroups: comp.protocols.kermit.misc
  28304. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!news.umbc.edu!haven.umd.edu!ames!pacbell.com!amdahl!netcomsv!ix.netcom.com!netcom.com!jhurwit
  28305. From: jhurwit@netcom.com (Jeffrey Hurwit)
  28306. Subject: Re: reading the screen in kermit
  28307. Message-Id: <jhurwitCxDqDu.5Ls@netcom.com>
  28308. Organization: Organization?  What organization?
  28309. X-Newsreader: TIN [version 1.2 PL1]
  28310. References: <SASDRQ.94Oct7101300@gamecock.unx.sas.com>
  28311. Date: Sun, 9 Oct 1994 00:22:41 GMT
  28312. Lines: 29
  28313. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  28314.  
  28315. In article <SASDRQ.94Oct7101300@gamecock.unx.sas.com>, 
  28316. David Quattlebaum (sasdrq@gamecock.unx.sas.com) wrote:
  28317.  
  28318. >Will there be a way in MSK 3.14 to read the screen at a certain
  28319. >row,col location? I use this ability in procomm plus, but can't find a
  28320. >way to duplicate this feature in MSK 3.13.
  28321.  
  28322.     I may be missing something, but my observation is that when you run
  28323.     a script in MS-Kermit, you're taken out of terminal emulation mode
  28324.     and put in command mode.  In command mode, whatever comes in
  28325.     through the serial port is simply read as a stream of characters
  28326.     (including the escape sequences that would format your screen if
  28327.     you were in terminal mode), and is not interpreted into rows and
  28328.     columns.  Input commands simply read this stream for a character
  28329.     string match.
  28330.  
  28331.     It's possible that the ID or whatever it is you want to detect can
  28332.     be differentiated from the same string elsewhere on your screen
  28333.     because it is preceeded or followed by escape sequences.  You can
  28334.     determine whether or not it is by turning on session logging, which
  28335.     records the actual stream of characters that goes through your
  28336.     serial port, and not just what you see on the screen during
  28337.     terminal emulation.  You could then put an input command in your
  28338.     script that includes these escape sequences, using backslash codes
  28339.     for control characters (eg. \27 for escape).
  28340.  
  28341.     Hope that helps.
  28342.  
  28343.                         Jeff
  28344.  
  28345. From news@columbia.edu Sun Oct  9 00:09:05 1994
  28346. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17064
  28347.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 8 Oct 1994 22:23:20 -0400
  28348. Received: by apakabar.cc.columbia.edu id AA11451
  28349.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 8 Oct 1994 22:23:19 -0400
  28350. Newsgroups: comp.protocols.kermit.misc
  28351. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!wupost!psuvax1!news.ecn.bgu.edu!feenix.metronet.com!jhuber
  28352. From: jhuber@metronet.com (Joseph Huber)
  28353. Subject: Re: What's the secret (to fast file transfer)?
  28354. Message-Id: <CxDpr6.6zM@metronet.com>
  28355. Date: Sun, 9 Oct 1994 00:09:05 GMT
  28356. References: <CxA8wq.30v@metronet.com> <373ej0$60l@apakabar.cc.columbia.edu>
  28357. Organization: Texas Metronet Communications Services, Dallas TX
  28358. Lines: 12
  28359. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  28360.  
  28361.  fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  28362. >As long as flow control is effective everywhere -- and it probably is
  28363. >because Zmodem gets 1600cps on the same connection, you can squeeze the
  28364. >additional 20-26% performance out of the connection by telling Kermit not
  28365. >to prefix most control characters
  28366.  
  28367. Yes, this is the "solution". I tried prefixing only 0, 1, and 129 a couple of
  28368. day ago and got numerous lockups with file transfer. For the hec of it, I
  28369. tried it again and it worked like a charm. I later found out that my internet
  28370. provider was having a server problem which was causing the lockups, not the
  28371. prefixing I was doing in kermit. 
  28372.  
  28373.  
  28374. From news@columbia.edu Sat Oct  8 14:59:50 1994
  28375. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18541
  28376.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 8 Oct 1994 23:12:56 -0400
  28377. Received: by apakabar.cc.columbia.edu id AA13874
  28378.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 8 Oct 1994 23:12:55 -0400
  28379. Path: news.columbia.edu!sol.ctr.columbia.edu!math.ohio-state.edu!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  28380. From: jrd@cc.usu.edu (Joe Doupnik)
  28381. Newsgroups: comp.protocols.kermit.misc
  28382. Subject: Re: How can I speed up screen updates in Kermit?
  28383. Message-Id: <1994Oct8.205950.29229@cc.usu.edu>
  28384. Date: 8 Oct 94 20:59:50 MDT
  28385. References: <377fcp$6id@apakabar.cc.columbia.edu>
  28386. Organization: Utah State University
  28387. Lines: 17
  28388. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  28389.  
  28390. In article <377fcp$6id@apakabar.cc.columbia.edu>, ycl6@konichiwa.cc.columbia.edu (Yee Chang Lee) writes:
  28391. > I use Kermit on my little Tandy XT clone, and I like it a lot.  I also use
  28392. > Telix.  Now, Telix is noticeably faster on screen updates than Kermit.
  28393. > What can I do to increase screen updates in Kermit?  Kermit _is_ writing to
  28394. > hardware, not BIOS.
  28395. > Any other ideas?
  28396. ------------
  28397.     No other ideas. If you are asking about whys then I can say that
  28398. MSK has a heck of a lot more work to do for each screen character than
  28399. simpler programs. That's going to start showing when the cpu is the weakest
  28400. link in the chain, and maybe that's the case on your XT.
  28401.     I did not notice any size of qualifiers, nor any reference to the
  28402. operating conditions you are using, or which version of Kermit so I will 
  28403. stop here.
  28404.     Joe D.
  28405.  
  28406. From news@columbia.edu Sun Oct  9 03:51:21 1994
  28407. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19869
  28408.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 8 Oct 1994 23:51:23 -0400
  28409. Received: by apakabar.cc.columbia.edu id AA16028
  28410.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 8 Oct 1994 23:51:22 -0400
  28411. Path: news.columbia.edu!konichiwa.cc.columbia.edu!ycl6
  28412. From: ycl6@columbia.edu (Yee Chang Lee)
  28413. Newsgroups: comp.protocols.kermit.misc
  28414. Subject: Re: How can I speed up screen updates in Kermit?
  28415. Date: 9 Oct 1994 03:51:21 GMT
  28416. Organization: Columbia University, New York City
  28417. Lines: 21
  28418. Message-Id: <377pbp$fkq@apakabar.cc.columbia.edu>
  28419. References: <377fcp$6id@apakabar.cc.columbia.edu> <1994Oct8.205950.29229@cc.usu.edu>
  28420. Nntp-Posting-Host: konichiwa.cc.columbia.edu
  28421. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  28422.  
  28423. In article <1994Oct8.205950.29229@cc.usu.edu>,
  28424. Joe Doupnik <jrd@cc.usu.edu> wrote:
  28425. |    I did not notice any size of qualifiers, nor any reference to the
  28426. |operating conditions you are using, or which version of Kermit so I will 
  28427. |stop here.
  28428.  
  28429. A valiant try, appreciated.  I'll try to give more information.
  28430.  
  28431. I use Kermit and Telix, plus an Intel 144/144e 14.4k external model, to log
  28432. into Columbia University's Unix server.  One place the difference in screen
  28433. updating is very prominent is with my preferred editor, JOE.  Ctrl-K-H in
  28434. JOE brings up a 10-line help window on the top of my screen.  I'm using
  28435. Telix right now, and the window _flashes_ onto the screen, everything below
  28436. the screen gets moved down enough to make room, etc.  In Kermit, it's quite
  28437. fast, too, but clearly not as fast.  As I wrote in my original post, I've
  28438. set both programs to write to the screen directly.
  28439.  
  28440. ---  _________________________________   o   ______________________________
  28441.      Yeechang Lee  (ycl6@columbia.edu) o   o I sure as heck don't speak for
  28442.      Nevada Las Vegas Mission 1992-'94 \_O_/ Columbia University, other New
  28443.      Columbia University/New York City   |   Yorkers, or anyone else at all
  28444.  
  28445. From news@columbia.edu Sat Oct  8 15:13:37 1994
  28446. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20981
  28447.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 9 Oct 1994 00:12:55 -0400
  28448. Received: by apakabar.cc.columbia.edu id AA17399
  28449.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 9 Oct 1994 00:12:54 -0400
  28450. Path: news.columbia.edu!sol.ctr.columbia.edu!math.ohio-state.edu!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  28451. From: jrd@cc.usu.edu (Joe Doupnik)
  28452. Newsgroups: comp.protocols.kermit.misc
  28453. Subject: Re: How can I speed up screen updates in Kermit?
  28454. Message-Id: <1994Oct8.211337.29231@cc.usu.edu>
  28455. Date: 8 Oct 94 21:13:37 MDT
  28456. References: <377fcp$6id@apakabar.cc.columbia.edu>
  28457. Organization: Utah State University
  28458. Lines: 16
  28459. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  28460.  
  28461. In article <377fcp$6id@apakabar.cc.columbia.edu>, ycl6@konichiwa.cc.columbia.edu (Yee Chang Lee) writes:
  28462. > I use Kermit on my little Tandy XT clone, and I like it a lot.  I also use
  28463. > Telix.  Now, Telix is noticeably faster on screen updates than Kermit.
  28464. > What can I do to increase screen updates in Kermit?  Kermit _is_ writing to
  28465. > hardware, not BIOS.
  28466. -------
  28467.     Oh, I did forget to add one suggestion. If your system uses a CGA
  28468. display then Kermit automatically includes "snow" suppression. Not all CGA
  28469. adapters need that treatment, and you can try turning it off with the "0"
  28470. argument to SET TERM COLOR. Say SET TERM COLOR ?  to see the syntax.
  28471. Notice that this affects screen updates as well as screen scrolls, with
  28472. the latter being the slowest operation of the video system. Many programs
  28473. (er, programmers) today forget (never new about) about snow occuring on older 
  28474. computers.
  28475.     Joe D.
  28476.  
  28477. From news@columbia.edu Sun Oct  9 05:05:23 1994
  28478. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23731
  28479.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 9 Oct 1994 01:05:25 -0400
  28480. Received: by apakabar.cc.columbia.edu id AA20033
  28481.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 9 Oct 1994 01:05:24 -0400
  28482. Path: news.columbia.edu!konichiwa.cc.columbia.edu!ycl6
  28483. From: ycl6@columbia.edu (Yee Chang Lee)
  28484. Newsgroups: comp.protocols.kermit.misc
  28485. Subject: Re: How can I speed up screen updates in Kermit?
  28486. Date: 9 Oct 1994 05:05:23 GMT
  28487. Organization: Columbia University, New York City
  28488. Lines: 12
  28489. Message-Id: <377tmj$jhu@apakabar.cc.columbia.edu>
  28490. References: <377fcp$6id@apakabar.cc.columbia.edu> <1994Oct8.211337.29231@cc.usu.edu>
  28491. Nntp-Posting-Host: konichiwa.cc.columbia.edu
  28492. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  28493.  
  28494. In article <1994Oct8.211337.29231@cc.usu.edu>,
  28495. Joe Doupnik <jrd@cc.usu.edu> wrote:
  28496. |    Oh, I did forget to add one suggestion. If your system uses a CGA
  28497. |display then Kermit automatically includes "snow" suppression. Not all CGA
  28498. |adapters need that treatment, and you can try turning it off with the "0"
  28499.  
  28500. I've checked for that, but I thought the 'turn-off-snow-suppression' code
  28501. was 10, not 0.
  28502. ---  _________________________________   o   ______________________________
  28503.      Yeechang Lee  (ycl6@columbia.edu) o   o I sure as heck don't speak for
  28504.      Nevada Las Vegas Mission 1992-'94 \_O_/ Columbia University, other New
  28505.      Columbia University/New York City   |   Yorkers, or anyone else at all
  28506.  
  28507. From news@columbia.edu Sat Oct  8 02:38:45 1994
  28508. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02424
  28509.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 9 Oct 1994 05:45:51 -0400
  28510. Received: by apakabar.cc.columbia.edu id AA29773
  28511.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 9 Oct 1994 05:45:50 -0400
  28512. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!MathWorks.Com!solaris.cc.vt.edu!news.duke.edu!concert!ais.com!bruce
  28513. From: bruce@ais.com
  28514. Newsgroups: comp.protocols.kermit.misc
  28515. Subject: Re: Windows Kermit question
  28516. Message-Id: <1994Oct8.063846.6883@ais.com>
  28517. Date: 8 Oct 94 06:38:45 EDT
  28518. References: <371450$18ou@ns2.CC.Lehigh.EDU> <1994Oct6.130554.28949@cc.usu.edu>
  28519. Organization: Applied Information Systems, Chapel Hill, NC
  28520. Lines: 43
  28521. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  28522.  
  28523. In article <1994Oct6.130554.28949@cc.usu.edu>, jrd@cc.usu.edu (Joe Doupnik) writes:
  28524. > In article <371450$18ou@ns2.CC.Lehigh.EDU>, jmt7@ns2.CC.Lehigh.EDU (JOHN M. TROIANO) writes:
  28525. >>         I have been using the Windows version of Kermit (Win100 v2.3,
  28526. >> 5/1/91) and it seems that it will not allow you to define the function
  28527. >> keys F5 and F10 (or Shift-F5, F10). Unfortunately the remote application
  28528. >> that we would like to use Win100 to connect to relies very heavily on
  28529. >> these keys. The program maps F5 to "break" and Shift-F5 to "long break"
  28530. >> (ie., disconnect). It allows you to disable the former but not the
  28531. >> latter setting. Is there any way around this? Does anyone know why it
  28532. >> was written this way?
  28533. > ----------
  28534. >     The program was written more as a demonstration for Windows workers
  28535. > than as a mainline production tool. It was a subset of mainline Kermits when
  28536. > it was written. It has not been updated and lacks support. Given these
  28537. > factors and its vintage we recommend that you use MS-DOS Kermit in Windows
  28538. > (it works well there, by design). When and if we acquire sufficient funding
  28539. > and people to create a pure Windows Kermit then it will be uptodate and
  28540. > full, but we don't have either at the moment.
  28541. >     Joe D.
  28542.  
  28543. At one point I did a little hacking on the Windows version of Kermit to
  28544. add some features to it that a customer wanted.  The reasons for the
  28545. choice of that program are not relevant to this discussion (they needed
  28546. the Chinese character set, for one thing, which is not possible with the
  28547. MS-DOS version of Kermit, and they did not need many of the other features
  28548. of the mainline Kermit package).
  28549.  
  28550. The choice of F5 as break is because that's what VT terminals use as a
  28551. break key.  Many of them don't allow you to remap the F5 key to anything
  28552. else, unfortunately.  There's no good reason for a Windows program to have
  28553. the same restriction, and more modern VT terminals do allow you to remap
  28554. the key anyway, so it should have allowed it.  However it's still not
  28555. nice of the remote application to require the use of the F5 key since some
  28556. VT terminals cannot generate this sequence.  But as Joe says, the Windows
  28557. version of Kermit has a number of limitations that the MS-DOS version does
  28558. not have.  
  28559.  
  28560. It's not difficult to get the sources to Windows Kermit, so you could
  28561. always modify it yourself to add that to it.  I might even be persuaded
  28562. to do it for you for the right price :).  But if you want something to
  28563. work out of the box, MS-DOS Kermit is usually a better choice.
  28564.  
  28565. Bruce C. Wright
  28566.  
  28567. From news@columbia.edu Sun Oct  9 13:21:57 1994
  28568. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08362
  28569.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 9 Oct 1994 09:31:37 -0400
  28570. Received: by apakabar.cc.columbia.edu id AA19913
  28571.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 9 Oct 1994 09:31:36 -0400
  28572. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!pipex!uunet!newsflash.concordia.ca!canopus.cc.umanitoba.ca!rahardj
  28573. From: rahardj@cc.umanitoba.ca (Budi Rahardjo)
  28574. Newsgroups: comp.protocols.kermit.misc
  28575. Subject: Re: Columbia University's Kermit copyright
  28576. Date: 9 Oct 1994 13:21:57 GMT
  28577. Organization: The University of Manitoba
  28578. Lines: 29
  28579. Message-Id: <378qpl$t55@canopus.cc.umanitoba.ca>
  28580. References: <9410052152.AA18509@simtel.coast.net> <36v9mg$t22@chopin.udel.edu> <370rss$cf7@canopus.cc.umanitoba.ca> <Cx9A7D.23I@ritz.mordor.com> <CxDLKx.JAD@adasoft.ch>
  28581. Nntp-Posting-Host: antares.cc.umanitoba.ca
  28582. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  28583.  
  28584. In <CxDLKx.JAD@adasoft.ch> jw@adasoft.ch (Jamie Watson) writes:
  28585. ...
  28586. :Consider the potential consequences of each side of this.  If Kermit were
  28587. :to be distributed on CD-ROM, and it turned out that Frank is right, there
  28588. :is a possibility that Columbia would simply pull the plug on the Kermit
  28589. :group.  Most likely, Kermit would then slowly die, in the worst case,
  28590. :eventually there will be no kermit any more, so no one will be able to
  28591. :get it.
  28592.  
  28593. I am sorry if I am rehashing it again, but I don't buy the argument.
  28594.  
  28595. Are you sure if Columbia pull the plug, Kermit will die ? (I don't think so)
  28596. Does Kermit really depend *that much* on Columbia's support ?
  28597. If it is true that Kermit will die if Coulmbia pull the plug,
  28598. then not many people want to use it since it is not stable and really depends
  28599. on Columbia (who knows what the administrator will do. cuts... cuts.. cuts).
  28600.  
  28601. Let's stick to one point: Columbia's Kermit team does not want anybody
  28602. selling their work without permission. This is valid and reasonable.
  28603.  
  28604. Has any CD-vendor approached any of you guys ? How difficult is it to
  28605. get the permission ? I want to hear the CD-vendor side of the story too.
  28606.  
  28607.  
  28608. -- budi
  28609. -- 
  28610. Budi Rahardjo <Budi_Rahardjo@UManitoba.Ca>
  28611. #include <std-disclaimer.h>
  28612. Unix Support - Computer Services - University of Manitoba
  28613.  
  28614. From news@columbia.edu Sun Oct  9 17:06:11 1994
  28615. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14982
  28616.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 9 Oct 1994 13:12:23 -0400
  28617. Received: by apakabar.cc.columbia.edu id AA01676
  28618.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 9 Oct 1994 13:12:22 -0400
  28619. Newsgroups: comp.protocols.kermit.misc
  28620. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!pipex!uunet!zib-berlin.de!math.fu-berlin.de!drunivac.drew.edu!pcoen
  28621. From: pcoen@drunivac.drew.edu (Paul R. Coen)
  28622. Subject: OpenVMS and crash recovery
  28623. Message-Id: <1994Oct9.130611.1@drunivac.drew.edu>
  28624. Sender: news@math.fu-berlin.de (Math Department)
  28625. Nntp-Posting-Host: drunivac.drew.edu
  28626. Organization: Drew University Academic Computing
  28627. Date: Sun, 9 Oct 1994 17:06:11 GMT
  28628. Lines: 16
  28629. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  28630.  
  28631. Is it just me, or could crash recovery be implemented in the VMS version
  28632. of C-Kermit by translating the file to Stream-LF as it's read in on download?
  28633.  
  28634. After all, if after stopping a download, I log into a Unix system and
  28635. cd to the NFS-mounted drive from the VMS system, I can use C-Kermit to
  28636. resume the download, and it works fine.  The only difference is that the 
  28637. Multinet NFS server on the VMS system translates the file into Stream-LF 
  28638. when it passes the data over to the Unix system.
  28639.  
  28640. I can think of a few problems this could cause, but if it were a feature
  28641. that could be enabled or disabled, that would dodge that issue.
  28642.  
  28643. I could be missing something here, like it's a lot harder than I'm thinking
  28644. it should be, but it seems like something that works most of the time on
  28645. binaries (especially zipfiles, which are generally are already stream-lf
  28646. anyway) could be done.
  28647.  
  28648. From news@columbia.edu Sun Oct  9 19:33:12 1994
  28649. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20173
  28650.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 9 Oct 1994 15:33:30 -0400
  28651. Received: by apakabar.cc.columbia.edu id AA10472
  28652.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 9 Oct 1994 15:33:29 -0400
  28653. Path: news.columbia.edu!panix!MathWorks.Com!news2.near.net!bloom-beacon.mit.edu!senator-bedfellow.mit.edu!athena.mit.edu!raoul
  28654. From: raoul@athena.mit.edu (Nico Garcia)
  28655. Newsgroups: comp.protocols.kermit.misc
  28656. Subject: Re: GNU implementation of kermit :-)
  28657. Date: 9 Oct 1994 19:33:12 GMT
  28658. Organization: Massachusetts Institute of Technology
  28659. Lines: 14
  28660. Message-Id: <RAOUL.94Oct9153313@bolognese.mit.edu>
  28661. References: <36ou5m$5ou@canopus.cc.umanitoba.ca> <36phpb$i9b@apakabar.cc.columbia.edu>
  28662.     <Cx4t2n.s1@world.std.com> <CxAyBn.GoB@adasoft.ch>
  28663.     <376t0j$ab4@Venus.mcs.com>
  28664. Nntp-Posting-Host: bolognese.mit.edu
  28665. In-Reply-To: les@MCS.COM's message of 8 Oct 1994 14:47:31 -0500
  28666. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  28667.  
  28668.  
  28669. Re-read the GNU copyleft. I just examined the one with EMACS. If you
  28670. offer to send free copies of the source code for the next 3 years,
  28671. commercial providers don't have to include it. I'm uncertain whether
  28672. ftp sites count as sending free copies, but I'll bet you could find a
  28673. way. An 8mm exabyte with the full GNU source tree only costs about
  28674. $20 in media, so sending a few of them to customers who ask could
  28675. easily be an incidental expense rather than a burdensome problem.
  28676. Even putting emacs source and gzip on floppies would only cost about
  28677. $5 in media.
  28678.  
  28679.                 Nico Garcia
  28680.                 raoul@athena.mit.edu
  28681.  
  28682.  
  28683. From news@columbia.edu Fri Oct  7 14:12:43 1994
  28684. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25588
  28685.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 9 Oct 1994 17:59:46 -0400
  28686. Received: by apakabar.cc.columbia.edu id AA19732
  28687.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 9 Oct 1994 17:59:45 -0400
  28688. Path: news.columbia.edu!panix!MathWorks.Com!usenet.eel.ufl.edu!piaget.moe.ac.sg!raffles.technet.sg!mathias
  28689. From: mathias@unicorn.swi.com.sg (Mathias Koerber)
  28690. Newsgroups: comp.protocols.kermit.misc
  28691. Subject: Re: "No Manual, No Support"
  28692. Date: 7 Oct 1994 14:12:43 GMT
  28693. Organization: Technet, Singapore
  28694. Lines: 37
  28695. Message-Id: <373l0r$rd7@raffles.technet.sg>
  28696. References: <NELSON.94Oct6124430@crynwr.crynwr.com>
  28697. Reply-To: Mathias.Koerber@swi.com.sg
  28698. Nntp-Posting-Host: unicorn.swi.com.sg
  28699. X-Newsreader: TIN [version 1.2 PL2]
  28700. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  28701.  
  28702. In (<NELSON.94Oct6124430@crynwr.crynwr.com>) Russell Nelson (nelson@crynwr.crynwr.com) wrote:
  28703. | Hey Frank, how about only supporting people who have purchased the
  28704. | Kermit manual?
  28705.  
  28706. |  1) It generates the income you need to support Kermit.
  28707. |  2) It's reasonable.  Why should you help someone who hasn't bothered
  28708. |     to help themselves first?
  28709.  
  28710. Now *that's* an idea. Put a card into the book, to register for service.
  28711. People can either fill it in right when they buy kermit (and thus
  28712. get some *bonus* points or so, or when they need service, which
  28713. will take until the card reaches Columbia, gets processed etc.
  28714.  
  28715. Very reasonable scheme, I love it !!
  28716.  
  28717. Only you'd have to make sure the book is available everywhere, or there
  28718. was a good mail-order shop for it. I haven't seen many copies here in
  28719. Singapore, but then I haven't actively looked..
  28720.  
  28721. cheers
  28722. | You can serialize new manuals, and ask current manual holders to send
  28723. | in the manual's copyright page (with an SASE) to be serialized.  Then,
  28724. | if you get a request for help without a valid serial number, refuse it.
  28725.  
  28726. | --
  28727. | -russ <nelson@crynwr.com>    http://www.crynwr.com/crynwr/nelson.html
  28728. | Crynwr Software   | Crynwr Software sells packet driver support | ask4 PGP key
  28729. | 11 Grant St.      | +1 315 268 1925 (9201 FAX)  | What is thee doing about it?
  28730. | Potsdam, NY 13676 | LPF member - ask me about the harm software patents do.
  28731.  
  28732. --
  28733. Mathias Koerber                                      Tel: +65 / 778 00 66 x 29
  28734. SW International Systems Pte Ltd                          Fax: +65 / 777 94 01
  28735. 14 Science Park Drive #04-01 The Maxwell    e-mail: Mathias.Koerber@swi.com.sg
  28736. S'pore 0511       <A HREF=http://www.swi.com.sg/public/personal/mk.html>MK</A>
  28737.     War isn't fought to decide who's right,
  28738.         but who is left        - ??
  28739.  
  28740. many of you advocate, then everybody
  28741. | who uses it would have to (a) send us money, (b) stop using it, or (c) become
  28742. | an outlaw.  That would include the universities, government agencies,
  28743. | research institute, hospitals, convents, and orphanages.
  28744.  
  28745. | Why don't we give it rest, eh?  Thanks.
  28746.  
  28747. | - Frank
  28748.  
  28749. --
  28750. Mathias Koerber                                      Tel: +65 / 778 00 66 x 29
  28751. SW International Systems Pte Ltd                          Fax: +65 / 777 94 01
  28752. 14 Science Park Drive #04-01 The Maxwell    e-mail: Mathias.Koerber@swi.com.sg
  28753. S'pore 0511       <A HREF=http://www.swi.com.sg/public/personal/mk.html>MK</A>
  28754.     Rene Descartes said "I don't think so," and he vanished.    --??
  28755.  
  28756. From news@columbia.edu Sun Oct  9 21:51:36 1994
  28757. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25729
  28758.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 9 Oct 1994 18:01:07 -0400
  28759. Received: by apakabar.cc.columbia.edu id AA19834
  28760.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 9 Oct 1994 18:01:06 -0400
  28761. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!pipex!sunic!news.funet.fi!zippo.uwasa.fi!uwasa.fi!ts
  28762. From: ts@uwasa.fi (Timo Salmi)
  28763. Newsgroups: comp.protocols.kermit.misc
  28764. Subject: Re: Columbia University's Kermit copyright
  28765. Date: 9 Oct 1994 21:51:36 GMT
  28766. Organization: University of Vaasa
  28767. Lines: 29
  28768. Message-Id: <379ol8$4l0@zippo.uwasa.fi>
  28769. References: <370rss$cf7@canopus.cc.umanitoba.ca> <Cx9A7D.23I@ritz.mordor.com> <CxDLKx.JAD@adasoft.ch>
  28770. Nntp-Posting-Host: uwasa.fi
  28771. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  28772.  
  28773. In article <CxDLKx.JAD@adasoft.ch> jw@adasoft.ch (Jamie Watson) writes:
  28774. :without a corresponding increase in revenue.  Those who operate Internet
  28775. :archive sites and want to put Kermit on their CD-ROM are not willing to
  28776. :allow the precedent of having some material on-line which is excluded from
  28777. :the CD-ROM, because if this became very common, they would not be able to
  28778. :make CD-ROMs for a couple of dollars and sell them for $20 or so.
  28779.  
  28780. In any debate it always is most unfortunate when a discussant shows
  28781. an unmistakenly derogatory untertone with an obvious primary goal to
  28782. disparage divergent views.  It loses so much of the weight of the
  28783. superficially even rationally appearing arguments.  Fortunately,
  28784. with the unequivocal exception Mr Watson, and marginally one other
  28785. participant, this attitude blessfully has not been the rule in
  28786. comtemplating the various aspects of the dilemma discussed. 
  28787.  
  28788. I particular I would like to salute Joe and Frank for their civility
  28789. in explaining their stance both on and off the news about the views
  28790. and analysis put forward of yours truly.  I wish we all could have
  28791. reached the same level. 
  28792.  
  28793. It is time to go.
  28794.  
  28795.    All the best, Timo
  28796.  
  28797. ..................................................................
  28798. Prof. Timo Salmi      Co-moderator of comp.archives.msdos.announce
  28799. Moderating at garbo.uwasa.fi anonymous FTP  archives  128.214.87.1
  28800. Faculty of Accounting & Industrial Management; University of Vaasa
  28801. Internet: ts@uwasa.fi   BBS +(358)-61-3170972; FIN-65101,  Finland
  28802.  
  28803. From news@columbia.edu Sun Oct  9 22:39:47 1994
  28804. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27316
  28805.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 9 Oct 1994 18:41:27 -0400
  28806. Received: by apakabar.cc.columbia.edu id AA22420
  28807.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 9 Oct 1994 18:41:27 -0400
  28808. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!pipex!sunic!news.funet.fi!zippo.uwasa.fi!uwasa.fi!ts
  28809. From: ts@uwasa.fi (Timo Salmi)
  28810. Newsgroups: comp.protocols.kermit.misc
  28811. Subject: cmsg cancel <379ol8$4l0@zippo.uwasa.fi>
  28812. Control: cancel <379ol8$4l0@zippo.uwasa.fi>
  28813. Date: 9 Oct 1994 22:39:47 GMT
  28814. Organization: University of Vaasa
  28815. Lines: 1
  28816. Message-Id: <379rfj$4t5@zippo.uwasa.fi>
  28817. References: <Cx9A7D.23I@ritz.mordor.com> <CxDLKx.JAD@adasoft.ch> <379ol8$4l0@zippo.uwasa.fi>
  28818. Nntp-Posting-Host: uwasa.fi
  28819. Originator: ts@uwasa.fi
  28820. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  28821.  
  28822. <379ol8$4l0@zippo.uwasa.fi> was cancelled from within rn.
  28823.  
  28824. From news@columbia.edu Sun Oct  9 22:45:09 1994
  28825. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27641
  28826.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 9 Oct 1994 18:50:48 -0400
  28827. Received: by apakabar.cc.columbia.edu id AA22888
  28828.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 9 Oct 1994 18:50:46 -0400
  28829. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!yeshua.marcam.com!charnel.ecst.csuchico.edu!nic-nac.CSU.net!usc!howland.reston.ans.net!pipex!sunic!news.funet.fi!zippo.uwasa.fi!uwasa.fi!ts
  28830. From: ts@uwasa.fi (Timo Salmi)
  28831. Newsgroups: comp.protocols.kermit.misc
  28832. Subject: cmsg cancel <379rnh$4us@zippo.uwasa.fi>
  28833. Control: cancel <379rnh$4us@zippo.uwasa.fi>
  28834. Date: 9 Oct 1994 22:45:09 GMT
  28835. Organization: University of Vaasa
  28836. Lines: 1
  28837. Message-Id: <379rpl$4uu@zippo.uwasa.fi>
  28838. References: <1994Oct7.112908.29112@cc.usu.edu> <379rnh$4us@zippo.uwasa.fi>
  28839. Nntp-Posting-Host: uwasa.fi
  28840. Originator: ts@uwasa.fi
  28841. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  28842.  
  28843. <379rnh$4us@zippo.uwasa.fi> was cancelled from within rn.
  28844.  
  28845. From news@columbia.edu Sun Oct  9 22:49:59 1994
  28846. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27646
  28847.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 9 Oct 1994 18:50:49 -0400
  28848. Received: by apakabar.cc.columbia.edu id AA22892
  28849.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 9 Oct 1994 18:50:48 -0400
  28850. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!pipex!sunic!news.funet.fi!zippo.uwasa.fi!uwasa.fi!ts
  28851. From: ts@uwasa.fi (Timo Salmi)
  28852. Newsgroups: comp.protocols.kermit.misc
  28853. Subject: cmsg cancel <379rve$4v2@zippo.uwasa.fi>
  28854. Control: cancel <379rve$4v2@zippo.uwasa.fi>
  28855. Date: 9 Oct 1994 22:49:59 GMT
  28856. Organization: University of Vaasa
  28857. Lines: 1
  28858. Message-Id: <379s2n$4v6@zippo.uwasa.fi>
  28859. References: <1994Oct7.112908.29112@cc.usu.edu> <379rve$4v2@zippo.uwasa.fi>
  28860. Nntp-Posting-Host: uwasa.fi
  28861. Originator: ts@uwasa.fi
  28862. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  28863.  
  28864. <379rve$4v2@zippo.uwasa.fi> was cancelled from within rn.
  28865.  
  28866. From news@columbia.edu Sun Oct  9 22:51:59 1994
  28867. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28035
  28868.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 9 Oct 1994 19:01:10 -0400
  28869. Received: by apakabar.cc.columbia.edu id AA23432
  28870.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 9 Oct 1994 19:01:09 -0400
  28871. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!pipex!sunic!news.funet.fi!zippo.uwasa.fi!uwasa.fi!ts
  28872. From: ts@uwasa.fi (Timo Salmi)
  28873. Newsgroups: comp.protocols.kermit.misc
  28874. Subject: Re: Columbia University's Kermit copyright
  28875. Date: 9 Oct 1994 22:51:59 GMT
  28876. Organization: University of Vaasa
  28877. Lines: 30
  28878. Message-Id: <379s6f$50m@zippo.uwasa.fi>
  28879. References: <370rss$cf7@canopus.cc.umanitoba.ca> <Cx9A7D.23I@ritz.mordor.com> <CxDLKx.JAD@adasoft.ch>
  28880. Nntp-Posting-Host: uwasa.fi
  28881. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  28882.  
  28883. In article <CxDLKx.JAD@adasoft.ch> jw@adasoft.ch (Jamie Watson) writes:
  28884. :without a corresponding increase in revenue.  Those who operate Internet
  28885. :archive sites and want to put Kermit on their CD-ROM are not willing to
  28886. :allow the precedent of having some material on-line which is excluded from
  28887. :the CD-ROM, because if this became very common, they would not be able to
  28888. :make CD-ROMs for a couple of dollars and sell them for $20 or so.
  28889.  
  28890. In any debate it always is most unfortunate when a discussant shows
  28891. an unmistakably derogatory undertone with an obvious primary goal to
  28892. disparage the divergent views.  It loses so much of the weight of
  28893. the superficially even rational-appearing arguments.  Fortunately,
  28894. with the unequivocal exception of Mr Watson, and marginally maybe
  28895. one other participant, this attitude blessfully has not been the
  28896. rule in contemplating the various aspects of the difficult dilemma
  28897. discussed. 
  28898.  
  28899. In particular I would like to salute Joe and Frank for their
  28900. civility in explaining their stance both on and off the news about
  28901. the views and analysis put forward of yours truly.  I wish we all
  28902. could have reached the same level. 
  28903.  
  28904. Time to go.
  28905.  
  28906.    All the best, Timo
  28907.  
  28908. ..................................................................
  28909. Prof. Timo Salmi      Co-moderator of comp.archives.msdos.announce
  28910. Moderating at garbo.uwasa.fi anonymous FTP  archives  128.214.87.1
  28911. Faculty of Accounting & Industrial Management; University of Vaasa
  28912. Internet: ts@uwasa.fi   BBS +(358)-61-3170972; FIN-65101,  Finland
  28913.  
  28914. From news@columbia.edu Sun Oct  9 23:09:29 1994
  28915. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28318
  28916.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 9 Oct 1994 19:06:33 -0400
  28917. Received: by apakabar.cc.columbia.edu id AA23823
  28918.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 9 Oct 1994 19:06:32 -0400
  28919. Path: news.columbia.edu!sol.ctr.columbia.edu!usc!elroy.jpl.nasa.gov!lll-winken.llnl.gov!noc.near.net!eisner!youdelman
  28920. From: billy@mix.com
  28921. Newsgroups: comp.protocols.kermit.misc
  28922. Subject: Re: Ring-bound Kermit Manuals
  28923. Message-Id: <1994Oct9.180929.6456@eisner>
  28924. Date: 9 Oct 94 18:09:29 -0500
  28925. References: <370rss$cf7@canopus.cc.umanitoba.ca> <Cx9A7D.23I@ritz.mordor.com> <372cbb$p7l@mcrware.microware.com> <CxB32w.L21@ritz.mordor.com>
  28926. Organization: DECUServe
  28927. Lines: 13
  28928. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  28929.  
  28930. In article <CxB32w.L21@ritz.mordor.com> Ken Udut
  28931. <kudut@ritz.mordor.com> writes:
  28932.  
  28933. > Or, if ringbound is prohibitively expensive, how about looseleaf, and 
  28934. > print a nice binder?
  28935.  
  28936. Docs in a binder would be fine with me.  Unfortunately this doesn't
  28937. seem to be the trend these days, even though there's a major difference
  28938. in convenience of use..  Even just the pages (and I supply the binder)
  28939. would suffice if cost or store shelf space are otherwise problems.
  28940.  
  28941. Billy Y..
  28942.  
  28943.  
  28944. From news@columbia.edu Sun Oct  9 23:38:02 1994
  28945. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29689
  28946.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 9 Oct 1994 19:40:42 -0400
  28947. Received: by apakabar.cc.columbia.edu id AA26035
  28948.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 9 Oct 1994 19:40:41 -0400
  28949. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!usc!howland.reston.ans.net!pipex!uunet!dziuxsolim.rutgers.edu!pilot.njin.net!not-for-mail
  28950. From: pfaffman@pilot.njin.net (Jay Pfaffman)
  28951. Newsgroups: comp.protocols.kermit.misc
  28952. Subject: Re: Columbia University's Kermit copyright
  28953. Date: 9 Oct 1994 19:38:02 -0400
  28954. Organization: Rutgers University
  28955. Lines: 25
  28956. Message-Id: <379usq$avt@pilot.njin.net>
  28957. References: <9410032252.AA21717@SimTel.Coast.NET> <36q981$lof@apakabar.cc.columbia.edu> <Cx8DLB.877@teleride.on.ca>
  28958. Nntp-Posting-Host: pilot.njin.net
  28959. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  28960.  
  28961. louk@teleride.on.ca (Lou Kates) 
  28962.  
  28963. >What are these detailed organizational and legal constraints under which
  28964. >you operate which supposedly prevent you from simply charging for support
  28965. >or implementing other solutions which seem to make a lot more sense than
  28966. >restricting distribution?
  28967.  
  28968. >Perhaps if you spelled them out so that we can all understand
  28969. >these barriers then we could all creatively figure out a way around them.   
  28970.  
  28971. Columbia University is a large university in an especially litigious
  28972. area of this country.  There is no way that a normal person (and
  28973. certainly not a computer person) could understand the forces at work.
  28974. The fact that Kermit is in any way freely distributable is quite
  28975. amazing.
  28976.  
  28977. We've heard Frank at Columbia say that there's nothing he can do right
  28978. now.  He is not an idiot.  He understands the issues.  We've heard
  28979. many valid arguments for doing things differently, but LOGIC DOES NOT
  28980. APPLY.
  28981.  
  28982. Give it a rest.
  28983. -- 
  28984. Jay Pfaffman   pfaffman@itc.org
  28985. 802-453-2457 
  28986.  
  28987. From news@columbia.edu Sun Oct  9 11:43:40 1994
  28988. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01155
  28989.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 9 Oct 1994 20:14:08 -0400
  28990. Received: by apakabar.cc.columbia.edu id AA28010
  28991.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 9 Oct 1994 20:14:07 -0400
  28992. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!convex!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  28993. From: jrd@cc.usu.edu (Joe Doupnik)
  28994. Newsgroups: comp.protocols.kermit.misc
  28995. Subject: Re: Ring-bound Kermit Manuals
  28996. Message-Id: <1994Oct9.174340.29273@cc.usu.edu>
  28997. Date: 9 Oct 94 17:43:40 MDT
  28998. References: <370rss$cf7@canopus.cc.umanitoba.ca> <Cx9A7D.23I@ritz.mordor.com> <372cbb$p7l@mcrware.microware.com> <CxB32w.L21@ritz.mordor.com> <1994Oct8.104029.1@drunivac.drew.edu>
  28999. Organization: Utah State University
  29000. Lines: 30
  29001. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  29002.  
  29003. In article <1994Oct8.104029.1@drunivac.drew.edu>, pcoen@drunivac.drew.edu (Paul R. Coen) writes:
  29004. > In article <CxB32w.L21@ritz.mordor.com>, kudut@ritz.mordor.com (Ken Udut) writes:
  29005. >> 
  29006. >> Whaddaya think about offering a ringbound version of the Kermit manuals 
  29007. >> (MS-Kermit and C-Kermit - don't know much about the manuals for CPM and 
  29008. >> such) for $10 more each?  
  29009. >> 
  29010. >> Maybe for the *next* MS-Kermit and C-Kermit book, perhaps, if not this one.
  29011. >> 
  29012. >> 
  29013. >> I'd be willing to pay $60 for the ringbound edition, if the paperbound 
  29014. >> edition that I'm ordering is as good as I expect and have heard!  :-)
  29015. >> 
  29016. >> Or, if ringbound is prohibitively expensive, how about looseleaf, and 
  29017. >> print a nice binder?  *Then* you could offer updates to the manual, when 
  29018. >> new revisions come out, and before the next Kermit book was written!
  29019. >> 
  29020. > A paperback with a lay-flat binding, like O'Reilly & Associates use, IBM
  29021. > uses for the OS/2 manual, and Digital now uses for OSF/1 and OpenVMS docs
  29022. > seems to be the new thing.
  29023. > It works as well as a standard three-ring binder, unless you're on the first
  29024. > few pages (usually junk) or last few pages (who needs it flat when looking
  29025. > through an index?)
  29026. -----------
  29027.     All very nice ideas. May I suggest you contact the publisher and
  29028. explain your suggestions and why you think they would be important. It's
  29029. the publisher who makes those decisions in the end. And while you have
  29030. their attention ask what they are doing to put copies in more bookstores.
  29031.     Joe D.
  29032.  
  29033. From news@columbia.edu Sun Oct 10 03:23:52 1994
  29034. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08733
  29035.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 9 Oct 1994 23:30:33 -0400
  29036. Received: by apakabar.cc.columbia.edu id AA10902
  29037.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 9 Oct 1994 23:30:32 -0400
  29038. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!wupost!udel!news-4.nss.udel.edu!chopin.udel.edu!not-for-mail
  29039. From: darkstar@chopin.udel.edu (Jerry Alexandratos)
  29040. Newsgroups: comp.protocols.kermit.misc
  29041. Subject: C-Kermit and Screen Rollback
  29042. Date: 9 Oct 1994 23:23:52 -0400
  29043. Organization: Broken Toys Unlimited
  29044. Lines: 16
  29045. Message-Id: <37ac48$3q7@chopin.udel.edu>
  29046. Nntp-Posting-Host: chopin.udel.edu
  29047. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  29048.  
  29049.  
  29050. Okay, now one of the things I really love about MS-Kermit, and have
  29051. gotten rather used to using is the screen rollback feature.  Now, I
  29052. know that this feature isn't implemented under C-Kermit, but my
  29053. question is, does anyone out there know of a good way to emulate such a
  29054. feature?  I'm looking for any type of answer, from using third-party
  29055. programs, to nifty scripts, etc...
  29056.  
  29057. Thanks in advance...
  29058.  
  29059.         --Jerry
  29060.  
  29061. -- 
  29062. |>  Jerry Alexandratos             **  "vengo de la tierra del    <|
  29063. |>  darkstar@strauss.udel.edu      **   fuego ten cuidado cuando  <|
  29064. |>  darkstar@canary.cns.udel.edu   **   llamas mi nombre..."      <|
  29065.  
  29066. From news@columbia.edu Mon Oct 10 03:56:54 1994
  29067. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10275
  29068.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 10 Oct 1994 00:03:03 -0400
  29069. Received: by apakabar.cc.columbia.edu id AA13037
  29070.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 10 Oct 1994 00:03:02 -0400
  29071. Path: news.columbia.edu!panix!MathWorks.Com!news.kei.com!eff!usenet.ins.cwru.edu!news.ysu.edu!yfn.ysu.edu!am856
  29072. From: am856@yfn.ysu.edu (Michael DeCosta III)
  29073. Newsgroups: comp.protocols.kermit.misc
  29074. Subject: Re: How can I speed up screen updates in Kermit?
  29075. Date: 10 Oct 1994 03:56:54 GMT
  29076. Organization: St. Elizabeth Hospital, Youngstown, OH
  29077. Lines: 24
  29078. Message-Id: <37ae26$4qn@news.ysu.edu>
  29079. References: <377fcp$6id@apakabar.cc.columbia.edu>
  29080. Reply-To: am856@yfn.ysu.edu (Michael DeCosta III)
  29081. Nntp-Posting-Host: yfn2.ysu.edu
  29082. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  29083.  
  29084.  
  29085. In a previous article, ycl6@konichiwa.cc.columbia.edu (Yee Chang Lee) says:
  29086.  
  29087. >I use Kermit on my little Tandy XT clone, and I like it a lot.  I also use
  29088. >Telix.  Now, Telix is noticeably faster on screen updates than Kermit.
  29089. >
  29090. >What can I do to increase screen updates in Kermit?  Kermit _is_ writing to
  29091. >hardware, not BIOS.
  29092. >
  29093. >Any other ideas?
  29094. >---  _________________________________   o   ______________________________
  29095. >     Yeechang Lee  (ycl6@columbia.edu) o   o I sure as heck don't speak for
  29096. >     Nevada Las Vegas Mission 1992-'94 \_O_/ Columbia University, other New
  29097. >     Columbia University/New York City   |   Yorkers, or anyone else at all
  29098. >
  29099.  
  29100. Try:
  29101.  
  29102. SET KERMIT=INPUT 2048
  29103.  
  29104. before starting Kermit.
  29105.  
  29106. If this increases your screen updates put it in a batch file with your
  29107. Kermit invocation.
  29108.  
  29109. From news@columbia.edu Sun Oct 10 02:52:21 1994
  29110. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17889
  29111.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 10 Oct 1994 03:10:32 -0400
  29112. Received: by apakabar.cc.columbia.edu id AA20449
  29113.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 10 Oct 1994 03:10:31 -0400
  29114. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!usc!howland.reston.ans.net!pipex!uunet!psinntp!newton.hartwick.edu!wisanr
  29115. From: wisanr@hartwick.edu (Dick Wisan)
  29116. Newsgroups: comp.protocols.kermit.misc
  29117. Subject: On fdc's long reply to ts
  29118. Message-Id: <1994Oct9.215221.1107@newton.hartwick.edu>
  29119. Date: 9 Oct 94 21:52:21 -0500
  29120. Organization: HARTWICK COLLEGE
  29121. Lines: 16
  29122. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  29123.  
  29124. I want to express appreciation for Frank de Cruz's long reply to Timo.  
  29125. That's the letter I've been hoping for.  Finally, he's given us a 
  29126. glimpse of the way Kermit is paid for and how the Columbia people see 
  29127. the shape of the market for computing.  That makes it possible to see 
  29128. that there may be some sense in the way Kermit is being handled.
  29129.  
  29130. The sad thing about this long exchange is that Frank's been defending 
  29131. what nobody attacks: his or Columbia's *rignt* to offer Kermit on the 
  29132. terms they do.  The question's been the wisdom of it.
  29133.  
  29134. Possibly, I'm slow.  It appears I'm only gradually coming to understand 
  29135. how much we lost when the US Army closed SIMTEL20.
  29136. -- 
  29137. R. N. (Dick) Wisan  - Email: internet WISANR@hartwick.edu
  29138.                     - Snail: 37 Clinton Street, Oneonta NY 13820, U.S.A.
  29139.                     - Just your opinion, please, ma'am: No fax.
  29140.  
  29141. From news@columbia.edu Mon Oct 10 12:33:23 1994
  29142. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28571
  29143.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 10 Oct 1994 08:44:50 -0400
  29144. Received: by apakabar.cc.columbia.edu id AA15257
  29145.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 10 Oct 1994 08:44:49 -0400
  29146. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!pipex!uunet!ankh.iia.org!iia.org!not-for-mail
  29147. From: andersr@iia.org (Rod Anderson)
  29148. Newsgroups: comp.protocols.kermit.misc
  29149. Subject: Re: Kermit-lovers unite!
  29150. Date: 10 Oct 1994 08:33:23 -0400
  29151. Organization: International Internet Association.
  29152. Lines: 51
  29153. Message-Id: <evybkmqOpMLF071yn@iia.org>
  29154. References: <CxB9pz.2op@ritz.mordor.com>
  29155. Reply-To: andersr@iia.org
  29156. Nntp-Posting-Host: iia.org
  29157. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  29158.  
  29159. > I would dearly *love* to start a mailing list for people who absolutely 
  29160. > ADORE Kermit!  That's the biggest problem with newsgroups.  Complainers 
  29161. > pop in, pop out, without a hint of responsibility for what they say.
  29162. > KERMIT-LVRS :->  Quite tempting, in fact!  Too much negativity around 
  29163. > sometimes - it's great to get away from it when I can :-)
  29164. > Ken
  29165. > kudut@ritz.mordor.com
  29166.  
  29167. After a temporary brain freeze I finally got my off-line news-reader
  29168. to show me the c.p.k.* groups.  I was sad to see how much discussion
  29169. there was about the down side of Kermit.  (If buying a manual to help
  29170. fund the Kermit effort, development and support, is a down side.)
  29171.  
  29172. Being the defacto, if not official, support person for Kermit for our
  29173. area and doing a brief stint of answering questions nationally I can
  29174. appreciate the Kermit Development (and Support) Team's position.  I
  29175. found over 90% of the questions I get could be answered by looking in
  29176. the index and reading two to five pages in "Using MS-Kermit".
  29177.  
  29178. I personally purchased "Using C-Kermit" and had my employer purchase
  29179. "Using MS-Kermit".  Our SysAdmin bought three copies of "Using
  29180. C-Kermit" so there is always a copy lying around to use.  The big
  29181. problem is most people want a knowledge transplant and are reluctant
  29182. to `Read-the-Book'.  But that is another soap box that can be stood on
  29183. later.
  29184.  
  29185. A decision was made to go with Kermit on our PCs for terminal
  29186. emulation since the Data General DASHER 463 and 470 support was added.
  29187. Otherwise the terminal emulation package Data General supplied was
  29188. $200US at first and now down to about $35 but buggy as all hell if
  29189. your hardware wasn't what is thought it should be.  On the other hand
  29190. I have yet to find an IBM (MS-DOS) compatible that Kermit wouldn't run
  29191. on out of the box.  And there are some real strange combinations
  29192. floating around at work.
  29193.  
  29194. Since I seem to be running on a bit I'll get to my point.
  29195.  
  29196. Kermit is one of those applications software support people dream of,
  29197. IMHO!  It transfers files over some of the worst communications lines
  29198. without breaking them, runs on most every platform you could want, and
  29199. is FREELY AVAILABLE.
  29200.  
  29201. Rod Anderson
  29202.  
  29203. ======================================================================
  29204. Nope, this don't necessarily represent my employer's views and I have
  29205. even been known to tick them off.  Hell, I'm not even going to tell
  29206. you who I work for. ;-)
  29207. ======================================================================
  29208.  
  29209. From news@columbia.edu Mon Oct 10 13:47:35 1994
  29210. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03799
  29211.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 10 Oct 1994 09:47:39 -0400
  29212. Received: by apakabar.cc.columbia.edu id AA19634
  29213.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 10 Oct 1994 09:47:37 -0400
  29214. Path: news.columbia.edu!usenet
  29215. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  29216. Newsgroups: comp.protocols.kermit.misc
  29217. Subject: Re: C-Kermit and Screen Rollback
  29218. Date: 10 Oct 1994 13:47:35 GMT
  29219. Organization: Columbia University
  29220. Lines: 28
  29221. Message-Id: <37bgln$j5g@apakabar.cc.columbia.edu>
  29222. References: <37ac48$3q7@chopin.udel.edu>
  29223. Nntp-Posting-Host: fdc.cc.columbia.edu
  29224. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  29225.  
  29226. In article <37ac48$3q7@chopin.udel.edu> darkstar@chopin.udel.edu (Jerry  
  29227. Alexandratos) writes:
  29228. > Okay, now one of the things I really love about MS-Kermit, and have
  29229. > gotten rather used to using is the screen rollback feature.  Now, I
  29230. > know that this feature isn't implemented under C-Kermit, ...
  29231. >
  29232. Right.  This can be implemented in Kermit programs that actually have a
  29233. terminal emulator.  C-Kermit in UNIX, VMS, etc, do not include terminal
  29234. emulators, but rather a connection to whatever you are using on your
  29235. desktop as a terminal or emulator -- e.g. your workstation's terminal
  29236. window.  Of course, the OS/2 version of C-Kermit *does* including a
  29237. terminal emulator, with rollback, key mapping, etc, so this does not
  29238. apply to OS/2 C-Kermit.
  29239.  
  29240. > ... but my
  29241. > question is, does anyone out there know of a good way to emulate such a
  29242. > feature?  I'm looking for any type of answer, from using third-party
  29243. > programs, to nifty scripts, etc...
  29244. This is an increasingly common question.  A similar question is "How do I
  29245. use the F keys, arrow keys, etc, with C-Kermit?"  The answer will be
  29246. different for each particular system / console driver / terminal window
  29247. program.  In general, the information will be found in the manual for your
  29248. desktop system.  In many cases, workstation terminal windows include
  29249. scroll bars -- e.g. "terminal" or "Stuart" on the NeXT -- and their own
  29250. key maps, which you can customize -- e.g. xterm.
  29251.  
  29252. - Frank
  29253.  
  29254. From news@columbia.edu Mon Oct 10 14:14:05 1994
  29255. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05862
  29256.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 10 Oct 1994 10:14:08 -0400
  29257. Received: by apakabar.cc.columbia.edu id AA21552
  29258.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 10 Oct 1994 10:14:06 -0400
  29259. Path: news.columbia.edu!usenet
  29260. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  29261. Newsgroups: comp.protocols.kermit.misc
  29262. Subject: Re: OpenVMS and crash recovery
  29263. Date: 10 Oct 1994 14:14:05 GMT
  29264. Organization: Columbia University
  29265. Lines: 18
  29266. Message-Id: <37bi7d$l1e@apakabar.cc.columbia.edu>
  29267. References: <1994Oct9.130611.1@drunivac.drew.edu>
  29268. Nntp-Posting-Host: fdc.cc.columbia.edu
  29269. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  29270.  
  29271. In article <1994Oct9.130611.1@drunivac.drew.edu> pcoen@drunivac.drew.edu  
  29272. (Paul R. Coen) writes:
  29273. > Is it just me, or could crash recovery be implemented in the VMS version
  29274. > of C-Kermit by translating the file to Stream-LF as it's read in on
  29275. > download?
  29276. It is my fervent hope that we can get crash recovery added to the VMS
  29277. version asap.  We are working on it now, but it is not definite.
  29278.  
  29279. There is no easy solution, because we use -- and must use -- the RMS file
  29280. system and its numerous facilities to handle the many and varied VMS file
  29281. types, and this entails all sorts of issues involving "blocks", internal
  29282. buffers, etc.  We have an idea about how to do it, and the proof will be
  29283. in the pudding.  But no, it's not as easy as using C-library calls.
  29284. That's what the *old* VMS C-Kermit (version 4 era) used to do, and it
  29285. was entirely unstatisfactory.  Let's keep our fingers crossed.
  29286.  
  29287. - Frank
  29288.  
  29289. From news@columbia.edu Mon Oct 10 02:06:02 1994
  29290. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05936
  29291.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 10 Oct 1994 10:15:09 -0400
  29292. Received: by apakabar.cc.columbia.edu id AA21666
  29293.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 10 Oct 1994 10:15:08 -0400
  29294. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  29295. From: jrd@cc.usu.edu (Joe Doupnik)
  29296. Newsgroups: comp.protocols.kermit.misc
  29297. Subject: Re: How can I speed up screen updates in Kermit?
  29298. Message-Id: <1994Oct10.080603.29320@cc.usu.edu>
  29299. Date: 10 Oct 94 08:06:02 MDT
  29300. References: <377fcp$6id@apakabar.cc.columbia.edu> <37ae26$4qn@news.ysu.edu>
  29301. Organization: Utah State University
  29302. Lines: 26
  29303. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  29304.  
  29305. In article <37ae26$4qn@news.ysu.edu>, am856@yfn.ysu.edu (Michael DeCosta III) writes:
  29306. > In a previous article, ycl6@konichiwa.cc.columbia.edu (Yee Chang Lee) says:
  29307. >>I use Kermit on my little Tandy XT clone, and I like it a lot.  I also use
  29308. >>Telix.  Now, Telix is noticeably faster on screen updates than Kermit.
  29309. >>
  29310. >>What can I do to increase screen updates in Kermit?  Kermit _is_ writing to
  29311. >>hardware, not BIOS.
  29312. >>
  29313. >>Any other ideas?
  29314. > Try:
  29315. > SET KERMIT=INPUT 2048
  29316. > before starting Kermit.
  29317. > If this increases your screen updates put it in a batch file with your
  29318. > Kermit invocation.
  29319. -------------
  29320.     Huh? INPUT is a script command; the one above enlarges the buffer
  29321. used by the INPUT command. Terminal emulation (Connect mode) is not related 
  29322. to script commands; it has no association with the INPUT buffer.
  29323.     But thanks for assisting.
  29324.         Joe D.
  29325.  
  29326. From news@columbia.edu Mon Oct 10 14:42:33 1994
  29327. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07899
  29328.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 10 Oct 1994 10:42:34 -0400
  29329. Received: by apakabar.cc.columbia.edu id AA23953
  29330.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 10 Oct 1994 10:42:33 -0400
  29331. Path: news.columbia.edu!konichiwa.cc.columbia.edu!ycl6
  29332. From: ycl6@columbia.edu (Yeechang Lee)
  29333. Newsgroups: comp.protocols.kermit.misc
  29334. Subject: Re: How can I speed up screen updates in Kermit?
  29335. Date: 10 Oct 1994 14:42:33 GMT
  29336. Organization: Columbia University, New York City
  29337. Lines: 13
  29338. Message-Id: <37bjsp$ncf@apakabar.cc.columbia.edu>
  29339. References: <377fcp$6id@apakabar.cc.columbia.edu> <37ae26$4qn@news.ysu.edu>
  29340. Nntp-Posting-Host: konichiwa.cc.columbia.edu
  29341. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  29342.  
  29343. In article <37ae26$4qn@news.ysu.edu>,
  29344. Michael DeCosta III <am856@yfn.ysu.edu> wrote:
  29345. |SET KERMIT=INPUT 2048
  29346. |
  29347. |before starting Kermit.
  29348.  
  29349. I'll try it (I'm at school right now), but I'm curious; what does it do?  I
  29350. don't recall seeing it in the help file.
  29351.  
  29352. ---  _________________________________   o   ______________________________
  29353.      Yeechang Lee  (ycl6@columbia.edu) o   o I sure as heck don't speak for
  29354.      Nevada Las Vegas Mission 1992-'94 \_O_/ Columbia University, other New
  29355.      Columbia University/New York City   |   Yorkers, or anyone else at all
  29356.  
  29357. From news@columbia.edu Mon Oct 10 14:42:50 1994
  29358. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07928
  29359.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 10 Oct 1994 10:42:51 -0400
  29360. Received: by apakabar.cc.columbia.edu id AA23967
  29361.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 10 Oct 1994 10:42:50 -0400
  29362. Path: news.columbia.edu!konichiwa.cc.columbia.edu!ycl6
  29363. From: ycl6@columbia.edu (Yeechang Lee)
  29364. Newsgroups: comp.protocols.kermit.misc
  29365. Subject: cmsg cancel <37bjsp$ncf@apakabar.cc.columbia.edu>
  29366. Control: cancel <37bjsp$ncf@apakabar.cc.columbia.edu>
  29367. Date: 10 Oct 1994 14:42:50 GMT
  29368. Organization: Columbia University
  29369. Lines: 5
  29370. Message-Id: <37bjta$nct@apakabar.cc.columbia.edu>
  29371. Nntp-Posting-Host: konichiwa.cc.columbia.edu
  29372. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  29373.  
  29374. <37bjsp$ncf@apakabar.cc.columbia.edu> was cancelled from within trn.
  29375. ---  _________________________________   o   ______________________________
  29376.      Yeechang Lee  (ycl6@columbia.edu) o   o I sure as heck don't speak for
  29377.      Nevada Las Vegas Mission 1992-'94 \_O_/ Columbia University, other New
  29378.      Columbia University/New York City   |   Yorkers, or anyone else at all
  29379.  
  29380. From news@columbia.edu Mon Oct 10 14:26:15 1994
  29381. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08128
  29382.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 10 Oct 1994 10:45:15 -0400
  29383. Received: by apakabar.cc.columbia.edu id AA24207
  29384.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 10 Oct 1994 10:45:14 -0400
  29385. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!simtel.coast.net!w8sdz
  29386. From: w8sdz@SimTel.Coast.NET (Keith Petersen)
  29387. Newsgroups: comp.protocols.kermit.misc
  29388. Subject: US Army's closure of SIMTEL20 (was On fdc's long reply to ts)
  29389. Message-Id: <9410101426.AA29125@SimTel.Coast.NET>
  29390. Date: Mon, 10 Oct 1994 14:26:15 GMT
  29391. Organization: SimTel, the Coast to Coast Software Repository (tm)
  29392. References: <1994Oct9.215221.1107@newton.hartwick.edu>
  29393. Lines: 23
  29394. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  29395.  
  29396. wisanr@newton.hartwick.edu (Dick Wisan) writes:
  29397. >Possibly, I'm slow.  It appears I'm only gradually coming to understand
  29398. >how much we lost when the US Army closed SIMTEL20.
  29399.  
  29400. Please tell me what that means.  You haven't lost anything, other than
  29401. one program (Kermit) out of over 11,000 that are in the collection.  You
  29402. can still get Kermit from Columbia, so you haven't lost it either.
  29403.  
  29404. The reason the US Army closed SIMTEL20 was because it had a poor funding
  29405. model (does that sound familiar?).  I had to find a new home for the
  29406. collection and a new job to support my family.
  29407.  
  29408. There were many offers to house the collection but only two to house the
  29409. collection *and* to hire its archivist (me).  Both offers were from sites
  29410. that use the funding model of CD-ROM sales to support the collection and
  29411. its archivist.
  29412.  
  29413. Keith
  29414. --
  29415. Keith Petersen
  29416. General Manager of SimTel, the Coast to Coast Software Repository (tm)
  29417. Internet: w8sdz@SimTel.Coast.NET    or      w8sdz@Vela.ACS.Oakland.Edu
  29418. Uucp: uunet!umich!vela!w8sdz                     BITNET: w8sdz@OAKLAND
  29419.  
  29420. From news@columbia.edu Sat Oct  8 20:40:55 1994
  29421. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08211
  29422.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 10 Oct 1994 10:45:54 -0400
  29423. Received: by apakabar.cc.columbia.edu id AA24281
  29424.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 10 Oct 1994 10:45:54 -0400
  29425. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!library.ucla.edu!agate!msuinfo!harbinger.cc.monash.edu.au!news.cs.su.oz.au!news.adelaide.edu.au!gateway.dircsa.org.au!gateway.dircsa.org.au!not-for-mail
  29426. From: arthur@gateway.dircsa.org.au (Arthur Marsh)
  29427. Newsgroups: comp.protocols.kermit.misc
  29428. Subject: Re: Funding Kermit
  29429. Date: 9 Oct 1994 06:10:55 +0930
  29430. Organization: DIRCSA - Disability Information and Resource Centre
  29431. Lines: 15
  29432. Message-Id: <37704n$mvl@gateway.dircsa.org.au>
  29433. References: <3714tt$7hu@apakabar.cc.columbia.edu>
  29434. Nntp-Posting-Host: gateway.dircsa.org.au
  29435. X-Newsreader: TIN [version 1.1 PL8]
  29436. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  29437.  
  29438. Frank da Cruz (fdc@fdc.cc.columbia.edu) wrote:
  29439.  
  29440. :   PURCHASE THE APPROPRIATE MANUALS
  29441.  
  29442. ...and lobby your local university bookstore to keep them in stock!
  29443.  
  29444. PS Frank and Joe, the Australian number for the publishers
  29445. should be written as +61 2 XXX XXXX. The extra zero before
  29446. the two gets you Hobart, Tasmania, instead of Sydney, New South
  29447. Wales.
  29448.  
  29449. -- 
  29450. Arthur Marsh, telephone +61-8-370-2365, fax +61-8-370-2133, +61-8-223-5082 
  29451.                arthur@gateway.dircsa.org.au, arthur@cswamp.apana.org.au
  29452. .endofsig
  29453.  
  29454. From news@columbia.edu Mon Oct 10 04:09:37 1994
  29455. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13021
  29456.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 10 Oct 1994 11:49:41 -0400
  29457. Received: by apakabar.cc.columbia.edu id AA29791
  29458.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 10 Oct 1994 11:49:40 -0400
  29459. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!agate!msuinfo!harbinger.cc.monash.edu.au!news.cs.su.oz.au!news.adelaide.edu.au!gateway.dircsa.org.au!gateway.dircsa.org.au!not-for-mail
  29460. From: arthur@gateway.dircsa.org.au (Arthur Marsh)
  29461. Newsgroups: comp.protocols.kermit.misc
  29462. Subject: Re: Kermit CD ROM?
  29463. Date: 10 Oct 1994 13:39:37 +0930
  29464. Organization: DIRCSA - Disability Information and Resource Centre
  29465. Lines: 13
  29466. Message-Id: <37aeq1$8ji@gateway.dircsa.org.au>
  29467. References: <36lhti$cp0@news.ysu.edu>
  29468. Nntp-Posting-Host: gateway.dircsa.org.au
  29469. X-Newsreader: TIN [version 1.1 PL8]
  29470. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  29471.  
  29472. Michael DeCosta III (am856@yfn.ysu.edu) wrote:
  29473.  
  29474. : Hmmm....I know Columbia probably doesn't have the staff for this,
  29475. : but it sure sounds like a Kermit CD-ROM full of Kermits, Kermit utilities,
  29476. : scripts and manuals from Columbia could be a fund generator?
  29477.  
  29478. Sounds good and very logical. It would save on buying tapes, and if updated
  29479. with major releases (e.g. C-Kermit 5A 190) would save on FTPing. 
  29480.  
  29481. -- 
  29482. Arthur Marsh, telephone +61-8-370-2365, fax +61-8-370-2133, +61-8-223-5082 
  29483.                arthur@gateway.dircsa.org.au, arthur@cswamp.apana.org.au
  29484. .endofsig
  29485.  
  29486. From news@columbia.edu Mon Oct 10 16:53:29 1994
  29487. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18365
  29488.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 10 Oct 1994 13:02:46 -0400
  29489. Received: by apakabar.cc.columbia.edu id AA06105
  29490.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 10 Oct 1994 13:02:44 -0400
  29491. Path: news.columbia.edu!panix!MathWorks.Com!news2.near.net!news.delphi.com!news.delphi.com!not-for-mail
  29492. From: beckere@news.delphi.com (BECKERE@DELPHI.COM)
  29493. Newsgroups: comp.protocols.kermit.misc
  29494. Subject: changing IRQ's
  29495. Date: 10 Oct 1994 16:53:29 -0000
  29496. Organization: Delphi Internet Services Corporation
  29497. Lines: 6
  29498. Message-Id: <37bri9$iml@news.delphi.com>
  29499. Nntp-Posting-Host: news.delphi.com
  29500. Keywords: IRQ
  29501. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  29502.  
  29503. can anyone out there tell me how to change IRQ's in Kermit 3.11.
  29504. i'm trying to tell it to recognize com4 at IRQ2. 
  29505. thanks for any help
  29506.  
  29507.  
  29508.  
  29509.  
  29510. From news@columbia.edu Mon Oct 10 18:47:27 1994
  29511. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29693
  29512.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 10 Oct 1994 15:31:05 -0400
  29513. Received: by apakabar.cc.columbia.edu id AA18360
  29514.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 10 Oct 1994 15:31:04 -0400
  29515. Newsgroups: comp.protocols.kermit.misc
  29516. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!EU.net!sunic!seunet!news2.swip.net!seunet!kullmar!bk
  29517. From: bk@kullmar.se (Bo Kullmar)
  29518. Subject: Re: Crash recovery ?
  29519. Message-Id: <1994Oct10.184727.18890@kullmar.se>
  29520. Organization: ABC-Klubben
  29521. References: <36ua84$b7p@canopus.cc.umanitoba.ca>
  29522. Date: Mon, 10 Oct 1994 18:47:27 GMT
  29523. Lines: 12
  29524. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  29525.  
  29526. In <36ua84$b7p@canopus.cc.umanitoba.ca> rahardj@cc.umanitoba.ca (Budi Rahardjo) writes:
  29527.  
  29528. >Is there a plan to add crash recovery mechanism in kermit protocol?
  29529. >This is the most important factor for me to use zmodem.
  29530.  
  29531. It is supported in C-Kermit 5A(190) BETA. You have to enable it with
  29532. a command and it is only for binary files. The Kermit people don't
  29533. like the automatic recovery funktion that is used in Zmodem. I belive
  29534. that this function is comming in MS-DOS Kermit as well.
  29535.  
  29536. --Bo Kullmar
  29537.  
  29538.  
  29539. From news@columbia.edu Mon Oct 10 19:25:08 1994
  29540. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01733
  29541.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 10 Oct 1994 15:57:43 -0400
  29542. Received: by apakabar.cc.columbia.edu id AA20552
  29543.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 10 Oct 1994 15:57:42 -0400
  29544. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!pipex!sunic!news.funet.fi!news.cc.tut.fi!kvarkki.ee.tut.fi!not-for-mail
  29545. From: kaukasoi@ee.tut.fi (Kaukasoina Petri)
  29546. Newsgroups: comp.protocols.kermit.misc
  29547. Subject: Re: How can I speed up screen updates in Kermit?
  29548. Date: 10 Oct 1994 21:25:08 +0200
  29549. Organization: Tampere University of Technology
  29550. Lines: 16
  29551. Distribution: world
  29552. Message-Id: <37c4ek$ado@kvarkki.ee.tut.fi>
  29553. References: <377fcp$6id@apakabar.cc.columbia.edu> <1994Oct8.205950.29229@cc.usu.edu> <377pbp$fkq@apakabar.cc.columbia.edu>
  29554. Nntp-Posting-Host: kvarkki.ee.tut.fi
  29555. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  29556.  
  29557. Yee Chang Lee wrote:
  29558.  
  29559. >I use Kermit and Telix, plus an Intel 144/144e 14.4k external model, to log
  29560. >into Columbia University's Unix server.  One place the difference in screen
  29561. >updating is very prominent is with my preferred editor, JOE.  Ctrl-K-H in
  29562. >JOE brings up a 10-line help window on the top of my screen.  I'm using
  29563. >Telix right now, and the window _flashes_ onto the screen, everything below
  29564. >the screen gets moved down enough to make room, etc.
  29565.  
  29566. One more suggestion to solve the problem: Maybe you setenv TERM vt100
  29567. in your unix account when you use Telix and vt320 when you use
  29568. MS-Kermit?  Make sure you set the same TERM type in both cases!  If the
  29569. termcap entry for vt320 is not optimal, your editor may have to redraw
  29570. the whole page instead of just moving a part of screen to make room.
  29571.  
  29572. -Petri
  29573.  
  29574. From news@columbia.edu Mon Oct 10 07:42:05 1994
  29575. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06100
  29576.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 10 Oct 1994 16:55:50 -0400
  29577. Received: by apakabar.cc.columbia.edu id AA25896
  29578.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 10 Oct 1994 16:55:48 -0400
  29579. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!swrinde!ihnp4.ucsd.edu!dog.ee.lbl.gov!news.cs.utah.edu!cc.usu.edu!jrd
  29580. From: jrd@cc.usu.edu (Joe Doupnik)
  29581. Newsgroups: comp.protocols.kermit.misc
  29582. Subject: Re: changing IRQ's
  29583. Message-Id: <1994Oct10.134205.29366@cc.usu.edu>
  29584. Date: 10 Oct 94 13:42:05 MDT
  29585. References: <37bri9$iml@news.delphi.com>
  29586. Organization: Utah State University
  29587. Lines: 9
  29588. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  29589.  
  29590. In article <37bri9$iml@news.delphi.com>, beckere@news.delphi.com (BECKERE@DELPHI.COM) writes:
  29591. > can anyone out there tell me how to change IRQ's in Kermit 3.11.
  29592. > i'm trying to tell it to recognize com4 at IRQ2. 
  29593. > thanks for any help
  29594. ------------
  29595.     In the fine manual, which I presume you have handy, is command
  29596. SET COMx port irq. Of course there is also the built-in "?" context sensitive
  29597. help available instantly.
  29598.     Joe D.
  29599.  
  29600. From news@columbia.edu Mon Oct 10 21:01:53 1994
  29601. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07018
  29602.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 10 Oct 1994 17:10:44 -0400
  29603. Received: by apakabar.cc.columbia.edu id AA27178
  29604.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 10 Oct 1994 17:10:43 -0400
  29605. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!news.sprintlink.net!news.primenet.com!usr1.primenet.com!jew
  29606. From: jew@usr1.primenet.com (James Ward)
  29607. Newsgroups: comp.protocols.kermit.misc
  29608. Subject: MS-Kermit under Windows problems: set host
  29609. Date: 10 Oct 1994 21:01:53 GMT
  29610. Organization: Primenet
  29611. Lines: 12
  29612. Message-Id: <37ca41$46l@news.primenet.com>
  29613. Nntp-Posting-Host: usr1.primenet.com
  29614. X-Newsreader: TIN [version 1.2 PL2]
  29615. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  29616.  
  29617. I'm having problems getting MS-Kermit 3.13 to access my network when run
  29618. under Windows.  Here's my net stack:
  29619.  
  29620. \LSL.COM
  29621. C:\3C5X9.COM
  29622. lh ipxodi
  29623. netx
  29624. C:\PCTCP\ODIPKT.COM
  29625. C:\PCTCP\ETHDRV.EXE
  29626.  
  29627. What do I need to do to get kermit to do network things, set host, etc.
  29628.  
  29629.  
  29630. From news@columbia.edu Mon Oct 10 21:04:17 1994
  29631. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07032
  29632.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 10 Oct 1994 17:10:49 -0400
  29633. Received: by apakabar.cc.columbia.edu id AA27184
  29634.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 10 Oct 1994 17:10:47 -0400
  29635. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!news.sprintlink.net!news.primenet.com!usr1.primenet.com!jew
  29636. From: jew@usr1.primenet.com (James Ward)
  29637. Newsgroups: comp.protocols.kermit.misc
  29638. Subject: MS-Kermit under Windows problems: Shiva LAN-rover
  29639. Date: 10 Oct 1994 21:04:17 GMT
  29640. Organization: Primenet
  29641. Lines: 5
  29642. Message-Id: <37ca8h$46l@news.primenet.com>
  29643. Nntp-Posting-Host: usr1.primenet.com
  29644. X-Newsreader: TIN [version 1.2 PL2]
  29645. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  29646.  
  29647. I am trying to access a Shiva LAN-Rover with MS-Kermit 3.13 under Windows.
  29648. I have the Shiva software set to redirect COM3, but I cannot convince Kermit
  29649. to use the port.  I have tried port Novell, COM3, etc.  Any ideas?
  29650.  
  29651. Procomm Plus for Windows works fine.
  29652.  
  29653. From news@columbia.edu Mon Oct 10 08:25:56 1994
  29654. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07719
  29655.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 10 Oct 1994 17:23:35 -0400
  29656. Received: by apakabar.cc.columbia.edu id AA28410
  29657.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 10 Oct 1994 17:23:32 -0400
  29658. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  29659. From: jrd@cc.usu.edu (Joe Doupnik)
  29660. Newsgroups: comp.protocols.kermit.misc
  29661. Subject: Looking for FAQ maintainer
  29662. Message-Id: <1994Oct10.142556.29376@cc.usu.edu>
  29663. Date: 10 Oct 94 14:25:56 MDT
  29664. Organization: Utah State University
  29665. Lines: 13
  29666. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  29667.  
  29668.     Now that the regulars have snuggled down in their chairs and
  29669. the lengthy greeting ceremonies seem to be drawing to an end I think
  29670. it's time for someone to consider being a Keeper of the FAQ for the
  29671. list.
  29672.     Most common query to-date is how to get max speed at max
  29673. vulnerablity. Other c.q.s are running on non-standard serial port
  29674. settings, where to find Kermits, what's this fine manual stuff anyway.
  29675. Prospective c.q.s are how to add settings for the next wave of cute
  29676. modems, binary versus text modes, reporting which Kermit and version 
  29677. on each end, version numbers of the most widely used Kermits.
  29678.     There! I've done my part. Any volunteers keeping notes and
  29679. willing to maintain a FAQ?
  29680.         Joe D.
  29681.  
  29682. From news@columbia.edu Mon Oct 10 22:45:57 1994
  29683. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13659
  29684.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 10 Oct 1994 18:55:25 -0400
  29685. Received: by apakabar.cc.columbia.edu id AA05745
  29686.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 10 Oct 1994 18:55:24 -0400
  29687. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!news.sprintlink.net!news.infi.net!larry.infi.net!fastcart
  29688. From: fastcart@infi.net (Arcell B. Frazier)
  29689. Newsgroups: comp.protocols.kermit.misc
  29690. Subject: Re: changing IRQ's
  29691. Date: 10 Oct 1994 22:45:57 GMT
  29692. Organization: InfiNet
  29693. Lines: 26
  29694. Message-Id: <37cg75$n6o@lucy.infi.net>
  29695. Nntp-Posting-Host: larry.infi.net
  29696. To: jrd@cc.usu.edu (Joe Doupnik)
  29697. X-Newsreader: TIN [version 1.2 PL2]
  29698.  
  29699. In article <1994Oct10.134205.29366@cc.usu.edu> you wrote:
  29700. : In article <37bri9$iml@news.delphi.com>, beckere@news.delphi.com (BECKERE@DELPHI.COM) writes:
  29701. : > can anyone out there tell me how to change IRQ's in Kermit 3.11.
  29702. : > i'm trying to tell it to recognize com4 at IRQ2. 
  29703. : > thanks for any help
  29704. : ------------
  29705. :     In the fine manual, which I presume you have handy, is command
  29706. : SET COMx port irq. Of course there is also the built-in "?" context sensitive
  29707. : help available instantly.
  29708. :     Joe D.
  29709.  
  29710. I just helped my brother to setup a new modem.  We did this  all day to find a
  29711. way to get it to work.  Its:
  29712.  
  29713. set com4 <address> \2
  29714.  
  29715. Where address is the COM4 address.  You have to read your computer manual to
  29716. find it.  MSK guesses ours at \x02f8 or \x02e8.  But, ours can also be \x03e8
  29717. and \x03f8.  
  29718.  
  29719. set com2 \x2f8 \3
  29720.  
  29721. works for us.
  29722.  
  29723. --
  29724. Fast Cart
  29725.  
  29726. From news@columbia.edu Mon Oct 10 18:52:54 1994
  29727. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13721
  29728.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 10 Oct 1994 18:56:47 -0400
  29729. Received: by apakabar.cc.columbia.edu id AA05963
  29730.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 10 Oct 1994 18:56:45 -0400
  29731. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!uhog.mit.edu!europa.eng.gtefsd.com!swiss.ans.net!cmcl2!cmcl2.nyu.edu!chapman
  29732. From: chapman@acf2.nyu.edu (chapman)
  29733. Newsgroups: comp.protocols.kermit.misc
  29734. Subject: Mac Kermit "capture"
  29735. Date: 10 Oct 1994 18:52:54 GMT
  29736. Organization: New York University
  29737. Lines: 8
  29738. Message-Id: <37c2i6$14r@cmcl2.NYU.EDU>
  29739. Nntp-Posting-Host: acf2.nyu.edu
  29740. X-Newsreader: TIN [version 1.2 PL2]
  29741. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  29742.  
  29743. There is a greyed-out menu option in Macintosh Kermit in the File menu
  29744. called
  29745.  
  29746.   Print Captured Text...
  29747.  
  29748. Can you tell me what this is, and if it's implemented?
  29749.  
  29750. - Gary Chapman, NYU
  29751.  
  29752. From news@columbia.edu Tue Oct 11 00:10:21 1994
  29753. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17615
  29754.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 10 Oct 1994 20:10:23 -0400
  29755. Received: by apakabar.cc.columbia.edu id AA11396
  29756.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 10 Oct 1994 20:10:22 -0400
  29757. Path: news.columbia.edu!usenet
  29758. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  29759. Newsgroups: comp.protocols.kermit.misc
  29760. Subject: Re: Mac Kermit "capture"
  29761. Date: 11 Oct 1994 00:10:21 GMT
  29762. Organization: Columbia University
  29763. Lines: 38
  29764. Message-Id: <37cl5d$b42@apakabar.cc.columbia.edu>
  29765. References: <37c2i6$14r@cmcl2.NYU.EDU>
  29766. Nntp-Posting-Host: fdc.cc.columbia.edu
  29767. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  29768.  
  29769. In article <37c2i6$14r@cmcl2.NYU.EDU> chapman@acf2.nyu.edu (chapman) writes:
  29770. > There is a greyed-out menu option in Macintosh Kermit in the File menu
  29771. > called
  29772. >   Print Captured Text...
  29773. > Can you tell me what this is, and if it's implemented?
  29774. The only kind of printing currently supported by Mac Kermit is host-directed
  29775. printing, which occurs when the host sends VT100 "printer on" and "printer
  29776. off" sequences.
  29777.  
  29778. Thus the print menu is normally dimmed.  When the host sends:
  29779.  
  29780.   ESC [ 5 i  (or)   ESC [ ? 5 i   --  Turn on printer
  29781.   ...text...
  29782.   ESC [ 4 i  (or)   ESC [ ? 4 i   --  Turn off printer
  29783.  
  29784. The text between these two sequences is put into the "capture buffer".  When
  29785. the turn-off-printer sequence is received, the Print menu items become
  29786. undimmed and you can print the captured text.  There is a limit of about 32K
  29787. on the size of this text.
  29788.  
  29789. This type of printing is normally accomplished with a utility on the computer
  29790. that you have connected with Mac Kermit, such a "pcprint" UNIX shell script.
  29791.  
  29792.   NOTE: As of edit 190, the Print menus have changed somewhat, but the
  29793.   operation is substantially the same.  When transparent print material
  29794.   arrives, a box appears on the screen saying "Capturing text to be printed",
  29795.   and when the transparent print operation is complete, the "Print captured
  29796.   text" menu item is activated.  There is a new "Print..." item which is
  29797.   undimmed at all times, but apparently does not do anything.
  29798.  
  29799. Reportedly, host directed printing works better in 0.99(190) than in
  29800. earlier edits, but the print buffer is never cleared.
  29801.  
  29802. Hopefully, future releases of Mac Kermit will have additional printing
  29803. capabilities: print screen, print selection, log session to printer, etc.
  29804.  
  29805. From news@columbia.edu Tue Oct 11 01:45:55 1994
  29806. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22134
  29807.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 10 Oct 1994 21:45:58 -0400
  29808. Received: by apakabar.cc.columbia.edu id AA18385
  29809.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 10 Oct 1994 21:45:57 -0400
  29810. Path: news.columbia.edu!watsun.cc.columbia.edu!evarts
  29811. From: evarts@watsun.cc.columbia.edu (Maxwell E Evarts)
  29812. Newsgroups: comp.protocols.kermit.misc
  29813. Subject: Re: changing IRQ's
  29814. Date: 11 Oct 1994 01:45:55 GMT
  29815. Organization: Columbia University
  29816. Lines: 16
  29817. Message-Id: <37cqoj$huf@apakabar.cc.columbia.edu>
  29818. References: <37cg75$n6o@lucy.infi.net>
  29819. Nntp-Posting-Host: watsun.cc.columbia.edu
  29820. Summary: Close, but not quite...
  29821. Keywords: IRQs SETTING MS-KERMIT
  29822. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  29823.  
  29824.  
  29825. Maybe the \2 in the "set com4 <address> \2" works, but the exact syntax
  29826. doesn't call for it, i.e. it should be:
  29827.  
  29828.     set com4 \x2e8 2
  29829.  
  29830. 2e8 being the most common choice for the com4 port address, but as the
  29831. previous poster suggests check the manual/jumper settings/dip-switch
  29832. settings to be sure.
  29833.  
  29834. - Max
  29835.  
  29836. +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
  29837. Maxwell Evarts                     evarts@watsun.cc.columbia.edu
  29838. Kermit Distribution
  29839. Columbia University - AcIS         evarts@CUNIXF.BITNET
  29840.  
  29841. From news@columbia.edu Mon Oct 10 13:15:12 1994
  29842. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23265
  29843.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 10 Oct 1994 22:13:32 -0400
  29844. Received: by apakabar.cc.columbia.edu id AA20201
  29845.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 10 Oct 1994 22:13:31 -0400
  29846. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news.moneng.mei.com!hookup!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  29847. From: jrd@cc.usu.edu (Joe Doupnik)
  29848. Newsgroups: comp.protocols.kermit.misc
  29849. Subject: Re: MS-Kermit under Windows problems: set host
  29850. Message-Id: <1994Oct10.191513.29419@cc.usu.edu>
  29851. Date: 10 Oct 94 19:15:12 MDT
  29852. References: <37ca41$46l@news.primenet.com>
  29853. Organization: Utah State University
  29854. Lines: 44
  29855. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  29856.  
  29857. In article <37ca41$46l@news.primenet.com>, jew@usr1.primenet.com (James Ward) writes:
  29858. > I'm having problems getting MS-Kermit 3.13 to access my network when run
  29859. > under Windows.  Here's my net stack:
  29860. > \LSL.COM
  29861. > C:\3C5X9.COM
  29862. > lh ipxodi
  29863. > netx
  29864. > C:\PCTCP\ODIPKT.COM
  29865. > C:\PCTCP\ETHDRV.EXE
  29866. > What do I need to do to get kermit to do network things, set host, etc.
  29867. -------------
  29868.     Let's walk through this to see what is happening, and then your
  29869. options will be clear.
  29870.     You are using Novell's ODI to manage the board. That's LSL followed
  29871. by the board ODI driver (MLID in ODI-speak). That forms the ODI handler.
  29872. IPXODI comes in as one ODI client, and then ODIPKT from FTP Inc comes in
  29873. as a second ODI client. So far so good. Netx uses IPXODI so we are not 
  29874. concerned with it here. ETHDRV is FTP Inc's TCP/IP stack, and here is
  29875. where the complication begins.
  29876.     If you try to run Kermit's internal TCP/IP stack (SET PORT TCP/IP)
  29877. then you would be trying to load a second TCP/IP stack in parallel with
  29878. the first. That is fatal. Don't do it.
  29879.     So now, what to do constructively?
  29880.  
  29881.     Plan A: run Kermit on the top of Ethdrv, by using FTP Inc Telnet
  29882. module TNGLASS. See your FTP Inc documentation. For Kermit use SET PORT
  29883. BIOS1 to couple to the Int 14h interface provided by Tnglass. A sample
  29884. command line would be similar to
  29885.     tnglass -hhost.domain -c1 -ekermit.exe
  29886. which specfies the host, Bios port 1 for comms, and executes Kermit.exe
  29887. to be the terminal emulator.
  29888.  
  29889.     Plan B: unload both Ethdrv and Odipkt. Then run Kermit straight
  29890. over ODI. Use Kermit command SET PORT TCP/IP ... in this case.
  29891.  
  29892.     Of the two, the second is far faster and permits multiple Telnet
  29893. sessions. Choose the method which best suits your requirements. Note that
  29894. FTP Inc's ODIPKT uses ARP protocol for copy protection detection and Kermit
  29895. won't be able to use it and hence won't be able to do TCP/IP work. Harvard's
  29896. ODIPKT will work with both Ethdrv and Kermit, though Kermit needs it and
  29897. winpkt only when running in Windows.
  29898.     Joe D. 
  29899.  
  29900. From news@columbia.edu Mon Oct 10 13:23:32 1994
  29901. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23269
  29902.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 10 Oct 1994 22:13:33 -0400
  29903. Received: by apakabar.cc.columbia.edu id AA20207
  29904.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 10 Oct 1994 22:13:32 -0400
  29905. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news.moneng.mei.com!hookup!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  29906. From: jrd@cc.usu.edu (Joe Doupnik)
  29907. Newsgroups: comp.protocols.kermit.misc
  29908. Subject: Re: MS-Kermit under Windows problems: Shiva LAN-rover
  29909. Message-Id: <1994Oct10.192333.29420@cc.usu.edu>
  29910. Date: 10 Oct 94 19:23:32 MDT
  29911. References: <37ca8h$46l@news.primenet.com>
  29912. Organization: Utah State University
  29913. Lines: 29
  29914. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  29915.  
  29916. In article <37ca8h$46l@news.primenet.com>, jew@usr1.primenet.com (James Ward) writes:
  29917. > I am trying to access a Shiva LAN-Rover with MS-Kermit 3.13 under Windows.
  29918. > I have the Shiva software set to redirect COM3, but I cannot convince Kermit
  29919. > to use the port.  I have tried port Novell, COM3, etc.  Any ideas?
  29920. > Procomm Plus for Windows works fine.
  29921. --------------
  29922.     There is a misunderstanding about what SET PORT COM3 does in Kermit.
  29923. It means go straight to the serial port hardware. The LAN-Rover is merely
  29924. creating an Int 14h Bios-like software interface, not a hardware one which
  29925. is impossible, and you should tell Kermit SET PORT BIOS1 to couple to it.
  29926.     I'm guessing that is what Shiva has done because that is by far
  29927. the most common tactic in such cases. Your Shiva manual should say more.
  29928.     To counteract this confusion we've added some words to the
  29929. documentation for MSK v3.14 explaining the hardware vs Int 14h choices
  29930. more clearly.
  29931.     Now, one more guess then I'm done. If the modem provides a real
  29932. serial port on COM3 then that's not "redirection"; it is being a regular
  29933. modem. In that case either
  29934.     - the system provides the COM3 port address and Kermit has to
  29935. choose between IRQ 3 and 4 (since there is NO standard on COM3/4), or
  29936.     - you tell Kermit the port and IRQ via the SET COM3 port irq
  29937. command.
  29938.     Procomm makes plenty of macho assumptions without telling you
  29939. about it. Kermit does not play that roughly with your machine.
  29940.     We have a large amount of documentation talking about modems and
  29941. such as part of the distribution text set. Please go to kermit.columbia.edu,
  29942. cd kermit/a and get ms*.bwr, ms*.upd, and msr313.pch (all text files).
  29943.     Joe D.
  29944.  
  29945. From news@columbia.edu Tue Oct 11 04:35:54 1994
  29946. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29973
  29947.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 11 Oct 1994 00:43:39 -0400
  29948. Received: by apakabar.cc.columbia.edu id AA00563
  29949.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 11 Oct 1994 00:43:37 -0400
  29950. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news.sprintlink.net!news.infi.net!larry.infi.net!fastcart
  29951. From: fastcart@infi.net (Arcell B. Frazier)
  29952. Newsgroups: comp.protocols.kermit.misc
  29953. Subject: Re: changing IRQ's
  29954. Date: 11 Oct 1994 04:35:54 GMT
  29955. Organization: InfiNet
  29956. Lines: 25
  29957. Message-Id: <37d4na$j9u@lucy.infi.net>
  29958. References: <37cg75$n6o@lucy.infi.net> <37cqoj$huf@apakabar.cc.columbia.edu>
  29959. Nntp-Posting-Host: larry.infi.net
  29960. X-Newsreader: TIN [version 1.2 PL2]
  29961. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  29962.  
  29963. Maxwell E Evarts (evarts@watsun.cc.columbia.edu) wrote:
  29964.  
  29965. : Maybe the \2 in the "set com4 <address> \2" works, but the exact syntax
  29966. : doesn't call for it, i.e. it should be:
  29967.  
  29968. :     set com4 \x2e8 2
  29969.  
  29970. : 2e8 being the most common choice for the com4 port address, but as the
  29971. : previous poster suggests check the manual/jumper settings/dip-switch
  29972. : settings to be sure.
  29973.  
  29974. : - Max
  29975.  
  29976. I'm using MSK 3.13, and when I type:
  29977.  
  29978. set comx \xxxx ?
  29979.  
  29980. It says:
  29981.  
  29982. Enter, or IRQ of port (ex: \3)
  29983.  
  29984. So, I did what it says.  *shrug*
  29985.  
  29986. --
  29987. Fast Cart
  29988.  
  29989. From news@columbia.edu Tue Oct 11 03:10:23 1994
  29990. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00277
  29991.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 11 Oct 1994 00:46:18 -0400
  29992. Received: by apakabar.cc.columbia.edu id AA00720
  29993.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 11 Oct 1994 00:46:17 -0400
  29994. Newsgroups: comp.protocols.kermit.misc
  29995. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!MathWorks.Com!solaris.cc.vt.edu!spcuna!ritz!kudut
  29996. From: kudut@ritz.mordor.com (Ken)
  29997. Subject: Re: Ring-bound Kermit Manuals
  29998. References: <370rss$cf7@canopus.cc.umanitoba.ca> <Cx9A7D.23I@ritz.mordor.com> <372cbb$p7l@mcrware.microware.com> <CxB32w.L21@ritz.mordor.com> <1994Oct9.180929.6456@eisner>
  29999. Sender: kudut@ritz.mordor.com (Ken Udut)
  30000. Organization: Mordor International BBS
  30001. Date: Tue, 11 Oct 1994 03:10:23 GMT
  30002. Message-Id: <V8Wckqo7IZ7I071yn@ritz.mordor.com>
  30003. Lines: 38
  30004. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  30005.  
  30006. In article <1994Oct9.180929.6456@eisner>, billy@mix.com wrote:
  30007. > In article <CxB32w.L21@ritz.mordor.com> Ken Udut
  30008. > <kudut@ritz.mordor.com> writes:
  30009. > > Or, if ringbound is prohibitively expensive, how about looseleaf, and 
  30010. > > print a nice binder?
  30011. > Docs in a binder would be fine with me.  Unfortunately this doesn't
  30012. > seem to be the trend these days, even though there's a major difference
  30013. > in convenience of use..  Even just the pages (and I supply the binder)
  30014. > would suffice if cost or store shelf space are otherwise problems.
  30015. > Billy Y..
  30016.  
  30017. It's a pity too, since it's cheaper to print looseleaf pages
  30018. (either print on regular paper, or pre-punched 3 hole pages), and
  30019. handier).
  30020.  
  30021. Although one of the drawbacks is that the pages often get ripped,
  30022. etc., and bound books are more permenant(sp?)...
  30023.  
  30024. I have a Turbo Pascal 6 book that I used religiously to learn how
  30025. to program Pascal.  But as thick as it is, it is bound with paper
  30026. and glue binding.  Phooey - try staying open to the book on the first
  30027. or last 50 pages - nearly impossible without a large paperweight 
  30028. holding it down, while typing!
  30029.  
  30030. Hopefully wirebound materials will foster more popularity as more
  30031. binding companies provide it.  Spiral Company is one of the biggest.
  30032.  
  30033. (note: I'm not talking about the plastic ring bound stuff, as they
  30034. aren't as nice to deal with as the wire-ringbound, like the classic
  30035. spiral notebooks)
  30036.  
  30037. -- 
  30038. Kenneth Udut                                          kudut@ritz.mordor.com
  30039. Listowner of Y-RIGHTS@SJUVM.BITNET - discussion on the rights of kids/teens
  30040.  
  30041. From news@columbia.edu Tue Oct 11 11:56:05 1994
  30042. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16361
  30043.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 11 Oct 1994 08:31:10 -0400
  30044. Received: by apakabar.cc.columbia.edu id AA16842
  30045.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 11 Oct 1994 08:31:08 -0400
  30046. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!wupost!news.miami.edu!usenet.ufl.edu!hawk.csd.harris.com!amber!tom
  30047. From: tom@ssd.csd.harris.com (Tom Horsley)
  30048. Newsgroups: comp.protocols.kermit.misc
  30049. Subject: Re: Kermit for Windows/NT
  30050. Date: 11 Oct 1994 11:56:05 GMT
  30051. Organization: Harris Computer Systems Division
  30052. Lines: 18
  30053. Message-Id: <TOM.94Oct11075605@amber.ssd.csd.harris.com>
  30054. References: <1994Sep19.071445.15802@medicus.com> <nicks.781450918@ariel>
  30055.     <TOM.94Oct7123436@amber.ssd.csd.harris.com>
  30056.     <CxBH5o.772@ritz.mordor.com>
  30057. Reply-To: Tom.Horsley@mail.csd.harris.com
  30058. Nntp-Posting-Host: amber.ssd.csd.harris.com
  30059. In-Reply-To: kudut@ritz.mordor.com's message of Fri, 7 Oct 1994 19:08:12 GMT
  30060. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  30061.  
  30062. >Or am I thinking too wishfully about the "portableness" of C code?  :->
  30063.  
  30064. The problem isn't the fact that it is written in C, the problem is that when
  30065. it wants to actually do something (like talk to the serial port, or do
  30066. timeouts in the scripting language, etc) it does them in a U**x-like
  30067. way. Meanwhile the Win32 API, while able to do most of the things U**x can
  30068. do functionally, has a completely different philosophy about the way things
  30069. work (often a better philosophy, but certainly different :-).
  30070.  
  30071. Since I am more interested at this point in learning "the right way" to do
  30072. things in Win32, than I am in porting kermit, that's why I say I am unlikely
  30073. to do anything real soon.
  30074. --
  30075. --
  30076. Tom.Horsley@mail.csd.harris.com
  30077. Home: 511 Kingbird Circle Delray Beach FL  33444
  30078. Work: Harris Computers, 2101 W. Cypress Creek Rd. Ft. Lauderdale FL  33309
  30079. Take the pledge! No votes for Ollie North supporters! NO POND SCUM!
  30080.  
  30081. From news@columbia.edu Tue Oct 11 03:22:46 1994
  30082. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25055
  30083.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 11 Oct 1994 10:42:07 -0400
  30084. Received: by apakabar.cc.columbia.edu id AA26183
  30085.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 11 Oct 1994 10:42:02 -0400
  30086. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!geraldo.cc.utexas.edu!axpvms.cc.utexas.edu!sauron
  30087. From: sauron@axpvms.cc.utexas.edu
  30088. Newsgroups: comp.protocols.kermit.misc
  30089. Subject: Kermit over telnet on unix
  30090. Date: 11 Oct 94 09:22:46 CST
  30091. Organization: University of Texas @ Austin
  30092. Lines: 10
  30093. Message-Id: <1994Oct11.092246@axpvms.cc.utexas.edu>
  30094. Nntp-Posting-Host: axpvms.cc.utexas.edu
  30095. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  30096.  
  30097.  
  30098.  
  30099. How do I run kermit over a telnet link? The man page is not very helpfull.
  30100. I want to transfer files (that I'm having to get via capturing , with
  30101. errors) from a BBS that dosen't let me get at them via FTP.
  30102. Any ideas?
  30103. TIA.
  30104. Ian Stirling.
  30105. send mail either to printf@cix.compulink.co.uk,
  30106.  
  30107.  
  30108. From news@columbia.edu Tue Oct 11 17:09:47 1994
  30109. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10031
  30110.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 11 Oct 1994 13:56:18 -0400
  30111. Received: by apakabar.cc.columbia.edu id AA24752
  30112.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 11 Oct 1994 13:56:17 -0400
  30113. Path: news.columbia.edu!panix!MathWorks.Com!noc.near.net!eisner!burns
  30114. From: burns@eisner.decus.org (Scott Burns)
  30115. Newsgroups: comp.protocols.kermit.misc
  30116. Subject: Re: Kermit for Windows/NT
  30117. Message-Id: <1994Oct11.120947.6533@eisner>
  30118. Date: 11 Oct 94 12:09:47 -0500
  30119. Organization: DECUServe
  30120. Lines: 9
  30121. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  30122.  
  30123. Actually I thought that platform independent code was kept in a file
  30124. specific to the new port. Ie. CKVTIO.C is the VAX terminal I/O code. Other
  30125. than that the functions those VAX specific calls get mapped to (ie. say:
  30126. CKERMIT_OUTPUT_SERIAL_PORT on a vax called VAX_OUTPUT_SERIAL_PORT )
  30127.  
  30128. and any limitations imposed by the CKERMIT_OUTPUT_SERIAL_PORT wrapper why should
  30129. there by a problem.
  30130.  
  30131. burns@eisner.decus.org
  30132.  
  30133. From news@columbia.edu Tue Oct 11 02:29:00 1994
  30134. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10357
  30135.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 11 Oct 1994 14:02:29 -0400
  30136. Received: by apakabar.cc.columbia.edu id AA25358
  30137.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 11 Oct 1994 14:02:28 -0400
  30138. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  30139. From: jrd@cc.usu.edu (Joe Doupnik)
  30140. Newsgroups: comp.protocols.kermit.misc
  30141. Subject: backslashing numbers
  30142. Message-Id: <1994Oct11.082901.29456@cc.usu.edu>
  30143. Date: 11 Oct 94 08:29:00 MDT
  30144. Organization: Utah State University
  30145. Lines: 14
  30146. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  30147.  
  30148.     In MS-DOS Kermit command line arguments which are numbers
  30149. can be expressed as 123 or \123 (decimal) or \x5c (hex) or \o67 (octal).
  30150. The backslash is used to inform the parser of a following numeric and of 
  30151. the base of it. If there the context is unambiguous and the base is 10 
  30152. then no backslash is necessary. But    echo Beep\7 to you guys   needs the 
  30153. backslash to mean binary 7 in this case.
  30154.     Deep down in the code the number converter really wants a
  30155. leading backslash. In almost every place (excepting where I forgot)
  30156. in the program where a number is expected the code accepts one without
  30157. a backslash and the code prepends a missing one.
  30158.     Adding a backslash does no harm, but don't use two because,
  30159. starting in MSK 3.14 that means a literal backslash, as in C.
  30160.     Joe D.
  30161.  
  30162.  
  30163. From news@columbia.edu Tue Oct 11 19:50:58 1994
  30164. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04385
  30165.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 11 Oct 1994 17:01:51 -0400
  30166. Received: by apakabar.cc.columbia.edu id AA11573
  30167.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 11 Oct 1994 17:01:50 -0400
  30168. Newsgroups: comp.protocols.kermit.misc
  30169. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!MathWorks.Com!yeshua.marcam.com!charnel.ecst.csuchico.edu!csusac!csus.edu!netcom.com!jolomo
  30170. From: jolomo@netcom.com (Joe Morris)
  30171. Subject: Re: C-Kermit and Screen Rollback
  30172. Message-Id: <jolomoCxIxsy.Iut@netcom.com>
  30173. Organization: The Future Fair
  30174. X-Newsreader: TIN [version 1.2 PL1]
  30175. References: <37ac48$3q7@chopin.udel.edu>
  30176. Date: Tue, 11 Oct 1994 19:50:58 GMT
  30177. Lines: 19
  30178. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  30179.  
  30180. On 9 Oct 1994 23:23:52 -0400 Jerry Alexandratos wrote:
  30181.  
  30182. > Okay, now one of the things I really love about MS-Kermit, and have
  30183. > gotten rather used to using is the screen rollback feature.  Now, I
  30184. > know that this feature isn't implemented under C-Kermit, but my
  30185. > question is, does anyone out there know of a good way to emulate such a
  30186. > feature?  I'm looking for any type of answer, from using third-party
  30187. > programs, to nifty scripts, etc...
  30188.  
  30189. The general-all-purpose solution I've gone with is "screen", ftp-able
  30190. from prep.ai.mit.edu/pub/gnu, which is a character-based-terminal
  30191. screen manager.  It gives you scroll-back as well as a million
  30192. other life-saving features which I won't go into here, other than
  30193. if you've never heard of it and you work on a Unix-like system,
  30194. give it a look-over.
  30195.  
  30196.      Good luck
  30197. --
  30198.         -joe        "Honey, they're in *everybody's* eggs" --firesigns
  30199.  
  30200. From news@columbia.edu Tue Oct 11 22:53:57 1994
  30201. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03804
  30202.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 12 Oct 1994 01:51:44 -0400
  30203. Received: by apakabar.cc.columbia.edu id AA18730
  30204.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 12 Oct 1994 01:51:42 -0400
  30205. Path: news.columbia.edu!psinntp!psinntp!rutgers!sgigate.sgi.com!olivea!charnel.ecst.csuchico.edu!xmission!xmission!not-for-mail
  30206. From: fozz@xmission.com (Fozziliny Moo)
  30207. Newsgroups: comp.protocols.kermit.misc
  30208. Subject: Re: Kermit over telnet on unix
  30209. Date: 11 Oct 1994 16:53:57 -0600
  30210. Organization: XMission Public Access Internet (801 539 0900)
  30211. Lines: 19
  30212. Message-Id: <37f525$rpg@xmission.xmission.com>
  30213. References: <1994Oct11.092246@axpvms.cc.utexas.edu>
  30214. Nntp-Posting-Host: xmission
  30215. X-Newsreader: NN version 6.5.0 #2 (NOV)
  30216. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  30217.  
  30218. sauron@axpvms.cc.utexas.edu writes:
  30219.  
  30220.  
  30221.  
  30222. >How do I run kermit over a telnet link? The man page is not very helpfull.
  30223. >I want to transfer files (that I'm having to get via capturing , with
  30224. >errors) from a BBS that dosen't let me get at them via FTP.
  30225. >Any ideas?
  30226.  
  30227. Telnet's 7-bit throughput is not friendly with Kermit transfers. If you can,
  30228. use rlogin instead of telnet. Otherwise, you may be able to tweak the 
  30229. Kermit side to work better with telnet. 
  30230.  
  30231. -Fozz
  30232.  
  30233. -- 
  30234. ----fozz@xmission.com---------In Real Life: Doran L. Barton-----------------
  30235. ``Praise to the man who has commuted with Jehovah.''
  30236.     -A common misconception in Christian theology.
  30237.  
  30238. From news@columbia.edu Tue Oct 11 16:41:14 1994
  30239. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06189
  30240.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 12 Oct 1994 03:01:30 -0400
  30241. Received: by apakabar.cc.columbia.edu id AA20976
  30242.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 12 Oct 1994 03:01:29 -0400
  30243. Newsgroups: comp.unix.bsd,comp.os.386bsd.misc,comp.protocols.kermit.misc
  30244. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!pipex!uunet!esseye!scholten
  30245. From: scholten@esseye.si.com (David Scholten)
  30246. Subject: BSDI 1.1 problems using kermit and taylor uucp dial out???
  30247. Message-Id: <CxIp0q.GqH@esseye.si.com>
  30248. Organization: Smiths Industries
  30249. Date: Tue, 11 Oct 1994 16:41:14 GMT
  30250. Lines: 20
  30251. Xref: news.columbia.edu comp.unix.bsd:17132 comp.os.386bsd.misc:4002 comp.protocols.kermit.misc:655
  30252. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  30253.  
  30254. This may be in some faq someplace so I appologize about this.  But I
  30255. am having some weird problems using the latest kermit and taylor to dial
  30256. out from my BSDI 1.1 based box.  The problems are similar in nature:
  30257.  
  30258. kermit:  when I set the line, it either hangs or get a "communications
  30259. disconnected message"  That is all!
  30260.  
  30261. taylor:  when trying to dial out, I get a read/write error to the port.
  30262.  
  30263.  
  30264. Now, I did discover that if I do an stty -f/dev/tty01 clocal, then taylor
  30265. will dial out.  But this only works 75% of the time.  If somebody logs in,
  30266. then I have to redo the clocal.  The clocal doesn't seem to do anything for
  30267. kermit.  Are all these problems related to the getty running on BSD???
  30268.  
  30269. thanks for any help,
  30270. Dave Scholten
  30271.  
  30272. (please send email responses if possible)
  30273.  
  30274.  
  30275. From news@columbia.edu Wed Oct 12 07:57:42 1994
  30276. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10407
  30277.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 12 Oct 1994 05:08:06 -0400
  30278. Received: by apakabar.cc.columbia.edu id AA24100
  30279.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 12 Oct 1994 05:08:06 -0400
  30280. Newsgroups: comp.protocols.kermit.misc
  30281. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!EU.net!chsun!pan!jw
  30282. From: jw@adasoft.ch (Jamie Watson)
  30283. Subject: Re: Kermit distribution discussion, an apology
  30284. Message-Id: <CxJvG6.19D@adasoft.ch>
  30285. Reply-To: jw@pan.UUCP (Jamie Watson)
  30286. Organization: Adasoft AG, Switzerland
  30287. References: <3774gn$jg9@zippo.uwasa.fi>
  30288. Date: Wed, 12 Oct 1994 07:57:42 GMT
  30289. Expires: Tue, 11 Oct 1994 23:00:00 GMT
  30290. Lines: 12
  30291. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  30292.  
  30293. In article <3774gn$jg9@zippo.uwasa.fi> ts@uwasa.fi (Timo Salmi) writes:
  30294. >
  30295. >:-Date: Sat, 8 Oct 1994 20:02:08 +0100
  30296. >:-From: jw@adasoft.ch (Jamie Watson)
  30297. >:-To: ts@uwasa.fi
  30298. >:-Subject: Re: Kermit distribution
  30299.  
  30300. Posting a privately mailed message to the net news is an *extremely* low
  30301. class thing to do.  I am shocked that someone who claims to be such an
  30302. experienced and knowledgeable person would stoop to such a thing.
  30303.  
  30304. jw
  30305.  
  30306. From news@columbia.edu Wed Oct 12 07:48:47 1994
  30307. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10414
  30308.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 12 Oct 1994 05:08:18 -0400
  30309. Received: by apakabar.cc.columbia.edu id AA24098
  30310.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 12 Oct 1994 05:08:05 -0400
  30311. Newsgroups: comp.protocols.kermit.misc
  30312. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!EU.net!chsun!pan!jw
  30313. From: jw@adasoft.ch (Jamie Watson)
  30314. Subject: Re: Columbia University's Kermit copyright
  30315. Message-Id: <CxJv1B.17G@adasoft.ch>
  30316. Reply-To: jw@adasoft.ch (Jamie Watson)
  30317. Organization: Adasoft AG, Switzerland
  30318. References: <9410052152.AA18509@simtel.coast.net> <370rss$cf7@canopus.cc.umanitoba.ca> <Cx9A7D.23I@ritz.mordor.com> <CxDLKx.JAD@adasoft.ch> <377e2t$2hr@Mercury.mcs.com>
  30319. Date: Wed, 12 Oct 1994 07:48:47 GMT
  30320. Expires: Tue, 11 Oct 1994 23:00:00 GMT
  30321. Lines: 19
  30322. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  30323.  
  30324. >>However, the absolute low point so far has been reached when people
  30325. >>start saying "Please tell us all exactly what the legal and financial
  30326. >>restrictions you are working under are, so we can suggest ways to get
  30327. >>around them." 
  30328. >
  30329. >Guess I missed that one.  What I saw was more like people asking what
  30330. >exactly the restrictions are so they can stay within them.
  30331.  
  30332. In message <Cx8DLB.877@teleride.on.ca>, posted by louk@teleride.on.ca
  30333.  
  30334. >What are these detailed organizational and legal constraints under which
  30335. >you operate which supposedly prevent you from simply charging for support
  30336. >or implementing other solutions which seem to make a lot more sense than
  30337. >restricting distribution?
  30338. >
  30339. >Perhaps if you spelled them out so that we can all understand
  30340. >these barriers then we could all creatively figure out a way around them.   
  30341.  
  30342. jw
  30343.  
  30344. From news@columbia.edu Wed Oct 12 11:27:19 1994
  30345. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06566
  30346.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 12 Oct 1994 07:30:44 -0400
  30347. Received: by apakabar.cc.columbia.edu id AA28255
  30348.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 12 Oct 1994 07:30:36 -0400
  30349. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!pipex!warwick!bham!news!B.A.McCauley
  30350. From: B.A.McCauley@bham.ac.uk
  30351. Newsgroups: comp.protocols.kermit.misc
  30352. Subject: KERMIT answer back to Enq (ASCII 5)
  30353. Date: 12 Oct 1994 11:27:19 GMT
  30354. Organization: The University of Birmingham, UK.
  30355. Lines: 11
  30356. Message-Id: <B.A.MCCAULEY.94Oct12122719@wcl-l.bham.ac.uk>
  30357. Nntp-Posting-Host: wcl-l.bham.ac.uk
  30358. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  30359.  
  30360. In MS-KERMIT 3.13 8 the "SET TERM ANSWERBACK" command which contols
  30361. the sesponse to ENQ characters has only settings "ON" and "OFF". This,
  30362. I assume, is a joke. Has it been extended to do something useful in
  30363. later versions?
  30364. --
  30365.     \\   ( )   No Bullshit!   | Email: B.A.McCauley@bham.ac.uk
  30366.  .  _\\__[oo       from       | Phones: +44 121 471 3789 (home)
  30367. .__/  \\ /\@  /~)  /~[   /\/[ |  +44 121 627 2171 (voice) 2175 (fax)
  30368. .  l___\\    /~~) /~~[  /   [ | PGP-fp: D7 03 2A 4B D8 3A 05 37
  30369.  # ll  l\\  ~~~~ ~   ~ ~    ~ |         A1 93 FE EA BE E3 2A 91
  30370. ###LL  LL\\ (Brian McCauley)  | More: finger bam@wcl-rs.bham.ac.uk
  30371.  
  30372. From news@columbia.edu Wed Oct 12 08:03:41 1994
  30373. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00832
  30374.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 12 Oct 1994 08:03:41 -0400
  30375. Received: by apakabar.cc.columbia.edu id AA29334
  30376.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 12 Oct 1994 08:03:39 -0400
  30377. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!tadpole.com!news.dell.com!swrinde!pipex!news.maz.net!news.ppp.de!news.Hanse.DE!lutzifer.hanse.de!wolfhh!ranahh!vg
  30378. Newsgroups: comp.protocols.kermit.misc
  30379. From: vg@ranahh.hanse.de (Volkmar grote)
  30380. Subject: Re: Columbia University's Kermit copyright
  30381. Message-Id: <941005.220452.2v7.rusnews.w164w@ranahh.hanse.de>
  30382. Date: Wed, 5 Oct 1994 22:04:52 CET
  30383. References: <36pbtj$cc0@usenety1.news.prodigy.com> <1994Oct4.101940.24819@chemabs.uucp> <9410041248.AA26638@SimTel.Coast.NET>
  30384. Organization: Me - organized ??!?
  30385. X-Newsreader: rusnews v1.06/UUPC
  30386. Lines: 23
  30387. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  30388.  
  30389. w8sdz@SimTel.Coast.NET (Keith Petersen) writes:
  30390.  
  30391. > swl07@cas.org (Steven W. Layten) writes:
  30392. >>I agree with Frank -- putting Kermit on a CD-ROM and distributing to more
  30393. >>and more persons without a way to pick up funding for the support is
  30394. >>likely to kill the Kermit effort.
  30395. > It wouldn't kill the operation if Columbia offered their own CD-ROM.  If
  30396. > it included the complete documentation it would sell like hotcakes.  The
  30397. > proceeds of that would fund the entire Kermit operation.  They sell
  30398. > 9-track tapes - why not CD-ROMs?
  30399.  
  30400. I would love it. I still miss my 1/2" tape drive and the TK50.
  30401.  
  30402. The debate seems to turn constructive :-|
  30403.  
  30404. Volkmar
  30405. -- 
  30406. vg@ranahh.hanse.DE
  30407. Volkmar Grote, Gilbertstrasse 25, D-22767 Hamburg, Germany, +49-40-31 33 39
  30408.  
  30409. "I want to die peacefully in my sleep like my grandfather.  Not screaming
  30410. in terror like his passengers." (nicked from Jim Harkins)
  30411.  
  30412. From news@columbia.edu Wed Oct 12 13:28:37 1994
  30413. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15067
  30414.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 12 Oct 1994 09:28:41 -0400
  30415. Received: by apakabar.cc.columbia.edu id AA02833
  30416.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 12 Oct 1994 09:28:40 -0400
  30417. Path: news.columbia.edu!usenet
  30418. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  30419. Newsgroups: comp.protocols.kermit.misc
  30420. Subject: Re: KERMIT answer back to Enq (ASCII 5)
  30421. Date: 12 Oct 1994 13:28:37 GMT
  30422. Organization: Columbia University
  30423. Lines: 11
  30424. Message-Id: <37goa6$2of@apakabar.cc.columbia.edu>
  30425. References: <B.A.MCCAULEY.94Oct12122719@wcl-l.bham.ac.uk>
  30426. Nntp-Posting-Host: fdc.cc.columbia.edu
  30427. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  30428.  
  30429. In article <B.A.MCCAULEY.94Oct12122719@wcl-l.bham.ac.uk>  
  30430. B.A.McCauley@bham.ac.uk writes:
  30431. > In MS-KERMIT 3.13 8 the "SET TERM ANSWERBACK" command which contols
  30432. > the sesponse to ENQ characters has only settings "ON" and "OFF". This,
  30433. > I assume, is a joke. Has it been extended to do something useful in
  30434. > later versions?
  30435. >
  30436. No, it's not a joke.  Without overstating the obvious, answerback messages
  30437. pose a certain security risk.
  30438.  
  30439. - Frank
  30440.  
  30441. From news@columbia.edu Wed Oct 12 13:37:41 1994
  30442. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15725
  30443.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 12 Oct 1994 09:37:47 -0400
  30444. Received: by apakabar.cc.columbia.edu id AA06349
  30445.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 12 Oct 1994 09:37:45 -0400
  30446. Path: news.columbia.edu!usenet
  30447. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  30448. Newsgroups: comp.protocols.kermit.misc
  30449. Subject: Re: Kermit over telnet on unix
  30450. Date: 12 Oct 1994 13:37:41 GMT
  30451. Organization: Columbia University
  30452. Lines: 37
  30453. Message-Id: <37gor5$669@apakabar.cc.columbia.edu>
  30454. References: <37f525$rpg@xmission.xmission.com>
  30455. Nntp-Posting-Host: fdc.cc.columbia.edu
  30456. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  30457.  
  30458. In article <37f525$rpg@xmission.xmission.com> fozz@xmission.com (Fozziliny  
  30459. Moo) writes:
  30460. > sauron@axpvms.cc.utexas.edu writes:
  30461. > >How do I run kermit over a telnet link? The man page is not very helpfull.
  30462. > >I want to transfer files (that I'm having to get via capturing , with
  30463. > >errors) from a BBS that dosen't let me get at them via FTP.
  30464. > >Any ideas?
  30465. > Telnet's 7-bit throughput is not friendly with Kermit transfers. If you
  30466. > can, use rlogin instead of telnet. Otherwise, you may be able to tweak the 
  30467. > Kermit side to work better with telnet. 
  30468. I think the question was "how do you do it?".  The answer is: use Kermit's
  30469. TELNET command.  Or if we are talking about MS-DOS Kermit, use the SET
  30470. PORT TCP <host> command.  It's all in the documentation.  In case this is
  30471. not clear: use Kermit *instead of* Telnet.
  30472.  
  30473. As far as performance is concerned, it varies.  On some connections I get
  30474. effective file transfer rates of about 1MB/sec, on others (e.g. cross-
  30475. country or international connections during busy times), much lower.  As
  30476. usual, there are many, many variables.  Also, not all TELNET connections
  30477. are 7-bit.  Try normal file transfer settings, and use long packets and
  30478. a big window size; tell both Kermits to SET FLOW NONE since TCP and IP
  30479. handle flow control themselves quite nicely.  If it doesn't work, then you
  30480. probably do have a 7-bit connection, in which case tell Kermit to SET
  30481. PARITY SPACE.
  30482.  
  30483. If you are talking about "Kermit in the middle", in CONNECT mode between
  30484. two other systems, then (a) be sure you tell this "middle" Kermit to
  30485. SET TERMINAL BYTESIZE 8 and SET COMMAND BYTESIZE, and (b) be sure you are
  30486. using version 5A(190), which performs much better in this situation than
  30487. previous releases.
  30488.  
  30489. One of the big plusses of Kermit software is that the same program works
  30490. uniformly over serial and network connections -- script programming and all.
  30491.  
  30492. - Frank
  30493.  
  30494. From news@columbia.edu Wed Oct 12 13:40:38 1994
  30495. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15868
  30496.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 12 Oct 1994 09:40:42 -0400
  30497. Received: by apakabar.cc.columbia.edu id AA06562
  30498.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 12 Oct 1994 09:40:40 -0400
  30499. Path: news.columbia.edu!usenet
  30500. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  30501. Newsgroups: comp.protocols.kermit.misc
  30502. Subject: Re: BSDI 1.1 problems using kermit and taylor uucp dial out???
  30503. Date: 12 Oct 1994 13:40:38 GMT
  30504. Organization: Columbia University
  30505. Lines: 17
  30506. Message-Id: <37gp0m$6cr@apakabar.cc.columbia.edu>
  30507. References: <CxIp0q.GqH@esseye.si.com>
  30508. Nntp-Posting-Host: fdc.cc.columbia.edu
  30509. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  30510.  
  30511. In article <CxIp0q.GqH@esseye.si.com> scholten@esseye.si.com (David Scholten)  
  30512. writes:
  30513. > This may be in some faq someplace so I appologize about this.  But I
  30514. > am having some weird problems using the latest kermit and taylor to dial
  30515. > out from my BSDI 1.1 based box.  The problems are similar in nature:
  30516. If there is a getty running on the same tty device, shut it down before
  30517. attempting to dial out.  Then, if desired, put it back after your dialout
  30518. session is finished.
  30519.  
  30520. The best way to do this is to wrap Kermit in a shell script that does
  30521. whatever your system requires in order to shut down and restart getty on
  30522. a device.  As you might imagine, details vary wildly from one UNIX 
  30523. implementation to the next, from one release of the same UNIX implementation
  30524. to the next.
  30525.  
  30526. - Frank
  30527.  
  30528. From news@columbia.edu Wed Oct 12 13:50:23 1994
  30529. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16804
  30530.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 12 Oct 1994 09:53:56 -0400
  30531. Received: by apakabar.cc.columbia.edu id AA07546
  30532.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 12 Oct 1994 09:53:55 -0400
  30533. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!MathWorks.Com!europa.eng.gtefsd.com!ulowell!adasoft.ch!not-for-mail
  30534. Newsgroups: comp.protocols.kermit.misc
  30535. From: jw@adasoft.ch (Jamie Watson)
  30536. Message-Id: <-CxJv1B.17G@adasoft.ch>
  30537. Control: cancel <CxJv1B.17G@adasoft.ch>
  30538. Reply-To: jw@adasoft.ch (Jamie Watson)
  30539. Organization: Adasoft AG, Switzerland
  30540. References: <9410052152.AA18509@simtel.coast.net> <370rss$cf7@canopus.cc.umanitoba.ca> <Cx9A7D.23I@ritz.mordor.com> <CxDLKx.JAD@adasoft.ch> <377e2t$2hr@Mercury.mcs.com>
  30541. Subject: cmsg cancel <CxJv1B.17G@adasoft.ch>
  30542. Date: Wed, 12 Oct 1994 13:50:23 GMT
  30543. Approved: news@adasoft.ch
  30544. Lines: 1
  30545. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  30546.  
  30547. cancel <CxJv1B.17G@adasoft.ch>
  30548.  
  30549. From news@columbia.edu Wed Oct 12 13:51:18 1994
  30550. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16893
  30551.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 12 Oct 1994 09:54:45 -0400
  30552. Received: by apakabar.cc.columbia.edu id AA07604
  30553.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 12 Oct 1994 09:54:44 -0400
  30554. Path: news.columbia.edu!sol.ctr.columbia.edu!newsxfer.itd.umich.edu!europa.eng.gtefsd.com!ulowell!adasoft.ch!not-for-mail
  30555. Newsgroups: comp.protocols.kermit.misc
  30556. From: jw@adasoft.ch (Jamie Watson)
  30557. Message-Id: <-CxJvG6.19D@adasoft.ch>
  30558. Control: cancel <CxJvG6.19D@adasoft.ch>
  30559. Reply-To: jw@pan.UUCP (Jamie Watson)
  30560. Organization: Adasoft AG, Switzerland
  30561. References: <3774gn$jg9@zippo.uwasa.fi>
  30562. Subject: cmsg cancel <CxJvG6.19D@adasoft.ch>
  30563. Date: Wed, 12 Oct 1994 13:51:18 GMT
  30564. Approved: news@adasoft.ch
  30565. Lines: 1
  30566. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  30567.  
  30568. cancel <CxJvG6.19D@adasoft.ch>
  30569.  
  30570. From news@columbia.edu Wed Oct 12 12:59:15 1994
  30571. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17819
  30572.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 12 Oct 1994 10:03:10 -0400
  30573. Received: by apakabar.cc.columbia.edu id AA08391
  30574.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 12 Oct 1994 10:03:09 -0400
  30575. Newsgroups: comp.protocols.kermit.misc
  30576. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!pipex!uunet!spcuna!ritz!kudut
  30577. From: kudut@ritz.mordor.com (Ken Udut)
  30578. Subject: Re: KERMIT answer back to Enq (ASCII 5)
  30579. References: <B.A.MCCAULEY.94Oct12122719@wcl-l.bham.ac.uk>
  30580. Organization: Mordor International BBS - Jersey City, NJ
  30581. Date: Wed, 12 Oct 1994 12:59:15 GMT
  30582. Message-Id: <CxK9Er.9xx@ritz.mordor.com>
  30583. Lines: 15
  30584. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  30585.  
  30586. In article <B.A.MCCAULEY.94Oct12122719@wcl-l.bham.ac.uk> B.A.McCauley@bham.ac.uk writes:
  30587. >In MS-KERMIT 3.13 8 the "SET TERM ANSWERBACK" command which contols
  30588. >the sesponse to ENQ characters has only settings "ON" and "OFF". This,
  30589. >I assume, is a joke. Has it been extended to do something useful in
  30590. >later versions?
  30591.  
  30592. Well, I don't use the Enq (Control-E) anymore but I used to, a few years 
  30593. back, on a favorite TBBS board.
  30594.  
  30595. If you set a username/password in MS-Kermit, I *believe* that is what the 
  30596. Control-E received from the host will send out.
  30597.  
  30598.  
  30599. Ken
  30600. kudut@ritz.mordor.com
  30601.  
  30602. From news@columbia.edu Wed Oct 12 03:32:20 1994
  30603. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00846
  30604.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 12 Oct 1994 12:42:53 -0400
  30605. Received: by apakabar.cc.columbia.edu id AA21479
  30606.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 12 Oct 1994 12:42:51 -0400
  30607. Path: news.columbia.edu!sol.ctr.columbia.edu!math.ohio-state.edu!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  30608. From: jrd@cc.usu.edu (Joe Doupnik)
  30609. Newsgroups: comp.protocols.kermit.misc
  30610. Subject: Re: KERMIT answer back to Enq (ASCII 5)
  30611. Message-Id: <1994Oct12.093220.29625@cc.usu.edu>
  30612. Date: 12 Oct 94 09:32:20 MDT
  30613. References: <B.A.MCCAULEY.94Oct12122719@wcl-l.bham.ac.uk>
  30614. Organization: Utah State University
  30615. Lines: 14
  30616. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  30617.  
  30618. In article <B.A.MCCAULEY.94Oct12122719@wcl-l.bham.ac.uk>, B.A.McCauley@bham.ac.uk writes:
  30619. > In MS-KERMIT 3.13 8 the "SET TERM ANSWERBACK" command which contols
  30620. > the sesponse to ENQ characters has only settings "ON" and "OFF". This,
  30621. > I assume, is a joke. Has it been extended to do something useful in
  30622. > later versions?
  30623. ------------
  30624.     Depends upon whom pranks are played. Answerback is a nice way of
  30625. being sucked into someone else's prank when the answerback string is not
  30626. quite what you wanted. We try to avoid this spontaneous suprize by canning
  30627. the response and letting the user turn it on or off. The most common use
  30628. of answerback was stashing passwords, and that is generally regarded as
  30629. not a wise thing to do. 
  30630.     My advice is forget that answerback ever existed.
  30631.     Joe D.
  30632.  
  30633. From news@columbia.edu Wed Oct 12 04:16:09 1994
  30634. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06054
  30635.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 12 Oct 1994 13:49:57 -0400
  30636. Received: by apakabar.cc.columbia.edu id AA27186
  30637.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 12 Oct 1994 13:49:55 -0400
  30638. Path: news.columbia.edu!sol.ctr.columbia.edu!ucsnews!newshub.sdsu.edu!nic-nac.CSU.net!loghost.sdsc.edu!news.tc.cornell.edu!travelers.mail.cornell.edu!news.kei.com!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  30639. From: jrd@cc.usu.edu (Joe Doupnik)
  30640. Newsgroups: comp.protocols.kermit.misc
  30641. Subject: Re: Kermit over telnet on unix
  30642. Message-Id: <1994Oct12.101609.29630@cc.usu.edu>
  30643. Date: 12 Oct 94 10:16:09 MDT
  30644. References: <1994Oct11.092246@axpvms.cc.utexas.edu> <37f525$rpg@xmission.xmission.com>
  30645. Organization: Utah State University
  30646. Lines: 31
  30647. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  30648.  
  30649. In article <37f525$rpg@xmission.xmission.com>, fozz@xmission.com (Fozziliny Moo) writes:
  30650. > sauron@axpvms.cc.utexas.edu writes:
  30651. >>How do I run kermit over a telnet link? The man page is not very helpfull.
  30652. >>I want to transfer files (that I'm having to get via capturing , with
  30653. >>errors) from a BBS that dosen't let me get at them via FTP.
  30654. >>Any ideas?
  30655. > Telnet's 7-bit throughput is not friendly with Kermit transfers. If you can,
  30656. > use rlogin instead of telnet. Otherwise, you may be able to tweak the 
  30657. > Kermit side to work better with telnet. 
  30658. ------------
  30659.     I think I need to make three corrections here.
  30660.     First, Kermit works fine simulating an 8-bit comms channel over
  30661. a 7-bit channel, by design.
  30662.     Second, Telnet is almost always an 8-bit channel these days, needing
  30663. only doubling of IAC (\255) or Kermit prefixing of \255 to prevent unwanted 
  30664. Options stuff. Rlogin is a different animal than Telnet, with its own
  30665. protocol requirements. Some rlogins are easy to get along with and forgive
  30666. the protocol omissions, others aren't. And, as most of us know, rlogin is
  30667. a fat security hole.
  30668.     The reader above is perhaps confusing telnet and rlogin facilities
  30669. peculiar to Telebit Netblazer modem pools, rather than Unix capabilities.
  30670.     Third, I think the original question was how to start a Telnet
  30671. session with C Kermit. The answers are a) read the fine manual and release
  30672. documentation, and b) give command Telnet host  on modern C Kermits. We don't 
  30673. know which version of C Kermit and which Unix you are running so we will pause 
  30674. to see if you have enough information now. 
  30675.         Joe D.
  30676.  
  30677. From news@columbia.edu Wed Oct 12 21:33:20 1994
  30678. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24872
  30679.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 12 Oct 1994 17:33:42 -0400
  30680. Received: by apakabar.cc.columbia.edu id AA16805
  30681.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 12 Oct 1994 17:33:22 -0400
  30682. Path: news.columbia.edu!usenet
  30683. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  30684. Newsgroups: comp.protocols.kermit.misc
  30685. Subject: Intel Modem Script for MS-DOS Kermit
  30686. Date: 12 Oct 1994 21:33:20 GMT
  30687. Organization: Columbia University
  30688. Lines: 143
  30689. Message-Id: <37hkn0$gcv@apakabar.cc.columbia.edu>
  30690. Nntp-Posting-Host: fdc.cc.columbia.edu
  30691. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  30692.  
  30693. A copy of a manual for the "Intel High-Speed Faxmodem" showed up here
  30694. recently.  This is a V.32bis/V.42/V.42bis + MNP etc internal data/fax
  30695. modem for PCs.  Based on the info in manual, the following dialing
  30696. script is postulated, but completely untested, for MS-DOS Kermit.
  30697. Questions:
  30698.  
  30699.  1. Does it work on the "Intel High-Speed Faxmodem"?
  30700.  
  30701.  2. Does it also work on the Intel Satisfaxion modem?
  30702.  
  30703.  3. Does the modem indeed "autobaud" at 57600 bps for AT commands?
  30704.  
  30705. Please reply to me personally, rather than to the list.  Thanks!
  30706.  
  30707. ---(cut here)---
  30708. ; FILE INTEL14.SCR
  30709. ; An MS-DOS Kermit script program for dialing the Intel High-Speed Internal
  30710. ; Faxmodem, to be used with MS-DOS Kermit 3.14 or later.  The modem is set up
  30711. ; for compression, error correction, all types of fallback.  RTS/CTS flow
  30712. ; control, fixed interface speed of 57600 or 38400.
  30713. ;
  30714. def errfail echo \%1, hangup, goto fail ; Macro to handle failures.
  30715. if < VERSION 312 errfail {MS-DOS Kermit 3.12 or later required.}
  30716.  
  30717. define chkerr if fail stop 1 \%1
  30718. define chkok input 3 OK, if fail stop 1 \%1
  30719.  
  30720. ; Macro to try to get attention of modem's command processor
  30721. ; at the given speed, or if no speed given, at the current speed.
  30722. ;
  30723. define atok -
  30724.  if not def \%1 assign \%1 \v(speed), -
  30725.  set speed \%1, -
  30726.  echo Trying \%1..., -
  30727.  output ATQ0V1\13, -
  30728.  input 3 OK, -
  30729.  end \v(status)
  30730.  
  30731. set input echo on        ; So we can watch what happens.
  30732. set input timeout proceed       ; Allow IF SUCCESS, IF FAILURE.
  30733. set input case ignore        ; Use caseless string comparisons
  30734.  
  30735. set parity none            ; Avoid parity foulups
  30736. set flow none            ; Avoid flow control deadlocks
  30737. hangup                ; Begin by dropping DTR
  30738. pause 1                ; for one second
  30739.  
  30740. atok 57600            ; Autobaud...
  30741. if fail atok 38400
  30742. if fail atok 19200
  30743. if fail atok 9600
  30744. if fail stop 1 Can't get modem's attention.
  30745.  
  30746. output AT E1&C1&D2&S0X4\92V2\13 ; Echoing, result codes, etc.
  30747. chkok {Can't initialize modem}
  30748.  
  30749. echo Configuring Intel Faxmodem...
  30750. out ATB1+FCLASS=0 S7=85 S25=50\13
  30751. chkok {Can't set data modulation}
  30752. echo Enabling hardware flow control...
  30753. output AT \92\G0\92Q3\13
  30754. chkok {Can't enable RTS/CTS}
  30755. set flow rts/cts 
  30756. echo Configuring modem to ignore BREAK...
  30757. output AT Y0\92K1\13
  30758. chkok {Can't become transparent to BREAK}
  30759. echo Enabling error correction and data compression...
  30760. output AT \92J0\92N3%C1"H3\13
  30761. chkok {Can't enable compression EC and fallback}
  30762.  
  30763. if def \%1 if not equal "\%1" "=" goto BEGIN
  30764. echo Modem initialization complete, no number to dial
  30765. end 0
  30766.  
  30767. :BEGIN                ; Now DIAL.
  30768. clear                ; Clear INPUT buffer.
  30769. set count 5                     ; Dialing retry counter, 5 tries allowed.
  30770. echo Dialing \%1 on \v(line) at \v(speed) bps, wait...
  30771. echo
  30772. pause 1
  30773. goto dial                       ; 1st time, skip pause and Redialing message
  30774.  
  30775. :REDIAL
  30776. set alarm 30
  30777. pause 30            ; Wait 30 seconds before redialing.
  30778. if not alarm errfail {Dialing canceled.}
  30779. echo Redialing...               ; Message for redialing.
  30780. pause 1
  30781.  
  30782. :DIAL
  30783. output ATD\%1\13                ; Dial the number.
  30784. set alarm 90            ; (For detecting keyboard interruptions.)
  30785. clear input            ; Clear echo from INPUT buffer.
  30786. input 30 \10                    ; Wait for the linefeeds...
  30787.  
  30788. :GETMSG
  30789. input 60 \10            ; ...that surround the response message.
  30790. if success goto gotmsg        ; Got a message.
  30791. if alarm errfail {No response from modem.} ; No response in 90 seconds.
  30792. hangup                ; User interrupted from keyboard,
  30793. output \13            ; cancel dialing by sending carriage return,
  30794. goto again            ; and go try again right away.
  30795.  
  30796. :GOTMSG
  30797. reinput 1 CONNECT               ; Got a message, was it CONNECT?
  30798. if success goto done            ; If so, we're done.
  30799. reinput 1 BUSY            ; Line is busy.
  30800. if success goto busy        ; Go wait a while and then dial again.
  30801. reinput 1 ERROR            ; Command syntax error.
  30802. if success errfail {Dialing command error}
  30803. reinput 1 NO CARRIER        ; Phone didn't answer or no carrier.
  30804. if success errfail {No carrier}
  30805. reinput 1 NO ANSWER        ; No answer
  30806. if success errfail {No answer}
  30807. reinput 1 NO DIALTONE        ; No dialtone when phone taken off hook.
  30808. if success errfail {No dialtone - Is your modem connected to the phone  
  30809. line\63}
  30810. goto getmsg            ; None of the above, get another message.
  30811.  
  30812. :BUSY
  30813. if < \v(count) 2 goto quit    ; Don't wait 30 seconds if tries are used up.
  30814. Echo Line is busy, will dial again in 30 seconds
  30815. echo Press any key to cancel...
  30816. output \13            ; CR cancels dialing
  30817. hangup                          ; Hang up.
  30818. :AGAIN
  30819. if count goto redial            ; Then go redial.
  30820. :QUIT
  30821. errfail {It never answers!  I give up.} ; Too many tries.
  30822.  
  30823. :DONE                           ; Connected.
  30824. echo \7                         ; Celebrate with a beep.
  30825. define errfail            ; Erase local macro definitions...
  30826. define _modcmd
  30827. end 0                ; Finished, return success code.
  30828.  
  30829. :FAIL                ; Dialing failed, no beep.
  30830. define errfail            ; Erase local macro definitions...
  30831. define _modcmd
  30832. end 1                ; Return failure code.
  30833.  
  30834. ; End of INTEL14.SCR
  30835.  
  30836. From news@columbia.edu Wed Oct 12 21:59:40 1994
  30837. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27660
  30838.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 12 Oct 1994 18:08:20 -0400
  30839. Received: by apakabar.cc.columbia.edu id AA19680
  30840.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 12 Oct 1994 18:08:19 -0400
  30841. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!agate!braver
  30842. From: braver@magnolia.CS.Berkeley.EDU (Michael Braverman)
  30843. Newsgroups: comp.protocols.kermit.misc,comp.dcom.modems
  30844. Subject: Kermit and AT&T Dataport Internal Modem
  30845. Date: 12 Oct 1994 21:59:40 GMT
  30846. Organization: University of California, Berkeley
  30847. Lines: 51
  30848. Message-Id: <37hm8c$s79@agate.berkeley.edu>
  30849. Nntp-Posting-Host: magnolia.cs.berkeley.edu
  30850. Xref: news.columbia.edu comp.protocols.kermit.misc:667 comp.dcom.modems:67902
  30851. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  30852.  
  30853. Greetings,
  30854.  
  30855. I have experienced a problem using Kermit with a brand new Internal
  30856. AT&T Dataport 14.4 data/fax modem.  I am surprised by this since the
  30857. Dataport is "supported" by Kermit, in as much as there is a Dataport
  30858. specific dialing script.  I presume that if others have had
  30859. difficulties with the script, the script would have been corrected by
  30860. now.  However, I don't know if this is the case, and so I'm writing to
  30861. see if others are having the same problem I have had (if not, it could
  30862. just be that my modem is defective and I'd like to get some evidence to
  30863. this effect so AT&T will replace the unit).
  30864.  
  30865. Here are the details:  The modem responds and dials fine if I "connect"
  30866. and issue AT commands by hand.  However when I attempt to dial a number
  30867. via the 'dial' command along with the DATAPORT.SCR script that comes
  30868. with Kermit (version 3.13), I get the following error message:
  30869.  
  30870.     No DSR signal - check your modem and cable
  30871.  
  30872. According to the script, this message is being generated because a
  30873. "wait 0 DSR" command has failed immediately following a command that
  30874. sets the port speed.  If I modify the script to pause for a longer
  30875. period of time between setting the speed and requiring the DSR signal,
  30876. then the script continues on successfully. However, it fails again when
  30877. it reaches the following lines:
  30878.  
  30879.     set flow rts/cts                 
  30880.     output AT %B14400 S41=1 S78=0\13
  30881.     chkok {Can't enable modulation fallback}
  30882.  
  30883. If I insert a pause between the 'set flow...' command and the
  30884. 'output...' command, then all is ok, but otherwise the modem doesn't
  30885. accept the "AT..." command.  With these two pauses in place, everything
  30886. else works fine.
  30887.  
  30888. According to the various kermit help files, this type of behavior is
  30889. indicative of a "modem problem". However, if there really is a "problem"
  30890. with this line of modems, I would expect that the DATAPORT.SCR script
  30891. would have the appropriate pauses to take this poor behavior into account.
  30892.  
  30893. So, have any of you had similar problems, or heard of such problems, with the
  30894. internal version of this modem?   If you haven't had problems with it,
  30895. I'd also like to know so I can get AT&T to replace mine. 
  30896.  
  30897. The modem, incidentally, is being used in a Compaq Deskpro 386/20, with the
  30898. standard COM2=2F8h, and no apparent IRQ or other conflicts within the machine.
  30899.  
  30900. Thanks for the help,
  30901.  
  30902. Michael Braverman
  30903. braver@cs.berkeley.edu
  30904.  
  30905. From news@columbia.edu Wed Oct 12 23:11:37 1994
  30906. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02475
  30907.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 12 Oct 1994 19:11:40 -0400
  30908. Received: by apakabar.cc.columbia.edu id AA24818
  30909.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 12 Oct 1994 19:11:39 -0400
  30910. Path: news.columbia.edu!usenet
  30911. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  30912. Newsgroups: comp.protocols.kermit.misc
  30913. Subject: Re: Kermit and AT&T Dataport Internal Modem
  30914. Date: 12 Oct 1994 23:11:37 GMT
  30915. Organization: Columbia University
  30916. Lines: 155
  30917. Message-Id: <37hqf9$o7g@apakabar.cc.columbia.edu>
  30918. References: <37hm8c$s79@agate.berkeley.edu>
  30919. Nntp-Posting-Host: fdc.cc.columbia.edu
  30920. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  30921.  
  30922. In article <37hm8c$s79@agate.berkeley.edu> braver@magnolia.CS.Berkeley.EDU  
  30923. (Michael Braverman) writes:
  30924. > I have experienced a problem using Kermit with a brand new Internal
  30925. > AT&T Dataport 14.4 data/fax modem.  I am surprised by this since the
  30926. > Dataport is "supported" by Kermit, in as much as there is a Dataport
  30927. > specific dialing script...
  30928. >
  30929. Thanks for the report.  If anybody else has had these problems, they have
  30930. not reported them.  The first problem "wait 0 dsr" resulting in "please
  30931. turn on or connect your modem", means your modem is not asserting DSR.
  30932. I think the world must have changed in the last year or two, because DSR
  30933. used to mean "I'm turned on and you can use me".  Evidently this is no
  30934. longer the default on some modems.  Solution: just remove these WAIT 0
  30935. statements from the script.
  30936.  
  30937. As to needing a pause after SET FLOW RTS/CTS, maybe the thing to do here
  30938. is "wait 5 cts" -- this should make Kermit wait up to five seconds for
  30939. CTS to appear, but in any case no longer than necessary.  If it does not
  30940. appear after five seconds, we've got a problem anyway!  Please try this
  30941. amended script and let me know if it's OK:
  30942. ---(cut)---
  30943. ; FILE DATAPORT.SCR (MSMDATAP.SCR)
  30944. ; An MS-DOS Kermit script program for dialing the AT&T / Paradyne Dataport
  30945. ; 14400 modem, to be used with MS-DOS Kermit 3.11 or later.  The modem is set
  30946. ; for V.32bis, compression, error correction, all types of fallback, RTS/CTS
  30947. ; flow control, fixed interface speed of 57600 or 38400.
  30948. ; Rename this file to DATAPORT.SCR if necessary.
  30949. ;
  30950. ; To use: SET MODEM=DATAPORT (in DOS, before starting Kermit)
  30951. ; or:     DEFINE _MODEM DATAPORT (in Kermit, before dialing)
  30952. ; and:    Make sure Kermit executes the standard MSKERMIT.INI file.
  30953. ;
  30954. ; Authors: Christine M. Gianone, Frank da Cruz; Columbia U, September 1993
  30955. ; Revised Oct 94.
  30956. ;
  30957. def errfail echo \%1, hangup, goto fail ; Macro to handle failures.
  30958. if < VERSION 312 errfail {MS-DOS Kermit 3.12 or later required.}
  30959.  
  30960. define chkerr if fail stop 1 \%1
  30961. define chkok input 3 OK, if fail stop 1 \%1
  30962.  
  30963. set input echo on        ; So we can watch what happens.
  30964. set input timeout proceed       ; Allow IF SUCCESS, IF FAILURE.
  30965. set input case ignore        ; Use caseless string comparisons
  30966.  
  30967. set parity none            ; Avoid parity foulups
  30968. set flow none            ; Avoid flow control deadlocks
  30969. hangup                ; Begin by dropping DTR
  30970. pause 1                ; for one second
  30971.  
  30972. ; Speed.  Don't worry about modem, it autobauds up to 57600 bps.
  30973. ; NOTE: This modem doesn't seem to have a command for locking the
  30974. ; interface speed.  But it seems to do it anyway.
  30975. ;
  30976. set speed 57600            ; If computer can be set to 57600 bps, use  
  30977. it.
  30978. if fail set speed 38400        ; If not, use 38400.
  30979.  
  30980. echo Configuring AT&T DataPort on \v(line).
  30981.  
  30982. :INIT
  30983. output ATQ0V1\13        ; Enable word result codes
  30984. chkok {Can't get modem's attention}
  30985. ; X6 = Verbose result codes, show modulation speed
  30986. ; &C1 = CD follows RS232
  30987. ; &D2 = DTR follows RS232
  30988. ; &Q0 = Asynchronous data mode, use AT command set
  30989. ; S84=0 = Normal ERROR response to bad commands
  30990. output AAAT E1 X6 &C1 &D2 &Q0 S84=0\13
  30991. chkok {Can't initialize modem}
  30992. output AT \92Q3\13        ; RTS/CTS hardware flow control
  30993. chkok {Can't enable RTS/CTS}    ; On modem
  30994. wait 5 cts
  30995. if fail {Modem is not asserting CTS!}
  30996. set flow rts/cts        ; And in Kermit too, but only now
  30997. output AT %B14400 S41=1 S78=0\13 ; Modulation = V.32bis with fallback
  30998. chkok {Can't enable modulation fallback}
  30999. output AT \92N7%C1\13        ; Compression and EC enabled
  31000. chkok {Can't enable compression and EC}
  31001. output AT \92K5\13        ; Make modem pass BREAK transparently
  31002. chkok {Can't become transparent to BREAK}
  31003.  
  31004. if def \%1 if not equal "\%1" "=" goto BEGIN
  31005. echo Modem initialization complete, no number to dial
  31006. end 0
  31007.  
  31008. :BEGIN                ; Now DIAL.
  31009. clear                ; Clear INPUT buffer.
  31010. set count 5                     ; Dialing retry counter, 5 tries allowed.
  31011. echo Dialing \%1 on \v(line) at \v(speed) bps, wait...
  31012. echo
  31013. pause 1
  31014. goto dial                       ; 1st time, skip pause and Redialing message
  31015.  
  31016. :REDIAL
  31017. set alarm 30
  31018. pause 30            ; Wait 30 seconds before redialing.
  31019. if not alarm errfail {Dialing canceled.}
  31020. echo Redialing...               ; Message for redialing.
  31021. pause 1
  31022.  
  31023. :DIAL
  31024. output ATD\%1\13                ; Dial the number.
  31025. set alarm 90            ; (For detecting keyboard interruptions.)
  31026. if > VERSION 312 clear input    ; Clear echo from INPUT buffer.
  31027. if < VERSION 313 clear
  31028. input 30 \10                    ; Wait for the linefeeds...
  31029.  
  31030. :GETMSG
  31031. input 60 \10            ; ...that surround the response message.
  31032. if success goto gotmsg        ; Got a message.
  31033. if alarm errfail {No response from modem.} ; No response in 90 seconds.
  31034. hangup                ; User interrupted from keyboard,
  31035. output \13            ; cancel dialing by sending carriage return,
  31036. goto again            ; and go try again right away.
  31037.  
  31038. :GOTMSG
  31039. reinput 1 CONNECT               ; Got a message, was it CONNECT?
  31040. if success goto done            ; If so, we're done.
  31041. reinput 1 BUSY            ; Line is busy.
  31042. if success goto busy        ; Go wait a while and then dial again.
  31043. reinput 1 ERROR            ; Command syntax error.
  31044. if success errfail {Dialing command error}
  31045. reinput 1 NO CARRIER        ; Phone didn't answer or no carrier.
  31046. if success errfail {No answer or no carrier}
  31047. reinput 1 NO ANSWER        ; No answer
  31048. if success errfail {No answer - try again later}
  31049. reinput 1 NO DIALTONE        ; No dialtone when phone taken off hook.
  31050. if success errfail {No dialtone - Is your modem connected to the phone  
  31051. line\63}
  31052. goto getmsg            ; None of the above, get another message.
  31053.  
  31054. :BUSY
  31055. if < \v(count) 2 goto quit    ; Don't wait 30 seconds if tries are used up.
  31056. Echo Line is busy, will dial again in 30 seconds.
  31057. echo Press any key to cancel...
  31058. output \13            ; CR cancels dialing
  31059. hangup                          ; Hang up.
  31060. :AGAIN
  31061. if count goto redial            ; Then go redial.
  31062. :QUIT
  31063. errfail {It never answers!  I give up.} ; Too many tries.
  31064.  
  31065. :DONE                           ; Connected.
  31066. echo \7                         ; Celebrate with a beep.
  31067. define errfail            ; Erase local macro definitions...
  31068. end 0                ; Finished, return success code.
  31069.  
  31070. :FAIL                ; Dialing failed, no beep.
  31071. define errfail            ; Erase local macro definitions...
  31072. end 1                ; Return failure code.
  31073.  
  31074. ; End of DATAPORT.SCR
  31075.  
  31076. From news@columbia.edu Wed Oct 12 13:10:22 1994
  31077. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11661
  31078.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 12 Oct 1994 22:13:15 -0400
  31079. Received: by apakabar.cc.columbia.edu id AA08078
  31080.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 12 Oct 1994 22:13:14 -0400
  31081. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  31082. From: jrd@cc.usu.edu (Joe Doupnik)
  31083. Newsgroups: comp.protocols.kermit.misc,comp.dcom.modems
  31084. Subject: Re: Kermit and AT&T Dataport Internal Modem
  31085. Message-Id: <1994Oct12.191022.29706@cc.usu.edu>
  31086. Date: 12 Oct 94 19:10:22 MDT
  31087. References: <37hm8c$s79@agate.berkeley.edu>
  31088. Organization: Utah State University
  31089. Lines: 43
  31090. Xref: news.columbia.edu comp.protocols.kermit.misc:669 comp.dcom.modems:67921
  31091. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  31092.  
  31093. In article <37hm8c$s79@agate.berkeley.edu>, braver@magnolia.CS.Berkeley.EDU (Michael Braverman) writes:
  31094. > Greetings,
  31095. > I have experienced a problem using Kermit with a brand new Internal
  31096. > AT&T Dataport 14.4 data/fax modem.  I am surprised by this since the
  31097. > Dataport is "supported" by Kermit, in as much as there is a Dataport
  31098. > specific dialing script.  I presume that if others have had
  31099. > difficulties with the script, the script would have been corrected by
  31100. > now.  However, I don't know if this is the case, and so I'm writing to
  31101. > see if others are having the same problem I have had (if not, it could
  31102. > just be that my modem is defective and I'd like to get some evidence to
  31103. > this effect so AT&T will replace the unit).
  31104. > Here are the details:  The modem responds and dials fine if I "connect"
  31105. > and issue AT commands by hand.  However when I attempt to dial a number
  31106. > via the 'dial' command along with the DATAPORT.SCR script that comes
  31107. > with Kermit (version 3.13), I get the following error message:
  31108. >     No DSR signal - check your modem and cable
  31109. > According to the script, this message is being generated because a
  31110. > "wait 0 DSR" command has failed immediately following a command that
  31111. > sets the port speed.  If I modify the script to pause for a longer
  31112. > period of time between setting the speed and requiring the DSR signal,
  31113. > then the script continues on successfully. However, it fails again when
  31114. > it reaches the following lines:
  31115. >     set flow rts/cts                 
  31116. >     output AT %B14400 S41=1 S78=0\13
  31117. >     chkok {Can't enable modulation fallback}
  31118. > If I insert a pause between the 'set flow...' command and the
  31119. > 'output...' command, then all is ok, but otherwise the modem doesn't
  31120. > accept the "AT..." command.  With these two pauses in place, everything
  31121. > else works fine.
  31122.     <rest omitted>
  31123.     Frank has a much fuller response. But I'll make a guess that the
  31124. modem is of the kind with is unusually slow to respond after making
  31125. certain changes. The RTS/CTS problem looks that way, and so does the DSR
  31126. item. We've heard of cases where a command string, say ATDT blah, needs
  31127. to go out very slowly (down to four characters per second) or characters
  31128. are dropped. For this purpose we added command SET OUTPUT PACING <millisec>.
  31129.     Joe D.
  31130.  
  31131. From news@columbia.edu Wed Oct 12 17:15:02 1994
  31132. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11727
  31133.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 12 Oct 1994 22:15:56 -0400
  31134. Received: by apakabar.cc.columbia.edu id AA08368
  31135.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 12 Oct 1994 22:15:55 -0400
  31136. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!europa.eng.gtefsd.com!newsxfer.itd.umich.edu!gumby!yale!yale!wcsub.ctstateu.edu!belanger002
  31137. From: belanger002@wcsub.ctstateu.edu
  31138. Newsgroups: comp.protocols.kermit.misc
  31139. Subject: Re: Ring-bound Kermit Manuals
  31140. Date: 12 Oct 94 22:15:02 EST
  31141. Organization: Yale University, Department of Computer Science, New Haven, CT
  31142. Lines: 16
  31143. Message-Id: <1994Oct12.221502.1@wcsub.ctstateu.edu>
  31144. References: <370rss$cf7@canopus.cc.umanitoba.ca> <Cx9A7D.23I@ritz.mordor.com> <372cbb$p7l@mcrware.microware.com> <CxB32w.L21@ritz.mordor.com> <1994Oct9.180929.6456@eisner> <V8Wckqo7IZ7I071yn@ritz.mordor.com>
  31145. Nntp-Posting-Host: wcsub.ctstateu.edu
  31146. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  31147.  
  31148. The discussion on "ring-bound" manuals reminded me of a tour I
  31149. once took of a publishing house.  They showed us a video on the 
  31150. book production process.  Pages are pasted up in groups of 8
  31151. per side, and printed on roll fed offset presses.  Folding and
  31152. trimming follows, resulting in "signatures" of 16 pages.  These
  31153. are glued with the other signatures of the book to a binding.
  31154.  
  31155. I asked about ring/loose leaf.  What they do is take the glued
  31156. signatures comprising the book, punch the ring binder holes,
  31157. then cut off the glued binging.  It is these extra operations
  31158. which make mass produced ring binding more expensive.
  31159.  
  31160. Hope this helps.
  31161.  
  31162. Gerry Belanger
  31163.  
  31164.  
  31165. From news@columbia.edu Wed Oct 12 15:00:48 1994
  31166. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13852
  31167.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 12 Oct 1994 23:14:26 -0400
  31168. Received: by apakabar.cc.columbia.edu id AA12198
  31169.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 12 Oct 1994 23:14:25 -0400
  31170. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!ivie
  31171. From: ivie@cc.usu.edu
  31172. Newsgroups: comp.protocols.kermit.misc
  31173. Subject: Re: Kermit and AT&T Dataport Internal Modem
  31174. Message-Id: <1994Oct12.210048.29720@cc.usu.edu>
  31175. Date: 12 Oct 94 21:00:48 MDT
  31176. References: <37hm8c$s79@agate.berkeley.edu> <37hqf9$o7g@apakabar.cc.columbia.edu>
  31177. Organization: Utah State University
  31178. Lines: 17
  31179. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  31180.  
  31181. In article <37hqf9$o7g@apakabar.cc.columbia.edu>, fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  31182. > I think the world must have changed in the last year or two, because DSR
  31183. > used to mean "I'm turned on and you can use me".  Evidently this is no
  31184. > longer the default on some modems.  Solution: just remove these WAIT 0
  31185. > statements from the script.
  31186.  
  31187. VMS has always thought that DSR means "I've picked up the phone; get ready
  31188. for carrier". If the modem asserts DSR and doesn't assert CD within about
  31189. 30 seconds or so, VMS assumes that it got a voice call and deasserts DTR
  31190. to tell the modem to hang up the phone.
  31191.  
  31192. Needless to say, this causes lots of extra traffic in comp.os.vms as
  31193. folks with PC modems try to get them running with VMS...
  31194. -- 
  31195. ----------------+------------------------------------------------------
  31196. Roger Ivie      | Don't think of it as a 'new' computer, think of it as
  31197. ivie@cc.usu.edu |     'obsolete-ready'
  31198.  
  31199. From news@columbia.edu Thu Oct 13 05:01:02 1994
  31200. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19423
  31201.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 13 Oct 1994 01:01:05 -0400
  31202. Received: by apakabar.cc.columbia.edu id AA19468
  31203.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 13 Oct 1994 01:01:04 -0400
  31204. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!vixen.cso.uiuc.edu!ux2.cso.uiuc.edu!shair
  31205. From: shair@uiuc.edu (Bob Shair)
  31206. Newsgroups: comp.protocols.kermit.misc
  31207. Subject: Re: script for redialing
  31208. Date: 13 Oct 1994 05:01:02 GMT
  31209. Organization: University of Illinois at Urbana
  31210. Lines: 24
  31211. Message-Id: <37ieue$a38@vixen.cso.uiuc.edu>
  31212. References: <17047EC28S85.MSIMONDS@wsuvm1.csc.wsu.edu>
  31213. Nntp-Posting-Host: ux2.cso.uiuc.edu
  31214. Originator: shair@ux2.cso.uiuc.edu
  31215. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  31216.  
  31217. MSIMONDS@wsuvm1.csc.wsu.edu writes:
  31218.  
  31219. >I am a new user of PC-Kermit ver 3.11.  I want to know if anybody has a script
  31220. >file that will make the modem redial?
  31221. Not exactly a script file.  How about a one word command?
  31222.  
  31223. define go dial 18005551212, while failure {dial 18005551212}, echo \7Made it!\7, connect
  31224.  
  31225. Then I can just say 
  31226. go
  31227.  
  31228. and the computer rings the bell when the connection is made.
  31229.  
  31230. Actually, with my modem the second command is 
  31231. while failure {dial L}, 
  31232. because ATDL dials the last number.  Don't know if that's universal, though.
  31233.  
  31234. I'm using C Kermit.  I presume the command language for PC Kermit is similar.
  31235. -- 
  31236.  
  31237. Bob Shair                          shair@uiuc.edu
  31238. Open Systems Specialist           SHAIR@UIUCVMD (bitnet)
  31239. Champaign, Illinois           217/356-2684
  31240.  
  31241. From news@columbia.edu Thu Oct 13 05:35:00 1994
  31242. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20847
  31243.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 13 Oct 1994 01:43:48 -0400
  31244. Received: by apakabar.cc.columbia.edu id AA21512
  31245.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 13 Oct 1994 01:43:47 -0400
  31246. Path: news.columbia.edu!sol.ctr.columbia.edu!news.moneng.mei.com!howland.reston.ans.net!news.sprintlink.net!news.infi.net!larry.infi.net!fastcart
  31247. From: fastcart@infi.net (Arcell B. Frazier)
  31248. Newsgroups: comp.protocols.kermit.misc
  31249. Subject: Re: Kermit over telnet on unix
  31250. Date: 13 Oct 1994 05:35:00 GMT
  31251. Organization: InfiNet
  31252. Lines: 26
  31253. Message-Id: <37igu4$4m5@lucy.infi.net>
  31254. References: <1994Oct11.092246@axpvms.cc.utexas.edu> <37f525$rpg@xmission.xmission.com> <1994Oct12.101609.29630@cc.usu.edu>
  31255. Nntp-Posting-Host: larry.infi.net
  31256. X-Newsreader: TIN [version 1.2 PL2]
  31257. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  31258.  
  31259. Joe Doupnik (jrd@cc.usu.edu) wrote:
  31260. : In article <37f525$rpg@xmission.xmission.com>, fozz@xmission.com (Fozziliny Moo) writes:
  31261. : > sauron@axpvms.cc.utexas.edu writes:
  31262. : > 
  31263. : > 
  31264. : > 
  31265. : >>How do I run kermit over a telnet link? The man page is not very helpfull.
  31266. : >>I want to transfer files (that I'm having to get via capturing , with
  31267. : >>errors) from a BBS that dosen't let me get at them via FTP.
  31268. : >>Any ideas?
  31269.  
  31270. As well as what was said before, if you use C-kermit, the command:
  31271.  
  31272. set host <host address>
  31273.  
  31274. will work.  I've done it a few time last week.  For instance:
  31275.  
  31276. set host compuserve.com
  31277.  
  31278. Works.  Then, to connect just:
  31279.  
  31280. c
  31281.  
  31282. and it connects you to CompuServe.
  31283. --
  31284. Fast Cart
  31285.  
  31286. From news@columbia.edu Thu Oct 13 05:24:57 1994
  31287. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21985
  31288.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 13 Oct 1994 02:10:13 -0400
  31289. Received: by apakabar.cc.columbia.edu id AA22529
  31290.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 13 Oct 1994 02:10:12 -0400
  31291. Path: news.columbia.edu!panix!zip.eecs.umich.edu!newsxfer.itd.umich.edu!gatech!psuvax1!news.cc.swarthmore.edu!netnews.upenn.edu!netnews.CC.Lehigh.EDU!CS1.CC.Lehigh.EDU!cdl0
  31292. From: cdl0@CS1.CC.Lehigh.EDU (CONRAD DANIEL LLOYD-KNIGHT)
  31293. Newsgroups: comp.protocols.kermit.misc
  31294. Subject: MacKermit Command files...
  31295. Date: 13 Oct 1994 05:24:57 GMT
  31296. Organization: Lehigh University
  31297. Lines: 22
  31298. Message-Id: <37igb9$1a3b@fidoii.cc.lehigh.edu>
  31299. Nntp-Posting-Host: cs1.cc.lehigh.edu
  31300. X-Newsreader: TIN [version 1.2 PL2]
  31301. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  31302.  
  31303. How do you make Command files? under the File menu, there's an option to Take
  31304. Command File. when i first got an ancient version of MacKermit, it came with
  31305. a script to automatically dial up the terminal server here on campus and one
  31306. to disconnect. these were supposed to be loaded using this option and seemed 
  31307. to work fine, even after i changed them to just dial numbers i wanted. 
  31308. however, now they don't work anymore, not even the original versions! i'm not
  31309. sure if it's because i upgraded to a newer version of MacKermit (0.991(190)),
  31310. or because i just got system 7, but i now get "application 'unknown' has 
  31311. unexpectedly quit due to error number 28" or somesuch... so, is there a way of
  31312. making a working command file? and a related question - can i load the
  31313. terminal settings at the same time as the commnad file? either by including
  31314. an instruction in the script to load the terminal settings or somehow
  31315. combining the two files?
  31316.  
  31317. Thanx,
  31318. -Smoke.
  31319.  
  31320. -- bye!  :) -- pgp2 key available - just ask. or finger cdl0@cs1.cc.lehigh.edu
  31321.  
  31322. 1) There was a young girl from Peru     2) There was a young man from Verdun
  31323.    Whose limericks stopped at line two
  31324.         -- Martin Gardner "Aha, Gotcha!"
  31325.  
  31326. From news@columbia.edu Thu Oct 13 08:01:01 1994
  31327. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26781
  31328.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 13 Oct 1994 04:19:08 -0400
  31329. Received: by apakabar.cc.columbia.edu id AA26565
  31330.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 13 Oct 1994 04:19:07 -0400
  31331. Path: news.columbia.edu!panix!ddsw1!news.kei.com!eff!usenet.ins.cwru.edu!news.ysu.edu!yfn.ysu.edu!am856
  31332. From: am856@YFN.YSU.EDU (Michael DeCosta III)
  31333. Newsgroups: comp.protocols.kermit.misc
  31334. Subject: Re: How can I speed up screen updates in Kermit?
  31335. Date: 13 Oct 1994 08:01:01 GMT
  31336. Organization: St. Elizabeth Hospital, Youngstown, OH
  31337. Lines: 42
  31338. Message-Id: <37ipft$177@news.ysu.edu>
  31339. References: <1994Oct10.080603.29320@cc.usu.edu> <377fcp$6id@apakabar.cc.columbia.edu> <37ae26$4qn@news.ysu.edu>
  31340. Reply-To: am856@yfn.ysu.edu (Michael DeCosta III)
  31341. Nntp-Posting-Host: yfn2.ysu.edu
  31342. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  31343.  
  31344.  
  31345. In a previous article, jrd@cc.usu.edu (Joe Doupnik) says:
  31346.  
  31347. >In article <37ae26$4qn@news.ysu.edu>, am856@yfn.ysu.edu (Michael DeCosta III) writes:
  31348. >> 
  31349. >> In a previous article, ycl6@konichiwa.cc.columbia.edu (Yee Chang Lee) says:
  31350. >> 
  31351. >>>I use Kermit on my little Tandy XT clone, and I like it a lot.  I also use
  31352. >>>Telix.  Now, Telix is noticeably faster on screen updates than Kermit.
  31353. >>>
  31354. >>>What can I do to increase screen updates in Kermit?  Kermit _is_ writing to
  31355. >>>hardware, not BIOS.
  31356. >>>
  31357. >>>Any other ideas?
  31358. >> 
  31359. >> Try:
  31360. >> 
  31361. >> SET KERMIT=INPUT 2048
  31362. >> 
  31363. >> before starting Kermit.
  31364. >> 
  31365. >> If this increases your screen updates put it in a batch file with your
  31366. >> Kermit invocation.
  31367. >-------------
  31368. >    Huh? INPUT is a script command; the one above enlarges the buffer
  31369. >used by the INPUT command. Terminal emulation (Connect mode) is not related 
  31370. >to script commands; it has no association with the INPUT buffer.
  31371. >    But thanks for assisting.
  31372. >        Joe D.
  31373. >
  31374.  
  31375. I should have added more to that reply. I find most people are using
  31376. Package Script menu programs like EasyKermit and are not cognicent of
  31377. exactly what mode they are in when the screen updates "seem" slow.
  31378. That's why I said try it and see.
  31379.  
  31380. I will admit that I have had some confusion as to whether this
  31381. effects connect mode when you connect from a script.
  31382.  
  31383. I believe your answer clears this up for me.
  31384.  
  31385. Thank you, Joe and I apologize for my brevity and lack of illumination. 
  31386.  
  31387. From news@columbia.edu Wed Oct 12 09:01:54 1994
  31388. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01291
  31389.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 13 Oct 1994 07:53:26 -0400
  31390. Received: by apakabar.cc.columbia.edu id AA04174
  31391.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 13 Oct 1994 07:53:25 -0400
  31392. Newsgroups: comp.protocols.kermit.misc
  31393. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!pipex!warwick!unicorn.nott.ac.uk!nott-cs!lut.ac.uk!ccobs
  31394. From: O.B.Schou@lut.ac.uk
  31395. Subject: Re: Query for fcd; was: Kermit takes an upper-case K
  31396. Sender: ccobs@lut.ac.uk (Bertil Schou)
  31397. Message-Id: <CxJyF7.60z@lut.ac.uk>
  31398. Date: Wed, 12 Oct 1994 09:01:54 GMT
  31399. Reply-To: O.B.Schou@lut.ac.uk (Bertil Schou)
  31400. References: <6OCT94.14271506@enh.nist.gov>
  31401. Organization: Loughborough University, UK.
  31402. Lines: 21
  31403. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  31404.  
  31405. In article <6OCT94.14271506@enh.nist.gov> reflib@enh.nist.gov writes:
  31406. >  My recent assertion that Kermit takes its name from the Muppet
  31407. >has been challenged.
  31408. >
  31409. >  Someone claims that it began as an acronym: K.E.R.M.I.T; but no
  31410. >explanation of the acronym was given.
  31411. >
  31412. >  Can we get an official answer from Frank da Cruz?
  31413. >
  31414. >  Thank you.
  31415. >
  31416. >reflib@enh.nist.gov
  31417.  
  31418.  
  31419. Well, look at One of The Kermit Books - "Kermit, A File Transfer
  31420. Protocol" (by FdC), p3, at footnote 3:
  31421.  
  31422. "3. Why? Mostly because there was a Muppets calendar on the wall when
  31423. we were trying to think of a name, and Kermit is a pleasant, unassuming
  31424. sort of character." ...
  31425.  
  31426.  
  31427. From news@columbia.edu Thu Oct 13 12:43:24 1994
  31428. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06981
  31429.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 13 Oct 1994 09:35:36 -0400
  31430. Received: by apakabar.cc.columbia.edu id AA10478
  31431.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 13 Oct 1994 09:35:35 -0400
  31432. Newsgroups: comp.protocols.kermit.misc
  31433. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!travelers.mail.cornell.edu!newstand.syr.edu!galileo.cc.rochester.edu!uhura.cc.rochester.edu!mcia
  31434. From: mcia@uhura.cc.rochester.edu (Mike Ciaraldi)
  31435. Subject: REPOST: Kermit over WinSock?
  31436. Message-Id: <1994Oct13.124324.19422@galileo.cc.rochester.edu>
  31437. Keywords: WinSock TCP SLIP NetManage Chameleon
  31438. Sender: news@galileo.cc.rochester.edu
  31439. Nntp-Posting-Host: uhura.cc.rochester.edu
  31440. Organization: University of Rochester (Rochester, NY)
  31441. Date: Thu, 13 Oct 94 12:43:24 GMT
  31442. Lines: 28
  31443. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  31444.  
  31445. [ My apologies if anyone sees this twice. Problems with the news
  31446. software here seem to have prevented it from going out]
  31447.  
  31448. I am using NetManage Chameleon to set up a SLIP link
  31449. from my PC to a Unix machine. It works fine with the included
  31450. telnet program, but I was wondering if I could run Kermit
  31451. over this TCP connection.
  31452.  
  31453. From reading the manual, 
  31454. I know that MS-DOS Kermit can run through a variety
  31455. of connections beyond straight serial through a UART,
  31456. things like NetBIOS, EBIOS, etc. But as far as I can tell
  31457. from the Chameleon documentation, the only interface it supports
  31458. is WinSock, which is not listed as supported by Kermit.
  31459.  
  31460. Does anyone have any ideas or experience on this?
  31461. Is WinSock support coming in version 3.14?
  31462.  
  31463. Thanks.
  31464.  
  31465. --Mike Ciaraldi
  31466.  
  31467. P.S. I like the new Kermit icon. But what is that
  31468. grey rectangle in the lower right, next to his collar?
  31469. Is that the horizon line?
  31470.  
  31471.  
  31472.  
  31473.  
  31474. From news@columbia.edu Thu Oct 13 14:27:13 1994
  31475. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11659
  31476.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 13 Oct 1994 10:40:42 -0400
  31477. Received: by apakabar.cc.columbia.edu id AA27353
  31478.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 13 Oct 1994 10:40:39 -0400
  31479. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!eff!wariat.org!malgudi.oar.net!news.ysu.edu!yfn.ysu.edu!am856
  31480. From: am856@yfn.ysu.edu (Michael DeCosta III)
  31481. Newsgroups: comp.protocols.kermit.misc
  31482. Subject: The MSKermit Book
  31483. Date: 13 Oct 1994 14:27:13 GMT
  31484. Organization: St. Elizabeth Hospital, Youngstown, OH
  31485. Lines: 13
  31486. Message-Id: <37jg41$96h@news.ysu.edu>
  31487. Reply-To: am856@yfn.ysu.edu (Michael DeCosta III)
  31488. Nntp-Posting-Host: yfn2.ysu.edu
  31489. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  31490.  
  31491.  
  31492. Could the people who have found establishments carrying the Kermit
  31493. book please post the names of those stores (Book, Computer or other)
  31494. where they found it?
  31495.  
  31496. Would a college or university book store be more likely to have it?
  31497.  
  31498. Does Digital Press plan on perusing this newsgroup or could someone
  31499. who knows someone suggest that it might not be a bad marketing move
  31500. to at least lurk around here from time to time?
  31501.  
  31502. In case it isn't obvious, I have a looooooooooong list of establishments
  31503. where the book isn't. 
  31504.  
  31505. From news@columbia.edu Thu Oct 13 12:22:34 1994
  31506. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11931
  31507.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 13 Oct 1994 10:45:02 -0400
  31508. Received: by apakabar.cc.columbia.edu id AA27638
  31509.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 13 Oct 1994 10:44:58 -0400
  31510. Newsgroups: comp.protocols.kermit.misc
  31511. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!pipex!uunet!charon.citicorp.com!spcuna!ritz!kudut
  31512. From: kudut@ritz.mordor.com (Ken Udut)
  31513. Subject: Re: Ring-bound Kermit Manuals
  31514. References: <1994Oct9.180929.6456@eisner> <V8Wckqo7IZ7I071yn@ritz.mordor.com> <1994Oct12.221502.1@wcsub.ctstateu.edu>
  31515. Organization: Mordor International BBS - Jersey City, NJ
  31516. Date: Thu, 13 Oct 1994 12:22:34 GMT
  31517. Message-Id: <CxM2DM.4nA@ritz.mordor.com>
  31518. Lines: 27
  31519. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  31520.  
  31521. In article <1994Oct12.221502.1@wcsub.ctstateu.edu> belanger002@wcsub.ctstateu.edu writes:
  31522. >The discussion on "ring-bound" manuals reminded me of a tour I
  31523. >once took of a publishing house.  They showed us a video on the 
  31524. >book production process.  Pages are pasted up in groups of 8
  31525. >per side, and printed on roll fed offset presses.  Folding and
  31526. >trimming follows, resulting in "signatures" of 16 pages.  These
  31527. >are glued with the other signatures of the book to a binding.
  31528. >
  31529. >I asked about ring/loose leaf.  What they do is take the glued
  31530. >signatures comprising the book, punch the ring binder holes,
  31531. >then cut off the glued binging.  It is these extra operations
  31532. >which make mass produced ring binding more expensive.
  31533. >
  31534. >Hope this helps.
  31535. >
  31536. >Gerry Belanger
  31537. >
  31538.  
  31539.  
  31540. *Wow*!  Thanks Gerry :-)  I had always thought ring binding would be 
  31541. about the same - I had no idea that they glue-bound the books ANYWAY, and 
  31542. *then* chopped the ends off...
  31543.  
  31544. Pretty neat if you ask me! ;-)
  31545.  
  31546. Ken, feeling more knowledgeable today than yesterday... :)
  31547. kudut@ritz.mordor.com
  31548.  
  31549. From news@columbia.edu Thu Oct 13 14:46:39 1994
  31550. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12535
  31551.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 13 Oct 1994 10:55:19 -0400
  31552. Received: by apakabar.cc.columbia.edu id AA28337
  31553.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 13 Oct 1994 10:55:17 -0400
  31554. Path: news.columbia.edu!sol.ctr.columbia.edu!news.cs.columbia.edu!news.pipeline.com!malgudi.oar.net!news.ysu.edu!yfn.ysu.edu!am856
  31555. From: am856@yfn.ysu.edu (Michael DeCosta III)
  31556. Newsgroups: comp.protocols.kermit.misc
  31557. Subject: Hangup and Z100 MSKermit 3.13
  31558. Date: 13 Oct 1994 14:46:39 GMT
  31559. Organization: St. Elizabeth Hospital, Youngstown, OH
  31560. Lines: 11
  31561. Message-Id: <37jh8f$9p1@news.ysu.edu>
  31562. Reply-To: am856@yfn.ysu.edu (Michael DeCosta III)
  31563. Nntp-Posting-Host: yfn2.ysu.edu
  31564. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  31565.  
  31566.  
  31567. MSKermit 3.13 has this weird artifact where if you use the hangup
  31568. command in a script or from the MSKERMIT prompt it doesn't reset
  31569. DTR correctly. However from Connect mode's ^] menu "H" performs
  31570. hangup correctly.
  31571.  
  31572. I have gotten arround this in scripts by defining my own hangup
  31573. macro that uses the Hayes AT command "+++" to hangup.
  31574.  
  31575. I wanted to pass this work-around to any other Z100 MSKermit 3.13
  31576. users. 
  31577.  
  31578. From news@columbia.edu Thu Oct 13 07:25:22 1994
  31579. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25563
  31580.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 13 Oct 1994 13:34:06 -0400
  31581. Received: by apakabar.cc.columbia.edu id AA11507
  31582.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 13 Oct 1994 13:34:04 -0400
  31583. Path: news.columbia.edu!sol.ctr.columbia.edu!hamblin.math.byu.edu!news.byu.edu!news.kei.com!uhog.mit.edu!europa.eng.gtefsd.com!newsxfer.itd.umich.edu!gumby!yale!yale!wcsub.ctstateu.edu!belanger002
  31584. From: belanger002@wcsub.ctstateu.edu
  31585. Newsgroups: comp.protocols.kermit.misc
  31586. Subject: Re: The MSKermit Book
  31587. Date: 13 Oct 94 12:25:22 EST
  31588. Organization: Yale University, Department of Computer Science, New Haven, CT
  31589. Lines: 17
  31590. Message-Id: <1994Oct13.122522.1@wcsub.ctstateu.edu>
  31591. References: <37jg41$96h@news.ysu.edu>
  31592. Nntp-Posting-Host: wcsub.ctstateu.edu
  31593. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  31594.  
  31595. In article <37jg41$96h@news.ysu.edu>, am856@yfn.ysu.edu (Michael DeCosta III) writes:
  31596. > Could the people who have found establishments carrying the Kermit
  31597. > book please post the names of those stores (Book, Computer or other)
  31598. > where they found it?
  31599. > Would a college or university book store be more likely to have it?
  31600. That's how I got my copies.  The Kermit books also carry
  31601. Prentice-Hall ISBN numbers, and can be ordered by any bookstore.
  31602. Using MS-DOS Kermit, 2nd ed, 0-13-952276-X.
  31603. Using C-Kermit, 0-13-037490-3.
  31604.  
  31605. Obvoiusly, buying direct from Columbia helps support the Kermit effort
  31606. a little more.
  31607.  
  31608. Gerry Belanger
  31609.  
  31610.  
  31611. From news@columbia.edu Thu Oct 13 04:28:28 1994
  31612. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25966
  31613.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 13 Oct 1994 13:41:41 -0400
  31614. Received: by apakabar.cc.columbia.edu id AA12087
  31615.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 13 Oct 1994 13:41:40 -0400
  31616. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!MathWorks.Com!uhog.mit.edu!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  31617. From: jrd@cc.usu.edu (Joe Doupnik)
  31618. Newsgroups: comp.protocols.kermit.misc
  31619. Subject: Re: REPOST: Kermit over WinSock?
  31620. Message-Id: <1994Oct13.102829.29768@cc.usu.edu>
  31621. Date: 13 Oct 94 10:28:28 MDT
  31622. References: <1994Oct13.124324.19422@galileo.cc.rochester.edu>
  31623. Organization: Utah State University
  31624. Lines: 36
  31625. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  31626.  
  31627. In article <1994Oct13.124324.19422@galileo.cc.rochester.edu>, mcia@uhura.cc.rochester.edu (Mike Ciaraldi) writes:
  31628. > [ My apologies if anyone sees this twice. Problems with the news
  31629. > software here seem to have prevented it from going out]
  31630. > I am using NetManage Chameleon to set up a SLIP link
  31631. > from my PC to a Unix machine. It works fine with the included
  31632. > telnet program, but I was wondering if I could run Kermit
  31633. > over this TCP connection.
  31634. > From reading the manual, 
  31635. > I know that MS-DOS Kermit can run through a variety
  31636. > of connections beyond straight serial through a UART,
  31637. > things like NetBIOS, EBIOS, etc. But as far as I can tell
  31638. > from the Chameleon documentation, the only interface it supports
  31639. > is WinSock, which is not listed as supported by Kermit.
  31640. > Does anyone have any ideas or experience on this?
  31641. > Is WinSock support coming in version 3.14?
  31642. ------------
  31643.     I think we need to explain winsock et al again. Winsock is a pure
  31644. Windows support program (a spec, vendors make their own programs obeying
  31645. the winsock spec), it cannot run at DOS level, and by itself it does nothing.
  31646. Only pure Windows applications can talk to this Windows winsock support
  31647. program. Beneath the winsock api level is someone's Windows TCP/IP protocol 
  31648. stack and whatever they choose to do about attaching to a lan adapter board.
  31649. Above the winsock api level are many applications which are dependent on
  31650. the winsock TCP/IP stack to communicate anywhere at all. Again, this is 100%
  31651. Windows-only stuff (not to mention 16-bit vs 32-bit Windows-only differences).
  31652.     Kermit is a smart DOS program with Windows awareness, but it is not
  31653. a pure Windows program. It's not a TCP/IP stack which can be taken out and
  31654. used for other purposes. It is a complete program (TCP/IP stack, Kermit
  31655. protocol stack, applications, you name it) all in itself. Thus it is not
  31656. associated with winsock.
  31657.     If your work requires a winsock compatible TCP/IP stack then please
  31658. look around at the many commerical offerings.
  31659.         Joe D.
  31660.  
  31661. From news@columbia.edu Thu Oct 13 18:10:42 1994
  31662. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28033
  31663.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 13 Oct 1994 14:10:47 -0400
  31664. Received: by apakabar.cc.columbia.edu id AA14581
  31665.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 13 Oct 1994 14:10:44 -0400
  31666. Path: news.columbia.edu!usenet
  31667. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  31668. Newsgroups: comp.protocols.kermit.misc
  31669. Subject: Re: The MSKermit Book
  31670. Date: 13 Oct 1994 18:10:42 GMT
  31671. Organization: Columbia University
  31672. Lines: 57
  31673. Message-Id: <37jt72$e7i@apakabar.cc.columbia.edu>
  31674. References: <1994Oct13.122522.1@wcsub.ctstateu.edu>
  31675. Nntp-Posting-Host: fdc.cc.columbia.edu
  31676. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  31677.  
  31678. In article <1994Oct13.122522.1@wcsub.ctstateu.edu>  
  31679. belanger002@wcsub.ctstateu.edu writes:
  31680. > In article <37jg41$96h@news.ysu.edu>, am856@yfn.ysu.edu 
  31681. (Michael DeCosta III) writes:
  31682. > > 
  31683. > > Could the people who have found establishments carrying the Kermit
  31684. > > book please post the names of those stores (Book, Computer or other)
  31685. > > where they found it?
  31686. > > 
  31687. > > Would a college or university book store be more likely to have it?
  31688. > That's how I got my copies.  The Kermit books also carry
  31689. > Prentice-Hall ISBN numbers, and can be ordered by any bookstore.
  31690. > Using MS-DOS Kermit, 2nd ed, 0-13-952276-X.
  31691. > Using C-Kermit, 0-13-037490-3.
  31692. > Obvoiusly, buying direct from Columbia helps support the Kermit effort
  31693. > a little more.
  31694. Yes, Kermit books can be ordered direct from Columbia (see below).
  31695.  
  31696. The confusion with the bookstores came about because the original Digital
  31697. Press, which was part of Digital Equipment Corporation, was divested by
  31698. Digital and bought out by Butterworth-Heinemann, which in turn is a "member
  31699. of the Reed Elsevier Group".  Unfortunately, most bookstores do not know
  31700. about this yet.  When they run out of Kermit books and go back to Prentice
  31701. Hall (distributor for the original Digital Press, but not for Butterworths)
  31702. (confusing?) to redorder, they are told that the book is "out of print"
  31703. and are not referred to Butterworths.  We have been trying to get this
  31704. situation rectified, but I have no concrete proof that matters have improved.
  31705.  
  31706. Bookstores should contact Butterworth Heinemann / Digital Press, 225 Wildwood
  31707. Street, Woburn, MA  01801, USA, phone +1 800 366-2665.  Individuals can
  31708. also order by calling this toll-free number.
  31709.  
  31710. The Prentice Hall ISBN numbers are no longer valid.  The valid ISBNs are:
  31711.  
  31712.   "Using MS-DOS Kermit"                1-55558-082-3
  31713.   "Using C-Kermit"                     1-55558-108-0
  31714.   "Kermit, A File Transfer Protocol"   0-932376-88-6
  31715.  
  31716. Similarly, DEC order number (EY-xxxx-DP) are no longer valid and the books
  31717. can no longer be ordered from DECdirect.
  31718.  
  31719. Butterworth Heinemann overseas phone numbers are:
  31720.  
  31721.   +1 800 665-1148 (Logan Bros, Winnepeg, Manitoba office for Canada)
  31722.   +44 993 58521   (Rushden, England office for Europe)
  31723.   +61 2 372-5511  (Chatswood, NSW office for Australia & New Zealand)
  31724.   +65 220-3684    (Singapore office for Asia)
  31725.  
  31726. You can order direct from Columbia by calling +1 212 854-3703 or by
  31727. sending in an order form.  Send e-mail to kermit@columbia.edu for
  31728. further information.
  31729.  
  31730. Thanks!
  31731.  
  31732. - Frank
  31733.  
  31734. From news@columbia.edu Thu Oct 13 05:32:23 1994
  31735. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02886
  31736.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 13 Oct 1994 15:00:12 -0400
  31737. Received: by apakabar.cc.columbia.edu id AA18843
  31738.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 13 Oct 1994 15:00:10 -0400
  31739. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  31740. From: jrd@cc.usu.edu (Joe Doupnik)
  31741. Newsgroups: comp.protocols.kermit.misc
  31742. Subject: Re: Hangup and Z100 MSKermit 3.13
  31743. Message-Id: <1994Oct13.113223.29783@cc.usu.edu>
  31744. Date: 13 Oct 94 11:32:23 MDT
  31745. References: <37jh8f$9p1@news.ysu.edu>
  31746. Organization: Utah State University
  31747. Lines: 16
  31748. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  31749.  
  31750. In article <37jh8f$9p1@news.ysu.edu>, am856@yfn.ysu.edu (Michael DeCosta III) writes:
  31751. > MSKermit 3.13 has this weird artifact where if you use the hangup
  31752. > command in a script or from the MSKERMIT prompt it doesn't reset
  31753. > DTR correctly. However from Connect mode's ^] menu "H" performs
  31754. > hangup correctly.
  31755. > I have gotten arround this in scripts by defining my own hangup
  31756. > macro that uses the Hayes AT command "+++" to hangup.
  31757. > I wanted to pass this work-around to any other Z100 MSKermit 3.13
  31758. > users. 
  31759. ----------
  31760.     Which comms ports, what kind of modem, what does "correctly"
  31761. mean in this case?
  31762.     Joe D.
  31763.  
  31764. From news@columbia.edu Thu Oct 13 21:04:43 1994
  31765. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10974
  31766.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 13 Oct 1994 17:04:54 -0400
  31767. Received: by apakabar.cc.columbia.edu id AA00493
  31768.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 13 Oct 1994 17:04:47 -0400
  31769. Path: news.columbia.edu!usenet
  31770. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  31771. Newsgroups: comp.protocols.kermit.misc
  31772. Subject: MS-DOS Kermit 3.14 Beta Ready
  31773. Date: 13 Oct 1994 21:04:43 GMT
  31774. Organization: Columbia University
  31775. Lines: 4
  31776. Message-Id: <37k7db$fb@apakabar.cc.columbia.edu>
  31777. Nntp-Posting-Host: fdc.cc.columbia.edu
  31778. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  31779.  
  31780. See announcement in comp.protocols.kermit and/or
  31781. comp.protocols.kermit.announce.
  31782.  
  31783. - Frank
  31784.  
  31785. From news@columbia.edu Thu Oct 13 17:49:31 1994
  31786. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13944
  31787.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 13 Oct 1994 17:49:31 -0400
  31788. Received: by apakabar.cc.columbia.edu id AA04887
  31789.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 13 Oct 1994 17:49:29 -0400
  31790. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news.cac.psu.edu!news.pop.psu.edu!psuvax1!news.cc.swarthmore.edu!netnews.upenn.edu!RWR-PHYSIOL.MED.UPENN.EDU!RATZLAFF
  31791. From: RATZLAFF@a1.mscf.upenn.edu (Ron Ratzlaff)
  31792. Newsgroups: comp.protocols.kermit.misc
  31793. Subject: Problem: VT100 "print through"
  31794. Date: Thu, 13 Oct 1994 16:16:29
  31795. Organization: Dep't Physiol., University of Pennsylvania
  31796. Lines: 13
  31797. Message-Id: <RATZLAFF.9.00104675@A1.MSCF.UPENN.EDU>
  31798. Nntp-Posting-Host: rwr-physiol.med.upenn.edu
  31799. X-Newsreader: Trumpet for Windows [Version 1.0 Rev A]
  31800. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  31801.  
  31802. I'm using Kermit's TCP/IP capability to connect to a local VAX.  I have 
  31803. Kermit set-up to emulate a VT100 terminal for these sessions.  The problem
  31804. is when the VAX issues a "print through" command to the VT100 emulator to
  31805. make print outs and plots on my local printer attached to my PC: characters 
  31806. are missing from the resulting print out.  There appears to be 
  31807. something wrong in the handshake somewhere.  It is especially noticeable when 
  31808. I'm trying to make a plot.
  31809.  
  31810. Is there some SET command I need to use to avoid loosing characters?
  31811.  
  31812. Any help appreciated.  I'm using Kermit ver 3.13 for MS-DOS.
  31813.  
  31814. Thanks.
  31815.  
  31816. From news@columbia.edu Thu Oct 13 22:10:05 1994
  31817. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15249
  31818.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 13 Oct 1994 18:10:12 -0400
  31819. Received: by apakabar.cc.columbia.edu id AA06883
  31820.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 13 Oct 1994 18:10:09 -0400
  31821. Path: news.columbia.edu!usenet
  31822. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  31823. Newsgroups: comp.protocols.kermit.misc
  31824. Subject: Re: Problem: VT100 "print through"
  31825. Date: 13 Oct 1994 22:10:05 GMT
  31826. Organization: Columbia University
  31827. Lines: 37
  31828. Message-Id: <37kb7t$6mm@apakabar.cc.columbia.edu>
  31829. References: <RATZLAFF.9.00104675@A1.MSCF.UPENN.EDU>
  31830. Nntp-Posting-Host: fdc.cc.columbia.edu
  31831. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  31832.  
  31833. In article <RATZLAFF.9.00104675@A1.MSCF.UPENN.EDU> RATZLAFF@A1.MSCF.UPENN.EDU  
  31834. (Ron Ratzlaff) writes:
  31835. > I'm using Kermit's TCP/IP capability to connect to a local VAX.  I have 
  31836. > Kermit set-up to emulate a VT100 terminal for these sessions.  The problem
  31837. > is when the VAX issues a "print through" command to the VT100 emulator to
  31838. > make print outs and plots on my local printer attached to my PC: characters 
  31839. > are missing from the resulting print out.  There appears to be 
  31840. > something wrong in the handshake somewhere.  It is especially noticeable
  31841. > when I'm trying to make a plot.
  31842. What kind of printer is it?  Is it a serial or parallel printer?  Is it
  31843. a graphics printer? 
  31844.  
  31845. Parallel printers should not lose characters.  It is possible, however,
  31846. that Kermit itself is losing incoming characters if an effective means
  31847. of flow control (RTS/CTS or Xon/Xoff) is not enabled.  The latter is
  31848. much better, but you still have to worry about what happens on the VMS
  31849. system, which does not support Xon/Xoff.  What is the remote modem
  31850. connected to?  A VAX port?  A LAT box?  Some other kind of terminal
  31851. server?
  31852.  
  31853. Since you say you are making plots, maybe you have some kind of graphics
  31854. printer driver installed?
  31855.  
  31856. As you can see, there are many variables here.  But in general the key is
  31857. to have the most effective possible means of flow control enabled at EVERY
  31858. POINT along the communication path: the remote mode, the port/device/driver
  31859. the remote modem is connected to; the local modem, the PC's serial port,
  31860. the printer port, the printer itself, and even the connection between the
  31861. two modems (this happens automatically if it is an error-corrected
  31862. connection).  And VMS itself (SET TERMINAL /HOSTSYNC /TTSYNC).
  31863.  
  31864. As you can also see, most of these items are outside of Kermit's control.
  31865.  
  31866. Who said data communication was easy?
  31867.  
  31868. - Frank
  31869.  
  31870. From news@columbia.edu Thu Oct 13 22:18:49 1994
  31871. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15867
  31872.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 13 Oct 1994 18:18:58 -0400
  31873. Received: by apakabar.cc.columbia.edu id AA07740
  31874.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 13 Oct 1994 18:18:51 -0400
  31875. Path: news.columbia.edu!usenet
  31876. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  31877. Newsgroups: comp.protocols.kermit.misc
  31878. Subject: Re: Problem: VT100 "print through"
  31879. Date: 13 Oct 1994 22:18:49 GMT
  31880. Organization: Columbia University
  31881. Lines: 16
  31882. Message-Id: <37kbo9$7hq@apakabar.cc.columbia.edu>
  31883. References: <37kb7t$6mm@apakabar.cc.columbia.edu>
  31884. Nntp-Posting-Host: fdc.cc.columbia.edu
  31885. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  31886.  
  31887. In article <37kb7t$6mm@apakabar.cc.columbia.edu> fdc@fdc.cc.columbia.edu  
  31888. (Frank da Cruz) writes:
  31889. > Parallel printers should not lose characters.  It is possible, however,
  31890. > that Kermit itself is losing incoming characters if an effective means
  31891. > of flow control (RTS/CTS or Xon/Xoff) is not enabled.  The latter is
  31892.                                                              ^^^^^^
  31893. Oops, I meant:                                               former
  31894.  
  31895. > much better, but you still have to worry about what happens on the VMS
  31896. > system, which does not support Xon/Xoff.  What is the remote modem
  31897.                                  ^^^^^^^^
  31898. Oops, I meant:                   RTS/CTS
  31899.  
  31900. Too much coffee...
  31901.  
  31902. - Frank
  31903.  
  31904. From news@columbia.edu Thu Oct 13 18:42:13 1994
  31905. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20498
  31906.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 13 Oct 1994 19:32:44 -0400
  31907. Received: by apakabar.cc.columbia.edu id AA13492
  31908.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 13 Oct 1994 19:32:43 -0400
  31909. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!uhog.mit.edu!europa.eng.gtefsd.com!howland.reston.ans.net!torn!news.ccs.queensu.ca!news
  31910. From: mike@ccs.queensu.ca (Mike Smith)
  31911. Newsgroups: comp.protocols.kermit.misc
  31912. Subject: Suggestions for the Columbia Dialing Scripts
  31913. Date: 13 Oct 1994 18:42:13 GMT
  31914. Organization: Queen's University, Kingston
  31915. Lines: 70
  31916. Distribution: world
  31917. Message-Id: <37jv25$8nk@knot.queensu.ca>
  31918. Nntp-Posting-Host: ccs-sparc2.ccs
  31919. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  31920.  
  31921. Michael Braverman's question about the AT&T Dataport dialing script
  31922. has prompted me to offer the following observations on the current
  31923. batch of MS-Kermit dialing scripts.  Currently I patch all the scripts
  31924. to suit my own preferences so partly this note is in hopes that Columbia
  31925. will see things my way and incorporate some of these suggestions into
  31926. their standard distribution.  :-)  There's also a question or two buried
  31927. in the following that I'd like answered.  And lastly, I hope others
  31928. working with these scripts may find a useful idea or two.  Sorry the post
  31929. is so long.
  31930.  
  31931. 1. I've found that HAYES.SCR dies with some modems because the code at 
  31932.    GOTMSG executes before the full CONNECT message is back.  For example,
  31933.    with a GVC 9600, the modem only has time to deliver CONNE before the
  31934.    dialing script compares the response to CONNECT.  The comparison fails,
  31935.    and the script stops with "No dialtone or no answer.  Try again later."
  31936.    I first solved this by adding a PAUSE 2 before the comparison.  Yesterday,
  31937.    a student told me he solved it by changing "reinput 0 connect" to
  31938.    "reinput 2 connect".  Page 219 of "Using MS-DOS Kermit" says the timeout
  31939.    interval on the reinput command is ignored.  Line 1434 of KERMIT.BWR says
  31940.    "If the REINPUT command fails to find the requested text in the INPUT
  31941.    command buffer, it will wait (up to the timeout interval) for more
  31942.    characters to arrive from the communication channel."  Ok, so, after
  31943.    waiting for the timeout, does REINPUT make the comparison again?  Or
  31944.    perhaps REINPUT recognizes that the initial substring is a match and
  31945.    so is willing to wait for more characters?  If so, I can adopt my
  31946.    student friend's solution which  is more elegant than pausing in every case.
  31947.    If not, then why does changing the timeout interval to 2 work?  In any
  31948.    case, I suggest the standard HAYES.SCR should be changed to account
  31949.    for these slow modems.
  31950.  
  31951. 2. I find the noise level of the scripts irritating.  (In my opinion) they
  31952.    should not automatically set input echo on.  Similarly, the scripts that
  31953.    echo messages like, "Enabling hardware flow control", etc., are giving
  31954.    feedback that is not useful to the average user.  True, this may be a
  31955.    matter of taste.  My preference is for all this feedback to be controlled
  31956.    by a noiselevel setting that is 0 (silent) by default.  Increasing the
  31957.    noiselevel variable increases the feedback.
  31958.  
  31959. 3. The number of redials and the pause between redials should be controlled
  31960.    by variables rather than hardcoded into the dialing scripts.
  31961.  
  31962. 4. The dialing scripts should not automatically set parity to none since
  31963.    that overrides the parity setting in the dialing directory.
  31964.  
  31965. 5. Similarly, I've had trouble with some scripts trying to set the DTE<->DCE
  31966.    speed as high as the modem will allow.  I may be on shaky ground here
  31967.    but for our environment, 38400 is a better choice for many systems.  And
  31968.    for some of our services, it is necessary that the speed set in the dialing
  31969.    directory be respected.
  31970.  
  31971. 6. I wonder if HAYES.SCR might be patched to automatically "set output pacing"
  31972.    if the initial contact fails.  Again, those with more experience may
  31973.    convince me this is a bad idea.  (I'm looking for guidance here.)
  31974.    But the HAYES.SCR initialization string is fairly innocuous and maybe
  31975.    just automatically retrying with output pacing at 200 would catch the
  31976.    occasional dumb modem that seems to need this help.  Anyhow, unless
  31977.    someone has a strong argument against this tactic I plan to implement
  31978.    this strategy at Queen's.
  31979.  
  31980. In summary, I'm hoping that over time, a set of dialing scripts will emerge
  31981. that work for all PC/modem combinations here at Queen's.  (Probably a
  31982. vain hope.)  I hope that some of the above suggestions will be useful to
  31983. others and I welcome comments from Columbia and anyone else on these ideas.
  31984.  
  31985.  
  31986. -- 
  31987.  
  31988.  Mike Smith                                  mike@ccs.queensu.ca
  31989.  Queen's University                          Michael.D.Smith@QueensU.CA
  31990.  Computing and Communications Services       (613) 545-2024
  31991.  
  31992. From news@columbia.edu Fri Oct 14 04:05:18 1994
  31993. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04526
  31994.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 14 Oct 1994 00:38:21 -0400
  31995. Received: by apakabar.cc.columbia.edu id AA05045
  31996.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 14 Oct 1994 00:38:20 -0400
  31997. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!ub!ns.potsdam.edu!news.potsdam.edu!nelson
  31998. From: nelson@crynwr.crynwr.com (Russell Nelson)
  31999. Newsgroups: comp.protocols.kermit.misc
  32000. Subject: Re: Please explain Kermit's copyright
  32001. Date: 14 Oct 1994 04:05:18 GMT
  32002. Organization: Crynwr Software
  32003. Lines: 34
  32004. Message-Id: <NELSON.94Oct14000518@crynwr.crynwr.com>
  32005. References: <36lpdt$ns4@cruella.ee.pdx.edu> <36ml93$1ja@apakabar.cc.columbia.edu>
  32006.     <NELSON.94Oct5104617@crynwr.crynwr.com> <CxAsLn.tD@brunel.ac.uk>
  32007. Nntp-Posting-Host: nh2.potsdam.edu
  32008. In-Reply-To: Alan.Holmes@brunel.ac.uk's message of Fri, 7 Oct 1994 10:17:47 GMT
  32009. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  32010.  
  32011. In article <CxAsLn.tD@brunel.ac.uk> Alan.Holmes@brunel.ac.uk (Alan J Holmes) writes:
  32012.    In article <NELSON.94Oct5104617@crynwr.crynwr.com> nelson@crynwr.crynwr.com (Russell Nelson) writes:
  32013.    >In article <36ml93$1ja@apakabar.cc.columbia.edu> fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  32014.  
  32015.    >   If you want to use our work directly, nobody is forcing you to
  32016.    >   spend one red cent.  If Kermit became shareware, as so many of you
  32017.    >   advocate, then everybody who uses it would have to (a) send us
  32018.    >   money, (b) stop using it, or (c) become an outlaw.  That would
  32019.    >   include the universities, government agencies, research institute,
  32020.    >   hospitals, convents, and orphanages.
  32021.  
  32022.    >   Why don't we give it rest, eh?  Thanks.
  32023.  
  32024.    >Because the Kermit copyright is limiting (intentionally or not) the
  32025.    >distribution of Kermit.  If you want universities, government
  32026.    >agencies, research institutes, hospitals, convents, and orphanages to
  32027.    >be able to use Kermit, you have to make sure that they can get it.
  32028.  
  32029.    Perhaps I have missed something, I was under the impression that
  32030.    distribution was already free to this list and indeed anyone who
  32031.    has access to the email system.
  32032.  
  32033. There is no such thing as no-cost software.  Every method of
  32034. distribution has a cost.  The Kermit copyright reserves the right to
  32035. distribute on physical media at any non-zero price.  They do not
  32036. distribute on CD-ROM.  So, the only way to get kermit on physical
  32037. media, if you don't already know someone with the version you want, is
  32038. to buy it on floppies from Columbia.
  32039.  
  32040. --
  32041. -russ <nelson@crynwr.com>    http://www.crynwr.com/crynwr/nelson.html
  32042. Crynwr Software   | Crynwr Software sells packet driver support | ask4 PGP key
  32043. 11 Grant St.      | +1 315 268 1925 (9201 FAX)  | What is thee doing about it?
  32044. Potsdam, NY 13676 | LPF member - ask me about the harm software patents do.
  32045.  
  32046. From news@columbia.edu Fri Oct 14 05:21:03 1994
  32047. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06917
  32048.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 14 Oct 1994 01:21:06 -0400
  32049. Received: by apakabar.cc.columbia.edu id AA07103
  32050.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 14 Oct 1994 01:21:05 -0400
  32051. Path: news.columbia.edu!konichiwa.cc.columbia.edu!ycl6
  32052. From: ycl6@columbia.edu (Yeechang Lee)
  32053. Newsgroups: comp.protocols.kermit.misc
  32054. Subject: Got the 3.14 beta, a question
  32055. Date: 14 Oct 1994 05:21:03 GMT
  32056. Organization: Columbia University, New York City
  32057. Lines: 10
  32058. Message-Id: <37l4fv$6th@apakabar.cc.columbia.edu>
  32059. Nntp-Posting-Host: konichiwa.cc.columbia.edu
  32060. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  32061.  
  32062. Well, I got the 3.14 beta and like what I see.  No problems found yet, but
  32063. one puzzling thing . . . if I jump into my editor, QEdit, by typing 'edit'
  32064. at the command line, the modem hangs up.  3.13 didn't do this.  What am I
  32065. doing wrong here?
  32066.  
  32067.  
  32068. ---  _________________________________   o   ______________________________
  32069.      Yeechang Lee  (ycl6@columbia.edu) o   o I sure as heck don't speak for
  32070.      Nevada Las Vegas Mission 1992-'94 \_O_/ Columbia University, other New
  32071.      Columbia University/New York City   |   Yorkers, or anyone else at all
  32072.  
  32073. From news@columbia.edu Fri Oct 14 05:14:40 1994
  32074. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08165
  32075.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 14 Oct 1994 01:52:04 -0400
  32076. Received: by apakabar.cc.columbia.edu id AA08220
  32077.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 14 Oct 1994 01:52:03 -0400
  32078. Path: news.columbia.edu!sol.ctr.columbia.edu!math.ohio-state.edu!magnus.acs.ohio-state.edu!usenet.ins.cwru.edu!news.ysu.edu!yfn.ysu.edu!am856
  32079. From: am856@yfn.ysu.edu (Michael DeCosta III)
  32080. Newsgroups: comp.protocols.kermit.misc
  32081. Subject: Re: Hangup and Z100 MSKermit 3.13
  32082. Date: 14 Oct 1994 05:14:40 GMT
  32083. Organization: St. Elizabeth Hospital, Youngstown, OH
  32084. Lines: 26
  32085. Message-Id: <37l440$2d6@news.ysu.edu>
  32086. References: <1994Oct13.113223.29783@cc.usu.edu> <37jh8f$9p1@news.ysu.edu>
  32087. Reply-To: am856@yfn.ysu.edu (Michael DeCosta III)
  32088. Nntp-Posting-Host: yfn2.ysu.edu
  32089. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  32090.  
  32091.  
  32092. In a previous article, jrd@cc.usu.edu (Joe Doupnik) says:
  32093.  
  32094. >In article <37jh8f$9p1@news.ysu.edu>, am856@yfn.ysu.edu (Michael DeCosta III) writes:
  32095. >> 
  32096. >> MSKermit 3.13 has this weird artifact where if you use the hangup
  32097. >> command in a script or from the MSKERMIT prompt it doesn't reset
  32098. >> DTR correctly. However from Connect mode's ^] menu "H" performs
  32099. >> hangup correctly.
  32100. >> 
  32101. >> I have gotten arround this in scripts by defining my own hangup
  32102. >> macro that uses the Hayes AT command "+++" to hangup.
  32103. >> 
  32104. >> I wanted to pass this work-around to any other Z100 MSKermit 3.13
  32105. >> users. 
  32106. >----------
  32107. >    Which comms ports, what kind of modem, what does "correctly"
  32108. >mean in this case?
  32109. >    Joe D.
  32110. >
  32111.  
  32112. I have had this problem with all brands of modems.
  32113. The problem is that hangup drops the DTR line to hang up but
  32114. only in Connect mode does it bring the line back up.
  32115. In Command and Script mode once hangup drops DTR is stays down.
  32116. I am using Communications port 1.
  32117.  
  32118. From news@columbia.edu Fri Oct 14 05:19:52 1994
  32119. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10732
  32120.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 14 Oct 1994 03:09:57 -0400
  32121. Received: by apakabar.cc.columbia.edu id AA10798
  32122.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 14 Oct 1994 03:09:56 -0400
  32123. Newsgroups: comp.unix.bsd,comp.os.386bsd.misc,comp.protocols.kermit.misc
  32124. Path: news.columbia.edu!panix!zip.eecs.umich.edu!yeshua.marcam.com!charnel.ecst.csuchico.edu!psgrain!agora!agora.rdrop.com!tedm
  32125. From: tedm@agora.rdrop.com (Ted Mittelstaedt)
  32126. Subject: Re: BSDI 1.1 problems using kermit and taylor uucp dial out???
  32127. Distribution: na
  32128. Sender: news@agora.rdrop.com (USENET News)
  32129. Nntp-Posting-Host: agora.rdrop.com
  32130. Organization: RainDrop Laboratories
  32131. Message-Id: <CxnDH8.82p@agora.rdrop.com>
  32132. References: <CxIp0q.GqH@esseye.si.com>
  32133. Date: Fri, 14 Oct 1994 05:19:52 GMT
  32134. Lines: 21
  32135. Xref: news.columbia.edu comp.unix.bsd:17151 comp.os.386bsd.misc:4036 comp.protocols.kermit.misc:694
  32136. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  32137.  
  32138. In article <CxIp0q.GqH@esseye.si.com>,
  32139. David Scholten <scholten@esseye.si.com> wrote:
  32140. >This may be in some faq someplace so I appologize about this.  But I
  32141. >am having some weird problems using the latest kermit and taylor to dial
  32142. >out from my BSDI 1.1 based box.  The problems are similar in nature:
  32143. >
  32144.  
  32145. If you figure out how to make UUCP and cu/kermit/etc share the same port
  32146. please tell me!  :-)
  32147.  
  32148. Hey, I am looking for a sendmail.cf that works with UUCP, I installed
  32149. FreeBSD 1.1 from the CDROM and the default sendmail.cf only seems to know
  32150. how to send SMTP mail, at least I don't see the uux transport program
  32151. listed anywhere.  Right now I'm trying to hack it together with the O'Rilley
  32152. book on Sendmail, and a couple of examples from a Sun box, and I really don't
  32153. want to spend a week or two rewriting sendmail,cf if someone has already
  32154. done it.
  32155.  
  32156. Thanks,
  32157. tedm@agora.rdrop.com
  32158.  
  32159.  
  32160. From news@columbia.edu Fri Oct 14 09:16:06 1994
  32161. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14968
  32162.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 14 Oct 1994 05:16:14 -0400
  32163. Received: by apakabar.cc.columbia.edu id AA14764
  32164.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 14 Oct 1994 05:16:12 -0400
  32165. Path: news.columbia.edu!sol.ctr.columbia.edu!usc!nic-nac.CSU.net!csulb.edu!htnguyen
  32166. From: htnguyen@csulb.edu (One from the West)
  32167. Newsgroups: comp.protocols.kermit.misc
  32168. Subject: MS-DOS Kermit 3.14 Beta problem with PUSH
  32169. Date: 14 Oct 1994 09:16:06 GMT
  32170. Organization: Cal State Long Beach
  32171. Lines: 12
  32172. Message-Id: <37li8m$d57@garuda.csulb.edu>
  32173. Nntp-Posting-Host: grover.cecs.csulb.edu
  32174. X-Newsreader: TIN [version 1.2 PL2]
  32175. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  32176.  
  32177.  
  32178.     I have download the beta version of kermit from columbia.edu.  Now
  32179. everytime I escape to DOS the modem hang up.  Seem like it drop DTR when
  32180. you go to DOS for some reason.  3.13 doesn't do this.  Can anyone
  32181. enlighten me on this problem ? :) Thank you very much.
  32182.  
  32183. --
  32184.                        Huy Nguyen (htnguyen@csulb.edu)
  32185.                 Network Administrator
  32186.                 Career Development Center
  32187.                 Califonia State Univeristy Long Beach
  32188.  
  32189.  
  32190. From news@columbia.edu Fri Oct 14 10:48:03 1994
  32191. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02857
  32192.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 14 Oct 1994 06:50:38 -0400
  32193. Received: by apakabar.cc.columbia.edu id AA18069
  32194.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 14 Oct 1994 06:50:36 -0400
  32195. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!pipex!warwick!bham!news!B.A.McCauley
  32196. From: B.A.McCauley@bham.ac.uk
  32197. Newsgroups: comp.protocols.kermit.misc
  32198. Subject: Re: KERMIT answer back to Enq (ASCII 5)
  32199. Date: 14 Oct 1994 10:48:03 GMT
  32200. Organization: The University of Birmingham, UK.
  32201. Lines: 40
  32202. Message-Id: <B.A.MCCAULEY.94Oct14114803@wcl-l.bham.ac.uk>
  32203. References: <B.A.MCCAULEY.94Oct12122719@wcl-l.bham.ac.uk>
  32204.     <1994Oct12.093220.29625@cc.usu.edu>
  32205. Nntp-Posting-Host: wcl-l.bham.ac.uk
  32206. In-Reply-To: jrd@cc.usu.edu's message of 12 Oct 94 09:32:20 MDT
  32207. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  32208.  
  32209. In article <1994Oct12.093220.29625@cc.usu.edu> jrd@cc.usu.edu (Joe Doupnik) writes:
  32210. >In article <B.A.MCCAULEY.94Oct12122719@wcl-l.bham.ac.uk>, B.A.McCauley@bham.ac.uk writes:
  32211. >> In MS-KERMIT 3.13 8 the "SET TERM ANSWERBACK" command which contols
  32212. >> the sesponse to ENQ characters has only settings "ON" and "OFF". This,
  32213. >> I assume, is a joke. Has it been extended to do something useful in
  32214. >> later versions?
  32215. >------------
  32216. >    Depends upon whom pranks are played. Answerback is a nice way of
  32217. >being sucked into someone else's prank when the answerback string is not
  32218. >quite what you wanted. We try to avoid this spontaneous suprize by canning
  32219. >the response and letting the user turn it on or off.
  32220.  
  32221. What? If you supect someone unautorized may maliciously edit your
  32222. MSCUSTOM.INI then surely having them change the answerback is the last
  32223. of your worries.
  32224.  
  32225. > The most common use
  32226. >of answerback was stashing passwords, and that is generally regarded as
  32227. >not a wise thing to do. 
  32228.  
  32229. The most common use of answer back _I've_ encontered is getting the
  32230. physical location of the terminal on a LAN with terminal servers hat
  32231. do not easily give this information. The terminal location in this
  32232. context is *not* used for purposes of security but rather allows some
  32233. preferences to be configured per location rather than per
  32234. user. Notably these include default hardcopy output device, printer
  32235. type and stationary stock attached to the slave printer port, default
  32236. opening menu.
  32237.  
  32238. At present we work round this problem by detecting the "MS-DOS KERMIT"
  32239. response and sending a secondary enquiry using the APC facility to
  32240. execute a macro which returns the desired answer back string. This is
  32241. messy but it works. It also means that we have to enable the APC facility.
  32242. --
  32243.     \\   ( )   No Bullshit!   | Email: B.A.McCauley@bham.ac.uk
  32244.  .  _\\__[oo       from       | Phones: +44 121 471 3789 (home)
  32245. .__/  \\ /\@  /~)  /~[   /\/[ |  +44 121 627 2171 (voice) 2175 (fax)
  32246. .  l___\\    /~~) /~~[  /   [ | PGP-fp: D7 03 2A 4B D8 3A 05 37
  32247.  # ll  l\\  ~~~~ ~   ~ ~    ~ |         A1 93 FE EA BE E3 2A 91
  32248. ###LL  LL\\ (Brian McCauley)  | More: finger bam@wcl-rs.bham.ac.uk
  32249.  
  32250. From news@columbia.edu Thu Oct 13 23:07:37 1994
  32251. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17059
  32252.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 14 Oct 1994 07:55:27 -0400
  32253. Received: by apakabar.cc.columbia.edu id AA20761
  32254.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 14 Oct 1994 07:55:26 -0400
  32255. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!pipex!uunet!psinntp!newton.hartwick.edu!wisanr
  32256. From: wisanr@hartwick.edu (Dick Wisan)
  32257. Newsgroups: comp.protocols.kermit.misc
  32258. Subject: Re: Ring-bound Kermit Manuals
  32259. Message-Id: <1994Oct13.180737.1123@newton.hartwick.edu>
  32260. Date: 13 Oct 94 18:07:37 -0500
  32261. References: <370rss$cf7@canopus.cc.umanitoba.ca> <Cx9A7D.23I@ritz.mordor.com>  <V8Wckqo7IZ7I071yn@ritz.mordor.com>
  32262. Organization: HARTWICK COLLEGE
  32263. Lines: 39
  32264. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  32265.  
  32266. In article <V8Wckqo7IZ7I071yn@ritz.mordor.com>, kudut@ritz.mordor.com (Ken) writes:
  32267. > In article <1994Oct9.180929.6456@eisner>, billy@mix.com wrote:
  32268. >> In article <CxB32w.L21@ritz.mordor.com> Ken Udut
  32269. >> <kudut@ritz.mordor.com> writes:
  32270. >> 
  32271. >> > Or, if ringbound is prohibitively expensive, how about looseleaf, and 
  32272. >> > print a nice binder?
  32273. >> 
  32274. >> Docs in a binder would be fine with me.  Unfortunately this doesn't
  32275. >> seem to be the trend these days, even though there's a major difference
  32276. >> in convenience of use..  Even just the pages (and I supply the binder)
  32277. >> would suffice if cost or store shelf space are otherwise problems.
  32278. >> 
  32279. >> Billy Y..
  32280. >> 
  32281. > It's a pity too, since it's cheaper to print looseleaf pages
  32282. > (either print on regular paper, or pre-punched 3 hole pages), and
  32283. > handier).
  32284.            [snip]
  32285. > I have a Turbo Pascal 6 book that I used religiously to learn how
  32286. > to program Pascal.  But as thick as it is, it is bound with paper
  32287. > and glue binding.  Phooey - try staying open to the book on the first
  32288. > or last 50 pages - nearly impossible without a large paperweight 
  32289. > holding it down, while typing!
  32290.  
  32291. Hmm, those recent Borland manuals are a new kind of glue-back that's 
  32292. much better than the older ones.  They're less controllable than ring 
  32293. bindings but they lie a lot flatter then the ordinary kind.  For years,
  32294. I've cut the backs off manuals and punched them either for ring binders
  32295. or for plastic comb-backs.  Had to do that with the Kermit manual, but
  32296. I found Turbo Pascal 6 and 7 usable as is.  At least, propped up between
  32297. the keyboard & monitor, they stay open where I put them.
  32298.  
  32299. -- 
  32300. R. N. (Dick) Wisan  - Email: internet WISANR@hartwick.edu
  32301.                     - Snail: 37 Clinton Street, Oneonta NY 13820, U.S.A.
  32302.                     - Just your opinion, please, ma'am: No fax.
  32303.  
  32304. From news@columbia.edu Fri Oct 14 11:16:31 1994
  32305. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17879
  32306.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 14 Oct 1994 08:21:57 -0400
  32307. Received: by apakabar.cc.columbia.edu id AA22183
  32308.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 14 Oct 1994 08:21:56 -0400
  32309. Newsgroups: comp.protocols.kermit.misc
  32310. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!EU.net!sun4nl!news.nic.surfnet.nl!ruu.nl!survis.surfnet.nl!Xander.Jansen
  32311. From: Xander.Jansen@surfnet.nl
  32312. Subject: Re: MS-DOS Kermit 3.14 Beta problem with PUSH 
  32313. In-Reply-To: <37li8m$d57@garuda.csulb.edu> 
  32314. X-Sender: jansen@SURFnet.nl
  32315. Content-Type: TEXT/PLAIN; charset=US-ASCII
  32316. Message-Id: <Pine.SUN.3.91.941014121103.5700B-100000@survis.surfnet.nl>
  32317. Phone: +31 30 310290
  32318. Sender: usenet@cc.ruu.nl
  32319. Address: "Cluetinckborch, P.O. Box 19035, 3501 DA Utrecht, NL"
  32320. Telefax: +31 30 340903
  32321. Organization: SURFnet bv
  32322. References: <37li8m$d57@garuda.csulb.edu> 
  32323. Mime-Version: 1.0
  32324. Date: Fri, 14 Oct 1994 11:16:31 GMT
  32325. Lines: 16
  32326. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  32327.  
  32328. On 14 Oct 1994, One from the West wrote:
  32329.  
  32330. >     I have download the beta version of kermit from columbia.edu.  Now
  32331. > everytime I escape to DOS the modem hang up.  Seem like it drop DTR when
  32332. > you go to DOS for some reason.  3.13 doesn't do this.  Can anyone
  32333. > enlighten me on this problem ? :) Thank you very much.
  32334.  
  32335. Same here, with most commands (except CD and CWD). For example SHOW COMM
  32336. hangs up the modem. I noticed that the auto-hangup happens only with high
  32337. speeds, using a 2400bps modem all is fine (but slow of course ;-) Using
  32338. 2400bps speed with a 14k4 modem also works but using higher speeds with
  32339. the 14k4 modem not. 
  32340.  
  32341. Perhaps it has something to do with speed buffering and old UARTS ?
  32342.  
  32343. Xander
  32344.  
  32345. From news@columbia.edu Fri Oct 14 13:42:09 1994
  32346. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23100
  32347.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 14 Oct 1994 09:50:28 -0400
  32348. Received: by apakabar.cc.columbia.edu id AA27693
  32349.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 14 Oct 1994 09:50:26 -0400
  32350. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!pipex!lyra.csx.cam.ac.uk!warwick!bham!news!B.A.McCauley
  32351. From: B.A.McCauley@bham.ac.uk
  32352. Newsgroups: comp.protocols.kermit.misc
  32353. Subject: Relgious war: KERMIT answer back to Enq (ASCII 5)
  32354. Date: 14 Oct 1994 13:42:09 GMT
  32355. Organization: The University of Birmingham, UK.
  32356. Lines: 44
  32357. Message-Id: <B.A.MCCAULEY.94Oct14144209@wcl-l.bham.ac.uk>
  32358. References: <B.A.MCCAULEY.94Oct12122719@wcl-l.bham.ac.uk>
  32359.     <37goa6$2of@apakabar.cc.columbia.edu>
  32360. Nntp-Posting-Host: wcl-l.bham.ac.uk
  32361. In-Reply-To: fdc@fdc.cc.columbia.edu's message of 12 Oct 1994 13:28:37 GMT
  32362. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  32363.  
  32364. In article <37goa6$2of@apakabar.cc.columbia.edu> fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  32365. >In article <B.A.MCCAULEY.94Oct12122719@wcl-l.bham.ac.uk>  
  32366. >B.A.McCauley@bham.ac.uk writes:
  32367. >> In MS-KERMIT 3.13 8 the "SET TERM ANSWERBACK" command which contols
  32368. >> the sesponse to ENQ characters has only settings "ON" and "OFF". This,
  32369. >> I assume, is a joke. Has it been extended to do something useful in
  32370. >> later versions?
  32371. >>
  32372. >No, it's not a joke.  Without overstating the obvious, answerback messages
  32373. >pose a certain security risk.
  32374.  
  32375. This has the makings of a Relgious war :-(
  32376.  
  32377. Answerback messages per-se do not pose a security risk.
  32378.  
  32379. Remotely configurable answerback strings do and I'm not proposing this.
  32380.  
  32381. Programming your password into the answerback string is (without
  32382. overstating the obvious either) stupid - anyone who does that deserves
  32383. everything they get.
  32384.  
  32385. [The following is also posted to another branch of this thread - sorry]
  32386.  
  32387. The most common use of answer back _I've_ encontered is getting the
  32388. physical location of the terminal on a LAN with terminal servers hat
  32389. do not easily give this information. The terminal location in this
  32390. context is *not* used for purposes of security but rather allows some
  32391. preferences to be configured per location rather than per
  32392. user. Notably these include default hardcopy output device, printer
  32393. type and stationary stock attached to the slave printer port, default
  32394. opening menu.
  32395.  
  32396. At present we work round this problem by detecting the "MS-DOS KERMIT"
  32397. response and sending a secondary enquiry using the APC facility to
  32398. execute a macro which returns the desired answer back string. This is
  32399. messy but it works. It also means that we are forced to enable the APC
  32400. facility (now _that_ *is* a security hole).
  32401. --
  32402.     \\   ( )   No Bullshit!   | Email: B.A.McCauley@bham.ac.uk
  32403.  .  _\\__[oo       from       | Phones: +44 121 471 3789 (home)
  32404. .__/  \\ /\@  /~)  /~[   /\/[ |  +44 121 627 2171 (voice) 2175 (fax)
  32405. .  l___\\    /~~) /~~[  /   [ | PGP-fp: D7 03 2A 4B D8 3A 05 37
  32406.  # ll  l\\  ~~~~ ~   ~ ~    ~ |         A1 93 FE EA BE E3 2A 91
  32407. ###LL  LL\\ (Brian McCauley)  | More: finger bam@wcl-rs.bham.ac.uk
  32408.  
  32409. From news@columbia.edu Fri Oct 14 13:46:13 1994
  32410. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23105
  32411.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 14 Oct 1994 09:50:31 -0400
  32412. Received: by apakabar.cc.columbia.edu id AA27699
  32413.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 14 Oct 1994 09:50:30 -0400
  32414. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!pipex!lyra.csx.cam.ac.uk!warwick!bham!news!B.A.McCauley
  32415. From: B.A.McCauley@bham.ac.uk
  32416. Newsgroups: comp.protocols.kermit.misc
  32417. Subject: Re: Problem: VT100 "print through"
  32418. Date: 14 Oct 1994 13:46:13 GMT
  32419. Organization: The University of Birmingham, UK.
  32420. Lines: 22
  32421. Message-Id: <B.A.MCCAULEY.94Oct14144613@wcl-l.bham.ac.uk>
  32422. References: <RATZLAFF.9.00104675@A1.MSCF.UPENN.EDU>
  32423. Nntp-Posting-Host: wcl-l.bham.ac.uk
  32424. In-Reply-To: RATZLAFF@A1.MSCF.UPENN.EDU's message of Thu, 13 Oct 1994 16:16:29
  32425. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  32426.  
  32427. In article <RATZLAFF.9.00104675@A1.MSCF.UPENN.EDU> RATZLAFF@A1.MSCF.UPENN.EDU (Ron Ratzlaff) writes:
  32428.  
  32429. >I'm using Kermit's TCP/IP capability to connect to a local VAX.  I have 
  32430. >Kermit set-up to emulate a VT100 terminal for these sessions.  The problem
  32431. >is when the VAX issues a "print through" command to the VT100 emulator to
  32432. >make print outs and plots on my local printer attached to my PC: characters 
  32433. >are missing from the resulting print out.  There appears to be 
  32434. >something wrong in the handshake somewhere.  It is especially noticeable when 
  32435. >I'm trying to make a plot.
  32436. >
  32437. >Is there some SET command I need to use to avoid loosing characters?
  32438.  
  32439. Try using SET PRINTER to direct output to a file. Exit kermit and
  32440. print the file. If the same error occours then its probably a s/w
  32441. problem not a handshake problem.
  32442. --
  32443.     \\   ( )   No Bullshit!   | Email: B.A.McCauley@bham.ac.uk
  32444.  .  _\\__[oo       from       | Phones: +44 121 471 3789 (home)
  32445. .__/  \\ /\@  /~)  /~[   /\/[ |  +44 121 627 2171 (voice) 2175 (fax)
  32446. .  l___\\    /~~) /~~[  /   [ | PGP-fp: D7 03 2A 4B D8 3A 05 37
  32447.  # ll  l\\  ~~~~ ~   ~ ~    ~ |         A1 93 FE EA BE E3 2A 91
  32448. ###LL  LL\\ (Brian McCauley)  | More: finger bam@wcl-rs.bham.ac.uk
  32449.  
  32450. From news@columbia.edu Fri Oct 14 14:42:02 1994
  32451. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26645
  32452.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 14 Oct 1994 10:42:07 -0400
  32453. Received: by apakabar.cc.columbia.edu id AA01918
  32454.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 14 Oct 1994 10:42:05 -0400
  32455. Path: news.columbia.edu!aloha.cc.columbia.edu!ycl6
  32456. From: ycl6@aloha.cc.columbia.edu (Yeechang Lee)
  32457. Newsgroups: comp.protocols.kermit.misc
  32458. Subject: Re: MS-DOS Kermit 3.14 Beta problem with PUSH
  32459. Date: 14 Oct 1994 14:42:02 GMT
  32460. Organization: Columbia University, New York City
  32461. Lines: 14
  32462. Message-Id: <37m5bq$1re@apakabar.cc.columbia.edu>
  32463. References: <37li8m$d57@garuda.csulb.edu> <Pine.SUN.3.91.941014121103.5700B-100000@survis.surfnet.nl>
  32464. Nntp-Posting-Host: aloha.cc.columbia.edu
  32465. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  32466.  
  32467. In article <Pine.SUN.3.91.941014121103.5700B-100000@survis.surfnet.nl>,
  32468.  <Xander.Jansen@SURFnet.nl> wrote:
  32469. |Same here, with most commands (except CD and CWD). For example SHOW COMM
  32470. |hangs up the modem. I noticed that the auto-hangup happens only with high
  32471. |speeds, using a 2400bps modem all is fine (but slow of course ;-) Using
  32472. |2400bps speed with a 14k4 modem also works but using higher speeds with
  32473. |the 14k4 modem not. 
  32474.  
  32475. Same problem here as well.  I'm running 3.14 on a Tandy XT clone with an
  32476. Intel external 14.4k modem.
  32477. ---  _________________________________   o   ______________________________
  32478.      Yeechang Lee  (ycl6@columbia.edu) o   o I sure as heck don't speak for
  32479.      Nevada Las Vegas Mission 1992-'94 \_O_/ Columbia University, other New
  32480.      Columbia University/New York City   |   Yorkers, or anyone else at all
  32481.  
  32482. From news@columbia.edu Fri Oct 14 14:36:10 1994
  32483. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26823
  32484.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 14 Oct 1994 10:45:37 -0400
  32485. Received: by apakabar.cc.columbia.edu id AA02121
  32486.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 14 Oct 1994 10:45:35 -0400
  32487. Path: news.columbia.edu!sol.ctr.columbia.edu!caen!newsxfer.itd.umich.edu!europa.eng.gtefsd.com!howland.reston.ans.net!pipex!uknet!zippy.dct.ac.uk!ccdarg
  32488. From: ccdarg@zippy.dct.ac.uk (Alan Greig)
  32489. Newsgroups: comp.protocols.kermit.misc
  32490. Subject: Re: Query for fcd; was: Kermit takes an upper-case K
  32491. Message-Id: <1994Oct14.153610.7773@zippy.dct.ac.uk>
  32492. Date: 14 Oct 94 15:36:10 +0100
  32493. References: <6OCT94.14271506@enh.nist.gov> <CxJyF7.60z@lut.ac.uk>
  32494. Organization: University of Abertay Dundee (DIT)
  32495. Lines: 25
  32496. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  32497.  
  32498. In article <CxJyF7.60z@lut.ac.uk>, O.B.Schou@lut.ac.uk writes:
  32499. > In article <6OCT94.14271506@enh.nist.gov> reflib@enh.nist.gov writes:
  32500.  
  32501. >>  Someone claims that it began as an acronym: K.E.R.M.I.T; but no
  32502. >>explanation of the acronym was given.
  32503.  
  32504. > Well, look at One of The Kermit Books - "Kermit, A File Transfer
  32505. > Protocol" (by FdC), p3, at footnote 3:
  32506. > "3. Why? Mostly because there was a Muppets calendar on the wall when
  32507. > we were trying to think of a name, and Kermit is a pleasant, unassuming
  32508. > sort of character." ...
  32509.  
  32510. Now when I first came across Kermit in the early 1980s the docs
  32511. claimed it stood for something like "KL10 Error-free Reciprocal
  32512. Microcomputer Interface Terminal"
  32513.  
  32514. That may have been contrived to try and prevent them being
  32515. sued of course :-)
  32516.  
  32517. -- 
  32518. Alan Greig                            Janet: A.Greig@uk.ac.dct
  32519. University of Abertay Dundee       Internet: A.Greig@dct.ac.uk
  32520. Tel: (0382) 308810                 Int +44 382 308810
  32521.            -- Pavlov's dog: the runt of the litter? --
  32522.  
  32523. From news@columbia.edu Fri Oct 14 14:39:36 1994
  32524. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28452
  32525.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 14 Oct 1994 11:07:50 -0400
  32526. Received: by apakabar.cc.columbia.edu id AA03876
  32527.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 14 Oct 1994 11:07:43 -0400
  32528. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!pipex!sunic!news.funet.fi!news.csc.fi!news.helsinki.fi!not-for-mail
  32529. From: tmottone@cc.helsinki.fi (Teemu Mottonen)
  32530. Newsgroups: comp.protocols.kermit.misc
  32531. Subject: MS-Kermit 3.13, Windows, "Unknown hardware for port", 8250/16550 UART
  32532. Date: 14 Oct 1994 16:39:36 +0200
  32533. Organization: University of Helsinki
  32534. Lines: 27
  32535. Message-Id: <37m578$eg4@plootu.Helsinki.FI>
  32536. Nntp-Posting-Host: plootu.helsinki.fi
  32537. Mime-Version: 1.0
  32538. Content-Type: text/plain; charset=ISO-8859-1
  32539. Content-Transfer-Encoding: 8bit
  32540. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  32541.  
  32542. Hi all,
  32543.  
  32544. I have a problem with running MS-Kermit 3.13 under Windows 3.1. I'm
  32545. developing a program with Borland Pascal for Windows that uses Kermit
  32546. to call a central computer, transfer files etc. The com port settings
  32547. seem correct ('SET COM1 \x3F8 IRQ 4'), because Kermit works ok in DOS
  32548. and when executed directly from the Program Manager.
  32549.  
  32550. The problem is that after running Kermit once (to dial central computer)
  32551. on the second invokation, after 'SET PORT COM1' I get "?Warning: unknown
  32552. hardware for port. Using Bios as BIOS1". After this communication fails.
  32553.  
  32554. It seems that somehow Kermit is unable to verify the UART. I don't know
  32555. what causes this: Windows, Kermit or my program. So, is it possible to
  32556. disable the UART check (chkport routine in the assembler source code) by
  32557. patching KERMIT.EXE ? Or maybe there's some combination of PIF & .INI
  32558. settings that I'm missing ? Or perhaps I should somehow reset the UART
  32559. after running the first script ?
  32560.  
  32561. The modem is an external V.32 modem (8250 UART, but I use it at 2400 bps).
  32562. I've also tried this with an internal modem (V.32 & 16550), but same results.
  32563. The PC is a 486DX-33.
  32564.  
  32565. Thanks in advance,
  32566. Teemu Mottonen.
  32567. -- 
  32568. Teemu Mottonen - Department of Computer Science, University of Helsinki
  32569.  
  32570. From news@columbia.edu Fri Oct 14 16:41:02 1994
  32571. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06656
  32572.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 14 Oct 1994 12:41:07 -0400
  32573. Received: by apakabar.cc.columbia.edu id AA23607
  32574.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 14 Oct 1994 12:41:06 -0400
  32575. Path: news.columbia.edu!usenet
  32576. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  32577. Newsgroups: comp.protocols.kermit.misc,comp.protocols.kermit.announce
  32578. Subject: MS-DOS Kermit 3.14 Beta News and Update
  32579. Followup-To: comp.protocols.kermit.misc
  32580. Date: 14 Oct 1994 16:41:02 GMT
  32581. Organization: Columbia University
  32582. Lines: 41
  32583. Approved: fdc@columbia.edu
  32584. Message-Id: <37mcau$n1h@apakabar.cc.columbia.edu>
  32585. Nntp-Posting-Host: fdc.cc.columbia.edu
  32586. Xref: news.columbia.edu comp.protocols.kermit.misc:704 comp.protocols.kermit.announce:3
  32587. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  32588.  
  32589. Thanks to everyone for the quick reports concerning MS-DOS Kermit 3.14
  32590. Beta-2 dropping DTR (hanging up) when given a PUSH, RUN, etc, command.
  32591. This problem is now fixed, and a new mstibm.zip file was installed in the
  32592. kermit/test/bin directory on kermit.columbia.edu as of about 12:20pm
  32593. Eastern (USA) time, Friday, October 14, 1994.  This one identifies itself
  32594. as Beta-3, 14 Oct 94.
  32595.  
  32596. It is also available in text format as mstibm.boo and mstibm.uue in the
  32597. kermit/test/text directory, and these two have also been installed in
  32598. KERMSRV on CUVMA for BITNET/EARN/CREN access.
  32599.  
  32600. As mentioned in the original announcement, the ZIP file contains
  32601. subdirectories, and so in order to unzip it and preserve the directory
  32602. structure, which is ESSENTIAL to correction operation, you might have to
  32603. give your unzipping program a special switch to enable directory creation,
  32604. for example:
  32605.  
  32606.   pkunzip -d mstibm.zip
  32607.  
  32608. Otherwise you'll get lots of warnings about READ.ME files overwriting
  32609. each other, and you won't get the needed directory structure.
  32610.  
  32611. Yesterday's ZIP file contains a "draft" dialing script for the Intel High
  32612. Speed FaxModem, INTEL14.SCR.  This is completely untested; if you have one
  32613. of these modems, I'd appreciate it if you would test the new script and
  32614. let me know the results.  I'd also like to know if it works on other Intel
  32615. models, such as the Intel SatisFaxion.
  32616.  
  32617. Today's ZIP file adds another untested draft dialing script, FASTALK2.SCR,
  32618. for the Motorola FasTalkII.  Test results needed.
  32619.  
  32620. If any Israelis or Russians (or other people who use the Hebrew or Cyrillic
  32621. alphabets) are reading this newsgroup, I'd like reactions to the new Hebrew
  32622. and Cyrillic support.
  32623.  
  32624. If any Japanese people are reading and have been able to test the Kanji
  32625. terminal emulation in DOS/V, reports would be appreciated.  However, it
  32626. is presently a restriction that the Kanji terminal emulation does not work
  32627. with Nikkei Telecom database services.
  32628.  
  32629. - Frank
  32630.  
  32631. From news@columbia.edu Fri Oct 14 03:43:27 1994
  32632. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06985
  32633.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 14 Oct 1994 12:45:51 -0400
  32634. Received: by apakabar.cc.columbia.edu id AA24045
  32635.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 14 Oct 1994 12:45:49 -0400
  32636. Path: news.columbia.edu!sol.ctr.columbia.edu!caen!newsxfer.itd.umich.edu!gatech!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  32637. From: jrd@cc.usu.edu (Joe Doupnik)
  32638. Newsgroups: comp.protocols.kermit.misc
  32639. Subject: MSK 3.14 beta, DTR, answerback
  32640. Message-Id: <1994Oct14.094327.29901@cc.usu.edu>
  32641. Date: 14 Oct 94 09:43:27 MDT
  32642. Organization: Utah State University
  32643. Lines: 22
  32644. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  32645.  
  32646.     Thanks for the messages on DTR dropping when going to DOS.
  32647. Indeed, it did. It's fixed in "beta-3 14 Oct 1994" appearing on
  32648. kermit.columbia.edu today.
  32649.     For the technically curious, the problem was turning on UART
  32650. loopback while testing for 16550A-ness and vicinity, in the hope of
  32651. shutting off babble from the outside during the examination. I added
  32652. this last week but did not check for the side effect that the handshake 
  32653. lines might all drop too. So I don't turn on loopback anymore after this 
  32654. morning and thus DTR stays high/asserted/true/"1".
  32655.     If I could ask a favor of people submitting bug reports, it is
  32656. that you also send a copy directly to me, jrd@cc.usu.edu. NEWS takes
  32657. about a day to make its way out here in Utah but mail is much quicker.
  32658. ------
  32659.     Answerback folks. Here's my answer back on that. The host asks
  32660. for the contents of the string without the user being aware of it. That
  32661. is a security hole.
  32662.     We hear your comments, but I'd appreciate some separation of emotion 
  32663. from real need (or want it if it were available) so we can better estimate the 
  32664. situation. Just mark sections as *need*, *greed*, and *flame* and I'll get 
  32665. the idea sooner or later.
  32666.     Thanks for the feedback and keep those reports coming,
  32667.     Joe D.
  32668.  
  32669. From news@columbia.edu Fri Oct 14 17:58:10 1994
  32670. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12432
  32671.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 14 Oct 1994 13:58:12 -0400
  32672. Received: by apakabar.cc.columbia.edu id AA00146
  32673.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 14 Oct 1994 13:58:11 -0400
  32674. Path: news.columbia.edu!usenet
  32675. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  32676. Newsgroups: comp.protocols.kermit.misc
  32677. Subject: Re: Suggestions for the Columbia Dialing Scripts
  32678. Date: 14 Oct 1994 17:58:10 GMT
  32679. Organization: Columbia University
  32680. Lines: 113
  32681. Message-Id: <37mgri$4e@apakabar.cc.columbia.edu>
  32682. References: <37jv25$8nk@knot.queensu.ca>
  32683. Nntp-Posting-Host: fdc.cc.columbia.edu
  32684. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  32685.  
  32686. In article <37jv25$8nk@knot.queensu.ca> mike@ccs.QueensU.CA (Mike Smith)
  32687. writes:
  32688. > I've found that HAYES.SCR dies with some modems because the code at 
  32689. > GOTMSG executes before the full CONNECT message is back.  For example,
  32690. > with a GVC 9600, the modem only has time to deliver CONNE before the
  32691. > dialing script compares the response to CONNECT.  The comparison fails,
  32692. > and the script stops with "No dialtone or no answer.  Try again later."
  32693. >
  32694. After the dialing command (ATD...) is given, the script waits for a
  32695. linefeed (presumably the one that terminates the echo from the ATD...
  32696. command) and then another linefeed.  Whatever is in between should be
  32697. the modem's response.  I don't understand how, after receiving the
  32698. linefeed that comes *after* the CONNECT message, characters could be
  32699. missing from the end of "CONNECT".  Nevertheless...
  32700.  
  32701. > I first solved this by adding a PAUSE 2 before the comparison.
  32702. > Yesterday, a student told me he solved it by changing "reinput 0
  32703. > connect" to "reinput 2 connect".  Page 219 of "Using MS-DOS Kermit" says
  32704. > the timeout interval on the reinput command is ignored.  Line 1434 of
  32705. > KERMIT.BWR says "If the REINPUT command fails to find the requested text
  32706. > in the INPUT command buffer, it will wait (up to the timeout interval)
  32707. > for more characters to arrive from the communication channel."
  32708. >
  32709. The .BWR file is right.
  32710.  
  32711. > Ok, so, after waiting for the timeout, does REINPUT make the comparison
  32712. > again?  Or perhaps REINPUT recognizes that the initial substring is a
  32713. > match and so is willing to wait for more characters?  If so, I can adopt
  32714. > my student friend's solution which is more elegant than pausing in every
  32715. > case.
  32716. >
  32717. It should be perfectly safe to change REINPUT 0 to REINPUT 2 in this case,
  32718. and it will probably have the desired effect.  Since you have access to a
  32719. modem that appears to need this, maybe you could try this and report the
  32720. results back to me.  I'd also like to see a session log of a manual
  32721. dialing session -- maybe your modem outputs more linefeeds than regular
  32722. Hayes modems.
  32723.  
  32724. > I find the noise level of the scripts irritating.  (In my opinion) they
  32725. > should not automatically set input echo on.  Similarly, the scripts that
  32726. > echo messages like, "Enabling hardware flow control", etc., are giving
  32727. > feedback that is not useful to the average user.  True, this may be a
  32728. > matter of taste.  My preference is for all this feedback to be
  32729. > controlled by a noiselevel setting that is 0 (silent) by default.
  32730. > Increasing the noiselevel variable increases the feedback.
  32731. A valid point, to be sure, but one that can't be addressed in the 3.14
  32732. cycle.  It is better for users to be informed about what is happening and
  32733. to be able to see exactly where matters might take a bad turn, than it is
  32734. to suppress verbiage for experienced user, who are certainly capable of
  32735. finding ways to do this themselves :-).  In a future release we might be
  32736. able to add features to the program itself to control message levels.
  32737.  
  32738. > The number of redials and the pause between redials should be controlled
  32739. > by variables rather than hardcoded into the dialing scripts.
  32740. Perhaps, but here again we'd probably need changes at the program level
  32741. rather than just in the scripts, because the concept of "variables" is
  32742. opaque to many users.  Too late for 3.14.
  32743.  
  32744. > The dialing scripts should not automatically set parity to none since
  32745. > that overrides the parity setting in the dialing directory.
  32746. Yes they should.  The trick is for them to restore the desired parity
  32747. after the connection is made.  This is supposed to happen in the improved
  32748. DIAL macro supplied with MS-DOS Kermit 3.14.
  32749.  
  32750. > Similarly, I've had trouble with some scripts trying to set the DTE<->DCE
  32751. > speed as high as the modem will allow.  I may be on shaky ground here
  32752. > but for our environment, 38400 is a better choice for many systems.
  32753. >
  32754. Why?  If the modem can autobaud at, say, 57600, and give a comprehensible
  32755. response, and we know how to set it up for RTS/CTS flow control, and we
  32756. can verify that this has, indeed, been done successfully (see latest
  32757. dialing scripts), what would the drawbacks be of using the highest speed?
  32758.  
  32759. > And
  32760. > for some of our services, it is necessary that the speed set in the dialing
  32761. > directory be respected.
  32762. Could you please explain?  If we are talking about error-correcting
  32763. modems, then the interface speed is independent of the connection speed
  32764. that is negotiated between the two modems.
  32765.  
  32766. > I wonder if HAYES.SCR might be patched to automatically "set output pacing"
  32767. > if the initial contact fails.  Again, those with more experience may
  32768. > convince me this is a bad idea.
  32769. >
  32770. It sounds like a good idea.  We'll take a look at this one.
  32771.  
  32772. > But the HAYES.SCR initialization string is fairly innocuous and maybe
  32773. > just automatically retrying with output pacing at 200 would catch the
  32774. > occasional dumb modem that seems to need this help.  Anyhow, unless
  32775. > someone has a strong argument against this tactic I plan to implement
  32776. > this strategy at Queen's.
  32777. Does anybody have an example of a modem for which this treatment would
  32778. be necessary?
  32779.  
  32780. > In summary, I'm hoping that over time, a set of dialing scripts will emerge
  32781. > that work for all PC/modem combinations here at Queen's.  (Probably a
  32782. > vain hope.)
  32783. >
  32784. Not at all!  As time goes on, we'll keep improving the modem scripts and
  32785. adding new ones.  Perhaps the whole business can become more table driven
  32786. and more tightly integrated with the program -- some kind of compromise
  32787. between the current method and the way C-Kermit does it, neither one of
  32788. which is perfect.  Meanwhile, anything that you have which might be of
  32789. general interest, feel free to post it or send it in.
  32790.  
  32791. And we'll keep your suggestions on the pile for the next release.
  32792.  
  32793. - Frank
  32794.  
  32795. From news@columbia.edu Fri Oct 14 17:08:10 1994
  32796. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15572
  32797.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 14 Oct 1994 14:37:46 -0400
  32798. Received: by apakabar.cc.columbia.edu id AA03666
  32799.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 14 Oct 1994 14:37:44 -0400
  32800. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!europa.eng.gtefsd.com!newsxfer.itd.umich.edu!zip.eecs.umich.edu!quip.eecs.umich.edu!huggins
  32801. From: huggins@quip.eecs.umich.edu (Jim Huggins)
  32802. Newsgroups: comp.protocols.kermit.misc
  32803. Subject: Re: Query for fcd; was: Kermit takes an upper-case K
  32804. Date: 14 Oct 1994 17:08:10 GMT
  32805. Organization: University of Michigan EECS Dept.
  32806. Lines: 31
  32807. Message-Id: <37mdtq$1s0@zip.eecs.umich.edu>
  32808. References: <6OCT94.14271506@enh.nist.gov> <CxJyF7.60z@lut.ac.uk> <1994Oct14.153610.7773@zippy.dct.ac.uk>
  32809. Nntp-Posting-Host: quip.eecs.umich.edu
  32810. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  32811.  
  32812. In article <1994Oct14.153610.7773@zippy.dct.ac.uk>,
  32813. Alan Greig <ccdarg@zippy.dct.ac.uk> wrote:
  32814. |In article <CxJyF7.60z@lut.ac.uk>, O.B.Schou@lut.ac.uk writes:
  32815. |> In article <6OCT94.14271506@enh.nist.gov> reflib@enh.nist.gov writes:
  32816. |
  32817. |>>  Someone claims that it began as an acronym: K.E.R.M.I.T; but no
  32818. |>>explanation of the acronym was given.
  32819. |
  32820. |> Well, look at One of The Kermit Books - "Kermit, A File Transfer
  32821. |> Protocol" (by FdC), p3, at footnote 3:
  32822. |> 
  32823. |> "3. Why? Mostly because there was a Muppets calendar on the wall when
  32824. |> we were trying to think of a name, and Kermit is a pleasant, unassuming
  32825. |> sort of character." ...
  32826. |
  32827. |Now when I first came across Kermit in the early 1980s the docs
  32828. |claimed it stood for something like "KL10 Error-free Reciprocal
  32829. |Microcomputer Interface Terminal"
  32830. |
  32831. |That may have been contrived to try and prevent them being
  32832. |sued of course :-)
  32833.  
  32834. Frank da Cruz's book (cited above) gives the rest of the story --
  32835. the alternate definitions given for the name of Kermit, until they
  32836. finally asked Henson Associates for permission to use the un-acronymed
  32837. name.  The acronyms were mostly attempt to retro-fit an explanation
  32838. onto the string.
  32839. -- 
  32840. Jim Huggins, Univ. of Michigan                          huggins@eecs.umich.edu
  32841. "You cannot pray to a personal computer no matter how user-friendly it is."
  32842. (PGP key available upon request)                             W. Bingham Hunter
  32843.  
  32844. From news@columbia.edu Fri Oct 14 18:52:55 1994
  32845. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16611
  32846.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 14 Oct 1994 14:53:03 -0400
  32847. Received: by apakabar.cc.columbia.edu id AA04961
  32848.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 14 Oct 1994 14:52:59 -0400
  32849. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  32850. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  32851. Newsgroups: comp.protocols.kermit.misc
  32852. Subject: Re: Suggestions for the Columbia Dialing Scripts
  32853. Date: 14 Oct 1994 18:52:55 GMT
  32854. Organization: Columbia University
  32855. Lines: 49
  32856. Message-Id: <37mk27$4qu@apakabar.cc.columbia.edu>
  32857. References: <37jv25$8nk@knot.queensu.ca> <37mgri$4e@apakabar.cc.columbia.edu>
  32858. Nntp-Posting-Host: watsun.cc.columbia.edu
  32859. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  32860.  
  32861. In article <37mgri$4e@apakabar.cc.columbia.edu>,
  32862. Frank da Cruz <fdc@fdc.cc.columbia.edu> wrote:
  32863. >In article <37jv25$8nk@knot.queensu.ca> mike@ccs.QueensU.CA (Mike Smith)
  32864. >writes:
  32865. >> Similarly, I've had trouble with some scripts trying to set the DTE<->DCE
  32866. >> speed as high as the modem will allow.  I may be on shaky ground here
  32867. >> but for our environment, 38400 is a better choice for many systems.
  32868. >>
  32869. >Why?  If the modem can autobaud at, say, 57600, and give a comprehensible
  32870. >response, and we know how to set it up for RTS/CTS flow control, and we
  32871. >can verify that this has, indeed, been done successfully (see latest
  32872. >dialing scripts), what would the drawbacks be of using the highest speed?
  32873. >
  32874. >> And
  32875. >> for some of our services, it is necessary that the speed set in the dialing
  32876. >> directory be respected.
  32877. >> 
  32878. >Could you please explain?  If we are talking about error-correcting
  32879. >modems, then the interface speed is independent of the connection speed
  32880. >that is negotiated between the two modems.
  32881.  
  32882.  
  32883. The drawbacks of using the highest speed occur on systems which probably 
  32884. do not have a buffered UART or have high levels of interrupt activity 
  32885. (systems with network cards, multiple active serial ports, ...).
  32886.  
  32887. It might be possible that even though RTS/CTS flow control is enable that
  32888. the cables are missing the appropriate lines.
  32889.  
  32890. Or that a terminal server on the other end of the connection does not use
  32891. RTS/CTS flow control and can handle the data throughput at 38400, but
  32892. losses characters at 57600.
  32893.  
  32894. Or there might be bugs in the virtual device driver that simulates RTS/CTS
  32895. to the application but doesn't implement it to the modem.
  32896.  
  32897. In other words, there are circumstances outside of Kermits or the users
  32898. control that make it desireable to have the dialing directory speed obeyed.
  32899.  
  32900. It would be a simple change to to script to make the entry in the dialing
  32901. directory the maximum speed used.
  32902.  
  32903. Just an idea.
  32904.  
  32905.  
  32906. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  32907. "C-Kermit: available on more platforms than any other communications software."
  32908. "Kermit FTP: sending files whenever and wherever they are needed."
  32909. *NEW* OS/2 version available: ftp kermit.columbia.edu /kermit/bin/ckoker.zip 
  32910.  
  32911. From news@columbia.edu Fri Oct 14 17:30:20 1994
  32912. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17005
  32913.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 14 Oct 1994 14:58:46 -0400
  32914. Received: by apakabar.cc.columbia.edu id AA05516
  32915.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 14 Oct 1994 14:58:45 -0400
  32916. Newsgroups: comp.protocols.kermit.misc
  32917. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!uhog.mit.edu!europa.eng.gtefsd.com!howland.reston.ans.net!EU.net!uunet!world!brigc
  32918. From: brigc@world.std.com (Brig C McCoy)
  32919. Subject: MSK 3.14 beta, DTR, answerback
  32920. Message-Id: <CxoBAK.A9p@world.std.com>
  32921. To: jrd@cc.usu.edu (Joe Doupnik)
  32922. Organization: Southeast Kansas Library System, Iola, KS
  32923. Date: Fri, 14 Oct 1994 17:30:20 GMT
  32924. Lines: 18
  32925.  
  32926.  >        We hear your comments, but I'd appreciate some separation of emotion
  32927.  >from real need (or want it if it were available) so we can better estimate th
  32928.  >situation. Just mark sections as *need*, *greed*, and *flame* and I'll get
  32929.  >the idea sooner or later.
  32930.  
  32931.  
  32932. *FLAME*
  32933.  
  32934. How can you expect us to react appropriately to someone who's entirely
  32935. too civil? :)
  32936.  
  32937. Thanks for the MS-Kermit, btw. Use it and like it.
  32938.  
  32939. ...brig
  32940.  
  32941. ---
  32942.  ~ QMPro 1.53 ~ People say I'm indecisive.  Am I?  I don't know.
  32943.                                                                            
  32944.  
  32945. From news@columbia.edu Fri Oct 14 17:21:47 1994
  32946. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17388
  32947.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 14 Oct 1994 15:04:47 -0400
  32948. Received: by apakabar.cc.columbia.edu id AA06071
  32949.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 14 Oct 1994 15:04:45 -0400
  32950. Path: news.columbia.edu!sol.ctr.columbia.edu!caen!math.ohio-state.edu!uwm.edu!alpha2.csd.uwm.edu!randyd
  32951. From: randyd@alpha2.csd.uwm.edu (Randall Elton Ding)
  32952. Newsgroups: comp.protocols.kermit.misc
  32953. Subject: hercmono underlining and 3.13 vs 3.11
  32954. Date: 14 Oct 1994 17:21:47 GMT
  32955. Organization: University of Wisconsin - Milwaukee, Computing Services Division
  32956. Lines: 13
  32957. Distribution: usa
  32958. Message-Id: <37menb$91s@uwm.edu>
  32959. Nntp-Posting-Host: 129.89.7.202
  32960. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  32961.  
  32962. Have been using 3.11 for a long time now, but when I try 3.13
  32963. the underlined video is no longer underlined.  I have a old 286 with hercmono
  32964. card.  What could be the problem.
  32965.  
  32966. The high intensity video works fine though.
  32967.  
  32968.  
  32969. {
  32970. Randy.
  32971. randyd@alpha2.csd.uwm.edu
  32972. finger for 1024 bit pgp2.6 public key
  32973. key fingerprint 6D A1 28 15 42 BE 9B 6C  C0 1C 7E 88 A6 1E 3A B8
  32974. }
  32975.  
  32976. From news@columbia.edu Fri Oct 14 17:39:51 1994
  32977. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19542
  32978.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 14 Oct 1994 15:39:44 -0400
  32979. Received: by apakabar.cc.columbia.edu id AA09188
  32980.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 14 Oct 1994 15:39:42 -0400
  32981. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!gatech!nntp.msstate.edu!nntp.memphis.edu!flowers
  32982. From: flowers@msuvx2.memphis.edu (Harry Flowers)
  32983. Newsgroups: comp.protocols.kermit.misc
  32984. Subject: Re: MSK 3.14 beta, DTR, answerback
  32985. Message-Id: <1994Oct14.123951.26484@msuvx2.memphis.edu>
  32986. Date: 14 Oct 94 12:39:51 -0500
  32987. References: <1994Oct14.094327.29901@cc.usu.edu>
  32988. Organization: The University of Memphis
  32989. Lines: 32
  32990. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  32991.  
  32992. In article <1994Oct14.094327.29901@cc.usu.edu>, jrd@cc.usu.edu (Joe Doupnik)
  32993. writes:
  32994. >     Answerback folks. Here's my answer back on that. The host asks
  32995. > for the contents of the string without the user being aware of it. That
  32996. > is a security hole.
  32997.  
  32998. Where do you get this?  The host may ask for terminal type without you being
  32999. aware of it, too, but that's not considered a hole.  The string you place in
  33000. answerback, if you put one there, is "when the host asks for this, this is
  33001. what you answer back".  How is this a problem?
  33002.  
  33003. Now, host *setable* answerbacks *are* a problem, since they come from your
  33004. input buffer.  You wouldn't want the host program putting delete commands
  33005. in your answerback, and then doing the ENQ and exiting.  This is indeed
  33006. something you should not allow.
  33007.  
  33008. As long as the user has complete control of what the answerback message is,
  33009. if any, there isn't a problem unless the user creates one for himself.
  33010.  
  33011. >     We hear your comments, but I'd appreciate some separation of emotion 
  33012. > from real need (or want it if it were available) so we can better estimate the 
  33013. > situation. Just mark sections as *need*, *greed*, and *flame* and I'll get 
  33014. > the idea sooner or later.
  33015.  
  33016. In the past where I worked, we had a *need* for this, similar to what has
  33017. already been posted (a way of getting a location profile).  Kermit would
  33018. have been eliminated as an option based on lack of answerback support.
  33019. Where I work now, we don't use answerbacks, so I guess this is just a
  33020. *flame*. ;-)
  33021. --
  33022. Harry Flowers  Internet:FLOWERS@CC.MEMPHIS.EDU or FLOWERS@NARNIA.MEMPHIS.EDU
  33023. The University of Memphis, 112 Administration Bldg., Memphis, TN 38152 (USA)
  33024.  
  33025. From news@columbia.edu Fri Oct 14 17:35:57 1994
  33026. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21492
  33027.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 14 Oct 1994 16:02:57 -0400
  33028. Received: by apakabar.cc.columbia.edu id AA11198
  33029.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 14 Oct 1994 16:02:54 -0400
  33030. Newsgroups: comp.protocols.kermit.misc
  33031. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!gatech!newsxfer.itd.umich.edu!caen!math.ohio-state.edu!news.acns.nwu.edu!news.eecs.nwu.edu!bonomi
  33032. From: bonomi@eecs.nwu.edu (Robert Bonomi)
  33033. Subject: Re: Query for fcd; was: Kermit takes an upper-case K
  33034. Message-Id: <CxoBJz.AM5@eecs.nwu.edu>
  33035. Sender: usenet@eecs.nwu.edu
  33036. Organization: EECS Department, Northwestern University
  33037. References: <6OCT94.14271506@enh.nist.gov> <CxJyF7.60z@lut.ac.uk> <1994Oct14.153610.7773@zippy.dct.ac.uk>
  33038. Date: Fri, 14 Oct 1994 17:35:57 GMT
  33039. Lines: 25
  33040. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  33041.  
  33042. In article <1994Oct14.153610.7773@zippy.dct.ac.uk>,
  33043. Alan Greig <ccdarg@zippy.dct.ac.uk> wrote:
  33044. >In article <CxJyF7.60z@lut.ac.uk>, O.B.Schou@lut.ac.uk writes:
  33045. >> In article <6OCT94.14271506@enh.nist.gov> reflib@enh.nist.gov writes:
  33046. >
  33047. >>>  Someone claims that it began as an acronym: K.E.R.M.I.T; but no
  33048. >>>explanation of the acronym was given.
  33049. >
  33050. >> Well, look at One of The Kermit Books - "Kermit, A File Transfer
  33051. >> Protocol" (by FdC), p3, at footnote 3:
  33052. >> 
  33053. >> "3. Why? Mostly because there was a Muppets calendar on the wall when
  33054. >> we were trying to think of a name, and Kermit is a pleasant, unassuming
  33055. >> sort of character." ...
  33056. >
  33057. >Now when I first came across Kermit in the early 1980s the docs
  33058. >claimed it stood for something like "KL10 Error-free Reciprocal
  33059. >Microcomputer Interface Terminal"
  33060. >
  33061. >That may have been contrived to try and prevent them being
  33062. >sued of course :-)
  33063.  
  33064. It *did* start with the -frog-, himself.  The name is used _with_permission_
  33065. of the copyright holder.  The "KL-10....." was fitted onto the name, -after-
  33066. it was selected.
  33067.  
  33068. From news@columbia.edu Fri Oct 14 05:10:47 1994
  33069. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24599
  33070.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 14 Oct 1994 16:44:04 -0400
  33071. Received: by apakabar.cc.columbia.edu id AA14554
  33072.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 14 Oct 1994 16:44:01 -0400
  33073. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  33074. From: jrd@cc.usu.edu (Joe Doupnik)
  33075. Newsgroups: comp.protocols.kermit.misc
  33076. Subject: Re: MS-Kermit 3.13, Windows, "Unknown hardware for port", 8250/16550 UART
  33077. Message-Id: <1994Oct14.111047.29915@cc.usu.edu>
  33078. Date: 14 Oct 94 11:10:47 MDT
  33079. References: <37m578$eg4@plootu.Helsinki.FI>
  33080. Organization: Utah State University
  33081. Lines: 43
  33082. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  33083.  
  33084. In article <37m578$eg4@plootu.Helsinki.FI>, tmottone@cc.Helsinki.FI (Teemu Mottonen) writes:
  33085. > Hi all,
  33086. > I have a problem with running MS-Kermit 3.13 under Windows 3.1. I'm
  33087. > developing a program with Borland Pascal for Windows that uses Kermit
  33088. > to call a central computer, transfer files etc. The com port settings
  33089. > seem correct ('SET COM1 \x3F8 IRQ 4'), because Kermit works ok in DOS
  33090. > and when executed directly from the Program Manager.
  33091. > The problem is that after running Kermit once (to dial central computer)
  33092. > on the second invokation, after 'SET PORT COM1' I get "?Warning: unknown
  33093. > hardware for port. Using Bios as BIOS1". After this communication fails.
  33094. > It seems that somehow Kermit is unable to verify the UART. I don't know
  33095. > what causes this: Windows, Kermit or my program. So, is it possible to
  33096. > disable the UART check (chkport routine in the assembler source code) by
  33097. > patching KERMIT.EXE ? Or maybe there's some combination of PIF & .INI
  33098. > settings that I'm missing ? Or perhaps I should somehow reset the UART
  33099. > after running the first script ?
  33100. > The modem is an external V.32 modem (8250 UART, but I use it at 2400 bps).
  33101. > I've also tried this with an internal modem (V.32 & 16550), but same results.
  33102. > The PC is a 486DX-33.
  33103. > Thanks in advance,
  33104. > Teemu Mottonen.
  33105. > -- 
  33106. > Teemu Mottonen - Department of Computer Science, University of Helsinki
  33107. -------
  33108. Teemu,
  33109.     It's kind of difficult to guess here. Windows is controlling the
  33110. physical serial ports and presents virtualized images to Kermit. One item
  33111. needed by Kermit is the port i/o address (such as \x3f8), and Kermit obtains
  33112. that either from the Bios work area in segment 40h (first four words are
  33113. COM1...COM4 i/o addresses) or from the SET COMx Kermit command. If Windows
  33114. or your Pascal program clears the seg 40h area then Kermit will produce
  33115. this message. If Windows has the port allocated to some other task Windows
  33116. may report 0's in seg 40h. Looking down their with debug or other means
  33117. is a quick way to see what's happening. 
  33118.     Does your Pascal program access the ports in any way?
  33119.     Source code for MSK 3.13 is available on kermit.columbia.edu,
  33120. cd kermit/a. If modified then the patch file won't work anymore. 
  33121.     Joe D.
  33122.  
  33123. From news@columbia.edu Fri Oct 14 09:35:43 1994
  33124. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01898
  33125.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 14 Oct 1994 18:17:14 -0400
  33126. Received: by apakabar.cc.columbia.edu id AA22056
  33127.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 14 Oct 1994 18:17:12 -0400
  33128. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  33129. From: jrd@cc.usu.edu (Joe Doupnik)
  33130. Newsgroups: comp.protocols.kermit.misc
  33131. Subject: Re: hercmono underlining and 3.13 vs 3.11
  33132. Message-Id: <1994Oct14.153543.29959@cc.usu.edu>
  33133. Date: 14 Oct 94 15:35:43 MDT
  33134. References: <37menb$91s@uwm.edu>
  33135. Distribution: usa
  33136. Organization: Utah State University
  33137. Lines: 14
  33138. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  33139.  
  33140. In article <37menb$91s@uwm.edu>, randyd@alpha2.csd.uwm.edu (Randall Elton Ding) writes:
  33141. > Have been using 3.11 for a long time now, but when I try 3.13
  33142. > the underlined video is no longer underlined.  I have a old 286 with hercmono
  33143. > card.  What could be the problem.
  33144. > The high intensity video works fine though.
  33145. --------
  33146.     The problem is tied to the major shift of dealing with underlining
  33147. in MSK 3.13. The mono case ought to have underlined, but the code apparently
  33148. decides to "color" on mono instead. There will be no patch for this because
  33149. MSK 3.14 is now being beta tested (hint: please try it and report back to
  33150. me).
  33151.     Thanks,
  33152.     Joe D.
  33153.  
  33154. From news@columbia.edu Fri Oct 14 19:54:53 1994
  33155. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03067
  33156.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 14 Oct 1994 18:38:57 -0400
  33157. Received: by apakabar.cc.columbia.edu id AA23365
  33158.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 14 Oct 1994 18:38:56 -0400
  33159. Control: newgroup comp.protocols.kermit.misc
  33160. Newsgroups: comp.protocols.kermit.misc
  33161. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!pipex!uunet!tale
  33162. From: tale@uunet.uu.net (David C Lawrence)
  33163. Subject: newgroup comp.protocols.kermit.misc
  33164. Approved: tale@uunet.uu.net
  33165. Sender: tale@uunet.uu.net (David C Lawrence)
  33166. Date: Fri, 14 Oct 1994 19:54:53 GMT
  33167. Message-Id: <CxoHzI.Kz3@uunet.uu.net>
  33168. Lines: 19
  33169. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  33170.  
  33171. comp.protocols.kermit.misc is an unmoderated newsgroup which passed its vote
  33172. for creation by 233:28 as reported in news.announce.newgroups on 7 Sep 1994.
  33173.  
  33174. For your newsgroups file:
  33175. comp.protocols.kermit.misc    Kermit protocol and software.
  33176.  
  33177. The charter, culled from the call for votes:
  33178.  
  33179.   The unmoderated newsgroup comp.protocols.kermit.misc will be open to all
  33180.   topics related to Kermit protocol and software, including questions and
  33181.   answers regarding the acquisition and use of the software, and discussions
  33182.   of performance and protocol issues.  It is not intended as a software
  33183.   announcement forum or a software distribution method, e.g. posting of
  33184.   massive amounts of source code, although items such as short script
  33185.   programs (e.g. dialing scripts for new kinds of modems) of general interest
  33186.   can be posted, but with the understanding that the definitive source for
  33187.   Kermit software is the repository at Columbia University, and the act of
  33188.   posting an item to this newsgroup does not necessarily enter it into this
  33189.   repository.
  33190.  
  33191. From news@columbia.edu Fri Oct 14 22:46:59 1994
  33192. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04041
  33193.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 14 Oct 1994 18:58:03 -0400
  33194. Received: by apakabar.cc.columbia.edu id AA24485
  33195.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 14 Oct 1994 18:58:01 -0400
  33196. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!usc!nic-nac.CSU.net!ctp.org!not-for-mail
  33197. From: lpowell@eis.calstate.edu (Larry Powell)
  33198. Newsgroups: comp.protocols.kermit.misc
  33199. Subject: Tektronix emulation question
  33200. Date: 14 Oct 1994 15:46:59 -0700
  33201. Organization: California Technology Project of The Calif State Univ
  33202. Lines: 17
  33203. Message-Id: <37n1p3$b6d@eis.calstate.edu>
  33204. Nntp-Posting-Host: eis.calstate.edu
  33205. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  33206.  
  33207.   I attempted to test the GIS program PC-MOSS which does
  33208. its graphics displays in Tektronix 4010 mode. (The preferred method
  33209. is with a device driver costing $40 which I do not have.) So I tried
  33210. MS-Kermit 3.13. 
  33211.   It goes into graphics mode ok but frequently erases the screen.
  33212. Which makes it effectively useless. The session log showed several
  33213. occurrences of FF (x0C) which according to the manual (kermit's)
  33214. has several functions including erase the screen. When I changed
  33215. these (to CANCEL I think) and replayed it was ok.
  33216.   Another emulater (Tekterm) that I tested does not have
  33217. this problem.
  33218.   Any explanation? The manual says something like ReGIS graphics
  33219. command set is not supported. Is this related?
  33220.  
  33221. --
  33222. --Larry Powell    lpowell@ctp.org
  33223.  
  33224.  
  33225. From news@columbia.edu Fri Oct 14 11:17:01 1994
  33226. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07188
  33227.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 14 Oct 1994 20:13:06 -0400
  33228. Received: by apakabar.cc.columbia.edu id AA28973
  33229.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 14 Oct 1994 20:13:05 -0400
  33230. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  33231. From: jrd@cc.usu.edu (Joe Doupnik)
  33232. Newsgroups: comp.protocols.kermit.misc
  33233. Subject: Re: MSK 3.14 beta, DTR, answerback
  33234. Message-Id: <1994Oct14.171701.29983@cc.usu.edu>
  33235. Date: 14 Oct 94 17:17:01 MDT
  33236. References: <1994Oct14.094327.29901@cc.usu.edu> <1994Oct14.123951.26484@msuvx2.memphis.edu>
  33237. Organization: Utah State University
  33238. Lines: 25
  33239. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  33240.  
  33241. In article <1994Oct14.123951.26484@msuvx2.memphis.edu>, flowers@cc.memphis.edu (Harry Flowers) writes:
  33242. > In article <1994Oct14.094327.29901@cc.usu.edu>, jrd@cc.usu.edu (Joe Doupnik)
  33243. > writes:
  33244. >>     Answerback folks. Here's my answer back on that. The host asks
  33245. >> for the contents of the string without the user being aware of it. That
  33246. >> is a security hole.
  33247. > Where do you get this?  The host may ask for terminal type without you being
  33248. > aware of it, too, but that's not considered a hole.  The string you place in
  33249. > answerback, if you put one there, is "when the host asks for this, this is
  33250. > what you answer back".  How is this a problem?
  33251.     Maybe we can agree to differ on this host generated response from
  33252. the client.
  33253.  
  33254. > In the past where I worked, we had a *need* for this, similar to what has
  33255. > already been posted (a way of getting a location profile).  Kermit would
  33256. > have been eliminated as an option based on lack of answerback support.
  33257. > Where I work now, we don't use answerbacks, so I guess this is just a
  33258. > *flame*. ;-)
  33259.     Ok, I understand. And I suggested privately that a better scheme often
  33260. is to let the host o/s, rather than the client program, provide a line 
  33261. identifier. After all, that is usually the comms link rather than a floppy or 
  33262. *.ini file wandering around the place.
  33263.         Still, the commentary is appreciated.
  33264.     Joe D.
  33265.  
  33266. From news@columbia.edu Fri Oct 14 20:33:02 1994
  33267. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09367
  33268.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 14 Oct 1994 21:01:08 -0400
  33269. Received: by apakabar.cc.columbia.edu id AA02169
  33270.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 14 Oct 1994 21:01:06 -0400
  33271. Newsgroups: comp.protocols.kermit.misc
  33272. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!MathWorks.Com!solaris.cc.vt.edu!spcuna!ritz!kudut
  33273. From: kudut@ritz.mordor.com (Ken Udut)
  33274. Subject: Re: MS-Kermit 3.13, Windows, "Unknown hardware for port", 8250/16550 UART
  33275. References: <37m578$eg4@plootu.Helsinki.FI>
  33276. Organization: Mordor International BBS - Jersey City, NJ
  33277. Date: Fri, 14 Oct 1994 20:33:02 GMT
  33278. Message-Id: <CxoJr2.854@ritz.mordor.com>
  33279. Lines: 57
  33280. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  33281.  
  33282. In article <37m578$eg4@plootu.Helsinki.FI> tmottone@cc.Helsinki.FI (Teemu Mottonen) writes:
  33283. >Hi all,
  33284. >
  33285. >I have a problem with running MS-Kermit 3.13 under Windows 3.1. I'm
  33286. >developing a program with Borland Pascal for Windows that uses Kermit
  33287. >to call a central computer, transfer files etc. The com port settings
  33288. >seem correct ('SET COM1 \x3F8 IRQ 4'), because Kermit works ok in DOS
  33289. >and when executed directly from the Program Manager.
  33290. >
  33291. >The problem is that after running Kermit once (to dial central computer)
  33292. >on the second invokation, after 'SET PORT COM1' I get "?Warning: unknown
  33293. >hardware for port. Using Bios as BIOS1". After this communication fails.
  33294. >
  33295. >It seems that somehow Kermit is unable to verify the UART. I don't know
  33296. >what causes this: Windows, Kermit or my program. So, is it possible to
  33297. >disable the UART check (chkport routine in the assembler source code) by
  33298. >patching KERMIT.EXE ? Or maybe there's some combination of PIF & .INI
  33299. >settings that I'm missing ? Or perhaps I should somehow reset the UART
  33300. >after running the first script ?
  33301. >
  33302. >The modem is an external V.32 modem (8250 UART, but I use it at 2400 bps).
  33303. >I've also tried this with an internal modem (V.32 & 16550), but same results.
  33304. >The PC is a 486DX-33.
  33305. >
  33306. >Thanks in advance,
  33307. >Teemu Mottonen.
  33308. >-- 
  33309. >Teemu Mottonen - Department of Computer Science, University of Helsinki
  33310.  
  33311. I'm not a Windows user (I posess a 286 w/Deskmate :-) ), but I am aware of 
  33312. this problem.
  33313.  
  33314. (and I may be wrong.  Since posting wrong answers to questions provokes 
  33315. the right ones, I guess it can't hurt if I only have half of the picture!)
  33316.  
  33317. As far as I understand, Windows grabs the interrupts used by the modem 
  33318. and passes it to the program using it.  However, when you invoke Kermit 
  33319. again, Windows still has a hold on these interrupts and is HIDING your 
  33320. com port from Kermit.  (I'm using simplistic terms, but this is how I 
  33321. understand it).
  33322.  
  33323. I don't know how to release the interrupts.
  33324.  
  33325. However, I do know that, if you have (in your mscustom.ini is fine) the 
  33326. command that directly tells Kermit what port to send it to (the x3f8 
  33327. thing - I don't remember the syntax until I need to use it myself :> ),
  33328. it should work anyhow.
  33329.  
  33330. But making Windows release the com port would be hte best bet.  I don't 
  33331. know how to, unfortunately.
  33332.  
  33333. How far am I off, everyone?
  33334.  
  33335.  
  33336. Ken
  33337. kudut@ritz.mordor.com
  33338.  
  33339.  
  33340. From news@columbia.edu Fri Oct 14 13:11:39 1994
  33341. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11888
  33342.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 14 Oct 1994 22:12:59 -0400
  33343. Received: by apakabar.cc.columbia.edu id AA06259
  33344.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 14 Oct 1994 22:12:58 -0400
  33345. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  33346. From: jrd@cc.usu.edu (Joe Doupnik)
  33347. Newsgroups: comp.protocols.kermit.misc
  33348. Subject: MSK 3.14 beta-4 bug fix, announcement
  33349. Message-Id: <1994Oct14.191139.29993@cc.usu.edu>
  33350. Date: 14 Oct 94 19:11:39 MDT
  33351. Organization: Utah State University
  33352. Lines: 5
  33353. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  33354.  
  33355.     Beta-4 14 Oct 94 of MS-DOS Kermit v3.14 cures a nasty bug:
  33356. Kermit will hang in an infinite loop if parity is set to other than
  33357. NONE. Cause was a problem in the new Connect mode status line.
  33358.     Thanks to Bert Tyler, again, for spotting this early.
  33359.     Joe D.
  33360.  
  33361. From news@columbia.edu Sat Oct 15 00:50:26 1994
  33362. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14299
  33363.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 14 Oct 1994 23:18:44 -0400
  33364. Received: by apakabar.cc.columbia.edu id AA10461
  33365.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 14 Oct 1994 23:18:42 -0400
  33366. Newsgroups: comp.protocols.kermit.misc
  33367. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!ub!galileo.cc.rochester.edu!uhura.cc.rochester.edu!mcia
  33368. From: mcia@uhura.cc.rochester.edu (Mike Ciaraldi)
  33369. Subject: Re: REPOST: Kermit over WinSock?
  33370. Message-Id: <1994Oct15.005026.14436@galileo.cc.rochester.edu>
  33371. Sender: news@galileo.cc.rochester.edu
  33372. Nntp-Posting-Host: uhura.cc.rochester.edu
  33373. Organization: University of Rochester (Rochester, NY)
  33374. References: <1994Oct13.124324.19422@galileo.cc.rochester.edu> <1994Oct13.102829.29768@cc.usu.edu>
  33375. Date: Sat, 15 Oct 94 00:50:26 GMT
  33376. Lines: 41
  33377. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  33378.  
  33379. In article <1994Oct13.102829.29768@cc.usu.edu> jrd@cc.usu.edu (Joe Doupnik) writes:
  33380. >In article <1994Oct13.124324.19422@galileo.cc.rochester.edu>, mcia@uhura.cc.rochester.edu (Mike Ciaraldi) writes:
  33381.  
  33382. >> I am using NetManage Chameleon to set up a SLIP link
  33383. >> from my PC to a Unix machine. It works fine with the included
  33384. >> telnet program, but I was wondering if I could run Kermit
  33385. >> over this TCP connection.
  33386. >> 
  33387. >> Is WinSock support coming in version 3.14?
  33388. >------------
  33389. >    I think we need to explain winsock et al again. Winsock is a pure
  33390. >Windows support program (a spec, vendors make their own programs obeying
  33391. >the winsock spec), it cannot run at DOS level, and by itself it does nothing.
  33392. >Only pure Windows applications can talk to this Windows winsock support
  33393. >program. Beneath the winsock api level is someone's Windows TCP/IP protocol 
  33394. >    Kermit is a smart DOS program with Windows awareness, but it is not
  33395. >a pure Windows program. It's not a TCP/IP stack which can be taken out and
  33396. >used for other purposes. It is a complete program (TCP/IP stack, Kermit
  33397. >protocol stack, applications, you name it) all in itself. Thus it is not
  33398. >associated with winsock.
  33399.  
  33400. Thanks for the technical info, Joe. I had used Kermit
  33401. over other TCP links by having it talk to the packet driver,
  33402. but these drivers were always loaded under DOS.
  33403.  
  33404. Since there were "shims" to convert between different interfaces specs,
  33405. I was hoping there was either something that would make
  33406. WinSock look like what Kermit needs, or that the Kermit
  33407. protocol stack could be redirected somehow to go through WinSock.
  33408.  
  33409. The TCP stack from NetManage is implemented as a Windows DLL,
  33410. so I can see why it would not be accessible to a program
  33411. like Kermit that is running in the DOS box.
  33412.  
  33413. Thanks anyway. I will definitely continue to use
  33414. Kermit for serial communications and for communication
  33415. through TCP/IP limks that use packet drivers.
  33416.  
  33417. --Mike Ciaraldi
  33418.  
  33419.  
  33420.  
  33421. From news@columbia.edu Sat Oct 15 04:13:31 1994
  33422. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14374
  33423.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 14 Oct 1994 23:21:14 -0400
  33424. Received: by apakabar.cc.columbia.edu id AA10694
  33425.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 14 Oct 1994 23:21:13 -0400
  33426. Newsgroups: comp.protocols.kermit.misc
  33427. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!swrinde!ihnp4.ucsd.edu!newshub.nosc.mil!nisevjo-slip1.nosc.mil!astewart
  33428. From: astewart@arabian.sias.nosc.mil (Alan Stewart)
  33429. Subject: Emulating odd terminal types
  33430. Message-Id: <astewart.1.00166916@arabian.sias.nosc.mil>
  33431. Lines: 17
  33432. Sender: news@nosc.mil (Network News)
  33433. Organization: NISE West
  33434. X-Newsreader: Trumpet for Windows [Version 1.0 Rev B final beta #4]
  33435. Date: Sat, 15 Oct 1994 04:13:31 GMT
  33436. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  33437.  
  33438. Is there a source for Kermit keyboard mapping for other terminal types besides 
  33439. the built in ones ? I'm looking for a Wyse 60 right now but I think others 
  33440. will come up in the future. I know I could construct one but it would be nice 
  33441. to "plagarise" one like people often do for termcap entries.
  33442.  --------------------------------------------------------------------
  33443. | Alan Stewart                >-O-<           Electronics Engineer   |
  33444. | Code 221                  ~       ~         SHF SATCOM             |
  33445. | NISE West                ~         ~        Software Support       |
  33446. | Bldg 509              ( ~           ~ )     U.S. Navy              |
  33447. | Vallejo, CA 94592   __|___         ___|__   Mare Island            |
  33448. | (707)646-8931       \____/         \____/   astewart@mare.nosc.mil |
  33449.  ------------------WWWWWWWWWWWWWWWWWWWWWWWWWW------------------------ 
  33450.  
  33451.  
  33452.  
  33453.  
  33454.  
  33455.  
  33456. From news@columbia.edu Sat Oct 15 04:02:26 1994
  33457. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16727
  33458.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 15 Oct 1994 00:10:29 -0400
  33459. Received: by apakabar.cc.columbia.edu id AA13603
  33460.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 15 Oct 1994 00:10:27 -0400
  33461. Path: news.columbia.edu!sol.ctr.columbia.edu!news.moneng.mei.com!uwm.edu!cs.utexas.edu!swrinde!pipex!news.sprintlink.net!news.primenet.com!usenet
  33462. From: jbishop@primenet.com (Jeff Bishop)
  33463. Newsgroups: comp.protocols.kermit.misc
  33464. Subject: problem with 3.14
  33465. Date: Fri, 14 Oct 1994 21:02:26 -0700
  33466. Organization: Primenet
  33467. Lines: 9
  33468. Message-Id: <IHrdkuqcZ7CO072yn@primenet.com>
  33469. Nntp-Posting-Host: usr2.primenet.com
  33470. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  33471.  
  33472. Hi,
  33473.  
  33474. When running kermite (I did rename it to kermit, overwriting the
  33475. original kermit.exe file), I get a patch file mismatch error. I renamed
  33476. the msrm314.pch to mskermit.pch like I might have that one would do it.
  33477. Any suggestions?
  33478.  
  33479. Jeff
  33480.  
  33481.  
  33482. From news@columbia.edu Sat Oct 15 04:05:26 1994
  33483. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16732
  33484.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 15 Oct 1994 00:10:32 -0400
  33485. Received: by apakabar.cc.columbia.edu id AA13610
  33486.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 15 Oct 1994 00:10:31 -0400
  33487. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news.sprintlink.net!news.primenet.com!usenet
  33488. From: jbishop@primenet.com (Jeff Bishop)
  33489. Newsgroups: comp.protocols.kermit.misc
  33490. Subject: pushing to dos and back again
  33491. Date: Fri, 14 Oct 1994 21:05:26 -0700
  33492. Organization: Primenet
  33493. Lines: 6
  33494. Message-Id: <6KrdkuqcZBPH072yn@primenet.com>
  33495. Nntp-Posting-Host: usr2.primenet.com
  33496. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  33497.  
  33498. When you exit back from DOS to kermit, you have to hit a key, why?
  33499. Ckermit for os/2 does not need this. Can we please make this consistant
  33500. for macro writing reasons please?
  33501.  
  33502. Jeff
  33503.  
  33504.  
  33505. From news@columbia.edu Sat Oct 15 04:38:29 1994
  33506. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18505
  33507.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 15 Oct 1994 00:40:22 -0400
  33508. Received: by apakabar.cc.columbia.edu id AA15159
  33509.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 15 Oct 1994 00:40:21 -0400
  33510. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!pipex!news.sprintlink.net!news.primenet.com!usenet
  33511. From: jbishop@primenet.com (Jeff Bishop)
  33512. Newsgroups: comp.protocols.kermit.misc
  33513. Subject: still a problem with beta 3
  33514. Date: Fri, 14 Oct 1994 21:38:29 -0700
  33515. Organization: Primenet
  33516. Lines: 7
  33517. Message-Id: <5prdkuqcZVH4072yn@primenet.com>
  33518. Nntp-Posting-Host: usr1.primenet.com
  33519. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  33520.  
  33521. I am still getting my modem to hang up while it dials if I drop to dos.
  33522. Maybe I want to check something while it is still waiting to connect. I
  33523. am not using the dial script command rather I am using atdt commands
  33524. withn connect mode.
  33525.  
  33526. Jeff
  33527.  
  33528.  
  33529. From news@columbia.edu Fri Oct 14 17:11:23 1994
  33530. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22234
  33531.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 15 Oct 1994 02:13:09 -0400
  33532. Received: by apakabar.cc.columbia.edu id AA18862
  33533.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 15 Oct 1994 02:13:08 -0400
  33534. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!usc!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  33535. From: jrd@cc.usu.edu (Joe Doupnik)
  33536. Newsgroups: comp.protocols.kermit.misc
  33537. Subject: Re: Tektronix emulation question
  33538. Message-Id: <1994Oct14.231123.30006@cc.usu.edu>
  33539. Date: 14 Oct 94 23:11:23 MDT
  33540. References: <37n1p3$b6d@eis.calstate.edu>
  33541. Organization: Utah State University
  33542. Lines: 28
  33543. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  33544.  
  33545. In article <37n1p3$b6d@eis.calstate.edu>, lpowell@eis.calstate.edu (Larry Powell) writes:
  33546. >   I attempted to test the GIS program PC-MOSS which does
  33547. > its graphics displays in Tektronix 4010 mode. (The preferred method
  33548. > is with a device driver costing $40 which I do not have.) So I tried
  33549. > MS-Kermit 3.13. 
  33550. >   It goes into graphics mode ok but frequently erases the screen.
  33551. > Which makes it effectively useless. The session log showed several
  33552. > occurrences of FF (x0C) which according to the manual (kermit's)
  33553. > has several functions including erase the screen. When I changed
  33554. > these (to CANCEL I think) and replayed it was ok.
  33555. >   Another emulater (Tekterm) that I tested does not have
  33556. > this problem.
  33557. >   Any explanation? The manual says something like ReGIS graphics
  33558. > command set is not supported. Is this related?
  33559. > --
  33560. > --Larry Powell    lpowell@ctp.org
  33561. -----------
  33562.     ReGIS, as you probably know, is vastly different, and just plain
  33563. vast, than Tektronix graphics. If your applications program is generating
  33564. ReGIS commands then MS-DOS Kermit will not understand them.
  33565.     Regular Form Feed, as a Tek command by itself, means clear the
  33566. screen. It's your application program generating such commands, and thus
  33567. I suggest having a little talk with it.
  33568.     I have no information about Tekterm, and you didn't say what it
  33569. did vs what MSK did vs what the host asked to be done. Hence I'll pass
  33570. on this item unless you have something to add here.
  33571.         Joe D.
  33572.  
  33573. From news@columbia.edu Fri Oct 14 18:04:01 1994
  33574. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24383
  33575.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 15 Oct 1994 03:13:16 -0400
  33576. Received: by apakabar.cc.columbia.edu id AA20915
  33577.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 15 Oct 1994 03:13:13 -0400
  33578. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  33579. From: jrd@cc.usu.edu (Joe Doupnik)
  33580. Newsgroups: comp.protocols.kermit.misc
  33581. Subject: Re: problem with 3.14
  33582. Message-Id: <1994Oct15.000401.30011@cc.usu.edu>
  33583. Date: 15 Oct 94 00:04:01 MDT
  33584. References: <IHrdkuqcZ7CO072yn@primenet.com>
  33585. Organization: Utah State University
  33586. Lines: 15
  33587. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  33588.  
  33589. In article <IHrdkuqcZ7CO072yn@primenet.com>, jbishop@primenet.com (Jeff Bishop) writes:
  33590. > Hi,
  33591. > When running kermite (I did rename it to kermit, overwriting the
  33592. > original kermit.exe file), I get a patch file mismatch error. I renamed
  33593. > the msrm314.pch to mskermit.pch like I might have that one would do it.
  33594. > Any suggestions?
  33595. --------
  33596.     Yes, don't do that. There is no operational patch file during BETA
  33597. testing. This is not release code yet.
  33598.     As to your keypressing after popping back from DOS, I have no idea
  33599. what you mean because it does not happen here. Maybe you are in some kind
  33600. of a macro. Hints are welcome.
  33601.     Joe D.
  33602.  
  33603. From news@columbia.edu Sat Oct 15 02:44:21 1994
  33604. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29430
  33605.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 15 Oct 1994 05:15:51 -0400
  33606. Received: by apakabar.cc.columbia.edu id AA25520
  33607.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 15 Oct 1994 05:15:49 -0400
  33608. Newsgroups: comp.protocols.kermit.misc
  33609. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!convex!news.duke.edu!MathWorks.Com!yeshua.marcam.com!charnel.ecst.csuchico.edu!csusac!csus.edu!netcom.com!jhurwit
  33610. From: jhurwit@netcom.com (Jeffrey Hurwit)
  33611. Subject: Buffer overflows? (was Re: Problem: VT100 "print through")
  33612. Message-Id: <jhurwitCxp0xx.46w@netcom.com>
  33613. Organization: Organization?  What organization?
  33614. X-Newsreader: TIN [version 1.2 PL1]
  33615. References: <RATZLAFF.9.00104675@A1.MSCF.UPENN.EDU> <B.A.MCCAULEY.94Oct14144613@wcl-l.bham.ac.uk>
  33616. Date: Sat, 15 Oct 1994 02:44:21 GMT
  33617. Lines: 46
  33618. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  33619.  
  33620. In article <B.A.MCCAULEY.94Oct14144613@wcl-l.bham.ac.uk>, 
  33621. B.A.McCauley@bham.ac.uk wrote:
  33622.  
  33623. >In article <RATZLAFF.9.00104675@A1.MSCF.UPENN.EDU> RATZLAFF@A1.MSCF.UPENN.EDU (Ron Ratzlaff) writes:
  33624.  
  33625. >>I'm using Kermit's TCP/IP capability to connect to a local VAX.  I have 
  33626. >>Kermit set-up to emulate a VT100 terminal for these sessions.  The problem
  33627. >>is when the VAX issues a "print through" command to the VT100 emulator to
  33628. >>make print outs and plots on my local printer attached to my PC: characters 
  33629. >>are missing from the resulting print out.  There appears to be 
  33630. >>something wrong in the handshake somewhere.  It is especially noticeable when 
  33631. >>I'm trying to make a plot.
  33632. >>
  33633. >>Is there some SET command I need to use to avoid loosing characters?
  33634.  
  33635.     I use MS-Kermit over a modem and phone line to connect to my Unix
  33636.     account (this one that I'm posting from).  My mail agent has a
  33637.     print on PC command; I currently have it set to 'attached to ansi.'
  33638.     I'm having the same exact problem-- missing characters, or whole
  33639.     chunks of characters.
  33640.  
  33641.     I also can't have receive packets set larger than 1024 on my PC or
  33642.     I get some strange results when I try to transfer a file from my
  33643.     Unix account:  The transfer fails, and then when Kermit returns to
  33644.     the command prompt, I get strings of ^F^F^F^F across my screen,
  33645.     with an occassional buffer overflow error message.  I have to
  33646.     reboot my computer to stop it.
  33647.  
  33648.     I've assumed I'm having these problems because flow control is not
  33649.     working on my connection, and because I have only 640K of memory
  33650.     total on my PC.  (I'm sure my old modem doesn't have hardware flow
  33651.     control, so I have XON/XOFF set.)  But now I wonder if it's
  33652.     something else.
  33653.  
  33654. >Try using SET PRINTER to direct output to a file. Exit kermit and
  33655. >print the file. If the same error occours then its probably a s/w
  33656. >problem not a handshake problem.
  33657.  
  33658.     I usually "export" my mail into a file, then do a regular file
  33659.     transfer.  But this is a pain in the neck.  I'd also like to try
  33660.     packet sizes of around 2K to see if that speeds up file transfers. 
  33661.     Any ideas?  Joe?
  33662.  
  33663.     Thanks in advance,
  33664.  
  33665.                         Jeff
  33666.  
  33667. From news@columbia.edu Sat Oct 15 14:26:23 1994
  33668. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06458
  33669.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 15 Oct 1994 10:26:26 -0400
  33670. Received: by apakabar.cc.columbia.edu id AA19629
  33671.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 15 Oct 1994 10:26:25 -0400
  33672. Path: news.columbia.edu!watsun.cc.columbia.edu!gisbert
  33673. From: gisbert@watsun.cc.columbia.edu (Gisbert W. Selke)
  33674. Newsgroups: comp.protocols.kermit.misc
  33675. Subject: Re: problem with 3.14
  33676. Date: 15 Oct 1994 14:26:23 GMT
  33677. Organization: Columbia University
  33678. Lines: 19
  33679. Message-Id: <37ooqf$j5b@apakabar.cc.columbia.edu>
  33680. References: <IHrdkuqcZ7CO072yn@primenet.com> <1994Oct15.000401.30011@cc.usu.edu>
  33681. Nntp-Posting-Host: watsun.cc.columbia.edu
  33682. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  33683.  
  33684. In article <1994Oct15.000401.30011@cc.usu.edu>,
  33685. Joe Doupnik <jrd@cc.usu.edu> wrote:
  33686. >    As to your keypressing after popping back from DOS, I have no idea
  33687. >what you mean because it does not happen here. Maybe you are in some kind
  33688. >of a macro. Hints are welcome.
  33689.  
  33690. I think it is this: when in CONNECT mode and you do Alt-P or Alt-H - P or 
  33691. whatever to get to the command prompt, then enter EXIT to return to your 
  33692. session, Kermit prompts you with "Press space to continue ..." (at least,
  33693. it has done so since many generations). It does *not* do so when PUSHing from 
  33694. Kermit's commdn line, btw!
  33695. While the usefulness of this may be argued, it certainly has nothing to do 
  33696. with macro writing, since you cannot use a macro to something in connect
  33697. mode, drop to DOS, have the macro talk to DOS, then re-connect *all
  33698. macro-driven* etc.
  33699.  
  33700. \Gisbert         WIdO, Bonn, Germany
  33701.   <gisbert@watsun.cc.columbia.edu>  <gws@parchaos.mathematik.uni-freiburg.de>
  33702.   <gisbert@sun1.mathematik.uni-freiburg.de>
  33703.  
  33704. From news@columbia.edu Sat Oct 15 16:22:20 1994
  33705. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11090
  33706.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 15 Oct 1994 12:24:03 -0400
  33707. Received: by apakabar.cc.columbia.edu id AA25960
  33708.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 15 Oct 1994 12:24:02 -0400
  33709. Path: news.columbia.edu!sol.ctr.columbia.edu!usc!nic-nac.CSU.net!swalton
  33710. From: swalton@galileo.csun.edu (Stephen Walton)
  33711. Newsgroups: comp.protocols.kermit.misc
  33712. Subject: Amiga C Kermit is available
  33713. Date: 15 Oct 1994 16:22:20 GMT
  33714. Organization: Cal State Northridge, Dept. of Physics & Astronomy
  33715. Lines: 11
  33716. Message-Id: <37ovjs$kta@nic-nac.CSU.net>
  33717. Nntp-Posting-Host: galileo.csun.edu
  33718. X-Newsreader: TIN [version 1.2 PL2]
  33719. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  33720.  
  33721. I'd just like to point out, briefly, that Amiga C Kermit 5A(190) is
  33722. available for beta test on watsun in kermit/test/bin/ckiker.exe.  It has
  33723. the same Amiga console (ANSI) terminal emulation as before, but many
  33724. bugs have been fixed and the DIAL, SCRIPT and RESEND commands now work.
  33725. Bug reports can be mailed directly to me.  Please install CKERMIT.INI
  33726. and CKERMOD.INI in S:  before using it.
  33727.  
  33728. So far, the silence from Amiga C Kermit users has been deafening :-) .
  33729. --
  33730. Stephen Walton, California State University, Northridge
  33731. "Oh no, not another one."---Heard frequently      swalton@csun.edu
  33732.  
  33733. From news@columbia.edu Sat Oct 15 16:39:28 1994
  33734. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12059
  33735.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 15 Oct 1994 12:39:32 -0400
  33736. Received: by apakabar.cc.columbia.edu id AA26795
  33737.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 15 Oct 1994 12:39:30 -0400
  33738. Path: news.columbia.edu!usenet
  33739. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  33740. Newsgroups: comp.protocols.kermit.misc
  33741. Subject: Re: Buffer overflows? (was Re: Problem: VT100 "print through")
  33742. Date: 15 Oct 1994 16:39:28 GMT
  33743. Organization: Columbia University
  33744. Lines: 178
  33745. Message-Id: <37p0k0$q59@apakabar.cc.columbia.edu>
  33746. References: <jhurwitCxp0xx.46w@netcom.com>
  33747. Nntp-Posting-Host: fdc.cc.columbia.edu
  33748. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  33749.  
  33750. In article <jhurwitCxp0xx.46w@netcom.com> jhurwit@netcom.com
  33751. (Jeffrey Hurwit) writes:
  33752. >
  33753. >     I use MS-Kermit over a modem and phone line to connect to my Unix
  33754. >     account (this one that I'm posting from).  My mail agent has a
  33755. >     print on PC command; I currently have it set to 'attached to ansi.'
  33756. >     I'm having the same exact problem-- missing characters, or whole
  33757. >     chunks of characters.
  33758. I can't emphasize this strongly enough:  You must have the most effective
  33759. means of flow control that is available to you enabled at every interface
  33760. along the communication path -- from the host application (Pine?) all the
  33761. way to the printer.
  33762.  
  33763. >     I also can't have receive packets set larger than 1024 on my PC or
  33764. >     I get some strange results when I try to transfer a file from my
  33765. >     Unix account:  The transfer fails, and then when Kermit returns to
  33766. >     the command prompt, I get strings of ^F^F^F^F across my screen,
  33767. >     with an occassional buffer overflow error message.  I have to
  33768. >     reboot my computer to stop it.
  33769. This is pretty bizarre -- I've never seen such a thing, and can only
  33770. speculate that this is one of those cases where DOS turns off interrupts
  33771. to write to a (slow) disk, after which matters quickly disintegrate.
  33772.  
  33773. >     I've assumed I'm having these problems because flow control is not
  33774. >     working on my connection, and because I have only 640K of memory
  33775. >     total on my PC.  (I'm sure my old modem doesn't have hardware flow
  33776. >     control, so I have XON/XOFF set.)  But now I wonder if it's
  33777. >     something else.
  33778. Let's look at this connection in detail to illustrate all the things that
  33779. might go wrong, starting from the printer and working back to the host
  33780. application.
  33781.  
  33782. The printer should be a parallel printer.  DOS handles parallel printers
  33783. very nicely, because the parallel interface has a flow-control ("busy")
  33784. wire, and the DOS print driver pays attention to it.  If you have a serial
  33785. printer, all bets are off.  (There are printer drivers for serial printers
  33786. that provide Xon/Xoff -- one such driver is on the MS-DOS Kermit 3.14
  33787. diskette, but it's primitive and supports only COM1 -- if anybody wants
  33788. to take a shot at beefing it up, let me know.)
  33789.  
  33790. When Kermit receives material to be printed, it uses DOS services to send
  33791. it to the printer.  If Kermit gets the data intact, but the printer fails
  33792. to print it, then it's a problem with the printer itself or the DOS
  33793. printer driver, in which case, there is little that Kermit can do to help.
  33794.  
  33795. That raises the question: under what circumstances could Kermit itself
  33796. lose incoming data?  There are (at least) two fundamental reasons this
  33797. could happen: (1) interrupt conflicts, and (2) lack of flow control.
  33798. Reason (1) was mentioned above.  If you have a slow disk and the disk
  33799. driver masks off COM port and/or timer interrupts during disk writes, your
  33800. only recourse is to fool with the BUFFERS= parameter in CONFIG.SYS -- less
  33801. disk buffering could mean shorter amounts of time during which COM port
  33802. interrupts are disabled.  Of course, newer, faster PCs are less likely to
  33803. have this problem (but there are no guarantees).
  33804.  
  33805. Lack of flow control is the more likely culprit.  You say your modem does
  33806. not offer hardware flow control so you have to use Xon/Xoff.  So you tell
  33807. Kermit to "set flow xon/xoff".  The rest of this discussion involves
  33808. Xon/Xoff flow control, so those of you who are able to use hardware flow
  33809. control -- which is always preferred and recommended -- can stop reading
  33810. now.
  33811.  
  33812. Xon/Xoff is a "protocol" like any other, and requires two players, just
  33813. like a game of catch.  The ball is an ordinary data character, Ctrl-S
  33814. (Xoff) or Ctrl-Q (Xon), mixed in with all the other data characters.  Who
  33815. and where is the other player?  (What if there IS no other player?
  33816. The first thing to check is whether somebody, somewhere along the
  33817. communication path ALSO has Xon/Xoff enabled.  If not, then after you
  33818. throw your first ball, you'll never get it back!)
  33819.  
  33820. The farther away the other player is, the greater the chance of error:
  33821. propogation delays, noise, etc, become increasingly dominating factors
  33822. with distance.
  33823.  
  33824. To illustrate, suppose you have 2400bps dialup connection, but (for some
  33825. reason) there is a one-second propogation delay, or "reaction time" to an
  33826. Xoff -- assuming it gets through at all (i.e. was not corrupted by noise).
  33827. The printer tells the printer driver it is not ready for more data.
  33828. Kermit finds out about this and sends an Xoff to the host.  Meanwhile,
  33829. since it will be a full second before the host receives and reacts to the
  33830. Xoff, then up to 240 more characters might already be on the way to be
  33831. printer.  If any buffer between the host and the printer has less than
  33832. that much room left, characters will be lost.
  33833.  
  33834. So the trick, is to cut down on the propogation delay:
  33835.  
  33836.   Be sure you have enabled Xon/Xoff at the place that is closest to
  33837.   your PC, and that that "place" is then capable of propogating flow
  33838.   control "upstream".
  33839.  
  33840. Suppose your modem supports "local Xon/Xoff".  Since your modem is the device
  33841. that is closest to the PC's serial port, then that would be where Kermit's
  33842. partner in the "game of catch" should be positioned.  BUT ONLY IF the modem
  33843. has a way to tell the other modem to tell the "thing" that the other modem
  33844. is attached to (etc etc...) to turn the flow of data off and on.
  33845.  
  33846. This can be done in two ways.  Error-correcting modems, i.e. those supporting
  33847. protocols such as MNP, V.42, or PEP, can send flow-control protocol messages
  33848. to each other (but then, these also support hardware flow control, so this
  33849. is not relevant here).
  33850.  
  33851. Some non-error-correcting modems have an option for "local Xon/Xoff flow
  33852. control with pass-through" -- meaning that if they receive an Xoff signal
  33853. from the PC, they will stop sending data to the PC (until they receive an
  33854. Xon from the PC), and they will also pass the Xoff signal to the other
  33855. modem, for delivery to the "thing that the modem is connected to".  Both
  33856. of these methods, of course, requires some buffering capacity in the
  33857. modem (read your modem manual), and they also require cooperation from
  33858. beyond the remote modem.
  33859.  
  33860. What is the remote modem connected to?  Let's say it's a terminal server.
  33861. This is a good situation for us, because if we can set up flow control
  33862. between Kermit and the terminal server, then the network protocol between
  33863. the terminal server and whatever is "behind" it (network, host, operating
  33864. system, application, etc) will take care of flow control (and error
  33865. correction, and all the rest) for us -- these are features of
  33866. terminal-server protocols such as TELNET, RLOGIN, and LAT.
  33867.  
  33868. When you first make the connection to the terminal server and you see its
  33869. prompt, give it a command to enable Xon/Xoff flow control.  Of course the
  33870. exact form of this command depends on the terminal server.  Here are some
  33871. examples:
  33872.  
  33873.   Cisco: terminal flow soft
  33874.   Annex (Xylogics): stty iflow xonxoff oflow xonxoff
  33875.  
  33876. This will give you the most effective possible flow control on connection,
  33877. but it won't be perfect.  Xon and Xoff are ordinary data characters, subject
  33878. to corruption by noise, which can result in deadlocks (when Xon is lost)
  33879. or buffer overflows (when Xoff is lost).  If you have a clean connection,
  33880. though, then response should be quick and effective.
  33881.  
  33882. The price you pay is the inability to use Xon and Xoff as ordinary data
  33883. characters.  This is important for EMACS users (Ctrl-S is used in Search
  33884. and Save commands, Ctrl-Q is used in Quote and other commands), and it
  33885. also prevents the use of file transfer protocols like X- and Ymodem, and
  33886. probably also Zmodem unless you give it some special tweaking.  But Kermit
  33887. transfers will work fine (unless you have gone out of your way to
  33888. "unprefix" Ctrl-S or Ctrl-Q and/or their 8-bit counterparts).
  33889.  
  33890. Another alternative is to position your flow-control partner farther
  33891. upstream, for example, at the host operating system.  If you are connected
  33892. directly to a serial port on the host computer, this is your only choice
  33893. anyway.  But if you are coming in through a terminal server or any kind of
  33894. network, this will increase the propogation delay siginificantly.
  33895.  
  33896. To enable Xon/Xoff flow control in UNIX (often called Start/Stop flow
  33897. control in UNIX documentation), the command is usually something like:
  33898.  
  33899.   stty ixon ixoff -ixany
  33900.  
  33901. In VMS, the commands are:
  33902.  
  33903.   set terminal /hostsync /ttsync /noreadsync
  33904.  
  33905. On IBM Series/1, 4994, 7171 and similar 3270 protocol converters that
  33906. provide dialup access to IBM mainframe full-screen sessions, Xon/Xoff
  33907. flow control is generally a built-in feature that can't be disabled.
  33908.  
  33909. > >Try using SET PRINTER to direct output to a file. Exit kermit and
  33910. > >print the file. If the same error occours then its probably a s/w
  33911. > >problem not a handshake problem.
  33912. >     I usually "export" my mail into a file, then do a regular file
  33913. >     transfer.  But this is a pain in the neck.  I'd also like to try
  33914. >     packet sizes of around 2K to see if that speeds up file transfers. 
  33915. You misunderstood the suggestion.  Print from your host mail application
  33916. in the normal way, but tell Kermit to SET PRINTER FOO.BAR, which routes
  33917. printer output to a file on your PC's disk.  This will eliminate flow
  33918. control problems between the PC printer driver and the printer itself,
  33919. if that is what is causing the problem.  Then you can print the file
  33920. later, using the DOS PRINT command.
  33921.  
  33922. - Frank
  33923.  
  33924. From news@columbia.edu Sat Oct 15 16:43:35 1994
  33925. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12237
  33926.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 15 Oct 1994 12:43:37 -0400
  33927. Received: by apakabar.cc.columbia.edu id AA27109
  33928.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 15 Oct 1994 12:43:36 -0400
  33929. Path: news.columbia.edu!usenet
  33930. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  33931. Newsgroups: comp.protocols.kermit.misc
  33932. Subject: Re: Emulating odd terminal types
  33933. Date: 15 Oct 1994 16:43:35 GMT
  33934. Organization: Columbia University
  33935. Lines: 21
  33936. Message-Id: <37p0rn$qf2@apakabar.cc.columbia.edu>
  33937. References: <astewart.1.00166916@arabian.sias.nosc.mil>
  33938. Nntp-Posting-Host: fdc.cc.columbia.edu
  33939. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  33940.  
  33941. In article <astewart.1.00166916@arabian.sias.nosc.mil>  
  33942. astewart@arabian.sias.nosc.mil (Alan Stewart) writes:
  33943. > Is there a source for Kermit keyboard mapping for other terminal types
  33944. > besides the built in ones ? I'm looking for a Wyse 60 right now but I
  33945. > think others will come up in the future. I know I could construct one
  33946. > but it would be nice to "plagarise" one like people often do for termcap
  33947. > entries.
  33948. >
  33949. MS-DOS Kermit 3.14, announced yesterday for Beta testing, includes Wyse 50
  33950. terminal emulation.  Wyse 60 in "Wyse mode" is the same as Wyse 50.
  33951.  
  33952. Anonymous ftp to kermit.columbia.edu, directory kermit/test/bin, binary mode,
  33953. file mstibm.zip.
  33954.  
  33955. Note that terminal emulation is a lot more than a matter of what the keys
  33956. send.  In Kermit, you can make the keys send whatever you want them to using
  33957. the SET KEY command.  But there also has to be code within the program itself
  33958. to parse and act upon incoming escape sequences, which are different for each
  33959. kind of terminal: DEC, Data General, Wyse, Tektronix, etc.
  33960.  
  33961. - Frank
  33962.  
  33963. From news@columbia.edu Sat Oct 15 04:19:36 1994
  33964. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13595
  33965.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 15 Oct 1994 13:14:33 -0400
  33966. Received: by apakabar.cc.columbia.edu id AA28669
  33967.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 15 Oct 1994 13:14:32 -0400
  33968. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  33969. From: jrd@cc.usu.edu (Joe Doupnik)
  33970. Newsgroups: comp.protocols.kermit.misc
  33971. Subject: Re: Buffer overflows? (was Re: Problem: VT100 "print through")
  33972. Message-Id: <1994Oct15.101936.30019@cc.usu.edu>
  33973. Date: 15 Oct 94 10:19:36 MDT
  33974. References: <RATZLAFF.9.00104675@A1.MSCF.UPENN.EDU> <B.A.MCCAULEY.94Oct14144613@wcl-l.bham.ac.uk> <jhurwitCxp0xx.46w@netcom.com>
  33975. Organization: Utah State University
  33976. Lines: 52
  33977. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  33978.  
  33979. In article <jhurwitCxp0xx.46w@netcom.com>, jhurwit@netcom.com (Jeffrey Hurwit) writes:
  33980. > In article <B.A.MCCAULEY.94Oct14144613@wcl-l.bham.ac.uk>, 
  33981. > B.A.McCauley@bham.ac.uk wrote:
  33982. >>In article <RATZLAFF.9.00104675@A1.MSCF.UPENN.EDU> RATZLAFF@A1.MSCF.UPENN.EDU (Ron Ratzlaff) writes:
  33983. >>>I'm using Kermit's TCP/IP capability to connect to a local VAX.  I have 
  33984. >>>Kermit set-up to emulate a VT100 terminal for these sessions.  The problem
  33985. >>>is when the VAX issues a "print through" command to the VT100 emulator to
  33986. >>>make print outs and plots on my local printer attached to my PC: characters 
  33987. >>>are missing from the resulting print out.  There appears to be 
  33988. >>>something wrong in the handshake somewhere.  It is especially noticeable when 
  33989. >>>I'm trying to make a plot.
  33990. >>>
  33991. >>>Is there some SET command I need to use to avoid loosing characters?
  33992. >     I use MS-Kermit over a modem and phone line to connect to my Unix
  33993. >     account (this one that I'm posting from).  My mail agent has a
  33994. >     print on PC command; I currently have it set to 'attached to ansi.'
  33995. >     I'm having the same exact problem-- missing characters, or whole
  33996. >     chunks of characters.
  33997. >     I also can't have receive packets set larger than 1024 on my PC or
  33998. >     I get some strange results when I try to transfer a file from my
  33999. >     Unix account:  The transfer fails, and then when Kermit returns to
  34000. >     the command prompt, I get strings of ^F^F^F^F across my screen,
  34001. >     with an occassional buffer overflow error message.  I have to
  34002. >     reboot my computer to stop it.
  34003. >     I've assumed I'm having these problems because flow control is not
  34004. >     working on my connection, and because I have only 640K of memory
  34005. >     total on my PC.  (I'm sure my old modem doesn't have hardware flow
  34006. >     control, so I have XON/XOFF set.)  But now I wonder if it's
  34007. >     something else.
  34008. -------------
  34009.     Once again, please tell us the version and patch number of the Kermit 
  34010. involved (we don't service non-Columbia Kermits) and whatever other 
  34011. information you think might be important.
  34012.     Is there a communications device between the far modem and your Unix
  34013. box? There should be no packet length difficulties with a straight modem to
  34014. modem, machine to machine, connection provided flow control is active at *all* 
  34015. points. I appreciate it is difficult to know what's on the remote system.
  34016.     The ^F^F... effect could be from a corrupted kermit.exe file, from
  34017. systems problems outside of Kermit, from memory management troubles in the 
  34018. PC, whatnot. 
  34019.     640KB is more than adequate to run Kermit (it's a small sized program).
  34020. If you are using screen rollback for Connect mode then those screens are
  34021. stored either in conventional memory (at about 4KB per screen) or in expanded
  34022. memory. Expanded memory via software must pin down where the expanded memory
  34023. 64KB frame buffer is located, and that is something each user must attend to.
  34024. Please don't use A000-BFFF since that's the domain of the video system.
  34025.     Joe D.
  34026.  
  34027. From news@columbia.edu Sat Oct 15 17:15:15 1994
  34028. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13651
  34029.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 15 Oct 1994 13:15:17 -0400
  34030. Received: by apakabar.cc.columbia.edu id AA28779
  34031.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 15 Oct 1994 13:15:16 -0400
  34032. Path: news.columbia.edu!usenet
  34033. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  34034. Newsgroups: comp.protocols.kermit.misc
  34035. Subject: IBM RS/6000 AIX 4.1.0
  34036. Date: 15 Oct 1994 17:15:15 GMT
  34037. Organization: Columbia University
  34038. Lines: 7
  34039. Message-Id: <37p2n3$s2t@apakabar.cc.columbia.edu>
  34040. Nntp-Posting-Host: fdc.cc.columbia.edu
  34041. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  34042.  
  34043. Is anybody out there running AIX 4.1.0?
  34044.  
  34045. If you are willing to check out C-Kermit on it, please send me email.
  34046.  
  34047. Thanks.
  34048.  
  34049. - Frank
  34050.  
  34051. From news@columbia.edu Sat Oct 15 17:18:36 1994
  34052. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14505
  34053.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 15 Oct 1994 13:36:21 -0400
  34054. Received: by apakabar.cc.columbia.edu id AA29951
  34055.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 15 Oct 1994 13:36:20 -0400
  34056. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!torn!news.ccs.queensu.ca!news
  34057. From: mike@ccs.queensu.ca (Mike Smith)
  34058. Newsgroups: comp.protocols.kermit.misc
  34059. Subject: Re: Suggestions for the Columbia Dialing Scripts
  34060. Date: 15 Oct 1994 17:18:36 GMT
  34061. Organization: Queen's University, Kingston
  34062. Lines: 92
  34063. Distribution: world
  34064. Message-Id: <37p2tc$8th@knot.queensu.ca>
  34065. References: <37jv25$8nk@knot.queensu.ca> <37mgri$4e@apakabar.cc.columbia.edu>
  34066. Nntp-Posting-Host: ccs-sparc2.ccs
  34067. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  34068.  
  34069. Thanks to fdc for his responses.  In the following, any line prefixed by
  34070. two > is from my original post, one > is from Frank's reply, 0 > is new from me.
  34071.  
  34072. |> It should be perfectly safe to change REINPUT 0 to REINPUT 2 in this case,
  34073. |> and it will probably have the desired effect.  Since you have access to a
  34074. |> modem that appears to need this, maybe you could try this and report the
  34075. |> results back to me.  I'd also like to see a session log of a manual
  34076. |> dialing session -- maybe your modem outputs more linefeeds than regular
  34077. |> Hayes modems.
  34078. I'll contact the two users that I know had this problem and ask them to
  34079. create a session log.  One was a GVC 9600, the other a 9600 "Hayes compatible"
  34080. CompuDyne (sp?).
  34081.  
  34082. |> > I find the noise level of the scripts irritating...
  34083.  
  34084. |> A valid point, to be sure, but one that can't be addressed in the 3.14
  34085. |> cycle...
  34086.  
  34087. |> > The number of redials and the pause between redials should be controlled
  34088. |> > by variables rather than hardcoded into the dialing scripts.
  34089.  
  34090. |> Perhaps, but here again we'd probably need changes at the program level
  34091. |> rather than just in the scripts, because the concept of "variables" is
  34092. |> opaque to many users.  Too late for 3.14.
  34093.  
  34094. My complaints are minor and fit into the "gee, I wish ..." category.
  34095. Not to belabour the point, I don't expect or require my users to understand Kermit 
  34096. variables.  Instead, I give them a KCONFIG utility that asks various questions about 
  34097. their modem, etc. and edits their MSCUSTOM.INI file for them.  I changed all the
  34098. dialing scripts to use variables and so KCONFIG can also tailor the redial
  34099. mechanism via MSCUSTOM.INI.
  34100.  
  34101. |> > The dialing scripts should not automatically set parity to none...
  34102. |> > 
  34103. |> Yes they should.  The trick is for them to restore the desired parity...
  34104.  
  34105. Great!  Sounds like 3.14 gives me what I need.
  34106. |> 
  34107. |> > Similarly, I've had trouble with some scripts trying to set the DTE<->DCE
  34108. |> > speed as high as the modem will allow.  I may be on shaky ground here
  34109. |> > but for our environment, 38400 is a better choice for many systems.
  34110. |> >
  34111. |> Why?  If the modem can autobaud at, say, 57600, and give a comprehensible
  34112. |> response, and we know how to set it up for RTS/CTS flow control, and we
  34113. |> can verify that this has, indeed, been done successfully (see latest
  34114. |> dialing scripts), what would the drawbacks be of using the highest speed?
  34115. |> 
  34116. |> > And
  34117. |> > for some of our services, it is necessary that the speed set in the dialing
  34118. |> > directory be respected.
  34119. |> > 
  34120. |> Could you please explain?  If we are talking about error-correcting
  34121. |> modems, then the interface speed is independent of the connection speed
  34122. |> that is negotiated between the two modems.
  34123.  
  34124. Admittedly I do not understand all the complexities here although I do understand
  34125. the difference between interface speed and modulation speed, thanks in large
  34126. part to your great explanations in the original Kermit book.  My observation
  34127. is that on a 7/e/1 connection to an aging PACX that fronts a Series/1 interface
  34128. to our IBM mainframe, increasing the DTE<->DCE speed *decreased* the file transfer
  34129. rate.  If memory serves correctly this was a problem on uploads only.  And I
  34130. have no doubt that there are plenty of other situations outside my experience
  34131. that may require a less optimistic assumption than if the modem can go at 57600
  34132. let's ignore the DIALUPS.TXT table.  Respecting the table makes it so much easier
  34133. for unusual situations, and (apologies in advance for being presumptuous) is in 
  34134. keeping with the Kermit philosophy of making it work first and making it fast second.
  34135.  
  34136. |> 
  34137. |> > In summary, I'm hoping that over time, a set of dialing scripts will emerge
  34138. |> > that work for all PC/modem combinations here at Queen's.  (Probably a
  34139. |> > vain hope.)
  34140. |> >
  34141. |> Not at all!  As time goes on, we'll keep improving the modem scripts and
  34142. |> adding new ones.  Perhaps the whole business can become more table driven...
  34143.  
  34144. That would be really great!  I've thought about doing that myself but so far
  34145. my experience with modems makes me skeptical that I could really make it work.
  34146. I even wonder if a better approach might be to hack HAYES.SCR so that the
  34147. user could simply define a prefix string for his/her modem.  For some of my
  34148. users this may well be a good approach, e.g., because they already see an
  34149. initialization string that "works" for their modem in another comm program.
  34150. On the other hand, it also makes it very easy for somebody to shoot themselves
  34151. in the foot so I'd probably just exchange one set of problems for another.
  34152.  
  34153. |> 
  34154. |> And we'll keep your suggestions on the pile for the next release.
  34155. Thanks again.
  34156. -- 
  34157.  
  34158.  Mike Smith                                  mike@ccs.queensu.ca
  34159.  Queen's University                          Michael.D.Smith@QueensU.CA
  34160.  Computing and Communications Services       (613) 545-2024
  34161.  
  34162. From news@columbia.edu Sat Oct 15 18:25:16 1994
  34163. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16630
  34164.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 15 Oct 1994 14:25:29 -0400
  34165. Received: by apakabar.cc.columbia.edu id AA02777
  34166.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 15 Oct 1994 14:25:28 -0400
  34167. Path: news.columbia.edu!sol.ctr.columbia.edu!caen!news-server!hagar
  34168. From: hagar@umich.edu
  34169. Newsgroups: comp.protocols.kermit.misc
  34170. Subject: Re: MS-DOS Kermit 3.14 Beta problem with PUSH
  34171. Date: 15 Oct 1994 18:25:16 GMT
  34172. Organization: University of Michigan
  34173. Lines: 27
  34174. Message-Id: <HAGAR.94Oct15142517@ulam.engin.umich.edu>
  34175. References: <37li8m$d57@garuda.csulb.edu>
  34176.     <Pine.SUN.3.91.941014121103.5700B-100000@survis.surfnet.nl>
  34177.     <37m5bq$1re@apakabar.cc.columbia.edu>
  34178. Nntp-Posting-Host: ulam.engin.umich.edu
  34179. In-Reply-To: ycl6@aloha.cc.columbia.edu's message of 14 Oct 1994 14:42:02 GMT
  34180. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  34181.  
  34182.  
  34183. >>> In article <Pine.SUN.3.91.941014121103.5700B-100000@survis.surfnet.nl>,
  34184. >>>  <Xander.Jansen@SURFnet.nl> wrote:
  34185. >>> |Same here, with most commands (except CD and CWD). For example SHOW COMM
  34186. >>> |hangs up the modem. I noticed that the auto-hangup happens only with high
  34187. >>> |speeds, using a 2400bps modem all is fine (but slow of course ;-) Using
  34188. >>> |2400bps speed with a 14k4 modem also works but using higher speeds with
  34189. >>> |the 14k4 modem not. 
  34190.  
  34191. >>> Same problem here as well.  I'm running 3.14 on a Tandy XT clone with an
  34192. >>> Intel external 14.4k modem.
  34193.  
  34194. I have a similar problem on a Zeinth Z 425S+ running Windows 3.1,
  34195. MsKermit 3.13 patch level 12, with Intel internal 14.4 modem on Com 2,
  34196. but it only happens sometimes; most of the time its just fine.
  34197.  
  34198.  
  34199. -------------------------------------------------------------------------
  34200. James Paul Holloway           |e-mail: hagar@umich.edu                   
  34201.                               |   URL: http://www.engin.umich.edu/~hagar/
  34202. -------------------------------------------------------------------------
  34203. --
  34204.  
  34205. -------------------------------------------------------------------------
  34206. James Paul Holloway           |e-mail: hagar@umich.edu                   
  34207.                               |   URL: http://www.engin.umich.edu/~hagar/
  34208. -------------------------------------------------------------------------
  34209.  
  34210. From news@columbia.edu Sat Oct 15 18:38:10 1994
  34211. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19314
  34212.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 15 Oct 1994 15:21:58 -0400
  34213. Received: by apakabar.cc.columbia.edu id AA06462
  34214.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 15 Oct 1994 15:21:57 -0400
  34215. Newsgroups: comp.protocols.kermit.misc
  34216. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!EU.net!sun4nl!news.nic.surfnet.nl!ruu.nl!survis.surfnet.nl!Xander.Jansen
  34217. From: Xander.Jansen@surfnet.nl
  34218. Subject: Re: Buffer overflows? (was Re: Problem: VT100 "print through") 
  34219. In-Reply-To: <37p0k0$q59@apakabar.cc.columbia.edu> 
  34220. X-Sender: jansen@SURFnet.nl
  34221. Content-Type: TEXT/PLAIN; charset=US-ASCII
  34222. Message-Id: <Pine.SUN.3.91.941015192541.29753A-100000@survis.surfnet.nl>
  34223. Phone: +31 30 310290
  34224. Sender: usenet@cc.ruu.nl
  34225. Address: "Cluetinckborch, P.O. Box 19035, 3501 DA Utrecht, NL"
  34226. Telefax: +31 30 340903
  34227. Organization: SURFnet bv
  34228. References: <jhurwitCxp0xx.46w@netcom.com> <37p0k0$q59@apakabar.cc.columbia.edu> 
  34229. Mime-Version: 1.0
  34230. Date: Sat, 15 Oct 1994 18:38:10 GMT
  34231. Lines: 42
  34232. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  34233.  
  34234. On 15 Oct 1994, Frank da Cruz wrote:
  34235.  
  34236. > In article <jhurwitCxp0xx.46w@netcom.com> jhurwit@netcom.com
  34237. > (Jeffrey Hurwit) writes:
  34238. > >
  34239. > >     I use MS-Kermit over a modem and phone line to connect to my Unix
  34240. > >     account (this one that I'm posting from).  My mail agent has a
  34241. > >     print on PC command; I currently have it set to 'attached to ansi.'
  34242. > >     I'm having the same exact problem-- missing characters, or whole
  34243. > >     chunks of characters.
  34244. > > 
  34245. > I can't emphasize this strongly enough:  You must have the most effective
  34246. > means of flow control that is available to you enabled at every interface
  34247. > along the communication path -- from the host application (Pine?) all the
  34248. > way to the printer.
  34249.  
  34250. For what it's worth, a note from the release notes of Pine 3.91:
  34251. -----
  34252. Changes since pine 3.90.
  34253.  
  34254. Pine 3.91 is primarily a bug-fix release, to correct many (but not all)
  34255. of the problems reported with version 3.90.
  34256.  
  34257. IMPORTANT NOTE: if you are plagued by messages saying ^X or ^Q not
  34258. defined, or printers losing parts of messages sent from Pine, then set the
  34259. new feature:  "preserve-start-stop-characters" .  This is needed
  34260. whenever your printer, modem, or async communications program is
  34261. configured to use software flow control.  Note that setting this feature
  34262. will result in Pine appearing to "hang" if you accidentally type a ^S.
  34263. The remedy for this situation is to type a ^Q.
  34264. -----
  34265.  
  34266. Although I don't think that this will help in the specific situation
  34267. discussed (but you never know ;), it might help others using Pine and
  34268. being plagued by missing characters when printing 'attached-to-ansi'
  34269. or having other flow control pains.
  34270.  
  34271. Pine 3.91 can be fetched from ftp.cac.washington.edu, directory pine.
  34272.  
  34273. Xander
  34274.  
  34275. - This message was brought to you via MSK 3.14 Beta3 and Pine 3.91 ;-)
  34276.  
  34277. From news@columbia.edu Sat Oct 15 19:29:51 1994
  34278. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19715
  34279.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 15 Oct 1994 15:29:54 -0400
  34280. Received: by apakabar.cc.columbia.edu id AA06800
  34281.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 15 Oct 1994 15:29:53 -0400
  34282. Path: news.columbia.edu!usenet
  34283. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  34284. Newsgroups: comp.protocols.kermit.misc
  34285. Subject: MS-DOS Kermit 3.14 and Semicolons
  34286. Date: 15 Oct 1994 19:29:51 GMT
  34287. Organization: Columbia University
  34288. Lines: 26
  34289. Message-Id: <37pajf$6kd@apakabar.cc.columbia.edu>
  34290. Nntp-Posting-Host: fdc.cc.columbia.edu
  34291. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  34292.  
  34293. Luigi M Bianchi <lbianchi@Sol.YorkU.CA> wrote:
  34294. > I have set up the new version.  Very good!  Congratulations and, once
  34295. > again, thank you for a job really well done, and for your continuing
  34296. > generosity in releasing this marvelous software free of charge.
  34297. Thanks for the nice words.
  34298.  
  34299. > And now for a little change (bug?) I noticed.  The final couple of lines
  34300. > in my mscustom.ini are:
  34301. > menu;
  34302. > version;
  34303. > These used to work fine with 3.13.  With 3.14 I must remove the ";"
  34304. > or else an error message appears: '"menu;" not usable here'.
  34305. >
  34306. Not a bug, but a new feature, mentioned in section 19 of the KERMIT.UPD
  34307. file.  Trailing comments must have a space or tab before the semicolon.
  34308.  
  34309. Before this change, it was very difficult to put a semicolon in a string,
  34310. such as "get $disk0:foo.bar;3" or "output \27[?63;1;2;3;8;9;15c" -- all
  34311. sorts of difficult quoting was needed, which varied with the
  34312. macro/variable nesting level.  Now we can write such items without any
  34313. quoting at all, as long as there is no space before the semicolon.
  34314.  
  34315. - Frank
  34316.  
  34317. From news@columbia.edu Sat Oct 15 08:03:21 1994
  34318. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24321
  34319.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 15 Oct 1994 17:13:03 -0400
  34320. Received: by apakabar.cc.columbia.edu id AA13049
  34321.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 15 Oct 1994 17:13:01 -0400
  34322. Path: news.columbia.edu!panix!zip.eecs.umich.edu!yeshua.marcam.com!usc!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!ivie
  34323. From: ivie@cc.usu.edu
  34324. Newsgroups: comp.protocols.kermit.misc
  34325. Subject: Re: Tektronix emulation question
  34326. Message-Id: <1994Oct15.140321.30029@cc.usu.edu>
  34327. Date: 15 Oct 94 14:03:21 MDT
  34328. References: <37n1p3$b6d@eis.calstate.edu> <1994Oct14.231123.30006@cc.usu.edu>
  34329. Organization: Utah State University
  34330. Lines: 11
  34331. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  34332.  
  34333. In article <1994Oct14.231123.30006@cc.usu.edu>, jrd@cc.usu.edu (Joe Doupnik) writes:
  34334. >     Regular Form Feed, as a Tek command by itself, means clear the
  34335. > screen. It's your application program generating such commands, and thus
  34336. > I suggest having a little talk with it.
  34337.  
  34338. Um, Joe, my Tek 4006 doesn't clear the screen unless you send it <ESC><FF>.
  34339. A <FF> by itself doesn't do anything.
  34340. -- 
  34341. ----------------+------------------------------------------------------
  34342. Roger Ivie      | Don't think of it as a 'new' computer, think of it as
  34343. ivie@cc.usu.edu |     'obsolete-ready'
  34344.  
  34345. From news@columbia.edu Sat Oct 15 09:41:15 1994
  34346. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27689
  34347.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 15 Oct 1994 18:12:59 -0400
  34348. Received: by apakabar.cc.columbia.edu id AA16643
  34349.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 15 Oct 1994 18:12:58 -0400
  34350. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!usc!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  34351. From: jrd@cc.usu.edu (Joe Doupnik)
  34352. Newsgroups: comp.protocols.kermit.misc
  34353. Subject: MSK beta-5, announcement
  34354. Message-Id: <1994Oct15.154115.30036@cc.usu.edu>
  34355. Date: 15 Oct 94 15:41:15 MDT
  34356. Organization: Utah State University
  34357. Lines: 12
  34358. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  34359.  
  34360.     Beta-5 15 Oct 1994 of MS-DOS Kermit has several fixes for
  34361. problems reported over the past twenty four hours.
  34362.     ESC character in \m(blah  did not complete the name of the macro
  34363. properly. The fix now allows ESC word-completion within \fxxx functions
  34364. which take a macro name as an argument.
  34365.     Typing ^U at the Kermit prompt to erase the whole command line
  34366. left a remanent which could be seen by typing BS.
  34367.     Goto label could find a label which was longer than the target
  34368. but otherwise had the same spelling up to the match point.
  34369.  
  34370.     Beta-5 will be on kermit.columbia.edu Saturday evening or sooner.
  34371.         Joe D.
  34372.  
  34373. From news@columbia.edu Sat Oct 15 10:21:01 1994
  34374. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29960
  34375.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 15 Oct 1994 19:12:56 -0400
  34376. Received: by apakabar.cc.columbia.edu id AA20192
  34377.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 15 Oct 1994 19:12:55 -0400
  34378. Path: news.columbia.edu!sol.ctr.columbia.edu!math.ohio-state.edu!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  34379. From: jrd@cc.usu.edu (Joe Doupnik)
  34380. Newsgroups: comp.protocols.kermit.misc
  34381. Subject: MSK beta-5, more bugs fixed
  34382. Message-Id: <1994Oct15.162101.30039@cc.usu.edu>
  34383. Date: 15 Oct 94 16:21:01 MDT
  34384. Organization: Utah State University
  34385. Lines: 17
  34386. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  34387.  
  34388.     Addendeum to the MSK beta-5 bug list fixes:
  34389.  
  34390.     SET EXIT WARNING is back to having a space between EXIT and
  34391. WARNING. This will be changed to individual keywords in a day or so.
  34392.     Command EXIT now does not continue in a current Take file;
  34393. it gets out all the way and exits Kermit (invoking macro on_exit
  34394. if it exists).
  34395.     Tektronix command Control-L (Form Feed, FF) clears screen. I've 
  34396. commented it out just now. This command has been one of two screen clearing
  34397. commands (the other is ESC ^L) for years and years with no complaints
  34398. from anyone. I'm not sure of its heritage since Tek 4010 is implemented
  34399. with sundry variations by many vendors. If you are happy and things don't 
  34400. break otherwise we will leave it out.
  34401.  
  34402.     We have a short list of more involved suggestions to consider and
  34403. possibly implement, and that will take a day or two to finish.
  34404.         Joe D.
  34405.  
  34406. From news@columbia.edu Sat Oct 15 19:15:56 1994
  34407. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00874
  34408.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 15 Oct 1994 19:34:20 -0400
  34409. Received: by apakabar.cc.columbia.edu id AA21567
  34410.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 15 Oct 1994 19:34:19 -0400
  34411. Newsgroups: comp.protocols.kermit.misc
  34412. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!utnut!nott!cunews!freenet.carleton.ca!FreeNet.Carleton.CA!ad891
  34413. From: ad891@FreeNet.Carleton.CA (Bill Thorsteinson)
  34414. Subject: Re: MS-DOS Kermit 3.14 Beta problem with PUSH
  34415. Message-Id: <CxqAuK.74@freenet.carleton.ca>
  34416. Sender: news@freenet.carleton.ca (Usenet News Admin)
  34417. Reply-To: ad891@FreeNet.Carleton.CA (Bill Thorsteinson)
  34418. Organization: The National Capital FreeNet
  34419. References: <37li8m$d57@garuda.csulb.edu>  
  34420. Date: Sat, 15 Oct 1994 19:15:56 GMT
  34421. Lines: 14
  34422. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  34423.  
  34424.  
  34425. In a previous article, htnguyen@csulb.edu (One from the West) says:
  34426.  
  34427. >    I have download the beta version of kermit from columbia.edu.  Now
  34428. >everytime I escape to DOS the modem hang up.  Seem like it drop DTR when
  34429. >you go to DOS for some reason.  3.13 doesn't do this.  Can anyone
  34430. >enlighten me on this problem ? :) Thank you very much.
  34431. >
  34432. I have the same problem with 3.13 patch level 13.
  34433.  
  34434. I got around it by switching hangup on DTR off on the Modem.
  34435.  
  34436. /Bill Thorsteinson
  34437.  
  34438.  
  34439. From news@columbia.edu Sun Oct 16 00:06:55 1994
  34440. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02031
  34441.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 15 Oct 1994 20:07:23 -0400
  34442. Received: by apakabar.cc.columbia.edu id AA23557
  34443.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 15 Oct 1994 20:07:21 -0400
  34444. Path: news.columbia.edu!sol.ctr.columbia.edu!newsxfer.itd.umich.edu!gatech!howland.reston.ans.net!usenet.ins.cwru.edu!news.ysu.edu!yfn.ysu.edu!am856
  34445. From: am856@yfn.ysu.edu (Michael DeCosta III)
  34446. Newsgroups: comp.protocols.kermit.misc
  34447. Subject: FOSSIL 3.3 for the Z100 and MSKERMIT 3.14
  34448. Date: 16 Oct 1994 00:06:55 GMT
  34449. Organization: St. Elizabeth Hospital, Youngstown, OH
  34450. Lines: 4
  34451. Message-Id: <37pqqv$2ae@news.ysu.edu>
  34452. Reply-To: am856@yfn.ysu.edu (Michael DeCosta III)
  34453. Nntp-Posting-Host: yfn2.ysu.edu
  34454. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  34455.  
  34456.  
  34457. I have FOSSIL drivers 3.3 for the Z100 is there a chance I might
  34458. get MSKermit 3.14 to plug into them for console screen and keyboard,
  34459. and thus actually get it to work on the Z100 computer?
  34460.  
  34461. From news@columbia.edu Sat Oct 15 13:10:17 1994
  34462. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07655
  34463.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 15 Oct 1994 22:13:04 -0400
  34464. Received: by apakabar.cc.columbia.edu id AA00772
  34465.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 15 Oct 1994 22:13:03 -0400
  34466. Path: news.columbia.edu!sol.ctr.columbia.edu!math.ohio-state.edu!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  34467. From: jrd@cc.usu.edu (Joe Doupnik)
  34468. Newsgroups: comp.protocols.kermit.misc
  34469. Subject: Re: FOSSIL 3.3 for the Z100 and MSKERMIT 3.14
  34470. Message-Id: <1994Oct15.191017.30052@cc.usu.edu>
  34471. Date: 15 Oct 94 19:10:17 MDT
  34472. References: <37pqqv$2ae@news.ysu.edu>
  34473. Organization: Utah State University
  34474. Lines: 11
  34475. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  34476.  
  34477. In article <37pqqv$2ae@news.ysu.edu>, am856@yfn.ysu.edu (Michael DeCosta III) writes:
  34478. > I have FOSSIL drivers 3.3 for the Z100 is there a chance I might
  34479. > get MSKermit 3.14 to plug into them for console screen and keyboard,
  34480. > and thus actually get it to work on the Z100 computer?
  34481. --------
  34482.     Nope, not from here. There is enough to do to keep MSK/Z100
  34483. operational that I do not want to add anything like that. You are 
  34484. welcome to construct an experimental local copy if you wish, when the
  34485. sources appear at release time.
  34486.     Joe D.
  34487.  
  34488. From news@columbia.edu Sun Oct 16 05:20:05 1994
  34489. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15903
  34490.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 16 Oct 1994 01:22:41 -0400
  34491. Received: by apakabar.cc.columbia.edu id AA11665
  34492.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 16 Oct 1994 01:22:39 -0400
  34493. Path: news.columbia.edu!sol.ctr.columbia.edu!math.ohio-state.edu!magnus.acs.ohio-state.edu!usenet.ins.cwru.edu!news.ysu.edu!yfn.ysu.edu!am856
  34494. From: am856@yfn.ysu.edu (Michael DeCosta III)
  34495. Newsgroups: comp.protocols.kermit.misc
  34496. Subject: Re: FOSSIL 3.3 for the Z100 and MSKERMIT 3.14
  34497. Date: 16 Oct 1994 05:20:05 GMT
  34498. Organization: St. Elizabeth Hospital, Youngstown, OH
  34499. Lines: 36
  34500. Message-Id: <37qd65$a1g@news.ysu.edu>
  34501. References: <1994Oct15.191017.30052@cc.usu.edu> <37pqqv$2ae@news.ysu.edu>
  34502. Reply-To: am856@yfn.ysu.edu (Michael DeCosta III)
  34503. Nntp-Posting-Host: yfn2.ysu.edu
  34504. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  34505.  
  34506.  
  34507. In a previous article, jrd@cc.usu.edu (Joe Doupnik) says:
  34508.  
  34509. >In article <37pqqv$2ae@news.ysu.edu>, am856@yfn.ysu.edu (Michael DeCosta III) writes:
  34510. >> 
  34511. >> I have FOSSIL drivers 3.3 for the Z100 is there a chance I might
  34512. >> get MSKermit 3.14 to plug into them for console screen and keyboard,
  34513. >> and thus actually get it to work on the Z100 computer?
  34514. >--------
  34515. >    Nope, not from here. There is enough to do to keep MSK/Z100
  34516. >operational that I do not want to add anything like that. You are 
  34517. >welcome to construct an experimental local copy if you wish, when the
  34518. >sources appear at release time.
  34519. >    Joe D.
  34520. >
  34521.  
  34522. Joe,
  34523.  You misunderstood me. FOSSIL is a standardized interface. I wasn't asking
  34524.  if you were going to put it into Z100MSKermit? I was asking whether
  34525.  there was a good chance that the IBM PC MSKERMIT FOSSIL plugs would
  34526.  support that version of FOSSIL that was available.
  34527.  
  34528.  For example versions of Binleyterm will accept this FOSSIL driver on the
  34529.  Z100 without having been written specifically for the Z100. The only places
  34530.  where I have seen this fail is that some supposed "FOSSIL" supporting
  34531.  programs only use FOSSIL for an external connection and will not let
  34532.  the master programs console I/O be directed through FOSSIL.
  34533.  
  34534.  So what I am asking is will IBM PC MSKermit 3.14 let the console screen
  34535.  and keyboard I/O be vectored to FOSSIL.
  34536.  
  34537.  Basically, I just wanted to know if you thought it might be worth the try.
  34538.  I'll read the documentation and fiddle with it if you think it may work.
  34539.  
  34540.  Also keep in mind the version. I have no idea how backwardly compatible
  34541.  your implementation was intended to be.
  34542.  
  34543. From news@columbia.edu Sun Oct 16 05:23:42 1994
  34544. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16677
  34545.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 16 Oct 1994 01:47:22 -0400
  34546. Received: by apakabar.cc.columbia.edu id AA12652
  34547.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 16 Oct 1994 01:47:21 -0400
  34548. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!MathWorks.Com!uhog.mit.edu!sgiblab!munnari.oz.au!news.uwa.edu.au!newsman.csu.murdoch.edu.au!csuvax1!anson
  34549. From: anson@csuvax1.murdoch.edu.au (Binh Anson)
  34550. Newsgroups: comp.protocols.kermit.misc
  34551. Subject: [HELP] Funny Characters on the Screen
  34552. Date: 16 Oct 1994 05:23:42 GMT
  34553. Lines: 15
  34554. Message-Id: <37qdcuINNfjb@newsman.csu.murdoch.edu.au>
  34555. Nntp-Posting-Host: csuvax1.murdoch.edu.au
  34556. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  34557.  
  34558. G'day,
  34559.  
  34560. I'm using Kermit 3.13, with a 14.4 K baud modem. When I'm in Pine or reading news, occasionally there are funny strings appearing on the screen, such as
  34561. [12,42H , or sometimes the residue of a line display still appearing at the top or the bottom of the screen when scrolling.
  34562.  
  34563. Could anyone explain, and advise how to fix these problems ?
  34564.  
  34565. Regards,
  34566. Bi`nh
  34567. --
  34568. -------------------------------------------------------------------------
  34569.   Binh Anson            FAX: (61-9) 244 4726 (Perth, Australia)
  34570.                 Email: anson@csuvax1.murdoch.edu.au
  34571. -------------------------------------------------------------------------
  34572.         
  34573.  
  34574. From news@columbia.edu Sun Oct 16 08:09:03 1994
  34575. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21127
  34576.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 16 Oct 1994 04:09:18 -0400
  34577. Received: by apakabar.cc.columbia.edu id AA17458
  34578.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 16 Oct 1994 04:09:17 -0400
  34579. Path: news.columbia.edu!panix!zip.eecs.umich.edu!newsxfer.itd.umich.edu!europa.eng.gtefsd.com!library.ucla.edu!csulb.edu!htnguyen
  34580. From: htnguyen@csulb.edu (One from the West)
  34581. Newsgroups: comp.protocols.kermit.misc
  34582. Subject: MS-DOS Kermit 3.14 Beta problem with PUSH
  34583. Date: 16 Oct 1994 08:09:03 GMT
  34584. Organization: Cal State Long Beach
  34585. Lines: 10
  34586. Message-Id: <37qn2v$dt2@garuda.csulb.edu>
  34587. Nntp-Posting-Host: grover.cecs.csulb.edu
  34588. X-Newsreader: TIN [version 1.2 PL2]
  34589. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  34590.  
  34591.  
  34592. Thank you all for replying
  34593.     It is actually something caused by kermit.  I have download a
  34594. newer version of 3.14 and it work fine now. Still trying 3.14 :)
  34595. --
  34596.                        Huy Nguyen (htnguyen@csulb.edu)
  34597.                 Network Administrator
  34598.                 Career Development Center
  34599.                 Califonia State Univeristy Long Beach
  34600.  
  34601.  
  34602. From news@columbia.edu Sun Oct 16 10:08:52 1994
  34603. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24576
  34604.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 16 Oct 1994 06:10:26 -0400
  34605. Received: by apakabar.cc.columbia.edu id AA22181
  34606.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 16 Oct 1994 06:10:25 -0400
  34607. Path: news.columbia.edu!sol.ctr.columbia.edu!newsxfer.itd.umich.edu!europa.eng.gtefsd.com!howland.reston.ans.net!pipex!warwick!news.shef.ac.uk!sunc!jp1ek
  34608. From: jp1ek@sunc.shef.ac.uk (Earl H. Kinmonth)
  34609. Newsgroups: comp.protocols.kermit.misc
  34610. Subject: Re: MS-DOS Kermit 3.14 Beta Ready
  34611. Date: 16 Oct 1994 10:08:52 GMT
  34612. Organization: Centre for Japanese Studies, Univ. of Sheffield
  34613. Lines: 10
  34614. Message-Id: <37qu3k$kp5@hippo.shef.ac.uk>
  34615. References: <37k7db$fb@apakabar.cc.columbia.edu>
  34616. Reply-To: jp1ek@sunc.shef.ac.uk
  34617. Nntp-Posting-Host: sunc.shef.ac.uk
  34618. X-Newsreader: TIN [version 1.2 PL2]
  34619. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  34620.  
  34621. Frank da Cruz (fdc@fdc.cc.columbia.edu) wrote:
  34622. : See announcement in comp.protocols.kermit and/or
  34623. : comp.protocols.kermit.announce.
  34624.  
  34625. I have installed the 3.14 distribution in /ftp/pub/tools/KERMIT
  34626. directory on kuso.shef.ac.uk (143.167.25.1).
  34627.  
  34628. --
  34629. Earl H. Kinmonth, Centre for Japanese Studies, University of Sheffield,
  34630. Sheffield, England S10 2TN jp1ek@sunc.sheffield.ac.uk
  34631.  
  34632. From news@columbia.edu Sun Oct 16 14:49:35 1994
  34633. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00646
  34634.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 16 Oct 1994 10:49:38 -0400
  34635. Received: by apakabar.cc.columbia.edu id AA15559
  34636.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 16 Oct 1994 10:49:37 -0400
  34637. Path: news.columbia.edu!usenet
  34638. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  34639. Newsgroups: comp.protocols.kermit.misc
  34640. Subject: Re: [HELP] Funny Characters on the Screen
  34641. Date: 16 Oct 1994 14:49:35 GMT
  34642. Organization: Columbia University
  34643. Lines: 24
  34644. Message-Id: <37rehv$f64@apakabar.cc.columbia.edu>
  34645. References: <37qdcuINNfjb@newsman.csu.murdoch.edu.au>
  34646. Nntp-Posting-Host: fdc.cc.columbia.edu
  34647. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  34648.  
  34649. In article <37qdcuINNfjb@newsman.csu.murdoch.edu.au>  
  34650. anson@csuvax1.csu.murdoch.edu.au (Binh Anson) writes:
  34651. > I'm using Kermit 3.13, with a 14.4 K baud modem. When I'm in Pine or
  34652. > reading news, occasionally there are funny strings appearing on the screen,
  34653. > such as [12,42H , or sometimes the residue of a line display still 
  34654. > appearing at the top or the bottom of the screen when scrolling.
  34655. > Could anyone explain, and advise how to fix these problems ?
  34656. Evidently PINE, and apparently also your newsreader, turn off flow
  34657. control.  Thus, if they are sending stuff faster than the PC can process,
  34658. the PC sends an Xoff flow control signal to stop the flow while it
  34659. catches up, and this signal is ignored.
  34660.  
  34661. Workarounds: (a) Tell the host application NOT to turn off flow control.
  34662. Reportedly, the command for this in PINE is "preserve-start-stop-characters".
  34663. I don't know about your newsreader; (b) switch to hardware (RTS/CTS) flow
  34664. control if your modem supports it -- it probably does.
  34665.  
  34666. Solution (b) is preferable.
  34667.  
  34668. See the long discussion of Xon/Xoff flow control in yesterday's postings
  34669. to this group.
  34670.  
  34671. - Frank
  34672.  
  34673. From news@columbia.edu Sun Oct 16 14:54:15 1994
  34674. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00815
  34675.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 16 Oct 1994 10:54:17 -0400
  34676. Received: by apakabar.cc.columbia.edu id AA15875
  34677.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 16 Oct 1994 10:54:15 -0400
  34678. Path: news.columbia.edu!usenet
  34679. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  34680. Newsgroups: comp.protocols.kermit.misc
  34681. Subject: Re: FOSSIL 3.3 for the Z100 and MSKERMIT 3.14
  34682. Date: 16 Oct 1994 14:54:15 GMT
  34683. Organization: Columbia University
  34684. Lines: 17
  34685. Message-Id: <37reqn$fg1@apakabar.cc.columbia.edu>
  34686. References: <37qd65$a1g@news.ysu.edu>
  34687. Nntp-Posting-Host: fdc.cc.columbia.edu
  34688. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  34689.  
  34690. In article <37qd65$a1g@news.ysu.edu> am856@yfn.ysu.edu (Michael DeCosta III)  
  34691. writes:
  34692. >  You misunderstood me. FOSSIL is a standardized interface. I wasn't asking
  34693. >  if you were going to put it into Z100MSKermit? I was asking whether
  34694. >  there was a good chance that the IBM PC MSKERMIT FOSSIL plugs would
  34695. >  support that version of FOSSIL that was available.
  34696. >  
  34697. I can't say anything definitive here, not having seen a Z100 for a looooong
  34698. time, but there is more to running the IBM version of Kermit on a Z100 than
  34699. redirecting COM and console i/o through the BIOS.  There are probably 
  34700. thousands of other IBM-specific actions taken by the IBM PC version of MS-DOS
  34701. Kermit relating to the memory layout, video BIOS, interrupt vectors, 
  34702. keyboard, networks, and so on.  In particular, I would not expect the IBM PC
  34703. terminal emulation code to run on a non-IBM compatible PC.  But I suppose
  34704. it's always worth a try :-)
  34705.  
  34706. - Frank
  34707.  
  34708. From news@columbia.edu Sun Oct 16 03:17:03 1994
  34709. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03732
  34710.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 16 Oct 1994 12:13:45 -0400
  34711. Received: by apakabar.cc.columbia.edu id AA20119
  34712.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 16 Oct 1994 12:13:44 -0400
  34713. Path: news.columbia.edu!sol.ctr.columbia.edu!usc!howland.reston.ans.net!agate!dog.ee.lbl.gov!news.cs.utah.edu!cc.usu.edu!jrd
  34714. From: jrd@cc.usu.edu (Joe Doupnik)
  34715. Newsgroups: comp.protocols.kermit.misc
  34716. Subject: Re: MS-DOS Kermit 3.14 Beta Ready
  34717. Message-Id: <1994Oct16.091703.30066@cc.usu.edu>
  34718. Date: 16 Oct 94 09:17:03 MDT
  34719. References: <37k7db$fb@apakabar.cc.columbia.edu> <37qu3k$kp5@hippo.shef.ac.uk>
  34720. Organization: Utah State University
  34721. Lines: 19
  34722. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  34723.  
  34724. In article <37qu3k$kp5@hippo.shef.ac.uk>, jp1ek@sunc.sheffield.ac.uk (Earl H. Kinmonth) writes:
  34725. > Frank da Cruz (fdc@fdc.cc.columbia.edu) wrote:
  34726. > : See announcement in comp.protocols.kermit and/or
  34727. > : comp.protocols.kermit.announce.
  34728. > I have installed the 3.14 distribution in /ftp/pub/tools/KERMIT
  34729. > directory on kuso.shef.ac.uk (143.167.25.1).
  34730. > --
  34731. > Earl H. Kinmonth, Centre for Japanese Studies, University of Sheffield,
  34732. > Sheffield, England S10 2TN jp1ek@sunc.sheffield.ac.uk
  34733.  
  34734. ------
  34735. Earl,
  34736.     That's a gesture sure to save some bandwidth across the pond.
  34737. Please note that the files will change daily (hourly) as we digest
  34738. all the comments coming in. If testers with reports will please grab the 
  34739. latest beta before reporting a problem then it will save some time too.
  34740.     Joe D.
  34741.  
  34742. From news@columbia.edu Sun Oct 16 03:30:06 1994
  34743. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03829
  34744.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 16 Oct 1994 12:16:35 -0400
  34745. Received: by apakabar.cc.columbia.edu id AA20557
  34746.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 16 Oct 1994 12:16:34 -0400
  34747. Path: news.columbia.edu!sol.ctr.columbia.edu!usc!howland.reston.ans.net!agate!dog.ee.lbl.gov!news.cs.utah.edu!cc.usu.edu!jrd
  34748. From: jrd@cc.usu.edu (Joe Doupnik)
  34749. Newsgroups: comp.protocols.kermit.misc
  34750. Subject: Re: FOSSIL 3.3 for the Z100 and MSKERMIT 3.14
  34751. Message-Id: <1994Oct16.093006.30067@cc.usu.edu>
  34752. Date: 16 Oct 94 09:30:06 MDT
  34753. References: <1994Oct15.191017.30052@cc.usu.edu> <37pqqv$2ae@news.ysu.edu> <37qd65$a1g@news.ysu.edu>
  34754. Organization: Utah State University
  34755. Lines: 40
  34756. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  34757.  
  34758. In article <37qd65$a1g@news.ysu.edu>, am856@yfn.ysu.edu (Michael DeCosta III) writes:
  34759. > In a previous article, jrd@cc.usu.edu (Joe Doupnik) says:
  34760. >>In article <37pqqv$2ae@news.ysu.edu>, am856@yfn.ysu.edu (Michael DeCosta III) writes:
  34761. >>> 
  34762. >>> I have FOSSIL drivers 3.3 for the Z100 is there a chance I might
  34763. >>> get MSKermit 3.14 to plug into them for console screen and keyboard,
  34764. >>> and thus actually get it to work on the Z100 computer?
  34765. >>--------
  34766. >>    Nope, not from here. There is enough to do to keep MSK/Z100
  34767. >>operational that I do not want to add anything like that. You are 
  34768. >>welcome to construct an experimental local copy if you wish, when the
  34769. >>sources appear at release time.
  34770. >>    Joe D.
  34771. >>
  34772. > Joe,
  34773. >  You misunderstood me. FOSSIL is a standardized interface. I wasn't asking
  34774. >  if you were going to put it into Z100MSKermit? I was asking whether
  34775. >  there was a good chance that the IBM PC MSKERMIT FOSSIL plugs would
  34776. >  support that version of FOSSIL that was available.
  34777. >  
  34778. >  For example versions of Binleyterm will accept this FOSSIL driver on the
  34779. >  Z100 without having been written specifically for the Z100. The only places
  34780. >  where I have seen this fail is that some supposed "FOSSIL" supporting
  34781. >  programs only use FOSSIL for an external connection and will not let
  34782. >  the master programs console I/O be directed through FOSSIL.
  34783. >  
  34784. >  So what I am asking is will IBM PC MSKermit 3.14 let the console screen
  34785. >  and keyboard I/O be vectored to FOSSIL.
  34786. --------
  34787.     Ok, now I understand your request. The answer is no this time too,
  34788. but not a "huff and puff" no. The reason is it would very heavily chop up
  34789. the program and lose large amounts of functionality. Fossil does not come
  34790. even close to providing the interfaces needed and used by Kermit.
  34791.         Z100 Kermit does work. Thus I fail to see good reasons for drastic
  34792. program changes just to run on a Z100. If I've still missed the point then
  34793. please let me know.
  34794.     Joe D.
  34795.  
  34796. From news@columbia.edu Sun Oct 16 17:23:26 1994
  34797. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05959
  34798.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 16 Oct 1994 13:23:30 -0400
  34799. Received: by apakabar.cc.columbia.edu id AA24534
  34800.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 16 Oct 1994 13:23:29 -0400
  34801. Path: news.columbia.edu!konichiwa.cc.columbia.edu!ycl6
  34802. From: ycl6@columbia.edu (Yeechang Lee)
  34803. Newsgroups: comp.protocols.kermit.misc
  34804. Subject: Re: [HELP] Funny Characters on the Screen
  34805. Date: 16 Oct 1994 17:23:26 GMT
  34806. Organization: Columbia University, New York City
  34807. Lines: 19
  34808. Message-Id: <37rnie$nuj@apakabar.cc.columbia.edu>
  34809. References: <37qdcuINNfjb@newsman.csu.murdoch.edu.au>
  34810. Nntp-Posting-Host: konichiwa.cc.columbia.edu
  34811. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  34812.  
  34813. In article <37qdcuINNfjb@newsman.csu.murdoch.edu.au>, Binh Anson
  34814. <anson@csuvax1.csu.murdoch.edu.au> wrote: 
  34815. |I'm using Kermit 3.13, with a 14.4 K baud modem. When I'm in Pine or reading
  34816. |news, occasionally there are funny strings appearing on the screen, such as
  34817. |[12,42H , or sometimes the residue of a line display still appearing at the
  34818. |top or the bottom of the screen when scrolling.
  34819.  
  34820. I have a similar setup (Intel 144/144e 14.4k external modem with 3.14 beta 5
  34821. on my XT) and a similar problem, but only if I have SET SPEED 38400 or SET
  34822. SPEED 57600.  And yes, I'm using rts/cts.  My XT, apparently, just isn't
  34823. fast enough to keep up at the higher speeds, even with hardware flow
  34824. control.  I see it as well on *blasphemy* Zmodem downloads, where "Data
  34825. overruns" will occur at 38.4k or 57.6k.  My solution?  SET SPEED 19200. 
  34826. It's not the ideal situation, but it'll work until I get a faster computer,
  34827. and even 19.2k is greater than 14.4k.
  34828. ---  _________________________________   o   ______________________________
  34829.      Yeechang Lee  (ycl6@columbia.edu) o   o I sure as heck don't speak for
  34830.      Nevada Las Vegas Mission 1992-'94 \_O_/ Columbia University, other New
  34831.      Columbia University/New York City   |   Yorkers, or anyone else at all
  34832.  
  34833. From news@columbia.edu Sun Oct 16 20:06:38 1994
  34834. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12527
  34835.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 16 Oct 1994 16:11:41 -0400
  34836. Received: by apakabar.cc.columbia.edu id AA05678
  34837.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 16 Oct 1994 16:11:39 -0400
  34838. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!vixen.cso.uiuc.edu!newsrelay.iastate.edu!news.iastate.edu!tflynn
  34839. From: tflynn@iastate.edu (Timothy John Flynn)
  34840. Newsgroups: comp.protocols.kermit.misc
  34841. Subject: Why no mouse suuport??
  34842. Date: 16 Oct 1994 20:06:38 GMT
  34843. Organization: Iowa State University, Ames, IA
  34844. Lines: 13
  34845. Message-Id: <37s14e$pr5@news.iastate.edu>
  34846. Nntp-Posting-Host: des1.iastate.edu
  34847. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  34848.  
  34849.  
  34850.  
  34851. Why doesn't kermit have mouse support similar to x-win?
  34852.  
  34853. this would be very benificial!
  34854.  
  34855. I know it is supposed to have copy and paste support, but I have yet to
  34856. see it work, so I have to use a tsr called markit.com to copy and paste!
  34857. -- 
  34858. @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
  34859. *   *   *   *   *   *   tflynn@iastate.edu    *   *   *   *   *   *   *   @
  34860. Tim Flynn, Larch 1349 Cunningham, Ames, Iowa 50013-0008  ph.(515)-294-9022@
  34861. @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
  34862.  
  34863. From news@columbia.edu Sun Oct 16 07:39:31 1994
  34864. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15151
  34865.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 16 Oct 1994 17:14:46 -0400
  34866. Received: by apakabar.cc.columbia.edu id AA10157
  34867.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 16 Oct 1994 17:14:45 -0400
  34868. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!yeshua.marcam.com!zip.eecs.umich.edu!newsxfer.itd.umich.edu!gatech!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  34869. From: jrd@cc.usu.edu (Joe Doupnik)
  34870. Newsgroups: comp.protocols.kermit.misc
  34871. Subject: Re: [HELP] Funny Characters on the Screen
  34872. Message-Id: <1994Oct16.133931.30076@cc.usu.edu>
  34873. Date: 16 Oct 94 13:39:31 MDT
  34874. References: <37qdcuINNfjb@newsman.csu.murdoch.edu.au> <37rnie$nuj@apakabar.cc.columbia.edu>
  34875. Organization: Utah State University
  34876. Lines: 27
  34877. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  34878.  
  34879. In article <37rnie$nuj@apakabar.cc.columbia.edu>, ycl6@konichiwa.cc.columbia.edu (Yeechang Lee) writes:
  34880. > In article <37qdcuINNfjb@newsman.csu.murdoch.edu.au>, Binh Anson
  34881. > <anson@csuvax1.csu.murdoch.edu.au> wrote: 
  34882. > |I'm using Kermit 3.13, with a 14.4 K baud modem. When I'm in Pine or reading
  34883. > |news, occasionally there are funny strings appearing on the screen, such as
  34884. > |[12,42H , or sometimes the residue of a line display still appearing at the
  34885. > |top or the bottom of the screen when scrolling.
  34886. > I have a similar setup (Intel 144/144e 14.4k external modem with 3.14 beta 5
  34887. > on my XT) and a similar problem, but only if I have SET SPEED 38400 or SET
  34888. > SPEED 57600.  And yes, I'm using rts/cts.  My XT, apparently, just isn't
  34889. > fast enough to keep up at the higher speeds, even with hardware flow
  34890. > control.  I see it as well on *blasphemy* Zmodem downloads, where "Data
  34891. > overruns" will occur at 38.4k or 57.6k.  My solution?  SET SPEED 19200. 
  34892. > It's not the ideal situation, but it'll work until I get a faster computer,
  34893. > and even 19.2k is greater than 14.4k.
  34894. ----------
  34895.     Serial port overruns yield a Control-G surrogate for one or more
  34896. characters lost at the serial port. Consequences of this are control
  34897. sequences, such as above, are fractured and show as text on the screen.
  34898. Overruns occur if the port interrupts can't be serviced fast enough
  34899. (the system is blocking interrupts for too long). Simple serial port buffer
  34900. overlaps occur if the other side does not stop sending before the Kermit
  34901. internal circular receive buffer fills; no Control-G's here.
  34902.     Both are out of the hands of Kermit and indeed a faster machine
  34903. or tighter flow control through the entire system are called for.
  34904.     Joe D.
  34905.  
  34906. From news@columbia.edu Sun Oct 16 21:51:53 1994
  34907. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16614
  34908.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 16 Oct 1994 17:52:10 -0400
  34909. Received: by apakabar.cc.columbia.edu id AA12656
  34910.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 16 Oct 1994 17:52:08 -0400
  34911. Path: news.columbia.edu!sol.ctr.columbia.edu!usc!howland.reston.ans.net!europa.eng.gtefsd.com!uhog.mit.edu!news.kei.com!ddsw1!redstone.interpath.net!mercury.interpath.net!not-for-mail
  34912. From: puff@mercury.interpath.net (Pat Fogarty)
  34913. Newsgroups: comp.protocols.kermit.misc
  34914. Subject: Re: [HELP] Funny Characters on the Screen
  34915. Date: 16 Oct 1994 17:51:53 -0400
  34916. Organization: Interpath -- Public Access UNIX for North Carolina
  34917. Lines: 42
  34918. Message-Id: <37s79p$sfn@mercury.interpath.net>
  34919. References: <37qdcuINNfjb@newsman.csu.murdoch.edu.au> <37rnie$nuj@apakabar.cc.columbia.edu>
  34920. Nntp-Posting-Host: mercury.interpath.net
  34921. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  34922.  
  34923. In article <37rnie$nuj@apakabar.cc.columbia.edu>,
  34924. Yeechang Lee <ycl6@konichiwa.cc.columbia.edu> wrote:
  34925. >In article <37qdcuINNfjb@newsman.csu.murdoch.edu.au>, Binh Anson
  34926. ><anson@csuvax1.csu.murdoch.edu.au> wrote: 
  34927. >|I'm using Kermit 3.13, with a 14.4 K baud modem. When I'm in Pine or reading
  34928. >|news, occasionally there are funny strings appearing on the screen, such as
  34929. >|[12,42H , or sometimes the residue of a line display still appearing at the
  34930. >|top or the bottom of the screen when scrolling.
  34931. >
  34932. >I have a similar setup (Intel 144/144e 14.4k external modem with 3.14 beta 5
  34933. >on my XT) and a similar problem, but only if I have SET SPEED 38400 or SET
  34934. >SPEED 57600.  And yes, I'm using rts/cts.  My XT, apparently, just isn't
  34935. >fast enough to keep up at the higher speeds, even with hardware flow
  34936. >control.  I see it as well on *blasphemy* Zmodem downloads, where "Data
  34937. >overruns" will occur at 38.4k or 57.6k.  My solution?  SET SPEED 19200. 
  34938. >It's not the ideal situation, but it'll work until I get a faster computer,
  34939. >and even 19.2k is greater than 14.4k.
  34940.  
  34941.  
  34942.  
  34943. I am running a 286/12 MHz laptop and ran into the same problem when I 
  34944. bought a 14.4 Hayes. Did all the tests and tried all the recommended 
  34945. fixes. SET SPEED 19200 was all it took. Older machines WILL NOT work at 
  34946. higher port speeds no matter what UART they have.
  34947.  
  34948. I've had 3.13 report transfers as high as 2200 cps on uncompressed text, 
  34949. even at the slow port speed, though 1500-1600 is more normal with my 
  34950. local provider.
  34951.  
  34952.  
  34953. Your mileage may vary........
  34954.  
  34955.  
  34956.  
  34957. Pat
  34958.  
  34959.  
  34960.  
  34961.  
  34962.  
  34963. -- 
  34964. Pat Fogarty    puff@mercury.interpath.net    pff@shell.portal.com
  34965.  
  34966. From news@columbia.edu Sun Oct 16 22:46:17 1994
  34967. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20503
  34968.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 16 Oct 1994 19:29:35 -0400
  34969. Received: by apakabar.cc.columbia.edu id AA19705
  34970.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 16 Oct 1994 19:29:34 -0400
  34971. Newsgroups: comp.protocols.kermit.misc
  34972. Path: news.columbia.edu!sol.ctr.columbia.edu!usc!howland.reston.ans.net!europa.eng.gtefsd.com!uhog.mit.edu!news.kei.com!ddsw1!a2i!dold.a2i!dold
  34973. From: Clarence Dold <dold@rahul.net>
  34974. Subject: Re: reading the screen in kermit
  34975. Message-Id: <CxsF96.2IG@rahul.net>
  34976. Sender: news@rahul.net (Usenet News)
  34977. Nntp-Posting-Host: jive.rahul.net
  34978. Nntp-Posting-User: dold
  34979. Organization: a2i network
  34980. X-Newsreader: TIN [version 1.2 PL2]
  34981. References: <SASDRQ.94Oct7101300@gamecock.unx.sas.com> <373nbp$g8e@chopin.udel.edu> <1994Oct7.105934.29107@cc.usu.edu> <CxBL0B.92E@ritz.mordor.com>
  34982. Date: Sun, 16 Oct 1994 22:46:17 GMT
  34983. Lines: 21
  34984. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  34985.  
  34986. Ken Udut (kudut@ritz.mordor.com) wrote:
  34987.  
  34988. : There is another option.  While displaying the cursor position isn't 
  34989. : practical, I know some people have asked about cut-and-paste functions.
  34990.  
  34991. I have used grabtext with good success with MSKermit, with two caveats.
  34992. It does not work with NCSA Telnet.
  34993. It collides with WordPerfect for DOS, but not other graphics programs.
  34994. It should "disable itself" when a program tries to use the mouse, but WP
  34995. doesn't play well with it.
  34996.  
  34997.  
  34998. Available from OAK.Oakland.EDU 141.210.10.117
  34999.  
  35000. Directory SimTel/msdos/screen/
  35001. grbtxt12.zip  B    9220  920826  Grab screen text, cut & paste w/mouse to kybd.
  35002.  
  35003. -- 
  35004. ---
  35005. Clarence A Dold - dold@rahul.net
  35006.                 - Pope Valley & Napa CA.
  35007.  
  35008. From news@columbia.edu Sun Oct 16 11:20:16 1994
  35009. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22856
  35010.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 16 Oct 1994 20:33:53 -0400
  35011. Received: by apakabar.cc.columbia.edu id AA24070
  35012.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 16 Oct 1994 20:33:52 -0400
  35013. Path: news.columbia.edu!sol.ctr.columbia.edu!usc!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!ivie
  35014. From: ivie@cc.usu.edu
  35015. Newsgroups: comp.protocols.kermit.misc
  35016. Subject: Re: [HELP] Funny Characters on the Screen
  35017. Message-Id: <1994Oct16.172016.30096@cc.usu.edu>
  35018. Date: 16 Oct 94 17:20:16 MDT
  35019. References: <37qdcuINNfjb@newsman.csu.murdoch.edu.au> <37rnie$nuj@apakabar.cc.columbia.edu>
  35020. Organization: Utah State University
  35021. Lines: 15
  35022. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  35023.  
  35024. In article <37rnie$nuj@apakabar.cc.columbia.edu>, ycl6@konichiwa.cc.columbia.edu (Yeechang Lee) writes:
  35025. > I have a similar setup (Intel 144/144e 14.4k external modem with 3.14 beta 5
  35026. > on my XT) and a similar problem, but only if I have SET SPEED 38400 or SET
  35027. > SPEED 57600.  And yes, I'm using rts/cts.  My XT, apparently, just isn't
  35028. > fast enough to keep up at the higher speeds, even with hardware flow
  35029. > control.
  35030.  
  35031. One thing to remember is that hardware flow control is assymetric. While the
  35032. modem can hold off the computer, the computer has no way to signal the modem
  35033. that it cannot accept data. As near as I can figure, the RS-232 guys thought
  35034. that computers would _always_ be fast enough to take the data...
  35035. -- 
  35036. ----------------+------------------------------------------------------
  35037. Roger Ivie      | Don't think of it as a 'new' computer, think of it as
  35038. ivie@cc.usu.edu |     'obsolete-ready'
  35039.  
  35040. From news@columbia.edu Sun Oct 16 11:21:40 1994
  35041. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22861
  35042.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 16 Oct 1994 20:33:55 -0400
  35043. Received: by apakabar.cc.columbia.edu id AA24074
  35044.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 16 Oct 1994 20:33:53 -0400
  35045. Path: news.columbia.edu!sol.ctr.columbia.edu!usc!math.ohio-state.edu!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  35046. From: jrd@cc.usu.edu (Joe Doupnik)
  35047. Newsgroups: comp.protocols.kermit.misc
  35048. Subject: Re: Why no mouse suuport??
  35049. Message-Id: <1994Oct16.172140.30097@cc.usu.edu>
  35050. Date: 16 Oct 94 17:21:40 MDT
  35051. References: <37s14e$pr5@news.iastate.edu>
  35052. Organization: Utah State University
  35053. Lines: 17
  35054. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  35055.  
  35056. In article <37s14e$pr5@news.iastate.edu>, tflynn@iastate.edu (Timothy John Flynn) writes:
  35057. > Why doesn't kermit have mouse support similar to x-win?
  35058. > this would be very benificial!
  35059. > I know it is supposed to have copy and paste support, but I have yet to
  35060. > see it work, so I have to use a tsr called markit.com to copy and paste!
  35061. ---------
  35062.     Text mode screens aren't like graphics mode screens. Kermit is
  35063. not X windows. X windows has a whole protocol section on sending mice
  35064. reports back and forth between host and client. Mice and VTxxx style text mode 
  35065. screens mix poorly in practice and the results hardly justify the program
  35066. complexity, memory, and user docs explanations. If you have a mouse program 
  35067. which does all this for you then that's great.
  35068.     Joe D.
  35069.  
  35070. From news@columbia.edu Sun Oct 16 15:26:14 1994
  35071. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23590
  35072.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 16 Oct 1994 20:54:14 -0400
  35073. Received: by apakabar.cc.columbia.edu id AA25449
  35074.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 16 Oct 1994 20:54:11 -0400
  35075. Path: news.columbia.edu!sol.ctr.columbia.edu!usc!howland.reston.ans.net!gatech!newsxfer.itd.umich.edu!gumby!yale!yale!wcsub.ctstateu.edu!belanger002
  35076. From: belanger002@wcsub.ctstateu.edu
  35077. Newsgroups: comp.protocols.kermit.misc
  35078. Subject: MSK 3.14 beta-5 locks up PC
  35079. Date: 16 Oct 94 20:26:14 EST
  35080. Organization: Yale University, Department of Computer Science, New Haven, CT
  35081. Lines: 20
  35082. Message-Id: <1994Oct16.202614.1@wcsub.ctstateu.edu>
  35083. Nntp-Posting-Host: wcsub.ctstateu.edu
  35084. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  35085.  
  35086. I seem to be having a problem with MSK 3.14 beta 5 locking up my pc
  35087. to the point where I have to power it down (Ctrl-Alt-Del ignored).
  35088. This occurs when my dialup host sends an ANSI home cursor/clear screen.
  35089. PC: Packard-Bell 386-sx
  35090. Modem: Practical Peripherals PM144MT II.
  35091. Dos: Novell Dos 7.0
  35092.  
  35093. By setting Debug Session, I can caputure the sequences without the
  35094. lockup.  The offending sequences seem to be:
  35095. ^[[H^[[2J
  35096.  
  35097. This happens both on dialin to a unix machine, and a Dec Terminal server.
  35098. MSK 3.13 does not have this problem.
  35099. This also happened in 3.14 beta-3.
  35100.  
  35101. Am I really doing something strange (other than using Novell 7.0)?
  35102.  
  35103. Gerry Belanger
  35104. Work email: gerryb@microvation.com.
  35105.  
  35106.  
  35107. From news@columbia.edu Mon Oct 17 00:49:32 1994
  35108. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24371
  35109.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 16 Oct 1994 21:09:38 -0400
  35110. Received: by apakabar.cc.columbia.edu id AA26606
  35111.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 16 Oct 1994 21:09:36 -0400
  35112. Path: news.columbia.edu!sol.ctr.columbia.edu!usc!howland.reston.ans.net!agate!braver
  35113. From: braver@magnolia.CS.Berkeley.EDU (Michael Braverman)
  35114. Newsgroups: comp.protocols.kermit.misc,comp.dcom.modems
  35115. Subject: Re: Kermit and AT&T Dataport Internal Modem
  35116. Date: 17 Oct 1994 00:49:32 GMT
  35117. Organization: University of California, Berkeley
  35118. Lines: 91
  35119. Message-Id: <37shms$d0k@agate.berkeley.edu>
  35120. References: <37hm8c$s79@agate.berkeley.edu> <37hqf9$o7g@apakabar.cc.columbia.edu>
  35121. Nntp-Posting-Host: magnolia.cs.berkeley.edu
  35122. Xref: news.columbia.edu comp.protocols.kermit.misc:759 comp.dcom.modems:68285
  35123. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  35124.  
  35125. In article <37hqf9$o7g@apakabar.cc.columbia.edu>,
  35126. Frank da Cruz <fdc@fdc.cc.columbia.edu> wrote:
  35127. >In article <37hm8c$s79@agate.berkeley.edu> braver@magnolia.CS.Berkeley.EDU  
  35128. >(Michael Braverman) writes:
  35129. >> I have experienced a problem using Kermit with a brand new Internal
  35130. >> AT&T Dataport 14.4 data/fax modem.  I am surprised by this since the
  35131. >> Dataport is "supported" by Kermit, in as much as there is a Dataport
  35132. >> specific dialing script...
  35133. >>
  35134. >  Stuff from Frank deleted...
  35135.  
  35136. I'm following up to this newsgroup since this may be of general interest. If
  35137. this problem is isolated to my machine/modem I apologize for wasting your
  35138. time.
  35139.  
  35140. I tried the replacement DATAPORT.SCR supplied in Frank's response to my
  35141. initial query, but without luck.  I have identified two problems with
  35142. the script (which, by the way, are essentially the same two types of
  35143. problems that I had with the original DATAPORT script).
  35144.  
  35145. Problem 1:
  35146.  
  35147. After a bit of experimentation I have isolated the first problem to the
  35148. following sequence of commands (the line numbers are just added for
  35149. reference, and I have stripped out some of the comments in the script):
  35150.  
  35151.      1    hangup        ; Begin by dropping DTR
  35152.      2    pause 1        ; for one second
  35153.      3    set speed 57600    ; If computer can be set to 57600 bps, use it.
  35154.      4    if fail set speed 38400    ; If not, use 38400.
  35155.      5      echo Configuring AT&T DataPort on \v(line).
  35156.      6    :INIT
  35157.      7     output ATQ0V1\13 ; Enable word result codes
  35158.      8     chkok {Can't get modem's attention}
  35159.  
  35160. The script always gives the error message "Can't get modem's attention".
  35161. I put "show comm" commands before the hangup in line 1 and after the pause
  35162. in line 2 and found out that before the hangup, DSR is ON and CTS is ON,
  35163. but after the pause, DSR and CTS are both off.  If I add a  "wait 5 DSR"
  35164. before the "output" in line 7, then the script continues on without
  35165. difficulty past the error check in line 8.  Question:   What exactly is 
  35166. Kermit doing to "hangup" the modem that the DSR is being held low this long?
  35167. It is surprising that it is going off at all since the modem, by default,
  35168. is set as AT&SO, which supposed forces DSR to always be ON (moreover, I
  35169. used the modems AT&V0 command to verify that it was in this FORCED ON
  35170. setting).
  35171.  
  35172. Problem 2:
  35173.  
  35174. Later in the script we have the following lines:
  35175.  
  35176.     1    output AAAT E1 X6 &C1 &D2 &Q0 S84=0\13
  35177.     2    chkok {Can't initialize modem}
  35178.     3    output AT \92Q3\13    ; RTS/CTS hardware flow control
  35179.     4    chkok {Can't enable RTS/CTS}    ; On modem
  35180.     5    wait 5 cts
  35181.     6    if fail {Modem is not asserting CTS!}
  35182.     7     set flow rts/cts    ; And in Kermit too, but only now
  35183.     8    output AT %B14400 S41=1 S78=0\13 ; Modulation = ...
  35184.     9    chkok {Can't enable modulation fallback}
  35185.  
  35186. Everything is fine until line 9, which always gives the error message
  35187. "Can't enable modulation fallback".  The problem seems to stem from
  35188. command in line 7 to enable flow control.  If I put a "show comm" after
  35189. line 7, kermit claims that both DSR and CTS are ON, so that's not the
  35190. problem.  If I put a "pause 5" after line 7 or if I comment out line
  35191. 7 altogether, then the rest of the script continues on without any
  35192. difficulty.  Thus, there seems to be some sort of timing problem with the
  35193. sending of an AT command to the modem directly after enabling Kermit's 
  35194. hardware flow control.
  35195.  
  35196. General Comments:
  35197.  
  35198. I would like to thank everyone who earlier sent suggestions about my
  35199. modem/kermit woes.  A popular suggestion was to add a line like:
  35200.     set output pacing 200
  35201. at the beginning of the script.  Unfortunately, this was of no help
  35202. (I even set the delay as high as 400) in either the original script
  35203. or the newer one.
  35204.  
  35205. At this point, I have the script working by adding the waits and 
  35206. pauses mentioned above, but I'd still like to hear from anyone with
  35207. an Internal Dataport who has or doesn't have these types of difficulties
  35208. so I would be able to confirm whether this is a hardware problem with
  35209. the modem problem or just some strange problem with kermit and/or my
  35210. computer.
  35211.  
  35212. Thanks again for the help, 
  35213.  
  35214. Michael Braverman
  35215. braver@cs.berkeley.edu
  35216.  
  35217. From news@columbia.edu Mon Oct 17 01:03:04 1994
  35218. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25399
  35219.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 16 Oct 1994 21:30:32 -0400
  35220. Received: by apakabar.cc.columbia.edu id AA28162
  35221.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 16 Oct 1994 21:30:30 -0400
  35222. Newsgroups: comp.unix.bsd,comp.os.386bsd.misc,comp.protocols.kermit.misc
  35223. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!europa.eng.gtefsd.com!uhog.mit.edu!news.mtholyoke.edu!world!zilker.net!icus!wiz.com!marc
  35224. From: marc@wiz.com (Marc Wiz)
  35225. Subject: Re: BSDI 1.1 problems using kermit and taylor uucp dial out???
  35226. Distribution: na
  35227. Message-Id: <CxsLL5.6zn@wiz.com>
  35228. Organization: Wizywyg Software
  35229. Date: Mon, 17 Oct 1994 01:03:04 GMT
  35230. References: <CxIp0q.GqH@esseye.si.com> <CxnDH8.82p@agora.rdrop.com>
  35231. Lines: 24
  35232. Xref: news.columbia.edu comp.unix.bsd:17184 comp.os.386bsd.misc:4057 comp.protocols.kermit.misc:760
  35233. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  35234.  
  35235. In article <CxnDH8.82p@agora.rdrop.com>,
  35236. Ted Mittelstaedt <tedm@agora.rdrop.com> wrote:
  35237. >In article <CxIp0q.GqH@esseye.si.com>,
  35238. >David Scholten <scholten@esseye.si.com> wrote:
  35239. >>This may be in some faq someplace so I appologize about this.  But I
  35240. >>am having some weird problems using the latest kermit and taylor to dial
  35241. >>out from my BSDI 1.1 based box.  The problems are similar in nature:
  35242. >>
  35243. >
  35244. >If you figure out how to make UUCP and cu/kermit/etc share the same port
  35245. >please tell me!  :-)
  35246.  
  35247. Patches are available for Taylor 1.05 to use BSDI's bidirectional
  35248. port locking mechanism.  
  35249.  
  35250. I have Taylor 1.05 running on my BSDI box with no problem.
  35251.  
  35252. Now if only I can dig up the patches.
  35253.  
  35254. Marc
  35255. -- 
  35256. Marc
  35257. marc@wiz.com
  35258. Yes, that really is my last name.
  35259.  
  35260. From news@columbia.edu Sun Oct 16 13:07:29 1994
  35261. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27427
  35262.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 16 Oct 1994 22:15:07 -0400
  35263. Received: by apakabar.cc.columbia.edu id AA01492
  35264.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 16 Oct 1994 22:15:02 -0400
  35265. Path: news.columbia.edu!sol.ctr.columbia.edu!usc!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  35266. From: jrd@cc.usu.edu (Joe Doupnik)
  35267. Newsgroups: comp.protocols.kermit.misc
  35268. Subject: MSK 3.14 beta, expanded memory notes
  35269. Message-Id: <1994Oct16.190729.30110@cc.usu.edu>
  35270. Date: 16 Oct 94 19:07:29 MDT
  35271. Organization: Utah State University
  35272. Lines: 35
  35273. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  35274.  
  35275.     A note to beta testers of MS-DOS Kermit v3.14.
  35276.     I've received a number of comments about hangups when entering
  35277. terminal emulation mode or rolling back a screen. So far as I can
  35278. ascertain almost all of them are associated with using expanded memory
  35279. to hold rollback screens. That's expanded (paged stuff) not extended.
  35280.     By default MSK 3.14 uses expanded memory if it is available;
  35281. 3.13 used the other default.
  35282.     It is vital that the expanded memory page frame, all 64KB of it,
  35283. be located where it will not interfere with other memory usage. The
  35284. way to do that is tell your memory manager where to place it, usually
  35285. with a frame=<segment> command line option. Don't put it in video memory,
  35286. seg A000-BFFF. Don't assume the manager will pick a safe spot. Windows
  35287. users must do the same, no matter what you said at DOS level, by lines
  35288. such as these in system.ini [386Enh]:
  35289.  
  35290. EMMPageFrame=EC00            <<< expanded mem page frame
  35291. EMMExclude=C000-C007                    <<< protecting stuff from managers
  35292. EMMExclude=CE00-CFFF
  35293. EMMExclude=A000-BFFF
  35294.  
  35295.     Notice the specific memory exclusions to protect things, such as
  35296. lan adapter boards with shared memory.
  35297.     Microsoft's MSD or Quarterdeck's MFT can show memory layout.
  35298.     To see if expanded memory is your problem give the Kermit command
  35299. SET TERM EXPANDED OFF before starting a Connect mode session. The rollback
  35300. buffers will then be located in conventional 640K memory (at 4KB per screen).
  35301.     We have at least one case on record where a memory manager offered
  35302. expanded memory services but did not offer a page frame for it. That's rather
  35303. silly. Beta-6 will check for this case and decline to use expanded memory
  35304. if it occurs.
  35305.     Memory management is the user's responsibility, and some practice
  35306. is needed to get the most from it. I don't have the time to diagnose mem
  35307. managers by remote control, so I wish you luck with the chore.
  35308.     Thanks,
  35309.         Joe D.
  35310.  
  35311. From news@columbia.edu Sun Oct 16 18:05:46 1994
  35312. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29371
  35313.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 16 Oct 1994 23:08:07 -0400
  35314. Received: by apakabar.cc.columbia.edu id AA05100
  35315.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 16 Oct 1994 23:08:06 -0400
  35316. Path: news.columbia.edu!sol.ctr.columbia.edu!usc!howland.reston.ans.net!gatech!newsxfer.itd.umich.edu!gumby!yale!yale!wcsub.ctstateu.edu!belanger002
  35317. From: belanger002@wcsub.ctstateu.edu
  35318. Newsgroups: comp.protocols.kermit.misc
  35319. Subject: Re: MSK 3.14 beta-5 locks up PC
  35320. Date: 16 Oct 94 23:05:46 EST
  35321. Organization: Yale University, Department of Computer Science, New Haven, CT
  35322. Lines: 11
  35323. Message-Id: <1994Oct16.230546.1@wcsub.ctstateu.edu>
  35324. References: <1994Oct16.202614.1@wcsub.ctstateu.edu>
  35325. Nntp-Posting-Host: wcsub.ctstateu.edu
  35326. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  35327.  
  35328. In article <1994Oct16.202614.1@wcsub.ctstateu.edu>, belanger002@wcsub.ctstateu.edu writes:
  35329. > I seem to be having a problem with MSK 3.14 beta 5 locking up my pc
  35330. > to the point where I have to power it down (Ctrl-Alt-Del ignored).
  35331. > This occurs when my dialup host sends an ANSI home cursor/clear screen.
  35332.  
  35333. After reading jrd's post on expanded memory, I tried 
  35334. SET TERM EXPANDED OFF
  35335. and I no longer lock up. 
  35336.  
  35337. Gerry Belanger
  35338.  
  35339.  
  35340. From news@columbia.edu Sun Oct 16 15:38:30 1994
  35341. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02554
  35342.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 17 Oct 1994 00:13:53 -0400
  35343. Received: by apakabar.cc.columbia.edu id AA09688
  35344.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 17 Oct 1994 00:13:51 -0400
  35345. Path: news.columbia.edu!sol.ctr.columbia.edu!usc!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  35346. From: jrd@cc.usu.edu (Joe Doupnik)
  35347. Newsgroups: comp.protocols.kermit.misc
  35348. Subject: Re: Kermit and AT&T Dataport Internal Modem
  35349. Message-Id: <1994Oct16.213830.30116@cc.usu.edu>
  35350. Date: 16 Oct 94 21:38:30 MDT
  35351. References: <37hm8c$s79@agate.berkeley.edu> <37hqf9$o7g@apakabar.cc.columbia.edu> <37shms$d0k@agate.berkeley.edu>
  35352. Organization: Utah State University
  35353. Lines: 59
  35354. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  35355.  
  35356. In article <37shms$d0k@agate.berkeley.edu>, braver@magnolia.CS.Berkeley.EDU (Michael Braverman) writes:
  35357. > In article <37hqf9$o7g@apakabar.cc.columbia.edu>,
  35358. > Frank da Cruz <fdc@fdc.cc.columbia.edu> wrote:
  35359. >>In article <37hm8c$s79@agate.berkeley.edu> braver@magnolia.CS.Berkeley.EDU  
  35360. >>(Michael Braverman) writes:
  35361. >>> I have experienced a problem using Kermit with a brand new Internal
  35362. >>> AT&T Dataport 14.4 data/fax modem.  I am surprised by this since the
  35363. >>> Dataport is "supported" by Kermit, in as much as there is a Dataport
  35364. >>> specific dialing script...
  35365. >>>
  35366. >>  Stuff from Frank deleted...
  35367. > I'm following up to this newsgroup since this may be of general interest. If
  35368. > this problem is isolated to my machine/modem I apologize for wasting your
  35369. > time.
  35370. > I tried the replacement DATAPORT.SCR supplied in Frank's response to my
  35371. > initial query, but without luck.  I have identified two problems with
  35372. > the script (which, by the way, are essentially the same two types of
  35373. > problems that I had with the original DATAPORT script).
  35374. > Problem 1:
  35375. > After a bit of experimentation I have isolated the first problem to the
  35376. > following sequence of commands (the line numbers are just added for
  35377. > reference, and I have stripped out some of the comments in the script):
  35378. >      1    hangup        ; Begin by dropping DTR
  35379. >      2    pause 1        ; for one second
  35380. >      3    set speed 57600    ; If computer can be set to 57600 bps, use it.
  35381. >      4    if fail set speed 38400    ; If not, use 38400.
  35382. >      5      echo Configuring AT&T DataPort on \v(line).
  35383. >      6    :INIT
  35384. >      7     output ATQ0V1\13 ; Enable word result codes
  35385. >      8     chkok {Can't get modem's attention}
  35386. > The script always gives the error message "Can't get modem's attention".
  35387. > I put "show comm" commands before the hangup in line 1 and after the pause
  35388. > in line 2 and found out that before the hangup, DSR is ON and CTS is ON,
  35389. > but after the pause, DSR and CTS are both off.  If I add a  "wait 5 DSR"
  35390. > before the "output" in line 7, then the script continues on without
  35391. > difficulty past the error check in line 8.
  35392.     Your modem is responsible for driving DSR and CTS to the computer.
  35393.  
  35394. >                          Question:   What exactly is 
  35395. > Kermit doing to "hangup" the modem that the DSR is being held low this long?
  35396. > It is surprising that it is going off at all since the modem, by default,
  35397. > is set as AT&SO, which supposed forces DSR to always be ON (moreover, I
  35398. > used the modems AT&V0 command to verify that it was in this FORCED ON
  35399. > setting).
  35400.     Hangup drops DTR. To ensure that the port is accessible it may have 
  35401. to first fire up the port. It then drops DTR and shuts down the port. Query
  35402. commands can reinitialize the port while obtaining information.
  35403.     A guess on all of this is your particular modem may really want
  35404. considerable delays between these tramautic operations. To try to help
  35405. some within Kermit I did more adjustments to the serial port startup code 
  35406. to treat the system as gently as I can (while applying the 2x4 needed by 
  35407. some mules^H^H^H^H^Hmodems); this will appear in beta-6 Monday.
  35408.         Joe D.
  35409.  
  35410. From news@columbia.edu Mon Oct 17 04:16:35 1994
  35411. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02689
  35412.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 17 Oct 1994 00:18:12 -0400
  35413. Received: by apakabar.cc.columbia.edu id AA10257
  35414.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 17 Oct 1994 00:18:11 -0400
  35415. Path: news.columbia.edu!sol.ctr.columbia.edu!usc!math.ohio-state.edu!magnus.acs.ohio-state.edu!usenet.ins.cwru.edu!news.ysu.edu!yfn.ysu.edu!am856
  35416. From: am856@YFN.YSU.EDU (Michael DeCosta III)
  35417. Newsgroups: comp.protocols.kermit.misc
  35418. Subject: Re: FOSSIL 3.3 for the Z100 and MSKERMIT 3.14
  35419. Date: 17 Oct 1994 04:16:35 GMT
  35420. Organization: St. Elizabeth Hospital, Youngstown, OH
  35421. Lines: 57
  35422. Message-Id: <37str3$aut@news.ysu.edu>
  35423. References: <1994Oct16.093006.30067@cc.usu.edu> <1994Oct15.191017.30052@cc.usu.edu> <37pqqv$2ae@news.ysu.edu> <37qd65$a1g@news.ysu
  35424. Reply-To: am856@yfn.ysu.edu (Michael DeCosta III)
  35425. Nntp-Posting-Host: yfn2.ysu.edu
  35426. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  35427.  
  35428.  
  35429. In a previous article, jrd@cc.usu.edu (Joe Doupnik) says:
  35430.  
  35431. >In article <37qd65$a1g@news.ysu.edu>, am856@yfn.ysu.edu (Michael DeCosta III) writes:
  35432. >> 
  35433. >> In a previous article, jrd@cc.usu.edu (Joe Doupnik) says:
  35434. >> 
  35435. >>>In article <37pqqv$2ae@news.ysu.edu>, am856@yfn.ysu.edu (Michael DeCosta III) writes:
  35436. >>>> 
  35437. >>>> I have FOSSIL drivers 3.3 for the Z100 is there a chance I might
  35438. >>>> get MSKermit 3.14 to plug into them for console screen and keyboard,
  35439. >>>> and thus actually get it to work on the Z100 computer?
  35440. >>>--------
  35441. >>>    Nope, not from here. There is enough to do to keep MSK/Z100
  35442. >>>operational that I do not want to add anything like that. You are 
  35443. >>>welcome to construct an experimental local copy if you wish, when the
  35444. >>>sources appear at release time.
  35445. >>>    Joe D.
  35446. >>>
  35447. >> 
  35448. >> Joe,
  35449. >>  You misunderstood me. FOSSIL is a standardized interface. I wasn't asking
  35450. >>  if you were going to put it into Z100MSKermit? I was asking whether
  35451. >>  there was a good chance that the IBM PC MSKERMIT FOSSIL plugs would
  35452. >>  support that version of FOSSIL that was available.
  35453. >>  
  35454. >>  For example versions of Binleyterm will accept this FOSSIL driver on the
  35455. >>  Z100 without having been written specifically for the Z100. The only places
  35456. >>  where I have seen this fail is that some supposed "FOSSIL" supporting
  35457. >>  programs only use FOSSIL for an external connection and will not let
  35458. >>  the master programs console I/O be directed through FOSSIL.
  35459. >>  
  35460. >>  So what I am asking is will IBM PC MSKermit 3.14 let the console screen
  35461. >>  and keyboard I/O be vectored to FOSSIL.
  35462. >--------
  35463. >    Ok, now I understand your request. The answer is no this time too,
  35464. >but not a "huff and puff" no. The reason is it would very heavily chop up
  35465. >the program and lose large amounts of functionality. Fossil does not come
  35466. >even close to providing the interfaces needed and used by Kermit.
  35467. >        Z100 Kermit does work. Thus I fail to see good reasons for drastic
  35468. >program changes just to run on a Z100. If I've still missed the point then
  35469. >please let me know.
  35470. >    Joe D.
  35471. >
  35472.  
  35473. I have to agree with you as far as the Z100 goes. However, you don't seem
  35474. cognizent of the fact that the FOSSIL BIOS was created to smooth out
  35475. the differences between non-PC compatible MSDOS machines in the FIDONET
  35476. communication arena. You wouldn't benefit just the Z100 with such
  35477. a project. However, I don't urge you to make this your top priority
  35478. as I feel your machine specific Kermits would be far better as you
  35479. stated with the Z100.
  35480.  
  35481. I really just wanted to know how complete your FOSSIL support was and you
  35482. have answered the question. 
  35483.  
  35484. Thank you.
  35485.  
  35486. From news@columbia.edu Mon Oct 17 09:15:11 1994
  35487. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14605
  35488.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 17 Oct 1994 05:18:01 -0400
  35489. Received: by apakabar.cc.columbia.edu id AA21399
  35490.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 17 Oct 1994 05:17:59 -0400
  35491. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!math.ohio-state.edu!usenet
  35492. From: davis@pacific.mps.ohio-state.edu
  35493. Newsgroups: comp.protocols.kermit.misc
  35494. Subject: Mouse with Mac/MS-Kermit?
  35495. Date: 17 Oct 1994 09:15:11 GMT
  35496. Organization: None
  35497. Lines: 30
  35498. Distribution: world
  35499. Message-Id: <37tfav$h8n@mathserv.mps.ohio-state.edu>
  35500. Reply-To: davis@amy.tch.harvard.edu
  35501. Nntp-Posting-Host: pacific.mps.ohio-state.edu
  35502. X-Newsreader: S-Lang: slrn (0.1.4.0)
  35503. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  35504.  
  35505. Hi,
  35506.  
  35507.   What are the chances of seeing _simple_ mouse support added to MS-Kermit?
  35508. By simple, I mean that if a button is pressed, Kermit would simply respond
  35509. with the standard XTerm button press info (ESC [ M b x y) where `b'
  35510. represents the button and `x', `y' represent the position.  I do not expect
  35511. drag informations, etc...  This seems to be something pretty easy to
  35512. implement for MAC-Kermit since you already have the option of converting
  35513. mouse clicks into cursor movement escape sequences.  If this is not possible
  35514. with MS-Kermit, is there a TSR that will shove the appropriate escape
  35515. sequences into the input buffer so MS-Kermit will think the user typed it?
  35516.  
  35517.   The reason I am asking about this is that I am developing a Text mode
  35518. windowing system.  Currently it works with the mouse on my Linux console
  35519. using the `selection' program which is able to respnd with button press
  35520. information.  I would sure like to see MS-Kermit support this as well. In
  35521. addition, the latest version of my JED editor supports the mouse on
  35522. character cell terminals in this manner and I would like to recommend kermit
  35523. for this.
  35524.  
  35525. Thanks,
  35526. --
  35527.      _____________
  35528. #___/John E. Davis\_________________________________________________________
  35529. #
  35530. # internet: davis@amy.tch.harvard.edu
  35531. #   bitnet: davis@ohstpy
  35532. #   office: 617-735-6746
  35533. #
  35534.  
  35535.  
  35536. From news@columbia.edu Sat Oct 15 14:32:00 1994
  35537. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17313
  35538.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 17 Oct 1994 06:33:43 -0400
  35539. Received: by apakabar.cc.columbia.edu id AA24135
  35540.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 17 Oct 1994 06:33:41 -0400
  35541. Newsgroups: comp.protocols.kermit.misc
  35542. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!EU.net!sunic!news.uni-c.dk!imada!ravn
  35543. From: ravn@imada.ou.dk (Thorbjoern Ravn Andersen)
  35544. Subject: MS-KERMIT (VT320) termcap entry for unix -- what is it?
  35545. Message-Id: <1994Oct15.143200.6064@imada.ou.dk>
  35546. Sender: news@imada.ou.dk (USENET News System)
  35547. Nntp-Posting-Host: verdi
  35548. Organization: Dept. of Math. & Computer Science, Odense University, Denmark
  35549. Distribution: comp
  35550. Date: Sat, 15 Oct 1994 14:32:00 GMT
  35551. Lines: 12
  35552. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  35553.  
  35554. I am using MS-Kermit 3.13 and is very pleased with it.  I would very
  35555. much like to have the best usage of the VT320 capabilites, but have so
  35556. far failed to find any termcaps with either the zip file I retreived
  35557. last year, or at kermit.columbia.edu or in our own /etc/termcap
  35558.  
  35559. Does anybody have a pointer to a good termcap entry for kermit?
  35560.  
  35561. Thanks in advance.
  35562. -- 
  35563.   Thorbjxrn Ravn Andersen        "...and...Tubular Bells!"
  35564.   ravn@imada.ou.dk         
  35565.   <http://www.imada.ou.dk/~ravn>
  35566.  
  35567. From news@columbia.edu Mon Oct 17 12:50:31 1994
  35568. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20406
  35569.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 17 Oct 1994 09:16:36 -0400
  35570. Received: by apakabar.cc.columbia.edu id AA02520
  35571.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 17 Oct 1994 09:16:33 -0400
  35572. Newsgroups: comp.protocols.kermit.misc
  35573. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!uhog.mit.edu!europa.eng.gtefsd.com!howland.reston.ans.net!pipex!uunet!spcuna!ritz!kudut
  35574. From: kudut@ritz.mordor.com (Ken Udut)
  35575. Subject: Re: [HELP] Funny Characters on the Screen
  35576. References: <37qdcuINNfjb@newsman.csu.murdoch.edu.au> <37rnie$nuj@apakabar.cc.columbia.edu> <37s79p$sfn@mercury.interpath.net>
  35577. Organization: Mordor International BBS - Jersey City, NJ
  35578. Date: Mon, 17 Oct 1994 12:50:31 GMT
  35579. Message-Id: <CxtIC7.EEH@ritz.mordor.com>
  35580. Lines: 51
  35581. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  35582.  
  35583. In article <37s79p$sfn@mercury.interpath.net> puff@mercury.interpath.net (Pat Fogarty) writes:
  35584. >In article <37rnie$nuj@apakabar.cc.columbia.edu>,
  35585. >Yeechang Lee <ycl6@konichiwa.cc.columbia.edu> wrote:
  35586. >>In article <37qdcuINNfjb@newsman.csu.murdoch.edu.au>, Binh Anson
  35587. >><anson@csuvax1.csu.murdoch.edu.au> wrote: 
  35588. >>|I'm using Kermit 3.13, with a 14.4 K baud modem. When I'm in Pine or reading
  35589. >>|news, occasionally there are funny strings appearing on the screen, such as
  35590. >>|[12,42H , or sometimes the residue of a line display still appearing at the
  35591. >>|top or the bottom of the screen when scrolling.
  35592. >>
  35593. >>I have a similar setup (Intel 144/144e 14.4k external modem with 3.14 beta 5
  35594. >>on my XT) and a similar problem, but only if I have SET SPEED 38400 or SET
  35595. >>SPEED 57600.  And yes, I'm using rts/cts.  My XT, apparently, just isn't
  35596. >>fast enough to keep up at the higher speeds, even with hardware flow
  35597. >>control.  I see it as well on *blasphemy* Zmodem downloads, where "Data
  35598. >>overruns" will occur at 38.4k or 57.6k.  My solution?  SET SPEED 19200. 
  35599. >>It's not the ideal situation, but it'll work until I get a faster computer,
  35600. >>and even 19.2k is greater than 14.4k.
  35601. >
  35602. >I am running a 286/12 MHz laptop and ran into the same problem when I 
  35603. >bought a 14.4 Hayes. Did all the tests and tried all the recommended 
  35604. >fixes. SET SPEED 19200 was all it took. Older machines WILL NOT work at 
  35605. >higher port speeds no matter what UART they have.
  35606. >
  35607. >I've had 3.13 report transfers as high as 2200 cps on uncompressed text, 
  35608. >even at the slow port speed, though 1500-1600 is more normal with my 
  35609. >local provider.
  35610. >
  35611. >
  35612. >Your mileage may vary........
  35613. >
  35614. >
  35615. >
  35616. >Pat
  35617.  
  35618. I have a 286/16 at home (I'll be upgrading to a Tandy 1000 RLX, which is 
  35619. a 286/10, but FAR more dependable than this generic clone which always 
  35620. doesn't like working right :-> )
  35621.  
  35622. My USR 14.4 works fantastic set at 38400, but tends to lose characters at 
  35623. 57600.  One thing ALWAYS to remember with faster modems (which I've 
  35624. learned after paying attention to settings!) is:
  35625.  
  35626. Use RTS/CTS if your faster modem supports it!!!  XON/XOFF will cause you 
  35627. to lose chunks of text!  And you may not notice it when scanning quickly 
  35628. through news, not paying much attention!
  35629.  
  35630. Ken
  35631. kudut@ritz.mordor.com
  35632.  
  35633. From news@columbia.edu Mon Oct 17 14:09:00 1994
  35634. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24513
  35635.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 17 Oct 1994 10:09:11 -0400
  35636. Received: by apakabar.cc.columbia.edu id AA06350
  35637.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 17 Oct 1994 10:09:08 -0400
  35638. Path: news.columbia.edu!usenet
  35639. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  35640. Newsgroups: comp.protocols.kermit.misc
  35641. Subject: Re: [HELP] Funny Characters on the Screen
  35642. Date: 17 Oct 1994 14:09:00 GMT
  35643. Organization: Columbia University
  35644. Lines: 36
  35645. Message-Id: <37u0ht$65h@apakabar.cc.columbia.edu>
  35646. References: <1994Oct16.172016.30096@cc.usu.edu>
  35647. Nntp-Posting-Host: fdc.cc.columbia.edu
  35648. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  35649.  
  35650. In article <1994Oct16.172016.30096@cc.usu.edu> ivie@cc.usu.edu writes:
  35651. > One thing to remember is that hardware flow control is assymetric. While
  35652. > the modem can hold off the computer, the computer has no way to signal the
  35653. > modem that it cannot accept data. As near as I can figure, the RS-232 
  35654. > guys thought that computers would _always_ be fast enough to take the data.
  35655. >
  35656. Hardware flow control as we know it today is, indeed, not described in
  35657. RS-232-C, which dates from the 1960s.  However, there have been (I think)
  35658. two later revisions: D and E.  I don't have a copy of the newer one(s)
  35659. handy, but I believe that we now have separate definitions for RTS and CTS
  35660. depending on whether we have a full-duplex or half-duplex connection.
  35661.  
  35662. In common usage today, on full-duplex connections, RTS is a signal from the
  35663. computer (DTE) to the modem (DCE) saying "I am ready to receive".  In fact,
  35664. I think that RTS is now called RTR (Ready to Receive) in this context.  This
  35665. is backwards from its original definition "Request to Send".  CTS is a
  35666. signal from the modem to the computer saying "Clear to Send", i.e. "I am
  35667. ready to receive".
  35668.  
  35669. I'm not certain about the exact progression of events, but I imagine that
  35670. it became clear to modem manufacturers as soon as error-correcting modems
  35671. hit the streets that these modems could not be used effectively without
  35672. wire-level flow control signals in BOTH directions, and I think that practice
  35673. preceded the standard.  As a side note, in the "early days" of hardware
  35674. flow control, we had some manufacturers using different wires; thus you
  35675. will occasionally see references to DTR/CD, DTR/CTS, etc.
  35676.  
  35677. But to add confusion, even in places where bidirectional, RTS/CTS, "hardware"
  35678. flow control is indicated, it is not always implemented correctly.  For
  35679. example, certain UNIX terminal device drivers only implement it in one
  35680. direction; similarly for certain models of terminal servers.
  35681.  
  35682. Modern modems, however, *should* implement it bidirectionally, and so does
  35683. MS-DOS Kermit.
  35684.  
  35685. - Frank
  35686.  
  35687. From news@columbia.edu Mon Oct 17 02:18:55 1994
  35688. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05091
  35689.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 17 Oct 1994 12:27:46 -0400
  35690. Received: by apakabar.cc.columbia.edu id AA29835
  35691.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 17 Oct 1994 12:27:41 -0400
  35692. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  35693. From: jrd@cc.usu.edu (Joe Doupnik)
  35694. Newsgroups: comp.protocols.kermit.misc
  35695. Subject: Re: FOSSIL 3.3 for the Z100 and MSKERMIT 3.14
  35696. Message-Id: <1994Oct17.081856.30143@cc.usu.edu>
  35697. Date: 17 Oct 94 08:18:55 MDT
  35698. References: <1994Oct16.093006.30067@cc.usu.edu> <1994Oct15.191017.30052@cc.usu.edu> <37pqqv$2ae@news.ysu.edu> <37qd65$a1g@news.ysu <37str3$aut@news.ysu.edu>
  35699. Organization: Utah State University
  35700. Lines: 67
  35701. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  35702.  
  35703. In article <37str3$aut@news.ysu.edu>, am856@yfn.ysu.edu (Michael DeCosta III) writes:
  35704. > In a previous article, jrd@cc.usu.edu (Joe Doupnik) says:
  35705. >>In article <37qd65$a1g@news.ysu.edu>, am856@yfn.ysu.edu (Michael DeCosta III) writes:
  35706. >>> 
  35707. >>> In a previous article, jrd@cc.usu.edu (Joe Doupnik) says:
  35708. >>> 
  35709. >>>>In article <37pqqv$2ae@news.ysu.edu>, am856@yfn.ysu.edu (Michael DeCosta III) writes:
  35710. >>>>> 
  35711. >>>>> I have FOSSIL drivers 3.3 for the Z100 is there a chance I might
  35712. >>>>> get MSKermit 3.14 to plug into them for console screen and keyboard,
  35713. >>>>> and thus actually get it to work on the Z100 computer?
  35714. >>>>--------
  35715. >>>>    Nope, not from here. There is enough to do to keep MSK/Z100
  35716. >>>>operational that I do not want to add anything like that. You are 
  35717. >>>>welcome to construct an experimental local copy if you wish, when the
  35718. >>>>sources appear at release time.
  35719. >>>>    Joe D.
  35720. >>>>
  35721. >>> 
  35722. >>> Joe,
  35723. >>>  You misunderstood me. FOSSIL is a standardized interface. I wasn't asking
  35724. >>>  if you were going to put it into Z100MSKermit? I was asking whether
  35725. >>>  there was a good chance that the IBM PC MSKERMIT FOSSIL plugs would
  35726. >>>  support that version of FOSSIL that was available.
  35727. >>>  
  35728. >>>  For example versions of Binleyterm will accept this FOSSIL driver on the
  35729. >>>  Z100 without having been written specifically for the Z100. The only places
  35730. >>>  where I have seen this fail is that some supposed "FOSSIL" supporting
  35731. >>>  programs only use FOSSIL for an external connection and will not let
  35732. >>>  the master programs console I/O be directed through FOSSIL.
  35733. >>>  
  35734. >>>  So what I am asking is will IBM PC MSKermit 3.14 let the console screen
  35735. >>>  and keyboard I/O be vectored to FOSSIL.
  35736. >>--------
  35737. >>    Ok, now I understand your request. The answer is no this time too,
  35738. >>but not a "huff and puff" no. The reason is it would very heavily chop up
  35739. >>the program and lose large amounts of functionality. Fossil does not come
  35740. >>even close to providing the interfaces needed and used by Kermit.
  35741. >>        Z100 Kermit does work. Thus I fail to see good reasons for drastic
  35742. >>program changes just to run on a Z100. If I've still missed the point then
  35743. >>please let me know.
  35744. >>    Joe D.
  35745. >>
  35746. > I have to agree with you as far as the Z100 goes. However, you don't seem
  35747. > cognizent of the fact that the FOSSIL BIOS was created to smooth out
  35748. > the differences between non-PC compatible MSDOS machines in the FIDONET
  35749. > communication arena. You wouldn't benefit just the Z100 with such
  35750. > a project. However, I don't urge you to make this your top priority
  35751. > as I feel your machine specific Kermits would be far better as you
  35752. > stated with the Z100.
  35753. > I really just wanted to know how complete your FOSSIL support was and you
  35754. > have answered the question. 
  35755. > Thank you.
  35756. ---------------
  35757.     You are correct, I certainly don't realize what the FIDONET
  35758. situation is with non-PC compatibles etc. Maybe you could put some
  35759. realistic numbers in here. As far as using Fossil as a PC Bios replacement
  35760. that is unrealistic, not to mention that MSK is not restrained to the
  35761. PC Bios. What would be better is for volunteers to write the code to
  35762. run MSK on the host machine directly.
  35763.     Please tell us more.
  35764.     Joe D.
  35765.  
  35766. From news@columbia.edu Mon Oct 17 13:16:12 1994
  35767. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09042
  35768.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 17 Oct 1994 13:16:12 -0400
  35769. Received: by apakabar.cc.columbia.edu id AA04637
  35770.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 17 Oct 1994 13:16:09 -0400
  35771. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!yeshua.marcam.com!zip.eecs.umich.edu!newsxfer.itd.umich.edu!gatech!psuvax1!news.cc.swarthmore.edu!netnews.upenn.edu!RWR-PHYSIOL.MED.UPENN.EDU!RATZLAFF
  35772. From: RATZLAFF@a1.mscf.upenn.edu (Ron Ratzlaff)
  35773. Newsgroups: comp.protocols.kermit.misc
  35774. Subject: Re: Problem: VT100 "print through"
  35775. Date: Mon, 17 Oct 1994 11:32:19
  35776. Organization: Dep't Physiol., University of Pennsylvania
  35777. Lines: 59
  35778. Message-Id: <RATZLAFF.10.000B89E0@A1.MSCF.UPENN.EDU>
  35779. References: <RATZLAFF.9.00104675@A1.MSCF.UPENN.EDU> <37kb7t$6mm@apakabar.cc.columbia.edu>
  35780. Nntp-Posting-Host: rwr-physiol.med.upenn.edu
  35781. X-Newsreader: Trumpet for Windows [Version 1.0 Rev A]
  35782. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  35783.  
  35784. In article <37kb7t$6mm@apakabar.cc.columbia.edu> fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  35785. >From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  35786. >Subject: Re: Problem: VT100 "print through"
  35787. >Date: 13 Oct 1994 22:10:05 GMT
  35788.  
  35789. >In article <RATZLAFF.9.00104675@A1.MSCF.UPENN.EDU> RATZLAFF@A1.MSCF.UPENN.EDU  
  35790. >(Ron Ratzlaff) writes:
  35791. >> I'm using Kermit's TCP/IP capability to connect to a local VAX.  I have 
  35792. >> Kermit set-up to emulate a VT100 terminal for these sessions.  The problem
  35793. >> is when the VAX issues a "print through" command to the VT100 emulator to
  35794. >> make print outs and plots on my local printer attached to my PC: characters 
  35795. >> are missing from the resulting print out.  There appears to be 
  35796. >> something wrong in the handshake somewhere.  It is especially noticeable
  35797. >> when I'm trying to make a plot.
  35798. >> 
  35799. >What kind of printer is it?  Is it a serial or parallel printer?  Is it
  35800. >a graphics printer? 
  35801.  
  35802. >Parallel printers should not lose characters.  It is possible, however,
  35803. >that Kermit itself is losing incoming characters if an effective means
  35804. >of flow control (RTS/CTS or Xon/Xoff) is not enabled.  The latter is
  35805. >much better, but you still have to worry about what happens on the VMS
  35806. >system, which does not support Xon/Xoff.  What is the remote modem
  35807. >connected to?  A VAX port?  A LAT box?  Some other kind of terminal
  35808. >server?
  35809.  
  35810. >Since you say you are making plots, maybe you have some kind of graphics
  35811. >printer driver installed?
  35812.  
  35813. >As you can see, there are many variables here.  But in general the key is
  35814. >to have the most effective possible means of flow control enabled at EVERY
  35815. >POINT along the communication path: the remote mode, the port/device/driver
  35816. >the remote modem is connected to; the local modem, the PC's serial port,
  35817. >the printer port, the printer itself, and even the connection between the
  35818. >two modems (this happens automatically if it is an error-corrected
  35819. >connection).  And VMS itself (SET TERMINAL /HOSTSYNC /TTSYNC).
  35820.  
  35821. >As you can also see, most of these items are outside of Kermit's control.
  35822.  
  35823. >Who said data communication was easy?
  35824.  
  35825. >- Frank
  35826.  
  35827.  
  35828. Frank,
  35829.  
  35830. I am not connected via any kind of serial interface - not modem (not SLIP) 
  35831. and not a direct serial line.  The connection is entirely via the Ethernet 
  35832. here at my institution.  The reason I use Kermit is because I can download 
  35833. files using the Kermit protocol while maintaining my ethernet (TCP/IP) 
  35834. connection.  Its very handy because most mainframes around here only support 
  35835. Kermit for file transfers.
  35836.  
  35837. I agree, the problem may be outside of Kermit's control but I thought maybe I 
  35838. was doing something wrong.  Will try to speak to the VAX gurus about it.  
  35839.  
  35840. Thanks for your suggestions.....
  35841.  
  35842. Ron
  35843.  
  35844. From news@columbia.edu Mon Oct 17 03:44:59 1994
  35845. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20786
  35846.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 17 Oct 1994 15:47:11 -0400
  35847. Received: by apakabar.cc.columbia.edu id AA17832
  35848.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 17 Oct 1994 15:47:10 -0400
  35849. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!uhog.mit.edu!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  35850. From: jrd@cc.usu.edu (Joe Doupnik)
  35851. Newsgroups: comp.protocols.kermit.misc
  35852. Subject: Re: Mouse with Mac/MS-Kermit?
  35853. Message-Id: <1994Oct17.094459.30152@cc.usu.edu>
  35854. Date: 17 Oct 94 09:44:59 MDT
  35855. References: <37tfav$h8n@mathserv.mps.ohio-state.edu>
  35856. Distribution: world
  35857. Organization: Utah State University
  35858. Lines: 29
  35859. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  35860.  
  35861. In article <37tfav$h8n@mathserv.mps.ohio-state.edu>, davis@pacific.mps.ohio-state.edu writes:
  35862. > Hi,
  35863. >   What are the chances of seeing _simple_ mouse support added to MS-Kermit?
  35864. > By simple, I mean that if a button is pressed, Kermit would simply respond
  35865. > with the standard XTerm button press info (ESC [ M b x y) where `b'
  35866.                          ^^^^^^^^^^^^^^-- this not a
  35867. proper Control Sequence by ANSI standards and thus becomes very difficult
  35868. to parse properly in normal environments.
  35869.  
  35870. > represents the button and `x', `y' represent the position.  I do not expect
  35871. > drag informations, etc...  This seems to be something pretty easy to
  35872. > implement for MAC-Kermit since you already have the option of converting
  35873. > mouse clicks into cursor movement escape sequences.  If this is not possible
  35874. > with MS-Kermit, is there a TSR that will shove the appropriate escape
  35875. > sequences into the input buffer so MS-Kermit will think the user typed it?
  35876.  
  35877.     There is much more to this problem. We cannot have a mouse sending
  35878. bytes to the host just because a user bumped it or played with it while
  35879. waiting etc. That would be a disaster. Thus the host must request information
  35880. from the client and the two cooperate according to a set of rules. So far
  35881. there are almost no VTxxx applications built to talk with a DEC "locator"
  35882. (on VT330/340's) and none in text mode that I know of (ReGIS yes, text no).
  35883.     MS-DOS Kermit does support mice in graphics modes (Tektronix, Data
  35884. General) but upon request of the host and obeying the rules for information
  35885. exchange between them.
  35886.     I suggest you look at various Mouse programs (MS used to distribute
  35887. the programs to construct them, easy stuff) which drive the keyboard buffer.
  35888.     Joe D.
  35889.  
  35890. From news@columbia.edu Mon Oct 17 20:35:25 1994
  35891. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24883
  35892.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 17 Oct 1994 16:35:35 -0400
  35893. Received: by apakabar.cc.columbia.edu id AA22488
  35894.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 17 Oct 1994 16:35:31 -0400
  35895. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  35896. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  35897. Newsgroups: comp.protocols.kermit.misc
  35898. Subject: Re: Mouse with Mac/MS-Kermit?
  35899. Date: 17 Oct 1994 20:35:25 GMT
  35900. Organization: Columbia University
  35901. Lines: 76
  35902. Message-Id: <37un6d$lui@apakabar.cc.columbia.edu>
  35903. References: <37tfav$h8n@mathserv.mps.ohio-state.edu> <1994Oct17.094459.30152@cc.usu.edu>
  35904. Nntp-Posting-Host: watsun.cc.columbia.edu
  35905. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  35906.  
  35907. In article <1994Oct17.094459.30152@cc.usu.edu>,
  35908. Joe Doupnik <jrd@cc.usu.edu> wrote:
  35909. >In article <37tfav$h8n@mathserv.mps.ohio-state.edu>, davis@pacific.mps.ohio-state.edu writes:
  35910. >> Hi,
  35911. >> 
  35912. >>   What are the chances of seeing _simple_ mouse support added to MS-Kermit?
  35913. >> By simple, I mean that if a button is pressed, Kermit would simply respond
  35914. >> with the standard XTerm button press info (ESC [ M b x y) where `b'
  35915. >                         ^^^^^^^^^^^^^^-- this not a
  35916. >proper Control Sequence by ANSI standards and thus becomes very difficult
  35917. >to parse properly in normal environments.
  35918. >
  35919. >> represents the button and `x', `y' represent the position.  I do not expect
  35920. >> drag informations, etc...  This seems to be something pretty easy to
  35921. >> implement for MAC-Kermit since you already have the option of converting
  35922. >> mouse clicks into cursor movement escape sequences.  If this is not possible
  35923. >> with MS-Kermit, is there a TSR that will shove the appropriate escape
  35924. >> sequences into the input buffer so MS-Kermit will think the user typed it?
  35925. >
  35926. >    There is much more to this problem. We cannot have a mouse sending
  35927. >bytes to the host just because a user bumped it or played with it while
  35928. >waiting etc. That would be a disaster. Thus the host must request information
  35929. >from the client and the two cooperate according to a set of rules. So far
  35930. >there are almost no VTxxx applications built to talk with a DEC "locator"
  35931. >(on VT330/340's) and none in text mode that I know of (ReGIS yes, text no).
  35932. >    MS-DOS Kermit does support mice in graphics modes (Tektronix, Data
  35933. >General) but upon request of the host and obeying the rules for information
  35934. >exchange between them.
  35935. >    I suggest you look at various Mouse programs (MS used to distribute
  35936. >the programs to construct them, easy stuff) which drive the keyboard buffer.
  35937. >    Joe D.
  35938.  
  35939. OS/2 C-Kermit supports mouse actions while in terminal mode.  The problem 
  35940. with accidental mouse events being sent are handled in two ways:
  35941. (1) SET TERMINAL MOUSE {ON,OFF} 
  35942. (2) Only supporting double click mouse actions
  35943.  
  35944. These were deemed sufficient to prevent accidental transmissions.
  35945.  
  35946. OS/2 C-Kermit supports four functions:
  35947.  
  35948. (1) Cursor positioning using Arrow key equivalents
  35949. (2) Selection with copy direct to host
  35950. (3) Selection with copy to system clipboard
  35951. (4) Paste from system clipboard
  35952.  
  35953. X-term mouse support was not implemented because it is particular to 
  35954. applications written to run in an X-term session, not under a standard
  35955. VTxxx terminal.  And because, implementing the additional escape 
  35956. sequences could very well break host systems which do not understand 
  35957. them and/or misinterpret them as something else entirely.  
  35958.  
  35959. My eventual goal though is to define Kermit Kverbs that represent each
  35960. type of mouse event and allow the user to redefine their meanings.
  35961. This is a long way down on my list of priorities.  Just a neat idea
  35962. that is floating around in my head.
  35963.  
  35964. x
  35965. x
  35966. x
  35967. x
  35968. x
  35969. x
  35970. x
  35971. x
  35972. x
  35973. x
  35974. x
  35975. x
  35976. x
  35977. x
  35978.  
  35979. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  35980. "C-Kermit: available on more platforms than any other communications software."
  35981. "Kermit FTP: sending files whenever and wherever they are needed."
  35982. *NEW* OS/2 version available: ftp kermit.columbia.edu /kermit/bin/ckoker.zip 
  35983.  
  35984. From news@columbia.edu Mon Oct 17 18:47:21 1994
  35985. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03689
  35986.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 17 Oct 1994 18:47:21 -0400
  35987. Received: by apakabar.cc.columbia.edu id AA04100
  35988.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 17 Oct 1994 18:47:19 -0400
  35989. Path: news.columbia.edu!sol.ctr.columbia.edu!caen!saimiri.primate.wisc.edu!news.larc.nasa.gov!news.msfc.nasa.gov!bcm!news.tamu.edu!LLF.TAMU.EDU!l-field
  35990. From: l-field@tamu.edu (Larry Field)
  35991. Newsgroups: comp.protocols.kermit.misc
  35992. Subject: ** Help...Looking for ASC II key equivalents for mainframe keys **
  35993. Date: Mon, 17 Oct 1994 17:03:21
  35994. Organization: BPP Operations Center
  35995. Lines: 8
  35996. Message-Id: <l-field.454.00110EC8@tamu.edu>
  35997. Nntp-Posting-Host: llf.tamu.edu
  35998. X-Newsreader: Trumpet for Windows [Version 1.0 Rev A]
  35999. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  36000.  
  36001. I'm looking for a chart that shows the asc ii key equivalents for an ibm 
  36002. mainframe keys.  For instance, "esc+1" is PF1.  Does anyone have a chart like 
  36003. this that lists all the keys?
  36004.  
  36005. Thanks,
  36006.  
  36007. Larry Field
  36008.  
  36009.  
  36010. From news@columbia.edu Mon Oct 17 19:27:11 1994
  36011. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04684
  36012.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 17 Oct 1994 18:59:52 -0400
  36013. Received: by apakabar.cc.columbia.edu id AA04920
  36014.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 17 Oct 1994 18:59:50 -0400
  36015. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!yeshua.marcam.com!usc!nic-nac.CSU.net!ctp.org!not-for-mail
  36016. From: lpowell@eis.calstate.edu (Larry Powell)
  36017. Newsgroups: comp.protocols.kermit.misc
  36018. Subject: Telnet to Columbia
  36019. Date: 17 Oct 1994 12:27:11 -0700
  36020. Organization: California Technology Project of The Calif State Univ
  36021. Lines: 6
  36022. Message-Id: <37uj6f$a95@eis.calstate.edu>
  36023. Nntp-Posting-Host: eis.calstate.edu
  36024. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  36025.  
  36026.   Is there anyway we can telnet to kermit.columbia.edu (or an equivalent)
  36027. so that we can download kermit files using kermit? (Rather than ftp?)
  36028.  
  36029. --
  36030. --Larry Powell    lpowell@ctp.org
  36031.  
  36032.  
  36033. From news@columbia.edu Mon Oct 17 20:37:02 1994
  36034. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04836
  36035.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 17 Oct 1994 19:01:37 -0400
  36036. Received: by apakabar.cc.columbia.edu id AA05044
  36037.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 17 Oct 1994 19:01:36 -0400
  36038. Newsgroups: comp.protocols.kermit.misc
  36039. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!europa.eng.gtefsd.com!howland.reston.ans.net!swrinde!pipex!uunet!spcuna!ritz!kudut
  36040. From: kudut@ritz.mordor.com (Ken Udut)
  36041. Subject: Re: Mouse with Mac/MS-Kermit?
  36042. References: <37tfav$h8n@mathserv.mps.ohio-state.edu> <1994Oct17.094459.30152@cc.usu.edu>
  36043. Organization: Mordor International BBS - Jersey City, NJ
  36044. Date: Mon, 17 Oct 1994 20:37:02 GMT
  36045. Message-Id: <Cxu3xr.60H@ritz.mordor.com>
  36046. Lines: 26
  36047. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  36048.  
  36049. In article <1994Oct17.094459.30152@cc.usu.edu> jrd@cc.usu.edu (Joe Doupnik) writes:
  36050. >In article <37tfav$h8n@mathserv.mps.ohio-state.edu>, davis@pacific.mps.ohio-state.edu writes:
  36051. >> Hi,
  36052. >> 
  36053. >>   What are the chances of seeing _simple_ mouse support added to MS-Kermit?
  36054. >> By simple, I mean that if a button is pressed, Kermit would simply respond
  36055. >> with the standard XTerm button press info (ESC [ M b x y) where `b'
  36056. >                         ^^^^^^^^^^^^^^-- this not a
  36057. >proper Control Sequence by ANSI standards and thus becomes very difficult
  36058. >to parse properly in normal environments.
  36059.  
  36060. There is a program (and I'm looking for my copy without success at the 
  36061. moment - if anyone has it, I'm interested!) that will do the following:
  36062.  
  36063. Press the left mouse button, and it generates an CR/LF ("Enter" key).
  36064. Press the right mouse button, and it generated an "Esc" sequence.
  36065. Move the mouse upwards, generates the up arrow slowly, etc.
  36066.  
  36067. While this isn't as useful in unix/VMS environments (although it would be 
  36068. a blast in reading news/e-mail online :-> ), for BBS environments, it is 
  36069. a help.
  36070.  
  36071. Anyone know of programs that do this that are public domain?
  36072.  
  36073. Ken
  36074. kudut@ritz.mordor.com
  36075.  
  36076. From news@columbia.edu Mon Oct 17 23:03:46 1994
  36077. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04973
  36078.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 17 Oct 1994 19:03:49 -0400
  36079. Received: by apakabar.cc.columbia.edu id AA05205
  36080.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 17 Oct 1994 19:03:48 -0400
  36081. Path: news.columbia.edu!usenet
  36082. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  36083. Newsgroups: comp.protocols.kermit.misc
  36084. Subject: Re: Telnet to Columbia
  36085. Date: 17 Oct 1994 23:03:46 GMT
  36086. Organization: Columbia University
  36087. Lines: 11
  36088. Message-Id: <37uvsi$52h@apakabar.cc.columbia.edu>
  36089. References: <37uj6f$a95@eis.calstate.edu>
  36090. Nntp-Posting-Host: fdc.cc.columbia.edu
  36091. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  36092.  
  36093. In article <37uj6f$a95@eis.calstate.edu> lpowell@eis.calstate.edu (Larry  
  36094. Powell) writes:
  36095. >   Is there anyway we can telnet to kermit.columbia.edu (or an equivalent)
  36096. > so that we can download kermit files using kermit? (Rather than ftp?)
  36097. It would seem logical, wouldn't it?  But currently, no.  A lot of development
  36098. is required for this; it's on the long list of things to do.
  36099.  
  36100. - Frank
  36101. x
  36102. x
  36103.  
  36104. From news@columbia.edu Mon Oct 17 23:05:24 1994
  36105. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05106
  36106.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 17 Oct 1994 19:05:27 -0400
  36107. Received: by apakabar.cc.columbia.edu id AA05462
  36108.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 17 Oct 1994 19:05:25 -0400
  36109. Path: news.columbia.edu!usenet
  36110. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  36111. Newsgroups: comp.protocols.kermit.misc
  36112. Subject: Re: ** Help...Looking for ASC II key equivalents for mainframe keys **
  36113. Date: 17 Oct 1994 23:05:24 GMT
  36114. Organization: Columbia University
  36115. Lines: 12
  36116. Message-Id: <37uvvk$5ak@apakabar.cc.columbia.edu>
  36117. References: <l-field.454.00110EC8@tamu.edu>
  36118. Nntp-Posting-Host: fdc.cc.columbia.edu
  36119. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  36120.  
  36121. In article <l-field.454.00110EC8@tamu.edu> l-field@tamu.edu (Larry Field)  
  36122. writes:
  36123. > I'm looking for a chart that shows the asc ii key equivalents for an ibm 
  36124. > mainframe keys.  For instance, "esc+1" is PF1.  Does anyone have a chart ]
  36125. > like this that lists all the keys?
  36126. Any such chart would be totally site dependent.  It depends on the
  36127. configuration (and make and model and version) of your 3270 emulation
  36128. front end and/or software.  You'll have to see your local IBM mainframe
  36129. communications people about this.
  36130.  
  36131. - Frank
  36132.  
  36133. From news@columbia.edu Tue Oct 18 01:16:15 1994
  36134. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12993
  36135.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 17 Oct 1994 21:55:34 -0400
  36136. Received: by apakabar.cc.columbia.edu id AA17395
  36137.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 17 Oct 1994 21:55:33 -0400
  36138. Newsgroups: comp.protocols.kermit.misc
  36139. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!swrinde!sgiblab!a2i!dold.a2i!dold
  36140. From: Clarence Dold <dold@rahul.net>
  36141. Subject: Re: Mouse with Mac/MS-Kermit?
  36142. Message-Id: <CxuGv3.H4A@rahul.net>
  36143. Sender: news@rahul.net (Usenet News)
  36144. Nntp-Posting-Host: jive.rahul.net
  36145. Nntp-Posting-User: dold
  36146. Organization: a2i network
  36147. X-Newsreader: TIN [version 1.2 PL2]
  36148. References: <37tfav$h8n@mathserv.mps.ohio-state.edu>
  36149. Date: Tue, 18 Oct 1994 01:16:15 GMT
  36150. Lines: 17
  36151. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  36152.  
  36153. davis@pacific.mps.ohio-state.edu wrote:
  36154.  
  36155. :   What are the chances of seeing _simple_ mouse support added to MS-Kermit?
  36156. : By simple, I mean that if a button is pressed, Kermit would simply respond
  36157.  
  36158. I don't use it currently, but I used to use Grabtext to cut-and-paste
  36159. in MSKermit and on DOS screens.
  36160.  
  36161. Available from OAK.Oakland.EDU 141.210.10.117
  36162.  
  36163. Directory SimTel/msdos/screen/
  36164. grbtxt12.zip  B    9220  920826  Grab screen text, cut & paste w/mouse to kybd.
  36165.  
  36166. -- 
  36167. ---
  36168. Clarence A Dold - dold@rahul.net
  36169.                 - Pope Valley & Napa CA.
  36170.  
  36171. From news@columbia.edu Mon Oct 17 11:55:17 1994
  36172. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18204
  36173.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 17 Oct 1994 23:46:05 -0400
  36174. Received: by apakabar.cc.columbia.edu id AA25136
  36175.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 17 Oct 1994 23:46:03 -0400
  36176. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!europa.eng.gtefsd.com!news.mathworks.com!usenet.eel.ufl.edu!usenet.cis.ufl.edu!caen!msuinfo!harbinger.cc.monash.edu.au!news.cs.su.oz.au!news.adelaide.edu.au!gateway.dircsa.org.au!gateway.dircsa.org.au!not-for-mail
  36177. From: arthur@gateway.dircsa.org.au (Arthur Marsh)
  36178. Newsgroups: comp.protocols.kermit.misc
  36179. Subject: Re: Kermit over telnet on unix
  36180. Date: 17 Oct 1994 21:25:17 +0930
  36181. Organization: DIRCSA - Disability Information and Resource Centre
  36182. Lines: 22
  36183. Message-Id: <37ton5$1t2@gateway.dircsa.org.au>
  36184. References: <1994Oct11.092246@axpvms.cc.utexas.edu>
  36185. Nntp-Posting-Host: gateway.dircsa.org.au
  36186. X-Newsreader: TIN [version 1.1 PL8]
  36187. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  36188.  
  36189. sauron@axpvms.cc.utexas.edu wrote:
  36190.  
  36191.  
  36192. : How do I run kermit over a telnet link? The man page is not very helpfull.
  36193. : I want to transfer files (that I'm having to get via capturing , with
  36194. : errors) from a BBS that dosen't let me get at them via FTP.
  36195. : Any ideas?
  36196. : TIA.
  36197. : Ian Stirling.
  36198. : send mail either to printf@cix.compulink.co.uk,
  36199.  
  36200. OK, I'd use Kermit at the end you are typing from, and use its inbuilt telnet
  36201. to connect to the machine that you dial out from to a remote bbs.
  36202.  
  36203. Then provided you don't overload the intervening links you can use kermit
  36204. over multiple IP and serial links.
  36205.  
  36206.  
  36207. -- 
  36208. Arthur Marsh, telephone +61-8-370-2365, fax +61-8-370-2133, +61-8-223-5082 
  36209.                arthur@gateway.dircsa.org.au, arthur@cswamp.apana.org.au
  36210. .endofsig
  36211.  
  36212. From news@columbia.edu Tue Oct 18 03:48:53 1994
  36213. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18382
  36214.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 17 Oct 1994 23:48:56 -0400
  36215. Received: by apakabar.cc.columbia.edu id AA25269
  36216.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 17 Oct 1994 23:48:55 -0400
  36217. Path: news.columbia.edu!merhaba.cc.columbia.edu!ycl6
  36218. From: ycl6@columbia.edu (Yeechang Lee)
  36219. Newsgroups: comp.protocols.kermit.misc
  36220. Subject: Re: Telnet to Columbia
  36221. Date: 18 Oct 1994 03:48:53 GMT
  36222. Organization: Trilateralist Commission, Columbia University chapter
  36223. Lines: 11
  36224. Message-Id: <37vgj5$oli@apakabar.cc.columbia.edu>
  36225. References: <37uj6f$a95@eis.calstate.edu>
  36226. Nntp-Posting-Host: merhaba.cc.columbia.edu
  36227. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  36228.  
  36229. In article <37uj6f$a95@eis.calstate.edu>,
  36230. Larry Powell <lpowell@eis.calstate.edu> wrote:
  36231. |  Is there anyway we can telnet to kermit.columbia.edu (or an equivalent)
  36232. |so that we can download kermit files using kermit? (Rather than ftp?)
  36233.  
  36234. telnet grind.isca.uiowa.edu offers this very feature; they have a mirror of
  36235. wuarchive.wustl.edu and some other stuff.  Perhaps someone will upload the
  36236. latest betas to it.
  36237. ---  _________________________________   o   ______________________________
  36238.      Yeechang Lee  (ycl6@columbia.edu) o   o a New Yorker bred, if not born
  36239.      Columbia University/New York City \_O_/ Nevada Las Vegas Mission 92-94
  36240.  
  36241. From news@columbia.edu Tue Oct 18 04:44:41 1994
  36242. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23701
  36243.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 18 Oct 1994 01:01:45 -0400
  36244. Received: by apakabar.cc.columbia.edu id AA00566
  36245.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 18 Oct 1994 01:01:43 -0400
  36246. Path: news.columbia.edu!sol.ctr.columbia.edu!math.ohio-state.edu!usc!howland.reston.ans.net!news.cac.psu.edu!news.tc.cornell.edu!loghost.sdsc.edu!acsc.com!wp-sp.nba.trw.com!ns1.nba.trw.com!gumby.dsd.TRW.COM!jsb
  36247. From: jsb@gumby.dsd.TRW.COM (John Bien)
  36248. Newsgroups: comp.protocols.kermit.misc
  36249. Subject: Does "Set carrier auto" in ckermit 5A(189) work?
  36250. Date: 18 Oct 1994 04:44:41 GMT
  36251. Organization: TRW Space & Electronics Group
  36252. Lines: 27
  36253. Distribution: world
  36254. Message-Id: <37vjrp$d4l@ns1.nba.TRW.COM>
  36255. Nntp-Posting-Host: pokey.sp.trw.com
  36256. Keywords: carrier detect Unix
  36257. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  36258.  
  36259. I'm running ckermit 5A(189) on a Sun running 4.1.3.  I can't figure
  36260. if this is a bug - or I'm not reading the documentation correctly.
  36261.  
  36262. It seems that if "carrier" is set to "auto" the following should happen:
  36263.     - Remote system hangs up (and carrier detect goes down)
  36264.     - I should automatically return to the kermit prompt (exit Connect)
  36265.  
  36266. However - "set carrier" doesn't seem to have any affect.
  36267. Carrier is working, as "show modem-signals" seems to indicate.
  36268. Before I call "DIAL", CD shows as Off.  After the dial, and
  36269. during the connect, CD shows as "On".  Then, after the modem 
  36270. returns "NO CARRIER", I can escape back and see CD is set to "Off" 
  36271. again.
  36272.  
  36273. What I'm looking to do is not have our operators deal with
  36274. the C-Kermit prompt at all.  I'd like to call up kermit with
  36275. an immediate Dial and Connect, and when the remote system
  36276. disconnects, automatically exit kermit (no ^\c or ^\q).
  36277.  
  36278. Any ideas?  Does "set carrier" work for anybody else?
  36279.  
  36280. Thanks for any info,
  36281. -John
  36282.  
  36283.     John Bien                 (310) 814-8546
  36284.     TRW Space and Electronics Group, Communications services
  36285.     j.bien@gumby.sp.TRW.COM            (Internet)
  36286.  
  36287. From news@columbia.edu Tue Oct 18 05:34:00 1994
  36288. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24980
  36289.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 18 Oct 1994 01:36:21 -0400
  36290. Received: by apakabar.cc.columbia.edu id AA02232
  36291.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 18 Oct 1994 01:36:18 -0400
  36292. Path: news.columbia.edu!sol.ctr.columbia.edu!math.ohio-state.edu!usenet
  36293. From: davis@pacific.mps.ohio-state.edu
  36294. Newsgroups: comp.protocols.kermit.misc
  36295. Subject: Re: Mouse with Mac/MS-Kermit?
  36296. Date: 18 Oct 1994 05:34:00 GMT
  36297. Organization: None
  36298. Lines: 84
  36299. Message-Id: <37vmo8$kq3@mathserv.mps.ohio-state.edu>
  36300. References: <37tfav$h8n@mathserv.mps.ohio-state.edu> <CxuGv3.H4A@rahul.net>
  36301. Reply-To: davis@amy.tch.harvard.edu
  36302. Nntp-Posting-Host: pacific.mps.ohio-state.edu
  36303. X-Newsreader: S-Lang: slrn (0.1.4.0)
  36304. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  36305.  
  36306. In article <CxuGv3.H4A@rahul.net>, Clarence Dold <dold@rahul.net> writes:
  36307.  : davis@pacific.mps.ohio-state.edu wrote:
  36308.  : 
  36309.  : :   What are the chances of seeing _simple_ mouse support added to MS-Kermit?
  36310.  : : By simple, I mean that if a button is pressed, Kermit would simply respond
  36311.  : 
  36312.  : I don't use it currently, but I used to use Grabtext to cut-and-paste
  36313.  : in MSKermit and on DOS screens.
  36314.  
  36315. I am not really interested in cut/paste functionality.  In fact, using
  36316. something like what you describe is not as flexible as what I have in mind.
  36317. The latest version of `selection' for Linux implements what I would like to
  36318. see in MS-Kermit or, as a TSR.  I am sure that someone familiar with TSR
  36319. could write something like this in half an hour, unfortunately, I do not
  36320. have the expertise.
  36321.  
  36322. To give you an idea how flexible and simple this idea is, consider what I
  36323. have done using selection.  The situation is this:  right now I am at home
  36324. running Linux in text (non-X) mode.  I have selection running in the
  36325. background monitering the mouse (the TSR would do this).  In the foreground
  36326. I am running C-Kermit connected through the phone line to
  36327. amy.tch.harvard.ed.  From there I am telnetted to a machine at Ohio State.
  36328. On that machine, I am usig my JED editor to compse this message.  
  36329.  
  36330. Now, I can move the mouse somewhere in the buffer and click on it.  When I
  36331. do so, it sends 6 characters:  ESC [ M b x y  to indicate the row/column of
  36332. the mouse click and which button was clicked.   When I click with the left
  36333. mouse button, the cursor goes to the position of the mouse--- even if it has
  36334. to switch buffers/windows to get there.  Now, if I click on the status line,
  36335. I can cause the window to split, be deleted, or switch to the next buffer
  36336. depending on the mouse button (3 buttons).  In addition, the middle button
  36337. is configured to paste, the right to delete text, etc...
  36338.  
  36339. How do I do this?  Simple. The editor, like emacs, is programmable.  I have
  36340. the following keybindings defined:
  36341.  
  36342. setkey ("left_button_down", "\e[M ");
  36343. setkey ("middle_button_down", "\e[M!");
  36344. setkey ("right_button_down", "\e[M\"");
  36345.  
  36346. This effectively binds the three mouse buttons to functions.  The functions
  36347. decode the x, y coordinates of the mouse point, e.g.,
  36348.  
  36349. define middle_button_down ()
  36350. {
  36351.    variable use_status, x, y, n;
  36352.    
  36353.    variable x = getkey () - ' ';   % (x,y) coordinates offset from (32,32)
  36354.    variable y = getkey () - ' ';   
  36355.  
  36356.    (use_status, n, y, x) = whereis_mouse (x, y);
  36357.    
  36358.    loop (n) otherwindow ();
  36359.    if (use_status)
  36360.      {
  36361.     splitwindow ();
  36362.     return;
  36363.      }
  36364.    
  36365.    if (markp ()) 
  36366.      {      
  36367.     call ("copy_region");
  36368.     message ("Region copied.");
  36369.     return;
  36370.      }
  36371.    
  36372.    goto_line (y);
  36373.    goto_column (x);
  36374.    call ("yank");
  36375. }
  36376.  
  36377.  
  36378. Again, all this requires is a TSR that shoves ESC [ M m x y into the input
  36379. buffer.  Does anyone know where to get such a beast?
  36380.  
  36381. --
  36382.      _____________
  36383. #___/John E. Davis\_________________________________________________________
  36384. #
  36385. # internet: davis@amy.tch.harvard.edu
  36386. #   bitnet: davis@ohstpy
  36387. #   office: 617-735-6746
  36388. #
  36389.  
  36390.  
  36391. From news@columbia.edu Tue Oct 18 12:58:53 1994
  36392. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07400
  36393.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 18 Oct 1994 08:58:57 -0400
  36394. Received: by apakabar.cc.columbia.edu id AA18462
  36395.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 18 Oct 1994 08:58:56 -0400
  36396. Path: news.columbia.edu!usenet
  36397. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  36398. Newsgroups: comp.protocols.kermit.misc
  36399. Subject: Re: Does "Set carrier auto" in ckermit 5A(189) work?
  36400. Date: 18 Oct 1994 12:58:53 GMT
  36401. Organization: Columbia University
  36402. Lines: 21
  36403. Message-Id: <380gqd$i0r@apakabar.cc.columbia.edu>
  36404. References: <37vjrp$d4l@ns1.nba.TRW.COM>
  36405. Nntp-Posting-Host: fdc.cc.columbia.edu
  36406. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  36407.  
  36408. In article <37vjrp$d4l@ns1.nba.TRW.COM> jsb@gumby.dsd.TRW.COM (John Bien)  
  36409. writes:
  36410. > I'm running ckermit 5A(189) on a Sun running 4.1.3.  I can't figure
  36411. > if this is a bug - or I'm not reading the documentation correctly.
  36412. > It seems that if "carrier" is set to "auto" the following should happen:
  36413. >     - Remote system hangs up (and carrier detect goes down)
  36414. >     - I should automatically return to the kermit prompt (exit Connect)
  36415. The proper operation of SET CARRIER ON or AUTO depends on the underlying
  36416. operating system.  If the device can be conditioned so that a read() returns
  36417. an error if carrier drops, then this feature will work, otherwise it won't.
  36418. In general, it works on UNIX systems whose terminal driver semantics follow
  36419. the System V model, and tends not to work on BSD-based systems like SunOS.
  36420. (Or, to put it another way, it should start working as you want when you
  36421. "upgrade to Solaris" :-)
  36422.  
  36423. There is a lot of material about this in the ckuker.bwr file, but perhaps
  36424. it needs to be stated up front a bit more explicitly.
  36425.  
  36426. - Frank
  36427.  
  36428. From news@columbia.edu Tue Oct 18 16:59:28 1994
  36429. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24939
  36430.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 18 Oct 1994 13:08:10 -0400
  36431. Received: by apakabar.cc.columbia.edu id AA10121
  36432.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 18 Oct 1994 13:08:08 -0400
  36433. Path: news.columbia.edu!panix!news.mathworks.com!europa.eng.gtefsd.com!howland.reston.ans.net!pipex!uunet!dziuxsolim.rutgers.edu!caip.rutgers.edu!not-for-mail
  36434. From: @
  36435. Newsgroups: comp.protocols.kermit.misc
  36436. Subject: Re: File sizes and Kermit
  36437. Date: 18 Oct 1994 12:59:28 -0400
  36438. Organization: @
  36439. Lines: 9
  36440. Sender: halasz@caip.rutgers.edu
  36441. Message-Id: <380utg$9t3@caip.rutgers.edu>
  36442. References: <36uqd8$7in@linux.cpsc.ucalgary.ca> <jhurwitCxAMJy.K3G@netcom.com>
  36443. Nntp-Posting-Host: caip.rutgers.edu
  36444. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  36445.  
  36446. In article <jhurwitCxAMJy.K3G@netcom.com>, jhurwit@netcom.com (Jeffrey Hurwit) writes:
  36447. =     True enough, but in brief:  In text files, Unix uses line feed (LF)
  36448. =     characters to end lines, DOS uses carriage return (CR) and LF. When
  36449. =     in text mode (set file type text), Kermit translates from Unix (LF)
  36450. =     to DOS (CR/LF), which means that for each new line, your DOS file
  36451. =     will be one character larger than your Unix file.
  36452.  
  36453. Therefore, the size in byts of a well sent textfile is the sum of the line
  36454. and character counts givven by "wc"; "wc -cl"
  36455.  
  36456. From news@columbia.edu Tue Oct 18 15:14:05 1994
  36457. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04248
  36458.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 18 Oct 1994 15:14:05 -0400
  36459. Received: by apakabar.cc.columbia.edu id AA21349
  36460.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 18 Oct 1994 15:14:03 -0400
  36461. Path: news.columbia.edu!panix!news.mathworks.com!europa.eng.gtefsd.com!howland.reston.ans.net!gatech!psuvax1!news.cc.swarthmore.edu!netnews.upenn.edu!LAN.ASC.UPENN.EDU!stimpe
  36462. From: stimpe@asc.upenn.edu (Thomas Timperio)
  36463. Newsgroups: comp.protocols.kermit.misc
  36464. Subject: Problem using Kermit 3.10...
  36465. Date: Tue, 18 Oct 1994 14:30:40
  36466. Organization: University of Pennsylvania
  36467. Lines: 23
  36468. Message-Id: <stimpe.31.000E834E@asc.upenn.edu>
  36469. Nntp-Posting-Host: lan.asc.upenn.edu
  36470. X-Newsreader: Trumpet for Windows [Version 1.0 Rev A]
  36471. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  36472.  
  36473. Help!  I've connected two modems to my ancient 8088 and am having a hard time 
  36474. getting Kermit 3.10 to work.  The modems are both 2400 baud, both work on a 
  36475. 486 a friend has.  On my machine, Kermit boots fine.  When I try to send 
  36476. commands to the modem, they come across okay and I see the modem responding.  
  36477. It will dial my school's modem pool and even connect, but no characters are 
  36478. visible on the screen (i.e. no CONNECT message, no ATDT, nothing, although the 
  36479. keyboard commands are registering).  If I set the duplex to half, then I can 
  36480. see what I'm typing up until there is a connection.  Otherwise, there's no 
  36481. change.
  36482.  
  36483. This copy of Kermit was used on a 286 and a 486 as it's currently configured.
  36484. The truly odd thing is that _one_ time when I entered Kermit, everything 
  36485. worked fine (was able to dial and connect and everything came across on the 
  36486. screen)but then didn't the next time.
  36487.  
  36488. Does this sound like a software setting to anyone?  Is there a Kermit setting 
  36489. that I'm not thinking of?  I'm very interested in using Kermit because it 
  36490. supports an .ini file for our school to use software and because it runs swell 
  36491. on older computers.
  36492.  
  36493. Thanks!
  36494. Tom
  36495.  
  36496.  
  36497. From news@columbia.edu Tue Oct 18 20:16:24 1994
  36498. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14434
  36499.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 18 Oct 1994 17:14:10 -0400
  36500. Received: by apakabar.cc.columbia.edu id AA02313
  36501.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 18 Oct 1994 17:14:08 -0400
  36502. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!gatech!newsfeed.pitt.edu!dsinc!netnews.upenn.edu!netnews.CC.Lehigh.EDU!ns1.CC.Lehigh.EDU!not-for-mail
  36503. From: wsm0@ns1.CC.Lehigh.EDU (Wayne S. Mery)
  36504. Newsgroups: comp.protocols.kermit.misc
  36505. Subject: beta 3.14 and printing
  36506. Date: 18 Oct 1994 16:16:24 -0400
  36507. Organization: Lehigh University
  36508. Lines: 13
  36509. Message-Id: <381aeo$3hek@ns1.CC.Lehigh.EDU>
  36510. Nntp-Posting-Host: ns1.cc.lehigh.edu
  36511. X-Newsreader: TIN [version 1.2 PL2]
  36512. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  36513.  
  36514. The 3.14 kermit.upd file states:
  36515.  
  36516.  . Revised printer support for better interoperation with Novell CAPTURE
  36517.  
  36518.  
  36519. I'd like more information on what was improved.  Also, does the 
  36520. improvement only apply to Novell or to does it apply equally to 
  36521. direct attached printers?
  36522. -- 
  36523.  
  36524. -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
  36525. Wayne S. Mery        Systems Programmer  Lehigh University Computing Ctr
  36526. (wsm0@Lehigh.edu)    (610) 758-3983      8B E. Packer Ave  Bethlehem PA 
  36527.  
  36528. From news@columbia.edu Tue Oct 18 21:36:06 1994
  36529. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16241
  36530.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 18 Oct 1994 17:36:15 -0400
  36531. Received: by apakabar.cc.columbia.edu id AA04356
  36532.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 18 Oct 1994 17:36:12 -0400
  36533. Path: news.columbia.edu!usenet
  36534. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  36535. Newsgroups: comp.protocols.kermit.misc
  36536. Subject: Re: Problem using Kermit 3.10...
  36537. Date: 18 Oct 1994 21:36:06 GMT
  36538. Organization: Columbia University
  36539. Lines: 25
  36540. Message-Id: <381f46$47v@apakabar.cc.columbia.edu>
  36541. References: <stimpe.31.000E834E@asc.upenn.edu>
  36542. Nntp-Posting-Host: fdc.cc.columbia.edu
  36543. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  36544.  
  36545. In article <stimpe.31.000E834E@asc.upenn.edu> stimpe@asc.upenn.edu (Thomas  
  36546. Timperio) writes:
  36547. > Help!  I've connected two modems to my ancient 8088 and am having a hard
  36548. > time getting Kermit 3.10 to work.  The modems are both 2400 baud, both
  36549. > work on a 486 a friend has.  On my machine, Kermit boots fine.  When I
  36550. > try to send commands to the modem, they come across okay and I see the
  36551. > modem responding.  It will dial my school's modem pool and even connect,
  36552. > but no characters are visible on the screen (i.e. no CONNECT message, no
  36553. > ATDT, nothing, although the keyboard commands are registering).
  36554. This is the classic symptom of an interrupt conflict.
  36555.  
  36556. You should get the latest version of MS-DOS Kermit, which is 3.14 Beta.
  36557. Lest you are worried about the increased size of the newer version over
  36558. 3.10, version 3.14 also comes in a "light" version (lacking networking
  36559. and graphics terminal emulation) that should work just fine even an a
  36560. small-memory PC or XT.
  36561.  
  36562. Included in the distribution is a file called KERMIT.BWR, which includes
  36563. a detailed discussion of interrupt conflicts and how to correct them.
  36564.  
  36565. Anonymous ftp to kermit.columbia.edu, directory kermit/test/bin, binary
  36566. mode, file mstibm.zip.
  36567.  
  36568. - Frank
  36569.  
  36570. From news@columbia.edu Mon Oct 17 20:25:00 1994
  36571. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16875
  36572.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 18 Oct 1994 17:43:52 -0400
  36573. Received: by apakabar.cc.columbia.edu id AA05035
  36574.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 18 Oct 1994 17:43:51 -0400
  36575. Newsgroups: comp.protocols.kermit.misc
  36576. Path: news.columbia.edu!psinntp!psinntp!news.jf.intel.com!ornews.intel.com!ssd.intel.com!uunet!news.mathworks.com!yeshua.marcam.com!charnel.ecst.csuchico.edu!olivea!news.bu.edu!dartvax.dartmouth.edu!axsys!rw
  36577. From: rw@surgicad.com (Randy Witlicki)
  36578. Subject: Xircom PCMCIA and MS-DOS Kermit woes
  36579. Message-Id: <Cxu3F9.5wD@surgicad.com>
  36580. Organization: Dover Systems
  36581. Date: Mon, 17 Oct 1994 20:25:00 GMT
  36582. Lines: 19
  36583. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  36584.  
  36585.  
  36586.   Has anyone out here managed to get a Xircom PCMCIA modem
  36587. (I am trying to configure the Creditcard Ethernet+Modem unit on
  36588. a Zenith Z-Star Laptop) to successfully use MS-DOS Kermit Version 3.13 ?
  36589.   I keep getting the message:
  36590.     ?Warning: unknown hardware for port. Using Bios for BIOS3
  36591.   This is after various invocations of the Xircom CEMCFG, CMDRIVE,
  36592. XEMREDIR, and so on programs in various combinations and also giving
  36593. port and irq with a   set COM3  command in Kermit.
  36594.   I am able to get the Windows Terminal program to talk happily
  36595. over COM3 after running the Xircom PCMCIA setup programs, so maybe Kermit
  36596. has a    set hardware don't-be-clever    command that I haven't found?
  36597.   The purpose of this whole exercise is to have Kermit take a script
  36598. as part of a batch file to log someone in to a terminal server so
  36599. Novell LanWorkPlace can make a ppp connection.
  36600.  
  36601.  Thanks in advance for any help and sage advice.
  36602.  
  36603. - Randy Witlicki   rw@surgicad.com
  36604.  
  36605. From news@columbia.edu Tue Oct 18 21:18:30 1994
  36606. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17800
  36607.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 18 Oct 1994 17:55:41 -0400
  36608. Received: by apakabar.cc.columbia.edu id AA05874
  36609.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 18 Oct 1994 17:55:39 -0400
  36610. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!gatech!newsxfer.itd.umich.edu!newsrelay.iastate.edu!news.iastate.edu!tflynn
  36611. From: tflynn@iastate.edu (Timothy John Flynn)
  36612. Newsgroups: comp.protocols.kermit.misc
  36613. Subject: exit causes reboot
  36614. Date: 18 Oct 1994 21:18:30 GMT
  36615. Organization: Iowa State University, Ames, IA
  36616. Lines: 10
  36617. Message-Id: <381e36$2r5@news.iastate.edu>
  36618. Nntp-Posting-Host: des1.iastate.edu
  36619. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  36620.  
  36621.  
  36622. When I exit the kermit beta it totally reboots.....
  36623.  
  36624. Also kermit beta sends strange things to windows for workgroups and
  36625. locks up machine!
  36626. -- 
  36627. @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
  36628. *   *   *   *   *   *   tflynn@iastate.edu    *   *   *   *   *   *   *   @
  36629. Tim Flynn, Larch 1349 Cunningham, Ames, Iowa 50013-0008  ph.(515)-294-9022@
  36630. @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
  36631.  
  36632. From news@columbia.edu Tue Oct 18 16:20:03 1994
  36633. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17931
  36634.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 18 Oct 1994 17:57:17 -0400
  36635. Received: by apakabar.cc.columbia.edu id AA05981
  36636.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 18 Oct 1994 17:57:09 -0400
  36637. Path: news.columbia.edu!panix!news.mathworks.com!usenet.eel.ufl.edu!usenet.fiu.edu!newshost.fiu.edu!solix!mtritt01
  36638. From: mtritt01@solix.fiu.edu (Merrill D. Tritt)
  36639. Newsgroups: comp.protocols.kermit.misc
  36640. Subject: external kermit protocol
  36641. Date: 18 Oct 1994 16:20:03 GMT
  36642. Organization: Florida International University
  36643. Lines: 12
  36644. Message-Id: <380sjj$oq3@newshost.fiu.edu>
  36645. Nntp-Posting-Host: solix.fiu.edu
  36646. X-Newsreader: TIN [version 1.2 PL2]
  36647. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  36648.  
  36649. I prefer using a dos comm program and, unfortunately, it does not support 
  36650. kermit.  I have found an external version of kermit that I can configure 
  36651. to work with my software, but it is a bit old and does not support 
  36652. today's connect rates.  Does anybody know if something like this still 
  36653. exists?  The file was called PCKERMIT.
  36654.  
  36655. Thanks in advance.
  36656.  
  36657. --
  36658. ===========================================================================
  36659. ==      Merrill Tritt   === mtritt01@servax.fiu.edu ===   Miami, FL      ==
  36660. ===========================================================================
  36661.  
  36662. From news@columbia.edu Tue Oct 18 22:01:32 1994
  36663. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18358
  36664.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 18 Oct 1994 18:01:34 -0400
  36665. Received: by apakabar.cc.columbia.edu id AA06340
  36666.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 18 Oct 1994 18:01:34 -0400
  36667. Path: news.columbia.edu!usenet
  36668. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  36669. Newsgroups: comp.protocols.kermit.misc
  36670. Subject: Re: exit causes reboot
  36671. Date: 18 Oct 1994 22:01:32 GMT
  36672. Organization: Columbia University
  36673. Lines: 14
  36674. Message-Id: <381gjs$661@apakabar.cc.columbia.edu>
  36675. References: <381e36$2r5@news.iastate.edu>
  36676. Nntp-Posting-Host: fdc.cc.columbia.edu
  36677. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  36678.  
  36679. In article <381e36$2r5@news.iastate.edu> tflynn@iastate.edu (Timothy John  
  36680. Flynn) writes:
  36681. > When I exit the kermit beta it totally reboots.....
  36682. > Also kermit beta sends strange things to windows for workgroups and
  36683. > locks up machine!
  36684. >
  36685. There's no point in cluttering up the newsgroup with reports like this.
  36686. Please send them straight to kermit@columbia.edu, and include more
  36687. details -- PC and network configuration, software versions (DOS, Windows,
  36688. WFW, whatever).  This is not to say that there isn't a problem, but we
  36689. need more to go on, and you'll get MUCH faster response from email than
  36690. from news.
  36691.  
  36692. - Frank
  36693.  
  36694. From news@columbia.edu Tue Oct 18 22:03:47 1994
  36695. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18566
  36696.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 18 Oct 1994 18:03:51 -0400
  36697. Received: by apakabar.cc.columbia.edu id AA06458
  36698.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 18 Oct 1994 18:03:50 -0400
  36699. Path: news.columbia.edu!usenet
  36700. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  36701. Newsgroups: comp.protocols.kermit.misc
  36702. Subject: Re: external kermit protocol
  36703. Date: 18 Oct 1994 22:03:47 GMT
  36704. Organization: Columbia University
  36705. Lines: 19
  36706. Message-Id: <381go3$69l@apakabar.cc.columbia.edu>
  36707. References: <380sjj$oq3@newshost.fiu.edu>
  36708. Nntp-Posting-Host: fdc.cc.columbia.edu
  36709. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  36710.  
  36711. In article <380sjj$oq3@newshost.fiu.edu> mtritt01@solix.fiu.edu (Merrill D.  
  36712. Tritt) writes:
  36713. > I prefer using a dos comm program and, unfortunately, it does not support 
  36714. > kermit.  I have found an external version of kermit that I can configure 
  36715. > to work with my software, but it is a bit old and does not support 
  36716. > today's connect rates.  Does anybody know if something like this still 
  36717. > exists?  The file was called PCKERMIT.
  36718. >  
  36719. MS-DOS Kermit 3.14 comes in three different versions: large, medium, and
  36720. small.  Any of these can be used as an external protocol by other DOS
  36721. programs via command-line argument passing.  The small version is 
  36722. particularly well-suited for this.
  36723.  
  36724. Anonymous ftp to kermit.columbia.edu, directory kermit/test/bin, binary
  36725. mode, file mstibm.zip.
  36726.  
  36727. I think PCKERMIT must be MS-DOS Kermit 1.x from 1982 or so...
  36728.  
  36729. - Frank
  36730.  
  36731. From news@columbia.edu Tue Oct 18 22:32:17 1994
  36732. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22592
  36733.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 18 Oct 1994 19:18:37 -0400
  36734. Received: by apakabar.cc.columbia.edu id AA12678
  36735.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 18 Oct 1994 19:18:35 -0400
  36736. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!hookup!usc!elroy.jpl.nasa.gov!lll-winken.llnl.gov!fnnews.fnal.gov!FNALO.FNAL.GOV!MORPHIS
  36737. From: morphis@FNALO.FNAL.GOV
  36738. Newsgroups: comp.protocols.kermit.misc
  36739. Subject: will Mac Kermit work on a powermac 7100/66
  36740. Date: 18 Oct 1994 22:32:17 GMT
  36741. Organization: Fermi National Accelerator Lab
  36742. Lines: 6
  36743. Message-Id: <381idh$lg2@fnnews.fnal.gov>
  36744. Reply-To: morphis@FNALO.FNAL.GOV
  36745. Nntp-Posting-Host: fnalo.fnal.gov
  36746. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  36747.  
  36748. It is brand new running version 7 (or 7.1) one of my users wants to make sure
  36749. it works before figuring out how to ftp it over.  (I have my hair pulled
  36750. out on other items of joy, so I delegated)
  36751.  
  36752. Robert Morphis
  36753. system@phys.niu.edu
  36754.  
  36755. From news@columbia.edu Tue Oct 18 23:27:11 1994
  36756. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22973
  36757.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 18 Oct 1994 19:27:14 -0400
  36758. Received: by apakabar.cc.columbia.edu id AA13310
  36759.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 18 Oct 1994 19:27:12 -0400
  36760. Path: news.columbia.edu!usenet
  36761. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  36762. Newsgroups: comp.protocols.kermit.misc
  36763. Subject: Re: will Mac Kermit work on a powermac 7100/66
  36764. Date: 18 Oct 1994 23:27:11 GMT
  36765. Organization: Columbia University
  36766. Lines: 13
  36767. Message-Id: <381lkf$cvs@apakabar.cc.columbia.edu>
  36768. References: <381idh$lg2@fnnews.fnal.gov>
  36769. Nntp-Posting-Host: fdc.cc.columbia.edu
  36770. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  36771.  
  36772. In article <381idh$lg2@fnnews.fnal.gov> morphis@FNALO.FNAL.GOV writes:
  36773. > It is brand new running version 7 (or 7.1) one of my users wants to make
  36774. > sure it works before figuring out how to ftp it over.  (I have my hair 
  36775. > pulled out on other items of joy, so I delegated)
  36776. Mac Kermit 0.991(190), dated 16 Aug 94, or later, will run on PowerMacs,
  36777. as well as under Mac OS 7.1.
  36778.  
  36779. Anonymous ftp to kermit.columbia.edu, directory kermit/test/text, text
  36780. (ascii) mode, files ckm190.hqx and ckmker.bwr.  The former is the Mac Kermit
  36781. app itself, to be un-hqx'd by BinHex 4.0.
  36782.  
  36783. - Frank
  36784.  
  36785. From news@columbia.edu Tue Oct 18 20:31:06 1994
  36786. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23730
  36787.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 18 Oct 1994 19:45:22 -0400
  36788. Received: by apakabar.cc.columbia.edu id AA14531
  36789.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 18 Oct 1994 19:45:21 -0400
  36790. Path: news.columbia.edu!panix!news.mathworks.com!europa.eng.gtefsd.com!library.ucla.edu!ihnp4.ucsd.edu!news.service.uci.edu!e4e.oac.uci.edu!amnewlan
  36791. From: amnewlan@e4e.oac.uci.edu (Anne M. NEWLAND)
  36792. Newsgroups: comp.protocols.kermit.misc
  36793. Subject: Kermit vs HyperAccess
  36794. Date: 18 Oct 1994 20:31:06 GMT
  36795. Organization: University of California, Irvine
  36796. Lines: 37
  36797. Distribution: usa
  36798. Message-Id: <381baa$26o@news.service.uci.edu>
  36799. Nntp-Posting-Host: e4e.oac.uci.edu
  36800. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  36801.  
  36802.  
  36803. Hi!
  36804.  
  36805. My sister has a toshiba notebook, and the name of her communication
  36806. software is HyperAccess, working with Windows. This program can do a lot of 
  36807. fancy things, but we
  36808. have failed miserably to discover how to accomplish simple things that I 
  36809. can do with my mac170 and MacKermit very easily! 
  36810.  
  36811. One thing is that once she has connected to e4e, she gets a black 
  36812. background with white letters which is really hard on the eyes, I am sure 
  36813. there must be a way of reversing that but we can't find it!
  36814.  
  36815. Another thing is that it is absolutely impossible to print a single 
  36816. message on her attached desk jet printer. We have done what is necessary in 
  36817. e4e, for the "attached ansi"
  36818. printer, we do "y" to print the message, etc, then her software print 
  36819. command but it
  36820. does not print the message, but the session!! We were driven mad...
  36821.  
  36822. Still another, if she wants to capture to a file, then it only captures 
  36823. the first page no matter how many pages you go through!
  36824.  
  36825. I told her maybe she should get Kermit, though I have been told it is not 
  36826. as easy to use as MacKermit. Do you know if it will run with Windows?
  36827.  
  36828. My MacKermit is so simple and easy to use!
  36829.  
  36830. Too bad her husband is stuck on PCs ! He could not find answers to these 
  36831. either.
  36832.  
  36833. If you have any hints for us or helpful info, we would greatly appreciate it!
  36834.  
  36835.  
  36836. Anne Newland
  36837. please reply to<amnewlan@uci.edu> if not too much trouble, thanks!
  36838.  
  36839.  
  36840. From news@columbia.edu Wed Oct 19 00:04:38 1994
  36841. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24566
  36842.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 18 Oct 1994 20:04:45 -0400
  36843. Received: by apakabar.cc.columbia.edu id AA15959
  36844.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 18 Oct 1994 20:04:44 -0400
  36845. Path: news.columbia.edu!usenet
  36846. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  36847. Newsgroups: comp.protocols.kermit.misc
  36848. Subject: Re: Kermit vs HyperAccess
  36849. Date: 19 Oct 1994 00:04:38 GMT
  36850. Organization: Columbia University
  36851. Lines: 49
  36852. Message-Id: <381nqm$fid@apakabar.cc.columbia.edu>
  36853. References: <381baa$26o@news.service.uci.edu>
  36854. Nntp-Posting-Host: fdc.cc.columbia.edu
  36855. Cc: fdc@columbia.edu, amnewlan@uci.edu
  36856.  
  36857. In article <381baa$26o@news.service.uci.edu> amnewlan@e4e.oac.uci.edu (Anne  
  36858. M. NEWLAND) writes:
  36859. > My sister has a toshiba notebook, and the name of her communication
  36860. > software is HyperAccess, working with Windows. This program can do a lot of 
  36861. > fancy things, but we
  36862. > have failed miserably to discover how to accomplish simple things that I 
  36863. > can do with my mac170 and MacKermit very easily! 
  36864. > One thing is that once she has connected to e4e, she gets a black 
  36865. > background with white letters which is really hard on the eyes, I am sure 
  36866. > there must be a way of reversing that but we can't find it!
  36867. I couldn't tell you how to make these things work in HyperAccess, but they
  36868. all work just fine in MS-DOS Kermit.  For example, MS-DOS Kermit has a
  36869. SET TERMINAL COLOR command that can be used to set the fore- and background
  36870. colors for terminal emulation.
  36871.  
  36872. > Another thing is that it is absolutely impossible to print a single 
  36873. > message on her attached desk jet printer. We have done what is necessary in 
  36874. > e4e, for the "attached ansi"
  36875. > printer, we do "y" to print the message, etc, then her software print 
  36876. > command but it
  36877. > does not print the message, but the session!! We were driven mad...
  36878. This too works just fine in MS-DOS Kermit -- printing starts at the next
  36879. characters after the "printer on" directive, and stops immediately upon
  36880. receipt of the "printer off" directive.
  36881.  
  36882. > Still another, if she wants to capture to a file, then it only captures 
  36883. > the first page no matter how many pages you go through!
  36884. Kermit gives you several ways to capture files: logging the session,
  36885. dumping screens, etc.  You have pretty much total control.
  36886.  
  36887. > I told her maybe she should get Kermit, though I have been told it is not 
  36888. > as easy to use as MacKermit. Do you know if it will run with Windows?
  36889. No, it is not as easy to use as Mac Kermit -- but it is a lot more
  36890. stable :-) (and has a lot more functionality).  It is a text-mode program,
  36891. and therefore maybe a little bit difficult for beginners to deal with.  But
  36892. it gives you a very high degree of control, rather than doing things by
  36893. magic and making it impossible for you change how it works because it knows
  36894. what is best for you.
  36895.  
  36896. MS-DOS Kermit comes with a very nice manual, which explains everything
  36897. very gently, with illustrations and lots of examples.
  36898.  
  36899. - Frank
  36900.  
  36901. From news@columbia.edu Wed Oct 19 00:05:24 1994
  36902. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24645
  36903.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 18 Oct 1994 20:05:28 -0400
  36904. Received: by apakabar.cc.columbia.edu id AA16020
  36905.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 18 Oct 1994 20:05:26 -0400
  36906. Path: news.columbia.edu!usenet
  36907. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  36908. Newsgroups: comp.protocols.kermit.misc
  36909. Subject: Re: Kermit vs HyperAccess
  36910. Date: 19 Oct 1994 00:05:24 GMT
  36911. Organization: Columbia University
  36912. Lines: 49
  36913. Message-Id: <381ns4$fki@apakabar.cc.columbia.edu>
  36914. References: <381baa$26o@news.service.uci.edu>
  36915. Nntp-Posting-Host: fdc.cc.columbia.edu
  36916. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  36917.  
  36918. In article <381baa$26o@news.service.uci.edu> amnewlan@e4e.oac.uci.edu (Anne  
  36919. M. NEWLAND) writes:
  36920. > My sister has a toshiba notebook, and the name of her communication
  36921. > software is HyperAccess, working with Windows. This program can do a lot of 
  36922. > fancy things, but we
  36923. > have failed miserably to discover how to accomplish simple things that I 
  36924. > can do with my mac170 and MacKermit very easily! 
  36925. > One thing is that once she has connected to e4e, she gets a black 
  36926. > background with white letters which is really hard on the eyes, I am sure 
  36927. > there must be a way of reversing that but we can't find it!
  36928. I couldn't tell you how to make these things work in HyperAccess, but they
  36929. all work just fine in MS-DOS Kermit.  For example, MS-DOS Kermit has a
  36930. SET TERMINAL COLOR command that can be used to set the fore- and background
  36931. colors for terminal emulation.
  36932.  
  36933. > Another thing is that it is absolutely impossible to print a single 
  36934. > message on her attached desk jet printer. We have done what is necessary in 
  36935. > e4e, for the "attached ansi"
  36936. > printer, we do "y" to print the message, etc, then her software print 
  36937. > command but it
  36938. > does not print the message, but the session!! We were driven mad...
  36939. This too works just fine in MS-DOS Kermit -- printing starts at the next
  36940. characters after the "printer on" directive, and stops immediately upon
  36941. receipt of the "printer off" directive.
  36942.  
  36943. > Still another, if she wants to capture to a file, then it only captures 
  36944. > the first page no matter how many pages you go through!
  36945. Kermit gives you several ways to capture files: logging the session,
  36946. dumping screens, etc.  You have pretty much total control.
  36947.  
  36948. > I told her maybe she should get Kermit, though I have been told it is not 
  36949. > as easy to use as MacKermit. Do you know if it will run with Windows?
  36950. No, it is not as easy to use as Mac Kermit -- but it is a lot more
  36951. stable :-) (and has a lot more functionality).  It is a text-mode program,
  36952. and therefore maybe a little bit difficult for beginners to deal with.  But
  36953. it gives you a very high degree of control, rather than doing things by
  36954. magic and making it impossible for you change how it works because it knows
  36955. what is best for you.
  36956.  
  36957. MS-DOS Kermit comes with a very nice manual, which explains everything
  36958. very gently, with illustrations and lots of examples.
  36959.  
  36960. - Frank
  36961.  
  36962. From news@columbia.edu Tue Oct 18 09:42:16 1994
  36963. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26019
  36964.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 18 Oct 1994 20:29:07 -0400
  36965. Received: by apakabar.cc.columbia.edu id AA17921
  36966.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 18 Oct 1994 20:29:06 -0400
  36967. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  36968. From: jrd@cc.usu.edu (Joe Doupnik)
  36969. Newsgroups: comp.protocols.kermit.misc
  36970. Subject: Re: Problem using Kermit 3.10...
  36971. Message-Id: <1994Oct18.154216.30342@cc.usu.edu>
  36972. Date: 18 Oct 94 15:42:16 MDT
  36973. References: <stimpe.31.000E834E@asc.upenn.edu>
  36974. Organization: Utah State University
  36975. Lines: 16
  36976. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  36977.  
  36978. In article <stimpe.31.000E834E@asc.upenn.edu>, stimpe@asc.upenn.edu (Thomas Timperio) writes:
  36979. > Help!  I've connected two modems to my ancient 8088 and am having a hard time 
  36980. > getting Kermit 3.10 to work.  The modems are both 2400 baud, both work on a 
  36981. > 486 a friend has.  On my machine, Kermit boots fine.  When I try to send 
  36982. > commands to the modem, they come across okay and I see the modem responding.  
  36983. > It will dial my school's modem pool and even connect, but no characters are 
  36984. > visible on the screen (i.e. no CONNECT message, no ATDT, nothing, although the 
  36985. > keyboard commands are registering).  If I set the duplex to half, then I can 
  36986. > see what I'm typing up until there is a connection.  Otherwise, there's no 
  36987. > change.
  36988. ------------
  36989.     Please obtain a copy of Kermit distribution file MSKERM.BWR
  36990. from directory kermit/a on kermit.columbia.edu. This discusses many 
  36991. common modem difficulties, including your 'talk but not listen' case.
  36992. Most likely problem: IRQ conflicts or at a value not assumed by Kermit.
  36993.     Joe D.
  36994.  
  36995. From news@columbia.edu Wed Oct 19 03:12:12 1994
  36996. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04893
  36997.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 18 Oct 1994 23:30:04 -0400
  36998. Received: by apakabar.cc.columbia.edu id AA00600
  36999.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 18 Oct 1994 23:30:03 -0400
  37000. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!hookup!usc!sdd.hp.com!col.hp.com!csn!tali.hsc.colorado.edu!boulder!csnews!alumni.cs.colorado.edu!wouk
  37001. From: wouk@alumni.cs.colorado.edu (Arthur Wouk)
  37002. Newsgroups: comp.protocols.kermit.misc
  37003. Subject: what gives a telebit indigestion?
  37004. Date: 19 Oct 1994 03:12:12 GMT
  37005. Organization: University of Colorado, Boulder
  37006. Lines: 29
  37007. Message-Id: <3822qc$ihr@csnews.cs.Colorado.EDU>
  37008. Nntp-Posting-Host: alumni.cs.colorado.edu
  37009. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  37010.  
  37011. i am running into a problem in trying to improve the speed of kermit
  37012. operating through telebit modems. i was trint=g to unprefix and then
  37013. set prefix via
  37014.  
  37015. set control unprefix all  
  37016. set control prefix 0 1 13 129 141
  37017.  
  37018. as suggested by frank da cruz in his postings.
  37019.  
  37020. i am running ckermit5A(189) at both ends, and have an att dataport
  37021. 14.4k modem at my end.
  37022.  
  37023. when i run true binary (.gz files) through this, i quickly run into
  37024. something which issues a ^C and stops the receiving kermit, when the
  37025. remote machine is a telebit. if i remove these two lines, there is no
  37026. problem. if i gunzip the file, and send it (ascii) through the binary
  37027. transmission, i get no problems.
  37028.  
  37029. anyone worked out what gives the telebit indigestion? or is my
  37030. dataport? 
  37031.  
  37032. i doubt the latter, because i have one path in to the remote machine
  37033. via a non-telebit 2400 baud modem, and that path has no problems. i
  37034. can use the two lines above and my efficiency goes from 75% to 83% on
  37035. binary downloads of binary data on this path.
  37036. -- 
  37037. --
  37038. arthur wouk 
  37039. internet: wouk@cs.colorado.edu
  37040.  
  37041. From news@columbia.edu Tue Oct 18 02:59:58 1994
  37042. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09118
  37043.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 19 Oct 1994 00:48:27 -0400
  37044. Received: by apakabar.cc.columbia.edu id AA05860
  37045.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 19 Oct 1994 00:48:26 -0400
  37046. Path: news.columbia.edu!sol.ctr.columbia.edu!newsxfer.itd.umich.edu!gatech!howland.reston.ans.net!news.sprintlink.net!news.primenet.com!usenet
  37047. From: jbishop@primenet.com (Jeff Bishop)
  37048. Newsgroups: comp.protocols.kermit.misc
  37049. Subject: msk314 beta 6 - whats new???
  37050. Date: Mon, 17 Oct 1994 19:59:58 -0700
  37051. Organization: Primenet
  37052. Lines: 4
  37053. Message-Id: <kepekuqcZVLK072yn@primenet.com>
  37054. Nntp-Posting-Host: usr2.primenet.com
  37055. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  37056.  
  37057. What is new in beta 6 of msk314??? The zip is 9KB bigger then beta 5, why?
  37058.  
  37059. Jeff
  37060.  
  37061.  
  37062. From news@columbia.edu Tue Oct 18 15:51:54 1994
  37063. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10430
  37064.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 19 Oct 1994 01:13:56 -0400
  37065. Received: by apakabar.cc.columbia.edu id AA06962
  37066.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 19 Oct 1994 01:13:54 -0400
  37067. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  37068. From: jrd@cc.usu.edu (Joe Doupnik)
  37069. Newsgroups: comp.protocols.kermit.misc
  37070. Subject: Re: beta 3.14 and printing
  37071. Message-Id: <1994Oct18.215155.30400@cc.usu.edu>
  37072. Date: 18 Oct 94 21:51:54 MDT
  37073. References: <381aeo$3hek@ns1.CC.Lehigh.EDU>
  37074. Organization: Utah State University
  37075. Lines: 18
  37076. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  37077.  
  37078. In article <381aeo$3hek@ns1.CC.Lehigh.EDU>, wsm0@ns1.CC.Lehigh.EDU (Wayne S. Mery) writes:
  37079. > The 3.14 kermit.upd file states:
  37080. >  . Revised printer support for better interoperation with Novell CAPTURE
  37081. > I'd like more information on what was improved.  Also, does the 
  37082. > improvement only apply to Novell or to does it apply equally to 
  37083. > direct attached printers?
  37084. ---------
  37085.     I'd say that if you don't have a problem then you don't have
  37086. a problem. Kermit always prints through DOS itself, or what appears
  37087. to be DOS on the other end of Interrupt 21h. Improvments include
  37088. more tenacious retrying and status checking to see if every byte does
  37089. indeed make it to DOS and that DOS approves. Plus closing the printer
  37090. channel after closing a capture file (to effectively send an EOJ
  37091. command to your NW server).
  37092.     Joe D.
  37093.  
  37094. From news@columbia.edu Wed Oct 19 12:24:22 1994
  37095. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21835
  37096.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 19 Oct 1994 08:24:26 -0400
  37097. Received: by apakabar.cc.columbia.edu id AA22001
  37098.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 19 Oct 1994 08:24:24 -0400
  37099. Path: news.columbia.edu!usenet
  37100. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  37101. Newsgroups: comp.protocols.kermit.misc
  37102. Subject: Re: msk314 beta 6 - whats new???
  37103. Date: 19 Oct 1994 12:24:22 GMT
  37104. Organization: Columbia University
  37105. Lines: 61
  37106. Message-Id: <38335m$lff@apakabar.cc.columbia.edu>
  37107. References: <kepekuqcZVLK072yn@primenet.com>
  37108. Nntp-Posting-Host: fdc.cc.columbia.edu
  37109. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  37110.  
  37111. In article <kepekuqcZVLK072yn@primenet.com> jbishop@primenet.com (Jeff  
  37112. Bishop) writes:
  37113. > What is new in beta 6 of msk314??? The zip is 9KB bigger then beta 5, why?
  37114. Hmmm...  Seems the announcement never made it.  Briefly:
  37115.  
  37116.  1. The program itself has a few fixes, plus a new feature -- which
  37117.     is still being worked on:  SET PORT FOSSIL 1..99.  Fossil driver
  37118.     users are encouraged to check this out and report back.
  37119.  
  37120.  2. User-settable Answerback message (see below).
  37121.  
  37122.  3. Some DOC files, etc, that were supposed to be there were missing,
  37123.     now they are where they are supposed to be.
  37124.  
  37125.  4. A couple new modem dialing scripts that just came in -- Dynalink
  37126.     1414, etc.
  37127.  
  37128. Lots of people have been asking to be able to set the answerback message,
  37129. the text that Kermit sends while it is in CONNECT mode and receives an
  37130. ENQ (Ctrl-E) character.  One point of view says this opens up all kinds of
  37131. security risks, the opposing point of view says that people should be able
  37132. to do what they want.  We are taking a middle ground.  Here's how it works.
  37133.  
  37134. SET TERMINAL ANSWERBACK { ON, OFF }
  37135.   Works as before.  This command simply enables or disables the sending
  37136.   of answerback messages in response to ENQ during terminal emulation.
  37137.   By default it is OFF, primarily because of what happens when you have
  37138.   a noisy connection.  If you want it on all the time, just put SET TERMINAL
  37139.   ANSWERBACK ON in your MSCUSTOM.INI file.
  37140.  
  37141. When TERMINAL ANSWERBACK is ON, the answerback message is:
  37142.  
  37143.   MS-DOS-KERMIT 314_VT320<CR>
  37144.  
  37145. In other words, the name of the program, the program version, and the
  37146. terminal type, followed by a carriage return.
  37147.  
  37148. SET TERMINAL ANSWERBACK MESSAGE [ <text> ]
  37149.   This is new.  If you give this command and specify some text, then the
  37150.   text is *appended* to the standard answerback message, preceded by an
  37151.   underscore, but before the carriage return, e.g.:
  37152.  
  37153.   MS-DOS-KERMIT 314_ANSI_123 Science Hall<CR>
  37154.  
  37155. If you give the SET TERMINAL ANSWERBACK MESSAGE command with no text, the
  37156. default message is restored.
  37157.  
  37158. We are doing it this way because we think it is important to have a standard
  37159. format for answerback messages that host applications can always depend
  37160. upon, from now on:
  37161.  
  37162.   program-name<space>version_emulation[_user-fields...]<CR>
  37163.  
  37164. You can play with this feature by telling MS-DOS Kermit to SET TERMINAL
  37165. ANSWERBACK ON, and then running C-Kermit on the host, and giving it the
  37166. following command:
  37167.  
  37168.   ask \%a \5
  37169.  
  37170. - Frank
  37171.  
  37172. From news@columbia.edu Wed Oct 19 12:40:52 1994
  37173. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22696
  37174.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 19 Oct 1994 08:40:55 -0400
  37175. Received: by apakabar.cc.columbia.edu id AA22995
  37176.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 19 Oct 1994 08:40:54 -0400
  37177. Path: news.columbia.edu!usenet
  37178. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  37179. Newsgroups: comp.protocols.kermit.misc
  37180. Subject: Re: what gives a telebit indigestion?
  37181. Date: 19 Oct 1994 12:40:52 GMT
  37182. Organization: Columbia University
  37183. Lines: 41
  37184. Message-Id: <38344k$me4@apakabar.cc.columbia.edu>
  37185. References: <3822qc$ihr@csnews.cs.Colorado.EDU>
  37186. Nntp-Posting-Host: fdc.cc.columbia.edu
  37187. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  37188.  
  37189. In article <3822qc$ihr@csnews.cs.Colorado.EDU> wouk@alumni.cs.colorado.edu  
  37190. (Arthur Wouk) writes:
  37191. > i am running into a problem in trying to improve the speed of kermit
  37192. > operating through telebit modems. i was trint=g to unprefix and then
  37193. > set prefix via
  37194. > set control unprefix all  
  37195. > set control prefix 0 1 13 129 141
  37196. > as suggested by frank da cruz in his postings.
  37197. > i am running ckermit5A(189) at both ends, and have an att dataport
  37198. > 14.4k modem at my end.
  37199. > when i run true binary (.gz files) through this, i quickly run into
  37200. > something which issues a ^C and stops the receiving kermit, when the
  37201. > remote machine is a telebit. if i remove these two lines, there is no
  37202. > problem. if i gunzip the file, and send it (ascii) through the binary
  37203. > transmission, i get no problems.
  37204. You should have read the documentation.  Two Ctrl-C's in a row will pop
  37205. a remote-mode C-Kermit (189 or earlier) out of packet mode, back to its
  37206. prompt.  This is stated clearly and repeatedly in the manual, "Using
  37207. C-Kermit", and in the ckcker.upd file that comes with version 5A(189).
  37208. This file also describes how to get around this: (a) Don't unprefix Ctrl-C
  37209. (3 or 131); (b) change the packet-mode cancellation character; (c) change 
  37210. the number of packet-mode cancellation characters required for cancellation.
  37211.  
  37212. In version 5A(190), we have increased the default number of consecutive 
  37213. Ctrl-C's needed to cancel packet mode from two to three.  This turns Ctrl-C
  37214. into a safe character, in most circumstances, because any run of three or
  37215. more characters in the file data will be encoded in a special way.  Thus,
  37216. you should not have to worry about Ctrl-C's any more.
  37217.  
  37218. - Frank
  37219. x
  37220. x
  37221. x
  37222. x
  37223. x
  37224. x
  37225.  
  37226. From news@columbia.edu Wed Oct 19 08:43:39 1994
  37227. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22836
  37228.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 19 Oct 1994 08:43:39 -0400
  37229. Received: by apakabar.cc.columbia.edu id AA23157
  37230.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 19 Oct 1994 08:43:38 -0400
  37231. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!europa.eng.gtefsd.com!howland.reston.ans.net!EU.net!sunic!news.funet.fi!news.csc.fi!news.helsinki.fi!cc.helsinki.fi!jaakola
  37232. From: jaakola@cc.helsinki.fi
  37233. Newsgroups: comp.protocols.kermit.misc
  37234. Subject: PLIP.COM packet driver and MS-Kermit 3.13
  37235. Date: 19 Oct 94 14:25:01 EET
  37236. Organization: University of Helsinki
  37237. Lines: 38
  37238. Message-Id: <1994Oct19.142501.1@cc.helsinki.fi>
  37239. Nntp-Posting-Host: hylka.helsinki.fi
  37240. Mime-Version: 1.0
  37241. Content-Type: text/plain; charset=ISO-8859-1
  37242. Content-Transfer-Encoding: 8bit
  37243. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  37244.  
  37245. I tried to connect two PC's with a MS-DOS 6.0 InterLnk cable, PLIP.COM
  37246. packet drivers and MS-Kermit 3.13. I'm an experienced packet driver &
  37247. TCP/IP & MS-Kermit user, but I couldn't get this setup working, so I'm
  37248. now asking for help.
  37249.  
  37250. The cable is almost OK: only the 25-25 pin connection is missing,
  37251. everything else is OK according to MS-DOS 6.0 InterLnk help and Linux
  37252. NET-3-HOWTO. I can connect those two PC's with MS-DOS 6.0 InterLnk.
  37253.  
  37254. I run the "PLIP 0x60 -t" cable test, and it shows (as Russ Nelson kindly
  37255. told me) that the cable is OK: it shows a "1" cycling in a round-robin
  37256. way those five digits displayed.
  37257.  
  37258. Then I start MS-Kermit 3.13 and issue commands:
  37259.   set port tcp/ip
  37260.   set tcp/ip address 1.1.1.1
  37261.   set tcp/ip host *              ; telnet server mode
  37262.   connect
  37263.  
  37264. and on the second computer:
  37265.  
  37266.   set port tcp/ip
  37267.   set tcp/ip address 1.1.1.2
  37268.   set tcp/ip host 1.1.1.1
  37269.   connect
  37270.  
  37271. but the connection cannot be established.
  37272.  
  37273. I recall reading some discussion about PLIP and MS-Kermit (was it about
  37274. a year ago?) that there was some inconsistency between them (incorrect
  37275. simulation of Ethernet or something like that). So, should MS-Kermit
  37276. 3.13 work with PLIP.COM?
  37277.  
  37278. (This MS-Kermit <-> MS-Kermit connection is just a test, the real
  37279. objective is to connect MS-Kermit or Trumpet Winsock to a Linux 1.1.35
  37280. box. So, please no "just use InterLnk/SLIP/plain serial" flames!)
  37281. --
  37282. Juhani Jaakola, jaakola@cc.helsinki.fi
  37283.  
  37284. From news@columbia.edu Wed Oct 19 05:15:43 1994
  37285. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26058
  37286.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 19 Oct 1994 09:31:32 -0400
  37287. Received: by apakabar.cc.columbia.edu id AA26412
  37288.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 19 Oct 1994 09:31:30 -0400
  37289. Newsgroups: comp.protocols.kermit.misc
  37290. Path: news.columbia.edu!panix!news.mathworks.com!uhog.mit.edu!sgiblab!sgigate.sgi.com!olivea!charnel.ecst.csuchico.edu!csusac!csus.edu!netcom.com!jhurwit
  37291. From: jhurwit@netcom.com (Jeffrey Hurwit)
  37292. Subject: Re: Buffer overflows? (was Re: Problem: VT100 "print through")
  37293. Message-Id: <jhurwitCxwMM7.AFv@netcom.com>
  37294. Organization: Organization?  What organization?
  37295. X-Newsreader: TIN [version 1.2 PL1]
  37296. References: <RATZLAFF.9.00104675@A1.MSCF.UPENN.EDU> <B.A.MCCAULEY.94Oct14144613@wcl-l.bham.ac.uk> <jhurwitCxp0xx.46w@netcom.com> <1994Oct15.101936.30019@cc.usu.edu>
  37297. Date: Wed, 19 Oct 1994 05:15:43 GMT
  37298. Lines: 73
  37299. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  37300.  
  37301. In article <1994Oct15.101936.30019@cc.usu.edu>, 
  37302. Joe Doupnik (jrd@cc.usu.edu) wrote:
  37303.  
  37304. >In article <jhurwitCxp0xx.46w@netcom.com>, jhurwit@netcom.com (Jeffrey Hurwit) writes:
  37305. >>     I use MS-Kermit over a modem and phone line to connect to my Unix
  37306. >>     account (this one that I'm posting from).  My mail agent has a
  37307. >>     print on PC command; I currently have it set to 'attached to ansi.'
  37308. >>     I'm having the same exact problem-- missing characters, or whole
  37309. >>     chunks of characters.
  37310. >> 
  37311. >>     I also can't have receive packets set larger than 1024 on my PC or
  37312. >>     I get some strange results when I try to transfer a file from my
  37313. >>     Unix account:  The transfer fails, and then when Kermit returns to
  37314. >>     the command prompt, I get strings of ^F^F^F^F across my screen,
  37315. >>     with an occassional buffer overflow error message.  I have to
  37316. >>     reboot my computer to stop it.
  37317. >> 
  37318. >>     I've assumed I'm having these problems because flow control is not
  37319. >>     working on my connection, and because I have only 640K of memory
  37320. >>     total on my PC.  (I'm sure my old modem doesn't have hardware flow
  37321. >>     control, so I have XON/XOFF set.)  But now I wonder if it's
  37322. >>     something else.
  37323. >-------------
  37324. >    Once again, please tell us the version and patch number of the Kermit 
  37325. >involved (we don't service non-Columbia Kermits) and whatever other 
  37326. >information you think might be important.
  37327.  
  37328.     Sorry 'bout that, chief! :)  I'm running MSK 3.13 PL 21 on a Data
  37329.     General/One 2T (remember me, Frank? :), which is a very early
  37330.     laptop with an 8088 processor running at (I think) ~13+ MHz.  It
  37331.     has 640K memory total (no upper memory), and no hard drive (two
  37332.     720K 3.5" diskette drives instead).  The OS is a Data General
  37333.     revision of MS-DOS 3.2.  The modem is internal; I know very little
  37334.     about it, other than it has a top speed of 2400 bps and is at least
  37335.     Hayes compatible.  It probably doesn't have hardware flow control,
  37336.     although I couldn't say for sure, as this PC came to me sans
  37337.     documentation.
  37338.  
  37339.     The C-Kermit on my Unix account is 5A(190), beta 21.
  37340.  
  37341. >    Is there a communications device between the far modem and your Unix
  37342. >box?
  37343.  
  37344.     I connect to my service provider through a POP (Point Of Presence). 
  37345.     To the best of my knowledge, all the POP's are connected via T1
  37346.     and/or other links to a central location, where the Unix boxes
  37347.     live.  There are 20 Unix boxes networked together, and fed by
  37348.     several network file servers.  A router connects me to one of these
  37349.     20 boxes right after modem handshake.  If more detail is necessary,
  37350.     I could write to tech support or even ask some of the more
  37351.     knowledgeable users at this site.
  37352.  
  37353. >    The ^F^F... effect could be from a corrupted kermit.exe file, from
  37354. >systems problems outside of Kermit, from memory management troubles in the 
  37355. >PC, whatnot. 
  37356.  
  37357.     It occurs to me that I was using the same PC and version of Kermit
  37358.     to transfer files back and forth on my last account, which was on
  37359.     an IBM 370 (TSO-Kermit).  I was able to use a packet length of 2K
  37360.     with no problems.
  37361.  
  37362. >    640KB is more than adequate to run Kermit (it's a small sized program).
  37363. >If you are using screen rollback for Connect mode then those screens are
  37364. >stored either in conventional memory (at about 4KB per screen) or in expanded
  37365. >memory.
  37366.  
  37367.     I have screen rollback enabled (I use it frequently).  The screens
  37368.     have to be stored in conventional memory, since that's all I have. 
  37369.     I used rollback on my last account, and again had no problems with
  37370.     larger packets.  There seems to be memory to spare, as I can push
  37371.     to DOS and run such utilities as PK(UN)ZIP.
  37372.  
  37373.                         Jeff
  37374.  
  37375. From news@columbia.edu Wed Oct 19 13:55:00 1994
  37376. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00441
  37377.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 19 Oct 1994 10:24:43 -0400
  37378. Received: by apakabar.cc.columbia.edu id AA00634
  37379.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 19 Oct 1994 10:24:42 -0400
  37380. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!usc!elroy.jpl.nasa.gov!lll-winken.llnl.gov!fnnews.fnal.gov!FNALO.FNAL.GOV!MORPHIS
  37381. From: morphis@FNALO.FNAL.GOV
  37382. Newsgroups: comp.protocols.kermit.misc
  37383. Subject: Re: will Mac Kermit work on a powermac 7100/66
  37384. Date: 19 Oct 1994 13:55:00 GMT
  37385. Organization: Fermi National Accelerator Lab
  37386. Lines: 1
  37387. Message-Id: <3838fk$dtt@fnnews.fnal.gov>
  37388. References: <381idh$lg2@fnnews.fnal.gov>,<381lkf$cvs@apakabar.cc.columbia.edu>
  37389. Reply-To: morphis@FNALO.FNAL.GOV
  37390. Nntp-Posting-Host: fnalo.fnal.gov
  37391. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  37392.  
  37393. Thanks!
  37394.  
  37395. From news@columbia.edu Wed Oct 19 14:21:33 1994
  37396. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03136
  37397.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 19 Oct 1994 11:01:15 -0400
  37398. Received: by apakabar.cc.columbia.edu id AA03420
  37399.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 19 Oct 1994 11:01:14 -0400
  37400. Newsgroups: comp.protocols.kermit.misc
  37401. From: Mike@childsoc.demon.co.uk (Michael Bernardi)
  37402. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!europa.eng.gtefsd.com!howland.reston.ans.net!pipex!demon!childsoc.demon.co.uk!Mike
  37403. Subject: MS-Kermit 3.14 edition of book/manual?
  37404. Organization: The Children's Society
  37405. Reply-To: Michael Bernardi <Mike@childsoc.demon.co.uk>
  37406. X-Newsreader: Demon Internet Simple News v1.29
  37407. Lines: 9
  37408. Date: Wed, 19 Oct 1994 14:21:33 +0000
  37409. Message-Id: <782576493snz@childsoc.demon.co.uk>
  37410. Sender: usenet@demon.co.uk
  37411. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  37412.  
  37413. Once the new version of MS-Kermit is out of beta, will a 3rd version of
  37414. the excellent book "Using MS-DOS Kermit" appear?
  37415. It has after all been 3 years and 3 revisions since its publication.
  37416. Mike
  37417. I bought the original first edition.
  37418. -- 
  37419.  Michael Bernardi        mike@childsoc.demon.co.uk (Internet) | Making lives
  37420.  The Children's Society, Edward Rudolf House, Margery Street, | worth living
  37421.  London, WC1X 0JL, UK    Voice: +44 171 837 4299     Charity Reg. No. 221124
  37422.  
  37423. From news@columbia.edu Wed Oct 19 15:14:16 1994
  37424. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03976
  37425.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 19 Oct 1994 11:14:28 -0400
  37426. Received: by apakabar.cc.columbia.edu id AA04326
  37427.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 19 Oct 1994 11:14:27 -0400
  37428. Path: news.columbia.edu!usenet
  37429. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  37430. Newsgroups: comp.protocols.kermit.misc
  37431. Subject: Re: MS-Kermit 3.14 edition of book/manual?
  37432. Date: 19 Oct 1994 15:14:16 GMT
  37433. Organization: Columbia University
  37434. Lines: 16
  37435. Message-Id: <383d48$46t@apakabar.cc.columbia.edu>
  37436. References: <782576493snz@childsoc.demon.co.uk>
  37437. Nntp-Posting-Host: fdc.cc.columbia.edu
  37438. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  37439.  
  37440. In article <782576493snz@childsoc.demon.co.uk> Mike@childsoc.demon.co.uk  
  37441. (Michael Bernardi) writes:
  37442. > Once the new version of MS-Kermit is out of beta, will a 3rd version of
  37443. > the excellent book "Using MS-DOS Kermit" appear?
  37444. > It has after all been 3 years and 3 revisions since its publication.
  37445. >
  37446. Sorry, no, there is not a new edition of "Using MS-DOS Kermit" for version
  37447. 3.14.  As with 3.12 and 3.13, you should use the Second Edition of the book
  37448. in conjunction with the KERMIT.UPD file on the diskette.  We would like to
  37449. produce a new edition of the book with every release of the software, but
  37450. it is not possible.  The version after 3.14 will probably be accompanied by
  37451. a new edition.
  37452.  
  37453. - Frank
  37454.  
  37455.  
  37456.  
  37457. From news@columbia.edu Wed Oct 19 16:23:30 1994
  37458. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13175
  37459.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 19 Oct 1994 13:19:56 -0400
  37460. Received: by apakabar.cc.columbia.edu id AA15008
  37461.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 19 Oct 1994 13:19:54 -0400
  37462. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!europa.eng.gtefsd.com!howland.reston.ans.net!vixen.cso.uiuc.edu!lewart
  37463. From: lewart@rsm1.physics.uiuc.edu (Daniel S. Lewart)
  37464. Newsgroups: comp.protocols.kermit.misc
  37465. Subject: cmsg cancel <lewart.782582799@rsm1.physics.uiuc.edu>
  37466. Control: cancel <lewart.782582799@rsm1.physics.uiuc.edu>
  37467. Date: 19 Oct 1994 16:23:30 GMT
  37468. Organization: University of Illinois at Urbana
  37469. Lines: 3
  37470. Message-Id: <383h62$8va@vixen.cso.uiuc.edu>
  37471. Nntp-Posting-Host: rsm1.physics.uiuc.edu
  37472. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  37473.  
  37474. cancel <lewart.782582799@rsm1.physics.uiuc.edu> in newsgroup comp.protocols.kermit.misc
  37475.  
  37476. This article was cancelled from within NN version 6.5.0 (NOV)
  37477.  
  37478. From news@columbia.edu Wed Oct 19 16:00:00 1994
  37479. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13362
  37480.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 19 Oct 1994 13:23:28 -0400
  37481. Received: by apakabar.cc.columbia.edu id AA15255
  37482.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 19 Oct 1994 13:23:27 -0400
  37483. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!europa.eng.gtefsd.com!howland.reston.ans.net!vixen.cso.uiuc.edu!usenet
  37484. From: d-lewart@uiuc.edu (Daniel S. Lewart)
  37485. Newsgroups: comp.protocols.kermit.misc
  37486. Subject: 3.14/Beta-6:  Answerback, Editing, Icon, Underscore, etc.
  37487. Date: 19 Oct 94 16:00:00 GMT
  37488. Organization: DSL Consulting
  37489. Lines: 26
  37490. Message-Id: <383hca$9fg@vixen.cso.uiuc.edu>
  37491. Reply-To: d-lewart@uiuc.edu (Daniel S. Lewart)
  37492. Nntp-Posting-Host: rsm1.physics.uiuc.edu
  37493. X-Newsreader: NN version 6.5.0 (NOV)
  37494. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  37495.  
  37496. The standard answerback prefix can be defeated with the following or
  37497. a variation thereof:
  37498.     set terminal answerback on
  37499.     set terminal answerback \21Miscreant_Command_Here
  37500. However, I don't think the answerback security hole is any worse then
  37501. the ability to redefine keys with "set key".
  37502.  
  37503. I noticed that the context-sensitive help (?) doesn't abbreviate the
  37504. already typed words and word completion (Esc) adds the trailing space.
  37505. This is how command-line editing used to be and that is how I like it.
  37506.  
  37507. Is the KERMIT.ICO Windows icon file needed anymore?  It is not in mstibm.zip.
  37508.  
  37509. The command is "set terminal underscore", but "show terminal" says
  37510. "Term underline color".  These should be consistent.
  37511.  
  37512. There is one particularly strange thing that I've seen, but I can't
  37513. reproduce.  Occasionally, the screen refreshes locally (it is too fast
  37514. to be remote) which I notice as a ripple quickly moving down the display.
  37515.  
  37516. Kermit still runs wonderfully on my ATT 6300.  Kudos to JRD and FDC for
  37517. their Herculean work!
  37518.  
  37519. Cheers,
  37520. Daniel Lewart
  37521. d-lewart@uiuc.edu
  37522.  
  37523. From news@columbia.edu Wed Oct 19 17:31:40 1994
  37524. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13980
  37525.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 19 Oct 1994 13:31:43 -0400
  37526. Received: by apakabar.cc.columbia.edu id AA15999
  37527.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 19 Oct 1994 13:31:42 -0400
  37528. Path: news.columbia.edu!konichiwa.cc.columbia.edu!ycl6
  37529. From: ycl6@columbia.edu (Yeechang Lee)
  37530. Newsgroups: comp.protocols.kermit.misc
  37531. Subject: Re: 3.14/Beta-6:  Answerback, Editing, Icon, Underscore, etc.
  37532. Date: 19 Oct 1994 17:31:40 GMT
  37533. Organization: Trilateral Commission, Columbia University student chapter
  37534. Lines: 12
  37535. Message-Id: <383l5s$fjt@apakabar.cc.columbia.edu>
  37536. References: <383hca$9fg@vixen.cso.uiuc.edu>
  37537. Nntp-Posting-Host: konichiwa-cddi.cc.columbia.edu
  37538. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  37539.  
  37540. In article <383hca$9fg@vixen.cso.uiuc.edu>,
  37541. Daniel S. Lewart <d-lewart@uiuc.edu> wrote:
  37542. |There is one particularly strange thing that I've seen, but I can't
  37543. |reproduce.  Occasionally, the screen refreshes locally (it is too fast
  37544. |to be remote) which I notice as a ripple quickly moving down the display.
  37545.  
  37546. If I SET TERM VIDEO-WRITING BIOS on my Tandy XT then screen updates will be
  37547. a ripple.
  37548. ---  _________________________________   o   ______________________________
  37549.      Yeechang Lee  (ycl6@columbia.edu) o   o a New Yorker bred, if not born
  37550.      Columbia University/New York City \_O_/ Nevada Las Vegas Mission 92-94
  37551.      I'm a peon for Gersten, Savage, Kaplowitz, & Curtin, 575 Lexington Ave
  37552.  
  37553. From news@columbia.edu Wed Oct 19 17:38:02 1994
  37554. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14381
  37555.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 19 Oct 1994 13:38:06 -0400
  37556. Received: by apakabar.cc.columbia.edu id AA16458
  37557.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 19 Oct 1994 13:38:05 -0400
  37558. Path: news.columbia.edu!usenet
  37559. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  37560. Newsgroups: comp.protocols.kermit.misc
  37561. Subject: Re: 3.14/Beta-6:  Answerback, Editing, Icon, Underscore, etc.
  37562. Date: 19 Oct 1994 17:38:02 GMT
  37563. Organization: Columbia University
  37564. Lines: 29
  37565. Message-Id: <383lhq$g1j@apakabar.cc.columbia.edu>
  37566. References: <383hca$9fg@vixen.cso.uiuc.edu>
  37567. Nntp-Posting-Host: fdc.cc.columbia.edu
  37568. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  37569.  
  37570. In article <383hca$9fg@vixen.cso.uiuc.edu> d-lewart@uiuc.edu (Daniel S.  
  37571. Lewart) writes:
  37572. > The standard answerback prefix can be defeated with the following or
  37573. > a variation thereof:
  37574. >     set terminal answerback on
  37575. >     set terminal answerback \21Miscreant_Command_Here
  37576. >
  37577. Not really.  All the characters are still sent.  It's up to the host
  37578. application how to interpret them.
  37579.  
  37580. > Is the KERMIT.ICO Windows icon file needed anymore?  It is not in 
  37581. > mstibm.zip.
  37582. No, it's not needed.  We are not supplying a Windows icon for MS-DOS
  37583. Kermit.  Just pick one out for yourself from the little collection of
  37584. free icons that comes with Windows -- see KERMIT.HLP for instructions.
  37585.  
  37586. > There is one particularly strange thing that I've seen, but I can't
  37587. > reproduce.  Occasionally, the screen refreshes locally (it is too fast
  37588. > to be remote) which I notice as a ripple quickly moving down the display.
  37589. I see this too on my SVGA, but it has nothing to do with Kermit -- it
  37590. happens at random times no matter what application is running.
  37591.  
  37592. - Frank
  37593. x
  37594. x
  37595. x
  37596. x
  37597.  
  37598. From news@columbia.edu Wed Oct 19 06:45:20 1994
  37599. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22173
  37600.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 19 Oct 1994 15:21:29 -0400
  37601. Received: by apakabar.cc.columbia.edu id AA06997
  37602.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 19 Oct 1994 15:21:27 -0400
  37603. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!europa.eng.gtefsd.com!newsxfer.itd.umich.edu!gatech!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  37604. From: jrd@cc.usu.edu (Joe Doupnik)
  37605. Newsgroups: comp.protocols.kermit.misc
  37606. Subject: Re: Buffer overflows? (was Re: Problem: VT100 "print through")
  37607. Message-Id: <1994Oct19.124520.30473@cc.usu.edu>
  37608. Date: 19 Oct 94 12:45:20 MDT
  37609. References: <RATZLAFF.9.00104675@A1.MSCF.UPENN.EDU>  <jhurwitCxwMM7.AFv@netcom.com>
  37610. Organization: Utah State University
  37611. Lines: 33
  37612. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  37613.  
  37614. In article <jhurwitCxwMM7.AFv@netcom.com>, jhurwit@netcom.com (Jeffrey Hurwit) writes:
  37615. > In article <1994Oct15.101936.30019@cc.usu.edu>, 
  37616. > Joe Doupnik (jrd@cc.usu.edu) wrote:
  37617. >>In article <jhurwitCxp0xx.46w@netcom.com>, jhurwit@netcom.com (Jeffrey Hurwit) writes:
  37618. >>>     I use MS-Kermit over a modem and phone line to connect to my Unix
  37619. >>>     account (this one that I'm posting from).  My mail agent has a
  37620. >>>     print on PC command; I currently have it set to 'attached to ansi.'
  37621. >>>     I'm having the same exact problem-- missing characters, or whole
  37622. >>>     chunks of characters.
  37623. >>> 
  37624. >>>     I also can't have receive packets set larger than 1024 on my PC or
  37625. >>>     I get some strange results when I try to transfer a file from my
  37626. >>>     Unix account:  The transfer fails, and then when Kermit returns to
  37627. >>>     the command prompt, I get strings of ^F^F^F^F across my screen,
  37628. >>>     with an occassional buffer overflow error message.  I have to
  37629. >>>     reboot my computer to stop it.
  37630. >>> 
  37631. >>>     I've assumed I'm having these problems because flow control is not
  37632. >>>     working on my connection, and because I have only 640K of memory
  37633. >>>     total on my PC.  (I'm sure my old modem doesn't have hardware flow
  37634. >>>     control, so I have XON/XOFF set.)  But now I wonder if it's
  37635. >>>     something else.
  37636. >>-------------
  37637.     I presume you are using DG terminal emulation, because I've received
  37638. another report some time ago with a Connect screen ^F^F symptom. I suspect it 
  37639. is coming from the remote host, as LOG SESSION can verify one way or the other.
  37640.     Otherwise if these things really occur on the Kermit command line
  37641. and there are no script commands being executed at that time then it's a
  37642. problem of some mysterious kind. MSK 3.14 has a uni-directional flow control
  37643. option (SET FLOW) so it may throttle a remote host and still let the host send 
  37644. XON/XOFF codes as data rather than as flow control signals.
  37645.         Joe D.
  37646.  
  37647. From news@columbia.edu Wed Oct 19 16:33:22 1994
  37648. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28029
  37649.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 19 Oct 1994 16:33:22 -0400
  37650. Received: by apakabar.cc.columbia.edu id AA13362
  37651.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 19 Oct 1994 16:33:19 -0400
  37652. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!europa.eng.gtefsd.com!howland.reston.ans.net!pipex!sunic!ugle.unit.no!trane.uninett.no!due.uninett.no!debet!xedb_gene
  37653. From: xedb_gene@debet.nhh.no (Gene Scharmann)
  37654. Newsgroups: comp.protocols.kermit.misc
  37655. Subject: MSK 3.14 beta-3: Set Term Rollback defaults to ON
  37656. Message-Id: <1994Oct19.104010.2269@debet>
  37657. Date: 19 Oct 94 10:40:10 MET
  37658. Organization: Norwegian School of Economics
  37659. Lines: 11
  37660. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  37661.  
  37662. MSK 3.14 Beta-3:
  37663.     The default option for SET TERM ROLLBACK is supposed to be OFF,
  37664. even the '?' help functions says so:
  37665. Rollback  (undo screen roll back before writing new chars,default=off)
  37666.  
  37667. But in 3.14-Beta3 it is default on.  Don't know if this was planned, or
  37668. a 'mite'
  37669. --
  37670. Gene Scharmann, SYSOP Sotrainbow OPUS BBS Bergen NORWAY
  37671.     FidoNet: 2:211/3 (+47 55 31.09.91) 14.4KBaud
  37672.     E-Mail:  xedb_gene@debet.nhh.no
  37673.  
  37674. From news@columbia.edu Wed Oct 19 21:02:50 1994
  37675. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00836
  37676.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 19 Oct 1994 17:02:55 -0400
  37677. Received: by apakabar.cc.columbia.edu id AA15817
  37678.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 19 Oct 1994 17:02:54 -0400
  37679. Path: news.columbia.edu!usenet
  37680. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  37681. Newsgroups: comp.protocols.kermit.misc
  37682. Subject: Re: MSK 3.14 beta-3: Set Term Rollback defaults to ON
  37683. Date: 19 Oct 1994 21:02:50 GMT
  37684. Organization: Columbia University
  37685. Lines: 19
  37686. Message-Id: <3841hq$fe2@apakabar.cc.columbia.edu>
  37687. References: <1994Oct19.104010.2269@debet>
  37688. Nntp-Posting-Host: fdc.cc.columbia.edu
  37689. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  37690.  
  37691. In article <1994Oct19.104010.2269@debet> xedb_gene@debet.nhh.no (Gene  
  37692. Scharmann) writes:
  37693. > MSK 3.14 Beta-3:
  37694. >     The default option for SET TERM ROLLBACK is supposed to be OFF,
  37695. > even the '?' help functions says so:
  37696. > Rollback  (undo screen roll back before writing new chars,default=off)
  37697. > But in 3.14-Beta3 it is default on.  Don't know if this was planned, or
  37698. > a 'mite'
  37699. >
  37700. Neither, I hope.  If you start Kermit with "-f nul" on the command line
  37701. to prevent execution of any initialization files, you should find that
  37702. SET TERMINAL ROLL is indeed OFF, as revealed not only by SHOW TERMINAL,
  37703. but also by experiment.  Ditto if Kermit is started with the MSKERMIT.INI
  37704. and MSCUSTOM.INI that are distributed with it.
  37705.  
  37706. - Frank
  37707.  
  37708. x
  37709. x
  37710.  
  37711. From news@columbia.edu Wed Oct 19 03:53:14 1994
  37712. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01462
  37713.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 19 Oct 1994 17:10:13 -0400
  37714. Received: by apakabar.cc.columbia.edu id AA16318
  37715.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 19 Oct 1994 17:10:12 -0400
  37716. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  37717. From: jrd@cc.usu.edu (Joe Doupnik)
  37718. Newsgroups: comp.protocols.kermit.misc
  37719. Subject: Re: msk314 beta 6 - whats new???
  37720. Message-Id: <1994Oct19.095314.30446@cc.usu.edu>
  37721. Date: 19 Oct 94 09:53:14 MDT
  37722. References: <kepekuqcZVLK072yn@primenet.com>
  37723. Organization: Utah State University
  37724. Lines: 8
  37725. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  37726.  
  37727. In article <kepekuqcZVLK072yn@primenet.com>, jbishop@primenet.com (Jeff Bishop) writes:
  37728. > What is new in beta 6 of msk314??? The zip is 9KB bigger then beta 5, why?
  37729. ------
  37730.     I hope I never see another msg like this here. If you are really
  37731. testing then please send reports, if not then please wait for the final
  37732. release.
  37733.     Joe D. 
  37734.  
  37735. From news@columbia.edu Wed Oct 19 07:43:30 1994
  37736. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02330
  37737.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 19 Oct 1994 17:24:46 -0400
  37738. Received: by apakabar.cc.columbia.edu id AA17644
  37739.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 19 Oct 1994 17:24:44 -0400
  37740. Newsgroups: comp.protocols.kermit.misc
  37741. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!yeshua.marcam.com!charnel.ecst.csuchico.edu!csusac!csus.edu!netcom.com!jhurwit
  37742. From: jhurwit@netcom.com (Jeffrey Hurwit)
  37743. Subject: Re: Buffer overflows? (was Re: Problem: VT100 "print through")
  37744. Message-Id: <jhurwitCxwtGI.2zx@netcom.com>
  37745. Organization: Organization?  What organization?
  37746. X-Newsreader: TIN [version 1.2 PL1]
  37747. References: <jhurwitCxp0xx.46w@netcom.com> <37p0k0$q59@apakabar.cc.columbia.edu>
  37748. Date: Wed, 19 Oct 1994 07:43:30 GMT
  37749. Lines: 162
  37750. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  37751.  
  37752. In article <37p0k0$q59@apakabar.cc.columbia.edu>, 
  37753. Frank da Cruz (fdc@fdc.cc.columbia.edu) wrote:
  37754.  
  37755. >In article <jhurwitCxp0xx.46w@netcom.com> jhurwit@netcom.com
  37756. >(Jeffrey Hurwit) writes:
  37757. >>
  37758. >>     I use MS-Kermit over a modem and phone line to connect to my Unix
  37759. >>     account (this one that I'm posting from).  My mail agent has a
  37760. >>     print on PC command; I currently have it set to 'attached to ansi.'
  37761. >>     I'm having the same exact problem-- missing characters, or whole
  37762. >>     chunks of characters.
  37763. >> 
  37764. >I can't emphasize this strongly enough:  You must have the most effective
  37765. >means of flow control that is available to you enabled at every interface
  37766. >along the communication path -- from the host application (Pine?) all the
  37767. >way to the printer.
  37768.  
  37769.     Yes, Pine.  It is likely that my modem doesn't have hareware flow
  37770.     control, so XON/XOFF is probably the *only* type of flow control
  37771.     available between my host and my PC.  This is the setting I use in
  37772.     my MSKERMIT.INI.  I know that I can stop the host from sending to
  37773.     my screen with ^S and restart it with ^Q while in terminal mode,
  37774.     but I don't know if Pine will respond to these characters while
  37775.     printing, or even if C-Kermit is responding to them during a file
  37776.     transfer.
  37777.  
  37778. >>     I also can't have receive packets set larger than 1024 on my PC or
  37779. >>     I get some strange results when I try to transfer a file from my
  37780. >>     Unix account:  The transfer fails, and then when Kermit returns to
  37781. >>     the command prompt, I get strings of ^F^F^F^F across my screen,
  37782. >>     with an occassional buffer overflow error message.  I have to
  37783. >>     reboot my computer to stop it.
  37784. >> 
  37785. >This is pretty bizarre -- I've never seen such a thing, and can only
  37786. >speculate that this is one of those cases where DOS turns off interrupts
  37787. >to write to a (slow) disk, after which matters quickly disintegrate.
  37788.  
  37789.     This is entirely possible.  I haven't a clue about how interrupts
  37790.     work, but my disk drives (both 720K 3.5" - I have no hard drive)
  37791.     are certainly slow.  On my last account (on an IBM 370), TSO-Kermit
  37792.     could send 2K packets with no trouble on the PC end.  Even with a
  37793.     text file, where a 2K packet writes about 2K to the disk, there was
  37794.     no trouble.
  37795.  
  37796. >>     I've assumed I'm having these problems because flow control is not
  37797. >>     working on my connection, and because I have only 640K of memory
  37798. >>     total on my PC.  (I'm sure my old modem doesn't have hardware flow
  37799. >>     control, so I have XON/XOFF set.)  But now I wonder if it's
  37800. >>     something else.
  37801. >> 
  37802. >Let's look at this connection in detail to illustrate all the things that
  37803. >might go wrong, starting from the printer and working back to the host
  37804. >application.
  37805.  
  37806. >The printer should be a parallel printer.
  37807.  
  37808.     It is.
  37809.  
  37810. >When Kermit receives material to be printed, it uses DOS services to send
  37811. >it to the printer.  If Kermit gets the data intact, but the printer fails
  37812. >to print it, then it's a problem with the printer itself or the DOS
  37813. >printer driver, in which case, there is little that Kermit can do to help.
  37814.  
  37815.     I've used the printer with DOS (copy filename.txt prn), with a word
  37816.     processor to print complex documents (eg. text and graphics), and
  37817.     with a GIF printer.  It works reliably with all these.
  37818.  
  37819. >That raises the question: under what circumstances could Kermit itself
  37820. >lose incoming data?  There are (at least) two fundamental reasons this
  37821. >could happen: (1) interrupt conflicts, and (2) lack of flow control.
  37822. >Reason (1) was mentioned above.  If you have a slow disk and the disk
  37823. >driver masks off COM port and/or timer interrupts during disk writes, your
  37824. >only recourse is to fool with the BUFFERS= parameter in CONFIG.SYS -- less
  37825. >disk buffering could mean shorter amounts of time during which COM port
  37826. >interrupts are disabled.  Of course, newer, faster PCs are less likely to
  37827. >have this problem (but there are no guarantees).
  37828.  
  37829.     I have BUFFERS=10.  Could this be too high?  I'll experiment with
  37830.     it.
  37831.  
  37832. >Lack of flow control is the more likely culprit.  You say your modem does
  37833. >not offer hardware flow control so you have to use Xon/Xoff.  So you tell
  37834. >Kermit to "set flow xon/xoff".
  37835.  
  37836.     Yes, I have this set.
  37837.  
  37838. >Xon/Xoff is a "protocol" like any other, and requires two players, just
  37839. >like a game of catch.  The ball is an ordinary data character, Ctrl-S
  37840. >(Xoff) or Ctrl-Q (Xon), mixed in with all the other data characters.  Who
  37841. >and where is the other player?  (What if there IS no other player?
  37842. >The first thing to check is whether somebody, somewhere along the
  37843. >communication path ALSO has Xon/Xoff enabled.  If not, then after you
  37844. >throw your first ball, you'll never get it back!)
  37845.  
  37846. >The farther away the other player is, the greater the chance of error:
  37847. >propogation delays, noise, etc, become increasingly dominating factors
  37848. >with distance.
  37849.  
  37850.     Propagation delays is a likely possibility.  It can take up to
  37851.     several minutes, at times, for characters typed into an editor (for
  37852.     example) to echo back on the screen.  Sometimes this is because the
  37853.     host I'm on is carrying a high load average, but I suspect that at
  37854.     other times it is because the link between my POP and my host is
  37855.     near saturation.  Noise is another-- I experience occasional bursts
  37856.     of garbage characters on the screen, and sometimes have to call
  37857.     back to get a cleaner connection.
  37858.  
  37859.     However, when neither of these is a problem, printing from Pine and
  37860.     receiving packets on my PC larger than 1K during a file transfer
  37861.     still is.
  37862.  
  37863. >So the trick, is to cut down on the propogation delay:
  37864.  
  37865. >  Be sure you have enabled Xon/Xoff at the place that is closest to
  37866. >  your PC, and that that "place" is then capable of propogating flow
  37867. >  control "upstream".
  37868.  
  37869. >Suppose your modem supports "local Xon/Xoff".
  37870.  
  37871.     I doubt that mine does.  I think it's probably transparant to ^S
  37872.     and ^Q.  Since I don't have a manual for it, I can't be sure.  I
  37873.     can make my modem output its profile (showing settings).  I looked
  37874.     these up in the Hayes Technical refernece Manual, in an effort to
  37875.     identify its features.  Local Xon/Xoff was not among them.
  37876.  
  37877. >Another alternative is to position your flow-control partner farther
  37878. >upstream, for example, at the host operating system.  If you are connected
  37879. >directly to a serial port on the host computer, this is your only choice
  37880. >anyway.  But if you are coming in through a terminal server or any kind of
  37881. >network, this will increase the propogation delay siginificantly.
  37882.  
  37883.     I think the host is as close as I can get.
  37884.  
  37885. >To enable Xon/Xoff flow control in UNIX (often called Start/Stop flow
  37886. >control in UNIX documentation), the command is usually something like:
  37887.  
  37888. >  stty ixon ixoff -ixany
  37889.  
  37890.     I checked my settings (stty -a), and found these to already be set.
  37891.  
  37892. >> >Try using SET PRINTER to direct output to a file. Exit kermit and
  37893. >> >print the file. If the same error occours then its probably a s/w
  37894. >> >problem not a handshake problem.
  37895. >> 
  37896. >>     I usually "export" my mail into a file, then do a regular file
  37897. >>     transfer.  But this is a pain in the neck.  I'd also like to try
  37898. >>     packet sizes of around 2K to see if that speeds up file transfers. 
  37899. >> 
  37900. >You misunderstood the suggestion.  Print from your host mail application
  37901. >in the normal way, but tell Kermit to SET PRINTER FOO.BAR, which routes
  37902. >printer output to a file on your PC's disk.  This will eliminate flow
  37903. >control problems between the PC printer driver and the printer itself,
  37904. >if that is what is causing the problem.  Then you can print the file
  37905. >later, using the DOS PRINT command.
  37906.  
  37907.     I understood.  I tried this just now, with a fairly large piece of
  37908.     mail-- 'thought it might make a good test.  There was no loss of
  37909.     characters when I set printer to a file on disk.  Does this help
  37910.     narrow down what's going wrong?
  37911.  
  37912.                         Jeff
  37913.  
  37914.  
  37915. From news@columbia.edu Wed Oct 19 22:46:59 1994
  37916. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07880
  37917.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 19 Oct 1994 18:47:04 -0400
  37918. Received: by apakabar.cc.columbia.edu id AA24029
  37919.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 19 Oct 1994 18:47:02 -0400
  37920. Path: news.columbia.edu!usenet
  37921. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  37922. Newsgroups: comp.protocols.kermit.misc
  37923. Subject: Re: Buffer overflows? (was Re: Problem: VT100 "print through")
  37924. Date: 19 Oct 1994 22:46:59 GMT
  37925. Organization: Columbia University
  37926. Lines: 31
  37927. Message-Id: <3847l3$ner@apakabar.cc.columbia.edu>
  37928. References: <jhurwitCxwtGI.2zx@netcom.com>
  37929. Nntp-Posting-Host: fdc.cc.columbia.edu
  37930. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  37931.  
  37932. > >You misunderstood the suggestion.  Print from your host mail application
  37933. > >in the normal way, but tell Kermit to SET PRINTER FOO.BAR, which routes
  37934. > >printer output to a file on your PC's disk.  This will eliminate flow
  37935. > >control problems between the PC printer driver and the printer itself,
  37936. > >if that is what is causing the problem.  Then you can print the file
  37937. > >later, using the DOS PRINT command.
  37938. >     I understood.  I tried this just now, with a fairly large piece of
  37939. >     mail-- 'thought it might make a good test.  There was no loss of
  37940. >     characters when I set printer to a file on disk.  Does this help
  37941. >     narrow down what's going wrong?
  37942. On the face of it, this would seem to rule out the PC-to-Pine communication
  37943. path, all of it, and to rule in the connection between your PC and printer.
  37944. But, no, that's too simple.  Since you can print local PC files without
  37945. losing data, that rules the PC-printer connection back out again.
  37946.  
  37947. Writing to disk is much faster than writing to a printer, so when Kermit
  37948. is routing data to the printer, then whenever the printer's "busy" wire
  37949. goes on, Kermit has to flow-control the host to stop sending data.  This is
  37950. the weak spot, apparently -- the flow control signal, in this case an Xoff
  37951. character, does not arrive in time, and so data is lost because it keeps
  37952. coming even though Kermit's internal buffer is full, and the printer is
  37953. busy.  There is literally no place to put it, so it is lost.
  37954.  
  37955. From your description, it sounds like SET PRINTER <disk-file-name>, since
  37956. it works, might be your only way out of this mess -- at least your only
  37957. free way :-)  -- you could also buy a new modem...
  37958.  
  37959. - Frank
  37960.  
  37961.  
  37962. From news@columbia.edu Wed Oct 19 22:35:24 1994
  37963. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07908
  37964.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 19 Oct 1994 18:48:26 -0400
  37965. Received: by apakabar.cc.columbia.edu id AA24117
  37966.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 19 Oct 1994 18:48:25 -0400
  37967. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!uhog.mit.edu!sgiblab!cs.uoregon.edu!reuter.cse.ogi.edu!psgrain!rainrgnews0!pacifier!rayp
  37968. From: rayp@pacifier.com (Ray Pendergast)
  37969. Newsgroups: comp.protocols.kermit.misc
  37970. Subject: Re: [HELP] Funny Characters on the Screen
  37971. Date: 19 Oct 1994 22:35:24 GMT
  37972. Organization: Pacifier BBS, Vancouver, Wa.  ((206) 693-0325)
  37973. Lines: 19
  37974. Message-Id: <3846vc$3h@news.pacifier.com>
  37975. Nntp-Posting-Host: pacifier.com
  37976. X-Newsreader: TIN [version 1.2 PL2]
  37977. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  37978.  
  37979.  
  37980. I have read this series of postings, and have a similar problem.  In 
  37981. fact, these are the symptoms that prompted me to browse this newsgroup.  
  37982. I don't know if this will fit the line of conversation thus far, but I am 
  37983. guessing that my problem (charcters being randomly inserted into text 
  37984. while I am connected to my server) is because it is VT100, and my kermit 
  37985. emulation is VT320.
  37986.  
  37987. So, I am asking for advice.  How can I change the setting in my kermit 
  37988. program to VT100.  Is it possible to do so with each call I make?  I have 
  37989. two accounts:  one VT100, the other VT320.  I'd like to be able to toggle 
  37990. back and forth, or something equally convenient.
  37991.  
  37992. Any suggestions would be appreciated, especially if they are made in 
  37993. terms that a novice like me would find understandable.  Thanks.
  37994.  
  37995. --
  37996. ----
  37997. Ray Pendergast
  37998.  
  37999. From news@columbia.edu Wed Oct 19 23:01:28 1994
  38000. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08521
  38001.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 19 Oct 1994 19:01:33 -0400
  38002. Received: by apakabar.cc.columbia.edu id AA25180
  38003.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 19 Oct 1994 19:01:30 -0400
  38004. Path: news.columbia.edu!usenet
  38005. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  38006. Newsgroups: comp.protocols.kermit.misc
  38007. Subject: Re: [HELP] Funny Characters on the Screen
  38008. Date: 19 Oct 1994 23:01:28 GMT
  38009. Organization: Columbia University
  38010. Lines: 46
  38011. Message-Id: <3848g8$oiq@apakabar.cc.columbia.edu>
  38012. References: <3846vc$3h@news.pacifier.com>
  38013. Nntp-Posting-Host: fdc.cc.columbia.edu
  38014. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  38015.  
  38016. In article <3846vc$3h@news.pacifier.com> rayp@pacifier.com (Ray Pendergast)  
  38017. writes:
  38018. > I have read this series of postings, and have a similar problem.  In 
  38019. > fact, these are the symptoms that prompted me to browse this newsgroup.  
  38020. > I don't know if this will fit the line of conversation thus far, but I am 
  38021. > guessing that my problem (charcters being randomly inserted into text 
  38022. > while I am connected to my server) is because it is VT100, and my kermit 
  38023. > emulation is VT320.
  38024. No, not at all.  VT320 is, in every sense, a superset of VT100.  Any
  38025. escape sequences sent to a VT100 will be accepted and acted upon by a
  38026. VT320 (or 220, or 102) in exactly the same way.
  38027.  
  38028. > So, I am asking for advice.  How can I change the setting in my kermit 
  38029. > program to VT100.
  38030. >
  38031. SET TERMINAL TYPE VT100.
  38032.  
  38033. > Is it possible to do so with each call I make? 
  38034. >
  38035. Of course.
  38036.  
  38037. > I have two accounts:  one VT100, the other VT320.  I'd like to be able to
  38038. > toggle  back and forth, or something equally convenient.
  38039. You can do a lot more than that.  You can write little scripts that make
  38040. each connection and set all the appropriate parameters -- terminal emulation,
  38041. key maps, you name it, automatically for each account.
  38042.  
  38043. > Any suggestions would be appreciated, especially if they are made in 
  38044. > terms that a novice like me would find understandable.
  38045. >
  38046. I like to think that the user manual, "Using MS-DOS Kermit", does a very
  38047. good job at making this material understandable.
  38048.  
  38049. But none of this explains why you are seeing pieces of escape sequences on
  38050. your screen.  This is happening because material is coming in faster than
  38051. your PC can process it.  Either reduce your communication speed, get a faster
  38052. computer, or (what we keep preaching) enable the MOST EFFECTIVE POSSIBLE
  38053. means of flow control at each point along the communication path.  For
  38054. example, configure your modem for RTS/CTS "hardware" flow control, and then
  38055. tell Kermit to SET FLOW RTS/CTS.  But then you also have to ensure that the
  38056. other modem, and whatever it is connected to, etc, are also configured for
  38057. flow control.  Assume nothing.  TrustNo1.
  38058.  
  38059. - Frank
  38060.  
  38061. From news@columbia.edu Wed Oct 19 10:45:18 1994
  38062. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13918
  38063.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 19 Oct 1994 20:48:00 -0400
  38064. Received: by apakabar.cc.columbia.edu id AA03133
  38065.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 19 Oct 1994 20:47:58 -0400
  38066. Path: news.columbia.edu!panix!news.mathworks.com!mvb.saic.com!netnews.wku.edu!netnews.wku.edu!nntp
  38067. Newsgroups: comp.protocols.kermit.misc
  38068. Subject: DOS KERMIT transfer-only program?
  38069. Message-Id: <1994Oct19.154519.11566@netnews.wku.edu>
  38070. From: RYANK@WKUVX1.WKU.EDU (KEVIN)
  38071. Date: 19 Oct 94 15:45:18 CDT
  38072. Distribution: world
  38073. Organization: Western Kentucky University
  38074. Nntp-Posting-Host: wkuvx2
  38075. Nntp-Posting-User: ryank
  38076. X-News-Reader: VMS NEWS 1.24
  38077. Lines: 17
  38078. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  38079.  
  38080. I currently call MSKERMIT.EXE in order to take advantage of 
  38081. the sliding windows protocol; the version of kermit that is
  38082. native to my communications program doesn't allow me to take
  38083. advantage of the speedier options that the full program offers.
  38084.  
  38085. This works okay, but I wouldn't mind finding a transfer-protocol-
  38086. only DOS program that implements sliding windows kermit.  I've
  38087. tried the outboard kermit programs posted on SIMTEL, but none
  38088. implement the advanced features.  Is there a shareware or 
  38089. freeware kermit transfer program that incorporates sliding 
  38090. windows, adjustable block sizes, etc?
  38091.  
  38092.  
  38093.  
  38094. Kevin Ryan
  38095. RYANK@WKUVX1.WKU.EDU
  38096. Western Kentucky University
  38097.  
  38098. From news@columbia.edu Wed Oct 19 14:20:26 1994
  38099. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21736
  38100.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 19 Oct 1994 23:13:21 -0400
  38101. Received: by apakabar.cc.columbia.edu id AA13460
  38102.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 19 Oct 1994 23:13:18 -0400
  38103. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  38104. From: jrd@cc.usu.edu (Joe Doupnik)
  38105. Newsgroups: comp.protocols.kermit.misc
  38106. Subject: Re: 3.14/Beta-6:  Answerback, Editing, Icon, Underscore, etc.
  38107. Message-Id: <1994Oct19.202026.30534@cc.usu.edu>
  38108. Date: 19 Oct 94 20:20:26 MDT
  38109. References: <383hca$9fg@vixen.cso.uiuc.edu> <383l5s$fjt@apakabar.cc.columbia.edu>
  38110. Organization: Utah State University
  38111. Lines: 15
  38112. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  38113.  
  38114. In article <383l5s$fjt@apakabar.cc.columbia.edu>, ycl6@konichiwa.cc.columbia.edu (Yeechang Lee) writes:
  38115. > In article <383hca$9fg@vixen.cso.uiuc.edu>,
  38116. > Daniel S. Lewart <d-lewart@uiuc.edu> wrote:
  38117. > |There is one particularly strange thing that I've seen, but I can't
  38118. > |reproduce.  Occasionally, the screen refreshes locally (it is too fast
  38119. > |to be remote) which I notice as a ripple quickly moving down the display.
  38120. > If I SET TERM VIDEO-WRITING BIOS on my Tandy XT then screen updates will be
  38121. > a ripple.
  38122. ---------
  38123.     The slower the video system then the more visible will be screen
  38124. changes. The Bios is slower than direct screen writing. Try horizontal
  38125. scrolling to see this under fingertip control (without bothering the remote
  38126. host). Or just roll the screen up and down.
  38127.     Joe D.
  38128.  
  38129.  interface
  38130. >>along the communication path -- from the host application (Pine?) all the
  38131. >>way to the printer.
  38132.     <omitting a great deal>
  38133. >>You misunderstood the suggestion.  Print from your host mail application
  38134. >>in the normal way, but tell Kermit to SET PRINTER FOO.BAR, which routes
  38135. >>printer output to a file on your PC's disk.  This will eliminate flow
  38136. >>control problems between the PC printer driver and the printer itself,
  38137. >>if that is what is causing the problem.  Then you can print the file
  38138. >>later, using the DOS PRINT command.
  38139. >     I understood.  I tried this just now, with a fairly large piece of
  38140. >     mail-- 'thought it might make a good test.  There was no loss of
  38141. >     characters when I set printer to a file on disk.  Does this help
  38142. >     narrow down what's going wrong?
  38143. ----------------
  38144.     Kermit does printing by passing bytes to DOS for handling. If
  38145. DOS spends a lot of time talking with your parallel printer then
  38146.     a) Kermit's receive buffer can overflow, losing bytes, and/or
  38147.     b) interrupts are turned off long enough by DOS and the Bios to 
  38148. miss bytes arriving from the serial port.
  38149.  
  38150.     For case a) Kermit sends XOFF and XON brackets (if that's the 
  38151. flow control method) to the host to hopefully stop too many new bytes from 
  38152. being sent while DOS has control. The host may continue to send many
  38153. bytes before recognizing the XOFF. Case b) is totally out of the hands of 
  38154. Kermit.
  38155.         File transfers with Kermit protocol have inherent pacing and
  38156. retries and all that good stuff. Printing from the host lacks all that
  38157. good stuff. With XON/XOFF turned off there is nothing Kermit can do to
  38158. notify the host that Kermit and DOS may be rather busy for awhile and
  38159. please wait.
  38160.     From your last paragraph we can infer your DOS+Bios+printer
  38161. are taking a rather long time getting the job done. Since you have
  38162. XON/XOFF turned off then at least case a) applies. Should this be
  38163. accurate then you need to heavily buffer between DOS and the printer,
  38164. by printing to disk or using a print spooler (they have their own
  38165. problems) or using a cheap printer box with memory, etc.
  38166.         Joe D.
  38167.  
  38168. From news@columbia.edu Wed Oct 19 17:21:09 1994
  38169. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00648
  38170.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 20 Oct 1994 02:00:43 -0400
  38171. Received: by apakabar.cc.columbia.edu id AA23545
  38172.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 20 Oct 1994 02:00:42 -0400
  38173. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!gatech!ncar!newshost.lanl.gov!ferrari.mst6.lanl.gov!tesuque.cs.sandia.gov!lynx.unm.edu!news
  38174. From: galway@chtm.eece.unm.edu (Denis McKeon)
  38175. Newsgroups: comp.protocols.kermit.misc
  38176. Subject: Re: reading the screen in kermit
  38177. Date: Wed, 19 Oct 94 23:21:09 MDT
  38178. Organization: Connemara - Computing for People
  38179. Lines: 11
  38180. Message-Id: <384uo7$r7o@lynx.unm.edu>
  38181. References: <SASDRQ.94Oct7101300@gamecock.unx.sas.com> <373nbp$g8e@chopin.udel.edu> <1994Oct7.105934.29107@cc.usu.edu> <CxBL0B.92E@ritz.mordor.com>
  38182. Reply-To: galway@chtm.eece.unm.edu
  38183. Nntp-Posting-Host: chtm.eece.unm.edu
  38184. X-Copyright: Copyright 1994 by Denis McKeon
  38185. X-Mailer: Mail User's Shell (7.0.1 12/13/89)
  38186. To: 
  38187. Status: OR
  38188.  
  38189. In <CxBL0B.92E@ritz.mordor.com>,
  38190. Ken Udut <kudut@ritz.mordor.com> wrote:
  38191. >
  38192. >But there are programs that cut/paste sections of a screen.  
  38193.  
  38194. For DOS, uses arrow keys, runs as a TSR in 4Kb, from ftp.uu.net:
  38195.  
  38196. 92/10/28 00:00    20881 systems/ibmpc/msdos/simtel/screen/snippr26.zip 
  38197.  
  38198. (msg both mailed and posted)
  38199.  
  38200.  
  38201. From news@columbia.edu Wed Oct 19 17:15:28 1994
  38202. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01129
  38203.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 20 Oct 1994 02:16:31 -0400
  38204. Received: by apakabar.cc.columbia.edu id AA24280
  38205.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 20 Oct 1994 02:16:30 -0400
  38206. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  38207. From: jrd@cc.usu.edu (Joe Doupnik)
  38208. Newsgroups: comp.protocols.kermit.misc
  38209. Subject: Re: DOS KERMIT transfer-only program?
  38210. Message-Id: <1994Oct19.231528.30549@cc.usu.edu>
  38211. Date: 19 Oct 94 23:15:28 MDT
  38212. References: <1994Oct19.154519.11566@netnews.wku.edu>
  38213. Distribution: world
  38214. Organization: Utah State University
  38215. Lines: 17
  38216. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  38217.  
  38218. In article <1994Oct19.154519.11566@netnews.wku.edu>, RYANK@WKUVX1.WKU.EDU (KEVIN) writes:
  38219. > I currently call MSKERMIT.EXE in order to take advantage of 
  38220. > the sliding windows protocol; the version of kermit that is
  38221. > native to my communications program doesn't allow me to take
  38222. > advantage of the speedier options that the full program offers.
  38223. > This works okay, but I wouldn't mind finding a transfer-protocol-
  38224. > only DOS program that implements sliding windows kermit.  I've
  38225. > tried the outboard kermit programs posted on SIMTEL, but none
  38226. > implement the advanced features.  Is there a shareware or 
  38227. > freeware kermit transfer program that incorporates sliding 
  38228. > windows, adjustable block sizes, etc?
  38229. --------------
  38230.     Yes, but only one: MS-DOS Kermit. However, you will soon have
  38231. the choice of three different colors: regular, medium, lite. See the
  38232. beta test announcments.
  38233.     Joe D.
  38234.  
  38235. From news@columbia.edu Wed Oct 19 20:03:50 1994
  38236. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04388
  38237.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 20 Oct 1994 03:56:26 -0400
  38238. Received: by apakabar.cc.columbia.edu id AA27315
  38239.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 20 Oct 1994 03:56:25 -0400
  38240. Newsgroups: comp.protocols.kermit.misc
  38241. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!gatech!newsxfer.itd.umich.edu!zip.eecs.umich.edu!panix!news.mathworks.com!yeshua.marcam.com!charnel.ecst.csuchico.edu!csusac!csus.edu!netcom.com!jhurwit
  38242. From: jhurwit@netcom.com (Jeffrey Hurwit)
  38243. Subject: Re: Buffer overflows? (was Re: Problem: VT100 "print through") 
  38244. Message-Id: <jhurwitCxxrqF.5rE@netcom.com>
  38245. Organization: Organization?  What organization?
  38246. X-Newsreader: TIN [version 1.2 PL1]
  38247. References: <jhurwitCxp0xx.46w@netcom.com> <37p0k0$q59@apakabar.cc.columbia.edu>  <Pine.SUN.3.91.941015192541.29753A-100000@survis.surfnet.nl>
  38248. Date: Wed, 19 Oct 1994 20:03:50 GMT
  38249. Lines: 22
  38250. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  38251.  
  38252. In article <Pine.SUN.3.91.941015192541.29753A-100000@survis.surfnet.nl>, 
  38253. Xander.Jansen@SURFnet.nl wrote:
  38254. >For what it's worth, a note from the release notes of Pine 3.91:
  38255. >-----
  38256. >Changes since pine 3.90.
  38257.  
  38258. >Pine 3.91 is primarily a bug-fix release, to correct many (but not all)
  38259. >of the problems reported with version 3.90.
  38260.  
  38261. >IMPORTANT NOTE: if you are plagued by messages saying ^X or ^Q not
  38262. >defined, or printers losing parts of messages sent from Pine, then set the
  38263. >new feature:  "preserve-start-stop-characters" .  This is needed
  38264.  
  38265.     [...]
  38266.  
  38267. >Although I don't think that this will help in the specific situation
  38268. >discussed (but you never know ;)
  38269.  
  38270.     I tried it, and it unfortunately didn't help. :(  Thanks for the
  38271.     suggestion, tho...
  38272.  
  38273.                         Jeff
  38274.  
  38275. From news@columbia.edu Wed Oct 19 20:17:08 1994
  38276. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05702
  38277.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 20 Oct 1994 04:25:05 -0400
  38278. Received: by apakabar.cc.columbia.edu id AA28146
  38279.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 20 Oct 1994 04:25:04 -0400
  38280. Newsgroups: comp.protocols.kermit.misc
  38281. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!yeshua.marcam.com!charnel.ecst.csuchico.edu!csusac!csus.edu!netcom.com!jhurwit
  38282. From: jhurwit@netcom.com (Jeffrey Hurwit)
  38283. Subject: Re: what gives a telebit indigestion?
  38284. Message-Id: <jhurwitCxxsCK.6t0@netcom.com>
  38285. Organization: Organization?  What organization?
  38286. X-Newsreader: TIN [version 1.2 PL1]
  38287. References: <3822qc$ihr@csnews.cs.Colorado.EDU>
  38288. Date: Wed, 19 Oct 1994 20:17:08 GMT
  38289. Lines: 24
  38290. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  38291.  
  38292. In article <3822qc$ihr@csnews.cs.Colorado.EDU>, 
  38293. Arthur Wouk (wouk@alumni.cs.colorado.edu) wrote:
  38294.  
  38295. >i am running into a problem in trying to improve the speed of kermit
  38296. >operating through telebit modems. i was trint=g to unprefix and then
  38297. >set prefix via
  38298.  
  38299. >set control unprefix all  
  38300. >set control prefix 0 1 13 129 141
  38301.  
  38302. >as suggested by frank da cruz in his postings.
  38303.  
  38304. >i am running ckermit5A(189) at both ends, and have an att dataport
  38305. >14.4k modem at my end.
  38306.  
  38307.     My guess, FWIW, is that you'll have to prefix more control
  38308.     characters.  ^C and ^Z, for example, are frequently used on many
  38309.     flavors of Unix to cancel and suspend, respectively, a process. 
  38310.     Try transferring your binary file with 'set control prefixed all'. 
  38311.     If it works, you know that prefixing is your problem.  As the docs
  38312.     say, you'll have to experiment with some test files to find the
  38313.     minimum set of control characters that must be prefixed.
  38314.  
  38315.                         Jeff
  38316.  
  38317. From news@columbia.edu Wed Oct 19 20:31:13 1994
  38318. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08030
  38319.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 20 Oct 1994 05:41:41 -0400
  38320. Received: by apakabar.cc.columbia.edu id AA01134
  38321.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 20 Oct 1994 05:41:39 -0400
  38322. Path: news.columbia.edu!sol.ctr.columbia.edu!caen!math.ohio-state.edu!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!sldgh
  38323. From: sldgh@cc.usu.edu
  38324. Newsgroups: comp.protocols.kermit.misc,comp.security.misc
  38325. Subject: Help with MS-Kermit and C-Kermit security
  38326. Message-Id: <1994Oct20.023113.30556@cc.usu.edu>
  38327. Date: 20 Oct 94 02:31:13 MDT
  38328. Organization: Utah State University
  38329. Lines: 14
  38330. Xref: news.columbia.edu comp.protocols.kermit.misc:828 comp.security.misc:12429
  38331. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  38332.  
  38333. At my place of employment, we have encountered a potentially dangerous
  38334. situation involving MS-Kermit and C-Kermit.  We are moving to MS-Kermit
  38335. to take advantage of its TCP/IP abilities and to use its file transfer
  38336. capabilities.  We are nervous about allowing users to access the C-Kermit
  38337. prompt on our UNIX-based host since it is a partially functional UNIX
  38338. prompt.  Users have the ability to delete files, move files, change
  38339. directories, etc.  Does anyone know if there is a way to restrict the
  38340. commands available to C-Kermit?  Can we restrict users to their home
  38341. directories?  Is there a FAQ somewhere that would be helpful?  Any
  38342. info is greatly appreciated.
  38343.  
  38344. Erik Merkley
  38345. Saddleman, Inc.
  38346. sldgh@cc.usu.edu
  38347.  
  38348. From news@columbia.edu Thu Oct 20 10:12:06 1994
  38349. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09506
  38350.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 20 Oct 1994 06:28:37 -0400
  38351. Received: by apakabar.cc.columbia.edu id AA02835
  38352.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 20 Oct 1994 06:28:36 -0400
  38353. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!pipex!doc.ic.ac.uk!susx.ac.uk!leilabd
  38354. From: leilabd@central.susx.ac.uk (Leila Burrell-Davis)
  38355. Newsgroups: comp.protocols.kermit.misc
  38356. Subject: COLS132 tip
  38357. Date: 20 Oct 1994 10:12:06 GMT
  38358. Organization: Computing Service, University of Sussex, UK
  38359. Lines: 21
  38360. Message-Id: <385fpm$92i@infa.central.susx.ac.uk>
  38361. Nntp-Posting-Host: solx1.central.susx.ac.uk
  38362. X-Newsreader: TIN [version 1.2 PL2]
  38363. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  38364.  
  38365. I recently spent some time trying to set up the COLS132.BAT file for
  38366. a machine with an S3 graphics card which was not supplied with a
  38367. program for setting the screen mode. I eventually discovered that if
  38368. I used Daniel Kegel's screen driver NANSI.SYS (available from Simtel
  38369. mirrors and other fine ftp sites), I could put many different
  38370. graphics cards into 132 column mode by putting the following line in
  38371. COLS132.BAT.
  38372.     @echo <ESC>[=85h
  38373. where <ESC> is replaced by an escape character (ascii 27). The
  38374. corresponding line for COLS80.BAT is:
  38375.     @echo <ESC>[=3h
  38376. (which should work with any ANSI screen driver).
  38377.  
  38378. Hope this is useful to someone else.
  38379.  
  38380. Leila
  38381. -- 
  38382. Leila Burrell-Davis, Computing Service, University of Sussex, Brighton, UK
  38383. Tel:  +44 (0) 1273 678390            Fax:  +44 (0) 1273 678470
  38384. Email: L.Burrell-Davis@susx.ac.uk
  38385. PGP Public Key fingerprint: 18 A3 45 D6 40 6D 62 00  E9 71 AD 18 E8 E2 9F 7D 
  38386.  
  38387. From news@columbia.edu Thu Oct 20 12:47:59 1994
  38388. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10966
  38389.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 20 Oct 1994 08:48:03 -0400
  38390. Received: by apakabar.cc.columbia.edu id AA08605
  38391.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 20 Oct 1994 08:48:02 -0400
  38392. Path: news.columbia.edu!usenet
  38393. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  38394. Newsgroups: comp.protocols.kermit.misc
  38395. Subject: Re: Help with MS-Kermit and C-Kermit security
  38396. Date: 20 Oct 1994 12:47:59 GMT
  38397. Organization: Columbia University
  38398. Lines: 28
  38399. Message-Id: <385otv$8ci@apakabar.cc.columbia.edu>
  38400. References: <1994Oct20.023113.30556@cc.usu.edu>
  38401. Nntp-Posting-Host: fdc.cc.columbia.edu
  38402. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  38403.  
  38404. In article <1994Oct20.023113.30556@cc.usu.edu> sldgh@cc.usu.edu writes:
  38405. > At my place of employment, we have encountered a potentially dangerous
  38406. > situation involving MS-Kermit and C-Kermit.  We are moving to MS-Kermit
  38407. > to take advantage of its TCP/IP abilities and to use its file transfer
  38408. > capabilities.  We are nervous about allowing users to access the C-Kermit
  38409. > prompt on our UNIX-based host since it is a partially functional UNIX
  38410. > prompt.  Users have the ability to delete files, move files, change
  38411. > directories, etc.  Does anyone know if there is a way to restrict the
  38412. > commands available to C-Kermit?  Can we restrict users to their home
  38413. > directories?  Is there a FAQ somewhere that would be helpful?  Any
  38414. > info is greatly appreciated.
  38415. Read the document on configuration options, ckccfg.doc, section SECURITY
  38416. FEATURES.  If you build C-Kermit with the -DNOPUSH cc flag, it disables
  38417. these items.  However, it does not restrict users to their home directories.
  38418. You could easily add the CD command to those that are disabled by NOPUSH,
  38419. but that does not entirely do the job -- they can still use pathnames in
  38420. the many file-related commands.
  38421.  
  38422. When C-Kermit is in server mode, you can also restrict access to all sorts
  38423. of services by using the DISABLE command.
  38424.  
  38425. If you want to take this one off-line, send me email.
  38426.  
  38427. - Frank
  38428. x
  38429. x
  38430. x
  38431.  
  38432. From news@columbia.edu Sat Oct 15 02:24:06 1994
  38433. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12769
  38434.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 20 Oct 1994 09:14:08 -0400
  38435. Received: by apakabar.cc.columbia.edu id AA10408
  38436.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 20 Oct 1994 09:14:04 -0400
  38437. Newsgroups: comp.unix.bsd,comp.os.386bsd.misc,comp.protocols.kermit.misc
  38438. Path: news.columbia.edu!panix!news.mathworks.com!news.duke.edu!news-feed-1.peachnet.edu!gatech!swrinde!news.uh.edu!uuneo.neosoft.com!bonkers.taronga.com!peter
  38439. From: peter@bonkers.taronga.com (Peter da Silva)
  38440. Subject: Re: BSDI 1.1 problems using kermit and taylor uucp dial out???
  38441. Distribution: na
  38442. Organization: Taronga Park BBS
  38443. Message-Id: <Cxp006.Ivs@bonkers.taronga.com>
  38444. References: <CxIp0q.GqH@esseye.si.com> <CxnDH8.82p@agora.rdrop.com>
  38445. Date: Sat, 15 Oct 1994 02:24:06 GMT
  38446. Lines: 26
  38447. Xref: news.columbia.edu comp.unix.bsd:17235 comp.os.386bsd.misc:4103 comp.protocols.kermit.misc:831
  38448. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  38449.  
  38450. In article <CxnDH8.82p@agora.rdrop.com>,
  38451. Ted Mittelstaedt <tedm@agora.rdrop.com> wrote:
  38452. >If you figure out how to make UUCP and cu/kermit/etc share the same port
  38453. >please tell me!  :-)
  38454.  
  38455. Surely that's not broken again... I fixed it in 386BSD patchkit 0.2.4.
  38456.  
  38457. Just make sure they all use the same lock file format.
  38458.  
  38459. (need to make pppd use it too)
  38460.  
  38461. >Hey, I am looking for a sendmail.cf that works with UUCP,
  38462.  
  38463. Look in /usr/src/usr.sbin/sendmail/cf.
  38464.  
  38465. That said, I tried it and couldn't quite get it to work so I stripped
  38466. things down to the minimum. None of the Allman mailer definitions really
  38467. work for Taylor UUCP and moderately smart remote sites, so I use this one:
  38468.  
  38469. Mremote,        P=/usr/bin/uux, F=CmDFMh, S=12, R=92,   
  38470.                 A=uux - -r -a$f -gC $h!rmail ($u)
  38471.  
  38472. S92 is pretty much the same as the SMTP rewriting rule.
  38473.  
  38474. You don't want my sendmail.cf. It routes everything to smail 2.5, so I can
  38475. do pathalias without spending all my time hacking sendmail.cf.
  38476.  
  38477. From news@columbia.edu Thu Oct 20 16:27:04 1994
  38478. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04420
  38479.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 20 Oct 1994 13:59:48 -0400
  38480. Received: by apakabar.cc.columbia.edu id AA14816
  38481.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 20 Oct 1994 13:59:46 -0400
  38482. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!yeshua.marcam.com!zip.eecs.umich.edu!newsxfer.itd.umich.edu!gatech!howland.reston.ans.net!EU.net!sun4nl!news.nic.surfnet.nl!tudelft.nl!liberator.et.tudelft.nl!dutepp6.et.tudelft.nl!richard
  38483. From: richard@dutepp6.et.tudelft.nl (Richard Kooijman)
  38484. Newsgroups: comp.protocols.kermit.misc
  38485. Subject: Re: msk314 beta 6 - whats new???
  38486. Date: 20 Oct 1994 16:27:04 GMT
  38487. Organization: Delft University of Technology, Dept. of Electrical Engineering
  38488. Lines: 34
  38489. Message-Id: <3865oo$8g2@liberator.et.tudelft.nl>
  38490. References: <kepekuqcZVLK072yn@primenet.com> <1994Oct19.095314.30446@cc.usu.edu>
  38491. Nntp-Posting-Host: dutepp6.et.tudelft.nl
  38492. X-Newsreader: NN version 6.5.0 #1 (NOV)
  38493. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  38494.  
  38495. jrd@cc.usu.edu (Joe Doupnik) writes:
  38496.  
  38497. >In article <kepekuqcZVLK072yn@primenet.com>, jbishop@primenet.com (Jeff Bishop) writes:
  38498. >> What is new in beta 6 of msk314??? The zip is 9KB bigger then beta 5, why?
  38499. >> 
  38500. >------
  38501. >    I hope I never see another msg like this here. If you are really
  38502. >testing then please send reports, if not then please wait for the final
  38503. >release.
  38504.  
  38505. Excuse me (I am not the original poster), but there is nothing wrong
  38506. about wondering what has changed even if you are a dedicated tester
  38507. and you want to know which parts should be tested most carefully since
  38508. they are new.
  38509. And it also helps to know if something has been changed on purpose, so
  38510. you don't try to test the wrong thing and send a report about something
  38511. that is supposed to be changed.
  38512.  
  38513. Sheesh!
  38514.  
  38515. Remember the original announcement of this Beta-6 got lost. I never saw it and
  38516. Frank reposted it.
  38517.  
  38518. I have noticed before, Joe, that you sometimes reply with an answer
  38519. that has not much to do with the original question. I suppose that
  38520. has to do with you being busy and reading the original message too quickly
  38521. and I suspect this was the case here too.
  38522.  
  38523. Anyway, good luck with the new Kermit 3.14 (beta-6 worked great for me
  38524. both under DOS and Windows), and please relax (you'll live longer).
  38525.  
  38526.  
  38527.  
  38528. Richard.
  38529.  
  38530. From news@columbia.edu Thu Oct 20 17:53:24 1994
  38531. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14796
  38532.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 20 Oct 1994 16:19:03 -0400
  38533. Received: by apakabar.cc.columbia.edu id AA27966
  38534.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 20 Oct 1994 16:19:02 -0400
  38535. Newsgroups: comp.protocols.kermit.misc
  38536. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news.moneng.mei.com!hookup!yeshua.marcam.com!uunet!newsflash.concordia.ca!CC.UMontreal.CA!news.uqam.ca!UQuebec.CA!Rene_Ouimet
  38537. From: Rene_Ouimet@INFOPUQ.UQuebec.CA (Rene Ouimet)
  38538. Subject: New apc in kermit 3.13
  38539. Sender: news@uquebec.ca (news)
  38540. Message-Id: <CxzGD1.7Hw@UQuebec.CA>
  38541. Date: Thu, 20 Oct 1994 17:53:24 GMT
  38542. Nntp-Posting-Host: panoramix.uqss.uquebec.ca
  38543. Organization: Universite du Quebec
  38544. X-Newsreader: TIN [version 1.2 PL2]
  38545. Lines: 1
  38546. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  38547.  
  38548.  
  38549.  
  38550. From news@columbia.edu Thu Oct 20 12:15:32 1994
  38551. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29207
  38552.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 20 Oct 1994 19:51:31 -0400
  38553. Received: by apakabar.cc.columbia.edu id AA16594
  38554.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 20 Oct 1994 19:51:30 -0400
  38555. From: maik%PROBLEM_WITH_INEWS_GATEWAY_FILE@apakabar.cc.columbia.edu (Marek Majewski)
  38556. Date: Thu, 20 Oct 1994 12:15:32 GMT
  38557. Subject: Kermit & LAN Manager 2.2
  38558. Message-Id: <385n14$dvt@isoit109.bbn.hp.com>
  38559. Organization: Hewlett Packard GmbH Germany
  38560. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!yeshua.marcam.com!usc!sdd.hp.com!hplabs!hplntx!hpbbn!isonews.bbn.hp.com!maik
  38561. Newsgroups: comp.protocols.kermit.misc
  38562. Keywords: KERMIT LAN MANAGER
  38563. Lines: 20
  38564. Nntp-Posting-Host: pso_715.poland.hp.com
  38565. Summary: Problem with Kermit over LAN Manager
  38566. X-Newsreader: TIN [version 1.2 PL2]
  38567. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  38568.  
  38569. Does anybody manage to install kermit on LAN Manager 2.x
  38570.  
  38571. We use LAN Manager in our office, and I want use Kermit as
  38572. UNIX terminal emulator over our local TCP/IP LAN.
  38573.  
  38574. I installed dis_pkt9  driver over NDIS drivers but it didn't work ok.
  38575. There was a problem during invoking 
  38576.    LOAD TCPIP
  38577. command.
  38578.  
  38579. There is no problem when I run pocket version of my Ethernet driver 
  38580. and Kermit on it, but of course I haven't reach resources provided
  38581. by LAN Manager.
  38582.  
  38583.  
  38584. Marek Majewski
  38585.  
  38586. marek_majewski@hp7100.desk.hp.com
  38587.  
  38588.  
  38589.  
  38590. From news@columbia.edu Fri Oct 21 01:02:57 1994
  38591. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03926
  38592.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 20 Oct 1994 21:12:17 -0400
  38593. Received: by apakabar.cc.columbia.edu id AA22723
  38594.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 20 Oct 1994 21:12:16 -0400
  38595. Newsgroups: comp.protocols.kermit.misc
  38596. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!news.duke.edu!concert!ecsgate!crisp
  38597. From: crisp@ecsvax.uncecs.edu (Russ Crisp)
  38598. Subject: why do screen colors change?
  38599. Message-Id: <Cy002C.4Bz@ecsvax.uncecs.edu>
  38600. Organization: UNC Educational Computing Service
  38601. Date: Fri, 21 Oct 1994 01:02:57 GMT
  38602. Lines: 18
  38603. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  38604.  
  38605.  
  38606. hello eveyone.
  38607. i've noticed that when i use kermit (3.14 b6) to telnet to
  38608. our vax and use VMS mail, the forground color goes from 
  38609. bright or bold white to just regular white.  3.13 didn't
  38610. do this.  Is this something someone needs to check, or 
  38611. a possible configuration problem here?  It's very reproducable.
  38612. Happens every time.
  38613.  
  38614. Thanks, and keep up the good work!  3.14 looks really nice.
  38615.  
  38616. rc
  38617. --
  38618. -- 
  38619.   Russ Crisp, Systems Analyst        |  Ham Call: KA4UXZ
  38620.   Western Carolina University        |    BITNET: crisp@wcuvax1.bitnet
  38621.   Business Affairs Division          |  Internet: crisp@wcu.edu
  38622.   Room 311-A, HFR Building           |     Voice: (704) 227-7003
  38623.  
  38624. From news@columbia.edu Sun Oct 21 01:52:50 1994
  38625. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05885
  38626.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 20 Oct 1994 21:53:01 -0400
  38627. Received: by apakabar.cc.columbia.edu id AA25860
  38628.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 20 Oct 1994 21:52:59 -0400
  38629. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!gatech!newsxfer.itd.umich.edu!zip.eecs.umich.edu!panix!not-for-mail
  38630. From: mgflax@panix.com (Marshall G. Flax)
  38631. Newsgroups: comp.protocols.kermit.misc
  38632. Subject: Re: Kermit & LAN Manager 2.2
  38633. Date: 20 Oct 1994 21:52:50 -0400
  38634. Organization: Currently, _extremely_ disorganized
  38635. Lines: 16
  38636. Message-Id: <3876ti$lra@panix2.panix.com>
  38637. References: <385n14$dvt@isoit109.bbn.hp.com>
  38638. Nntp-Posting-Host: panix2.panix.com
  38639. Keywords: KERMIT LAN MANAGER
  38640. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  38641.  
  38642. In article <385n14$dvt@isoit109.bbn.hp.com>,
  38643. Marek Majewski <maik@PROBLEM_WITH_INEWS_GATEWAY_FILE> wrote:
  38644. >Does anybody manage to install kermit on LAN Manager 2.x
  38645. >
  38646. >We use LAN Manager in our office, and I want use Kermit as
  38647. >UNIX terminal emulator over our local TCP/IP LAN.
  38648.  
  38649. I've used the following technique with much success:
  38650. (1)  TELAPI -SN3   {limit of three sessions}
  38651. (2)  KERMIT
  38652. (3)  SET PORT TELAPI xxx.xxx.xxx.xxx
  38653. (4)  CONNECT
  38654.  
  38655. marshall
  38656. -- 
  38657. [Marshall G. Flax -- 718-256-3482 -- 8776 16th Ave #2, Brooklyn, NY 11214-5802]
  38658.  
  38659. From news@columbia.edu Fri Oct 21 00:23:49 1994
  38660. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07401
  38661.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 20 Oct 1994 22:25:57 -0400
  38662. Received: by apakabar.cc.columbia.edu id AA28428
  38663.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 20 Oct 1994 22:25:56 -0400
  38664. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!uunet!heifetz.msen.com!zib-berlin.de!gs.dfn.de!tubsibr!news
  38665. From: meyer@ifn.ing.tu-bs.de
  38666. Newsgroups: comp.protocols.kermit.misc
  38667. Subject: Scan code \313 for the space key - why?
  38668. Date: Fri, 21 Oct 94 00:23:49 GMT
  38669. Organization: Inst.f.Nachrichtentechnik, TU Braunschweig, Germany
  38670. Lines: 18
  38671. Distribution: world
  38672. Message-Id: <386qkt$21k@ra.ibr.cs.tu-bs.de>
  38673. Nntp-Posting-Host: ifn.ing.tu-bs.de
  38674. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  38675.  
  38676. Kermit V3.13 vs. previous releases:
  38677.  
  38678. Why has the scan code for the space key changed from \32 (which is
  38679. the ASCII code for space) to \313 ?
  38680.  
  38681. Background: I've a keyboard driver that maps the keypad keys to special
  38682. scan codes and \313 is used with a keypad key. I just wondered why
  38683. the space key code had to be changed.
  38684.  
  38685. --Eckart
  38686. -----------------------------------------------------------------------------
  38687. Eckart Meyer                                     Address:  Schleinitzstr.  23
  38688. Institute for Telecommunication                            38092 Braunschweig
  38689. Technical University of Braunschweig                                  Germany
  38690.                                                  Phone:      +49 531 391 2454
  38691. E-Mail:   meyer@ifn.ing.tu-bs.de                 FAX:        +49 531 391 5192
  38692. VMSmail:  PSI%26245050551130::MEYER (DATEX-P)
  38693. -----------------------------------------------------------------------------
  38694.  
  38695. From news@columbia.edu Thu Oct 20 04:56:15 1994
  38696. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14707
  38697.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 21 Oct 1994 00:20:34 -0400
  38698. Received: by apakabar.cc.columbia.edu id AA06838
  38699.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 21 Oct 1994 00:20:32 -0400
  38700. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news.sprintlink.net!news.primenet.com!usenet
  38701. From: jbishop@primenet.com (Jeff Bishop)
  38702. Newsgroups: comp.protocols.kermit.misc
  38703. Subject: Re: msk314 beta 6 - whats new???
  38704. Date: Wed, 19 Oct 1994 21:56:15 -0700
  38705. Organization: Primenet
  38706. Lines: 18
  38707. Message-Id: <lXVfkuqcZl9J072yn@primenet.com>
  38708. References: <kepekuqcZVLK072yn@primenet.com> <1994Oct19.095314.30446@cc.usu.edu>
  38709. Nntp-Posting-Host: usr2.primenet.com
  38710. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  38711.  
  38712. In article <1994Oct19.095314.30446@cc.usu.edu>,
  38713. jrd@cc.usu.edu (Joe Doupnik) wrote:
  38714. > In article <kepekuqcZVLK072yn@primenet.com>, jbishop@primenet.com (Jeff Bishop) writes:
  38715. > > What is new in beta 6 of msk314??? The zip is 9KB bigger then beta 5, why?
  38716. > > 
  38717. > ------
  38718. >     I hope I never see another msg like this here. If you are really
  38719. > testing then please send reports, if not then please wait for the final
  38720. > release.
  38721. >     Joe D. 
  38722.  
  38723. Well, sounds like he does not want new features tested in new betas now does it
  38724. <GRIN>? HMMMMMMM, is this a public beta? I would think it might be
  38725. valuable to know if new features are added so that we can test them.
  38726. Thank you FDC very much for the valuable input.
  38727.  
  38728. Jeff
  38729.  
  38730.  
  38731. From news@columbia.edu Fri Oct 21 08:39:24 1994
  38732. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25587
  38733.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 21 Oct 1994 04:40:05 -0400
  38734. Received: by apakabar.cc.columbia.edu id AA17308
  38735.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 21 Oct 1994 04:40:04 -0400
  38736. Path: news.columbia.edu!sol.ctr.columbia.edu!news.moneng.mei.com!uwm.edu!alpha2.csd.uwm.edu!randyd
  38737. From: randyd@alpha2.csd.uwm.edu (Randall Elton Ding)
  38738. Newsgroups: comp.protocols.kermit.misc
  38739. Subject: possible ms-beta prob.
  38740. Date: 21 Oct 1994 08:39:24 GMT
  38741. Organization: Information & Media Technologies, University of Wisconsin - Milwaukee
  38742. Lines: 18
  38743. Distribution: usa
  38744. Message-Id: <387uns$tjt@uwm.edu>
  38745. Nntp-Posting-Host: 129.89.7.202
  38746. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  38747.  
  38748.  
  38749. I have beta-5 now, hercmono card on a 286 machine.
  38750. Bullet (hayes like) 2400 baud reliable compressed modem.
  38751. There seems to be some problem with inverse video.   Programs on
  38752. my unix host like ELM or RN, which display lines in inverse video
  38753. sometimes do not appear inverse with the 3.14 beta version.
  38754. I am comparing it against the old faithful 3.11 version.
  38755. I will alt-x quit and switch between versions.
  38756. The problem is sometimes fixed by exiting kermit 3.14 and restarting
  38757. it without logging out.
  38758. The problem seems to come and go....
  38759.  
  38760. {
  38761. Randy.
  38762. randyd@alpha2.csd.uwm.edu
  38763. finger for 1024 bit pgp2.6 public key
  38764. key fingerprint 6D A1 28 15 42 BE 9B 6C  C0 1C 7E 88 A6 1E 3A B8
  38765. }
  38766.  
  38767. From news@columbia.edu Fri Oct 21 14:12:14 1994
  38768. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06019
  38769.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 21 Oct 1994 10:12:18 -0400
  38770. Received: by apakabar.cc.columbia.edu id AA03744
  38771.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 21 Oct 1994 10:12:17 -0400
  38772. Path: news.columbia.edu!usenet
  38773. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  38774. Newsgroups: comp.protocols.kermit.misc
  38775. Subject: Re: Scan code \313 for the space key - why?
  38776. Date: 21 Oct 1994 14:12:14 GMT
  38777. Organization: Columbia University
  38778. Lines: 26
  38779. Message-Id: <388i7u$3ku@apakabar.cc.columbia.edu>
  38780. References: <386qkt$21k@ra.ibr.cs.tu-bs.de>
  38781. Nntp-Posting-Host: fdc.cc.columbia.edu
  38782. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  38783.  
  38784. In article <386qkt$21k@ra.ibr.cs.tu-bs.de> meyer@ifn.ing.tu-bs.de writes:
  38785. > Kermit V3.13 vs. previous releases:
  38786. > Why has the scan code for the space key changed from \32 (which is
  38787. > the ASCII code for space) to \313 ?
  38788. > Background: I've a keyboard driver that maps the keypad keys to special
  38789. > scan codes and \313 is used with a keypad key. I just wondered why
  38790. > the space key code had to be changed.
  38791. This change was made because of popular demand.  People wanted to be able
  38792. to map the space bar and all its combinations with Ctrl, Alt, and Shift
  38793. separately.  For example, DEC terminal users are accustomed to Ctrl-Space
  38794. sending a Null (easier to type than Ctrl-Shift-2).
  38795.  
  38796. The change is transparent when using the regular keyboard drivers, but
  38797. if you are using a nonstandard driver, you might have to put:
  38798.  
  38799.   set key \313 \32
  38800.  
  38801. in your MSCUSTOM.INI file.  In version 3.14, we have also differentiated
  38802. the Esc and Enter key + Ctrl/Alt/Shift scan codes.
  38803.  
  38804. This is progress, no?
  38805.  
  38806. - Frank
  38807.  
  38808. From news@columbia.edu Fri Oct 21 14:29:02 1994
  38809. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10172
  38810.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 21 Oct 1994 11:08:41 -0400
  38811. Received: by apakabar.cc.columbia.edu id AA08401
  38812.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 21 Oct 1994 11:08:38 -0400
  38813. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!uhog.mit.edu!sgiblab!swrinde!pipex!uknet!strath-cs!lorne.stir.ac.uk!is06
  38814. From: is06@stirling.ac.uk (I. Stirling)
  38815. Newsgroups: comp.protocols.kermit.misc
  38816. Subject: Re: Kermit over telnet on unix
  38817. Date: 21 Oct 1994 14:29:02 GMT
  38818. Organization: University of Stirling
  38819. Lines: 17
  38820. Message-Id: <388j7e$qtu@lorne.stir.ac.uk>
  38821. References: <37ton5$1t2@gateway.dircsa.org.au>
  38822. Nntp-Posting-Host: is06@forth.stir.ac.uk
  38823. X-Newsreader: TIN [version 1.1 PL9]
  38824. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  38825.  
  38826. Arthur Marsh (arthur@gateway.dircsa.org.au) wrote:
  38827. : sauron@axpvms.cc.utexas.edu wrote:
  38828.  
  38829.  
  38830. : : How do I run kermit over a telnet link? The man page is not very helpfull.
  38831. : : I want to transfer files (that I'm having to get via capturing , with
  38832.  
  38833. : OK, I'd use Kermit at the end you are typing from, and use its inbuilt telnet
  38834. : to connect to the machine that you dial out from to a remote bbs.
  38835. This is what I had guessed I needed, my problem is I can't seem to find
  38836. how to get kermit on the unix box I'm typing from to talk over telnet.
  38837. I can see options in plenty for connecting to modems, but none for telnet.
  38838. I may not have been clear in what I'm tring to do, I've got a 
  38839. unix machine, that I'm connecting to via telnet, I want to transfer
  38840. files from a bbs that seems to support kermit onto the unix box, where I
  38841. can ftp them from.
  38842. Ian Stirling.
  38843.  
  38844. From news@columbia.edu Fri Oct 21 15:26:16 1994
  38845. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11828
  38846.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 21 Oct 1994 11:26:26 -0400
  38847. Received: by apakabar.cc.columbia.edu id AA10117
  38848.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 21 Oct 1994 11:26:25 -0400
  38849. Path: news.columbia.edu!usenet
  38850. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  38851. Newsgroups: comp.protocols.kermit.misc
  38852. Subject: Re: Kermit over telnet on unix
  38853. Date: 21 Oct 1994 15:26:16 GMT
  38854. Organization: Columbia University
  38855. Lines: 25
  38856. Message-Id: <388mio$9rq@apakabar.cc.columbia.edu>
  38857. References: <388j7e$qtu@lorne.stir.ac.uk>
  38858. Nntp-Posting-Host: fdc.cc.columbia.edu
  38859. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  38860.  
  38861. In article <388j7e$qtu@lorne.stir.ac.uk> is06@stirling.ac.uk (I. Stirling)  
  38862. writes:
  38863. > This is what I had guessed I needed, my problem is I can't seem to find
  38864. > how to get kermit on the unix box I'm typing from to talk over telnet.
  38865. > I can see options in plenty for connecting to modems, but none for telnet.
  38866. > I may not have been clear in what I'm tring to do, I've got a 
  38867. > unix machine, that I'm connecting to via telnet, I want to transfer
  38868. > files from a bbs that seems to support kermit onto the unix box, where I
  38869. > can ftp them from.
  38870. >
  38871. C-Kermit has a command, TELNET, for this, provided it was built to include
  38872. TCP/IP support (i.e. the CFLAGS in the makefile include -DTCPSOCKET).
  38873.  
  38874. If your version of Kermit was built without TCP/IP support, but your UNIX
  38875. system includes it, this should be a simple matter of rebuilding C-Kermit
  38876. to also include it.
  38877.  
  38878. anonymous ftp to kermit.columbia.edu, directory kermit/test/bin, binary
  38879. mode, file cku190.tar.Z (or .gz).
  38880.  
  38881. Uncompress, untar, and give the appropriate "make" command.  If your makefile
  38882. entry does not include -DTCPSOCKET, then add it.  For further details, read
  38883. the comments in the makefile and the file ckuins.doc.
  38884.  
  38885. - Frank
  38886.  
  38887. From news@columbia.edu Thu Oct 20 19:23:35 1994
  38888. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16421
  38889.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 21 Oct 1994 12:28:30 -0400
  38890. Received: by apakabar.cc.columbia.edu id AA15343
  38891.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 21 Oct 1994 12:28:27 -0400
  38892. Newsgroups: comp.protocols.kermit.misc,comp.security.misc
  38893. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!gatech!newsxfer.itd.umich.edu!zip.eecs.umich.edu!yeshua.marcam.com!charnel.ecst.csuchico.edu!csusac!csus.edu!netcom.com!jhurwit
  38894. From: jhurwit@netcom.com (Jeffrey Hurwit)
  38895. Subject: Re: Help with MS-Kermit and C-Kermit security
  38896. Message-Id: <jhurwitCxzKJB.ELp@netcom.com>
  38897. Followup-To: comp.protocols.kermit.misc,comp.security.misc
  38898. Organization: Organization?  What organization?
  38899. X-Newsreader: TIN [version 1.2 PL1]
  38900. References: <1994Oct20.023113.30556@cc.usu.edu>
  38901. Date: Thu, 20 Oct 1994 19:23:35 GMT
  38902. Lines: 33
  38903. Xref: news.columbia.edu comp.protocols.kermit.misc:843 comp.security.misc:12445
  38904. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  38905.  
  38906. In article <1994Oct20.023113.30556@cc.usu.edu>, sldgh@cc.usu.edu wrote:
  38907.  
  38908. >At my place of employment, we have encountered a potentially dangerous
  38909. >situation involving MS-Kermit and C-Kermit.  We are moving to MS-Kermit
  38910. >to take advantage of its TCP/IP abilities and to use its file transfer
  38911. >capabilities.  We are nervous about allowing users to access the C-Kermit
  38912. >prompt on our UNIX-based host since it is a partially functional UNIX
  38913. >prompt.  Users have the ability to delete files, move files, change
  38914. >directories, etc.  Does anyone know if there is a way to restrict the
  38915. >commands available to C-Kermit?  Can we restrict users to their home
  38916. >directories?  Is there a FAQ somewhere that would be helpful?  Any
  38917. >info is greatly appreciated.
  38918.  
  38919.     I don't know how you would prevent someone using MS-Kermit from
  38920.     getting a DOS prompt, but C-Kermit has an option that you can
  38921.     define at compile time to eliminate all commands such as push and
  38922.     run, which would enable a user to get access to the Unix operating
  38923.     system.  (I don't remember the name of this option offhand, but
  38924.     it's described either in the installation or config docs that are
  38925.     included in the cku???.tar.* distributions.)  However, this will not
  38926.     disable (I don't think) such commands as cd and del.  Short of
  38927.     tinkering with the sources, I don't know how you would restrict
  38928.     these commands within Kermit.  Ordinarily you wouldn't need to do
  38929.     that anyhow, because you would set permissions on your files and
  38930.     directories to keep your users out of sensitive areas.  See your
  38931.     man page for chmod and a Unix guide for more info about
  38932.     permissions.
  38933.  
  38934.     Hope that helps.
  38935.  
  38936.                         Jeff
  38937.  
  38938.  
  38939.  
  38940. From news@columbia.edu Fri Oct 21 18:18:37 1994
  38941. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25720
  38942.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 21 Oct 1994 14:18:42 -0400
  38943. Received: by apakabar.cc.columbia.edu id AA25095
  38944.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 21 Oct 1994 14:18:40 -0400
  38945. Path: news.columbia.edu!usenet
  38946. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  38947. Newsgroups: comp.protocols.kermit.misc
  38948. Subject: MS-DOS Kermit 3.14 News
  38949. Date: 21 Oct 1994 18:18:37 GMT
  38950. Organization: Columbia University
  38951. Lines: 28
  38952. Message-Id: <3890lt$og2@apakabar.cc.columbia.edu>
  38953. Nntp-Posting-Host: fdc.cc.columbia.edu
  38954. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  38955.  
  38956. Beta-7 of MS-DOS Kermit 3.14 should be ready early next week.  It will
  38957. fix some problems that many of you have been reporting, particularly those
  38958. relating to command-parsing and execution of TAKE files containing long
  38959. and/or continued lines.
  38960.  
  38961. Meanwhile, here are a couple FAQ's, with A's:
  38962.  
  38963. Q: My old command file doesn't work - comments are no longer treated as
  38964.    comments.  For example: "set block 3;Use CRC error detection".
  38965.  
  38966. A: The syntax for trailing comments is now a bit stricter.  In order for
  38967.    a semicolon to be regarded as comment introducer, it must either be
  38968.    the first character on the line, or else be preceded by a space or tab.
  38969.    This is to allow semicolons to be included more naturally in commands
  38970.    like "send foo.bar;3" or "output \27[?63;15;3;2;1c", and it is also
  38971.    consistent with C-Kermit rules.
  38972.  
  38973. Q: My system hangs (crashes, explodes, ...) when I use version 3.14, but
  38974.    version 3.13 works OK.
  38975.  
  38976. A: Most likely this is because of the change in default for SET TERMINAL
  38977.    EXPANDED-MEMORY from OFF to ON.  If Kermit tries to use expanded memory
  38978.    but expanded memory is configured incorrectly, then terrible things can
  38979.    happen.  In Beta-7, the default for this will be put back to OFF.
  38980.    Meanwhile, if you are experiencing any sort of problem, begin by giving
  38981.    this command (SET TERM EXPANDED OFF) yourself.
  38982.  
  38983. - Frank
  38984.  
  38985. From news@columbia.edu Fri Oct 21 15:41:04 1994
  38986. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13323
  38987.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 21 Oct 1994 18:13:03 -0400
  38988. Received: by apakabar.cc.columbia.edu id AA27621
  38989.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 21 Oct 1994 18:12:59 -0400
  38990. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!uhog.mit.edu!europa.eng.gtefsd.com!howland.reston.ans.net!gatech!newsxfer.itd.umich.edu!zip.eecs.umich.edu!panix!cmcl2!thecourier.cims.nyu.edu!thecourier.cims.nyu.edu!nobody
  38991. From: vb1890@cs.nyu.edu (Victor Boyko)
  38992. Newsgroups: comp.protocols.kermit.misc
  38993. Subject: msk314 beta6 problems with arrows in vt320
  38994. Date: 21 Oct 1994 11:41:04 -0400
  38995. Organization: Courant Institute of Mathematical Sciences
  38996. Lines: 11
  38997. Message-Id: <388neg$6m0@doc.cs.nyu.edu>
  38998. Nntp-Posting-Host: doc.cs.nyu.edu
  38999. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  39000.  
  39001. Hello!
  39002.  
  39003. I have been using msk314 beta6 for about an hour now. It has one very
  39004. important improvement--the new version works with my internal PPI
  39005. modem on COM4 while the old one didn't. However, there is an annoyance
  39006. that was not present in 3.13. In VT320 (and also VT220, VT102 and
  39007. VT100) the arrows send 'ESC A', 'ESC B', 'ESC C', and 'ESC D' while the
  39008. host software (namely emacs) expects 'ESC[A', 'ESC[B', etc. I had to
  39009. manually assign these strings to the arrows.
  39010.  
  39011. -Victor
  39012.  
  39013. From news@columbia.edu Fri Oct 21 23:37:04 1994
  39014. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21273
  39015.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 21 Oct 1994 20:35:24 -0400
  39016. Received: by apakabar.cc.columbia.edu id AA07676
  39017.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 21 Oct 1994 20:35:21 -0400
  39018. Path: news.columbia.edu!panix!zip.eecs.umich.edu!newsxfer.itd.umich.edu!gatech!howland.reston.ans.net!EU.net!uunet!nwnexus!news.halcyon.com!chinook!ken
  39019. From: ken@chinook.halcyon.com (Ken Pizzini)
  39020. Newsgroups: comp.protocols.kermit.misc,comp.security.misc
  39021. Subject: Re: Help with MS-Kermit and C-Kermit security
  39022. Date: 21 Oct 1994 23:37:04 GMT
  39023. Organization: What, me?
  39024. Lines: 33
  39025. Message-Id: <389jb0$mi8@news.halcyon.com>
  39026. References: <1994Oct20.023113.30556@cc.usu.edu> <jhurwitCxzKJB.ELp@netcom.com>
  39027. Nntp-Posting-Host: chinook.halcyon.com
  39028. Xref: news.columbia.edu comp.protocols.kermit.misc:846 comp.security.misc:12452
  39029. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  39030.  
  39031. In article <jhurwitCxzKJB.ELp@netcom.com>,
  39032. Jeffrey Hurwit <jhurwit@netcom.com> wrote:
  39033. >      Ordinarily you wouldn't need to do
  39034. >    that anyhow, because you would set permissions on your files and
  39035. >    directories to keep your users out of sensitive areas.  See your
  39036. >    man page for chmod and a Unix guide for more info about
  39037. >    permissions.
  39038.  
  39039. Also check out the chroot() system call.  For example, you could
  39040. set up a directory with a kermit executable, and a small suid
  39041. wrapper program as follows:
  39042.  
  39043. $ cat safekermit.c
  39044. #include <unistd.h>
  39045. int main(){
  39046.     chroot("/path/of/safe/dir");
  39047.     chdir("/");
  39048.     setuid(getuid());
  39049.     execl("kermit", "bin/kermit", "-x", (const char *)0);
  39050. }
  39051. $ ls -ld safekermit
  39052. ---s--x--x   1 root     bin        416117 Oct 21 15:20 safekermit
  39053. $ cd /path/of/safe/dir
  39054. $ ls -ld . bin bin/kermit
  39055. drwxrwxrwx   3 kermit   kermit         96 Oct 21 15:20 .
  39056. d--x--x--x   2 bin      bin            96 Oct 21 15:20 bin
  39057. ---x--x--x   1 bin      bin        416117 Oct 21 15:20 kermit
  39058.  
  39059.  
  39060. This would limit to the subtree rooted at /path/of/safe/dir the potential
  39061. damage that someone could possibly do.
  39062.  
  39063.         --Ken Pizzini
  39064.  
  39065. From news@columbia.edu Sat Oct 22 20:52:32 1994
  39066. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02421
  39067.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 23 Oct 1994 02:47:48 -0400
  39068. Received: by apakabar.cc.columbia.edu id AA08366
  39069.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 23 Oct 1994 02:47:46 -0400
  39070. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!pipex!uunet!uquebec.ca!not-for-mail
  39071. Newsgroups: comp.protocols.kermit.misc
  39072. From: Rene_Ouimet@INFOPUQ.UQuebec.CA (Rene Ouimet)
  39073. Sender: news@uquebec.ca (news)
  39074. Message-Id: <-CxzGD1.7Hw@UQuebec.CA>
  39075. Control: cancel <CxzGD1.7Hw@UQuebec.CA>
  39076. Nntp-Posting-Host: panoramix.uqss.uquebec.ca
  39077. Organization: Universite du Quebec
  39078. X-Newsreader: TIN [version 1.2 PL2]
  39079. Subject: cmsg cancel <CxzGD1.7Hw@UQuebec.CA>
  39080. Date: Sat, 22 Oct 1994 20:52:32 GMT
  39081. Approved: news@uquebec.ca
  39082. Lines: 1
  39083. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  39084.  
  39085. cancel <CxzGD1.7Hw@UQuebec.CA>
  39086.  
  39087. From news@columbia.edu Sun Oct 23 05:26:10 1994
  39088. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02463
  39089.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 23 Oct 1994 02:48:42 -0400
  39090. Received: by apakabar.cc.columbia.edu id AA08387
  39091.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 23 Oct 1994 02:48:41 -0400
  39092. Newsgroups: comp.protocols.kermit.misc
  39093. Path: news.columbia.edu!sol.ctr.columbia.edu!newsxfer.itd.umich.edu!gatech!howland.reston.ans.net!usc!elroy.jpl.nasa.gov!decwrl!netcomsv!netcom.com!jhurwit
  39094. From: jhurwit@netcom.com (Jeffrey Hurwit)
  39095. Subject: Re: msk314 beta6 problems with arrows in vt320
  39096. Message-Id: <jhurwitCy41rn.1DB@netcom.com>
  39097. Organization: Organization?  What organization?
  39098. X-Newsreader: TIN [version 1.2 PL1]
  39099. References: <388neg$6m0@doc.cs.nyu.edu>
  39100. Date: Sun, 23 Oct 1994 05:26:10 GMT
  39101. Lines: 21
  39102. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  39103.  
  39104. In article <388neg$6m0@doc.cs.nyu.edu>, 
  39105. Victor Boyko (vb1890@cs.nyu.edu) wrote:
  39106.  
  39107. >Hello!
  39108.  
  39109. >modem on COM4 while the old one didn't. However, there is an annoyance
  39110. >that was not present in 3.13. In VT320 (and also VT220, VT102 and
  39111. >VT100) the arrows send 'ESC A', 'ESC B', 'ESC C', and 'ESC D' while the
  39112. >host software (namely emacs) expects 'ESC[A', 'ESC[B', etc. I had to
  39113. >manually assign these strings to the arrows.
  39114.  
  39115.     This brings up a pain-in-the-neck situation with respect to VT
  39116.     emulation: Some systems and applications expect '^[[A', etc., while
  39117.     others (particularly IBM mainframes) expect '^[OA'.  I once checked
  39118.     the file that has the key bindings for our tn3270, and found that
  39119.     it is set up for either (so is the default .joerc, for that
  39120.     matter).  Oh well, I guess it's fortunate that keys can easily be
  39121.     remapped in Kermit with text strings in the INI file, unlike some
  39122.     other comm software out there...
  39123.  
  39124.                         Jeff
  39125.  
  39126. From news@columbia.edu Sun Oct 23 01:08:11 1994
  39127. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06482
  39128.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 23 Oct 1994 04:43:43 -0400
  39129. Received: by apakabar.cc.columbia.edu id AA11946
  39130.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 23 Oct 1994 04:43:42 -0400
  39131. Path: news.columbia.edu!sol.ctr.columbia.edu!math.ohio-state.edu!sdd.hp.com!saimiri.primate.wisc.edu!hpg30a.csc.cuhk.hk!chan1372
  39132. From: chan1372@cs.cuhk.hk (Miriam Chan)
  39133. Newsgroups: comp.protocols.kermit.misc
  39134. Subject: Re: msk314 beta6 problems with arrows in vt320
  39135. Date: 23 Oct 1994 01:08:11 GMT
  39136. Organization: The Chinese University of Hong Kong
  39137. Lines: 31
  39138. Message-Id: <38cd1r$mjo@hpg30a.csc.cuhk.hk>
  39139. References: <388neg$6m0@doc.cs.nyu.edu>
  39140. Nntp-Posting-Host: sparc2.cs.cuhk.hk
  39141. X-Newsreader: TIN [version 1.2 PL2]
  39142. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  39143.  
  39144. Victor Boyko (vb1890@cs.nyu.edu) wrote:
  39145. :-) However, there is an annoyance that was not present in  3.13.  In  VT320
  39146. :-) (and  also  VT220,  VT102  and  VT100) the  arrows  send  'ESC  A', 'ESC
  39147. :-) B', 'ESC C', and 'ESC D' while the host software (namely emacs) expects
  39148.  
  39149.  
  39150.     Yes, I found that the binding of arrow keys really have problem.
  39151. It inserts a '^[' instead of '[' in the escape sequence. I am using tcsh,
  39152. where the default file-completion is done by '^[^['. So, everytime I hit
  39153. the up arrow, I saw the filenames in my root directory :-( Plus a 'A'.
  39154.  
  39155.     I think I should have the time to hack and report the bugs in
  39156. source code, but til now I got too many things to do, although I still
  39157. have the time to follow it ;-).
  39158.  
  39159.  
  39160. Regards,
  39161. 3/06)z.
  39162. --
  39163. ********************************************************************************
  39164. * 9q6l&a'} / E-mail address      ::=  chan1372@cs.cuhk.hk                      *
  39165. * "W"`"Q$F&W / IRC nick          ::=  WMChan                                   *
  39166. ********************************************************************************
  39167. * 3/06)z            \  _____________  /  Chan Wai Ming, Miriam                 *
  39168. * -;4d$$$e$j>G      = |             | =  The Chinese University of Hong Kong   *
  39169. * 9q$l-p:b(t        = | /-\|/-\|/.. | =  Computer Science                      *
  39170. * %|&~/Z            / |_____________| \  Year 4 (Undergraduate)                *
  39171. *                     ^^^^^ Intelligent                                        *
  39172. *                            Chinese-English Translator ;)                     *
  39173. ********************************************************************************
  39174.  
  39175.  
  39176. From news@columbia.edu Thu Oct 20 08:30:22 1994
  39177. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06654
  39178.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 23 Oct 1994 04:49:31 -0400
  39179. Received: by apakabar.cc.columbia.edu id AA12095
  39180.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 23 Oct 1994 04:49:30 -0400
  39181. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!pipex!uknet!miclon!xmission!u.cc.utah.edu!news.cs.utah.edu!cc.usu.edu!jrd
  39182. From: jrd@cc.usu.edu (Joe Doupnik)
  39183. Newsgroups: comp.protocols.kermit.misc
  39184. Subject: Re: msk314 beta 6 - whats new???
  39185. Message-Id: <1994Oct20.143022.30642@cc.usu.edu>
  39186. Date: 20 Oct 94 14:30:22 MDT
  39187. References: <kepekuqcZVLK072yn@primenet.com> <1994Oct19.095314.30446@cc.usu.edu> <3865oo$8g2@liberator.et.tudelft.nl>
  39188. Organization: Utah State University
  39189. Lines: 25
  39190. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  39191.  
  39192. In article <3865oo$8g2@liberator.et.tudelft.nl>, richard@dutepp6.et.tudelft.nl (Richard Kooijman) writes:
  39193. > jrd@cc.usu.edu (Joe Doupnik) writes:
  39194. >>In article <kepekuqcZVLK072yn@primenet.com>, jbishop@primenet.com (Jeff Bishop) writes:
  39195. >>> What is new in beta 6 of msk314??? The zip is 9KB bigger then beta 5, why?
  39196. >>> 
  39197. >>------
  39198. >>    I hope I never see another msg like this here. If you are really
  39199. >>testing then please send reports, if not then please wait for the final
  39200. >>release.
  39201. > Excuse me (I am not the original poster), but there is nothing wrong
  39202. > about wondering what has changed even if you are a dedicated tester
  39203. > and you want to know which parts should be tested most carefully since
  39204. > they are new.
  39205. > And it also helps to know if something has been changed on purpose, so
  39206. > you don't try to test the wrong thing and send a report about something
  39207. > that is supposed to be changed.
  39208. ------------
  39209.     Wondering is one thing, demanding an explanation (", why?") is another
  39210. and that's what I reacted to. Betas change at a rapid rate, faster than we
  39211. can take time to type up a long explanation of what's new, though we do try.
  39212. Not every change comes from this list, but we do lay it out for folks by 
  39213. release time or sooner if possible.
  39214.     Joe D.
  39215.  
  39216. From news@columbia.edu Fri Oct 21 16:25:36 1994
  39217. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26616
  39218.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 23 Oct 1994 13:46:27 -0400
  39219. Received: by apakabar.cc.columbia.edu id AA05127
  39220.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 23 Oct 1994 13:46:24 -0400
  39221. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!pipex!uknet!miclon!xmission!u.cc.utah.edu!news.cs.utah.edu!cc.usu.edu!jrd
  39222. From: jrd@cc.usu.edu (Joe Doupnik)
  39223. Newsgroups: comp.protocols.kermit.misc
  39224. Subject: Re: msk314 beta6 problems with arrows in vt320
  39225. Message-Id: <1994Oct21.222536.30840@cc.usu.edu>
  39226. Date: 21 Oct 94 22:25:36 MDT
  39227. References: <388neg$6m0@doc.cs.nyu.edu>
  39228. Organization: Utah State University
  39229. Lines: 53
  39230. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  39231.  
  39232. In article <388neg$6m0@doc.cs.nyu.edu>, vb1890@cs.nyu.edu (Victor Boyko) writes:
  39233. > Hello!
  39234. > I have been using msk314 beta6 for about an hour now. It has one very
  39235. > important improvement--the new version works with my internal PPI
  39236. > modem on COM4 while the old one didn't. However, there is an annoyance
  39237. > that was not present in 3.13. In VT320 (and also VT220, VT102 and
  39238. > VT100) the arrows send 'ESC A', 'ESC B', 'ESC C', and 'ESC D' while the
  39239. > host software (namely emacs) expects 'ESC[A', 'ESC[B', etc. I had to
  39240. > manually assign these strings to the arrows.
  39241. ----------
  39242.  
  39243.     No need, and a red flag that something else is at work. Let's 
  39244. explore a little to discover that thing. Cutout from Kermit distribution
  39245. file msvibm.vt (this is also in the User's Manual book "Using MS-DOS Kermit"):
  39246.  
  39247. ---------------------------------------------------------------------------
  39248. Below, the acronyms CSI and SS3 stand for 8-bit control codes in an 8-bit
  39249. environment or for their 7-bit equivalents "ESC [" and "ESC O", respectively.
  39250. Command SET TERMINAL CONTROL {8-BIT | 7-BIT}, and an equivalent command from
  39251. the host, determines the usage for output text; use of parity forces 7-bit
  39252. mode.  CSI is decimal 155, SS3 is decimal 143.  Similarly, DCS is decimal 144
  39253. or ESC P and ST is decimal 156 or ESC \.  APC is decimal 159 or ESC _.
  39254. ---------------------------------------------------------------------------
  39255. Codes sent by DEC and Heath arrow keys
  39256. Key        Verb    IBM    VT320/VT102 mode    VT52/H19 mode
  39257.             key    Cursor    Application    Cursor or Application
  39258.  
  39259. up        uparr    up    CSI A    SS3 A        ESC A
  39260. down        dnarr    down    CSI B    SS3 B        ESC B
  39261. right        rtarr    right    CSI C    SS3 C        ESC C
  39262. left        lfarr    left    CSI D    SS3 D        ESC D
  39263.  
  39264.     Now, the curious thing is if the comms channel is presumed to be
  39265. 8-bits wide then CSI goes out just fine as an 8-bit control code. But
  39266. if the channel chops the high bit then what's left of CSI looks exactly
  39267. the same as ESC (155 - 128 = 27). Hmmmmm.
  39268.     We've warned folks time and again that comms channels may not
  39269. be clean or 8-bits wide and there is no safe way of discovering these
  39270. details automatically. And this seems to be such a case.
  39271.     Since Kermit can't know the channel eats the high bit we educate
  39272. Kermit on the matter. SET PARITY SPACE in Kermit says the channel changes
  39273. all high bits to zeros, so please accomodate. And Kermit does so by sending
  39274. eight bit control codes as seven bit equivalents. CSI goes to ESC [. Ah ah!
  39275. See top line of cutout.
  39276.     Notice something else in the cutout. The arrow keys send different
  39277. things depending on the mode induced by the host; one string does not fit
  39278. all occassions. That's why these keys are Kermit keyboard "verbs", because
  39279. Kermit knows which string to send under each condition without bothering
  39280. the user.
  39281.     I'm glad to hear that things are better with your modem. That's
  39282. always a sensitive area.
  39283.     Joe D.
  39284.  
  39285. From news@columbia.edu Fri Oct 21 04:35:03 1994
  39286. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26904
  39287.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 23 Oct 1994 13:52:13 -0400
  39288. Received: by apakabar.cc.columbia.edu id AA05410
  39289.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 23 Oct 1994 13:52:12 -0400
  39290. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!pipex!uknet!miclon!xmission!u.cc.utah.edu!news.cs.utah.edu!cc.usu.edu!jrd
  39291. From: jrd@cc.usu.edu (Joe Doupnik)
  39292. Newsgroups: comp.protocols.kermit.misc
  39293. Subject: Re: why do screen colors change?
  39294. Message-Id: <1994Oct21.103503.30745@cc.usu.edu>
  39295. Date: 21 Oct 94 10:35:03 MDT
  39296. References: <Cy002C.4Bz@ecsvax.uncecs.edu>
  39297. Organization: Utah State University
  39298. Lines: 18
  39299. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  39300.  
  39301. In article <Cy002C.4Bz@ecsvax.uncecs.edu>, crisp@ecsvax.uncecs.edu (Russ Crisp) writes:
  39302. > hello eveyone.
  39303. > i've noticed that when i use kermit (3.14 b6) to telnet to
  39304. > our vax and use VMS mail, the forground color goes from 
  39305. > bright or bold white to just regular white.  3.13 didn't
  39306. > do this.  Is this something someone needs to check, or 
  39307. > a possible configuration problem here?  It's very reproducable.
  39308. > Happens every time.
  39309. > Thanks, and keep up the good work!  3.14 looks really nice.
  39310. ---------------
  39311.     There is a bug in the handling of bold video attribute. It's
  39312. fixed in beta-7, but beta-7 has some other things requiring time
  39313. to straighten out. Thus we won't be issuing beta-7 until after the
  39314. weekend.
  39315.     Thanks,
  39316.     Joe D.
  39317.  
  39318. terly about the Control-space part not yielding \0 in
  39319. Kermit I had to alias the space bar to s
  39320. an codes rather than its 
  39321. natural ASCII value \32.
  39322.         Joe D.
  39323.  
  39324. From news@columbia.edu Sun Oct 23 11:58:33 1994
  39325. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03209
  39326.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 23 Oct 1994 16:07:24 -0400
  39327. Received: by apakabar.cc.columbia.edu id AA26312
  39328.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 23 Oct 1994 16:07:23 -0400
  39329. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!gatech!news-feed-1.peachnet.edu!ukma!news.cuny.edu!n52bc
  39330. From: <N52BC@CUNYVM.CUNY.EDU>
  39331. Newsgroups: comp.protocols.kermit.misc
  39332. Subject: procomm-kermit
  39333. Date: Sun, 23 Oct 1994 15:58:33 EDT
  39334. Organization: City University of New York/University Computer Center
  39335. Lines: 5
  39336. Message-Id: <94296.155833N52BC@CUNYVM.CUNY.EDU>
  39337. Nntp-Posting-Host: cunyvm.cuny.edu
  39338. Disclaimer: Author bears full responsibility for this post
  39339. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  39340.  
  39341. Can somebody help me.  I have a dial up account to the internet.  In order to
  39342. download stuff I use a version of procomm (shareware) that supports the
  39343. kermit protocol.  But I am not sure how I would go about using kermit to
  39344. download.  If anyone knows what I'm talking about or knows how to help, please
  39345. respond.  I will greatly appreciate it.
  39346.  
  39347. From news@columbia.edu Sun Oct 23 23:58:07 1994
  39348. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14363
  39349.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 23 Oct 1994 20:11:37 -0400
  39350. Received: by apakabar.cc.columbia.edu id AA14216
  39351.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 23 Oct 1994 20:11:36 -0400
  39352. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!europa.eng.gtefsd.com!gatech!asuvax!noao!CS.Arizona.EDU!news.Arizona.EDU!nolan
  39353. From: nolan@crow.lpl.arizona.edu (Mike Nolan)
  39354. Newsgroups: comp.protocols.kermit.misc
  39355. Subject: Re: msk314 beta6 problems with arrows in vt320
  39356. Date: 23 Oct 1994 23:58:07 GMT
  39357. Organization: Lunar and Planetary Laboratory, University of Arizona
  39358. Lines: 24
  39359. Message-Id: <38etaf$j0v@news.CCIT.Arizona.EDU>
  39360. References: <388neg$6m0@doc.cs.nyu.edu> <1994Oct21.222536.30840@cc.usu.edu>
  39361. Nntp-Posting-Host: crow.lpl.arizona.edu
  39362. Cc: 
  39363.  
  39364. > (Victor Boyko) writes:
  39365. >> VT102 and VT100) the arrows send 'ESC A', 'ESC B', 'ESC C', and 'ESC D'
  39366.  
  39367. In article <1994Oct21.222536.30840@cc.usu.edu>,
  39368. Joe Doupnik <jrd@cc.usu.edu> wrote:
  39369.  
  39370. >Below, the acronyms CSI and SS3 stand for 8-bit control codes in an 8-bit
  39371. >environment or for their 7-bit equivalents "ESC [" and "ESC O", respectively.
  39372. >Command SET TERMINAL CONTROL {8-BIT | 7-BIT}, and an equivalent command from
  39373. >the host, determines the usage for output text; use of parity forces 7-bit
  39374.  
  39375. As I understand that: if I have set terminal control 7, I should get ESC [ A
  39376. etc?  show term says Term controls: 7-bit.  I still get \233 A (the 8-bit CSI)
  39377. I explicitly set term control 7, and I still get \233 A.
  39378. I set term byte 7 and set parity space, and then I get \033 A.
  39379.  
  39380. This is using vt102 emulation in MSK 3.14 beta-6
  39381.  
  39382.  
  39383. -Mike Nolan
  39384. -- 
  39385. Mike Nolan nolan@{lpl.arizona.edu,arizvms.bitnet,looney.span}
  39386. Lunar and Planetary Laboratory, University of Arizona, Tucson AZ 85721 USA
  39387. Phone +1 602 621 1594 or message at 2234; Fax +1 602 621 4933
  39388.  
  39389. From news@columbia.edu Mon Oct 24 00:09:59 1994
  39390. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16942
  39391.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 23 Oct 1994 21:12:09 -0400
  39392. Received: by apakabar.cc.columbia.edu id AA18484
  39393.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 23 Oct 1994 21:12:08 -0400
  39394. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!europa.eng.gtefsd.com!gatech!newsfeed.pitt.edu!dsinc!netnews.upenn.edu!netnews.CC.Lehigh.EDU!chili.CC.Lehigh.EDU!lusgr
  39395. From: lusgr@chili.CC.Lehigh.EDU (Stephen G. Roseman)
  39396. Newsgroups: comp.protocols.kermit.misc
  39397. Subject: Re: msk314 beta6 problems with arrows in vt320
  39398. Date: 24 Oct 1994 00:09:59 GMT
  39399. Lines: 19
  39400. Message-Id: <38eu0n$1arp@fidoii.cc.lehigh.edu>
  39401. References: <388neg$6m0@doc.cs.nyu.edu> <1994Oct21.222536.30840@cc.usu.edu>
  39402. Nntp-Posting-Host: chili.cc.lehigh.edu
  39403. X-Newsreader: TIN [version 1.2 PL2]
  39404. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  39405.  
  39406. :     No need, and a red flag that something else is at work. 
  39407. :     Joe D.
  39408.  
  39409. I noticed the same thing.  For example F1 is defined to be \KPF1, and sends
  39410. out ESC O P normally.   However, with SET TERM CHAR TRANSPARENT, it becomes
  39411. C-O P which doesn't seem to be right.  Uparrow normally is ESC [ A but 
  39412. becomes ESC A.  I had just discovered the cause, but was going to wait until
  39413. the beta 7, but since you brought it up...
  39414.  
  39415. I had been using the SET TERM CHAR TRANSPARENT to get the PC graphics
  39416. characters displayed properly, and when I first tried 3.14 B6, my function
  39417. keys stopped working.
  39418.  
  39419. Steve
  39420.  
  39421. ----------------------------------------------------------------------------
  39422. Steve Roseman
  39423. Lehigh University Computing Center
  39424. lusgr@chili.CC.Lehigh.Edu
  39425.  
  39426. From news@columbia.edu Mon Oct 24 08:20:35 1994
  39427. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14118
  39428.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 24 Oct 1994 09:06:34 -0400
  39429. Received: by apakabar.cc.columbia.edu id AA23440
  39430.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 24 Oct 1994 09:06:33 -0400
  39431. Newsgroups: comp.protocols.kermit.misc
  39432. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!torn!newshub.ccs.yorku.ca!newshub.ariel.cs.yorku.ca!cs932070
  39433. From: cs932070@red.ariel.cs.yorku.ca (ARCHIMEDES L TRAJANO)
  39434. Subject: APC's and auto-downloading
  39435. Message-Id: <Cy64IC.2DI@ariel.cs.yorku.ca>
  39436. Sender: news@red.ariel.cs.yorku.ca
  39437. Organization: York University, Dept. of Computer Science
  39438. Date: Mon, 24 Oct 1994 08:20:35 GMT
  39439. Lines: 11
  39440. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  39441.  
  39442.  
  39443. How do I set my kermit program to autodownload with APC's when I type in
  39444. kermit -s <filename> on the remote computer?
  39445. BTW, the APC documentation is not quite clear to me which is why I am 
  39446. asking this question.
  39447.  
  39448. -- 
  39449. Archimedes L. Trajano        _/_/_/ _/   _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
  39450. cs932070@ariel.cs.yorku.ca  _/  _/ _/     _/  York University
  39451. (IRC: Overdrive)           _/_/_/ _/     _/  Department of Computer Science
  39452. _/_/_/_/_/_/_/_/_/_/_/_/_/_/  _/ _/_/_/ _/  North York, Ontario, Canada
  39453.  
  39454. From news@columbia.edu Mon Oct 24 13:18:04 1994
  39455. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14845
  39456.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 24 Oct 1994 09:18:11 -0400
  39457. Received: by apakabar.cc.columbia.edu id AA24521
  39458.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 24 Oct 1994 09:18:08 -0400
  39459. Path: news.columbia.edu!usenet
  39460. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  39461. Newsgroups: comp.protocols.kermit.misc
  39462. Subject: Re: APC's and auto-downloading
  39463. Date: 24 Oct 1994 13:18:04 GMT
  39464. Organization: Columbia University
  39465. Lines: 11
  39466. Message-Id: <38gc6c$nu5@apakabar.cc.columbia.edu>
  39467. References: <Cy64IC.2DI@ariel.cs.yorku.ca>
  39468. Nntp-Posting-Host: fdc.cc.columbia.edu
  39469. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  39470.  
  39471. In article <Cy64IC.2DI@ariel.cs.yorku.ca> cs932070@ariel.cs.yorku.ca  
  39472. (ARCHIMEDES L TRAJANO) writes:
  39473. > How do I set my kermit program to autodownload with APC's when I type in
  39474. > kermit -s <filename> on the remote computer?
  39475. >
  39476. The host application must send an APC escape sequence containing "receive",
  39477. e.g.
  39478.  
  39479.   kermit -C "apc receive, send foo.bar"
  39480.  
  39481. - Frank
  39482.  
  39483. From news@columbia.edu Mon Oct 24 13:19:40 1994
  39484. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14906
  39485.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 24 Oct 1994 09:19:47 -0400
  39486. Received: by apakabar.cc.columbia.edu id AA24598
  39487.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 24 Oct 1994 09:19:45 -0400
  39488. Path: news.columbia.edu!usenet
  39489. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  39490. Newsgroups: comp.protocols.kermit.misc
  39491. Subject: Re: Deleting files after send
  39492. Date: 24 Oct 1994 13:19:40 GMT
  39493. Organization: Columbia University
  39494. Lines: 17
  39495. Message-Id: <38gc9c$o0f@apakabar.cc.columbia.edu>
  39496. References: <Cy64FB.29D@ariel.cs.yorku.ca>
  39497. Nntp-Posting-Host: fdc.cc.columbia.edu
  39498. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  39499.  
  39500. In article <Cy64FB.29D@ariel.cs.yorku.ca> cs932070@ariel.cs.yorku.ca  
  39501. (ARCHIMEDES L TRAJANO) writes:
  39502. > How do I delete files after sending them through the kermit -s <filename> 
  39503. > command, like the sz -u command in Zmodem?  (BTW, I do not want this as the 
  39504. > default)
  39505. >
  39506. You'll have to write a macro for this, e.g.
  39507.  
  39508.   define usend send \%1, if success delete \%1
  39509.  
  39510. and then use "usend" instead of send.  If you want to access this command
  39511. from the system command line, do it like this:
  39512.  
  39513.   kermit -C "usend foo.bar"
  39514.  
  39515. - Frank
  39516.  
  39517. From news@columbia.edu Mon Oct 24 16:25:20 1994
  39518. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29981
  39519.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 24 Oct 1994 12:25:27 -0400
  39520. Received: by apakabar.cc.columbia.edu id AA10803
  39521.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 24 Oct 1994 12:25:26 -0400
  39522. Path: news.columbia.edu!usenet
  39523. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  39524. Newsgroups: comp.protocols.kermit.misc
  39525. Subject: MS-DOS Kermit 3.14 Beta-7 Ready for Testing
  39526. Date: 24 Oct 1994 16:25:20 GMT
  39527. Organization: Columbia University
  39528. Lines: 57
  39529. Message-Id: <38gn5g$ah8@apakabar.cc.columbia.edu>
  39530. Nntp-Posting-Host: fdc.cc.columbia.edu
  39531. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  39532.  
  39533. MS-DOS Kermit 3.14 Beta-7 is now available for anonymous ftp from
  39534. kermit.columbia.edu:
  39535.  
  39536.   kermit/test/bin/mstibm.zip  - Binary ZIP file
  39537.   kermit/test/text/mstibm.uue - Uuencoded ZIP file
  39538.   kermit/test/text/mstibm.boo - BOO-encoded ZIP file
  39539.  
  39540. The UUE and BOO files are also available on BITNET from KERMSRV at CUVMA.
  39541.  
  39542. Changes and fixes include:
  39543.  
  39544.  . Windows PIF file: Program version number corrected to 3.14; hardwired
  39545.    pathname is now avoided on the assumption that KERMIT.EXE has been
  39546.    installed somewhere in your PATH, so now the PIF file does not need
  39547.    alteration by those who do not install KERMIT.EXE in C:\KERMIT (follow
  39548.    the Windows installation instructions in the top-level READ.ME file).
  39549.  
  39550.  . Fossil code now reinitializes the fossil driver upon return from DOS;
  39551.    fossil/BBS operations should work smoother now.
  39552.  
  39553.  . TAKE-file reader bugs fixed; TAKE-file command lines can be up to
  39554.    1000 characters in length (hyphenated or not).
  39555.  
  39556.  . More work on improving ESC key word completion in the command line
  39557.    parser.
  39558.  
  39559.  . Various other fixes to command parser, mainly involving improper
  39560.    responses to illegal commands.
  39561.  
  39562.  . Tektronix-mode escape-back/connect-again now goes back to Tek screen
  39563.    as it should, rather than to text screen.
  39564.  
  39565.  . Status-line legend 7n1 is now explained in Alt-h popup help screen.
  39566.  
  39567.  . In ANSI emulation, Ctrl-L is now treated as ANSI home-and-clear-screen.
  39568.  
  39569.  . SET TERM EXPANDED-MEMORY default is back to OFF.  Using expanded
  39570.    memory, if it is present, by default should be safe, but it seems that
  39571.    memory-management configurations are often incorrect and/or
  39572.    inconsistent (e.g. between DOS and Windows).  Also, additional
  39573.    consistency/sanity checks are made when you SET TERM EXPANDED ON.
  39574.  
  39575.  . SET TERM CONTROLS {7,8} again operates as advertised; thus arrow keys,
  39576.    etc, send 7-bit (default) or 8-bit CSI.  Prior to Beta-7, arrow-key
  39577.    (etc) sequences would be improperly sent in 8-bit form when TERMINAL
  39578.    CONTROLS 7 if TERM CHARACTER-SET was TRANSPARENT.  This should clear up
  39579.    the problems recently reported with arrow keys, etc.
  39580.  
  39581.  . Visual bold attribute in terminal emulation corrected to track user
  39582.    preference set via the SET TERM COLOR command.
  39583.  
  39584.  . SHOW TERM now says "underscore" rather than "underline", to agree with
  39585.    the SET TERM UNDERSCORE command.
  39586.  
  39587. Please continue to send Beta test reports by e-mail to kermit@columbia.edu.
  39588.  
  39589. - Frank
  39590.  
  39591. From news@columbia.edu Mon Oct 24 15:20:12 1994
  39592. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07263
  39593.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 24 Oct 1994 14:08:12 -0400
  39594. Received: by apakabar.cc.columbia.edu id AA02277
  39595.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 24 Oct 1994 14:08:09 -0400
  39596. Newsgroups: comp.protocols.kermit.misc
  39597. Path: news.columbia.edu!sol.ctr.columbia.edu!math.ohio-state.edu!usc!howland.reston.ans.net!EU.net!uunet!newsflash.concordia.ca!CC.UMontreal.CA!news.uqam.ca!UQuebec.CA!Rene_Ouimet
  39598. From: Rene_Ouimet@INFOPUQ.UQuebec.CA (Rene Ouimet)
  39599. Subject: New apc in kermit 3.13
  39600. Sender: news@uquebec.ca (news)
  39601. Message-Id: <Cy6nxo.CDH@UQuebec.CA>
  39602. Date: Mon, 24 Oct 1994 15:20:12 GMT
  39603. Nntp-Posting-Host: panoramix.uqss.uquebec.ca
  39604. Organization: Universite du Quebec
  39605. X-Newsreader: TIN [version 1.2 PL2]
  39606. Lines: 12
  39607. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  39608.  
  39609. I would like to ask if anybody has a way of sending an apc string
  39610. from a host machine to a ms-kermit user 'asking' or requesting
  39611. ms-kermit to send back it's version. 
  39612.  
  39613. The reason for this is that I want to be able to determine if the
  39614. user is running an older version of ms-kermit that supports the old
  39615. terminals/terminals functions or the new apc functions...
  39616.  
  39617. Thanks for any help...
  39618.  
  39619. Rene_Ouimet@uqss.uquebec.ca
  39620.  
  39621.  
  39622. From news@columbia.edu Mon Oct 24 19:06:55 1994
  39623. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11360
  39624.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 24 Oct 1994 15:07:05 -0400
  39625. Received: by apakabar.cc.columbia.edu id AA08094
  39626.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 24 Oct 1994 15:06:58 -0400
  39627. Path: news.columbia.edu!usenet
  39628. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  39629. Newsgroups: comp.protocols.kermit.misc
  39630. Subject: Re: New apc in kermit 3.13
  39631. Date: 24 Oct 1994 19:06:55 GMT
  39632. Organization: Columbia University
  39633. Lines: 42
  39634. Message-Id: <38h0kf$7so@apakabar.cc.columbia.edu>
  39635. References: <Cy6nxo.CDH@UQuebec.CA>
  39636. Nntp-Posting-Host: fdc.cc.columbia.edu
  39637. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  39638.  
  39639. In article <Cy6nxo.CDH@UQuebec.CA> Rene_Ouimet@INFOPUQ.UQuebec.CA (Rene  
  39640. Ouimet) writes:
  39641. > I would like to ask if anybody has a way of sending an apc string
  39642. > from a host machine to a ms-kermit user 'asking' or requesting
  39643. > ms-kermit to send back it's version. 
  39644. > The reason for this is that I want to be able to determine if the
  39645. > user is running an older version of ms-kermit that supports the old
  39646. > terminals/terminals functions or the new apc functions...
  39647. Well, this is tricky.  Starting in version 3.14, Kermit sends its
  39648. version as part of the Answerback string:
  39649.  
  39650.   MS-DOS KERMIT_314_term-type<CR>
  39651.  
  39652. In version 3.13, the answerback string was:
  39653.  
  39654.   MS-DOS KERMIT
  39655.  
  39656. (but with no CR on the end).
  39657.  
  39658. In version 3.12 and earlier, there was no answerback message.
  39659.  
  39660. Thus, if you can get each PC user to SET TERMINAL ANSWERBACK ON,
  39661. and then send an ENQ character (Ctrl-E), and if you get back
  39662. MS-DOS KERMIT" in response, then it's version 3.13 or later and therefore
  39663. OK to use APC.  But then, if you can get them to SET TERMINAL ANSWERBACK
  39664. ON, you can just as easily get them to SET TERMINAL APC ON.
  39665.  
  39666. I don't think there is any good way to do this that will always work.
  39667. In 3.0 through 3.12, the TERMINALR/S macros had no definitions, and so
  39668. it does no good to send the corresponding sequences -- you might or might
  39669. not get anything back, and even if something does come back you can't
  39670. predict what it will be.
  39671.  
  39672. In 3.13 and later you can't use an APC sequence to ask any questions, because
  39673. any function (like OUTPUT) that could send arbibrary material to the host
  39674. in response to an escape sequence is disabled by default, for safety.
  39675. Similarly, answerback messages are also disabled by default, though this is
  39676. not for safety as much as it is a defense against noisy connections.
  39677.  
  39678. - Frank
  39679.  
  39680. From news@columbia.edu Sun Oct 23 14:01:09 1994
  39681. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15750
  39682.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 24 Oct 1994 16:12:36 -0400
  39683. Received: by apakabar.cc.columbia.edu id AA14265
  39684.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 24 Oct 1994 16:12:33 -0400
  39685. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!EU.net!uknet!miclon!xmission!u.cc.utah.edu!news.cs.utah.edu!cc.usu.edu!jrd
  39686. From: jrd@cc.usu.edu (Joe Doupnik)
  39687. Newsgroups: comp.protocols.kermit.misc
  39688. Subject: Re: msk314 beta6 problems with arrows in vt320
  39689. Message-Id: <1994Oct23.200109.30954@cc.usu.edu>
  39690. Date: 23 Oct 94 20:01:09 MDT
  39691. References: <388neg$6m0@doc.cs.nyu.edu> <1994Oct21.222536.30840@cc.usu.edu> <38eu0n$1arp@fidoii.cc.lehigh.edu>
  39692. Organization: Utah State University
  39693. Lines: 30
  39694. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  39695.  
  39696. In article <38eu0n$1arp@fidoii.cc.lehigh.edu>, lusgr@chili.CC.Lehigh.EDU (Stephen G. Roseman) writes:
  39697. > :     No need, and a red flag that something else is at work. 
  39698. > :     Joe D.
  39699. > I noticed the same thing.  For example F1 is defined to be \KPF1, and sends
  39700. > out ESC O P normally.   However, with SET TERM CHAR TRANSPARENT, it becomes
  39701. > C-O P which doesn't seem to be right.  Uparrow normally is ESC [ A but 
  39702. > becomes ESC A.  I had just discovered the cause, but was going to wait until
  39703. > the beta 7, but since you brought it up...
  39704. > I had been using the SET TERM CHAR TRANSPARENT to get the PC graphics
  39705. > characters displayed properly, and when I first tried 3.14 B6, my function
  39706. > keys stopped working.
  39707. > Steve
  39708. -------
  39709.     Ok, I now understand the problem. It's fixed in the next beta
  39710. release, as they say. 
  39711.     Situation is like this. With TRANSPARENT GRight some people still
  39712. want to deal with glyphs in the C1 8-bit control area, and they may do so
  39713. via ALT-nnn and the like. Thus for TRANSPARENT 8-bit stuff is sent as-is.
  39714. But the keyboard verbs (arrows etc) went though the same procedure, and
  39715. thus could come out as SS3 P and so forth. Comments on choppage still apply.
  39716. In beta-7 have added a separate pathway for the keyboard verbs such that
  39717. they are converted into 7-bit equivalents if SET TERM CHAR TRANSPARENT
  39718. has been given.
  39719.     Beta-7 will be available Monday, baring any last minute discoveries.
  39720. Since News postings to/from my place take at least a day to cross the country
  39721. you may see beta-7 before this message.
  39722.     Joe D.
  39723.  
  39724. From news@columbia.edu Mon Oct 24 19:47:09 1994
  39725. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18880
  39726.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 24 Oct 1994 16:48:12 -0400
  39727. Received: by apakabar.cc.columbia.edu id AA18101
  39728.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 24 Oct 1994 16:48:10 -0400
  39729. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!solaris.cc.vt.edu!uunet!EU.net!uknet!lyra.csx.cam.ac.uk!doc.ic.ac.uk!susx.ac.uk!leilabd
  39730. From: leilabd@central.susx.ac.uk (Leila Burrell-Davis)
  39731. Newsgroups: comp.protocols.kermit.misc
  39732. Subject: Re: MS-KERMIT (VT320) termcap entry for unix -- what is it?
  39733. Date: 24 Oct 1994 19:47:09 GMT
  39734. Organization: Computing Service, University of Sussex, UK
  39735. Lines: 205
  39736. Distribution: comp
  39737. Message-Id: <38h2vt$5j4@infa.central.susx.ac.uk>
  39738. References: <1994Oct15.143200.6064@imada.ou.dk>
  39739. Nntp-Posting-Host: solx1.central.susx.ac.uk
  39740. X-Newsreader: TIN [version 1.2 PL2]
  39741. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  39742.  
  39743. Thorbjoern Ravn Andersen (ravn@imada.ou.dk) wrote:
  39744. % I am using MS-Kermit 3.13 and is very pleased with it.  I would very
  39745. % much like to have the best usage of the VT320 capabilites, but have so
  39746. % far failed to find any termcaps with either the zip file I retreived
  39747. % last year, or at kermit.columbia.edu or in our own /etc/termcap
  39748.  
  39749. % Does anybody have a pointer to a good termcap entry for kermit?
  39750.  
  39751. Here you go. Perhaps the Kermit team would like to pick it up and
  39752. include it in the distribution. I haven't been watching comp.terminals
  39753. lately, so I don't know if there's a more recent version.
  39754.  
  39755. Leila
  39756. --
  39757. # Description: DEC vt320 termcap entry
  39758. #
  39759. #       Created by: composer@cs.bu.edu on 10 Feb 1990.
  39760. # Last modified by: composer@cs.bu.edu on 20 Mar 1990.
  39761. # Posted to USENET newsgroup comp.terminals on 15 Feb 1990.
  39762. # Reposted to USENET newsgroup comp.terminals on 20 Mar 1990.
  39763. # ------------------------------------------------------------------------
  39764. #
  39765. # This vt320 termcap entry is a test entry for a vt320.  (Imagine that? ;-)
  39766. # It was written from scratch.  All (well, at least, most :) of the
  39767. # capabilities have been commented and should be approximately in the order
  39768. # that they are in the entry.  I took some educated guesses at some of
  39769. # these, with info from the vt320 "Installing and Using .." manual and from
  39770. # some other termcap entries.  I have yet to test the status line stuff, I
  39771. # will probably test it soon, though.  Where I wasn't sure what to put for
  39772. # a capability, I added a comment of some sort.  Also, the initialization
  39773. # string has comments about what each control sequence is supposed to do.
  39774. # If you have any comments or questions regarding this termcap entry, or if
  39775. # you see something I missed, please send me a note.  Thanks...
  39776. #
  39777. # Enjoy!!
  39778. #
  39779. #            -jeff
  39780. #
  39781. # p.s. Yeah, all these comments don't need to be included, but (who knows?)
  39782. # they might be useful for some of those out there that have not built a
  39783. # termcap entry before, or have forgotten.  If any changes are made that I
  39784. # feel should be reposted, I will probably only post the main termcap entry
  39785. # with the comment for the `is' capability only.  But, then...I dunno.. :)
  39786. #
  39787. # Jeff Kellem
  39788. # INTERNET: composer@cs.bu.edu   (or composer@bu.edu)
  39789. # UUCP: ...!harvard!bu-cs!composer
  39790. # ------------------------------------------------------------------------
  39791. #    hs: has status line
  39792. #    es: other display cmds work while writing the status line
  39793. #        (i.e. escape strings work)
  39794. ##    ts: cmds to move cursor into status line
  39795. #        moves to status line, moves cursor to 1,1 in status line (?),
  39796. #        then clears to end of line
  39797. #    fs: cmds to move cursor back from status line to previous position
  39798. #    ds: cmds to disable the display of the status line
  39799. #        maybe we should just set status line type to none for disable
  39800. #        as in,        :ds=\E[0$~
  39801. #        but, then, may have to chg to host-writable stat line to
  39802. #        move into it.  :(  probably leave it alone for now..
  39803. #        anyways, would rather just keep it host-writable..
  39804. #        currently, we're doing ..
  39805. #        moves to status line, moves cursor to 1,1 in status line (?),
  39806. #        clears to end of line, then moves cursor back to prev position
  39807. #    im: enter insert mode
  39808. #    ei: exit insert mode
  39809. #    IC: insert N chars
  39810. #    mi: safe to move cursor in insert mode. I'm assuming that the
  39811. #        terminal remains in insert mode. (I need better technical docs ;-)
  39812. #    dc: cmds to delete one char position at the cursor
  39813. #    DC: cmds to delete N chars
  39814. #    dm & ed: enter/exit delete mode .. should these be here? NO del mode!
  39815. #        in some termcap entries they seem to be set to nothing, as in:
  39816. #        :dm=:ed=:  ... and others they are nonexistent
  39817. #    al & AL: insert one/N line/s
  39818. #    dl & DL: delete one/N line/s
  39819. #    cs: set scroll region - 2 args, top and bottom lines of region
  39820. #    sf: cmds to scroll one line up
  39821. #    sr: cmds to scroll one line down
  39822. #    am: flag says wrap on margin
  39823. #    xn: flag says cursor on last column/line wrap glitch
  39824. #    ce: cmds to clear to EOL
  39825. #    cl: cmds to clear entire screen and position cursor at upper left
  39826. #    cd: cmds to clear the line the cursor is on to end of screen
  39827. #    ec: cmds to clear N chars, starting with char cursor is on
  39828. #    cm: cmds to move to cursor position LINE, COLUMN
  39829. #    ho: cmds to move cursor to home position, upper left corner
  39830. # @@@ NO ll: cursor to lower left ??
  39831. #    cr: cursor to beginning of line ?? set to ^M right now, why not?
  39832. #    nw: cmds to move cursor to beginning of next line
  39833. #    ta: cmds to move cursor forward to next hardware tab
  39834. # @@@ NO bt: NO backward tab that I can find .. so, NOT included
  39835. #    bs: ADDED 27 Feb 1990, nethack and some older programs need this
  39836. #        `bs' capability is obsolete now, though...
  39837. #    le: cmds to move cursor left one column - should this just be ^H ??
  39838. #    bc: OBSOLETE - same as `le' capability --REMOVED
  39839. #    nd: cmds to move cursor right one column
  39840. #    up & do: cmds to move cursor up/down one line
  39841. #    LE,RE,UP,DO: move cursor N of above lower case capabilities
  39842. #    sc & rc: save/restore cursor position
  39843. #    so & se: start/end standout mode (reverse video)
  39844. #    ms: says that it is safe to move cursor in standout mode..
  39845. #        is this ok??? @@@ ?? seems so..but, maybe not..who knows?
  39846. #    mb: cmds to turn on blinking attribute
  39847. #    md: cmds to turn on bold/double-bright attribute
  39848. #    mk: cmds for invisible attribute
  39849. #    mr: cmds to turn on reverse attribute
  39850. #    me: cmds to turn OFF all attributes
  39851. # @@@ What about uc & ul capabilities .. old underlining stuff..??
  39852. # @@@   doesn't seem like vt320 can deal with it, but who knows?
  39853. # @@@ What to do about alternate character set??  vt320 can handle more
  39854. # @@@ than one alternate set, it looks like.
  39855. #    vi & ve: cmds to turn cursor off & on
  39856. #    bl: cmds to sounds bell
  39857. #    ks: cmds to put numeric keypad and cursor keys in application mode
  39858. #    ke: cmds to put numeric keypad and cursor keys back to normal
  39859. #    kl/kr/ku/kd: chars sent by left/right/up/down arrow keys in appl mode
  39860. #    k1 .. k4: chars sent by pf1 .. pf4 keys
  39861. #    l1 .. l4: strings on pf1 .. pf4 keys (really, "pf1" to "pf4")
  39862. #       @@@      put here so as not to confuse with f1 to f4 keys
  39863. #    kD: chars sent by the `Remove' key ("delete char" key)
  39864. #    kI: chars sent by the `Insert Here' key ("ins char" or 
  39865. #        "enter ins mode" key)
  39866. #    kN: chars sent by the `Next Screen' key ("next page" key)
  39867. #    kP: chars sent by the `Prev Screen' key ("previous page" key)
  39868. #      what about "scroll forward/reverse" key capabilties instead?? nah..
  39869. #    is: initialization string
  39870. #        exit vt52 mode
  39871. #        set operating mode to vt300 mode, 7-bit controls (default)
  39872. #        soft terminal reset
  39873. #        set screen width to 80 columns, side-effect => clears screen
  39874. #        set screen mode to dark background
  39875. #        OVERRIDE disabling of autowrap (from soft reset)
  39876. #        probably shouldn't, but who cares?  :)
  39877. #        set autorepeat mode on
  39878. #        set scrolling to jump scroll
  39879. #        set keyboard usage mode to typewriter
  39880. #        set status line type to host-writable
  39881. #  @@@  set tab stops to every 8 positions (only first 9, for 80 col)
  39882. #  @@@  *NO* need to set tab stops.  `tset' should try to do it, since `ct'
  39883. #  @@@  and `st' capabilities exist.  It uses a combination of `ct', `st',
  39884. #  @@@  and `ch' (or `cm') capabilities to set tab stops at every 8 pos.
  39885. #
  39886. #    rs: reset string, same as `is' capability, right now..
  39887. #        any other suggestions?
  39888. #    st: cmds to set tab stop at current cursor column
  39889. #    ct: cmds to clear all tab stops
  39890. #
  39891. db|vt320|vt300|vt320-am|vt300-am|dec vt320 w/am:\
  39892.     :co#80:li#24:\
  39893.     :hs:\
  39894.     :es:\
  39895.     :ts=\E[1$}\E[;H\E[K:\
  39896.     :fs=\E[0$}:\
  39897.     :ds=\E[1$}\E[;H\E[K\E[0$}:\
  39898.     :im=\E[4h:ei=\E[4l:mi:\
  39899.     :IC=\E[%d@:\
  39900.     :dc=\E[P:DC=\E[%dP:\
  39901.     :al=\E[L:AL=\E[%dL:dl=\E[M:DL=\E[%dM:\
  39902.     :cs=\E[%i%d;%dr:sf=\ED:sr=\EM:\
  39903.     :am:xn:\
  39904.     :ce=\E[K:cl=\E[H\E[J:cd=\E[J:ec=\E[%dX:\
  39905.     :cm=\E[%i%d;%dH:ho=\E[H:\
  39906.     :cr=^M:nw=\EE:ta=^I:bs:\
  39907.     :le=\E[D:nd=\E[C:up=\E[A:do=\E[B:\
  39908.     :LE=\E[%dD:RI=\E[%dC:UP=\E[%dA:DO=\E[%dB:\
  39909.     :sc=\E7:rc=\E8:\
  39910.     :so=\E[7m:se=\E[27m:ms:\
  39911.     :mb=\E[5m:md=\E[1m:mk=\E[m:mr=\E[7m:me=\E[m:\
  39912.     :us=\E[4m:ue=\E[24m:\
  39913.     :vi=\E[?25l:ve=\E[?25h:\
  39914.     :bl=^G:\
  39915.     :ks=\E[?1h\E=:ke=\E[?1l\E>:\
  39916.     :kl=\EOD:kr=\EOC:ku=\EOA:kd=\EOB:\
  39917.     :k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:\
  39918.     :l1=PF1:l2=PF2:l3=PF3:l4=PF4:\
  39919.     :kD=\E[3~:kI=\E[2~:kN=\E[6~:kP=\E[5~:\
  39920.     :is=\E<\E[63;1"p\E[!p\E[?3l\E[?5l\E[?7h\E[?8h\E[?4l\E[?68l\E[2$~:\
  39921.     :rs=\E<\E[63;1"p\E[!p\E[?3l\E[?5l\E[?7h\E[?8h\E[?4l\E[?68l\E[2$~:\
  39922.     :st=\EH:ct=\E[3g:
  39923. #
  39924. db|vt320-w|vt300-w|dec vt300:\
  39925.     :co#132:\
  39926.     :is=\E<\E[63;1"p\E[!p\E[?3h\E[?5l\E[?7h\E[?8h\E[?4l\E[?68l\E[2$~:\
  39927.     :tc=vt320:
  39928. #
  39929. #    da: says scroll up may bring back some lines..does it? haven't
  39930. #        tried it.  (Maybe should get rid of `da'...up to you.)
  39931. #    Are there any other enhancements made in Kermit's vt320 emulation
  39932. #    that I should add?
  39933. #
  39934. de|vt320-kermit|mskermit|kermit-vt320|MS-Kermit v3.00 vt320 emulation:\
  39935.     :ch=\E[%dG:cv=\E[%dd:\
  39936.     :da:tc=vt320:
  39937. # these names are getting ridiculous ..
  39938. de|vt320-kermit-w|mskermit-w|kermit-vt320-w|MS-Kermit vt320 (wide):\
  39939.     :co#132:\
  39940.     :is=\E<\E[63;1"p\E[!p\E[?3h\E[?5l\E[?7h\E[?8h\E[?4l\E[?68l\E[2$~:\
  39941.     :tc=vt320-kermit:
  39942. # End of vt320 termcap entry
  39943. -- 
  39944. Leila Burrell-Davis, Computing Service, University of Sussex, Brighton, UK
  39945. Tel:  +44 (0) 1273 678390            Fax:  +44 (0) 1273 678470
  39946. Email: L.Burrell-Davis@susx.ac.uk
  39947. PGP Public Key fingerprint: 18 A3 45 D6 40 6D 62 00  E9 71 AD 18 E8 E2 9F 7D 
  39948.  
  39949. From news@columbia.edu Mon Oct 24 19:27:53 1994
  39950. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22855
  39951.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 24 Oct 1994 17:44:38 -0400
  39952. Received: by apakabar.cc.columbia.edu id AA23552
  39953.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 24 Oct 1994 17:44:36 -0400
  39954. Path: news.columbia.edu!panix!news.mathworks.com!europa.eng.gtefsd.com!library.ucla.edu!csulb.edu!paris.ics.uci.edu!not-for-mail
  39955. From: david@binky.ics.uci.edu (David Harnick-Shapiro)
  39956. Newsgroups: comp.protocols.kermit.misc
  39957. Subject: Prevent CONNECT from clearing screen?
  39958. Date: 24 Oct 1994 12:27:53 -0700
  39959. Organization: UC Irvine, Department of ICS
  39960. Lines: 24
  39961. Message-Id: <38h1rp$91g@binky.ics.uci.edu>
  39962. Nntp-Posting-Host: binky.ics.uci.edu
  39963. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  39964.  
  39965. Executive Summary:
  39966.     Is there an option to prevent the CONNECT command from
  39967.     clearing the screen?
  39968.  
  39969. Fuller Description:
  39970.     I'm writing a TAKE file;  it handles everything up to the
  39971.     prompt for the user's login name, at which point control
  39972.     is handed over the user (via CONNECT).  But executing
  39973.     CONNECT clears the screen, and some people are unnerved
  39974.     by the loss of the prompt for the login name.
  39975.  
  39976.     I'm using MS Kermit 3.12 on a DOS machine (the remote hosts
  39977.     are Unix and VMS systems, although I don't think they are
  39978.     doing the blanking).
  39979.  
  39980. Apology:
  39981.     If this is not the right newsgroup for a question of this
  39982.     level, I do apologise.  I won't bore you with the list of
  39983.     places I looked before posting, but, honest, I did look :-)
  39984.  
  39985. --------
  39986. David Harnick-Shapiro   Support Group, Department of       david@ics.uci.edu
  39987.                       Information and Computer Science   ucbvax!ucivax!david
  39988.                       University of California, Irvine
  39989.  
  39990. From news@columbia.edu Mon Oct 24 22:04:04 1994
  39991. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24525
  39992.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 24 Oct 1994 18:04:13 -0400
  39993. Received: by apakabar.cc.columbia.edu id AA25469
  39994.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 24 Oct 1994 18:04:10 -0400
  39995. Path: news.columbia.edu!usenet
  39996. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  39997. Newsgroups: comp.protocols.kermit.misc
  39998. Subject: Re: Prevent CONNECT from clearing screen?
  39999. Date: 24 Oct 1994 22:04:04 GMT
  40000. Organization: Columbia University
  40001. Lines: 33
  40002. Message-Id: <38hb0k$or5@apakabar.cc.columbia.edu>
  40003. References: <38h1rp$91g@binky.ics.uci.edu>
  40004. Nntp-Posting-Host: fdc.cc.columbia.edu
  40005. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  40006.  
  40007. In article <38h1rp$91g@binky.ics.uci.edu> david@binky.ics.uci.edu (David  
  40008. Harnick-Shapiro) writes:
  40009. > Executive Summary:
  40010. >     Is there an option to prevent the CONNECT command from
  40011. >     clearing the screen?
  40012. > Fuller Description:
  40013. >     I'm writing a TAKE file;  it handles everything up to the
  40014. >     prompt for the user's login name, at which point control
  40015. >     is handed over the user (via CONNECT).  But executing
  40016. >     CONNECT clears the screen, and some people are unnerved
  40017. >     by the loss of the prompt for the login name.
  40018. If the command parser is active, then the terminal emulator is not
  40019. active, and vice versa.  There is no screen to clear.  The terminal
  40020. screen is created when you first CONNECT, which is after your
  40021. script program has finished executing.  There is no way around this.
  40022.  
  40023. To soothe your users, maybe you could add a message to your script
  40024. program like:
  40025.  
  40026.   echo Your are now logged in to blah.  In a moment, you will be
  40027.   echo connected to blah.  Please do not be unnerved by the blank screen.
  40028.   getc \%a Press any key to begin your session...
  40029.  
  40030. >     I'm using MS Kermit 3.12 on a DOS machine (the remote hosts
  40031. >     are Unix and VMS systems, although I don't think they are
  40032. >     doing the blanking).
  40033. Version 3.13 has been out since June 1993, and we are now beta-testing
  40034. version 3.14 (note: the GETC command in the example above is new to 3.14).
  40035.  
  40036. - Frank
  40037.  
  40038. From news@columbia.edu Mon Oct 24 23:54:41 1994
  40039. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05166
  40040.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 24 Oct 1994 21:05:29 -0400
  40041. Received: by apakabar.cc.columbia.edu id AA10734
  40042.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 24 Oct 1994 21:05:28 -0400
  40043. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!europa.eng.gtefsd.com!swiss.ans.net!cmcl2!thecourier.cims.nyu.edu!thecourier.cims.nyu.edu!nobody
  40044. From: vb1890@cs.nyu.edu (Victor Boyko)
  40045. Newsgroups: comp.protocols.kermit.misc
  40046. Subject: Looping until keypress
  40047. Date: 24 Oct 1994 19:54:41 -0400
  40048. Organization: Courant Institute of Mathematical Sciences
  40049. Lines: 35
  40050. Message-Id: <38hhg1$4n@doc.cs.nyu.edu>
  40051. Nntp-Posting-Host: doc.cs.nyu.edu
  40052. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  40053.  
  40054. Hello!
  40055.  
  40056. I need a macro to output a carriage return (\13) every five seconds
  40057. until any key is pressed. I put the following in my mscustom.ini file
  40058.  
  40059. def loop -
  40060. :l -                 
  40061. set alarm 5,-
  40062. pause 5,-                 
  40063. if not alarm goto e,-
  40064. output \13,-         
  40065. goto l,-             
  40066. :e -                 
  40067. end                  
  40068.  
  40069. However, it does not work when I type loop from the command line.
  40070. Sometimes it just returns to the prompt in 5 seconds,
  40071. and sometimes it sends \13 every 5 seconds, but does not exit when I
  40072. press a key. Strangely, if I make a script loop.scr
  40073.  
  40074. :l
  40075. set alarm 5
  40076. pause 5               
  40077. if not alarm goto e
  40078. output \13   
  40079. goto l
  40080. :e               
  40081. end
  40082.  
  40083. then 'take loop.scr' does exactly what I want. However, this is
  40084. inconvenient since I have to be in the directory where loop.scr is.
  40085.  
  40086. Any help would be greatly appreciated.
  40087.  
  40088. Victor
  40089.  
  40090. From news@columbia.edu Mon Oct 24 22:07:23 1994
  40091. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05286
  40092.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 24 Oct 1994 21:08:00 -0400
  40093. Received: by apakabar.cc.columbia.edu id AA10901
  40094.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 24 Oct 1994 21:07:58 -0400
  40095. Path: news.columbia.edu!panix!news.mathworks.com!europa.eng.gtefsd.com!howland.reston.ans.net!EU.net!uunet!hearst.acc.Virginia.EDU!gems.vcu.edu!fritz
  40096. From: fritz@gems.vcu.edu (J. E. Fritz)
  40097. Newsgroups: comp.protocols.kermit.misc
  40098. Subject: Re: New apc in kermit 3.13
  40099. Message-Id: <1994Oct24.180723.2045@gems.vcu.edu>
  40100. Date: 24 Oct 94 18:07:23 -0400
  40101. References: <Cy6nxo.CDH@UQuebec.CA>
  40102. Organization: Virginia Commonwealth University
  40103. Lines: 14
  40104. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  40105.  
  40106. In article <Cy6nxo.CDH@UQuebec.CA>, Rene_Ouimet@INFOPUQ.UQuebec.CA (Rene Ouimet) writes:
  40107. > I would like to ask if anybody has a way of sending an apc string
  40108. > from a host machine to a ms-kermit user 'asking' or requesting
  40109. > ms-kermit to send back it's version. 
  40110. > The reason for this is that I want to be able to determine if the
  40111. > user is running an older version of ms-kermit that supports the old
  40112. > terminals/terminals functions or the new apc functions...
  40113.  
  40114. We use the PRODUCT macro for this, since it is supported in both 3.12
  40115. and 3.13.  On the other hand, we were lucky enough to have started doing
  40116. this in 3.12, so the move to 3.13 was fairly smooth.
  40117.  
  40118. -Fritz
  40119.  
  40120. From news@columbia.edu Tue Oct 25 04:15:17 1994
  40121. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14666
  40122.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 25 Oct 1994 00:21:45 -0400
  40123. Received: by apakabar.cc.columbia.edu id AA27127
  40124.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 25 Oct 1994 00:21:42 -0400
  40125. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!zombie.ncsc.mil!romulus.ncsc.mil!not-for-mail
  40126. From: richh@romulus.ncsc.mil (Richard L. Hamilton)
  40127. Newsgroups: comp.protocols.kermit.misc
  40128. Subject: Looking for multiple phone number macro
  40129. Date: 25 Oct 1994 00:15:17 -0400
  40130. Organization: ncsc
  40131. Lines: 18
  40132. Message-Id: <38i0ol$fct@romulus.ncsc.mil>
  40133. Nntp-Posting-Host: romulus.ncsc.mil
  40134. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  40135.  
  40136. Anyone have a macro for dialing multiple phone numbers in C-kermit?
  40137. Ok to assume same parameters (baud, parity, etc).  It should
  40138. try the numbers in sequence, repeating that sequence until a successful
  40139. connection was made or it was interrupted.
  40140.  
  40141. I was envisioning a macro that could be used in .ksd, and the first
  40142. time it was invoked would load an array from a new file, say $HOME/.kgd,
  40143. that would define named groups of related numbers.  These named groups
  40144. would be used with the macro in place of the phone number, and the
  40145. macro itself would be used in place of the "call" macro.
  40146.  
  40147. Unfortunately, I haven't gotten quite comfortable enought to write it
  40148. myself yet, but being something that seems to me pretty obvious, I'm
  40149. hoping someone else has.
  40150. -- 
  40151.                       I compute, therefore I am.
  40152. My opinions are strictly by own, and should not be construed to represent
  40153. anyone else.
  40154.  
  40155. From news@columbia.edu Tue Oct 25 05:28:18 1994
  40156. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19858
  40157.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 25 Oct 1994 02:05:53 -0400
  40158. Received: by apakabar.cc.columbia.edu id AA02696
  40159.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 25 Oct 1994 02:05:52 -0400
  40160. Newsgroups: comp.protocols.kermit.misc
  40161. Path: news.columbia.edu!sol.ctr.columbia.edu!newsxfer.itd.umich.edu!zip.eecs.umich.edu!yeshua.marcam.com!charnel.ecst.csuchico.edu!olivea!news.hal.COM!decwrl!netcomsv!netcom.com!jhurwit
  40162. From: jhurwit@netcom.com (Jeffrey Hurwit)
  40163. Subject: Re: Prevent CONNECT from clearing screen?
  40164. Message-Id: <jhurwitCy7r77.IGv@netcom.com>
  40165. Organization: Organization?  What organization?
  40166. X-Newsreader: TIN [version 1.2 PL1]
  40167. References: <38h1rp$91g@binky.ics.uci.edu>
  40168. Date: Tue, 25 Oct 1994 05:28:18 GMT
  40169. Lines: 41
  40170. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  40171.  
  40172. In article <38h1rp$91g@binky.ics.uci.edu>, 
  40173. David Harnick-Shapiro (david@binky.ics.uci.edu) wrote:
  40174.  
  40175. >    I'm writing a TAKE file;  it handles everything up to the
  40176. >    prompt for the user's login name, at which point control
  40177. >    is handed over the user (via CONNECT).  But executing
  40178. >    CONNECT clears the screen, and some people are unnerved
  40179. >    by the loss of the prompt for the login name.
  40180.  
  40181.     My suggestion would be to have your login script (your TAKE file)
  40182.     prompt the user for his/her login name and password, and put these
  40183.     values into variables for later use by your script (that is to say,
  40184.     have your script handle the prompts for login name and password,
  40185.     too.)  On my host, for example, login can fail for a variety of
  40186.     reasons after the login name and password is supplied.  I've added
  40187.     more instructions to my login script to handle this situation, thus
  40188.     automating the entire login process.
  40189.  
  40190. >    I'm using MS Kermit 3.12 on a DOS machine (the remote hosts
  40191. >    are Unix and VMS systems, although I don't think they are
  40192. >    doing the blanking).
  40193.  
  40194.     No, they are not.  You see on your terminal screen only what comes
  40195.     in from the serial port after the CONNECT command executes.  If you
  40196.     have your CONNECT command conditional on the results of an INPUT
  40197.     command ('INPUT {whatever}', 'IF SUCCESS CONNECT'), you'll see on
  40198.     your terminal screen only what immediately follows the string that
  40199.     the INPUT command was testing for.
  40200.  
  40201.     If you decide to have your script handle the login name and
  40202.     password prompts, I'd suggest that you update to at least MSK 3.13. 
  40203.     Your users will not want their passwords to echo back on the
  40204.     screen; MSK 3.13 includes a new command, ASKQ, which turns echo off
  40205.     when it prompts the user.  (You might want to prompt them twice for
  40206.     their password, and have your script compare the entries for
  40207.     consistency.)  Also, for security, it would probably be a good idea
  40208.     to add a line or two to flush the user's login name and password
  40209.     out of memory ('ASSIGN \%variable' with no value following will do
  40210.     the job) just before going to CONNECT mode.
  40211.  
  40212.                         Jeff
  40213.  
  40214. From news@columbia.edu Sun Oct 25 05:43:51 1994
  40215. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19940
  40216.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 25 Oct 1994 02:08:26 -0400
  40217. Received: by apakabar.cc.columbia.edu id AA02793
  40218.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 25 Oct 1994 02:08:25 -0400
  40219. Path: news.columbia.edu!sol.ctr.columbia.edu!newsxfer.itd.umich.edu!zip.eecs.umich.edu!yeshua.marcam.com!charnel.ecst.csuchico.edu!olivea!news.hal.COM!decwrl!tribune.usask.ca!quartz.ucs.ualberta.ca!unixg.ubc.ca!vanbc.wimsey.com!vanbc!cacclin
  40220. From: cacclin@vanbc.wimsey.com (Stephen Cacclin)
  40221. Newsgroups: comp.protocols.kermit.misc
  40222. Subject: URGENT: Kermit needed for SuperDOS
  40223. Date: 24 Oct 1994 22:43:51 -0700
  40224. Organization: Wimsey Information Services
  40225. Lines: 13
  40226. Message-Id: <cacclin.783063123@vanbc>
  40227. Nntp-Posting-Host: vanbc.wimsey.com
  40228. Keywords: SuperDOS Kermit
  40229. X-Newsreader: NN version 6.5.0 #13 (NOV)
  40230. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  40231.  
  40232. Just as the tag line says...I am in need of Kermit for an operating system
  40233. named SuperDOS. SuperDOS is a very esoteric multi-tasking pseudo-O/S for PC's 
  40234. made by BlueBird Systems of California. They have informed me that there is a
  40235. version of Kermit available - anyone know where? I have looked at 
  40236. kermit.columbia.edu but could not find it.
  40237.  
  40238. First correct respondent is truly a master of weird and archaic knowledge.
  40239. Actually, if I find anyone who has even heard about SuperDOS, I'll be amazed.
  40240.  
  40241. Help!
  40242.  
  40243. Stephen Cacclin
  40244. Echelon Computing
  40245.  
  40246. From news@columbia.edu Tue Oct 25 05:55:48 1994
  40247. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20731
  40248.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 25 Oct 1994 02:31:12 -0400
  40249. Received: by apakabar.cc.columbia.edu id AA03819
  40250.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 25 Oct 1994 02:31:11 -0400
  40251. Newsgroups: comp.protocols.kermit.misc
  40252. Path: news.columbia.edu!sol.ctr.columbia.edu!newsxfer.itd.umich.edu!zip.eecs.umich.edu!yeshua.marcam.com!charnel.ecst.csuchico.edu!olivea!news.hal.COM!decwrl!netcomsv!netcom.com!jhurwit
  40253. From: jhurwit@netcom.com (Jeffrey Hurwit)
  40254. Subject: The reason why I (and many others) can't upload...
  40255. Message-Id: <jhurwitCy7sH1.Ks1@netcom.com>
  40256. Organization: Organization?  What organization?
  40257. X-Newsreader: TIN [version 1.2 PL1]
  40258. Date: Tue, 25 Oct 1994 05:55:48 GMT
  40259. Lines: 68
  40260. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  40261.  
  40262.     X-posting this here may seem like proselytizing the converted, but
  40263.     I thought that there might be some in this group who would enjoy
  40264.     seeing it (like f'rinstance, the Kermit developers :) ...
  40265.  
  40266. [ Article crossposted from netcom.software ]
  40267. [ Author was Glenn R. Stone ]
  40268. [ Posted on Tue, 25 Oct 1994 01:11:00 GMT ]
  40269.  
  40270. In <deejayCy218G.4sK@netcom.com> deejay@netcom.com (Jack Wilson) writes:
  40271.  
  40272. >... because I telnet in (from a local freenet).  TELNET only transmits
  40273. >7 bits, so it chokes on 8-bit protocols like ZMODEM and XMODEM.  
  40274.  
  40275. >   RLOGIN can handle uploads just fine.
  40276.  
  40277. this is gonna *sound* cheesy, but it's a lot better than you'd think...
  40278. so can... (ta daaaa) Kermit.
  40279.  
  40280. "But Kermit sucks!"
  40281.  
  40282. Not anymore. 
  40283.  
  40284. Kermit 3.14 for DOS and 5A(190) for Unixen supports megapackets (up to 9k if
  40285. your connection will handle it, though 9600 usually goes best at around 1k),
  40286. sliding windows, partial file transfers for those bombed connections, TCP/IP
  40287. (that's right, Kermit does NETWORKS!  Let's see DumbCom 57.5 do that!), and,
  40288. in the DOS version (at least), a damn nice vt320 emulator with configurable
  40289. colors for the various underline/blinkenmoden.  
  40290.  
  40291. Now, granted, this is beta software, but 5A(190) is due out of beta Real
  40292. Soon Now, and 3.14 will follow it... and most of the beta bugs are on real
  40293. obscure systems or some such (I did find a bug in 5A(178) when it came out,
  40294. but that was when AIX was fairly damned obscure, so my point stands...).
  40295. The goodies (source and pre-compiled executables for your favourite boxen)
  40296. are on ftp://kermit.columbia.edu/kermit/test (I think that's right, follow
  40297. the README's to be sure) and free for the taking.  
  40298.  
  40299. "But how am I gonna get the binaries down to my PC if I'm stuck with
  40300. eightbit download software and a seven bit line?"
  40301.  
  40302. Have no fear, gentle netizen, they've solved that problem.  They've got an
  40303. encoded bootstrap file and a little BASIC program to decode it into a form
  40304. you can use to go grab the real thing.  Check out the README files and such
  40305. like in the appropriate directories.  
  40306.  
  40307. Not only that, if you really don't want to give up WunderKom but are still
  40308. stuck with the seven bit curse, they've got a stripped down version called
  40309. KerLite you can use as an auxiliary transfer program (i.e. shell out, crank
  40310. up KerLite to do your download, exit back, and be back in your favorite
  40311. snazzy screenbitpusher).  
  40312.  
  40313. This sounds a helluva lot like a sales pitch.  It's not.  Kermit is FREE,
  40314. gratis, de nada, on the net.house.  But having put a little time and effort
  40315. in on it myself and (a) seeing how extremely functional, albeit in an
  40316. un-flashy way, it is and (b) preferring to see folks get something for free
  40317. than shell out hard-earned bucks to the fat cats, I thought I'd say
  40318. something.  Besides, I'm tired of seeing a damn nice piece of work get
  40319. dissed (or worse, dis-missed).  It scripts, it autodials, it slices, it
  40320. dices, it juliennes fries.  And all for the price of your time to go fetch
  40321. it.  No, it's not flashy.  It works.  Well.  The only thing it won't do is
  40322. run X, and that's the only reason I ever touch another commo program
  40323. DOSwise.  It's the only thing I use to serve downloads on the Unix side.
  40324. You could even use it in place of FTP if you've a kitchy machine or firewall
  40325. in the way.  Whee.
  40326.  
  40327. In a nutshell: Seven-bitters, get Kermit and grin instead of whine.
  40328.  
  40329. warp eight bot, kermit addict
  40330.  
  40331. From news@columbia.edu Mon Oct 24 13:24:00 1994
  40332. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21390
  40333.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 25 Oct 1994 02:52:13 -0400
  40334. Received: by apakabar.cc.columbia.edu id AA04541
  40335.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 25 Oct 1994 02:52:12 -0400
  40336. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  40337. From: jrd@cc.usu.edu (Joe Doupnik)
  40338. Newsgroups: comp.protocols.kermit.misc
  40339. Subject: Re: Prevent CONNECT from clearing screen?
  40340. Message-Id: <1994Oct24.192400.31110@cc.usu.edu>
  40341. Date: 24 Oct 94 19:24:00 MDT
  40342. References: <38h1rp$91g@binky.ics.uci.edu>
  40343. Organization: Utah State University
  40344. Lines: 23
  40345. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  40346.  
  40347. In article <38h1rp$91g@binky.ics.uci.edu>, david@binky.ics.uci.edu (David Harnick-Shapiro) writes:
  40348. > Executive Summary:
  40349. >     Is there an option to prevent the CONNECT command from
  40350. >     clearing the screen?
  40351. > Fuller Description:
  40352. >     I'm writing a TAKE file;  it handles everything up to the
  40353. >     prompt for the user's login name, at which point control
  40354. >     is handed over the user (via CONNECT).  But executing
  40355. >     CONNECT clears the screen, and some people are unnerved
  40356. >     by the loss of the prompt for the login name.
  40357. >     I'm using MS Kermit 3.12 on a DOS machine (the remote hosts
  40358. >     are Unix and VMS systems, although I don't think they are
  40359. >     doing the blanking).
  40360. ---------
  40361.     Nope. The terminal emulator must be in a known state when emulation
  40362. begins, and the screen should be clean to hold what the host may send.
  40363. Imagine the host sending cursor commands over a screen previously scribbled
  40364. upon at Kermit command level. That would be a mess for 99.x% of the users.
  40365.     Why not go ahead and finish the script job by prompting for a
  40366. password and reading it quietly, then start Connect mode?
  40367.     Joe D.
  40368.  
  40369. From news@columbia.edu Mon Oct 24 15:49:19 1994
  40370. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22098
  40371.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 25 Oct 1994 03:13:24 -0400
  40372. Received: by apakabar.cc.columbia.edu id AA05191
  40373.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 25 Oct 1994 03:13:22 -0400
  40374. Path: news.columbia.edu!sol.ctr.columbia.edu!usc!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  40375. From: jrd@cc.usu.edu (Joe Doupnik)
  40376. Newsgroups: comp.protocols.kermit.misc
  40377. Subject: Re: Looping until keypress
  40378. Message-Id: <1994Oct24.214919.31123@cc.usu.edu>
  40379. Date: 24 Oct 94 21:49:19 MDT
  40380. References: <38hhg1$4n@doc.cs.nyu.edu>
  40381. Organization: Utah State University
  40382. Lines: 42
  40383. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  40384.  
  40385. In article <38hhg1$4n@doc.cs.nyu.edu>, vb1890@cs.nyu.edu (Victor Boyko) writes:
  40386. > Hello!
  40387. > I need a macro to output a carriage return (\13) every five seconds
  40388. > until any key is pressed. I put the following in my mscustom.ini file
  40389. > def loop -
  40390. > :l -                 
  40391.   ^^^^---------- syntax error. This line must have a comma to demark the
  40392.          end of line, like this   :l,-    Use SHOW MAC LOOP to
  40393.          see its definition.
  40394.  
  40395. > set alarm 5,-
  40396. > pause 5,-                 
  40397. > if not alarm goto e,-
  40398. > output \13,-         
  40399. > goto l,-             
  40400. > :e -                 
  40401. > end                  
  40402. > However, it does not work when I type loop from the command line.
  40403. > Sometimes it just returns to the prompt in 5 seconds,
  40404. > and sometimes it sends \13 every 5 seconds, but does not exit when I
  40405. > press a key. Strangely, if I make a script loop.scr
  40406. > :l
  40407.     The end of line is explicit in the file since you put it there.
  40408.  
  40409. > set alarm 5
  40410. > pause 5               
  40411. > if not alarm goto e
  40412. > output \13   
  40413. > goto l
  40414. > :e               
  40415. > end
  40416. > then 'take loop.scr' does exactly what I want. However, this is
  40417. > inconvenient since I have to be in the directory where loop.scr is.
  40418.  
  40419.         The corrected form of your macro (not Take file) works perfectly
  40420. here.
  40421.     Joe D.
  40422.  
  40423. From news@columbia.edu Tue Oct 25 07:50:57 1994
  40424. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24898
  40425.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 25 Oct 1994 04:30:54 -0400
  40426. Received: by apakabar.cc.columbia.edu id AA07476
  40427.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 25 Oct 1994 04:30:52 -0400
  40428. Path: news.columbia.edu!sol.ctr.columbia.edu!caen!msuinfo!harbinger.cc.monash.edu.au!news.cs.su.oz.au!metro!med.su.oz.au!blackburn.med.su.oz.au!alucas
  40429. From: alucas@blackburn.med.su.oz.au (Andrew Lucas)
  40430. Newsgroups: comp.protocols.kermit.misc
  40431. Subject: z-modem & c-kermit
  40432. Date: 25 Oct 1994 17:50:57 +1000
  40433. Organization: Faculty of Medicine, University of Sydney
  40434. Lines: 12
  40435. Message-Id: <alucas.783071213@blackburn.med.su.oz.au>
  40436. Nntp-Posting-Host: blackburn.med.su.oz.au
  40437. Summary: zmodem & c-kermit
  40438. Keywords: zmodem
  40439. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  40440.  
  40441. Hi there world,
  40442.         I use c-kermit for OS2 and have a great
  40443. utility program called p.exe which provides zmodem
  40444. capability to c-kermit.
  40445.  
  40446. Question:  Is there an equivalent UNIX program that I
  40447. can get for my host?
  40448.  
  40449. Thanks in advance
  40450.  
  40451. Andrew - Sydney, Australia
  40452. alucas@med.su.oz.au
  40453.  
  40454. From news@columbia.edu Tue Oct 25 09:28:41 1994
  40455. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26632
  40456.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 25 Oct 1994 05:28:52 -0400
  40457. Received: by apakabar.cc.columbia.edu id AA08991
  40458.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 25 Oct 1994 05:28:51 -0400
  40459. Path: news.columbia.edu!sol.ctr.columbia.edu!newsxfer.itd.umich.edu!jobone!heifetz.msen.com!jamaican
  40460. From: jamaican@garnet.msen.com (Dwight Hugget)
  40461. Newsgroups: comp.protocols.kermit.misc
  40462. Subject: DIALING SCRIPT not found
  40463. Date: 25 Oct 1994 09:28:41 GMT
  40464. Organization: Msen, Inc. -- Ann Arbor, MI (account info: +1 313 998-4562)
  40465. Lines: 18
  40466. Message-Id: <38ij49$rm2$1@heifetz.msen.com>
  40467. Nntp-Posting-Host: garnet.msen.com
  40468. X-Newsreader: TIN [version 1.2 PL2]
  40469. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  40470.  
  40471.  
  40472. I am using MS_Kermit Beta 7 and cant get the dialing script to work.
  40473. I've read the documentation that came with mstibm.zip from the ftp
  40474. site. I've tried all the flavors of setting my dialups.txt and it still
  40475. tells me that dialing script not found. I am currently running with the
  40476. following set in my autoexec.bat :
  40477.     SET DIALFILE=C:\KERMIT\DIALUPS.TXT
  40478.  
  40479. What's wrong!!!!
  40480. :-(
  40481. Dwight
  40482. --
  40483. =======================================================================
  40484. =             "Artist seeks Boss with vision impairment."             =
  40485. =  0/       __o                                              ,,,      = 
  40486. = <|      _`\< _                                            (o o)     =
  40487. = / >  --(_)/ (_)------- jamaican@garnet.msen.com -------ooO-(_)-Ooo- = 
  40488. =======================================================================
  40489.  
  40490. From news@columbia.edu Tue Oct 25 09:11:41 1994
  40491. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27387
  40492.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 25 Oct 1994 05:54:12 -0400
  40493. Received: by apakabar.cc.columbia.edu id AA09546
  40494.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 25 Oct 1994 05:54:10 -0400
  40495. Newsgroups: comp.protocols.kermit.misc
  40496. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!agate!darkstar.UCSC.EDU!news.hal.COM!decwrl!netcomsv!netcom.com!jhurwit
  40497. From: jhurwit@netcom.com (Jeffrey Hurwit)
  40498. Subject: Re: Looping until keypress
  40499. Message-Id: <jhurwitCy81JH.A1z@netcom.com>
  40500. Organization: Organization?  What organization?
  40501. X-Newsreader: TIN [version 1.2 PL1]
  40502. References: <38hhg1$4n@doc.cs.nyu.edu>
  40503. Date: Tue, 25 Oct 1994 09:11:41 GMT
  40504. Lines: 14
  40505. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  40506.  
  40507. In article <38hhg1$4n@doc.cs.nyu.edu>, Victor Boyko (vb1890@cs.nyu.edu) wrote:
  40508. >Hello!
  40509.  
  40510. >I need a macro to output a carriage return (\13) every five seconds
  40511. >until any key is pressed. I put the following in my mscustom.ini file
  40512.  
  40513.     I don't think you can use goto label in a macro definition, only in
  40514.     a script.  You could solve the directory problem by defining a
  40515.     macro that points to the script, eg. 'define loop take
  40516.     c:\kermit\loop' or some such.  (You could then tie it to a hot key,
  40517.     with 'set key \#### {\Kloop}', where #### is the scan code of
  40518.     whatever key you want to activate it.)
  40519.  
  40520.                         Jeff
  40521.  
  40522. From news@columbia.edu Tue Oct 25 05:17:20 1994
  40523. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02660
  40524.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 25 Oct 1994 08:22:26 -0400
  40525. Received: by apakabar.cc.columbia.edu id AA14779
  40526.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 25 Oct 1994 08:22:25 -0400
  40527. Newsgroups: comp.protocols.kermit.misc
  40528. Path: news.columbia.edu!sol.ctr.columbia.edu!math.ohio-state.edu!cs.utexas.edu!convex!news.duke.edu!solaris.cc.vt.edu!spcuna!ritz!kudut
  40529. From: kudut@ritz.mordor.com (Ken Udut)
  40530. Subject: up-arrow History in MS-Kermit?
  40531. Organization: Mordor International BBS - Jersey City, NJ
  40532. Date: Tue, 25 Oct 1994 05:17:20 GMT
  40533. Message-Id: <Cy7qox.79u@ritz.mordor.com>
  40534. Lines: 11
  40535. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  40536.  
  40537.  
  40538. Would it be possible to add a simple up-arrow history (last-command)
  40539. to MS-Kermit 3.14?
  40540.  
  40541. Even a "hack" (running a TSR) would be glorious.  
  40542.  
  40543. Something that keeps the last 25 commands or so, of course able to
  40544. turn on and off for memory considerations :-)
  40545.  
  40546. Ken
  40547. kudut@ritz.mordor.com
  40548.  
  40549. From news@columbia.edu Tue Oct 25 13:11:55 1994
  40550. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05679
  40551.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 25 Oct 1994 09:12:01 -0400
  40552. Received: by apakabar.cc.columbia.edu id AA17905
  40553.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 25 Oct 1994 09:11:59 -0400
  40554. Path: news.columbia.edu!usenet
  40555. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  40556. Newsgroups: comp.protocols.kermit.misc
  40557. Subject: Re: DIALING SCRIPT not found
  40558. Date: 25 Oct 1994 13:11:55 GMT
  40559. Organization: Columbia University
  40560. Lines: 12
  40561. Message-Id: <38j06r$hf8@apakabar.cc.columbia.edu>
  40562. References: <38ij49$rm2$1@heifetz.msen.com>
  40563. Nntp-Posting-Host: fdc.cc.columbia.edu
  40564. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  40565.  
  40566. In article <38ij49$rm2$1@heifetz.msen.com> jamaican@garnet.msen.com (Dwight  
  40567. Hugget) writes:
  40568. > I am using MS_Kermit Beta 7 and cant get the dialing script to work.
  40569. >
  40570. Oops.  There is a problem in Beta-7 that will be fixed in Beta-8.
  40571.  
  40572. Watch this space for announcements.
  40573.  
  40574. Sorry.
  40575.  
  40576. - Frank
  40577.  
  40578. From news@columbia.edu Tue Oct 25 13:14:03 1994
  40579. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05775
  40580.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 25 Oct 1994 09:14:07 -0400
  40581. Received: by apakabar.cc.columbia.edu id AA18057
  40582.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 25 Oct 1994 09:14:05 -0400
  40583. Path: news.columbia.edu!usenet
  40584. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  40585. Newsgroups: comp.protocols.kermit.misc
  40586. Subject: Re: Looping until keypress
  40587. Date: 25 Oct 1994 13:14:03 GMT
  40588. Organization: Columbia University
  40589. Lines: 10
  40590. Message-Id: <38j0ar$hju@apakabar.cc.columbia.edu>
  40591. References: <jhurwitCy81JH.A1z@netcom.com>
  40592. Nntp-Posting-Host: fdc.cc.columbia.edu
  40593. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  40594.  
  40595. In article <jhurwitCy81JH.A1z@netcom.com> jhurwit@netcom.com (Jeffrey Hurwit)  
  40596. writes:
  40597. >     I don't think you can use goto label in a macro definition, only in
  40598. >     a script.
  40599. >
  40600. Au contraire -- labels and GOTOs are perfectly OK in macros.  You can even
  40601. issue a GOTO from inside a macro to the enclosing context.  As Joe pointed
  40602. out, the problem in the script that was posted was a missing comma.
  40603.  
  40604. - Frank
  40605.  
  40606. From news@columbia.edu Tue Oct 25 15:33:57 1994
  40607. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19655
  40608.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 25 Oct 1994 12:31:08 -0400
  40609. Received: by apakabar.cc.columbia.edu id AA16644
  40610.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 25 Oct 1994 12:31:06 -0400
  40611. Control: cancel <jhurwitCy7sH1.Ks1@netcom.com>
  40612. Newsgroups: comp.protocols.kermit.misc
  40613. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!yeshua.marcam.com!charnel.ecst.csuchico.edu!olivea!news.hal.COM!decwrl!netcomsv!netcom.com!jhurwit
  40614. From: jhurwit@netcom.com (Jeffrey Hurwit)
  40615. Subject: cancel <jhurwitCy7sH1.Ks1@netcom.com>
  40616. Message-Id: <jhurwitCy8J8L.9pM@netcom.com>
  40617. Organization: Organization?  What organization?
  40618. X-Newsreader: TIN [version 1.2 PL1]
  40619. Date: Tue, 25 Oct 1994 15:33:57 GMT
  40620. Lines: 1
  40621. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  40622.  
  40623. Article cancelled from within tin [v1.2 PL1]
  40624.  
  40625. From news@columbia.edu Tue Oct 25 03:22:54 1994
  40626. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19696
  40627.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 25 Oct 1994 12:31:58 -0400
  40628. Received: by apakabar.cc.columbia.edu id AA16833
  40629.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 25 Oct 1994 12:31:57 -0400
  40630. Path: news.columbia.edu!panix!news.mathworks.com!news.duke.edu!convex!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  40631. From: jrd@cc.usu.edu (Joe Doupnik)
  40632. Newsgroups: comp.protocols.kermit.misc
  40633. Subject: Re: up-arrow History in MS-Kermit?
  40634. Message-Id: <1994Oct25.092254.31155@cc.usu.edu>
  40635. Date: 25 Oct 94 09:22:54 MDT
  40636. References: <Cy7qox.79u@ritz.mordor.com>
  40637. Organization: Utah State University
  40638. Lines: 23
  40639. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  40640.  
  40641. In article <Cy7qox.79u@ritz.mordor.com>, kudut@ritz.mordor.com (Ken Udut) writes:
  40642. > Would it be possible to add a simple up-arrow history (last-command)
  40643. > to MS-Kermit 3.14?
  40644. > Even a "hack" (running a TSR) would be glorious.  
  40645. > Something that keeps the last 25 commands or so, of course able to
  40646. > turn on and off for memory considerations :-)
  40647. > Ken
  40648. > kudut@ritz.mordor.com
  40649. ----------
  40650.     There is no command history buffer in MSK. Not only is such an
  40651. item slightly ambiguous (which command, the raw user typed one or the
  40652. one after string substitution occurred, or the Take file/macro last
  40653. executed, etc), but each command can be 1000 bytes long. Think of what
  40654. memory consumption that means. Once recall occurs then immediately
  40655. everyone wants a command line editor, and frankly that is a lot of
  40656. code in an already extremely complex environment internally.
  40657.     As a person who types more MSK command lines that almost anyone
  40658. I've found command line recall to be a dispensable frill.
  40659.     Joe D. 
  40660.  
  40661. From news@columbia.edu Tue Oct 25 16:48:01 1994
  40662. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00118
  40663.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 25 Oct 1994 15:00:52 -0400
  40664. Received: by apakabar.cc.columbia.edu id AA00357
  40665.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 25 Oct 1994 15:00:50 -0400
  40666. Newsgroups: comp.protocols.kermit.misc
  40667. Path: news.columbia.edu!panix!news.mathworks.com!yeshua.marcam.com!charnel.ecst.csuchico.edu!olivea!news.hal.COM!decwrl!netcomsv!netcom.com!jhurwit
  40668. From: jhurwit@netcom.com (Jeffrey Hurwit)
  40669. Subject: Re: Looping until keypress
  40670. Message-Id: <jhurwitCy8Mo1.HBv@netcom.com>
  40671. Organization: Organization?  What organization?
  40672. X-Newsreader: TIN [version 1.2 PL1]
  40673. References: <jhurwitCy81JH.A1z@netcom.com> <38j0ar$hju@apakabar.cc.columbia.edu>
  40674. Date: Tue, 25 Oct 1994 16:48:01 GMT
  40675. Lines: 16
  40676. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  40677.  
  40678. In article <38j0ar$hju@apakabar.cc.columbia.edu>, 
  40679. Frank da Cruz (fdc@fdc.cc.columbia.edu) wrote:
  40680.  
  40681. >In article <jhurwitCy81JH.A1z@netcom.com> jhurwit@netcom.com (Jeffrey Hurwit)  
  40682. >writes:
  40683. >>     I don't think you can use goto label in a macro definition, only in
  40684. >>     a script.
  40685. >>
  40686. >Au contraire -- labels and GOTOs are perfectly OK in macros.  You can even
  40687. >issue a GOTO from inside a macro to the enclosing context.  As Joe pointed
  40688. >out, the problem in the script that was posted was a missing comma.
  40689.  
  40690.     Ahh, that's good to know.  Our news feed's been a bit slow, and
  40691.     Joe's article hadn't reached us when I posted.
  40692.  
  40693.                         Jeff
  40694.  
  40695. From news@columbia.edu Mon Oct 24 16:15:58 1994
  40696. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14139
  40697.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 25 Oct 1994 17:48:44 -0400
  40698. Received: by apakabar.cc.columbia.edu id AA15997
  40699.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 25 Oct 1994 17:48:42 -0400
  40700. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.duke.edu!news.mathworks.com!europa.eng.gtefsd.com!howland.reston.ans.net!vixen.cso.uiuc.edu!ux2.cso.uiuc.edu!shair
  40701. From: shair@uiuc.edu (Bob Shair)
  40702. Newsgroups: comp.protocols.kermit.misc
  40703. Subject: Re: procomm-kermit
  40704. Date: 24 Oct 1994 16:15:58 GMT
  40705. Organization: University of Illinois at Urbana
  40706. Lines: 27
  40707. Message-Id: <38gmju$njl@vixen.cso.uiuc.edu>
  40708. References: <94296.155833N52BC@CUNYVM.CUNY.EDU>
  40709. Nntp-Posting-Host: ux2.cso.uiuc.edu
  40710. Originator: shair@ux2.cso.uiuc.edu
  40711. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  40712.  
  40713. <N52BC@CUNYVM.CUNY.EDU> writes:
  40714.  
  40715. >Can somebody help me.  I have a dial up account to the internet.  In order to
  40716. >download stuff I use a version of procomm (shareware) that supports the
  40717. >kermit protocol.  But I am not sure how I would go about using kermit to
  40718. >download.  If anyone knows what I'm talking about or knows how to help, please
  40719. >respond.  I will greatly appreciate it.
  40720.  
  40721. Like this:
  40722.  
  40723. On your Unix system on the Internet, running C-Kermit, say:
  40724. kermit -s filename
  40725.  
  40726. then press the PgDn key on your PC, and Procomm will attempt to download
  40727. the file.
  40728.  
  40729. The old, shareware, version of Procomm which I had was far backlevel,
  40730. even then, in the Kermit features supported.  Hope they're better now.
  40731.  
  40732. All kinds of things can go wrong.  You may not even be running Unix.
  40733. Kermit may not be in your PATH.  It may not be installed at all.
  40734.  
  40735. -- 
  40736.  
  40737. Bob Shair                          shair@uiuc.edu
  40738. Open Systems Specialist           SHAIR@UIUCVMD (bitnet)
  40739. Champaign, Illinois           217/356-2684
  40740.  
  40741. From news@columbia.edu Tue Oct 25 19:53:04 1994
  40742. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17791
  40743.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 25 Oct 1994 18:44:19 -0400
  40744. Received: by apakabar.cc.columbia.edu id AA20569
  40745.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 25 Oct 1994 18:44:16 -0400
  40746. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!gatech!concert!lester.appstate.edu!lester.appstate.edu!krb
  40747. From: krb@lester.appstate.edu (Kinney Baughman)
  40748. Newsgroups: comp.protocols.kermit.misc
  40749. Subject: 3.13/Can't dial # in dialfile
  40750. Date: 25 Oct 1994 19:53:04 GMT
  40751. Organization: Appalachian State University
  40752. Lines: 12
  40753. Message-Id: <38jnn0$rbn@lester.appstate.edu>
  40754. Nntp-Posting-Host: lester.appstate.edu
  40755. X-Newsreader: TIN [version 1.2 PL0]
  40756. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  40757.  
  40758. Each time I try to run my old script file for dialing into the computer
  40759. here at ASU, Kermit 3.13 reads the number and then I get a <Ctrl-C>
  40760. "Command canceled" message on the screen and I'm thrown back to the
  40761. Ms-Kermit prompt.
  40762.  
  40763. I'm using an Infotel 14.4 Fax modem.  I have my modem defined to Hayes.
  40764. I think this might be the problem.  But none of the other *.scr files
  40765. seem to work any better, though they each exhibit other problems.
  40766.  
  40767. Is there a *.scr file for the Infotel modem anywhere I could download?
  40768.  
  40769. Kinney
  40770.  
  40771. From news@columbia.edu Tue Oct 25 22:57:38 1994
  40772. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18550
  40773.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 25 Oct 1994 18:57:40 -0400
  40774. Received: by apakabar.cc.columbia.edu id AA21721
  40775.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 25 Oct 1994 18:57:39 -0400
  40776. Path: news.columbia.edu!usenet
  40777. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  40778. Newsgroups: comp.protocols.kermit.misc
  40779. Subject: MS-DOS Kermit 3.14 Beta-8 Ready for Testing
  40780. Date: 25 Oct 1994 22:57:38 GMT
  40781. Organization: Columbia University
  40782. Lines: 46
  40783. Message-Id: <38k2h2$l6n@apakabar.cc.columbia.edu>
  40784. Nntp-Posting-Host: fdc.cc.columbia.edu
  40785. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  40786.  
  40787. MS-DOS Kermit 3.14 Beta-8 is available for anonymous ftp from
  40788. kermit.columbia.edu as of 6:45pm EST, Tuesday Oct 25:
  40789.  
  40790.   kermit/test/bin/mstibm.zip  - Binary ZIP file
  40791.   kermit/test/text/mstibm.uue - Uuencoded ZIP file
  40792.   kermit/test/text/mstibm.boo - BOO-encoded ZIP file
  40793.  
  40794. The UUE and BOO files are also available on BITNET from KERMSRV at CUVMA.
  40795.  
  40796. Changes and fixes include:
  40797.  
  40798.  . Trimming of trailing spaces at end of command and before comment in a
  40799.    TAKE file (broken in Beta-7) mostly fixed, but still needs a bit
  40800.    more work.  This affected a lot dialing scripts and similar items
  40801.    in Beta-7.
  40802.  
  40803.  . Fossil driver fix when sending file-transfer data packets that are
  40804.    longer than the fossil's transmit buffer length.
  40805.  
  40806.  . SET { SEND, RECEIVE } PATHNAMES { ON, OFF } added.  SET RECEIVE
  40807.    PATHNAMES OFF is useful on BBSs or other unattended systems when you
  40808.    want to restrict incoming files to the current directory.  SEND is OFF
  40809.    and RECEIVE is ON by default for compatability with previous behavior.
  40810.  
  40811.  . Resetting the terminal (Alt-=) while in Tektronix submode of a VT
  40812.    terminal and then toggling to a VT mode (Alt-Minus) now restores the
  40813.    proper VT state for arrow-key codes sent to the host.
  40814.  
  40815.  . GETC rejects special keys (such as Fn) and quits when Control-C is
  40816.    typed.
  40817.  
  40818.  . Fixed bug in closing network connections when Kermit exits to DOS.
  40819.  
  40820.  . SET TERMINAL VIDEO-CHANGE {ENABLED, DISABLED, DOS-ONLY} -- DOS-ONLY
  40821.    added in this edit, and is the new default.  Allows 80/132-column
  40822.    video-mode switching in DOS only, not Windows.  Use ENABLED to allow it
  40823.    in Windows too, at your own risk (equivalent to Patch 9 in MS-DOS
  40824.    Kermit 3.13).
  40825.  
  40826.  . "kermit server 600" and similar commands could hang DOS.  Now fixed.
  40827.  
  40828.  . KERMIT.HLP and .BWR files updated, cleaned & trimmed a bit.
  40829.  
  40830. Please continue to send Beta test reports by e-mail to kermit@columbia.edu.
  40831.  
  40832. - Frank
  40833.  
  40834. From news@columbia.edu Tue Oct 25 23:00:40 1994
  40835. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18788
  40836.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 25 Oct 1994 19:00:42 -0400
  40837. Received: by apakabar.cc.columbia.edu id AA21969
  40838.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 25 Oct 1994 19:00:41 -0400
  40839. Path: news.columbia.edu!usenet
  40840. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  40841. Newsgroups: comp.protocols.kermit.misc
  40842. Subject: Re: 3.13/Can't dial # in dialfile
  40843. Date: 25 Oct 1994 23:00:40 GMT
  40844. Organization: Columbia University
  40845. Lines: 25
  40846. Message-Id: <38k2mo$lee@apakabar.cc.columbia.edu>
  40847. References: <38jnn0$rbn@lester.appstate.edu>
  40848. Nntp-Posting-Host: fdc.cc.columbia.edu
  40849. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  40850.  
  40851. In article <38jnn0$rbn@lester.appstate.edu> krb@lester.appstate.edu (Kinney  
  40852. Baughman) writes:
  40853. > Each time I try to run my old script file for dialing into the computer
  40854. > here at ASU, Kermit 3.13 reads the number and then I get a <Ctrl-C>
  40855. > "Command canceled" message on the screen and I'm thrown back to the
  40856. > Ms-Kermit prompt.
  40857. > I'm using an Infotel 14.4 Fax modem.  I have my modem defined to Hayes.
  40858. > I think this might be the problem.  But none of the other *.scr files
  40859. > seem to work any better, though they each exhibit other problems.
  40860. > Is there a *.scr file for the Infotel modem anywhere I could download?
  40861. >
  40862. MS-DOS Kermit 3.14 Beta comes with LOTS more dialing scripts, but not
  40863. one specifically for the Infotel.
  40864.  
  40865. Read any of the Beta announcements on this newsgroup to find out where
  40866. to get the Beta.
  40867.  
  40868. Then dig through the new modem scripts and see if any of them matches
  40869. the Infotel.  If so, please let us know.  If not, maybe you could pick out
  40870. the closest one and adapt it and send it in so everybody else who has the
  40871. same kind of modem can use it.
  40872.  
  40873. Good luck.
  40874.  
  40875. - Frank
  40876.  
  40877. From news@columbia.edu Wed Oct 26 00:07:42 1994
  40878. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22472
  40879.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 25 Oct 1994 20:07:45 -0400
  40880. Received: by apakabar.cc.columbia.edu id AA27077
  40881.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 25 Oct 1994 20:07:44 -0400
  40882. Path: news.columbia.edu!usenet
  40883. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  40884. Newsgroups: comp.protocols.kermit.misc
  40885. Subject: MSK 3.14 Beta-8 Glitch
  40886. Date: 26 Oct 1994 00:07:42 GMT
  40887. Organization: Columbia University
  40888. Lines: 9
  40889. Message-Id: <38k6ke$qe3@apakabar.cc.columbia.edu>
  40890. Nntp-Posting-Host: fdc.cc.columbia.edu
  40891. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  40892.  
  40893. It seems that the remaining "minor problem" regarding trimming of whitespace
  40894. from commands read from TAKE files, after removing the trailing comment,
  40895. prevents our dialing scripts from working.  Sorry!
  40896.  
  40897. This will be fixed in Beta-9, coming soon.  Meanwhile, one can work around
  40898. the problem by editing the dialing script to remove trailing comments
  40899. (and intervening whitespace) from INPUT commands.
  40900.  
  40901. - Frank
  40902.  
  40903. From news@columbia.edu Tue Oct 25 08:32:12 1994
  40904. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27121
  40905.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 25 Oct 1994 21:43:03 -0400
  40906. Received: by apakabar.cc.columbia.edu id AA04019
  40907.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 25 Oct 1994 21:43:02 -0400
  40908. Path: news.columbia.edu!panix!news.mathworks.com!usenet.eel.ufl.edu!piaget.moe.ac.sg!raffles.technet.sg!nuscc.nus.sg!gohkeech
  40909. From: gohkeech@iscs.nus.sg (Goh Kee Chye Lawrence)
  40910. Newsgroups: comp.protocols.kermit.misc
  40911. Subject: Re: MS-DOS Kermit 3.14 Beta-7 Ready for Testing
  40912. Date: 25 Oct 1994 08:32:12 GMT
  40913. Organization: DISCS, NUS
  40914. Lines: 11
  40915. Message-Id: <38ifqc$93g@nuscc.nus.sg>
  40916. References: <38gn5g$ah8@apakabar.cc.columbia.edu>
  40917. Nntp-Posting-Host: gohkeech@sununx.iscs.nus.sg
  40918. X-Newsreader: TIN [version 1.2 PL2]
  40919. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  40920.  
  40921.     I'm facing problem dialing with beta-7.
  40922.     I have a dialing script to dial a list of numbers that so far has 
  40923.     worked with beta-6.
  40924.     The problem is encountered after DIAL outputs the phone
  40925.     number and simply stops there with a NO CARRIER.
  40926.  
  40927. --
  40928. (_orenzo . Lawrence Goh <gohkeech@iscs.nus.sg>
  40929.  I C _|_ X C     Department of Information Systems & Computer Science
  40930.  N I  |  K A                National University of Singapore
  40931. Et Iesum, benedictum fructum ventris tui, nobis post hoc exilium, ostende.
  40932.  
  40933. From news@columbia.edu Tue Oct 25 14:32:07 1994
  40934. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29789
  40935.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 25 Oct 1994 22:50:35 -0400
  40936. Received: by apakabar.cc.columbia.edu id AA08865
  40937.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 25 Oct 1994 22:50:33 -0400
  40938. Path: news.columbia.edu!panix!news.mathworks.com!yeshua.marcam.com!uunet!psinntp!cmcl2!thecourier.cims.nyu.edu!thecourier.cims.nyu.edu!nobody
  40939. From: vb1890@cs.nyu.edu (Victor Boyko)
  40940. Newsgroups: comp.protocols.kermit.misc
  40941. Subject: Spaces after a string in Beta 7
  40942. Date: 25 Oct 1994 10:32:07 -0400
  40943. Organization: Courant Institute of Mathematical Sciences
  40944. Lines: 16
  40945. Message-Id: <38j4t7$1v5@doc.cs.nyu.edu>
  40946. Nntp-Posting-Host: doc.cs.nyu.edu
  40947. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  40948.  
  40949. Hello!
  40950.  
  40951. I have discovered a feature (or maybe a bug) in Beta 7 that is not
  40952. described in the release notes and that makes all old dialing scripts
  40953. obsolete. For example, suppose there is a line
  40954.  
  40955. output ATI3\13            ; Get modem information
  40956.  
  40957. Instead of outputting "ATI3\13", Kermit outputs "ATI3\13            ".
  40958. This can be fixed by changing to
  40959.  
  40960. output {ATI3\13}            ; Get modem information
  40961.  
  40962. Without this change it does not work.
  40963.  
  40964. -Victor
  40965.  
  40966. From news@columbia.edu Wed Oct 26 02:41:28 1994
  40967. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01880
  40968.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 25 Oct 1994 23:36:36 -0400
  40969. Received: by apakabar.cc.columbia.edu id AA13070
  40970.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 25 Oct 1994 23:36:34 -0400
  40971. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!yeshua.marcam.com!charnel.ecst.csuchico.edu!olivea!sgigate.sgi.com!enews.sgi.com!decwrl!tribune.usask.ca!quartz.ucs.ualberta.ca!news.ucalgary.ca!cpsc.ucalgary.ca!mathezer
  40972. From: mathezer@cpsc.ucalgary.ca (Stephen Mathezer)
  40973. Newsgroups: comp.protocols.kermit.misc
  40974. Subject: Kerep-alive option?
  40975. Date: 26 Oct 1994 02:41:28 GMT
  40976. Organization: University of Calgary CPSC
  40977. Lines: 14
  40978. Message-Id: <38kfko$9dq@linux.cpsc.ucalgary.ca>
  40979. Nntp-Posting-Host: fsj.cpsc.ucalgary.ca
  40980. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  40981.  
  40982.  
  40983. Is there any way to get kermit to keep a line connected?
  40984.  
  40985. I am connected to a remote server using kermit.  This server will
  40986. drop any inactive connection after 20 minutes.  The problem is that
  40987. I am running a program that takes longer than 20 minutes to execute.
  40988. There is no way for me to submit this program to run and then log out.
  40989. I have to remain connected.  I don't want to have to come and hit a
  40990. few keys every couple of minutes to keep my session alive.  Can kermit
  40991. keep it alive for me?
  40992.  
  40993. Thanks
  40994.  
  40995. -Steve
  40996.  
  40997. From news@columbia.edu Wed Oct 26 14:21:54 1994
  40998. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29067
  40999.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 26 Oct 1994 10:22:13 -0400
  41000. Received: by apakabar.cc.columbia.edu id AA12647
  41001.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 26 Oct 1994 10:22:11 -0400
  41002. Path: news.columbia.edu!usenet
  41003. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  41004. Newsgroups: comp.protocols.kermit.misc
  41005. Subject: Re: Kerep-alive option?
  41006. Date: 26 Oct 1994 14:21:54 GMT
  41007. Organization: Columbia University
  41008. Lines: 29
  41009. Message-Id: <38lom2$ca9@apakabar.cc.columbia.edu>
  41010. References: <38kfko$9dq@linux.cpsc.ucalgary.ca>
  41011. Nntp-Posting-Host: fdc.cc.columbia.edu
  41012. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  41013.  
  41014. In article <38kfko$9dq@linux.cpsc.ucalgary.ca> mathezer@cpsc.ucalgary.ca  
  41015. (Stephen Mathezer) writes:
  41016. > Is there any way to get kermit to keep a line connected?
  41017. > I am connected to a remote server using kermit.  This server will
  41018. > drop any inactive connection after 20 minutes.  The problem is that
  41019. > I am running a program that takes longer than 20 minutes to execute.
  41020. > There is no way for me to submit this program to run and then log out.
  41021. > I have to remain connected.  I don't want to have to come and hit a
  41022. > few keys every couple of minutes to keep my session alive.  Can kermit
  41023. > keep it alive for me?
  41024. You did not say what kinds of computers are involved or what versions of
  41025. Kermit you are using, etc.  From what you say, however, it seems that
  41026. your local system, the one that you used to make the connection, is
  41027. capable of running Kermit at the same time as another application.  If
  41028. that is true, then all you have to do is write a little script program
  41029. that makes Kermit send a character every once in a while, for example:
  41030.  
  41031. :loop
  41032. sleep 60  ; Sleep for a minute
  41033. output \0 ; Send a NUL
  41034. goto loop
  41035.  
  41036. Adjust as needed.  When you want go back online, bring Kermit to the
  41037. foreground and interrupt it, e.g. by typing Ctrl-C.
  41038.  
  41039. - Frank
  41040.  
  41041. From news@columbia.edu Wed Oct 26 04:01:20 1994
  41042. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06241
  41043.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 26 Oct 1994 11:44:35 -0400
  41044. Received: by apakabar.cc.columbia.edu id AA19285
  41045.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 26 Oct 1994 11:44:34 -0400
  41046. Path: news.columbia.edu!panix!news.mathworks.com!news.duke.edu!convex!cs.utexas.edu!uwm.edu!psuvax1!news.pop.psu.edu!news.cac.psu.edu!hrbicf!aje
  41047. From: aje@icf.hrb.com (Andrew J. Eckhardt, MS 274)
  41048. Newsgroups: comp.protocols.kermit.misc
  41049. Subject: White-space Beta-8
  41050. Message-Id: <1994Oct26.090120.22207@hrbicf>
  41051. Date: 26 Oct 94 09:01:20 EST
  41052. Organization: HRB Systems, Inc.
  41053. Lines: 25
  41054. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  41055.  
  41056. Hello,
  41057.  
  41058.     Your parsing of script files has a bug. (V3.14 BETA-8)
  41059. Here is an excerpt from my dialing script that illustrates the bug:
  41060.  
  41061.  
  41062. :DIAL
  41063. output ATD\%1\13                ; Dial the number.
  41064. set alarm 90            ; (For detecting keyboard interruptions.)
  41065. if > VERSION 312 clear input    ; Clear echo from INPUT buffer.
  41066. if < VERSION 313 clear
  41067. input 30 \10                    ; Wait for the linefeeds...
  41068.               ^
  41069.               |
  41070.     A tab here made the input command fail. When I replaced by a
  41071. space it works.
  41072.  
  41073.  
  41074. Regards
  41075.  
  41076. -- 
  41077. =========================================================================
  41078.               Andrew Eckhardt
  41079. HRB Systems, P.O. Box 60, 300 Science Park Road, State College, PA 16804
  41080.     Tel 814 238 4311     FAX 814 234 7720    Internet aje@hrb.com
  41081.  
  41082. From news@columbia.edu Wed Oct 26 02:01:22 1994
  41083. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09182
  41084.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 26 Oct 1994 12:27:20 -0400
  41085. Received: by apakabar.cc.columbia.edu id AA22874
  41086.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 26 Oct 1994 12:27:15 -0400
  41087. Newsgroups: comp.protocols.kermit.misc
  41088. Path: news.columbia.edu!panix!news.mathworks.com!hookup!swrinde!howland.reston.ans.net!news.sprintlink.net!EU.net!uunet!spcuna!ritz!kudut
  41089. From: kudut@ritz.mordor.com (Ken)
  41090. Subject: Re: up-arrow History in MS-Kermit?
  41091. References: <Cy7qox.79u@ritz.mordor.com> <1994Oct25.092254.31155@cc.usu.edu>
  41092. Sender: kudut@ritz.mordor.com (Ken Udut)
  41093. Organization: Mordor International BBS
  41094. Date: Wed, 26 Oct 1994 02:01:22 GMT
  41095. Message-Id: <oXRhkqo7I7XT071yn@ritz.mordor.com>
  41096. Lines: 43
  41097. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  41098.  
  41099. In article <1994Oct25.092254.31155@cc.usu.edu>,
  41100. jrd@cc.usu.edu (Joe Doupnik) wrote:
  41101. > In article <Cy7qox.79u@ritz.mordor.com>, kudut@ritz.mordor.com (Ken Udut) writes:
  41102. > > 
  41103. > > Would it be possible to add a simple up-arrow history (last-command)
  41104. > > to MS-Kermit 3.14?
  41105. > > 
  41106. > > Even a "hack" (running a TSR) would be glorious.  
  41107. > > 
  41108. > > Something that keeps the last 25 commands or so, of course able to
  41109. > > turn on and off for memory considerations :-)
  41110. > > 
  41111. > > Ken
  41112. > > kudut@ritz.mordor.com
  41113. > ----------
  41114. >     There is no command history buffer in MSK. Not only is such an
  41115. > item slightly ambiguous (which command, the raw user typed one or the
  41116. > one after string substitution occurred, or the Take file/macro last
  41117. > executed, etc), but each command can be 1000 bytes long. Think of what
  41118. > memory consumption that means. Once recall occurs then immediately
  41119. > everyone wants a command line editor, and frankly that is a lot of
  41120. > code in an already extremely complex environment internally.
  41121. >     As a person who types more MSK command lines that almost anyone
  41122. > I've found command line recall to be a dispensable frill.
  41123. >     Joe D. 
  41124.  
  41125. Actually, Joe, the way that you've written MS-Kermit to take partial
  41126. commands, finish it up with the Escape key, with help available at
  41127. every level... is astounding!
  41128.  
  41129. But I was just curious :-)  I thought there might be a way to use
  41130. a public domain TSR recall, which "remembers" each time a user hits
  41131. <Enter>.  
  41132.  
  41133. Don't worry about it, Joe - it's not a big thing.  And you're right -
  41134. it would be far more work for you than the benefit.  You provided
  41135. context-sensitive help while other programmers were happy to stick 
  41136. only a "reminder" screen and nothing else :-)
  41137.  
  41138.  
  41139. -- 
  41140. Kenneth Udut                                          kudut@ritz.mordor.com
  41141. Listowner of Y-RIGHTS@SJUVM.BITNET - discussion on the rights of kids/teens
  41142.  
  41143. From news@columbia.edu Wed Oct 26 14:23:53 1994
  41144. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11654
  41145.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 26 Oct 1994 13:02:06 -0400
  41146. Received: by apakabar.cc.columbia.edu id AA25847
  41147.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 26 Oct 1994 13:02:05 -0400
  41148. Path: news.columbia.edu!panix!news.mathworks.com!news.duke.edu!godot.cc.duq.edu!newsfeed.pitt.edu!dsinc!netnews.upenn.edu!taurus.fccc.edu!vanderli
  41149. From: vanderli@aquila.rm.fccc.edu (Michel van der List)
  41150. Newsgroups: comp.protocols.kermit.misc
  41151. Subject: kermit at system startup?
  41152. Date: 26 Oct 1994 14:23:53 GMT
  41153. Organization: Fox Chase Cancer Center, Philadelphia, PA
  41154. Lines: 27
  41155. Distribution: world
  41156. Message-Id: <38lopp$1va@taurus.fccc.edu>
  41157. Reply-To: vanderli@aquila.rm.fccc.edu (Michel van der List)
  41158. Nntp-Posting-Host: aquila.rm.fccc.edu
  41159. X-Newsreader: mxrn 6.18-24
  41160. Originator: vanderli@aquila
  41161. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  41162.  
  41163.  
  41164.  
  41165. Hi All.
  41166.  
  41167. I wrote a little script to automatically dial one of our modem
  41168. ports, and set up slip for my alpha, running OSF/1 version 2.1.
  41169. This all works great, as long as I run this script interactively,
  41170. ie from a csh prompt. When I run this script from a startup file,
  41171. it seems to exit without doing anything. My guess is that it does
  41172. not have a tty as stdin, which makes it unhappy.
  41173.  
  41174. My questions:
  41175. - does this sound like a reasonable assumption?
  41176. - how can I fix it?
  41177.  
  41178. I scanned through the C-Kermit book, but did not see anything
  41179. obvious.
  41180.  
  41181. Thanks for any pointers...
  41182.  
  41183. Michel
  41184.  
  41185. -- 
  41186. ----------------------+--------------------------+-----------------------------
  41187. Michel van der List   | 'Dat typies hollands     | The Fox Chase Cancer Center
  41188. M_vanderlist@fccc.edu |      vingertje'          |      7701 Burholme Avenue
  41189. (215) 728-3660        |                          |    Philadelphia, PA  19111
  41190.  
  41191. From news@columbia.edu Wed Oct 26 17:32:47 1994
  41192. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13584
  41193.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 26 Oct 1994 13:32:53 -0400
  41194. Received: by apakabar.cc.columbia.edu id AA28809
  41195.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 26 Oct 1994 13:32:51 -0400
  41196. Path: news.columbia.edu!usenet
  41197. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  41198. Newsgroups: comp.protocols.kermit.misc
  41199. Subject: Re: kermit at system startup?
  41200. Date: 26 Oct 1994 17:32:47 GMT
  41201. Organization: Columbia University
  41202. Lines: 24
  41203. Message-Id: <38m3rv$s40@apakabar.cc.columbia.edu>
  41204. References: <38lopp$1va@taurus.fccc.edu>
  41205. Nntp-Posting-Host: fdc.cc.columbia.edu
  41206. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  41207.  
  41208. In article <38lopp$1va@taurus.fccc.edu> vanderli@aquila.fccc.edu (Michel van  
  41209. der List) writes:
  41210. > I wrote a little script to automatically dial one of our modem
  41211. > ports, and set up slip for my alpha, running OSF/1 version 2.1.
  41212. > This all works great, as long as I run this script interactively,
  41213. > ie from a csh prompt. When I run this script from a startup file,
  41214. > it seems to exit without doing anything. My guess is that it does
  41215. > not have a tty as stdin, which makes it unhappy.
  41216. Tell Kermit to execute commands from the script file, rather than
  41217. feeding the text from the script file into Kermit's stdin.
  41218. For example, assuming the file is called /usr/me/x.scr:
  41219.  
  41220.   kermit /usr/me/x.scr
  41221.  
  41222. or:
  41223.  
  41224.   kermit -y /usr/me/x.scr
  41225.  
  41226. or:
  41227.  
  41228.   kermit -C "take /usr/me/x.scr"
  41229.  
  41230. - Frank
  41231.  
  41232. From news@columbia.edu Wed Oct 26 06:51:00 1994
  41233. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18127
  41234.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 26 Oct 1994 14:20:53 -0400
  41235. Received: by apakabar.cc.columbia.edu id AA03348
  41236.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 26 Oct 1994 14:20:51 -0400
  41237. Newsgroups: comp.protocols.kermit.misc
  41238. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!torn!newshub.ccs.yorku.ca!newshub.ariel.cs.yorku.ca!news
  41239. From: "Archimedes L. Trajano" <cs932070@red.ariel.cs.yorku.ca>
  41240. Subject: Digicomm Connection script does not work anymore
  41241. X-Sender: cs932070@blue
  41242. Content-Type: TEXT/PLAIN; charset=US-ASCII
  41243. Message-Id: <Pine.SUN.3.90.941026024753.12729A-100000@blue>
  41244. Sender: news@red.ariel.cs.yorku.ca
  41245. Organization: York University, Department of Computer Science
  41246. Mime-Version: 1.0
  41247. Date: Wed, 26 Oct 1994 06:51:00 GMT
  41248. Lines: 16
  41249. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  41250.  
  41251. I am using the current version of MS-Kermit.  Beta-7.
  41252. The script to dial with the digicomm connection 14.4 modem stopped 
  41253. working properly when I started using this and I have to manually dial to 
  41254. make connections right now.
  41255.  
  41256. Is there a fix for this available?
  41257.  
  41258. (Currently the problem is that during dial, the script seems to put an 
  41259. extra character after the dialer has been initiated therefore cancelling 
  41260. the dial procedure.
  41261.  
  41262. Archimedes L. Trajano        _/_/_/ _/   _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
  41263. cs932070@ariel.cs.yorku.ca  _/  _/ _/     _/  York University
  41264. (IRC: Overdrive)           _/_/_/ _/     _/  Department of Computer Science
  41265. _/_/_/_/_/_/_/_/_/_/_/_/_/_/  _/ _/_/_/ _/  North York, Ontario, Canada
  41266.  
  41267.  
  41268. From news@columbia.edu Wed Oct 26 02:55:45 1994
  41269. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19005
  41270.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 26 Oct 1994 14:30:11 -0400
  41271. Received: by apakabar.cc.columbia.edu id AA04210
  41272.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 26 Oct 1994 14:30:09 -0400
  41273. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!hookup!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  41274. From: jrd@cc.usu.edu (Joe Doupnik)
  41275. Newsgroups: comp.protocols.kermit.misc
  41276. Subject: Re: Kerep-alive option?
  41277. Message-Id: <1994Oct26.085545.31292@cc.usu.edu>
  41278. Date: 26 Oct 94 08:55:45 MDT
  41279. References: <38kfko$9dq@linux.cpsc.ucalgary.ca>
  41280. Organization: Utah State University
  41281. Lines: 25
  41282. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  41283.  
  41284. In article <38kfko$9dq@linux.cpsc.ucalgary.ca>, mathezer@cpsc.ucalgary.ca (Stephen Mathezer) writes:
  41285. > Is there any way to get kermit to keep a line connected?
  41286. > I am connected to a remote server using kermit.  This server will
  41287.     By what pathway? TCP/IP? Serial? Another kind of networking?
  41288.  
  41289. > drop any inactive connection after 20 minutes.  The problem is that
  41290.     "inactive" is a slippery word, whose meaning is dependent on
  41291. the item doing the measuring. 
  41292.  
  41293. > I am running a program that takes longer than 20 minutes to execute.
  41294.     So compose a very simple macro or Take file to sit in a loop
  41295. and Pause or Wait for 19 minutes and then send whatever your host wishes
  41296. to consider "active" but "uninteresting" to keep the connection alive.
  41297. MSK responds to TCP/IP keepalives, but it never generates gratutitous
  41298. data bytes by itself (but your macro/Take file can).
  41299.         Please have a look at the book "Using MS-DOS Kermit" for examples
  41300. about composing macros and Take files.
  41301.  
  41302. > There is no way for me to submit this program to run and then log out.
  41303. > I have to remain connected.  I don't want to have to come and hit a
  41304. > few keys every couple of minutes to keep my session alive.  Can kermit
  41305. > keep it alive for me?
  41306.     Joe D.
  41307.  
  41308. From news@columbia.edu Wed Oct 26 19:00:49 1994
  41309. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00161
  41310.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 26 Oct 1994 16:53:38 -0400
  41311. Received: by apakabar.cc.columbia.edu id AA28924
  41312.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 26 Oct 1994 16:53:29 -0400
  41313. Path: news.columbia.edu!panix!news.mathworks.com!news.duke.edu!convex!cs.utexas.edu!usc!howland.reston.ans.net!gatech!newsfeed.pitt.edu!dsinc!netnews.upenn.edu!taurus.fccc.edu!vanderli
  41314. From: vanderli@aquila.rm.fccc.edu (Michel van der List)
  41315. Newsgroups: comp.protocols.kermit.misc
  41316. Subject: Re: kermit at system startup?
  41317. Date: 26 Oct 1994 19:00:49 GMT
  41318. Organization: Fox Chase Cancer Center, Philadelphia, PA
  41319. Lines: 53
  41320. Distribution: world
  41321. Message-Id: <38m911$1oe@taurus.fccc.edu>
  41322. References: <38lopp$1va@taurus.fccc.edu> <38m3rv$s40@apakabar.cc.columbia.edu>
  41323. Reply-To: vanderli@aquila.rm.fccc.edu (Michel van der List)
  41324. Nntp-Posting-Host: aquila.rm.fccc.edu
  41325. X-Newsreader: mxrn 6.18-24
  41326. Originator: vanderli@aquila
  41327. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  41328.  
  41329.  
  41330. In article <38m3rv$s40@apakabar.cc.columbia.edu>, fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  41331. >In article <38lopp$1va@taurus.fccc.edu> vanderli@aquila.fccc.edu (Michel van  
  41332. >der List) writes:
  41333. >> I wrote a little script to automatically dial one of our modem
  41334. >> ports, and set up slip for my alpha, running OSF/1 version 2.1.
  41335. >> This all works great, as long as I run this script interactively,
  41336. >> ie from a csh prompt. When I run this script from a startup file,
  41337. >> it seems to exit without doing anything. My guess is that it does
  41338. >> not have a tty as stdin, which makes it unhappy.
  41339. >> 
  41340. >Tell Kermit to execute commands from the script file, rather than
  41341. >feeding the text from the script file into Kermit's stdin.
  41342. >For example, assuming the file is called /usr/me/x.scr:
  41343. >
  41344. >  kermit /usr/me/x.scr
  41345. >
  41346. >or:
  41347. >
  41348. >  kermit -y /usr/me/x.scr
  41349. >
  41350. >or:
  41351. >
  41352. >  kermit -C "take /usr/me/x.scr"
  41353. >
  41354. >- Frank
  41355.  
  41356. Thanks, unfortunately I had it set up as follows:
  41357.  
  41358. % cat kermitstuff
  41359. #!/usr/local/bin/kermit
  41360. ...
  41361. ...
  41362. ...
  41363.  
  41364. which was nice, since my script could now just do:
  41365.  
  41366. % cat otherscript
  41367. #!/bin/csh -f
  41368. /usr/local/bin/kermitstuff
  41369. ...
  41370. ...
  41371. ...
  41372.  
  41373. Oh well, I'll do it the other way.
  41374.  
  41375. Michel.
  41376.  
  41377. -- 
  41378. ----------------------+--------------------------+-----------------------------
  41379. Michel van der List   | 'Dat typies hollands     | The Fox Chase Cancer Center
  41380. M_vanderlist@fccc.edu |      vingertje'          |      7701 Burholme Avenue
  41381. (215) 728-3660        |                          |    Philadelphia, PA  19111
  41382.  
  41383. From news@columbia.edu Wed Oct 26 10:38:42 1994
  41384. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02452
  41385.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 26 Oct 1994 17:21:07 -0400
  41386. Received: by apakabar.cc.columbia.edu id AA01631
  41387.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 26 Oct 1994 17:21:05 -0400
  41388. Path: news.columbia.edu!panix!news.mathworks.com!hookup!swrinde!howland.reston.ans.net!math.ohio-state.edu!jussieu.fr!univ-lille1.fr!zaphod.crihan.fr!bilbo.crihan.fr!rp
  41389. From: rp@bilbo.crihan.fr (Renaud Patte)
  41390. Newsgroups: comp.protocols.kermit.misc
  41391. Subject: Kermit on AS400
  41392. Date: 26 Oct 1994 10:38:42 GMT
  41393. Organization: CRIHAN, Mont-Saint-Aignan (France)
  41394. Lines: 6
  41395. Message-Id: <38lbji$r3o@zaphod.crihan.fr>
  41396. Nntp-Posting-Host: bilbo.crihan.fr
  41397. X-Newsreader: TIN [version 1.2 PL0]
  41398. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  41399.  
  41400. I'm searching for Kermit on system AS400.
  41401. Would someone tell me where to find it?
  41402.  
  41403. Thanks a lot.
  41404.  
  41405. internet : rp@crihan.fr
  41406.  
  41407. From news@columbia.edu Wed Oct 26 21:39:31 1994
  41408. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04118
  41409.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 26 Oct 1994 17:39:36 -0400
  41410. Received: by apakabar.cc.columbia.edu id AA03229
  41411.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 26 Oct 1994 17:39:33 -0400
  41412. Path: news.columbia.edu!usenet
  41413. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  41414. Newsgroups: comp.protocols.kermit.misc
  41415. Subject: Re: Kermit on AS400
  41416. Date: 26 Oct 1994 21:39:31 GMT
  41417. Organization: Columbia University
  41418. Lines: 20
  41419. Message-Id: <38miaj$34q@apakabar.cc.columbia.edu>
  41420. References: <38lbji$r3o@zaphod.crihan.fr>
  41421. Nntp-Posting-Host: fdc.cc.columbia.edu
  41422. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  41423.  
  41424. In article <38lbji$r3o@zaphod.crihan.fr> rp@bilbo.crihan.fr (Renaud Patte)  
  41425. writes:
  41426. > I'm searching for Kermit on system AS400.
  41427. > Would someone tell me where to find it?
  41428. Nobody has ever succeeded in writing a Kermit program for the AS/400.
  41429. Many have announced their intention to do this, but none have ever
  41430. actually even started, as far as I can tell.  This system (together
  41431. with its predecessors, the Systems/34, 36, and 38) is the only major
  41432. gap in the Kermit software collection.
  41433.  
  41434. I can only speculate that the AS/400 and its ancestors are devilishly
  41435. hard to program, at least for communicating with outside world, since
  41436. they use the EBCDIC character set rather than ASCII or any of its
  41437. descendents, and since it uses bizarre and proprietary communication
  41438. methods.
  41439.  
  41440. Anybody who is seriously interested in pursuing this should contact me.
  41441.  
  41442. - Frank
  41443.  
  41444. From news@columbia.edu Tue Oct 25 16:58:46 1994
  41445. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10575
  41446.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 26 Oct 1994 19:35:21 -0400
  41447. Received: by apakabar.cc.columbia.edu id AA13154
  41448.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 26 Oct 1994 19:35:19 -0400
  41449. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  41450. From: jrd@cc.usu.edu (Joe Doupnik)
  41451. Newsgroups: comp.protocols.kermit.misc
  41452. Subject: Re: Scan code \313 for the space key - why?
  41453. Message-Id: <1994Oct25.225847.31270@cc.usu.edu>
  41454. Date: 25 Oct 94 22:58:46 MDT
  41455. References: <386qkt$21k@ra.ibr.cs.tu-bs.de>,<388i7u$3ku@apakabar.cc.columbia.edu> <38kcjf$g5s@ra.ibr.cs.tu-bs.de>
  41456. Distribution: world
  41457. Organization: Utah State University
  41458. Lines: 34
  41459. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  41460.  
  41461. In article <38kcjf$g5s@ra.ibr.cs.tu-bs.de>, meyer@ifn.ing.tu-bs.de writes:
  41462. > In Article <388i7u$3ku@apakabar.cc.columbia.edu>
  41463. > fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  41464. >> [...]
  41465. >>The change is transparent when using the regular keyboard drivers, but
  41466. >>if you are using a nonstandard driver, you might have to put:
  41467. >>
  41468. >>  set key \313 \32
  41469. >>
  41470. >>in your MSCUSTOM.INI file.  In version 3.14, we have also differentiated
  41471. >>the Esc and Enter key + Ctrl/Alt/Shift scan codes.
  41472. >     My keyboard driver has a 'VT mode' in which all keypad keys give
  41473. >     special scan codes (including NumLock). So it's easy to map DEC's
  41474. >     keypad ESC-Seqs to those keys (set key \nnn \KKPm).
  41475. >     Unfortunatley the keypad 9 key gives \313 in that mode,
  41476. >     so pressing the space key produces the KKP9 ESC-sequence...
  41477. ----------
  41478.     \313 is the scan code for space-bar on regular IBM-PC keyboards. 
  41479. What does your keyboard produce for space bar? If it is the same as keypad 9
  41480. then I guess you are out of luck with this situation. How about changing to 
  41481. non-VT mode on the driver, however that might be accomplished?
  41482.     It is helpful to know a technical detail here. MSK's keyboard
  41483. translator doesn't understand keyboards. The translator has not the faintest 
  41484. idea of what is printed on key caps, nor that it's a keyboard rather than 
  41485. something entirely different. Yup, true, and by design. The tiny key reader 
  41486. part reports either ASCII results or "scan" codes, for non-ASCII, coming from 
  41487. the Bios or from DOS. For the ASCII case some keys are aliased back to their 
  41488. scan codes, and the space bar is one such case. The Enter key is another. 
  41489. If a low level keyboard driver modfies those codes then Kermit may not 
  41490. produce an alias since aliases are in a hard coded list of numbers appropriate 
  41491. to the IBM-PC Bios (in the IBM-PC version of MS-DOS Kermit, other Bios' for
  41492. Zenith 100 and Victor 9000 editions of MSK).
  41493.     Joe D.    
  41494.  
  41495. From news@columbia.edu Wed Oct 26 05:00:00 1994
  41496. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11430
  41497.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 26 Oct 1994 19:50:15 -0400
  41498. Received: by apakabar.cc.columbia.edu id AA14206
  41499.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 26 Oct 1994 19:50:12 -0400
  41500. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!yeshua.marcam.com!usc!howland.reston.ans.net!vixen.cso.uiuc.edu!rsm1.physics.uiuc.edu!lewart
  41501. From: d-lewart@uiuc.edu (Daniel S. Lewart)
  41502. Newsgroups: comp.protocols.kermit.misc
  41503. Subject: MSK 3.14/Beta-8 command-line -f bug
  41504. Date: 26 Oct 94 05:00:00 GMT
  41505. Organization: DSL Consulting
  41506. Lines: 7
  41507. Message-Id: <lewart.783147630@rsm1.physics.uiuc.edu>
  41508. Reply-To: d-lewart@uiuc.edu (Daniel S. Lewart)
  41509. Nntp-Posting-Host: rsm1.physics.uiuc.edu
  41510. Cc: kermit@columbia.edu (Kermit Distribution)
  41511. X-Newsreader: NN version 6.5.0 (NOV)
  41512.  
  41513. On my IBM PC AT, "kermit.exe -f initfile" does not read in the
  41514. initialization file unless it is named mskermit.ini.  However,
  41515. once inside Kermit, "take initfile" works.
  41516.  
  41517. Thank you,
  41518. Daniel Lewart
  41519. d-lewart@uiuc.edu
  41520.  
  41521. From news@columbia.edu Tue Oct 25 22:31:21 1994
  41522. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11457
  41523.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 26 Oct 1994 19:50:34 -0400
  41524. Received: by apakabar.cc.columbia.edu id AA14227
  41525.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 26 Oct 1994 19:50:32 -0400
  41526. Path: news.columbia.edu!sol.ctr.columbia.edu!math.ohio-state.edu!usc!howland.reston.ans.net!torn!news.ccs.queensu.ca!news
  41527. From: mike@ccs.queensu.ca (Mike Smith)
  41528. Newsgroups: comp.protocols.kermit.misc
  41529. Subject: Kermit Dialing Scripts: 1. X4 vs X1 2. Windows Speed Problem
  41530. Date: 25 Oct 1994 22:31:21 GMT
  41531. Organization: Queen's University, Kingston
  41532. Lines: 20
  41533. Distribution: world
  41534. Message-Id: <38k0vp$ipf@knot.queensu.ca>
  41535. Nntp-Posting-Host: ccs-sparc2.ccs
  41536. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  41537.  
  41538. 1. The standard HAYES.SCR sets the result codes option to X1.  We have a
  41539.    very busy modem pool and I'd like to change the script to use X4 so
  41540.    that I can specifically report that the pool is busy.  Can anyone
  41541.    suggest a reason why this is a bad idea?  I'm worried that maybe
  41542.    Columbia has discovered that not all "Hayes-compatible" modems support
  41543.    X4 and that's why X1 was chosen?
  41544.  
  41545. 2. This week I've found two modems that will not accept modem commands
  41546.    at 38400 when Kermit is launched from inside Windows.  One of these
  41547.    was a 1994 USR Sportster, the other a Zoltrix 14.4.  In both cases,
  41548.    the modem operates ok at 38400 if Windows is exited and Kermit is
  41549.    run from DOS.  Any chance there is some simple tweak in Windows?
  41550.    Assuming no, is there a way for a DOS program to realize that Windows
  41551.    is active in the background?  (Feel free to tell me this is a stupid
  41552.    question.)
  41553. -- 
  41554.  
  41555.  Mike Smith                                  mike@ccs.queensu.ca
  41556.  Queen's University                          Michael.D.Smith@QueensU.CA
  41557.  Computing and Communications Services       (613) 545-2024
  41558.  
  41559. From news@columbia.edu Thu Oct 27 00:51:52 1994
  41560. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14697
  41561.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 26 Oct 1994 20:51:56 -0400
  41562. Received: by apakabar.cc.columbia.edu id AA18729
  41563.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 26 Oct 1994 20:51:55 -0400
  41564. Path: news.columbia.edu!usenet
  41565. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  41566. Newsgroups: comp.protocols.kermit.misc
  41567. Subject: Re: Kermit Dialing Scripts: 1. X4 vs X1 2. Windows Speed Problem
  41568. Date: 27 Oct 1994 00:51:52 GMT
  41569. Organization: Columbia University
  41570. Lines: 44
  41571. Message-Id: <38mtj8$i95@apakabar.cc.columbia.edu>
  41572. References: <38k0vp$ipf@knot.queensu.ca>
  41573. Nntp-Posting-Host: fdc.cc.columbia.edu
  41574. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  41575.  
  41576. In article <38k0vp$ipf@knot.queensu.ca> mike@ccs.QueensU.CA (Mike Smith)  
  41577. writes:
  41578. > 1. The standard HAYES.SCR sets the result codes option to X1.  We have a
  41579. >    very busy modem pool and I'd like to change the script to use X4 so
  41580. >    that I can specifically report that the pool is busy.  Can anyone
  41581. >    suggest a reason why this is a bad idea?  I'm worried that maybe
  41582. >    Columbia has discovered that not all "Hayes-compatible" modems support
  41583. >    X4 and that's why X1 was chosen?
  41584. Hayes 1200 does not support X4.
  41585.  
  41586. For modern modems, don't use HAYES.SCR, but rather one of the many high-
  41587. speed modem scripts.
  41588.  
  41589. > 2. This week I've found two modems that will not accept modem commands
  41590. >    at 38400 when Kermit is launched from inside Windows.  One of these
  41591. >    was a 1994 USR Sportster, the other a Zoltrix 14.4.  In both cases,
  41592. >    the modem operates ok at 38400 if Windows is exited and Kermit is
  41593. >    run from DOS.  Any chance there is some simple tweak in Windows?
  41594. >
  41595. Windows is not exactly the best environment for running communications
  41596. software.  And there is no such thing as "simple tweak" to Windows.
  41597. Well, if the PC has a buffered UART, tell Windows about it in the SYSTEM.INI
  41598. file, something like COM1FIFO -- see KERMIT.BWR for details.  For non-
  41599. buffered UARTs, all bets are off under Windows.  Unfortunately, this is
  41600. an increasingly common combination...
  41601.  
  41602. >    Assuming no, is there a way for a DOS program to realize that Windows
  41603. >    is active in the background?  (Feel free to tell me this is a stupid
  41604. >    question.)
  41605. >  
  41606. There are actually many cases: Kermit is running under plain DOS, Kermit
  41607. is in a Windows fullscreen session, Kermit is in a Windows window, and
  41608. then all the others (OS/2, DesqView, etc).  I doubt if there is anything
  41609. that can be depended upon, but somebody else might know better.
  41610.  
  41611. I recognize that we might need a little more intelligence in the dialing
  41612. scripts -- falling back to lower baud rates and/or inserting pauses between
  41613. output characters, etc, under error conditions, and/or allowing the speed
  41614. from the dialing directory to override the default speed in the dialing
  41615. script.  I'm not sure if all that can (or should) be squeezed in during the
  41616. Beta period.  We'll see how it goes.
  41617.  
  41618. - Frank
  41619.  
  41620. From news@columbia.edu Wed Oct 26 22:07:42 1994
  41621. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06086
  41622.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 27 Oct 1994 05:43:12 -0400
  41623. Received: by apakabar.cc.columbia.edu id AA15752
  41624.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 27 Oct 1994 05:43:11 -0400
  41625. Path: news.columbia.edu!sol.ctr.columbia.edu!math.ohio-state.edu!cs.utexas.edu!convex!convex!constellation!news.uoknor.edu!news.ualr.edu!news.ach.uams.edu!news
  41626. From: bruce@mail.uams.edu (Bruce Hulsey)
  41627. Newsgroups: comp.protocols.kermit.misc
  41628. Subject: Problems with OpenVMS C-kermit v5a(189) in server mode
  41629. Date: 26 Oct 1994 22:07:42 GMT
  41630. Organization: UAMS-Computing Services
  41631. Lines: 29
  41632. Message-Id: <38mjve$7cf@alvin.ach.uams.edu>
  41633. Nntp-Posting-Host: 144.30.1.66
  41634. X-Newsreader: WinVN 0.91.6
  41635. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  41636.  
  41637. Greetings!
  41638.  
  41639. We've recently migrated a large percentage of our users from a VAX to an 
  41640. Alpha processor and consequently needed to change our version of kermit. 
  41641. On the VAX we ran Kermit-32 ver. 3.3.111, and on the Alpha we now run 
  41642. C-Kermit ver. 5A(189).  The only problem is that many of our users are
  41643. encountering problems running C-Kermit in server mode with various 
  41644. communications packages.  I myself have encountered problems with an 
  41645. older (but unfortunately still in-use) version of Persoft's SmarTerm 240 
  41646. (DOS), but other packages including COMit, and MS-Windows' Terminal 
  41647. program have also been reported as problematic.  Other packages such as 
  41648. Persoft's SmarTerm 340 for DOS and WRQ's Reflection 2 for Windows seem to 
  41649. work just fine.  The problem that I encountered with SmarTerm 240 was 
  41650. that SmarTerm's kermit wouldn't recognize that the remote (C-Kermit) 
  41651. Kermit was in server mode and would timeout on packet reads.  Others have 
  41652. apparently encountered similar problems.  My questions are these:  Are 
  41653. there any known incompatibilities between c-kermit and other pc-based 
  41654. kermit clients?  If so, is there a switch in c-kermit that makes it 
  41655. behave like our 'old' kermit-32?  Is there perhaps something at the vms 
  41656. level that we need to change for c-kermit to work properly?
  41657.  
  41658. I realize that I haven't given a great deal of detail about our problems, 
  41659. but I'll be happy to discuss it further if necessary.  Any 
  41660. help/suggestions are appreciated...thanks!
  41661.  
  41662. Bruce Hulsey
  41663. Univ. of Arkansas for Medical Sciences
  41664. bbhulsey@life.uams.edu OR
  41665. bruce@mail.uams.edu
  41666.  
  41667. From news@columbia.edu Thu Oct 27 13:15:15 1994
  41668. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14151
  41669.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 27 Oct 1994 09:15:20 -0400
  41670. Received: by apakabar.cc.columbia.edu id AA25240
  41671.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 27 Oct 1994 09:15:17 -0400
  41672. Path: news.columbia.edu!usenet
  41673. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  41674. Newsgroups: comp.protocols.kermit.misc
  41675. Subject: Re: Problems with OpenVMS C-kermit v5a(189) in server mode
  41676. Date: 27 Oct 1994 13:15:15 GMT
  41677. Organization: Columbia University
  41678. Lines: 53
  41679. Message-Id: <38o953$okf@apakabar.cc.columbia.edu>
  41680. References: <38mjve$7cf@alvin.ach.uams.edu>
  41681. Nntp-Posting-Host: fdc.cc.columbia.edu
  41682. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  41683.  
  41684. In article <38mjve$7cf@alvin.ach.uams.edu> bruce@mail.uams.edu (Bruce Hulsey)  
  41685. writes:
  41686. > Greetings!
  41687. > We've recently migrated a large percentage of our users from a VAX to an 
  41688. > Alpha processor and consequently needed to change our version of kermit. 
  41689. > On the VAX we ran Kermit-32 ver. 3.3.111, and on the Alpha we now run 
  41690. > C-Kermit ver. 5A(189).  The only problem is that many of our users are
  41691. > encountering problems running C-Kermit in server mode with various 
  41692. > communications packages.  I myself have encountered problems with an 
  41693. > older (but unfortunately still in-use) version of Persoft's SmarTerm 240 
  41694. > (DOS), but other packages including COMit, and MS-Windows' Terminal 
  41695. > program have also been reported as problematic.  Other packages such as 
  41696. > Persoft's SmarTerm 340 for DOS and WRQ's Reflection 2 for Windows seem to 
  41697. > work just fine.  The problem that I encountered with SmarTerm 240 was 
  41698. > that SmarTerm's kermit wouldn't recognize that the remote (C-Kermit) 
  41699. > Kermit was in server mode and would timeout on packet reads.  Others have 
  41700. > apparently encountered similar problems.  My questions are these:  Are 
  41701. > there any known incompatibilities between c-kermit and other pc-based 
  41702. > kermit clients?  If so, is there a switch in c-kermit that makes it 
  41703. > behave like our 'old' kermit-32?  Is there perhaps something at the vms 
  41704. > level that we need to change for c-kermit to work properly?
  41705. C-Kermit *does* work properly, it's the other products that don't.
  41706. Use MS-DOS Kermit, any version back to 1981, on your PCs against C-Kermit
  41707. and it will work fine.
  41708.  
  41709. Clearly we can't be responsible for other peoples' Kermit implementations.
  41710. We have no relationship with any of these companies.
  41711.  
  41712. Most (not all) producers of commercial and shareware Kermit implementations
  41713. pay little attention to the protocol definition, in particular to its
  41714. extensibility features -- the negotiated parameters that, when properly
  41715. implemented, allow the oldest, most primitive Kermit implementation to
  41716. interoperate automatically with the newest, most feature-laden version.
  41717.  
  41718. In chasing down complaints like these, we have encountered products that
  41719. totally ignore the negotiation phase and plow ahead using whatever parameters
  41720. they feel like, or, conversely, are confused by new items that would not
  41721. confuse them if they paid attention to the negotiation phase.
  41722.  
  41723. If you use real Kermit software, it will work.  Or if it doesn't, you'll get
  41724. good support.  By the way, I'd recommend that you install C-Kermit 5A(190)
  41725. on your VMS system.  You can obtain it via anonymous ftp to
  41726. kermit.columbia.edu, directory kermit/test/text.  Get the file ckvaaa.hlp,
  41727. read it, go from there.  Even though it is still in the test directory,
  41728. this is the real release, only awaiting the big file shuffle to its new
  41729. home, kermit/b, where it should show up within a few days.  Aside from
  41730. clearing up some problems that 5A(189) had in VMS (especially when run
  41731. in batch jobs, when SPAWN'd, etc), it adds new features like file-transfer
  41732. recovery.
  41733.  
  41734. - Frank
  41735.  
  41736. From news@columbia.edu Thu Oct 27 20:10:48 1994
  41737. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15461
  41738.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 27 Oct 1994 16:10:54 -0400
  41739. Received: by apakabar.cc.columbia.edu id AA11693
  41740.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 27 Oct 1994 16:10:52 -0400
  41741. Path: news.columbia.edu!usenet
  41742. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  41743. Newsgroups: comp.protocols.kermit.misc
  41744. Subject: MS-DOS Kermit 3.14 Beta-9 Ready
  41745. Date: 27 Oct 1994 20:10:48 GMT
  41746. Organization: Columbia University
  41747. Lines: 124
  41748. Message-Id: <38p1g8$bd3@apakabar.cc.columbia.edu>
  41749. Nntp-Posting-Host: fdc.cc.columbia.edu
  41750. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  41751.  
  41752. MS-DOS Kermit 3.14 Beta-9 is available for anonymous ftp from
  41753. kermit.columbia.edu as of 3:08pm EDT Thursday, Oct 27:
  41754.  
  41755.   kermit/test/bin/mstibm.zip  - Binary ZIP file
  41756.   kermit/test/text/mstibm.uue - Uuencoded ZIP file
  41757.   kermit/test/text/mstibm.boo - BOO-encoded ZIP file
  41758.  
  41759. The UUE and BOO files are also available on BITNET from KERMSRV at CUVMA.
  41760.  
  41761. Changes and fixes include:
  41762.  
  41763.  . Comment/blank/tab stripping fixed, dialing works OK again.  
  41764.  
  41765.  . kermit -f d:\blah\blah\blah\oofa.scr fixed.
  41766.  
  41767.  . SET CARRIER ON seems to work fine, even during file transfer.
  41768.    That is, it pops back to the prompt (or DOS, depending on how Kermit
  41769.    was invoked) immediately when carrier drops.
  41770.  
  41771.  . SET TERM VIDEO-CHANGE DOS-ONLY / ENABLED now work as advertised.
  41772.  
  41773.  . ANSI emulator innoculated against "ANSI music".
  41774.  
  41775. About so-called "ANSI" so-called "music"...  It's bad enough that we must
  41776. endure the so-called "ANSI standard" -- which has nothing whatever to do
  41777. with ANSI (the American National Standards Institute), and which is not a
  41778. standard in any sense because it is not documented anywhere -- but...
  41779. Wait, I'm getting ahead of myself.  Maybe I'm ignorant, but *what* is the
  41780. "standard" for ANSI terminal emulation?  I would guess that it should be
  41781. the document (e.g. in the Microsoft DOS manual) that describes ANSI.SYS,
  41782. the IBM PC console driver, affectionately named after the organization
  41783. that published the X3.64 standard, which describes the form and function
  41784. of a repertoire of escape sequences, and forms the basis for the
  41785. VT100/VT200 and higher architectures, and which conforms to ISO Standards
  41786. 2022 and 4873, but which certainly does not describe the ANSI console
  41787. driver.
  41788.  
  41789. Nor does the ANSI.SYS documentation include many functions that are
  41790. commonly used by BBSs.  For example: Two betas ago somebody complained
  41791. that Kermit did not "correctly implement" the "ANSI" screen-clearing
  41792. "standard".  What was it?  Just a plain, bare Ctrl-L.  To my knowledge, no
  41793. CRT terminal in the world uses this for screen clearing (although hardcopy
  41794. printers use it for page feed).  Not even the ANSI.SYS console driver
  41795. clears the screen when given a Ctrl-L; it just prints a little "female"
  41796. sign (but of course, we accommated and now Kermit follows the "ANSI
  41797. standard for screen clearing).  It also seems that many BBSs send ESC[6n,
  41798. cursor position report request.  This is a valid ANSI and VT100
  41799. sequence, but it is not part of ANSI.SYS.
  41800.  
  41801. OK, fine -- the ANSI standard is ANSI.SYS, plus selected VT100 items, plus
  41802. creative interpretation of some control characters.  But if one is going
  41803. to claim "ANSI conformance", then one should at least pay attention to the
  41804. *form* of an ANSI escape sequence (more properly called a control
  41805. sequence), which is:
  41806.  
  41807.   ESC [ intermediate-characters final-character
  41808.  
  41809. The final-character is a function code, and the intermediate characters
  41810. are parameters (data or modifiers) for the function.  A terminal,
  41811. emulator, or other device parses these sequences very easily using a
  41812. simple finite-state automaton, which works efficiently because final
  41813. characters are immediately distinguishable from intermediate characters
  41814. because they are in different columns of the ASCII table and thus have
  41815. different bits set.
  41816.  
  41817. Final characters are the ASCII characters @ (64) through ~ (tilde, 126).
  41818. Thus, once the terminal has seen ESC [, it gobbles up all subsequent
  41819. characters that are outside the final-character range and stores them in a
  41820. parameter buffer, and then when it gets the final character, it executes
  41821. the indicated function using the accumulated parameters, if any.  Example:
  41822.  
  41823.   ESC [ 3 M
  41824.  
  41825. deletes 3 lines, beginning at the line where the cursor is.  If the number
  41826. is omitted, the current cursor line is deleted.  Parameters are typically
  41827. numbers, semicolons, question marks, etc: printable (note: printable)
  41828. ASCII characters outside the final-character range.  (Why printable?
  41829. Because many control characters already have time-honored functions.)
  41830.  
  41831. Now along comes "ANSI music".  What is it?  It is "beeper" music encoded
  41832. like a PC BASIC "PLAY" command.  It comes right after the ESC [, and can
  41833. start with any character at all.  Example:
  41834.  
  41835.  ESC [ MFT120O3 G8.A32F32G4.O4C8O3A8F8D8F8O4C8O3B8O4C2 ...
  41836.  
  41837. and is terminated by a Ctrl-N.  What is wrong with this idea?
  41838.  
  41839.  1. A correctly designed escape-sequence parser will not recognize it;
  41840.     it is likely to encounter a final character within the string itself.
  41841.     In this case, the first character, M, is a final character ("delete
  41842.     lines").
  41843.  
  41844.  2. A random function will be executed depending on what final character
  41845.     was found, and which, if any, characters came before it.
  41846.  
  41847.  3. The terminating character, Ctrl-N, is not in the final-character range.
  41848.     If no final character is encountered prior to the Ctrl-N, the Ctrl-N
  41849.     will be ignored, as are most other control characters inside of
  41850.     escape sequences.
  41851.  
  41852.  4. Ctrl-N has an entirely different function, used all over the world
  41853.     for nearly three decades: Shift-Out.  This tells the terminal to
  41854.     interpret 7-bit codes as the corresponding 8-bit codes.
  41855.  
  41856. You might ask, "why so hard on ANSI music?  It's cute!"  Maybe so, but
  41857. then it should have been designed conform to the ANSI standard.  The
  41858. problem with the current definition is not just one of purity.  It is that
  41859. a terminal or emulator CAN NOT TELL THE DIFFERENCE between a valid escape
  41860. sequence and an ANSI music sequence that contains a valid ANSI final
  41861. character.
  41862.  
  41863. So... the final Kermit change noted above simply makes Kermit, when in
  41864. ANSI mode, ignore Ctrl-N (and its counterpart, Ctrl-O).  So if you log in
  41865. to a BBS that sends ANSI music, you are likely to see strings of letters
  41866. and numbers on your screen when music is played, but at least from that
  41867. point on you will no longer see total gibberish!
  41868.  
  41869. OK, off my soapbox.  The foregoing tirade was principally to head off
  41870. requests for Kermit to support ANSI music.
  41871.  
  41872. Please continue to send Beta test reports by e-mail to kermit@columbia.edu,
  41873. and let's hope 9 is a lucky number...
  41874.  
  41875. - Frank
  41876.  
  41877. From news@columbia.edu Thu Oct 27 22:23:10 1994
  41878. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26069
  41879.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 27 Oct 1994 18:23:20 -0400
  41880. Received: by apakabar.cc.columbia.edu id AA23509
  41881.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 27 Oct 1994 18:23:16 -0400
  41882. Path: news.columbia.edu!usenet
  41883. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  41884. Newsgroups: comp.protocols.kermit.misc
  41885. Subject: PRIME Kermit  binary needed
  41886. Date: 27 Oct 1994 22:23:10 GMT
  41887. Organization: Columbia University
  41888. Lines: 9
  41889. Message-Id: <38p98e$mue@apakabar.cc.columbia.edu>
  41890. Nntp-Posting-Host: fdc.cc.columbia.edu
  41891. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  41892.  
  41893. Does anybody have Kermit running on a PRIME computer with PRIMOS?
  41894. Most PRIME sites are able to compile it from the source, but one
  41895. came up recently that did not have the PL/P compiler handy.
  41896.  
  41897. Preferably this would be the current release, 8.15.
  41898.  
  41899. If so, pls send me email.  Thanks!
  41900.  
  41901. - Frank
  41902.  
  41903. From news@columbia.edu Fri Oct 28 10:24:29 1994
  41904. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28480
  41905.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 28 Oct 1994 06:28:08 -0400
  41906. Received: by apakabar.cc.columbia.edu id AA04451
  41907.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 28 Oct 1994 06:28:06 -0400
  41908. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!EU.net!uunet!zib-berlin.de!informatik.tu-muenchen.de!lrz-muenchen.de!sun2!s3e0101
  41909. From: s3e0101@sun2.lrz-muenchen.de ()
  41910. Newsgroups: comp.protocols.kermit.misc
  41911. Subject: WP ascii files + Kermit
  41912. Date: 28 Oct 1994 10:24:29 GMT
  41913. Organization: Leibniz-Rechenzentrum, Muenchen (Germany)
  41914. Lines: 14
  41915. Distribution: world
  41916. Message-Id: <38qjgt$k2i@sunserver.lrz-muenchen.de>
  41917. Nntp-Posting-Host: sun2.lrz-muenchen.de
  41918. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  41919.  
  41920.  
  41921.  
  41922.  
  41923. Hi Netters,
  41924.  
  41925. I cannot get the ascii files I have written with Wp 5.1 [saved with cntrl F5]
  41926. uploaded to the Unix system of my Internet provider. The error message
  41927. from kermit is "too many retries".  There are probably various possible
  41928. solutions to this trouble but the best for me would seem to be stripping the
  41929. files while still on my PC of the characters which kermit cannot digest.
  41930.  
  41931. Any help would be much appreciated.  Thanks in advance.
  41932.  
  41933.  
  41934.  
  41935. From news@columbia.edu Wed Oct 26 03:50:00 1994
  41936. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29190
  41937.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 28 Oct 1994 06:52:59 -0400
  41938. Received: by apakabar.cc.columbia.edu id AA05314
  41939.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 28 Oct 1994 06:52:57 -0400
  41940. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!yeshua.marcam.com!zip.eecs.umich.edu!newsxfer.itd.umich.edu!jobone!heifetz.msen.com!zib-berlin.de!gs.dfn.de!tubsibr!news
  41941. From: meyer@ifn.ing.tu-bs.de
  41942. Newsgroups: comp.protocols.kermit.misc
  41943. Subject: Re: Scan code \313 for the space key - why?
  41944. Date: Wed, 26 Oct 94 03:50:00 GMT
  41945. Organization: Inst.f.Nachrichtentechnik, TU Braunschweig, Germany
  41946. Lines: 27
  41947. Distribution: world
  41948. Message-Id: <38kcjf$g5s@ra.ibr.cs.tu-bs.de>
  41949. References: <386qkt$21k@ra.ibr.cs.tu-bs.de>,<388i7u$3ku@apakabar.cc.columbia.edu>
  41950. Nntp-Posting-Host: ifn.ing.tu-bs.de
  41951. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  41952.  
  41953. In Article <388i7u$3ku@apakabar.cc.columbia.edu>
  41954. fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  41955. > [...]
  41956. >The change is transparent when using the regular keyboard drivers, but
  41957. >if you are using a nonstandard driver, you might have to put:
  41958. >
  41959. >  set key \313 \32
  41960. >
  41961. >in your MSCUSTOM.INI file.  In version 3.14, we have also differentiated
  41962. >the Esc and Enter key + Ctrl/Alt/Shift scan codes.
  41963.  
  41964.     My keyboard driver has a 'VT mode' in which all keypad keys give
  41965.     special scan codes (including NumLock). So it's easy to map DEC's
  41966.     keypad ESC-Seqs to those keys (set key \nnn \KKPm).
  41967.     Unfortunatley the keypad 9 key gives \313 in that mode,
  41968.     so pressing the space key produces the KKP9 ESC-sequence...
  41969.  
  41970.     --Eckart
  41971.  
  41972. -----------------------------------------------------------------------------
  41973. Eckart Meyer                                     Address:  Schleinitzstr.  23
  41974. Institute for Telecommunication                            38092 Braunschweig
  41975. Technical University of Braunschweig                                  Germany
  41976.                                                  Phone:      +49 531 391 2454
  41977. E-Mail:   meyer@ifn.ing.tu-bs.de                 FAX:        +49 531 391 5192
  41978. VMSmail:  PSI%26245050551130::MEYER (DATEX-P)
  41979. -----------------------------------------------------------------------------
  41980.  
  41981. From news@columbia.edu Fri Oct 28 00:07:39 1994
  41982. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02014
  41983.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 28 Oct 1994 08:12:46 -0400
  41984. Received: by apakabar.cc.columbia.edu id AA08329
  41985.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 28 Oct 1994 08:12:45 -0400
  41986. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!gatech!concert!lester.appstate.edu!lester.appstate.edu!krb
  41987. From: krb@lester.appstate.edu (Kinney Baughman)
  41988. Newsgroups: comp.protocols.kermit.misc
  41989. Subject: Re: 3.13/Can't dial # in dialfile
  41990. Date: 28 Oct 1994 00:07:39 GMT
  41991. Organization: Appalachian State University
  41992. Lines: 20
  41993. Message-Id: <38pfcb$jd@lester.appstate.edu>
  41994. References: <38jnn0$rbn@lester.appstate.edu> <38k2mo$lee@apakabar.cc.columbia.edu>
  41995. Nntp-Posting-Host: lester.appstate.edu
  41996. X-Newsreader: TIN [version 1.2 PL0]
  41997. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  41998.  
  41999. Frank da Cruz (fdc@fdc.cc.columbia.edu) wrote:
  42000. : MS-DOS Kermit 3.14 Beta comes with LOTS more dialing scripts, but not
  42001. : one specifically for the Infotel.
  42002.  
  42003. : Read any of the Beta announcements on this newsgroup to find out where
  42004. : to get the Beta.
  42005.  
  42006. : Then dig through the new modem scripts and see if any of them matches
  42007. : the Infotel.  If so, please let us know.  If not, maybe you could pick out
  42008. : the closest one and adapt it and send it in so everybody else who has the
  42009. : same kind of modem can use it.
  42010.  
  42011. I'd be happy to do my small part.
  42012.  
  42013. But should I just try scripts one by one until they work?  Or is there
  42014. an indicator on my modem card that might help me determine which script
  42015. to try?
  42016.  
  42017. Kinney 
  42018.  
  42019.  
  42020. From news@columbia.edu Fri Oct 28 13:24:52 1994
  42021. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04978
  42022.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 28 Oct 1994 09:25:09 -0400
  42023. Received: by apakabar.cc.columbia.edu id AA13036
  42024.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 28 Oct 1994 09:25:06 -0400
  42025. Path: news.columbia.edu!usenet
  42026. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  42027. Newsgroups: comp.protocols.kermit.misc
  42028. Subject: Re: 3.13/Can't dial # in dialfile
  42029. Date: 28 Oct 1994 13:24:52 GMT
  42030. Organization: Columbia University
  42031. Lines: 60
  42032. Message-Id: <38qu34$cm9@apakabar.cc.columbia.edu>
  42033. References: <38pfcb$jd@lester.appstate.edu>
  42034. Nntp-Posting-Host: fdc.cc.columbia.edu
  42035. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  42036.  
  42037. In article <38pfcb$jd@lester.appstate.edu> krb@lester.appstate.edu (Kinney  
  42038. Baughman) writes:
  42039. > Frank da Cruz (fdc@fdc.cc.columbia.edu) wrote:
  42040. > : MS-DOS Kermit 3.14 Beta comes with LOTS more dialing scripts, but not
  42041. > : one specifically for the Infotel.
  42042. > I'd be happy to do my small part.
  42043. > But should I just try scripts one by one until they work?  Or is there
  42044. > an indicator on my modem card that might help me determine which script
  42045. > to try?
  42046. All the high-speed modem scripts do pretty much the same thing; only
  42047. the specific modem commands are different.  Here is a cutout from the
  42048. MODEMS\READ.ME file:
  42049.  
  42050. WHAT THE DIALING SCRIPTS HAVE IN COMMON
  42051.  
  42052. These scripts use your modem's default dialing method, pulse or tone; they do
  42053. not specify one or the other, since neither method is supported by all
  42054. telephones everywhere.  To force Tone dialing, begin your phone number with  
  42055. T,
  42056. for example:
  42057.  
  42058.   DIAL T7654321
  42059.  
  42060. Similarly, to force pulse dialing, start the phone number with P.
  42061.  
  42062. If you give a DIAL command whose telephone number is simply = (equal sign),
  42063. the modem will be initialized, but no call will be placed.  In some cases,
  42064. the dialing script will also ask the modem to display its configuration.
  42065.  
  42066. When dialing a real phone number, you can include special characters in the
  42067. phone number to accomplish pauses, wait for secondary dialtone, etc.  See  
  42068. your
  42069. modem manual.
  42070.  
  42071. If you dial a number that is busy, most of these scripts will wait 30 seconds
  42072. and then redial automatically, up to 5 times.  You can cancel the redial
  42073. operation by pressing any key after you see the message:
  42074.  
  42075.   Line is busy, will dial again in 30 seconds.
  42076.   Press any key to cancel...
  42077.  
  42078. Each dialing script returns SUCCESS if dialing succeeds and FAILURE if it
  42079. doesn't, so you can use an IF FAIL or IF SUCCESS statement after a DIAL
  42080. command in a script.
  42081.  
  42082. (end of cutout)
  42083.  
  42084. So pick one of the high-speed modem scripts and read it, referring to your
  42085. modem manual to see if the modem commands are the same.  If not, repeat
  42086. with another script and so on until you find one, or you've used up all the
  42087. scripts.  In the latter case, pick the script that is closest, make a copy,
  42088. call the copy INFOTEL.SCR, edit it to use the appropriate modem commands,
  42089. test it, debug it, and when it is working properly, you are invited to
  42090. send it in for redistribution.
  42091.  
  42092. - Frank
  42093.  
  42094.  
  42095. From news@columbia.edu Fri Oct 28 13:33:38 1994
  42096. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05668
  42097.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 28 Oct 1994 09:33:45 -0400
  42098. Received: by apakabar.cc.columbia.edu id AA13816
  42099.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 28 Oct 1994 09:33:43 -0400
  42100. Path: news.columbia.edu!usenet
  42101. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  42102. Newsgroups: comp.protocols.kermit.misc
  42103. Subject: Re: WP ascii files + Kermit
  42104. Date: 28 Oct 1994 13:33:38 GMT
  42105. Organization: Columbia University
  42106. Lines: 82
  42107. Message-Id: <38quji$dfe@apakabar.cc.columbia.edu>
  42108. References: <38qjgt$k2i@sunserver.lrz-muenchen.de>
  42109. Nntp-Posting-Host: fdc.cc.columbia.edu
  42110. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  42111.  
  42112. In article <38qjgt$k2i@sunserver.lrz-muenchen.de>  
  42113. s3e0101@sun2.lrz-muenchen.de () writes:
  42114. > I cannot get the ascii files I have written with Wp 5.1 [saved with
  42115. > cntrl F5] uploaded to the Unix system of my Internet provider. The error
  42116. > message from kermit is "too many retries".  There are probably various 
  42117. > possible solutions to this trouble but the best for me would seem to be
  42118. > stripping the files while still on my PC of the characters which kermit
  42119. > cannot digest.
  42120. There are no characters that Kermit cannot digest.  This is a tranmission
  42121. problem, probably caused by a communication path that is using parity.
  42122. Just tell Kermit to "set parity space" (or even, or mark) and it should
  42123. work.  Space is the most likely one to use, since Kermit can detect
  42124. even, odd, or mark parity automatically, if you are using real Kermit
  42125. software of recent vintage (the past several years).
  42126.  
  42127. A second question is: how will the file be used on Unix?  If you have a
  42128. Unix version of WordPerfect, then you don't have to "export" the file
  42129. (save it as "ascii only") from PC WordPerfect, in which case you should
  42130. transfer it in binary mode.  If you intend to use it for some other purpose,
  42131. then you must export it.  If that is what Ctrl-F5 does, then I suspect the
  42132. problem you are experiencing is because the file contained German letters
  42133. (Umlaute, Ess-Zet), which are 8-bit characters, which were interfered with
  42134. by parity.  SET PARITY will fix this, as I said above, but you also have
  42135. to be concerned with the character set.  Kermit will translate your
  42136. German text from the PC code page to whatever character set is used on
  42137. the Unix host to represent German text, typically ISO Latin-1 or the
  42138. German national version of ISO 646.
  42139.  
  42140. You can, of course, read about all of this in the manual (which is also
  42141. available in German) (and French):
  42142.  
  42143.   Christine M. Gianone, "Using MS-DOS Kermit", Second Edition, Digital
  42144.   Press / Butterworth-Heinemann, Woburn, MA, 1992, 345 pages, ISBN
  42145.   1-55558-082-3.  Packaged with version 3.13 of MS-DOS Kermit for the
  42146.   IBM PC, PS/2, and compatibles on a 3.5-inch diskette.
  42147.  
  42148.   US single-copy price: $34.95; quantity discounts available.  Available
  42149.   in computer bookstores or directly from:
  42150.  
  42151.     Kermit Development and Distribution
  42152.     Columbia University Academic Information Systems
  42153.     612 West 115th Street
  42154.     New York, NY  10025  USA
  42155.     Telephone: (USA) 212 854-3703
  42156.  
  42157.   Domestic and overseas orders accepted.  Price: $34.95 (US, Canada, and
  42158.   Mexico), $45 elsewhere.  Orders may be paid by MasterCard or Visa, or
  42159.   prepaid by check in US dollars.  Add $35 bank fee for checks not drawn
  42160.   on a US bank.  Price includes shipping.  Do not include sales tax.
  42161.  
  42162.   You can also order by phone from the publisher, Digital Press /
  42163.   Butterworth-Heinemann, with MasterCard, Visa, or American Express:
  42164.  
  42165.     +1 800 366-2665 (Woburn, Massachusetts office for USA and Canada)
  42166.     +1 800 665-1148 (Logan Bros, Winnepeg, Manitoba office for Canada)
  42167.     +44 993 58521   (Rushden, England office for Europe)
  42168.     +61 2 372-5511  (Chatswood, NSW office for Australia & New Zealand)
  42169.     +65 220-3684    (Singapore office for Asia)
  42170.  
  42171.   A German-language edition is also available:
  42172.  
  42173.     Christine M. Gianone, "MS-DOS Kermit, das universelle
  42174.     Kommunikationsprogramm", Verlag Heinz Heise, Hannover, Germany
  42175.     (1991), 414 pages.  Packaged with version 3.12 of MS-DOS Kermit for
  42176.     the IBM PC, PS/2, and compatibles on a 5.25-inch diskette, including
  42177.     German-language help files.  Deutsch von Gisbert W. Selke.  Price:
  42178.     DM 69,00.  ISBN 3-88229-006-4.  Verlag Heinz Heise GmbH & Co. KG,
  42179.     Helstorfer Strasse 7, D-30625 Hannover.  Tel. +49 (05 11) 53 52-0,
  42180.     Fax. +49 (05 11) 53 53-1 29.
  42181.  
  42182.   And a French-language edition:
  42183.  
  42184.     Christine M. Gianone, "Kermit MS-DOS mode d'emploi", Heinz Schiefer
  42185.     & Cie., Versailles (1993), 406 pages.  Packaged with version 3.11 of
  42186.     MS-DOS Kermit for the IBM PC, PS/2, and compatibles on a 5.25-inch
  42187.     diskette.  Adaption francaise: Jean Dutertre.  ISBN 2-901143-20-2.
  42188.     Heinz Schiefer & Cie., 45 rue Henri de Regnier, F-78000 Versailles.
  42189.     Tel. +33 39 53 95 26, Fax. +33 39 02 39 71.
  42190.  
  42191. - Frank
  42192.  
  42193.  
  42194. From news@columbia.edu Fri Oct 28 13:19:34 1994
  42195. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09985
  42196.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 28 Oct 1994 10:25:07 -0400
  42197. Received: by apakabar.cc.columbia.edu id AA17677
  42198.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 28 Oct 1994 10:25:06 -0400
  42199. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news.sprintlink.net!EU.net!uunet!news1.digex.net!digex.net!not-for-mail
  42200. From: keithw@access4.digex.net (Keith Willett)
  42201. Newsgroups: comp.protocols.kermit.misc
  42202. Subject: Re: Using Kermit As A Passive Data Collector
  42203. Date: 28 Oct 1994 09:19:34 -0400
  42204. Organization: Wye Technologies
  42205. Lines: 12
  42206. Message-Id: <38qtp6$c9v@access4.digex.net>
  42207. Nntp-Posting-Host: access4.digex.net
  42208. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  42209.  
  42210.  
  42211. I am interested in setting up Kermit on a Unix system which will monitor
  42212. the serial port for transmissions and write the information to a file.
  42213. The serial port is connected via null modem cable to a PBX which dumps
  42214. statistical data on a periodic basis.  The switch sends data to the
  42215. serial port as it would to a printer.  I can't signon to the switch or
  42216. otherwise communicate to it, I can only capture whatever it sends.  I
  42217. am most appreciative for any tips anyone has to offer and will forward
  42218. the results to anyone interested.  Thanks.
  42219.  
  42220. -- 
  42221. ---Keith Willett
  42222.  
  42223. From news@columbia.edu Fri Oct 28 16:01:50 1994
  42224. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10775
  42225.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 28 Oct 1994 17:40:45 -0400
  42226. Received: by apakabar.cc.columbia.edu id AA07484
  42227.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 28 Oct 1994 17:40:44 -0400
  42228. Newsgroups: comp.protocols.kermit.misc
  42229. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!news.duke.edu!news-feed-1.peachnet.edu!gatech!newsxfer.itd.umich.edu!news1.oakland.edu!rcsuna.gmr.com!kocrsv08.delcoelect.com!kocrsv01!c23st
  42230. From: c23st@kocrsv01.delcoelect.com (Spiros Triantafyllopoulos)
  42231. Subject: Re: Kermit on AS400
  42232. Message-Id: <1994Oct28.160150.18451@kocrsv01.delcoelect.com>
  42233. Sender: news@kocrsv01.delcoelect.com (Usenet News Account)
  42234. Nntp-Posting-Host: kocrsw24
  42235. Organization: Delco Electronics Corp.
  42236. References: <38lbji$r3o@zaphod.crihan.fr> <38miaj$34q@apakabar.cc.columbia.edu>
  42237. Date: Fri, 28 Oct 1994 16:01:50 GMT
  42238. Lines: 26
  42239. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  42240.  
  42241. In article <38miaj$34q@apakabar.cc.columbia.edu> fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  42242. >Nobody has ever succeeded in writing a Kermit program for the AS/400.
  42243. >Many have announced their intention to do this, but none have ever
  42244. >actually even started, as far as I can tell.  This system (together
  42245. >with its predecessors, the Systems/34, 36, and 38) is the only major
  42246. >gap in the Kermit software collection.
  42247. >
  42248. >I can only speculate that the AS/400 and its ancestors are devilishly
  42249. >hard to program, at least for communicating with outside world, since
  42250. >they use the EBCDIC character set rather than ASCII or any of its
  42251. >descendents, and since it uses bizarre and proprietary communication
  42252. >methods.
  42253.  
  42254. You mean that the AS/400 is even worse than MVS in that aspect?  Kermit
  42255. has been on MVS for aeons...  and it's EBCIDIC and hopefully uses the
  42256. same protocol...
  42257.  
  42258. Progress :-)
  42259.  
  42260. Spiros
  42261.  
  42262.  
  42263. -- 
  42264. Spiros Triantafyllopoulos                  Kokomo, IN 46904   (317) 451-0815
  42265. Software Development Tools, AD/SI          c23st@kocrsv01.delcoelect.com
  42266. Delco Electronics/GM Hughes Electronics    "Reading, 'Rithmetic, and Readnews"
  42267.  
  42268. From news@columbia.edu Fri Oct 28 21:06:49 1994
  42269. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11389
  42270.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 28 Oct 1994 17:50:51 -0400
  42271. Received: by apakabar.cc.columbia.edu id AA08319
  42272.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 28 Oct 1994 17:50:50 -0400
  42273. Path: news.columbia.edu!panix!news.mathworks.com!news.duke.edu!eff!news.umbc.edu!haven.umd.edu!cs.umd.edu!mojo.eng.umd.edu!dosa
  42274. From: dosa@eng.umd.edu (Young Beom Kim)
  42275. Newsgroups: comp.protocols.kermit.misc
  42276. Subject: HELP: How to install Mac Kermit 0.991
  42277. Date: 28 Oct 1994 21:06:49 GMT
  42278. Organization: University of Maryland, College Park
  42279. Lines: 11
  42280. Distribution: world
  42281. Message-Id: <38rp59$98r@mojo.eng.umd.edu>
  42282. Nntp-Posting-Host: ether.src.umd.edu
  42283. Keywords: Mac Kermit 0.991
  42284. Originator: dosa@ether.src.umd.edu
  42285. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  42286.  
  42287.  
  42288. Can anybody help how to use (or install) Mac Kermit 0.991?
  42289. I ftp'd it and un-hqx'd by BinHex 4.0. But after then I can't go further.
  42290. How to dial up and connect to remote server, etc. I have MacII with Mac OS 7.1
  42291. and 14.4 kbps external modem. Any help will be greatly appreciated.
  42292. Thanks in advance.
  42293.  
  42294. -Young
  42295.  
  42296.  
  42297.  
  42298.  
  42299. From news@columbia.edu Fri Oct 28 22:04:02 1994
  42300. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12227
  42301.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 28 Oct 1994 18:04:07 -0400
  42302. Received: by apakabar.cc.columbia.edu id AA09348
  42303.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 28 Oct 1994 18:04:05 -0400
  42304. Path: news.columbia.edu!usenet
  42305. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  42306. Newsgroups: comp.protocols.kermit.misc
  42307. Subject: Re: HELP: How to install Mac Kermit 0.991
  42308. Date: 28 Oct 1994 22:04:02 GMT
  42309. Organization: Columbia University
  42310. Lines: 23
  42311. Message-Id: <38rsgi$93n@apakabar.cc.columbia.edu>
  42312. References: <38rp59$98r@mojo.eng.umd.edu>
  42313. Nntp-Posting-Host: fdc.cc.columbia.edu
  42314. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  42315.  
  42316. In article <38rp59$98r@mojo.eng.umd.edu> dosa@eng.umd.edu (Young Beom Kim)  
  42317. writes:
  42318. > Can anybody help how to use (or install) Mac Kermit 0.991?
  42319. > I ftp'd it and un-hqx'd by BinHex 4.0. But after then I can't go further.
  42320. > How to dial up and connect to remote server, etc. I have MacII with Mac OS  
  42321. > 7.1 and 14.4 kbps external modem. Any help will be greatly appreciated.
  42322. A comprehensive user manual will be published when the final 1.0 release is
  42323. complete.  Sorry, I can't give any reasonable estimate about when that will
  42324. be.  Mac Kermit files, ftp from kermit.columbia.edu in text mode from the
  42325. kermit/test/text directory:
  42326.  
  42327.   ckm190.hqx -- current prerelease of Mac Kermit in BinHex 4.0 format
  42328.   ckmker.doc -- user documentation for 0.9(40), the previous release (1988)
  42329.   ckmker.ps  -- PostScript version of user documentation for 0.9(40)
  42330.   ckmker.bwr -- Notes about the current prerelease, FAQ's, etc
  42331.   ckmker.fon -- Notes about the new Mac Kermit terminal emulation font
  42332.  
  42333. and in the kermit/charsets directory:
  42334.  
  42335.   maclatin.* -- The new Mac Kermit font itself
  42336.  
  42337. Read the ckmker.bwr ("beware") file for further details.
  42338.  
  42339. From news@columbia.edu Fri Oct 28 18:26:15 1994
  42340. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19621
  42341.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 28 Oct 1994 20:34:47 -0400
  42342. Received: by apakabar.cc.columbia.edu id AA19592
  42343.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 28 Oct 1994 20:34:45 -0400
  42344. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!gatech!newsfeed.pitt.edu!dsinc!netnews.upenn.edu!cronkite.ocis.temple.edu!astro.ocis.temple.edu!georged
  42345. From: georged@astro.ocis.temple.edu (GEORGIOS DIMITOGLOU)
  42346. Newsgroups: comp.protocols.kermit.misc
  42347. Subject: Need Info on DOS script
  42348. Date: 28 Oct 1994 18:26:15 GMT
  42349. Organization: Temple University, Academic Computer Services
  42350. Lines: 29
  42351. Message-Id: <38rfo7$abs@cronkite.ocis.temple.edu>
  42352. Nntp-Posting-Host: astro.ocis.temple.edu
  42353. X-Newsreader: TIN [version 1.2 PL2]
  42354. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  42355.  
  42356. Dear Friends,
  42357.  
  42358. I am trying to write a script *.scr for MS-KERMIT. what I need is a 
  42359. sequence of commands that will:
  42360.  
  42361. 1. connect ("c" to connect)
  42362. 2. send a couple of breaks until there is a response
  42363. 3. type a command in [enter]
  42364. 4. Wait until the next prompt comes up
  42365. 5. type anothe command in [enter]
  42366. 6. login name:
  42367. 7. password:
  42368.  
  42369. The point is that all the scripts I have seen, are ALL phone-line 
  42370. dependent; in my situation we dont dial...just get into a banner etc...
  42371.  
  42372. any help, or even isolated commands will be great.
  42373.  
  42374.  
  42375. =============================================================================
  42376. TTTTTTTTTTTTT                 Temple University Press
  42377. TTTTTTTTTTTTT                    George Dimitoglou
  42378.     TTTTT                          Business Dept.         
  42379.     TTTTT          
  42380.     TTTTT   U.S.B Rm. 305         |  E-mail: georged@astro.ocis.temple.edu   
  42381.     TTTTT   Broad & Oxford Sts.,  |          tempress@astro.osis.temple.edu 
  42382.     TTTTT   Philadelphia,         |  Tel   : (215)204-8787
  42383.     TTTTT   Pa 19121              |  Fax   : (215)204-4719
  42384. ==============================================================================
  42385.  
  42386. From news@columbia.edu Fri Oct 28 16:29:33 1994
  42387. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22325
  42388.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 28 Oct 1994 21:45:33 -0400
  42389. Received: by apakabar.cc.columbia.edu id AA23839
  42390.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 28 Oct 1994 21:45:31 -0400
  42391. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!news.duke.edu!godot.cc.duq.edu!newsfeed.pitt.edu!gatech!swrinde!howland.reston.ans.net!news.sprintlink.net!EU.net!uknet!comlab.ox.ac.uk!oxuniv!long
  42392. From: long@vax.ox.ac.uk (NEIL J LONG)
  42393. Newsgroups: comp.protocols.kermit.misc
  42394. Subject: SGI Indy & C-Kermit & RTS/CTS
  42395. Message-Id: <1994Oct28.162933.26982@oxvaxd>
  42396. Date: 28 Oct 94 16:29:33 GMT
  42397. Organization: Oxford University VAX 6620
  42398. Lines: 11
  42399. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  42400.  
  42401. Hello
  42402. Just finished looking at ckermit 5A(190) with a view to running it on an SGI
  42403. Indy (Irix 5.2). It builds OK and is OK with -O2 and -mips2 options.
  42404.  
  42405. To use 'fast' modems uucp uses /dev/ttyf? for hardware flow control.
  42406.  
  42407. Is it neccessary to re-build ckermit with -DCK_RTSCTS in order to set flow
  42408. rts/cts or should I just use flow none or what.
  42409.  
  42410. Thanks
  42411. Neil
  42412.  
  42413. From news@columbia.edu Sat Oct 29 11:03:16 1994
  42414. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13631
  42415.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 29 Oct 1994 07:07:13 -0400
  42416. Received: by apakabar.cc.columbia.edu id AA18330
  42417.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 29 Oct 1994 07:07:11 -0400
  42418. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!EU.net!uunet!zib-berlin.de!informatik.tu-muenchen.de!lrz-muenchen.de!sun2!s3e0101
  42419. From: s3e0101@sun2.lrz-muenchen.de ()
  42420. Newsgroups: comp.protocols.kermit.misc
  42421. Subject: Re: WP ascii files + Kermit
  42422. Date: 29 Oct 1994 11:03:16 GMT
  42423. Organization: Leibniz-Rechenzentrum, Muenchen (Germany)
  42424. Lines: 20
  42425. Distribution: world
  42426. Message-Id: <38ta5k$l9i@sunserver.lrz-muenchen.de>
  42427. References: <38qjgt$k2i@sunserver.lrz-muenchen.de> <38quji$dfe@apakabar.cc.columbia.edu>
  42428. Nntp-Posting-Host: sun2.lrz-muenchen.de
  42429. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  42430.  
  42431. fdc@fdc.cc.columbia.edu (Frank da Cruz) wrote on a question I asked about
  42432. the transmission of Wp 5.1  ascii files with kermit and said inter alia:
  42433.  
  42434. >There are no characters that Kermit cannot digest.  This is a tranmission
  42435. >problem, probably caused by a communication path that is using parity
  42436.  
  42437. From news@columbia.edu Sat Oct 29 07:40:35 1994
  42438. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14510
  42439.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 29 Oct 1994 07:40:35 -0400
  42440. Received: by apakabar.cc.columbia.edu id AA19469
  42441.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 29 Oct 1994 07:40:33 -0400
  42442. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!EU.net!i2unix!news
  42443. From: Gianluca Attura <MC8114@mclink.it>
  42444. Newsgroups: comp.protocols.kermit.misc
  42445. Subject: Latest Beta?
  42446. Date: Sat, 29 Oct 94 02:31:30 CET
  42447. Organization: MC-link - Italian Dial-Up Online Service
  42448. Lines: 12
  42449. Message-Id: <783394290.MC8114@mclink.it>
  42450. Nntp-Posting-Host: ax433.mclink.it
  42451. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  42452.  
  42453.  
  42454. Which is the latest MS-Kermit Beta? I've downloaded
  42455. kermit.columbia.edu:/kermit/test/bin/mstibm.zip, but it reports Beta 9
  42456. instead of Beta 8.
  42457.  
  42458. Luca
  42459.  
  42460. ------------------------------ Eagle ---------------------------------
  42461.                            _____ . _____
  42462.  CompuServe : 100112,3521  \__  \O/  __/  Internet  : mc8114@mclink.it
  42463.  BIX        : gattura         \__ __/     FidoNet   : 2:335/336.11
  42464.  GEnie      : G.ATTURA          /_\       Channel 1 : Gianluca Attura
  42465.  
  42466. From news@columbia.edu Wed Oct 26 14:10:00 1994
  42467. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18637
  42468.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 29 Oct 1994 10:06:12 -0400
  42469. Received: by apakabar.cc.columbia.edu id AA24905
  42470.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 29 Oct 1994 10:06:11 -0400
  42471. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!usenet.eel.ufl.edu!piaget.moe.ac.sg!raffles.technet.sg!nuscc.nus.sg!ongsheau
  42472. From: ongsheau@iscs.nus.sg (Ong Sheau Ping)
  42473. Newsgroups: comp.protocols.kermit.misc
  42474. Subject: Dialing problem in Beta 7
  42475. Date: 26 Oct 1994 14:10:00 GMT
  42476. Organization: National University of Singapore
  42477. Lines: 15
  42478. Message-Id: <38lnvo$5c7@nuscc.nus.sg>
  42479. Nntp-Posting-Host: ongsheau@sununx.iscs.nus.sg
  42480. X-Newsreader: TIN [version 1.2 PL2]
  42481. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  42482.  
  42483. The Dial macro seems to be faulty. It always gives me 'Dialing script not 
  42484. found'.
  42485.  
  42486. Also, something seems to be wrong with user defined variables.
  42487. When I do something like 'define test \m(_myvar).txt', the '.txt' after the 
  42488. user variable will not be included in the variable test.
  42489.  
  42490. This could be why the CHKMDM macro doesn't detect the dialing script.
  42491.  
  42492. --
  42493.  
  42494. Regards,
  42495. Jonathan
  42496.  
  42497. *** You can mail me at 'ongsheau@iscs.nus.sg' ***
  42498.  
  42499. From news@columbia.edu Wed Oct 26 15:57:40 1994
  42500. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18844
  42501.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 29 Oct 1994 10:11:37 -0400
  42502. Received: by apakabar.cc.columbia.edu id AA25303
  42503.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 29 Oct 1994 10:11:36 -0400
  42504. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!yeshua.marcam.com!news.kei.com!hookup!news.moneng.mei.com!howland.reston.ans.net!EU.net!uknet!strath-cs!lorne.stir.ac.uk!is06
  42505. From: is06@stirling.ac.uk (I. Stirling)
  42506. Newsgroups: comp.protocols.kermit.misc
  42507. Subject: Re: Kermit over telnet on unix
  42508. Date: 26 Oct 1994 15:57:40 GMT
  42509. Organization: University of Stirling
  42510. Lines: 13
  42511. Message-Id: <38lu9k$f7d@lorne.stir.ac.uk>
  42512. References: <388mio$9rq@apakabar.cc.columbia.edu>
  42513. Nntp-Posting-Host: is06@forth.stir.ac.uk
  42514. X-Newsreader: TIN [version 1.1 PL9]
  42515. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  42516.  
  42517. Frank da Cruz (fdc@fdc.cc.columbia.edu) wrote:
  42518. : In article <388j7e$qtu@lorne.stir.ac.uk> is06@stirling.ac.uk (I. Stirling)  
  42519. : writes:
  42520. : > This is what I had guessed I needed, my problem is I can't seem to find
  42521.  
  42522. : If your version of Kermit was built without TCP/IP support, but your UNIX
  42523. : system includes it, this should be a simple matter of rebuilding C-Kermit
  42524. : to also include it.
  42525. Ah, that's it, it dosen't even give the telnet command.
  42526. : anonymous ftp to kermit.columbia.edu, directory kermit/test/bin, binary
  42527. : mode, file cku190.tar.Z (or .gz).
  42528. Thanks.
  42529. Ian Stirling.
  42530.  
  42531. From news@columbia.edu Sat Oct 29 14:15:48 1994
  42532. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18967
  42533.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 29 Oct 1994 10:15:54 -0400
  42534. Received: by apakabar.cc.columbia.edu id AA25635
  42535.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 29 Oct 1994 10:15:52 -0400
  42536. Path: news.columbia.edu!usenet
  42537. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  42538. Newsgroups: comp.protocols.kermit.misc
  42539. Subject: Re: Need Info on DOS script
  42540. Date: 29 Oct 1994 14:15:48 GMT
  42541. Organization: Columbia University
  42542. Lines: 34
  42543. Message-Id: <38tlek$p0k@apakabar.cc.columbia.edu>
  42544. References: <38rfo7$abs@cronkite.ocis.temple.edu>
  42545. Nntp-Posting-Host: fdc.cc.columbia.edu
  42546. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  42547.  
  42548. In article <38rfo7$abs@cronkite.ocis.temple.edu>  
  42549. georged@astro.ocis.temple.edu (GEORGIOS DIMITOGLOU) writes:
  42550. > I am trying to write a script *.scr for MS-KERMIT. what I need is a 
  42551. > sequence of commands that will:
  42552. > 1. connect ("c" to connect)
  42553. > 2. send a couple of breaks until there is a response
  42554. > 3. type a command in [enter]
  42555. > 4. Wait until the next prompt comes up
  42556. > 5. type anothe command in [enter]
  42557. > 6. login name:
  42558. > 7. password:
  42559. > The point is that all the scripts I have seen, are ALL phone-line 
  42560. > dependent; in my situation we dont dial...just get into a banner etc...
  42561. You can write a script to do anything automatically that you would do
  42562. interactively, including decision-making, etc.  Script-writing is
  42563. documented thoroughly in the books "Using MS-DOS Kermit" and "Using
  42564. C-Kermit".  Kermit's script language is a programming language, and
  42565. programmers generally learn and work from manuals.
  42566.  
  42567. Two things in connection with your question:
  42568.  
  42569. 1. You replace CONNECT (which connects a person, through the keyboard
  42570.    and screen to the external device, host, or service) with OUTPUT and
  42571.    INPUT commands.
  42572.  
  42573. 2. There is nothing special about a modem.  You give it commands and
  42574.    read its responses, same as a computer that you are logging in to.
  42575.  
  42576. So if you don't want to read the documentation, then use the dialing
  42577. scripts as examples of how to carry on an automated dialog.
  42578.  
  42579. - Frank
  42580.  
  42581. From news@columbia.edu Wed Oct 26 14:21:34 1994
  42582. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19200
  42583.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 29 Oct 1994 10:23:19 -0400
  42584. Received: by apakabar.cc.columbia.edu id AA25894
  42585.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 29 Oct 1994 10:23:17 -0400
  42586. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!usenet.eel.ufl.edu!piaget.moe.ac.sg!raffles.technet.sg!nuscc.nus.sg!ongsheau
  42587. From: ongsheau@iscs.nus.sg (Ong Sheau Ping)
  42588. Newsgroups: comp.protocols.kermit.misc
  42589. Subject: Unstable file transfer over modem
  42590. Date: 26 Oct 1994 14:21:34 GMT
  42591. Organization: National University of Singapore
  42592. Lines: 13
  42593. Message-Id: <38lole$5fd@nuscc.nus.sg>
  42594. Nntp-Posting-Host: ongsheau@sununx.iscs.nus.sg
  42595. X-Newsreader: TIN [version 1.2 PL2]
  42596. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  42597.  
  42598. I've just tried beta 6 and tried to download a binary file over the 
  42599. modem. Although I can download the file, but there's quite a lot retries, 
  42600. and it frequently uses more than 1 sliding-windows. Previously, with ver 
  42601. 3.13, under the same conditions, all my file transfers were very stable, 
  42602. usually with no retries, and I can have a cps of abt 1500, compared to 
  42603. abt 1100 for beta 6.
  42604.  
  42605. --
  42606.  
  42607. Regards,
  42608. Jonathan
  42609.  
  42610. *** You can mail me at 'ongsheau@iscs.nus.sg' ***
  42611.  
  42612. From news@columbia.edu Wed Oct 26 16:49:01 1994
  42613. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19851
  42614.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 29 Oct 1994 10:45:38 -0400
  42615. Received: by apakabar.cc.columbia.edu id AA27022
  42616.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 29 Oct 1994 10:45:37 -0400
  42617. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!hookup!usc!howland.reston.ans.net!vixen.cso.uiuc.edu!usenet
  42618. From: MULLEN@SCORPION.AG.UIUC.EDU (Evil Twin)
  42619. Newsgroups: comp.protocols.kermit.misc
  42620. Subject: Re: 3.14/Beta-6:  Answerback, Editing, Icon, Underscore, etc :-)
  42621. Date: 26 Oct 1994 16:49:01 GMT
  42622. Organization: Tony's Most Excellent NewsReader
  42623. Lines: 37
  42624. Distribution: world
  42625. Message-Id: <38m19t$fh3@vixen.cso.uiuc.edu>
  42626. References: <383hca$9fg@vixen.cso.uiuc.edu> <383lhq$g1j@apakabar.cc.columbia.edu>
  42627. Nntp-Posting-Host: hornet.ag.uiuc.edu
  42628. X-News-Reader: VMS NEWS v1.25
  42629. In-Reply-To: fdc@fdc.cc.columbia.edu's message of 19 Oct 1994 17:38:02 GMT
  42630. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  42631.  
  42632. In <383lhq$g1j@apakabar.cc.columbia.edu> fdc@fdc.cc.columbia.edu writes:
  42633.  
  42634. > In article <383hca$9fg@vixen.cso.uiuc.edu> d-lewart@uiuc.edu (Daniel S.  
  42635. > Lewart) writes:
  42636.  
  42637. [... deleted ...]
  42638.  
  42639. > > There is one particularly strange thing that I've seen, but I can't
  42640. > > reproduce.  Occasionally, the screen refreshes locally (it is too fast
  42641. > > to be remote) which I notice as a ripple quickly moving down the display.
  42642. > > 
  42643. > I see this too on my SVGA, but it has nothing to do with Kermit -- it
  42644. > happens at random times no matter what application is running.
  42645. You know.  Sometimes in the morning my alarm doesn't wake me up.  Is
  42646. there something wrong with my kermit set-up?
  42647.  
  42648. Tony -
  42649.  
  42650.  
  42651.  
  42652.  
  42653.  
  42654.  
  42655.  
  42656.  
  42657.  
  42658.  
  42659.  
  42660.  
  42661. :-)
  42662.  
  42663. --
  42664. Evil Twin -                                                       one_spike
  42665.         the Man, the Myth, the Legend in His Own Mind -         //~____/  ~\\
  42666.                 mullen@hornet.ag.uiuc.edu                       \\~    \  ~//
  42667.                                                                   one_kill!
  42668.  
  42669. From news@columbia.edu Sat Oct 29 14:53:45 1994
  42670. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20040
  42671.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 29 Oct 1994 10:53:48 -0400
  42672. Received: by apakabar.cc.columbia.edu id AA27410
  42673.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 29 Oct 1994 10:53:47 -0400
  42674. Path: news.columbia.edu!usenet
  42675. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  42676. Newsgroups: comp.protocols.kermit.misc
  42677. Subject: Re: SGI Indy & C-Kermit & RTS/CTS
  42678. Date: 29 Oct 1994 14:53:45 GMT
  42679. Organization: Columbia University
  42680. Lines: 29
  42681. Message-Id: <38tnlp$qog@apakabar.cc.columbia.edu>
  42682. References: <1994Oct28.162933.26982@oxvaxd>
  42683. Nntp-Posting-Host: fdc.cc.columbia.edu
  42684. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  42685.  
  42686. In article <1994Oct28.162933.26982@oxvaxd> long@vax.oxford.ac.uk (NEIL J  
  42687. LONG) writes:
  42688. > Just finished looking at ckermit 5A(190) with a view to running it on an
  42689. > SGI Indy (Irix 5.2). It builds OK and is OK with -O2 and -mips2 options.
  42690. > To use 'fast' modems uucp uses /dev/ttyf? for hardware flow control.
  42691. > Is it neccessary to re-build ckermit with -DCK_RTSCTS in order to set flow
  42692. > rts/cts or should I just use flow none or what.
  42693. Unless I am missing something, there is no API in IRIX for hardware flow
  42694. control, so rebuilding with -DCK_RTSCTS would not have any affect, even
  42695. though it compiles without error.
  42696.  
  42697. So, as noted in ckuker.bwr, section 8, the only way to get hardware flow
  42698. control with C-Kermit under IRIX is by selecting a /dev/ttyf* device.
  42699. This is unfortunate, because Kermit does not (and can not) know that
  42700. hardware flow control is in effect, and so (for example) cannot configure
  42701. your modem correctly.  This, by the way, is the same style of implementing
  42702. hardware flow control that is used by NeXTSTEP.
  42703.  
  42704. Looking through <sys/termios.h>, however, I do note the following definition:
  42705.  
  42706.   #define CNEW_RTSCTS 010000000 /* RiscOS API compliance */
  42707.  
  42708. If this actually means something and can be used to control RTS/CTS, then
  42709. some code can be added to C-Kermit, probably within #ifdef IRIX51..#endif,
  42710. to take advantage of it.  If you want to look into this, please send me
  42711. e-mail.
  42712.  
  42713. - Frank
  42714.  
  42715. From news@columbia.edu Sat Oct 29 14:56:49 1994
  42716. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20131
  42717.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 29 Oct 1994 10:56:53 -0400
  42718. Received: by apakabar.cc.columbia.edu id AA27513
  42719.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 29 Oct 1994 10:56:51 -0400
  42720. Path: news.columbia.edu!usenet
  42721. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  42722. Newsgroups: comp.protocols.kermit.misc
  42723. Subject: Re: Unstable file transfer over modem
  42724. Date: 29 Oct 1994 14:56:49 GMT
  42725. Organization: Columbia University
  42726. Lines: 20
  42727. Message-Id: <38tnrh$qrn@apakabar.cc.columbia.edu>
  42728. References: <38lole$5fd@nuscc.nus.sg>
  42729. Nntp-Posting-Host: fdc.cc.columbia.edu
  42730. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  42731.  
  42732. In article <38lole$5fd@nuscc.nus.sg> ongsheau@iscs.nus.sg (Ong Sheau Ping)  
  42733. writes:
  42734. > I've just tried beta 6 and tried to download a binary file over the 
  42735. > modem. Although I can download the file, but there's quite a lot retries, 
  42736. > and it frequently uses more than 1 sliding-windows. Previously, with ver 
  42737. > 3.13, under the same conditions, all my file transfers were very stable, 
  42738. > usually with no retries, and I can have a cps of abt 1500, compared to 
  42739. > abt 1100 for beta 6.
  42740. We will need more information in order to help you with this.  It is not
  42741. a general problem at all -- thousands of other people are beta-testing
  42742. MS-DOS Kermit 3.14 without noticing any degradation in performance.
  42743.  
  42744. Please read the KERMIT.BWR file about interrupt and memory conflicts.  I
  42745. suspect a memory conflict caused by the temporary change in SET TERMINAL
  42746. EXPANDED-MEMORY default to ON.  It has since been changed back to OFF.
  42747. If you SET TERM EXPANDED OFF and the problem goes away, this means that
  42748. you have a faulty expanded memory configuration.
  42749.  
  42750. - Frank
  42751.  
  42752. From news@columbia.edu Sat Oct 29 14:59:46 1994
  42753. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20201
  42754.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 29 Oct 1994 10:59:49 -0400
  42755. Received: by apakabar.cc.columbia.edu id AA27624
  42756.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 29 Oct 1994 10:59:48 -0400
  42757. Path: news.columbia.edu!usenet
  42758. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  42759. Newsgroups: comp.protocols.kermit.misc
  42760. Subject: Re: Dialing problem in Beta 7
  42761. Date: 29 Oct 1994 14:59:46 GMT
  42762. Organization: Columbia University
  42763. Lines: 19
  42764. Message-Id: <38to12$qv5@apakabar.cc.columbia.edu>
  42765. References: <38lnvo$5c7@nuscc.nus.sg>
  42766. Nntp-Posting-Host: fdc.cc.columbia.edu
  42767. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  42768.  
  42769. In article <38lnvo$5c7@nuscc.nus.sg> ongsheau@iscs.nus.sg (Ong Sheau Ping)  
  42770. writes:
  42771. > The Dial macro seems to be faulty. It always gives me 'Dialing script not 
  42772. > found'.
  42773. > Also, something seems to be wrong with user defined variables.
  42774. > When I do something like 'define test \m(_myvar).txt', the '.txt' after the 
  42775. > user variable will not be included in the variable test.
  42776. I think you are suffering from the time difference between New York and
  42777. Singapore.  These problems should all be fixed in Beta-9.
  42778.  
  42779. When reporting problems:
  42780.  
  42781.  (a) it is better to send your reports directly by email to
  42782.      kermit@columbia.edu, to avoid the Usenet news time delay, and
  42783.  
  42784.  (b) please include the Beta edit number.
  42785.  
  42786. - Frank
  42787.  
  42788. From news@columbia.edu Sat Oct 29 17:35:45 1994
  42789. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02175
  42790.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 30 Oct 1994 05:05:51 -0500
  42791. Received: by apakabar.cc.columbia.edu id AA09310
  42792.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 30 Oct 1994 05:05:49 -0500
  42793. Path: news.columbia.edu!sol.ctr.columbia.edu!newsxfer.itd.umich.edu!gatech!concert!ais.com!bruce
  42794. From: bruce@ais.com
  42795. Newsgroups: comp.protocols.kermit.misc
  42796. Subject: Re: MS-DOS Kermit 3.14 Beta-9 Ready
  42797. Message-Id: <1994Oct29.213545.6930@ais.com>
  42798. Date: 29 Oct 94 21:35:45 EDT
  42799. References: <38p1g8$bd3@apakabar.cc.columbia.edu>
  42800. Organization: Applied Information Systems, Chapel Hill, NC
  42801. Lines: 126
  42802. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  42803.  
  42804. In article <38p1g8$bd3@apakabar.cc.columbia.edu>, fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  42805. > Maybe I'm ignorant, but *what* is the
  42806. > "standard" for ANSI terminal emulation?  I would guess that it should be
  42807. > the document (e.g. in the Microsoft DOS manual) that describes ANSI.SYS,
  42808. > the IBM PC console driver, affectionately named after the organization
  42809. > that published the X3.64 standard, which describes the form and function
  42810. > of a repertoire of escape sequences, and forms the basis for the
  42811. > VT100/VT200 and higher architectures, and which conforms to ISO Standards
  42812. > 2022 and 4873, but which certainly does not describe the ANSI console
  42813. > driver.
  42814.  
  42815. That style of escape sequences was known as "ANSI" long before Microsoft
  42816. used them in the ANSI.SYS driver.  I remember several terminals from the
  42817. late 70's/early 80's that did not claim full VT100 compatibility but which
  42818. did claim to be ANSI terminals.  The main distinguishing characteristics
  42819. of the new crop of `PC ANSI' terminals seem to be omitting some of the DEC
  42820. specific features and adding sequences for color.  Both ANSI.SYS and the
  42821. DECterms on DEC workstations support the color sequences (although the
  42822. DEC VT340 color graphics terminals do NOT - color is supported mainly
  42823. through the graphics commands).
  42824.  
  42825. > Nor does the ANSI.SYS documentation include many functions that are
  42826. > commonly used by BBSs.
  42827.  
  42828. The ANSI.SYS driver doesn't include many sequences that are allowed by
  42829. essentially every other `ANSI' terminal.  For example, the clear-screen
  42830. sequence in ANSI.SYS is defined to be ESC [ 2 J, which clears the entire
  42831. screen; but essentially every ANSI terminal other than ANSI.SYS allows
  42832. arguments other than 2 (0 or omitted clears from cursor to end of screen
  42833. and 1 clears from cursor to beginning of screen).  I don't think ANSI.SYS
  42834. is very representative of anything other than itself.
  42835.  
  42836. > For example: Two betas ago somebody complained
  42837. > that Kermit did not "correctly implement" the "ANSI" screen-clearing
  42838. > "standard".  What was it?  Just a plain, bare Ctrl-L.  To my knowledge, no
  42839. > CRT terminal in the world uses this for screen clearing (although hardcopy
  42840. > printers use it for page feed).  Not even the ANSI.SYS console driver
  42841. > clears the screen when given a Ctrl-L; it just prints a little "female"
  42842. > sign (but of course, we accommated and now Kermit follows the "ANSI
  42843. > standard for screen clearing).
  42844.  
  42845. There actually were a couple of terminals that would clear the screen on
  42846. a bare CTRL-L;  I think one of the early ADM terminals (not the popular
  42847. ADM-3 but an earlier one) might have, and I know that the ACT-4 did.  I
  42848. think one or another of the old Tektronix terminals or terminals that
  42849. emulated them would also allow a CTRL-L to clear the screen in addition to
  42850. the more normal ESC CTRL-L sequence that was the recommended way to clear
  42851. the screen.  (I know that wasn't universal for Tektronix-like terminals,
  42852. so very little software used it).  It's been a long time since I've dealt
  42853. with that vintage of terminals, but I might be able to dig up some old 
  42854. documentation on them.
  42855.  
  42856. I'm unaware of any `ANSI' terminals that clear the screen on a CTRL-L, but
  42857. there might be one.  It's certainly not part of the standard, even a de
  42858. facto one.
  42859.  
  42860. > [Good description of the form of an ANSI escape sequence deleted]
  42861. >
  42862. > Now along comes "ANSI music".  What is it?  It is "beeper" music encoded
  42863. > like a PC BASIC "PLAY" command.  It comes right after the ESC [, and can
  42864. > start with any character at all.  Example:
  42865. >  ESC [ MFT120O3 G8.A32F32G4.O4C8O3A8F8D8F8O4C8O3B8O4C2 ...
  42866. > and is terminated by a Ctrl-N.  What is wrong with this idea?
  42867. >
  42868. > [... Analysis of problems with this scheme deleted...]
  42869.  
  42870. How could ANY reasonable terminal emulator interpret this syntax as
  42871. described?  Since ANSI terminals are in general at the end of a wire
  42872. with characters arriving at indeterminate intervals (unlike block mode
  42873. terminals where you usually have definite start- and end-of-packet markers
  42874. and so can know exactly what the entire sequence being sent is, so that
  42875. you can design parsers for languages where the interpretation of a token
  42876. can have a more complex dependency on later tokens in the stream), I don't
  42877. see how this could be expected to work in the general case.  The only way I
  42878. can see to implement this type of functionality reliably is on a single
  42879. system (say as an ANSI.SYS replacement) and to require that the entire
  42880. music sequence be sent in a single write command to the OS.
  42881.  
  42882. The amazing thing is that current practice in ANSI terminal sequences
  42883. already provides a way around this.  There are four sequences that allow
  42884. encapsulating sequences to the terminal that might not follow ANSI syntax:
  42885.  
  42886.     ESC P    Begin Device commands
  42887.     ESC ^    Begin Privacy commands
  42888.     ESC ]    Begin OS commands
  42889.     ESC _    Begin Application commands
  42890.  
  42891. All are terminated by an ESC \.  (All of these can be replaced by the
  42892. appropriate C1 control character by adding 0x40 to the character following
  42893. the ESC character and omitting the ESC).  Within the string bounded by
  42894. these sequences, you can put anything you want that your terminal
  42895. emulator can parse.  Terminals that don't know how to interpret the
  42896. sequences will just ignore them.  Why design a kludge such as described
  42897. above where you must have to make guesses about how many characters will 
  42898. arrive in how much time in order to parse the string, when there is already
  42899. a way to do what the designer must have wanted?
  42900.  
  42901. This is the sort of thing you might expect when someone who is not
  42902. qualified to design such a protocol attempts to do so.
  42903.  
  42904. > You might ask, "why so hard on ANSI music?  It's cute!"  Maybe so, but
  42905. > then it should have been designed conform to the ANSI standard.  The
  42906. > problem with the current definition is not just one of purity.  It is that
  42907. > a terminal or emulator CAN NOT TELL THE DIFFERENCE between a valid escape
  42908. > sequence and an ANSI music sequence that contains a valid ANSI final
  42909. > character.
  42910. > So... the final Kermit change noted above simply makes Kermit, when in
  42911. > ANSI mode, ignore Ctrl-N (and its counterpart, Ctrl-O).  So if you log in
  42912. > to a BBS that sends ANSI music, you are likely to see strings of letters
  42913. > and numbers on your screen when music is played, but at least from that
  42914. > point on you will no longer see total gibberish!
  42915.  
  42916. If you're going to support multiple character sets in ANSI mode (as opposed
  42917. to VT100 mode), then you can't ignore CTRL-N and CTRL-O.  Personally I
  42918. would see this as a greater loss than producing garbage when a broken
  42919. program writes junk to the terminal, however `cute' the intended result.
  42920. If it's really becoming popular somewhere I can see the motivation however;
  42921. but I agree there's no reasonable way to parse it in the typical terminal
  42922. emulator environment.
  42923.  
  42924. Is there ANY terminal emulator out there that supports this abomination?
  42925.  
  42926. Bruce C. Wright
  42927.  
  42928. From news@columbia.edu Sun Oct 30 17:23:04 1994
  42929. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15015
  42930.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 30 Oct 1994 12:23:06 -0500
  42931. Received: by apakabar.cc.columbia.edu id AA09725
  42932.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 30 Oct 1994 12:23:05 -0500
  42933. Path: news.columbia.edu!usenet
  42934. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  42935. Newsgroups: comp.protocols.kermit.misc
  42936. Subject: Re: MS-DOS Kermit 3.14 Beta-9 Ready
  42937. Date: 30 Oct 1994 17:23:04 GMT
  42938. Organization: Columbia University
  42939. Lines: 45
  42940. Message-Id: <390kpo$9fr@apakabar.cc.columbia.edu>
  42941. References: <1994Oct29.213545.6930@ais.com>
  42942. Nntp-Posting-Host: fdc.cc.columbia.edu
  42943. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  42944.  
  42945. In article <1994Oct29.213545.6930@ais.com> bruce@ais.com writes:
  42946. > If you're going to support multiple character sets in ANSI mode (as opposed
  42947. > to VT100 mode), then you can't ignore CTRL-N and CTRL-O.  Personally I
  42948. > would see this as a greater loss than producing garbage when a broken
  42949. > program writes junk to the terminal, however `cute' the intended result.
  42950. > If it's really becoming popular somewhere I can see the motivation however;
  42951. > but I agree there's no reasonable way to parse it in the typical terminal
  42952. > emulator environment.
  42953. > Is there ANY terminal emulator out there that supports this abomination?
  42954. >
  42955. I presume there must be, since the music string in my message was captured
  42956. from a BBS.
  42957.  
  42958. Maybe I wasn't clear enough about the reason we have to ignore Ctrl-N and
  42959. Ctrl-O in ANSI emulation.  It has nothing to do with how the music string
  42960. is displayed.  Who cares, right?
  42961.  
  42962. It's that the Ctrl-N, if interpreted as it should be, will cause the terminal
  42963. to treat all subsequent GL characters as if they were GR characters, until
  42964. a Ctrl-O is received.  Thus, after the emulator receives its first ANSI
  42965. music string, there is no longer anything legible on the screen.  Messages
  42966. and prompts come out as pure gibberish (random accented letters, box and
  42967. line drawing characters, etc).
  42968.  
  42969. Yes, of course ANSI music could have been implemented as "Application
  42970. Program Command" or any of the several other string-bearing escape sequences.
  42971. In fact, that's what I expected it was when I first heard of it -- a well-
  42972. defined, delimited string conforming to ANSI (i.e. American National 
  42973. Standards Institute, not "ANSI" in the BBS sense) and ISO rules, containing
  42974. a series of encoded pitch and duration indications, probably as numbers
  42975. separated by semicolons.  How naive of me!
  42976.  
  42977. Perhaps as a result of this discussion, somebody would like to redesign
  42978. so-called "ANSI" music to conform to true ANSI/ISO rules AND not be a
  42979. totally PC-ROM-BASIC-dependent PLAY command to boot.  Then it might actually
  42980. gain some acceptance.  Should someone decide to do this, it is extremely
  42981. important that the music string begin with some kind of unique token that
  42982. identifies itself as, indeed, a music string, and possibly also a format or
  42983. version indicator, allowing for future expansion or modifications.  In
  42984. other words, don't just stick the music string into an APC, OSC, PM, or
  42985. similar command, because these escape sequences ARE ALREADY USED for
  42986. other purposes.
  42987.  
  42988. - Frank
  42989.  
  42990. From news@columbia.edu Sun Oct 30 18:59:52 1994
  42991. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18994
  42992.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 30 Oct 1994 14:01:13 -0500
  42993. Received: by apakabar.cc.columbia.edu id AA15512
  42994.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 30 Oct 1994 14:01:06 -0500
  42995. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!bloom-beacon.mit.edu!senator-bedfellow.mit.edu!athena.mit.edu!raoul
  42996. From: raoul@athena.mit.edu (Nico Garcia)
  42997. Newsgroups: comp.protocols.kermit.misc
  42998. Subject: Re: SGI Indy & C-Kermit & RTS/CTS
  42999. Date: 30 Oct 1994 18:59:52 GMT
  43000. Organization: Massachusetts Institute of Technology
  43001. Lines: 11
  43002. Message-Id: <RAOUL.94Oct30135959@cacciatore.mit.edu>
  43003. References: <1994Oct28.162933.26982@oxvaxd> <38tnlp$qog@apakabar.cc.columbia.edu>
  43004. Nntp-Posting-Host: cacciatore.mit.edu
  43005. In-Reply-To: fdc@fdc.cc.columbia.edu's message of 29 Oct 1994 14:53:45 GMT
  43006. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  43007.  
  43008.  
  43009. Configuring the modem for hardware flow control is done properly in the
  43010. "dial init-string" option, which I use anyway to always set the modem
  43011. correctly no matter who used it last. Ergo, the OS does not need to know
  43012. how to configure it, just your .kermrc file.
  43013.  
  43014. I installed Kermit 5A(189) on an Indigo with 4.0.5f, and it worked fine
  43015. with only software flow control.
  43016.  
  43017.                 Nico Garcia
  43018.                 raoul@athena.mit.edu
  43019.  
  43020. From news@columbia.edu Sun Oct 30 19:45:09 1994
  43021. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20584
  43022.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 30 Oct 1994 14:45:13 -0500
  43023. Received: by apakabar.cc.columbia.edu id AA18255
  43024.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 30 Oct 1994 14:45:12 -0500
  43025. Path: news.columbia.edu!usenet
  43026. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  43027. Newsgroups: comp.protocols.kermit.misc
  43028. Subject: MS-DOS Kermit 3.14 Beta-10 Ready
  43029. Date: 30 Oct 1994 19:45:09 GMT
  43030. Organization: Columbia University
  43031. Lines: 42
  43032. Message-Id: <390t45$hqa@apakabar.cc.columbia.edu>
  43033. Nntp-Posting-Host: fdc.cc.columbia.edu
  43034. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  43035.  
  43036. MS-DOS Kermit 3.14 Beta-10 is available for anonymous ftp from
  43037. kermit.columbia.edu as of 2:30pm EST, Sunday, October 30:
  43038.  
  43039.   kermit/test/bin/mstibm.zip  - Binary ZIP file
  43040.   kermit/test/text/mstibm.uue - Uuencoded ZIP file
  43041.   kermit/test/text/mstibm.boo - BOO-encoded ZIP file
  43042.  
  43043. The UUE and BOO files are also available on BITNET from KERMSRV at CUVMA.
  43044.  
  43045. Changes and fixes include:
  43046.  
  43047.  . Fossil-driver hangup bug fix, and add explict raise and lower of DTR
  43048.    signal to perform a connection hangup when using a fossil driver.
  43049.  
  43050.  . GETC command now returns backslash numeric codes for keys which yield
  43051.    control codes, DEL, space, and the four delimiters (, ), {, }.
  43052.    \fcode(arg) now accepts backslash numeric codes as representing a
  43053.    character. Thus \fcode(\65) and \fcode(A) both return two bytes 65.
  43054.  
  43055.  . Internal change to ODI handler.  Physical address length of Arcnet
  43056.    boards changed from 1 byte (which it really is) to 6 bytes to satisfy
  43057.    ODI.
  43058.  
  43059.  . New command SET MODEM <text> is exactly like DEFINE _MODEM <text>, but
  43060.    more intuitive, and also familiar to C-Kermit users.
  43061.  
  43062.  . Correct a bug in handling \$(NAME) environment-variable handling.
  43063.  
  43064.  . SET CARRIER ON is now enforced in addition places during packet mode,
  43065.    to ensure that carrier loss is acted upon immediately.
  43066.  
  43067.  . Binary-mode file transfers were broken if the transfer character-set
  43068.    was set to Japanese.  Now fixed.
  43069.  
  43070. Thanks, as always, to Joe Doupnik for all of this work, and to Hirofumi
  43071. Fujii for the Kanji item.  Note: Kanji terminal emulation is not yet
  43072. operational, and is still being worked on.  And thanks to all the beta
  43073. testers for their good reports!
  43074.  
  43075. Please continue to send reports by e-mail to kermit@columbia.edu.
  43076.  
  43077. - Frank
  43078.  
  43079. From news@columbia.edu Sun Oct 30 20:26:19 1994
  43080. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22584
  43081.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 30 Oct 1994 15:26:22 -0500
  43082. Received: by apakabar.cc.columbia.edu id AA20717
  43083.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 30 Oct 1994 15:26:21 -0500
  43084. Path: news.columbia.edu!usenet
  43085. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  43086. Newsgroups: comp.protocols.kermit.misc
  43087. Subject: Prime Kermit Binaries Now Available
  43088. Date: 30 Oct 1994 20:26:19 GMT
  43089. Organization: Columbia University
  43090. Lines: 11
  43091. Message-Id: <390vhb$k79@apakabar.cc.columbia.edu>
  43092. Nntp-Posting-Host: fdc.cc.columbia.edu
  43093. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  43094.  
  43095. Binaries for Prime Kermit versions 8.12, 8.14, and 8.15 are now available
  43096. via anonymous ftp to kermit.columbia.edu, directory kermit/bin, binary
  43097. mode, files:
  43098.  
  43099.   prime812.run
  43100.   prime814.run
  43101.   prime815.run
  43102.  
  43103. Thanks to Don Prezioso and Haakan Sjoegren for sending them in!
  43104.  
  43105. - Frank
  43106.  
  43107. From news@columbia.edu Sun Oct 30 20:27:27 1994
  43108. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23237
  43109.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 30 Oct 1994 15:38:34 -0500
  43110. Received: by apakabar.cc.columbia.edu id AA21391
  43111.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 30 Oct 1994 15:38:34 -0500
  43112. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!agate!barrnet.net!rahul.net!a2i!dold.a2i!dold
  43113. From: Clarence Dold <dold@rahul.net>
  43114. Newsgroups: comp.protocols.kermit.misc
  43115. Subject: Re: MS-DOS Kermit 3.14 Beta-9 Ready
  43116. Date: 30 Oct 1994 20:27:27 GMT
  43117. Organization: a2i network
  43118. Lines: 14
  43119. Message-Id: <390vjf$ia2@hustle.rahul.net>
  43120. References: <38p1g8$bd3@apakabar.cc.columbia.edu>
  43121. Nntp-Posting-Host: jive.rahul.net
  43122. Nntp-Posting-User: dold
  43123. X-Newsreader: TIN [version 1.2 PL2]
  43124. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  43125.  
  43126. Frank da Cruz (fdc@fdc.cc.columbia.edu) wrote:
  43127.  
  43128. :  . ANSI emulator innoculated against "ANSI music".
  43129.  
  43130. : About so-called "ANSI" so-called "music"...  It's bad enough that we must
  43131.  
  43132. I wouldn't invalidate the ^N sequence just to make one BBS happy.
  43133. Does this BBS require a particular DEVICE=music.ansi.sys?
  43134. What PC emulator can interpret it (Procomm+Music)?
  43135.  
  43136. -- 
  43137. ---
  43138. Clarence A Dold - dold@rahul.net
  43139.                 - Pope Valley & Napa CA.
  43140.  
  43141. From news@columbia.edu Sun Oct 30 20:46:08 1994
  43142. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23532
  43143.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 30 Oct 1994 15:48:55 -0500
  43144. Received: by apakabar.cc.columbia.edu id AA22247
  43145.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 30 Oct 1994 15:48:53 -0500
  43146. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!agate!news.Stanford.EDU!bloom-beacon.mit.edu!senator-bedfellow.mit.edu!athena.mit.edu!raoul
  43147. From: raoul@athena.mit.edu (Nico Garcia)
  43148. Newsgroups: comp.protocols.kermit.misc
  43149. Subject: Re: SGI Indy & C-Kermit & RTS/CTS
  43150. Date: 30 Oct 1994 20:46:08 GMT
  43151. Organization: Massachusetts Institute of Technology
  43152. Lines: 12
  43153. Message-Id: <RAOUL.94Oct30154615@cacciatore.mit.edu>
  43154. References: <1994Oct28.162933.26982@oxvaxd> <38tnlp$qog@apakabar.cc.columbia.edu>
  43155.     <RAOUL.94Oct30135959@cacciatore.mit.edu>
  43156. Nntp-Posting-Host: cacciatore.mit.edu
  43157. In-Reply-To: raoul@athena.mit.edu's message of 30 Oct 1994 18:59:52 GMT
  43158. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  43159.  
  43160. In article <RAOUL.94Oct30135959@cacciatore.mit.edu> raoul@athena.mit.edu (Nico Garcia) writes:
  43161.  
  43162.    Configuring the modem for hardware flow control is done properly in the
  43163.    "dial init-string" option, which I use anyway to always set the modem
  43164.    correctly no matter who used it last. Ergo, the OS does not need to know
  43165.    how to configure it, just your .kermrc file.
  43166.  
  43167. Minor correction: this is for if your software and /dev/ entry know to handle
  43168. hardware flow control, as well.
  43169.  
  43170.                 Nico Garcia
  43171.                 raoul@athena.mit.edu
  43172.  
  43173. From news@columbia.edu Fri Oct 28 13:26:11 1994
  43174. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04169
  43175.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 30 Oct 1994 19:15:50 -0500
  43176. Received: by apakabar.cc.columbia.edu id AA06465
  43177.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 30 Oct 1994 19:15:49 -0500
  43178. Path: news.columbia.edu!sol.ctr.columbia.edu!newsxfer.itd.umich.edu!europa.eng.gtefsd.com!news.mathworks.com!usenet.eel.ufl.edu!piaget.moe.ac.sg!raffles.technet.sg!solomon.technet.sg!symtech
  43179. From: symtech@solomon.technet.sg (Symbolic_Tech.)
  43180. Newsgroups: comp.protocols.kermit.misc
  43181. Subject: modem connection
  43182. Date: 28 Oct 1994 13:26:11 GMT
  43183. Organization: Technet, Singapore
  43184. Lines: 3
  43185. Message-Id: <38qu5j$96i@raffles.technet.sg>
  43186. Nntp-Posting-Host: solomon.technet.sg
  43187. X-Newsreader: TIN [version 1.2 PL0]
  43188. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  43189.  
  43190. I am having a CASE 9600 modem hook up on a Personal IRIS running IRIX 5.2. I am using uucp for dialing out to Internet. However I kept having problems when I want to dial in from outside. I followed all the steps in the system administration stated in the IRIX documentation, but it still failed. Could anyone out there give me a helping hand? Everytime when I dial in from outside, I got the message connected, but the login prompt never appeared. 
  43191.  
  43192. Thanks in advance./
  43193.  
  43194. From news@columbia.edu Sun Oct 30 23:44:19 1994
  43195. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07991
  43196.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 30 Oct 1994 20:41:05 -0500
  43197. Received: by apakabar.cc.columbia.edu id AA11922
  43198.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 30 Oct 1994 20:41:03 -0500
  43199. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news.sprintlink.net!EU.net!uunet!psinntp!rebecca!albnyvms.bitnet!BACIEWJ
  43200. From: baciewj@albnyvms.bitnet
  43201. Newsgroups: comp.protocols.kermit.misc
  43202. Subject: vax/mac
  43203. Date: 30 Oct 1994 23:44:19 GMT
  43204. Organization: University of Albany, SUNY
  43205. Lines: 16
  43206. Message-Id: <391b4j$o3h@rebecca.albany.edu>
  43207. Reply-To: baciewj@albnyvms.bitnet
  43208. Nntp-Posting-Host: uacsc1.albany.edu
  43209. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  43210.  
  43211. I have two problems:
  43212. I have set parity,handshake,flow and duplex at both ends as follows:
  43213. parity space
  43214. duplex full
  43215. flow xon/xoff
  43216. handshake none
  43217. but I cannot upload! Downloads are great! but I get massive retries until
  43218. it dies. I have 0.991(190) on the mac and they are running 5A(188) on
  43219. the vax.Any thoughts?
  43220.  
  43221. Also what doe one name the init file on the mac? Ckermit.ini? and does
  43222. mackermit pick it up like mskermit does?
  43223.  
  43224. thanks
  43225. joe baciewicz
  43226. baciewj@cnsvax.albany.edu
  43227.  
  43228. From news@columbia.edu Sun Oct 30 13:26:57 1994
  43229. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28106
  43230.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 31 Oct 1994 05:13:13 -0500
  43231. Received: by apakabar.cc.columbia.edu id AA07401
  43232.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 31 Oct 1994 05:13:11 -0500
  43233. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!agate!dog.ee.lbl.gov!news.cs.utah.edu!cc.usu.edu!jrd
  43234. From: jrd@cc.usu.edu (Joe Doupnik)
  43235. Newsgroups: comp.protocols.kermit.misc
  43236. Subject: Re: Using Kermit As A Passive Data Collector
  43237. Message-Id: <1994Oct30.192657.31666@cc.usu.edu>
  43238. Date: 30 Oct 94 19:26:57 MDT
  43239. References: <38qtp6$c9v@access4.digex.net>
  43240. Organization: Utah State University
  43241. Lines: 17
  43242. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  43243.  
  43244. In article <38qtp6$c9v@access4.digex.net>, keithw@access4.digex.net (Keith Willett) writes:
  43245. > I am interested in setting up Kermit on a Unix system which will monitor
  43246. > the serial port for transmissions and write the information to a file.
  43247. > The serial port is connected via null modem cable to a PBX which dumps
  43248. > statistical data on a periodic basis.  The switch sends data to the
  43249. > serial port as it would to a printer.  I can't signon to the switch or
  43250. > otherwise communicate to it, I can only capture whatever it sends.  I
  43251. > am most appreciative for any tips anyone has to offer and will forward
  43252. > the results to anyone interested.  Thanks.
  43253. > -- 
  43254. > ---Keith Willett
  43255. ---------
  43256.     Easy, and in the manual. Use Connect mode (terminal emulation),
  43257. but before starting it say LOG SESSION filename.
  43258.     Joe D.
  43259.  
  43260. From news@columbia.edu Sat Oct 29 08:42:23 1994
  43261. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28773
  43262.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 31 Oct 1994 05:39:35 -0500
  43263. Received: by apakabar.cc.columbia.edu id AA08386
  43264.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 31 Oct 1994 05:39:33 -0500
  43265. Path: news.columbia.edu!sol.ctr.columbia.edu!newsxfer.itd.umich.edu!europa.eng.gtefsd.com!news.mathworks.com!usenet.eel.ufl.edu!piaget.moe.ac.sg!raffles.technet.sg!nuscc.nus.sg!gohkeech
  43266. From: gohkeech@iscs.nus.sg (Goh Kee Chye Lawrence)
  43267. Newsgroups: comp.protocols.kermit.misc
  43268. Subject: eval `resize` in macro?
  43269. Date: 29 Oct 1994 08:42:23 GMT
  43270. Organization: DISCS, NUS
  43271. Lines: 11
  43272. Message-Id: <38t1tf$2iq@nuscc.nus.sg>
  43273. Nntp-Posting-Host: gohkeech@sununx.iscs.nus.sg
  43274. X-Newsreader: TIN [version 1.2 PL2]
  43275. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  43276.  
  43277.     I'm having problem performing an eval `resize` from within a macro.
  43278.     The problem seems to be that Kermit doesn't respond to VT100
  43279.     queries while a macro is runnning.
  43280.     Are there ways around this or will there be changes to how macros
  43281.     are run to resolve this? TIA.
  43282.  
  43283. --
  43284. (_orenzo . Lawrence Goh <gohkeech@iscs.nus.sg>
  43285.  I C _|_ X C     Department of Information Systems & Computer Science
  43286.  N I  |  K A                National University of Singapore
  43287. Et Iesum, benedictum fructum ventris tui, nobis post hoc exilium, ostende.
  43288.  
  43289. From news@columbia.edu Sun Oct 30 18:27:15 1994
  43290. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29496
  43291.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 31 Oct 1994 06:07:29 -0500
  43292. Received: by apakabar.cc.columbia.edu id AA09281
  43293.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 31 Oct 1994 06:07:27 -0500
  43294. Path: news.columbia.edu!panix!news.mathworks.com!news.duke.edu!concert!ais.com!bruce
  43295. From: bruce@ais.com
  43296. Newsgroups: comp.protocols.kermit.misc
  43297. Subject: Re: MS-DOS Kermit 3.14 Beta-9 Ready
  43298. Message-Id: <1994Oct30.222715.6932@ais.com>
  43299. Date: 30 Oct 94 22:27:15 EDT
  43300. References: <1994Oct29.213545.6930@ais.com> <390kpo$9fr@apakabar.cc.columbia.edu>
  43301. Organization: Applied Information Systems, Chapel Hill, NC
  43302. Lines: 58
  43303. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  43304.  
  43305. In article <390kpo$9fr@apakabar.cc.columbia.edu>, fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  43306. > In article <1994Oct29.213545.6930@ais.com> bruce@ais.com writes:
  43307. >> If you're going to support multiple character sets in ANSI mode (as opposed
  43308. >> to VT100 mode), then you can't ignore CTRL-N and CTRL-O.  Personally I
  43309. >> would see this as a greater loss than producing garbage when a broken
  43310. >> program writes junk to the terminal, however `cute' the intended result.
  43311. >> If it's really becoming popular somewhere I can see the motivation however;
  43312. >> but I agree there's no reasonable way to parse it in the typical terminal
  43313. >> emulator environment.
  43314. >> 
  43315. >> Is there ANY terminal emulator out there that supports this abomination?
  43316. >>
  43317. > I presume there must be, since the music string in my message was captured
  43318. > from a BBS.
  43319. > Maybe I wasn't clear enough about the reason we have to ignore Ctrl-N and
  43320. > Ctrl-O in ANSI emulation.  It has nothing to do with how the music string
  43321. > is displayed.  Who cares, right?
  43322. > It's that the Ctrl-N, if interpreted as it should be, will cause the terminal
  43323. > to treat all subsequent GL characters as if they were GR characters, until
  43324. > a Ctrl-O is received.  Thus, after the emulator receives its first ANSI
  43325. > music string, there is no longer anything legible on the screen.  Messages
  43326. > and prompts come out as pure gibberish (random accented letters, box and
  43327. > line drawing characters, etc).
  43328.  
  43329. Frank,
  43330.  
  43331. I quite saw the point, although it's possible that other people might
  43332. not have.  But of course if you ignore CTRL-N and CTRL-O, you have
  43333. eliminated the most common way of selecting alternate character sets.
  43334. We both know there are other ways for the host to request alternate
  43335. character sets, but most host software uses the SI/SO (CTRL-N/CTRL-O)
  43336. technique;  it's what's available on the largest number of terminals.
  43337.  
  43338. > Perhaps as a result of this discussion, somebody would like to redesign
  43339. > so-called "ANSI" music to conform to true ANSI/ISO rules AND not be a
  43340. > totally PC-ROM-BASIC-dependent PLAY command to boot.  Then it might actually
  43341. > gain some acceptance.  Should someone decide to do this, it is extremely
  43342. > important that the music string begin with some kind of unique token that
  43343. > identifies itself as, indeed, a music string, and possibly also a format or
  43344. > version indicator, allowing for future expansion or modifications.  In
  43345. > other words, don't just stick the music string into an APC, OSC, PM, or
  43346. > similar command, because these escape sequences ARE ALREADY USED for
  43347. > other purposes.
  43348.  
  43349. These are reasonable suggestions.  I don't know if it would be more
  43350. reasonable to make a music escape sequence look like another ANSI escape
  43351. sequence with `;'-delimited parameters and an operation at the end or
  43352. whether it should be in an APC or DC or other string, but if it's the latter
  43353. it should be in a format that would not be likely to be misinterpreted as,
  43354. for example, a Sixel or ReGIS string or other command string intended for
  43355. specific terminal types.
  43356.  
  43357. I'm sure I could do it if I could find the time but I don't seem to have
  43358. a lot lately.  Any other takers?
  43359.  
  43360. Bruce C. Wright
  43361.  
  43362. From news@columbia.edu Sun Oct 30 23:00:52 1994
  43363. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00885
  43364.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 31 Oct 1994 06:37:37 -0500
  43365. Received: by apakabar.cc.columbia.edu id AA10471
  43366.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 31 Oct 1994 06:37:36 -0500
  43367. Newsgroups: comp.protocols.kermit.misc
  43368. Path: news.columbia.edu!sol.ctr.columbia.edu!newsxfer.itd.umich.edu!europa.eng.gtefsd.com!howland.reston.ans.net!news.sprintlink.net!EU.net!sun4nl!echelon!kees
  43369. From: kees@echelon.nl (Kees Hendrikse)
  43370. Subject: ANSI (Was: MS-DOS Kermit 3.14 Beta-9 Ready)
  43371. Organization: Echelon Consultancy, Enschede, The Netherlands
  43372. Date: Sun, 30 Oct 1994 23:00:52 GMT
  43373. Message-Id: <CyID9G.HFK@echelon.nl>
  43374. References: <38p1g8$bd3@apakabar.cc.columbia.edu>
  43375. Lines: 18
  43376. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  43377.  
  43378. In <38p1g8$bd3@apakabar.cc.columbia.edu> Frank da Cruz writes:
  43379.  
  43380. > OK, fine -- the ANSI standard is ANSI.SYS, plus selected VT100 items, plus
  43381. > creative interpretation of some control characters.  But if one is going
  43382. > to claim "ANSI conformance", then one should at least pay attention to the
  43383. > *form* of an ANSI escape sequence (...)
  43384.  
  43385. Now that you are working on implementing the BBS-ANSI-non-standard as
  43386. encompassing as possible (granted, without the music parts), would it
  43387. be very hard to also implements the 'SCO console' emulation, a.k.a.
  43388. SCO-ANSI? Of course, SCO-ANSI differs from BBS-ANSI, but at least there
  43389. is a real definition of it...
  43390.  
  43391. -- 
  43392. Kees Hendrikse                                | email:   kees@echelon.nl
  43393.                                               |
  43394. ECHELON consultancy and software development  | phone: +31 (0)53 836 585
  43395. PO Box 545, 7500AM Enschede, The Netherlands  | fax:   +31 (0)53 337 415
  43396.  
  43397. From news@columbia.edu Mon Oct 31 14:16:49 1994
  43398. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07291
  43399.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 31 Oct 1994 09:17:00 -0500
  43400. Received: by apakabar.cc.columbia.edu id AA18433
  43401.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 31 Oct 1994 09:16:59 -0500
  43402. Path: news.columbia.edu!usenet
  43403. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  43404. Newsgroups: comp.protocols.kermit.misc
  43405. Subject: Re: ANSI (Was: MS-DOS Kermit 3.14 Beta-9 Ready)
  43406. Date: 31 Oct 1994 14:16:49 GMT
  43407. Organization: Columbia University
  43408. Lines: 19
  43409. Message-Id: <392u8h$hvr@apakabar.cc.columbia.edu>
  43410. References: <CyID9G.HFK@echelon.nl>
  43411. Nntp-Posting-Host: fdc.cc.columbia.edu
  43412. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  43413.  
  43414. In article <CyID9G.HFK@echelon.nl> kees@echelon.nl (Kees Hendrikse) writes:
  43415. > Now that you are working on implementing the BBS-ANSI-non-standard as
  43416. > encompassing as possible (granted, without the music parts), would it
  43417. > be very hard to also implements the 'SCO console' emulation, a.k.a.
  43418. > SCO-ANSI? Of course, SCO-ANSI differs from BBS-ANSI, but at least there
  43419. > is a real definition of it...
  43420. We don't have any plans for this, but if there were a significant demand
  43421. (so far there has not been), we might consider it.  Many other items have
  43422. higher priority.
  43423.  
  43424. I believe this is basically the current ANSI screen handling, but with the
  43425. keyboard handled differently -- instead of transmitting the characters
  43426. associated with the keys, the scan codes are transmitted.
  43427.  
  43428. To the best of my knowledge, this is used only for communicating with the
  43429. SCO console driver.  True?
  43430.  
  43431. - Frank
  43432.  
  43433. From news@columbia.edu Mon Oct 31 14:19:34 1994
  43434. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07394
  43435.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 31 Oct 1994 09:19:41 -0500
  43436. Received: by apakabar.cc.columbia.edu id AA18742
  43437.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 31 Oct 1994 09:19:39 -0500
  43438. Path: news.columbia.edu!usenet
  43439. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  43440. Newsgroups: comp.protocols.kermit.misc
  43441. Subject: Re: eval `resize` in macro?
  43442. Date: 31 Oct 1994 14:19:34 GMT
  43443. Organization: Columbia University
  43444. Lines: 22
  43445. Message-Id: <392udm$i9c@apakabar.cc.columbia.edu>
  43446. References: <38t1tf$2iq@nuscc.nus.sg>
  43447. Nntp-Posting-Host: fdc.cc.columbia.edu
  43448. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  43449.  
  43450. In article <38t1tf$2iq@nuscc.nus.sg> gohkeech@iscs.nus.sg (Goh Kee Chye  
  43451. Lawrence) writes:
  43452. >     I'm having problem performing an eval `resize` from within a macro.
  43453. >     The problem seems to be that Kermit doesn't respond to VT100
  43454. >     queries while a macro is runnning.
  43455. >     Are there ways around this or will there be changes to how macros
  43456. >     are run to resolve this? TIA.
  43457. This is indeed a Frequently Asked Question.
  43458.  
  43459. When the command parser is active, the terminal emulator is not active.
  43460.  
  43461. When the terminal emulator is active, the command parser is not active.
  43462.  
  43463. Thus, when writing script programs that log into VMS (which does a SET
  43464. TERMINAL/INQUIRE) or that must respond to "cursor position report" escape
  43465. sequences (such as sent by `eval resize`), the script program itself must
  43466. look for these escape sequences and respond accordingly.
  43467.  
  43468. See the KERMIT.BWR file for some examples.
  43469.  
  43470. - Frank
  43471.  
  43472. From news@columbia.edu Mon Oct 31 14:24:09 1994
  43473. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07699
  43474.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 31 Oct 1994 09:24:17 -0500
  43475. Received: by apakabar.cc.columbia.edu id AA19088
  43476.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 31 Oct 1994 09:24:16 -0500
  43477. Path: news.columbia.edu!usenet
  43478. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  43479. Newsgroups: comp.protocols.kermit.misc
  43480. Subject: Re: MS-DOS Kermit 3.14 Beta-9 Ready
  43481. Date: 31 Oct 1994 14:24:09 GMT
  43482. Organization: Columbia University
  43483. Lines: 22
  43484. Message-Id: <392um9$ik7@apakabar.cc.columbia.edu>
  43485. References: <1994Oct30.222715.6932@ais.com>
  43486. Nntp-Posting-Host: fdc.cc.columbia.edu
  43487. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  43488.  
  43489. In article <1994Oct30.222715.6932@ais.com> bruce@ais.com writes:
  43490. > I quite saw the point, although it's possible that other people might
  43491. > not have.  But of course if you ignore CTRL-N and CTRL-O, you have
  43492. > eliminated the most common way of selecting alternate character sets.
  43493. > We both know there are other ways for the host to request alternate
  43494. > character sets, but most host software uses the SI/SO (CTRL-N/CTRL-O)
  43495. > technique;  it's what's available on the largest number of terminals.
  43496. I know.  That is whay Ctrl-N/Ctrl-O processing is disabled ONLY for "ANSI"
  43497. terminal emulation -- not VT100, VT220, VT320, etc.
  43498.  
  43499. I am confident that BBSs are completely unconcerned with both 7-bit access
  43500. and with character sets.  The entire premise of the BBS world is that you
  43501. have a totally transparent 8-bit communications link, and there is only
  43502. one character set in the world: code page 437.
  43503.  
  43504. Can anybody prove me wrong?  Is there a BBS anywhere in the world that is
  43505. designed to allow 7-bit access, or that supports different character sets,
  43506. but still expects the "ANSI" terminal type?  I would like to think so, but
  43507. I am not hopeful.
  43508.  
  43509. - Frank
  43510.  
  43511. From news@columbia.edu Mon Oct 31 14:32:27 1994
  43512. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08205
  43513.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 31 Oct 1994 09:32:31 -0500
  43514. Received: by apakabar.cc.columbia.edu id AA19814
  43515.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 31 Oct 1994 09:32:30 -0500
  43516. Path: news.columbia.edu!usenet
  43517. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  43518. Newsgroups: comp.protocols.kermit.misc
  43519. Subject: Re: vax/mac
  43520. Date: 31 Oct 1994 14:32:27 GMT
  43521. Organization: Columbia University
  43522. Lines: 35
  43523. Message-Id: <392v5r$jb4@apakabar.cc.columbia.edu>
  43524. References: <391b4j$o3h@rebecca.albany.edu>
  43525. Nntp-Posting-Host: fdc.cc.columbia.edu
  43526. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  43527.  
  43528. In article <391b4j$o3h@rebecca.albany.edu> baciewj@albnyvms.bitnet writes:
  43529. > I have two problems:
  43530. > I have set parity,handshake,flow and duplex at both ends as follows:
  43531. > parity space
  43532. > duplex full
  43533. > flow xon/xoff
  43534. > handshake none
  43535. > but I cannot upload! Downloads are great! but I get massive retries until
  43536. > it dies. I have 0.991(190) on the mac and they are running 5A(188) on
  43537. > the vax.Any thoughts?
  43538. It could be any number of things, most likely a flow control problem.  We
  43539. have discussed this numerous times.  Make sure that the most effective
  43540. means of flow control is enabled at every point along the communication path.
  43541.  
  43542. Evidently you are using end-to-end Xon/Xoff (software) flow control, which
  43543. is often the best you can do when VMS is on the other end.  But if you are
  43544. entering VMS through a terminal server, you might do better with hardware
  43545. flow control (RTS/CTS) if your modem supports, and if the remote modem does
  43546. too, and so does the terminal server, AND it is enabled in all those places
  43547. and in Mac Kermit too.  Read ckmker.bwr for instructions.
  43548.  
  43549. Also, be sure to tell VMS to SET TERM /TTSYNC /HOSTSYNC.  Also, have the
  43550. VMS system manager read the CKVINS.DOC file, which includes instructions
  43551. regarding VMS SYSGEN parameters, buffer allocation, privileges and quotas,
  43552. etc.
  43553.  
  43554. > Also what doe one name the init file on the mac? Ckermit.ini? and does
  43555. > mackermit pick it up like mskermit does?
  43556. You should be able to Open the initialization file from Kermit and then
  43557. Save it, which will make it into a Kermit document.  After that, clicking
  43558. on it should start Kermit and have it execute the commands.
  43559.  
  43560. - Frank
  43561.  
  43562. From news@columbia.edu Mon Oct 31 16:18:05 1994
  43563. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22396
  43564.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 31 Oct 1994 12:55:11 -0500
  43565. Received: by apakabar.cc.columbia.edu id AA06644
  43566.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 31 Oct 1994 12:55:08 -0500
  43567. Path: news.columbia.edu!panix!news.mathworks.com!hookup!news.moneng.mei.com!howland.reston.ans.net!math.ohio-state.edu!caen!msuinfo!netnews.upenn.edu!netnews.CC.Lehigh.EDU!CS1.CC.Lehigh.EDU!cdl0
  43568. From: cdl0@CS1.CC.Lehigh.EDU (CONRAD DANIEL LLOYD-KNIGHT)
  43569. Newsgroups: comp.protocols.kermit.misc
  43570. Subject: Re: vax/mac
  43571. Date: 31 Oct 1994 16:18:05 GMT
  43572. Lines: 23
  43573. Message-Id: <3935bt$111o@fidoii.cc.lehigh.edu>
  43574. References: <391b4j$o3h@rebecca.albany.edu> <392v5r$jb4@apakabar.cc.columbia.edu>
  43575. Nntp-Posting-Host: cs1.cc.lehigh.edu
  43576. X-Newsreader: TIN [version 1.2 PL2]
  43577. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  43578.  
  43579. Frank da Cruz (fdc@fdc.cc.columbia.edu) wrote:
  43580.  
  43581. > > Also what doe one name the init file on the mac? Ckermit.ini? and does
  43582. > > mackermit pick it up like mskermit does?
  43583. > > 
  43584. > You should be able to Open the initialization file from Kermit and then
  43585. > Save it, which will make it into a Kermit document.  After that, clicking
  43586. > on it should start Kermit and have it execute the commands.
  43587.  
  43588. is there any way to have the terminal settings _and_ the initialization 
  43589. commands load at the same time? it seems you can start up mackermit by
  43590. clicking on either the commands or settings files, but then have to load
  43591. the other from in the program itself. is there perhaps a command that can be
  43592. included in the init file that will automatically load the settings?
  43593.  
  43594. B*B,
  43595. -Smoke.
  43596.  
  43597. -- bye!  :) -- pgp2 key available - just ask. or finger cdl0@cs1.cc.lehigh.edu
  43598.  
  43599.                 Do what thou wilt shall be the whole of the Law.
  43600.                       Love is the Law, Love under Will.
  43601.  
  43602.  
  43603. From news@columbia.edu Mon Oct 31 17:01:10 1994
  43604. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27148
  43605.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 31 Oct 1994 14:14:36 -0500
  43606. Received: by apakabar.cc.columbia.edu id AA13455
  43607.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 31 Oct 1994 14:14:32 -0500
  43608. Newsgroups: comp.protocols.kermit.misc
  43609. Path: news.columbia.edu!panix!news.mathworks.com!hookup!news.moneng.mei.com!howland.reston.ans.net!news.sprintlink.net!EU.net!sun4nl!echelon!kees
  43610. From: kees@echelon.nl (Kees Hendrikse)
  43611. Subject: Re: ANSI (Was: MS-DOS Kermit 3.14 Beta-9 Ready)
  43612. Organization: Echelon Consultancy, Enschede, The Netherlands
  43613. Distribution: world
  43614. Date: Mon, 31 Oct 1994 17:01:10 GMT
  43615. Message-Id: <CyJr9y.3CA@echelon.nl>
  43616. References: <CyID9G.HFK@echelon.nl> <392u8h$hvr@apakabar.cc.columbia.edu>
  43617. Lines: 28
  43618. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  43619.  
  43620. In <392u8h$hvr@apakabar.cc.columbia.edu> Frank da Cruz writes:
  43621.  
  43622. > In article <CyID9G.HFK@echelon.nl> kees@echelon.nl (Kees Hendrikse) writes:
  43623. >> (...) would it be very hard to also implements the 'SCO console' emulation,
  43624. >> a.k.a. SCO-ANSI?
  43625.  
  43626. > I believe this is basically the current ANSI screen handling, but with the
  43627. > keyboard handled differently -- instead of transmitting the characters
  43628. > associated with the keys, the scan codes are transmitted.
  43629.  
  43630. Scan codes are optional (settable with stty for scan-code terminals). In 
  43631. Ascii-mode the function keys send escape sequences. F1 sends ESC[M, 
  43632. shift-F1 sends ESC[Y etc. Screen handling is PC-Ansi/vt100-like, except for
  43633. scrolling, coloring, special things like 'send-screen-to-host'. 
  43634.  
  43635. > To the best of my knowledge, this is used only for communicating with the
  43636. > SCO console driver.  True?
  43637.  
  43638. SCO ansi can be used via the serial driver as well, by using the 'ansi' 
  43639. termcap/terminfo entries. Quite a few terminal-emulation packages have a
  43640. sco-ansi option now (James River's Ice-ten, for example), which makes it
  43641. the emulation of choice with these programs.
  43642.  
  43643. -- 
  43644. Kees Hendrikse                                | email:   kees@echelon.nl
  43645.                                               |
  43646. ECHELON consultancy and software development  | phone: +31 (0)53 836 585
  43647. PO Box 545, 7500AM Enschede, The Netherlands  | fax:   +31 (0)53 337 415
  43648.  
  43649. From news@columbia.edu Mon Oct 31 22:20:01 1994
  43650. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19844
  43651.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 31 Oct 1994 19:42:11 -0500
  43652. Received: by apakabar.cc.columbia.edu id AA24226
  43653.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 31 Oct 1994 19:42:10 -0500
  43654. Newsgroups: comp.protocols.kermit.misc
  43655. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!europa.eng.gtefsd.com!howland.reston.ans.net!vixen.cso.uiuc.edu!news.uoregon.edu!netnews.nwnet.net!serval.net.wsu.edu!wsuvm1.csc.wsu.edu!MSIMONDS
  43656. From: MSIMONDS@wsuvm1.csc.wsu.edu
  43657. Subject: Windows version of Kermit??
  43658. Message-Id: <17060C991S85.MSIMONDS@wsuvm1.csc.wsu.edu>
  43659. Sender: news@serval.net.wsu.edu (News)
  43660. Organization: Washington State University
  43661. Date: Mon, 31 Oct 1994 22:20:01 GMT
  43662. Lines: 5
  43663. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  43664.  
  43665. I am looking for a windows versoin of Kermit.  Does such a thing even exist?  A
  43666. nd if it does, does anyone know where I can find it?
  43667.  
  43668.  
  43669.  
  43670.  
  43671. From news@columbia.edu Mon Oct 31 23:03:07 1994
  43672. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16615
  43673.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 1 Nov 1994 06:33:34 -0500
  43674. Received: by apakabar.cc.columbia.edu id AA27034
  43675.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 1 Nov 1994 06:33:33 -0500
  43676. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!EU.net!sunic!ugle.unit.no!trane.uninett.no!eunet.no!nuug!gars!not-for-mail
  43677. From: robert@gar.no (Robert Andersson)
  43678. Newsgroups: comp.protocols.kermit.misc
  43679. Subject: 7-bit access to BBS'es.  Was: Re: MS-DOS Kermit 3.14 Beta-9 Ready
  43680. Date: 1 Nov 1994 00:03:07 +0100
  43681. Organization: Gallagher & Robertson A/S
  43682. Lines: 45
  43683. Message-Id: <393t3b$7aa@stratos.gar.no>
  43684. References: <1994Oct30.222715.6932@ais.com> <392um9$ik7@apakabar.cc.columbia.edu>
  43685. Nntp-Posting-Host: stratos.gar.no
  43686. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  43687.  
  43688. In <392um9$ik7@apakabar.cc.columbia.edu> fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  43689.  
  43690. >I am confident that BBSs are completely unconcerned with both 7-bit access
  43691. >and with character sets.  The entire premise of the BBS world is that you
  43692. >have a totally transparent 8-bit communications link, and there is only
  43693. >one character set in the world: code page 437.
  43694. >Can anybody prove me wrong?  Is there a BBS anywhere in the world that is
  43695. >designed to allow 7-bit access, or that supports different character sets,
  43696. >but still expects the "ANSI" terminal type?  I would like to think so, but
  43697. >I am not hopeful.
  43698.  
  43699. You're being overly pessimistic.  Below is a screen snapshot from the
  43700. character set configuration in the BBS system we run here.  This BBS is also
  43701. programmed to support both 8bit-none and 7bit-even parity, with detection
  43702. being done automatically at logon time.  All while running in "ANSI" BBS
  43703. emulation mode.  The same BBS software runs at a few hundred sites around
  43704. the world, with most installations in Norway and Finland.
  43705.  
  43706. Which character set are you using (type ? for help): ?
  43707.  
  43708. Character sets: look at these characters...
  43709.       1:[   2:]   3:   4:A   5:#   6:^   7:{
  43710.  
  43711. 1) If 1 is a left square bracket then
  43712.    1a) If 3 is a japanese Yen sign (capital Y) you have     IBM
  43713.    1b) If 3 is a norwegian OE then you are using            IBN
  43714.    1c) If 3 is a small u with an accent you are an Apple    MAC
  43715.    1d) If 4 is a capital A with an accent then you have     ISO
  43716.    1e) If 5 is a number sign (double cross) you have        US7
  43717.    1f) If 5 is a pounds sign then you are in                UK7
  43718. 2) If 1 is a capital A with two dots on it then
  43719.    2a) If 2 is a U with two dots on it then you have        GE7
  43720.    2b) If 2 is a A with a ring over it then you are using   SF7
  43721. 3) If 1 is a capital AE sign then
  43722.    3a) If 6 is a U with two dots on it then you are using   DE7
  43723.    3b) If 6 is a caret (hat, circumflex accent) then it's   NO7
  43724. 4) If 1 is a degree sign then
  43725.    4a) If 7 is a small e with an accent then you have       FR7
  43726.    4b) If 7 is a small a with an accent then you have       IT7
  43727. 5) If 1 is an upside exclamation mark then you have         SP7
  43728.  
  43729. Regards, Robert.
  43730. -- 
  43731. Robert Andersson    Voice +47 22418551     Gallagher & Robertson A/S
  43732. robert@gar.no       Fax   +47 22428922     Kongensgt. 23, 0153 Oslo, Norway
  43733.  
  43734. From news@columbia.edu Tue Nov  1 13:56:13 1994
  43735. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21754
  43736.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 1 Nov 1994 08:56:24 -0500
  43737. Received: by apakabar.cc.columbia.edu id AA03406
  43738.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 1 Nov 1994 08:56:23 -0500
  43739. Path: news.columbia.edu!usenet
  43740. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  43741. Newsgroups: comp.protocols.kermit.misc
  43742. Subject: Re: Windows version of Kermit??
  43743. Date: 1 Nov 1994 13:56:13 GMT
  43744. Organization: Columbia University
  43745. Lines: 13
  43746. Message-Id: <395hdt$3a8@apakabar.cc.columbia.edu>
  43747. References: <17060C991S85.MSIMONDS@wsuvm1.csc.wsu.edu>
  43748. Nntp-Posting-Host: fdc.cc.columbia.edu
  43749. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  43750.  
  43751. In article <17060C991S85.MSIMONDS@wsuvm1.csc.wsu.edu>
  43752. MSIMONDS@wsuvm1.csc.wsu.edu writes:
  43753. > I am looking for a windows versoin of Kermit.  Does such a thing even
  43754. > exist?  And if it does, does anyone know where I can find it?
  43755. >  
  43756. The only recommended and supported Kermit program for Windows is MS-DOS
  43757. Kermit; current version 3.13, with 3.14 in Beta test.  It is not a native
  43758. Windows program, but it works fine in an Enhanced-mode window.
  43759.  
  43760. Anonymous ftp to kermit.columbia.edu, directory kermit/test/bin, binary
  43761. mode, file mstibm.zip for 3.14-Beta.
  43762.  
  43763. - Frank
  43764.  
  43765. From news@columbia.edu Tue Nov  1 13:59:30 1994
  43766. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21974
  43767.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 1 Nov 1994 08:59:36 -0500
  43768. Received: by apakabar.cc.columbia.edu id AA03669
  43769.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 1 Nov 1994 08:59:34 -0500
  43770. Path: news.columbia.edu!usenet
  43771. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  43772. Newsgroups: comp.protocols.kermit.misc
  43773. Subject: Re: ANSI (Was: MS-DOS Kermit 3.14 Beta-9 Ready)
  43774. Date: 1 Nov 1994 13:59:30 GMT
  43775. Organization: Columbia University
  43776. Lines: 16
  43777. Distribution: world
  43778. Message-Id: <395hk2$3ii@apakabar.cc.columbia.edu>
  43779. References: <CyJr9y.3CA@echelon.nl>
  43780. Nntp-Posting-Host: fdc.cc.columbia.edu
  43781. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  43782.  
  43783. In article <CyJr9y.3CA@echelon.nl> kees@echelon.nl (Kees Hendrikse) writes:
  43784. > Scan codes are optional (settable with stty for scan-code terminals). In 
  43785. > Ascii-mode the function keys send escape sequences. F1 sends ESC[M, 
  43786. > shift-F1 sends ESC[Y etc. Screen handling is PC-Ansi/vt100-like, except for
  43787. > scrolling, coloring, special things like 'send-screen-to-host'. 
  43788. You can make MS-DOS Kermit send anything you want with SET KEY, so at least
  43789. the keyboard part is user programmable.  I don't know what you mean by
  43790. scrolling and coloring -- Kermit already does those things.  Send-screen-to-
  43791. host is an unacceptable security risk.
  43792.  
  43793. I don't think adding this kind of emulation would serve any particularly
  43794. pressing need, since SCO has lots of termcaps -- just use a different one,
  43795. like VT100, VT320, etc.
  43796.  
  43797. - Frank
  43798.  
  43799. From news@columbia.edu Tue Nov  1 14:05:08 1994
  43800. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22374
  43801.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 1 Nov 1994 09:05:15 -0500
  43802. Received: by apakabar.cc.columbia.edu id AA04073
  43803.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 1 Nov 1994 09:05:14 -0500
  43804. Path: news.columbia.edu!usenet
  43805. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  43806. Newsgroups: comp.protocols.kermit.misc
  43807. Subject: Re: vax/mac
  43808. Date: 1 Nov 1994 14:05:08 GMT
  43809. Organization: Columbia University
  43810. Lines: 20
  43811. Message-Id: <395huk$3uv@apakabar.cc.columbia.edu>
  43812. References: <3935bt$111o@fidoii.cc.lehigh.edu>
  43813. Nntp-Posting-Host: fdc.cc.columbia.edu
  43814. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  43815.  
  43816. In article <3935bt$111o@fidoii.cc.lehigh.edu> cdl0@CS1.CC.Lehigh.EDU (CONRAD  
  43817. DANIEL LLOYD-KNIGHT) writes:
  43818. > Frank da Cruz (fdc@fdc.cc.columbia.edu) wrote:
  43819. > is there any way to have the terminal settings _and_ the initialization 
  43820. > commands load at the same time? it seems you can start up mackermit by
  43821. > clicking on either the commands or settings files, but then have to load
  43822. > the other from in the program itself. is there perhaps a command that can
  43823. > be included in the init file that will automatically load the settings?
  43824. Mac Kermit is in need of a lot of development and fixing.
  43825.  
  43826. Currently, nobody is working on the Mac-specific parts of it, and unless
  43827. we get funding to hire a Macintosh programmer, or a new volunteer comes
  43828. forward who is highly skilled in Macintosh communications programming, there
  43829. will not be much movement in this area.  Prospects in both areas, at present,
  43830. are dim.
  43831.  
  43832. Sorry, I wish I had better news.
  43833.  
  43834. - Frank
  43835.  
  43836. From news@columbia.edu Tue Nov  1 11:14:58 1994
  43837. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01798
  43838.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 1 Nov 1994 11:14:58 -0500
  43839. Received: by apakabar.cc.columbia.edu id AA14783
  43840.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 1 Nov 1994 11:14:56 -0500
  43841. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!gatech!bloom-beacon.mit.edu!senator-bedfellow.mit.edu!math.mit.edu!drw
  43842. From: drw@runge.mit.edu (Dale R. Worley)
  43843. Newsgroups: comp.protocols.kermit.misc
  43844. Subject: Receiving files "automatically"
  43845. Date: 1 Nov 94 09:59:27
  43846. Organization: National Institute for Lameness, Cambridge, MA, USA
  43847. Lines: 21
  43848. Distribution: world
  43849. Message-Id: <DRW.94Nov1095927@runge.mit.edu>
  43850. Nntp-Posting-Host: runge.mit.edu
  43851. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  43852.  
  43853. I'd like to know if there's any way that I can get (MS-)Kermit to
  43854. receive a file "automatically" when the remote end runs a Kermit that
  43855. is attempting to send a file.  As far as I can tell, right now once I
  43856. start the remote Kermit sending, I have to get out of CONNECT, and
  43857. then manually issue a RECEIVE command, then reconnect.  This seems
  43858. quite pointless, so probably there is a way to make it all happen
  43859. automatically.  But I haven't been able to find it in the
  43860. documentation.
  43861.  
  43862. Also, is there a "dial this number and connect me to it" command?
  43863. So far, I have been stuck doing a CONNECT and then manually issuing
  43864. ATDT to the modem.
  43865.  
  43866. And why is it that Kermit comes with almost no documentation?  Or is
  43867. the rumor that Kermit is "free" just a front for selling books?
  43868.  
  43869. Dale
  43870.  
  43871. Dale Worley        Dept. of Math., MIT        drw@math.mit.edu
  43872. --
  43873. Does the name "Pavlov" ring a bell?
  43874.  
  43875. From news@columbia.edu Tue Nov  1 16:30:32 1994
  43876. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03088
  43877.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 1 Nov 1994 11:30:42 -0500
  43878. Received: by apakabar.cc.columbia.edu id AA16299
  43879.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 1 Nov 1994 11:30:40 -0500
  43880. Path: news.columbia.edu!usenet
  43881. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  43882. Newsgroups: comp.protocols.kermit.misc
  43883. Subject: Re: Receiving files "automatically"
  43884. Date: 1 Nov 1994 16:30:32 GMT
  43885. Organization: Columbia University
  43886. Lines: 36
  43887. Distribution: world
  43888. Message-Id: <395qf8$ft4@apakabar.cc.columbia.edu>
  43889. References: <DRW.94Nov1095927@runge.mit.edu>
  43890. Nntp-Posting-Host: fdc.cc.columbia.edu
  43891. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  43892.  
  43893. In article <DRW.94Nov1095927@runge.mit.edu> drw@runge.mit.edu (Dale R.  
  43894. Worley) writes:
  43895. > I'd like to know if there's any way that I can get (MS-)Kermit to
  43896. > receive a file "automatically" when the remote end runs a Kermit that
  43897. > is attempting to send a file.  As far as I can tell, right now once I
  43898. > start the remote Kermit sending, I have to get out of CONNECT, and
  43899. > then manually issue a RECEIVE command, then reconnect.  This seems
  43900. > quite pointless, so probably there is a way to make it all happen
  43901. > automatically.  But I haven't been able to find it in the
  43902. > documentation.
  43903. Yes, there is a way.  Please read about the APC command in the KERMIT.UPD
  43904. file.
  43905.  
  43906. > Also, is there a "dial this number and connect me to it" command?
  43907. > So far, I have been stuck doing a CONNECT and then manually issuing
  43908. > ATDT to the modem.
  43909. Use the DIAL macros and dialing directory that come with MS-DOS Kermit.
  43910. Read about them in the same KERMIT.UPD file.
  43911.  
  43912. The DIAL macro does not CONNECT automatically.  This is so it can be
  43913. imbedded in other macros.  If you want to DIAL and CONNECT in a single
  43914. operation, define a macro to do this:
  43915.  
  43916.   define online dial \%1, connect
  43917.  
  43918. > And why is it that Kermit comes with almost no documentation?  Or is
  43919. > the rumor that Kermit is "free" just a front for selling books?
  43920. Somebody else please respond to this one.
  43921.  
  43922. > Dale Worley        Dept. of Math., MIT        drw@math.mit.edu
  43923. > --
  43924. > Does the name "Pavlov" ring a bell?
  43925.  
  43926. From news@columbia.edu Tue Nov  1 14:09:33 1994
  43927. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04783
  43928.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 1 Nov 1994 11:58:23 -0500
  43929. Received: by apakabar.cc.columbia.edu id AA18320
  43930.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 1 Nov 1994 11:58:21 -0500
  43931. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!europa.eng.gtefsd.com!howland.reston.ans.net!math.ohio-state.edu!caen!hearst.acc.Virginia.EDU!gems.vcu.edu!agnew
  43932. From: agnew@gems.vcu.edu (Brainwave Surfer)
  43933. Newsgroups: comp.protocols.kermit.misc
  43934. Subject: More lines per page?
  43935. Message-Id: <1994Nov1.100933.2067@gems.vcu.edu>
  43936. Date: 1 Nov 94 10:09:33 -0400
  43937. Organization: Medical College of Virginia
  43938. Lines: 13
  43939. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  43940.  
  43941. Dear Netbeings,
  43942.   I have a wonderful relationship with MS-dos kermit.  apart from dos,
  43943. the package is fine.  I'd like to figure out how to set the video such
  43944. that I can use one of the other modes, like 50 lines per screen, etc.
  43945. Everything else is ok, but i'm lusting for more of the page like I can
  43946. get on my Decterms in Motif.
  43947.  
  43948. Jim
  43949.  
  43950.          /^^^\   \ /   Jim Agnew         | AGNEW@RUBY.VCU.EDU  (Internet)
  43951.         /      >  ||   Neurosurgery,     | AGNEW@VCUVAX        (Bitnet)
  43952.    /\_/     '   \  /   MCV-VCU           | This disc will self destruct in
  43953.  /________________>    Richmond, VA, USA | five seconds.  Good luck, Jim..."
  43954.  
  43955. From news@columbia.edu Tue Nov  1 17:44:43 1994
  43956. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07746
  43957.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 1 Nov 1994 12:44:51 -0500
  43958. Received: by apakabar.cc.columbia.edu id AA22658
  43959.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 1 Nov 1994 12:44:49 -0500
  43960. Path: news.columbia.edu!usenet
  43961. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  43962. Newsgroups: comp.protocols.kermit.misc
  43963. Subject: Re: More lines per page?
  43964. Date: 1 Nov 1994 17:44:43 GMT
  43965. Organization: Columbia University
  43966. Lines: 19
  43967. Message-Id: <395uqb$m3m@apakabar.cc.columbia.edu>
  43968. References: <1994Nov1.100933.2067@gems.vcu.edu>
  43969. Nntp-Posting-Host: fdc.cc.columbia.edu
  43970. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  43971.  
  43972. In article <1994Nov1.100933.2067@gems.vcu.edu> agnew@gems.vcu.edu (Brainwave  
  43973. Surfer) writes:
  43974. > Dear Netbeings,
  43975. >   I have a wonderful relationship with MS-dos kermit.  apart from dos,
  43976. > the package is fine.  I'd like to figure out how to set the video such
  43977. > that I can use one of the other modes, like 50 lines per screen, etc.
  43978. > Everything else is ok, but i'm lusting for more of the page like I can
  43979. > get on my Decterms in Motif.
  43980. Just put the video adapter in the desired mode before starting Kermit.
  43981. Kermit should automatically sense the number of screen lines -- not
  43982. foolproof, but it usually works (video adapter details vary).
  43983.  
  43984. This is usually done with a MODE command, like MODE CO80,55 or whatever.
  43985.  
  43986. - Frank
  43987. x
  43988. x
  43989. x
  43990.  
  43991. From news@columbia.edu Tue Nov  1 18:17:22 1994
  43992. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10323
  43993.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 1 Nov 1994 13:17:28 -0500
  43994. Received: by apakabar.cc.columbia.edu id AA25720
  43995.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 1 Nov 1994 13:17:26 -0500
  43996. Path: news.columbia.edu!usenet
  43997. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  43998. Newsgroups: comp.protocols.kermit.misc
  43999. Subject: MS-DOS Kermit Slide Shows
  44000. Date: 1 Nov 1994 18:17:22 GMT
  44001. Organization: Columbia University
  44002. Lines: 35
  44003. Message-Id: <3960ni$p3m@apakabar.cc.columbia.edu>
  44004. Nntp-Posting-Host: fdc.cc.columbia.edu
  44005. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  44006.  
  44007. Henrik Graversen <hsgraver@inet.uni-c.dk> wrote:
  44008. > Is there a way to control the speed of the REPLAY command
  44009. > in MS Kermit 3.12?  Or maybe even a way to use pagedown, pageup, etc.?
  44010. > When I have logged a session to session.log and and want to take a look
  44011. > at the log-file it is far from easy to read it as it scrolls by at 100
  44012. > mph.
  44013. There are some tricks.
  44014.  
  44015. The best trick is to get a more up-to-date version of Kermit (3.13 or 3.14
  44016. Beta), which allows *huge* rollback buffers if you put them in Expanded
  44017. Memory (EMS) via the new command SET TERMINAL EXPANDED-MEMORY ON.  Then
  44018. you can use SET TERM ROLLBACK <number> to allocate as many as 8000
  44019. rollback screens.  NOTE: This requires that you have a big physical memory
  44020. (more than 2MB or more) and that you use an expanded memory manager to
  44021. configure a lot of EMS.  See the KERMIT.BWR file that comes with version
  44022. 3.13 or 3.14.
  44023.  
  44024. Then you can REPLAY the log file and it will fly past at 100 miles per
  44025. hour.  But after that you can use Home, PgUp, PgDn, Ctrl-PgUp, Ctrl-PgDn,
  44026. and End to view it at your leisure.  (You can also use new keyboard verbs
  44027. to scroll right and left, in case the virtual screen is wider than the
  44028. physical screen).
  44029.  
  44030. The second trick would be to transfer the log file to the host and then
  44031. either run it through something like "more" (not great, since it
  44032. interferes with the display), or write a little utility program that looks
  44033. for special "signs" in the log (which you would insert with an editor), at
  44034. which it should pause until you press a key.
  44035.  
  44036. For MS-DOS Kermit 3.14 Beta: anonymous ftp to kermit.columbia.edu, directory
  44037. kermit/test/bin, binary mode, file mstibm.zip.
  44038.  
  44039. - Frank
  44040.  
  44041. From news@columbia.edu Sun Oct 30 02:49:58 1994
  44042. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12655
  44043.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 1 Nov 1994 13:46:30 -0500
  44044. Received: by apakabar.cc.columbia.edu id AA28176
  44045.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 1 Nov 1994 13:46:28 -0500
  44046. Path: news.columbia.edu!panix!news.mathworks.com!europa.eng.gtefsd.com!howland.reston.ans.net!news.sprintlink.net!news.primenet.com!slip250.phx.primenet.com!mpomey
  44047. From: mpomey@primenet.com (Morris Pomey)
  44048. Newsgroups: comp.protocols.kermit.misc
  44049. Subject: kermit on stratus vos
  44050. Date: Sun, 30 Oct 1994 09:49:58 MST
  44051. Organization: Primenet
  44052. Lines: 7
  44053. Message-Id: <mpomey.1.0012AAB0@primenet.com>
  44054. Nntp-Posting-Host: slip250.phx.primenet.com
  44055. X-Newsreader: Trumpet for Windows [Version 1.0 Rev B final beta #4]
  44056. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  44057.  
  44058. I'm searching for Kermit on Stratus VOS.
  44059. I cannot find any mention of it at kermit.columbia.edu.
  44060.  
  44061. Can someone tell me where to find it if it exists?
  44062.  
  44063. Thanks a lot.
  44064.  
  44065.  
  44066. From news@columbia.edu Tue Nov  1 19:04:49 1994
  44067. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14241
  44068.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 1 Nov 1994 14:04:54 -0500
  44069. Received: by apakabar.cc.columbia.edu id AA29753
  44070.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 1 Nov 1994 14:04:53 -0500
  44071. Path: news.columbia.edu!usenet
  44072. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  44073. Newsgroups: comp.protocols.kermit.misc
  44074. Subject: Re: kermit on stratus vos
  44075. Date: 1 Nov 1994 19:04:49 GMT
  44076. Organization: Columbia University
  44077. Lines: 13
  44078. Message-Id: <3963gh$t1k@apakabar.cc.columbia.edu>
  44079. References: <mpomey.1.0012AAB0@primenet.com>
  44080. Nntp-Posting-Host: fdc.cc.columbia.edu
  44081. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  44082.  
  44083. In article <mpomey.1.0012AAB0@primenet.com> mpomey@primenet.com (Morris  
  44084. Pomey) writes:
  44085. > I'm searching for Kermit on Stratus VOS.
  44086. > I cannot find any mention of it at kermit.columbia.edu.
  44087. C-Kermit 5A(190) is a full-featured version of C-Kermit for Stratus
  44088. VOS.  The files are in the kermit/test/text and kermit/test/bin
  44089. directories.  The VOS-specific files have names that start with "ckl".
  44090.  
  44091. This is a brand-new addition; prior to this, we did not have a Kermit
  44092. program for Stratus VOS.
  44093.  
  44094. - Frank
  44095.  
  44096. From news@columbia.edu Tue Nov  1 21:43:05 1994
  44097. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00234
  44098.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 1 Nov 1994 16:43:07 -0500
  44099. Received: by apakabar.cc.columbia.edu id AA26494
  44100.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 1 Nov 1994 16:43:06 -0500
  44101. Path: news.columbia.edu!watsun.cc.columbia.edu!pepmnt
  44102. From: pepmnt@watsun.cc.columbia.edu (John Chandler)
  44103. Newsgroups: comp.protocols.kermit.misc
  44104. Subject: Kermit-370 beta testing
  44105. Date: 1 Nov 1994 21:43:05 GMT
  44106. Organization: Columbia University
  44107. Lines: 11
  44108. Message-Id: <396cp9$prr@apakabar.cc.columbia.edu>
  44109. Reply-To: jchbn@cuvmb.cc.columbia.edu
  44110. Nntp-Posting-Host: watsun.cc.columbia.edu
  44111. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  44112.  
  44113. Kermit-370 version 4.3.1 is now in beta testing for all the major variants
  44114. (CMS, TSO, MUSIC, and CICS).  4.3.1 supports the same new protocol features
  44115. (RESEND and communication of TEXT/BIN types) being introduced with the
  44116. test versions of MS-DOS Kermit and C-Kermit, as well as some system-
  44117. specific updates, such as using the transmitted time tag for files uploaded
  44118. to CMS or CICS, and support for the new expanded file system in MUSIC.
  44119. People who are interested in trying out the test version can find the
  44120. updates in files ik*.nup in kermit/b.  Please drop me a line if you plan
  44121. to do some testing, so that I'll know who's doing what.  Thanks.
  44122.  
  44123.             John Chandler <jchbn@cuvmb.cc.columbia.edu>
  44124.  
  44125. From news@columbia.edu Tue Nov  1 19:00:34 1994
  44126. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23641
  44127.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 1 Nov 1994 15:07:08 -0500
  44128. Received: by apakabar.cc.columbia.edu id AA05623
  44129.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 1 Nov 1994 15:07:05 -0500
  44130. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!uhog.mit.edu!europa.eng.gtefsd.com!howland.reston.ans.net!news.sprintlink.net!EU.net!uknet!comlab.ox.ac.uk!oxuniv!long
  44131. From: long@vax.ox.ac.uk (NEIL J LONG)
  44132. Newsgroups: comp.protocols.kermit.misc
  44133. Subject: ACCURA14.4 + Beta10 + rts/cts
  44134. Message-Id: <1994Nov1.190034.27100@oxvaxd>
  44135. Date: 1 Nov 94 19:00:34 GMT
  44136. Organization: Oxford University VAX 6620
  44137. Lines: 25
  44138. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  44139.  
  44140. I have just been playing with a Hayes ACCURA 14.4 and Ms-Kermit 3.13 and
  44141. 3.14Beta-10.
  44142.  
  44143. Could someone explain how to get the best out of it. I have been able to
  44144. connect with speeds set to 14400 to a v32bis dial in service.
  44145.  
  44146. Why does ver 3.14 get in to the situation where it sends AT commands at the
  44147. rate of 1 per 8 seconds for each A...........T......... 
  44148. if I send them with RTS/CTS set but not if flow is none or XON/XOFF.
  44149.  
  44150. I tried the ultra144 script and that a) took forever and b) gave me a bizarre
  44151. screen. Most of the codes seemed reasonable. 
  44152.  
  44153. 3.13 doesn't behave this way (not using the scripts and rts/cts doesn't have
  44154. this effect).
  44155.  
  44156. Could someone email me a suitable mod to any of the scripts which they know
  44157. will work with it - I can fool around forever at this rate as the scripts all
  44158. tend to set rts/cts before sending the codes.
  44159.  
  44160. I am assuming that the hardware is fine since it works for 3.13 and the
  44161. 'bundled' smartcom LE for Windows (euggh). Hate Windows.
  44162.  
  44163. Thanks
  44164. Neil
  44165.  
  44166. From news@columbia.edu Tue Nov  1 21:10:18 1994
  44167. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02617
  44168.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 1 Nov 1994 17:01:29 -0500
  44169. Received: by apakabar.cc.columbia.edu id AA28111
  44170.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 1 Nov 1994 17:01:27 -0500
  44171. Path: news.columbia.edu!panix!news.mathworks.com!udel!news-4.nss.udel.edu!chopin.udel.edu!not-for-mail
  44172. From: darkstar@chopin.udel.edu (Jerry Alexandratos)
  44173. Newsgroups: comp.protocols.kermit.misc
  44174. Subject: Re: More lines per page?
  44175. Date: 1 Nov 1994 16:10:18 -0500
  44176. Organization: Broken Toys Unlimited
  44177. Lines: 46
  44178. Message-Id: <396arq$fqc@chopin.udel.edu>
  44179. References: <1994Nov1.100933.2067@gems.vcu.edu>
  44180. Nntp-Posting-Host: chopin.udel.edu
  44181. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  44182.  
  44183. In article <1994Nov1.100933.2067@gems.vcu.edu>,
  44184. Brainwave Surfer <agnew@gems.vcu.edu> wrote:
  44185. :Dear Netbeings,
  44186. :  I have a wonderful relationship with MS-dos kermit.  apart from dos,
  44187. :the package is fine.  I'd like to figure out how to set the video such
  44188. :that I can use one of the other modes, like 50 lines per screen, etc.
  44189. :Everything else is ok, but i'm lusting for more of the page like I can
  44190. :get on my Decterms in Motif.
  44191. :
  44192. :Jim
  44193.  
  44194. [sig deleted]
  44195.  
  44196. Okay, here's what you need to do on both ends of the connection.
  44197.  
  44198. PC--make sure you've got either an EGA card (for 43 line mode) or a VGA
  44199.     card (for 50 line mode).  Some cards support some funky things like
  44200.     60 lines under some Super-VGA setting or another.
  44201.     make sure you load an ANSI driver like ansi.sys or nnansi.sys
  44202.     issue the following mode command `mode con: lines=50'.
  44203.     start kermit.
  44204.  
  44205. UNIX-connect to host.
  44206.      issue an eval `tset -sQI <your-term-emulation>` command to set the
  44207.      TERM and TERMCAP environment variables.  For example eval `tset
  44208.      -sQI vt220` evaluates and sets the variables for vt220 term.  Make
  44209.      sure that you put in the ``I'' argument.  If you don't, then
  44210.      you'll see your screen cut in half and only the first 25 lines
  44211.      being drawn on.  If this happens, then you'll have to go to the
  44212.      kermit command line and do a `ru mode con: lines=50' command to
  44213.      reset your local terminal.
  44214.      Issue the `stty rows 49' command to set the number of rows (or
  44215.      `stty rows 50' if you don't use the status line at the bottom of
  44216.      the screen), followed by a `reset' command.
  44217.  
  44218. That should do it.  I don't know how to do this if you're connecting to
  44219. other types of host.  I think that for IBM's it doesn't make a
  44220. difference if they're in fullscreen mode, then they'll use all of the
  44221. available lines.  As for other types of hosts, your mileage may vary.
  44222.  
  44223.         --Jerry
  44224.  
  44225. -- 
  44226. |>  Jerry Alexandratos                **  "vengo de la tierra del    <|
  44227. |>  darkstar@strauss.udel.edu         **   fuego ten cuidado cuando  <|
  44228. |>  darkstar@canary.pearson.udel.edu  **   llamas mi nombre..."      <|
  44229.  
  44230. From news@columbia.edu Tue Nov  1 17:58:21 1994
  44231. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06184
  44232.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 1 Nov 1994 17:39:43 -0500
  44233. Received: by apakabar.cc.columbia.edu id AA01841
  44234.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 1 Nov 1994 17:39:42 -0500
  44235. Newsgroups: comp.protocols.kermit.misc
  44236. Path: news.columbia.edu!sol.ctr.columbia.edu!caen!newsxfer.itd.umich.edu!europa.eng.gtefsd.com!howland.reston.ans.net!EU.net!sun4nl!ruuinf!ruu.nl!jansen
  44237. From: jansen@surfnet.nl (Xander Jansen)
  44238. Subject: Re: Receiving files "automatically"
  44239. Message-Id: <1994Nov1.175821.29608@cc.ruu.nl>
  44240. Sender: usenet@cc.ruu.nl
  44241. Reply-To: Xander.Jansen@surfnet.nl
  44242. Organization: SURFnet bv
  44243. X-Newsreader: TIN [version 1.2 PL2]
  44244. References: <DRW.94Nov1095927@runge.mit.edu> <395qf8$ft4@apakabar.cc.columbia.edu>
  44245. Date: Tue, 1 Nov 1994 17:58:21 GMT
  44246. Lines: 21
  44247. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  44248.  
  44249. Frank da Cruz (fdc@fdc.cc.columbia.edu) wrote:
  44250.  
  44251. : > And why is it that Kermit comes with almost no documentation?  Or is
  44252. : > the rumor that Kermit is "free" just a front for selling books?
  44253. : > 
  44254. : Somebody else please respond to this one.
  44255.  
  44256. ;-)
  44257.  
  44258. My humble opinion is that the book is great and that the online documentation
  44259. (the files KERMIT.HLP, KERMIT.UPD and KERMIT.BWR) are very usefull and better
  44260. than the 'online documentation' found with some other 'free/share/other-ware'
  44261. programs.
  44262.  
  44263. The mentioned files have kept me from sending in many questions and
  44264. bug-reports to the kermit people because the answer to my questions were
  44265. there. So even without the book the documentation is there and answers most
  44266. questions you might have.
  44267.  
  44268. --
  44269. Xander.
  44270.  
  44271. From news@columbia.edu Tue Nov  1 18:03:47 1994
  44272. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07141
  44273.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 1 Nov 1994 17:49:20 -0500
  44274. Received: by apakabar.cc.columbia.edu id AA02706
  44275.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 1 Nov 1994 17:49:19 -0500
  44276. Newsgroups: comp.protocols.kermit.misc
  44277. Path: news.columbia.edu!panix!news.mathworks.com!news.duke.edu!news-feed-1.peachnet.edu!emory!metro.atlanta.com!spcuna!ritz!kudut
  44278. From: kudut@ritz.mordor.com (Ken Udut)
  44279. Subject: Re: Receiving files "automatically"
  44280. References: <DRW.94Nov1095927@runge.mit.edu>
  44281. Organization: Mordor International BBS - Jersey City, NJ
  44282. Date: Tue, 1 Nov 1994 18:03:47 GMT
  44283. Message-Id: <CyLouB.6Lu@ritz.mordor.com>
  44284. Lines: 52
  44285. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  44286.  
  44287. In article <DRW.94Nov1095927@runge.mit.edu> drw@runge.mit.edu (Dale R. Worley) writes:
  44288. >I'd like to know if there's any way that I can get (MS-)Kermit to
  44289. >receive a file "automatically" when the remote end runs a Kermit that
  44290. >is attempting to send a file.  As far as I can tell, right now once I
  44291. >start the remote Kermit sending, I have to get out of CONNECT, and
  44292. >then manually issue a RECEIVE command, then reconnect.  This seems
  44293. >quite pointless, so probably there is a way to make it all happen
  44294. >automatically.  But I haven't been able to find it in the
  44295. >documentation.
  44296.  
  44297. What version of Kermit are you running?  Latest beta test is 3.14, revision
  44298. 10, available at kermit.columbia.edu under the directory:
  44299. /kermit/test/bin/mstibm.zip
  44300.  
  44301. To automatically send/receive files via Kermit, please check out the
  44302. KERMIT.UPD file that comes with the beta.  It explains how to engage
  44303. autoupload/download with Kermit.  
  44304.  
  44305. NOTE: MS-Kermit must be version 3.14, and C-Kermit (assuming that is
  44306. what is on the host side) must be version 190.  
  44307.  
  44308. >Also, is there a "dial this number and connect me to it" command?
  44309. >So far, I have been stuck doing a CONNECT and then manually issuing
  44310. >ATDT to the modem.
  44311.  
  44312. To dial, type "dial xxx-xxxx" or edit the DIALUPS.TXT file and add
  44313. the phone number you wish to dial in the format specified in that file.
  44314.  
  44315. If I'm not mistaken, if you use the "dial" macro, it will connect
  44316. you.  Otherwise, if you are a purist and want to do ATDT before the
  44317. phone numbers, then put a CONNECT at the bottom of your MSCUSTOM.INI.
  44318.  
  44319. >And why is it that Kermit comes with almost no documentation?  
  44320.  
  44321. It comes with a *lot* of documentation.  The KERMIT.BWR and KERMIT.UPD
  44322. file are both sets of documentation.  If you issue a HELP at the Kermit
  44323. prompt, you get more information.  While you are typing in a comment,
  44324. but you are not sure what to type in next, press a ?, and you will
  44325. magically get help for that command.
  44326.  
  44327. Indeed, you can learn almost everything there is to know about MS-Kermit,
  44328. programming scripts, macros, etc. (which aren't really all that hard!)
  44329. simply by using the information provided with the Kermit distribution.
  44330.  
  44331. >Or is the rumor that Kermit is "free" just a front for selling books?
  44332.  
  44333. Indeed - it is a rumour.  Is it true?  No.
  44334.  
  44335.  
  44336. Ken
  44337. kudut@ritz.mordor.com
  44338. LISTOWNER of Y-RIGHTS@SJUVM.STJOHNS.EDU - discussion on the rights of kids/teens
  44339.  
  44340. From news@columbia.edu Tue Nov  1 18:56:06 1994
  44341. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08163
  44342.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 1 Nov 1994 18:02:29 -0500
  44343. Received: by apakabar.cc.columbia.edu id AA03847
  44344.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 1 Nov 1994 18:02:28 -0500
  44345. Path: news.columbia.edu!sol.ctr.columbia.edu!news.msfc.nasa.gov!cs.utk.edu!martha.utk.edu!martha.utcc.utk.edu!tolnas
  44346. From: tolnas@microsys3.engr.utk.edu (Barry Tolnas)
  44347. Newsgroups: comp.protocols.kermit.misc
  44348. Subject: .kermrc question (UNIX)
  44349. Date: 01 Nov 1994 18:56:06 GMT
  44350. Organization: University of Tennessee, Knoxville
  44351. Lines: 23
  44352. Distribution: world
  44353. Message-Id: <TOLNAS.94Nov1135606@microsys3.engr.utk.edu>
  44354. Nntp-Posting-Host: microsys3.engr.utk.edu
  44355. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  44356.  
  44357.  
  44358. In order to make my modem connect properly to one site, I have to set
  44359. an internal register in my modem.  I would like this to be done
  44360. automatically in my .kermrc. Is there a way to send commands to my
  44361. modem? I didn't see a command listed in the docs which would do this.
  44362. The way I do it now is to manually type `c' to connect to the modem
  44363. and then type "ATS28=255" which sets the necessary register.
  44364.  
  44365. Thanks for any suggestions,
  44366.  
  44367. Barry
  44368. tolnas@utk.edu
  44369.  
  44370. --
  44371.  _____                                          ____   ____
  44372. /\  _ `.                                       ' __,\ ',__.`
  44373. \ \ \_\ \     __     _ __   _ __   __  __           |
  44374.  \ \  _ <   /'__`\  /\`'__\/\`'__\/\ \/\ \          /
  44375.   \ \ \_\ \/\ \_\.\_\ \ \/ \ \ \/ \ \ \_\ \         L_, 
  44376.    \ \____/\ \__/.\_\\ \_\  \ \_\  \/`____ \     ._______/
  44377.     \/___/  \/__/\/_/ \/_/   \/_/   `/___/> \       ---
  44378.                                        /\___/
  44379.                                        \/__/ 
  44380.  
  44381. From news@columbia.edu Wed Nov  2 00:56:10 1994
  44382. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15545
  44383.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 1 Nov 1994 19:56:25 -0500
  44384. Received: by apakabar.cc.columbia.edu id AA12826
  44385.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 1 Nov 1994 19:56:23 -0500
  44386. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  44387. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  44388. Newsgroups: comp.protocols.kermit.misc
  44389. Subject: Re: .kermrc question (UNIX)
  44390. Date: 2 Nov 1994 00:56:10 GMT
  44391. Organization: Columbia University
  44392. Lines: 22
  44393. Message-Id: <396o3a$cg6@apakabar.cc.columbia.edu>
  44394. References: <TOLNAS.94Nov1135606@microsys3.engr.utk.edu>
  44395. Nntp-Posting-Host: watsun.cc.columbia.edu
  44396. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  44397.  
  44398. In article <TOLNAS.94Nov1135606@microsys3.engr.utk.edu>,
  44399. Barry Tolnas <tolnas@microsys3.engr.utk.edu> wrote:
  44400. >
  44401. >In order to make my modem connect properly to one site, I have to set
  44402. >an internal register in my modem.  I would like this to be done
  44403. >automatically in my .kermrc. Is there a way to send commands to my
  44404. >modem? I didn't see a command listed in the docs which would do this.
  44405. >The way I do it now is to manually type `c' to connect to the modem
  44406. >and then type "ATS28=255" which sets the necessary register.
  44407. >
  44408.  
  44409. The best way to handle this is to use the built in dial commands:
  44410.  
  44411. you can either use "set dial init \13ATS28=255\13" or
  44412. "set dial dial-command \13ATS28=255DT%s\13"
  44413.  
  44414. move info about the dial commands in "Using C-Kermit"
  44415.  
  44416. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  44417. "C-Kermit: available on more platforms than any other communications software."
  44418. "Kermit FTP: sending files whenever and wherever they are needed."
  44419. *NEW* OS/2 version available: ftp kermit.columbia.edu /kermit/bin/ckoker.zip 
  44420.  
  44421. From news@columbia.edu Tue Nov  1 23:04:44 1994
  44422. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20588
  44423.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 1 Nov 1994 21:32:15 -0500
  44424. Received: by apakabar.cc.columbia.edu id AA20366
  44425.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 1 Nov 1994 21:32:14 -0500
  44426. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!udel!news-4.nss.udel.edu!chopin.udel.edu!not-for-mail
  44427. From: darkstar@chopin.udel.edu (Jerry Alexandratos)
  44428. Newsgroups: comp.protocols.kermit.misc
  44429. Subject: Re: .kermrc question (UNIX)
  44430. Date: 1 Nov 1994 18:04:44 -0500
  44431. Organization: Broken Toys Unlimited
  44432. Lines: 27
  44433. Message-Id: <396hic$3um@chopin.udel.edu>
  44434. References: <TOLNAS.94Nov1135606@microsys3.engr.utk.edu>
  44435. Nntp-Posting-Host: chopin.udel.edu
  44436. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  44437.  
  44438. In article <TOLNAS.94Nov1135606@microsys3.engr.utk.edu>,
  44439. Barry Tolnas <tolnas@microsys3.engr.utk.edu> wrote:
  44440. :
  44441. :In order to make my modem connect properly to one site, I have to set
  44442. :an internal register in my modem.  I would like this to be done
  44443. :automatically in my .kermrc. Is there a way to send commands to my
  44444. :modem? I didn't see a command listed in the docs which would do this.
  44445. :The way I do it now is to manually type `c' to connect to the modem
  44446. :and then type "ATS28=255" which sets the necessary register.
  44447. :
  44448. :Thanks for any suggestions,
  44449. :
  44450. :Barry
  44451. :tolnas@utk.edu
  44452.  
  44453. [.sig deleted]
  44454.  
  44455. Yeah, just put the line `output ats28=255' in your .mykermit file. 
  44456. This is documented in the book and and you can see examples of it in
  44457. any of the dialing scripts...
  44458.  
  44459.         --Jerry
  44460.  
  44461. -- 
  44462. |>  Jerry Alexandratos                **  "vengo de la tierra del    <|
  44463. |>  darkstar@strauss.udel.edu         **   fuego ten cuidado cuando  <|
  44464. |>  darkstar@canary.pearson.udel.edu  **   llamas mi nombre..."      <|
  44465.  
  44466. From news@columbia.edu Wed Nov  2 02:43:29 1994
  44467. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23335
  44468.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 1 Nov 1994 22:17:17 -0500
  44469. Received: by apakabar.cc.columbia.edu id AA23502
  44470.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 1 Nov 1994 22:17:16 -0500
  44471. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!malgudi.oar.net!news.ysu.edu!yfn.ysu.edu!am856
  44472. From: am856@YFN.YSU.EDU (Michael DeCosta III)
  44473. Newsgroups: comp.protocols.kermit.misc
  44474. Subject: Beta MSKERMIT Z100?
  44475. Date: 2 Nov 1994 02:43:29 GMT
  44476. Organization: St. Elizabeth Hospital, Youngstown, OH
  44477. Lines: 8
  44478. Message-Id: <396uch$h9r@news.ysu.edu>
  44479. Reply-To: am856@yfn.ysu.edu (Michael DeCosta III)
  44480. Nntp-Posting-Host: yfn2.ysu.edu
  44481. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  44482.  
  44483.  
  44484. This is not a prod.
  44485.  
  44486. I am just curious on how to keep up on the latest Beta releases
  44487. for MSKERMIT 3.14 for non-PC clones?
  44488.  
  44489. Basically I stumbled across the one for the Z100 by posting here
  44490. and getting responses that told me one was available.
  44491.  
  44492. From news@columbia.edu Tue Nov  1 16:59:06 1994
  44493. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24057
  44494.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 1 Nov 1994 22:30:51 -0500
  44495. Received: by apakabar.cc.columbia.edu id AA24314
  44496.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 1 Nov 1994 22:30:50 -0500
  44497. Path: news.columbia.edu!panix!cmcl2!thecourier.cims.nyu.edu!thecourier.cims.nyu.edu!nobody
  44498. From: vb1890@cs.nyu.edu (Victor Boyko)
  44499. Newsgroups: comp.protocols.kermit.misc
  44500. Subject: Cyrillic in beta 7
  44501. Date: 1 Nov 1994 11:59:06 -0500
  44502. Organization: Courant Institute of Mathematical Sciences
  44503. Lines: 10
  44504. Message-Id: <395s4q$kla@doc.cs.nyu.edu>
  44505. Nntp-Posting-Host: doc.cs.nyu.edu
  44506. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  44507.  
  44508. Hello!
  44509.  
  44510. There seems to be a problem with cyrillic in Kermit (invoked by
  44511. command cyrillic). The Russian letters for 's' and 'e' produce the
  44512. same character 'c'. This is quite inconvenient. Also, if I use both
  44513. emacsker.scr and koi8.ini it complains that there is not enough memory
  44514. for key definitions and discards my emacs key bindings.
  44515.  
  44516. Victor
  44517.  
  44518.  
  44519. From news@columbia.edu Wed Nov  2 10:12:07 1994
  44520. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13022
  44521.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 2 Nov 1994 06:27:05 -0500
  44522. Received: by apakabar.cc.columbia.edu id AA15892
  44523.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 2 Nov 1994 06:27:04 -0500
  44524. Path: news.columbia.edu!sol.ctr.columbia.edu!newsxfer.itd.umich.edu!gatech!howland.reston.ans.net!news.sprintlink.net!EU.net!uunet!psinntp!barilvm!news.datasrv.co.il!zeus.datasrv.co.il!4dsoft
  44525. From: 4dsoft@zeus.datasrv.co.il (4th Dimension)
  44526. Newsgroups: comp.protocols.kermit.misc
  44527. Subject: Zmodem on kermit
  44528. Date: 2 Nov 1994 10:12:07 GMT
  44529. Organization: DataServe LTD. (An Internet Access Provider), Israel.
  44530. Lines: 11
  44531. Message-Id: <397oln$cp3@israel-info.datasrv.co.il>
  44532. Nntp-Posting-Host: zeus.datasrv.co.il
  44533. X-Newsreader: TIN [version 1.2 PL2]
  44534. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  44535.  
  44536. Hi,
  44537.  
  44538. Im looking for a way to perform file transfer via the Zmodem utilities
  44539. while working in kermit.
  44540.  
  44541. Examples will be appreciates.
  44542.  
  44543.           Thanks in advance,
  44544.  
  44545.                Itamar
  44546.  
  44547.  
  44548. From news@columbia.edu Wed Nov  2 07:01:46 1994
  44549. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08902
  44550.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 2 Nov 1994 10:12:26 -0500
  44551. Received: by apakabar.cc.columbia.edu id AA29507
  44552.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 2 Nov 1994 10:12:24 -0500
  44553. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!udel!gatech!bloom-beacon.mit.edu!senator-bedfellow.mit.edu!athena.mit.edu!fastcart
  44554. From: fastcart@MIT.EDU (Arcell B. Frazier)
  44555. Newsgroups: comp.protocols.kermit.misc
  44556. Subject: Re: .kermrc question (UNIX)
  44557. Date: 2 Nov 1994 07:01:46 GMT
  44558. Organization: Massachusetts Institute of Technology
  44559. Lines: 11
  44560. Message-Id: <FASTCART.94Nov2020153@marinara.MIT.EDU>
  44561. References: <TOLNAS.94Nov1135606@microsys3.engr.utk.edu> <396hic$3um@chopin.udel.edu>
  44562. Nntp-Posting-Host: marinara.mit.edu
  44563. In-Reply-To: darkstar@chopin.udel.edu's message of 1 Nov 1994 18:04:44 -0500
  44564. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  44565.  
  44566. Is there a way for C-Kermit to automatically know what line "/dev/whatever"
  44567. you are using upon startup?
  44568.  
  44569. Fast Cart
  44570. --
  44571.  
  44572. ===============================================================================
  44573. Fast Cart (Arcell B. Frazier)         Phone: (617)225-8945
  44574. 500 Memorial Drive #372             "But, my friends call me Fast Cart...
  44575. Cambridge, MA  02139-4326          Well, at least I prefer that anyway!"
  44576. fastcart@mit.edu
  44577.  
  44578. From news@columbia.edu Wed Nov  2 14:38:30 1994
  44579. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11853
  44580.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 2 Nov 1994 10:48:40 -0500
  44581. Received: by apakabar.cc.columbia.edu id AA02594
  44582.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 2 Nov 1994 10:48:39 -0500
  44583. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!newsfeed.pitt.edu!dsinc!netnews.upenn.edu!netnews.CC.Lehigh.EDU!CS1.CC.Lehigh.EDU!cdl0
  44584. From: cdl0@CS1.CC.Lehigh.EDU (CONRAD DANIEL LLOYD-KNIGHT)
  44585. Newsgroups: comp.protocols.kermit.misc
  44586. Subject: Re: vax/mac
  44587. Date: 2 Nov 1994 14:38:30 GMT
  44588. Lines: 20
  44589. Message-Id: <398896$u56@fidoii.cc.lehigh.edu>
  44590. References: <391b4j$o3h@rebecca.albany.edu> <392v5r$jb4@apakabar.cc.columbia.edu>
  44591. Nntp-Posting-Host: cs1.cc.lehigh.edu
  44592. X-Newsreader: TIN [version 1.2 PL2]
  44593. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  44594.  
  44595. Frank da Cruz (fdc@fdc.cc.columbia.edu) wrote:
  44596. > You should be able to Open the initialization file from Kermit and then
  44597. > Save it, which will make it into a Kermit document.  After that, clicking
  44598. > on it should start Kermit and have it execute the commands.
  44599.  
  44600. hmm.... i have another question. i tried this myself and everything seemed to 
  44601. work ok until i opened up mackermit by clicking on the kermit document (which
  44602. didn't have an icon...). i got a warning saying that this document had _not_
  44603. been created by mackermit (it had! it said KR09 in the Get Info window...) 
  44604. and i had to choose to open it with mackermit manually. then, as soon as it
  44605. had opened i got an error message - something to the effect of "application 
  44606. 'mackermit' has unexpectedly quit due to unknown error number 28". what am i 
  44607. doing wrong?
  44608.  
  44609. -- bye!  :) -- pgp2 key available - just ask. or finger cdl0@cs1.cc.lehigh.edu
  44610.  
  44611. On the day the wall came down
  44612. The Ship of Fools had finally run aground
  44613. Promises lit up the night like paper doves in flight
  44614.                                 - "A Great Day for Freedom", Pink Floyd.
  44615.  
  44616. From news@columbia.edu Wed Nov  2 14:46:08 1994
  44617. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12290
  44618.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 2 Nov 1994 10:54:32 -0500
  44619. Received: by apakabar.cc.columbia.edu id AA03126
  44620.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 2 Nov 1994 10:54:31 -0500
  44621. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!gatech!cs.utk.edu!martha.utk.edu!martha.utcc.utk.edu!tolnas
  44622. From: tolnas@sun1.engr.utk.edu (Barry Tolnas)
  44623. Newsgroups: comp.protocols.kermit.misc
  44624. Subject: Re: .kermrc question (UNIX)
  44625. Date: 02 Nov 1994 14:46:08 GMT
  44626. Organization: University of Tennessee, Knoxville
  44627. Lines: 22
  44628. Message-Id: <TOLNAS.94Nov2094608@sun1.engr.utk.edu>
  44629. References: <TOLNAS.94Nov1135606@microsys3.engr.utk.edu> <396hic$3um@chopin.udel.edu>
  44630.     <FASTCART.94Nov2020153@marinara.MIT.EDU>
  44631. Nntp-Posting-Host: sun1.engr.utk.edu
  44632. In-Reply-To: fastcart@MIT.EDU's message of 2 Nov 1994 07:01:46 GMT
  44633. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  44634.  
  44635. In article <FASTCART.94Nov2020153@marinara.MIT.EDU> fastcart@MIT.EDU (Arcell B. Frazier) writes:
  44636.  
  44637. >   Is there a way for C-Kermit to automatically know what line "/dev/whatever"
  44638. >   you are using upon startup?
  44639. >   
  44640. >   Fast Cart
  44641.  
  44642. set line /dev/whatever
  44643.  
  44644.  
  44645. Barry
  44646.  
  44647. --
  44648.  _____                                          ____   ____
  44649. /\  _ `.                                       ' __,\ ',__.`
  44650. \ \ \_\ \     __     _ __   _ __   __  __           |
  44651.  \ \  _ <   /'__`\  /\`'__\/\`'__\/\ \/\ \          /
  44652.   \ \ \_\ \/\ \_\.\_\ \ \/ \ \ \/ \ \ \_\ \         L_, 
  44653.    \ \____/\ \__/.\_\\ \_\  \ \_\  \/`____ \     ._______/
  44654.     \/___/  \/__/\/_/ \/_/   \/_/   `/___/> \       ---
  44655.                                        /\___/
  44656.                                        \/__/ 
  44657.  
  44658. From news@columbia.edu Wed Nov  2 14:20:19 1994
  44659. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13396
  44660.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 2 Nov 1994 11:09:20 -0500
  44661. Received: by apakabar.cc.columbia.edu id AA04253
  44662.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 2 Nov 1994 11:09:18 -0500
  44663. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!ub!newserve!br00031
  44664. From: br00031@bingsuns.cc.binghamton.edu ()
  44665. Newsgroups: comp.protocols.kermit.misc
  44666. Subject: Manuals and speed
  44667. Date: 2 Nov 1994 14:20:19 GMT
  44668. Organization: Binghamton University, Binghamton, NY
  44669. Lines: 18
  44670. Message-Id: <398773$5am@bingnet1.cc.binghamton.edu>
  44671. Nntp-Posting-Host: 128.226.1.2
  44672. X-Newsreader: TIN [version 1.2 PL2]
  44673. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  44674.  
  44675. Can anyone tell me the source of information on writing scripts for
  44676. kermit.  I would like to automaticly upload and download Mail from my
  44677. pc to my Unix server.  It would be nice if the script could be set to
  44678. run on startup.
  44679. Kermit is the only modem transfer program and protical on my
  44680. university server.  It is not the program I normaly use, but appears
  44681. to havefeatures that others do not. I would like to learn more about
  44682. it. 
  44683.  Is it possible to make the kermit transfer rate faster.  I have a
  44684. 14.4 modem.  My university runs a 9600 line. My other software will
  44685. transfer around 1500 using zmodem.  If I get Kermit to run at 260, I
  44686. am lucky.  What can I do to make my faster.  Thank you to all who may
  44687. respond
  44688. ATZ
  44689.  
  44690.  
  44691.  
  44692.  
  44693.  
  44694. From news@columbia.edu Wed Nov  2 14:57:12 1994
  44695. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14181
  44696.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 2 Nov 1994 11:21:32 -0500
  44697. Received: by apakabar.cc.columbia.edu id AA05405
  44698.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 2 Nov 1994 11:21:30 -0500
  44699. Newsgroups: comp.protocols.kermit.misc
  44700. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!howland.reston.ans.net!ix.netcom.com!netcom.com!jzero
  44701. From: jzero@netcom.com (Jim Nakamura)
  44702. Subject: Echoing modem responses
  44703. Message-Id: <jzeroCynAvC.IB8@netcom.com>
  44704. Organization: NETCOM On-line Communication Services (408 261-4700 guest)
  44705. Date: Wed, 2 Nov 1994 14:57:12 GMT
  44706. Lines: 5
  44707. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  44708.  
  44709.  
  44710. How does one echo modem responses from a kermit script?
  44711.  
  44712. -- 
  44713. jzero@netcom.com
  44714.  
  44715. From news@columbia.edu Wed Nov  2 16:32:14 1994
  44716. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15204
  44717.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 2 Nov 1994 11:32:23 -0500
  44718. Received: by apakabar.cc.columbia.edu id AA06227
  44719.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 2 Nov 1994 11:32:20 -0500
  44720. Path: news.columbia.edu!usenet
  44721. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  44722. Newsgroups: comp.protocols.kermit.misc
  44723. Subject: Re: Echoing modem responses
  44724. Date: 2 Nov 1994 16:32:14 GMT
  44725. Organization: Columbia University
  44726. Lines: 20
  44727. Message-Id: <398eue$628@apakabar.cc.columbia.edu>
  44728. References: <jzeroCynAvC.IB8@netcom.com>
  44729. Nntp-Posting-Host: fdc.cc.columbia.edu
  44730. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  44731.  
  44732. In article <jzeroCynAvC.IB8@netcom.com> jzero@netcom.com (Jim Nakamura)  
  44733. writes:
  44734. > How does one echo modem responses from a kermit script?
  44735. Depending on which Kermit version you have, the command is:
  44736.  
  44737.   SET TAKE ECHO ON
  44738.   SET TAKE-ECHO ON
  44739.  
  44740. etc.  If you are using C-Kermit 5A, the command you really want is:
  44741.  
  44742.   SET DIAL DISPLAY ON
  44743.  
  44744. MS-DOS Kermit dialing scripts already display all the interactions with
  44745. the modem.
  44746.  
  44747. Please read the appropriate manuals, "Using MS-DOS Kermit" or "Using
  44748. C-Kermit" for complete details.
  44749.  
  44750. - Frank
  44751.  
  44752. From news@columbia.edu Wed Nov  2 16:35:54 1994
  44753. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15511
  44754.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 2 Nov 1994 11:36:07 -0500
  44755. Received: by apakabar.cc.columbia.edu id AA06610
  44756.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 2 Nov 1994 11:36:03 -0500
  44757. Path: news.columbia.edu!usenet
  44758. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  44759. Newsgroups: comp.protocols.kermit.misc
  44760. Subject: Re: Manuals and speed
  44761. Date: 2 Nov 1994 16:35:54 GMT
  44762. Organization: Columbia University
  44763. Lines: 173
  44764. Message-Id: <398f5a$6ee@apakabar.cc.columbia.edu>
  44765. References: <398773$5am@bingnet1.cc.binghamton.edu>
  44766. Nntp-Posting-Host: fdc.cc.columbia.edu
  44767. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  44768.  
  44769. In article <398773$5am@bingnet1.cc.binghamton.edu>  
  44770. br00031@bingsuns.cc.binghamton.edu () writes:
  44771. > Can anyone tell me the source of information on writing scripts for
  44772. > kermit.  I would like to automaticly upload and download Mail from my
  44773. > pc to my Unix server.  It would be nice if the script could be set to
  44774. > run on startup.
  44775. > Kermit is the only modem transfer program and protical on my
  44776. > university server.  It is not the program I normaly use, but appears
  44777. > to havefeatures that others do not. I would like to learn more about
  44778. > it. 
  44779. >
  44780. Information on manuals enclosed below.
  44781.  
  44782. >  Is it possible to make the kermit transfer rate faster.  I have a
  44783. > 14.4 modem.  My university runs a 9600 line. My other software will
  44784. > transfer around 1500 using zmodem.  If I get Kermit to run at 260, I
  44785. > am lucky.  What can I do to make my faster.  Thank you to all who may
  44786. > respond
  44787. >  
  44788. Yes, Kermit will do 1500, 1600 or higher if you use long packets, sliding
  44789. windows, and control-character unprefixing.  Also enable compression and
  44790. error correction in the modem, and use hardware flow control (our dialing
  44791. scripts do this for you automatically).  For details about long packets and
  44792. sliding windows, read the manual(s).  Control-character unprefixing is a
  44793. relatively recent addition, documented in the appropriate "update" file,
  44794. KERMIT.UPD (MS-DOS Kermit) or ckcker.upd (C-Kermit).
  44795.  
  44796.                            KERMIT BOOK LIST
  44797.  
  44798. -----------------------------------------------------------------------
  44799.  
  44800. MS-DOS Kermit, full-featured communications software for IBM and
  44801. compatible PCs with DOS or Windows, is documented in:
  44802.  
  44803.     Christine M. Gianone, Using MS-DOS Kermit, Second Edition, Digital
  44804.     Press / Butterworth-Heinemann, Woburn, MA, 1992, 345 pages, ISBN
  44805.     1-55558-082-3.  Packaged with version 3.13 of MS-DOS Kermit for the
  44806.     IBM PC, PS/2, and compatibles on a 3.5-inch diskette.  In computer
  44807.     and book stores, or order direct from Columbia University or from
  44808.     Digital Press.
  44809.  
  44810. A German-language edition is also available:
  44811.  
  44812.     Christine M. Gianone, MS-DOS Kermit, das universelle
  44813.     Kommunikationsprogramm, Verlag Heinz Heise, Hannover, Germany
  44814.     (1991), 414 pages.  Packaged with version 3.12 of MS-DOS Kermit for
  44815.     the IBM PC, PS/2, and compatibles on a 5.25-inch diskette,
  44816.     including German- language help files.  Deutsch von Gisbert W.
  44817.     Selke.  ISBN 3-88229-006-4.
  44818.  
  44819. And a French-language edition:
  44820.  
  44821.     Christine M. Gianone, Kermit MS-DOS mode d'emploi, Deuxieme
  44822.     edition, Heinz Schiefer & Cie., Versailles (1993), 406 pages.
  44823.     Packaged with version 3.11 of MS-DOS Kermit for the IBM PC, PS/2,
  44824.     and compatibles on a 5.25-inch diskette.  Adaption francaise: Jean
  44825.     Dutertre.  ISBN 2-901143-20-2.
  44826.  
  44827. There is also a Japanese book about MS-DOS Kermit, concentrating on the
  44828. NEC PC9801:
  44829.  
  44830.     Hirofumi Fujii and Fukuko Yuasa, MS-Kermit Nyumon, Computer Today
  44831.     Library 6, Saiensu-Sha Co., Ltd., publishers (1993), 160 pages.
  44832.     ISBN 4-7819-0669-9 C3355 P1854E.
  44833.  
  44834. -----------------------------------------------------------------------
  44835.  
  44836. C-Kermit 5A, full-function communication software for UNIX, VMS, OS/2,
  44837. AOS/VS, OS-9, Apollo Aegis, the Commodore Amiga, and the Atari ST is
  44838. documented in:
  44839.  
  44840.     Frank da Cruz and Christine M. Gianone, "Using C-Kermit", Digital
  44841.     Press / Butterworth-Heinemann, Woburn, MA, 1993, 514 pages, ISBN
  44842.     1-55558-108-0.  In computer and book stores, or order direct from
  44843.     Columbia University or from Digital Press.
  44844.  
  44845. A German-language edition is also available:
  44846.  
  44847.     Frank da Cruz und Christine M. Gianone, C-Kermit--Einfuhrung und
  44848.     Referenz, Verlag Heinz Heise, Hannover, Germany (1994).  ISBN
  44849.     3-88229-023-4.  Deutsch von Gisbert W. Selke.
  44850.  
  44851. -----------------------------------------------------------------------
  44852.  
  44853. The Kermit File transfer protocol is specified in the following book,
  44854. which also includes tutorials on computers, file systems, data
  44855. communications, and using Kermit:
  44856.  
  44857.     Frank da Cruz, Kermit, A File Transfer Protocol, Digital Press /
  44858.     Butterworth-Heinemann, Worburn, MA, 1987, 379 pages, ISBN
  44859.     0-932376-88-6.  In computer and book stores, or order direct from
  44860.     Columbia University or from Digital Press.
  44861.  
  44862. -----------------------------------------------------------------------
  44863.  
  44864. Kermit software for more than 400 different computers and operating
  44865. systems is available from Columbia University.  Contact Columbia for a
  44866. free Kermit software catalog.
  44867.  
  44868.  
  44869. -----------------------------------------------------------------------
  44870.  
  44871.                                  HOW TO ORDER
  44872.  
  44873. -----------------------------------------------------------------------
  44874.  
  44875. ENGLISH-LANGUAGE KERMIT BOOKS:
  44876.  
  44877.    1. In computer and book stores, or order direct from the publisher,
  44878.       Digital Press / Butterworth-Heinemann with MasterCard, Visa, or
  44879.       American Express:
  44880.  
  44881.           +1 800 366-2665     (Woburn, MA office for USA & Canada)
  44882.           +44 993 58521       (Rushden, England office for Europe)
  44883.           +61 2 372-5511      (Chatswood, NSW office for Australia & NZ)
  44884.           +65 220-3684        (Singapore office for Asia)
  44885.  
  44886.    2. From Columbia University:
  44887.  
  44888.           Kermit Development and Distribution
  44889.           Columbia University Academic Information Systems
  44890.           612 West 115th Street
  44891.           New York, NY  10025  USA
  44892.           Tel.  +1 212 854-3703
  44893.           Fax.  +1 212 663-8202
  44894.           E-Mail: kermit@columbia.edu
  44895.  
  44896.       Domestic and overseas orders accepted.  Add $5 US for shipping
  44897.       outside of North America.  Orders may be paid by MasterCard or
  44898.       Visa, or prepaid by check in US dollars.  Add $35 bank fee for
  44899.       checks not drawn on a US bank.  Price includes shipping.  Do not
  44900.       include sales tax.  Quantity discounts are available.
  44901.       Single-copy US prices (in US dollars):
  44902.  
  44903.           Using MS-DOS Kermit  . . . . . . . . . . . . . . . . .$ 34.95
  44904.           Using C-Kermit . . . . . . . . . . . . . . . . . . . .$ 34.95
  44905.           Kermit, A File Transfer Protocol . . . . . . . . . . .$ 29.95
  44906.           All three  . . . . . . . . . . . . . . . . . . . . . .$ 79.95
  44907.  
  44908. -----------------------------------------------------------------------
  44909.  
  44910. GERMAN-LANGUAGE KERMIT BOOKS:
  44911.  
  44912.         MS-DOS Kermit, das universelle Kommunikationsprogramm: DM 69,00
  44913.         C-Kermit--Einfuhrung und Referenz: . . . . . . . . . . DM 90,00
  44914.  
  44915.         Verlag Heinz Heise GmbH & Co. KG
  44916.         Helstorfer Strasse 7
  44917.         D-30625 Hannover, GERMANY
  44918.         Tel.  +49 (05 11) 53 52-0
  44919.         Fax.  +49 (05 11) 53 53-1 29
  44920.  
  44921. -----------------------------------------------------------------------
  44922.  
  44923. FRENCH:  Kermit MS-DOS Mode d'Emploi:  . . . . . . . . . . .  FF 495,00
  44924.  
  44925.         Heinz Schiefer & Cie.
  44926.         45 rue Henri de Regnier
  44927.         F-78000 Versailles, FRANCE
  44928.         Tel.  +33 39 53 95 26
  44929.         Fax.  +33 39 02 39 71
  44930.  
  44931. -----------------------------------------------------------------------
  44932.  
  44933. JAPANESE:  MS-Kermit Nyumon: . . . . . . . . . . . . . . . . .  1,800 Y
  44934.  
  44935.         Saiensu-Sha Co., Ltd.
  44936.         Abe-toku Building
  44937.         2-4 Kanda-suda cho, Chiyoda-ku
  44938.         Tokyo 101, JAPAN
  44939.         Tel.  +81-3-3256-1091
  44940.  
  44941. -----------------------------------------------------------------------
  44942.  
  44943. From news@columbia.edu Wed Nov  2 08:00:45 1994
  44944. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18098
  44945.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 2 Nov 1994 12:10:07 -0500
  44946. Received: by apakabar.cc.columbia.edu id AA09242
  44947.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 2 Nov 1994 12:10:03 -0500
  44948. Newsgroups: comp.protocols.kermit.misc
  44949. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news.sprintlink.net!EU.net!sun4nl!news.nic.surfnet.nl!rlmix1.rulimburg.nl!ICA.rulimburg.nl!Hans.Verhoeven
  44950. From: Hans.Verhoeven@ica.rulimburg.nl (H. Verhoeven                               )
  44951. Subject: printing 132 columns
  44952. Message-Id: <Hans.Verhoeven.2.783763245@ICA.rulimburg.nl>
  44953. Summary: kermit & print controller
  44954. Sender: news@rlmix1.rulimburg.nl (USENET News System)
  44955. Organization: University of Limburg, Maastricht, Holland
  44956. Date: Wed, 2 Nov 1994 08:00:45 GMT
  44957. Lines: 8
  44958. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  44959.  
  44960. We use Kermit 3.13 with a VAX-ALPHA HOST application on a Banyan Network (TCP/IP
  44961. protocol). The application can control the network printer by means of the 'printer controller'
  44962. sequences (CSI 5 i to turn the hardcopy printer on and CSI 4 i to turn it off again). Of course
  44963. Kermit will do the trick, however we would like to have the ability of printing in compressed
  44964. mode (or better: to select a printer driver like HP, IBM etc) because most of the files we print
  44965. are 132 columns width and we like to print it on a network printer. By the way it is of course
  44966. not possible to change the printer setting by the well-known printer switchboard.
  44967. Can anybody give me a suggestion on how to tackle this problem?
  44968.  
  44969. From news@columbia.edu Wed Nov  2 20:22:37 1994
  44970. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04641
  44971.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 2 Nov 1994 15:22:42 -0500
  44972. Received: by apakabar.cc.columbia.edu id AA27391
  44973.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 2 Nov 1994 15:22:40 -0500
  44974. Path: news.columbia.edu!usenet
  44975. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  44976. Newsgroups: comp.protocols.kermit.misc
  44977. Subject: MS-DOS Kermit 3.14 and ISDN
  44978. Date: 2 Nov 1994 20:22:37 GMT
  44979. Organization: Columbia University
  44980. Lines: 31
  44981. Message-Id: <398sed$qnp@apakabar.cc.columbia.edu>
  44982. Nntp-Posting-Host: fdc.cc.columbia.edu
  44983. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  44984.  
  44985. We have added the following words to the KERMIT.UPD file, but we do
  44986. not have any verification that these items actually work with MS-DOS
  44987. Kermit 3.14.  Could somebody -- most likely in Germany or Austria --
  44988. with an ISDN interface and a CAPI driver and an ISDN phone please check
  44989. and report and/or clarify?  Thanks!
  44990.  
  44991. Integrated Services Digital Network (ISDN) boards serve ISDN digital
  44992. telephones, which provide (among other things) 64Kbps data transmission.
  44993. ISDN boards are not serial boards, and therefore require special drivers.
  44994. There is a Common Application Programming Interface (CAPI) for ISDN
  44995. boards, defined by German Telecom and German ISDN manufacturers.  CAPI
  44996. drivers are supplied by ISDN board manufacturers.  MS-DOS Kermit 3.14 does
  44997. not support CAPI directly, but shims exist that allow Kermit to be used
  44998. with ISDN anyway, by disguising CAPI as the Fossil, Int 14, or Packet
  44999. Driver interface, all of which are supported by Kermit.  Examples:
  45000.  
  45001.  . cFos is a shareware fossil driver for CAPI, written by Martin Winkler &
  45002.    Christoph Lueders of Bonn, Germany.  It is available via anonymous ftp
  45003.    from ftp.dfv.rwth-aachen.de:/pub/network/isdn/cfos, or by dialup to the
  45004.    Zaphods BBS in Bonn: +49 228 9111041.  It supports both the Fossil and
  45005.    Int 14 interfaces, and presents ISDN controls in the form of Hayes-like
  45006.    AT commands.
  45007.  
  45008.  . PAPI is free software, GNU Public License, providing a SLIP-class
  45009.    packet driver interface to a CAPI driver, written by Dietmar Friede,
  45010.    Friede Consulting, Munich (Muenchen), German <capi@friede.de>.
  45011.    Available via ftpmail to ftp.germany.eu.net (send email to
  45012.    archive-server@germany.eu.net containing the word "help"), or by ftp
  45013.    directly from ftp.dfv.rwth-aachen.de.
  45014.  
  45015. - Frank
  45016.  
  45017. From news@columbia.edu Wed Nov  2 20:06:39 1994
  45018. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19122
  45019.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 2 Nov 1994 18:08:41 -0500
  45020. Received: by apakabar.cc.columbia.edu id AA25647
  45021.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 2 Nov 1994 18:08:40 -0500
  45022. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news.sprintlink.net!nwnexus!news.halcyon.com!coho!ken
  45023. From: ken@coho.halcyon.com (Ken Pizzini)
  45024. Newsgroups: comp.protocols.kermit.misc
  45025. Subject: Re: .kermrc question (UNIX)
  45026. Date: 2 Nov 1994 20:06:39 GMT
  45027. Organization: What, me?
  45028. Lines: 8
  45029. Message-Id: <398rgf$3q9@news.halcyon.com>
  45030. References: <TOLNAS.94Nov1135606@microsys3.engr.utk.edu> <396hic$3um@chopin.udel.edu> <FASTCART.94Nov2020153@marinara.mit.edu>
  45031. Nntp-Posting-Host: coho.halcyon.com
  45032. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  45033.  
  45034. In article <FASTCART.94Nov2020153@marinara.mit.edu>,
  45035. Arcell B. Frazier <fastcart@MIT.EDU> wrote:
  45036. >Is there a way for C-Kermit to automatically know what line "/dev/whatever"
  45037. >you are using upon startup?
  45038.  
  45039. I'm not sure I'm clear on your requirements -- does /dev/tty do what you want?
  45040.  
  45041.         --Ken Pizzini
  45042.  
  45043. From news@columbia.edu Wed Nov  2 20:28:01 1994
  45044. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20640
  45045.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 2 Nov 1994 18:29:34 -0500
  45046. Received: by apakabar.cc.columbia.edu id AA27472
  45047.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 2 Nov 1994 18:29:32 -0500
  45048. Path: news.columbia.edu!sol.ctr.columbia.edu!math.ohio-state.edu!cs.utexas.edu!convex!news.duke.edu!news.mathworks.com!udel!gatech!howland.reston.ans.net!news.sprintlink.net!news.charm.net!news.charm.net!cnordin
  45049. From: cnordin@charm.net (Craig Nordin)
  45050. Newsgroups: comp.protocols.kermit.misc
  45051. Subject: Re: .kermrc question (UNIX)
  45052. Date: 2 Nov 1994 15:28:01 -0500
  45053. Organization: Charm.Net : Baltimore Local Internet Access, Hon
  45054. Lines: 31
  45055. Message-Id: <cnordin.783807949@news.charm.net>
  45056. References: <TOLNAS.94Nov1135606@microsys3.engr.utk.edu>
  45057. Nntp-Posting-Host: sowebo.charm.net
  45058. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  45059.  
  45060.  
  45061. Note the \v(ttyfd)  variable.  Is that what you are talking about?
  45062.  
  45063. Or are you just talking about "set line /dev/ttyp01" type commands?
  45064. If so, just dump it into your .kermrc
  45065.  
  45066. --------------------------- my .kermrc --------------------------------
  45067. set local off 
  45068. set flow rts
  45069. set buffer 50000 50000
  45070. set win 0
  45071. set send pac 4096
  45072. set rec pac 4096
  45073. set window 3 
  45074. set block 1
  45075. set file type bi
  45076. define rz !rz -e \%1 \%2 \%3 <&\v(ttyfd) >&\v(ttyfd)
  45077. define sz !sz -e \%1 \%2 \%3 <&\v(ttyfd) >&\v(ttyfd)
  45078. define sb !sb -e \%1 \%2 \%3 <&\v(ttyfd) >&\v(ttyfd)
  45079. define rb !rb -e \%1 \%2 \%3 <&\v(ttyfd) >&\v(ttyfd)
  45080. define sx !sx -e \%1 \%2 \%3 <&\v(ttyfd) >&\v(ttyfd)
  45081. define rx !rx -e \%1 \%2 \%3 <&\v(ttyfd) >&\v(ttyfd)
  45082.  
  45083. -----------------------------------------------------------------------
  45084.  
  45085.  
  45086. -- 
  45087.  
  45088. See the Emerald on the Matrix?   Baltimore, Maryland Access to the Internet
  45089.    That's Charm.Net Hon!       E-Mail: info@charm.net  Voice:(410) 558.3900
  45090.   http://www.charm.net/    "guest" login, no password   Data:(410) 558.3300
  45091.  
  45092. From news@columbia.edu Wed Nov  2 23:12:50 1994
  45093. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24209
  45094.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 2 Nov 1994 19:17:06 -0500
  45095. Received: by apakabar.cc.columbia.edu id AA01793
  45096.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 2 Nov 1994 19:17:05 -0500
  45097. Newsgroups: comp.protocols.kermit.misc
  45098. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!gatech!psuvax1!news.cc.swarthmore.edu!netnews.upenn.edu!news.drexel.edu!news.ge.com!knight.vf.ge.com!not-for-mail
  45099. From: tcmayo@eng106.PSF.GE.COM (Tom Mayo)
  45100. Subject: Emulation Turned Off In Scripts?
  45101. Message-Id: <3996di$4je@eng106.PSF.GE.COM>
  45102. Lines: 16
  45103. Sender: news@knight.vf.ge.com
  45104. Nntp-Posting-Host: eng106.psf.ge.com
  45105. Organization: Martin Marietta Defense Systems
  45106. Date: Wed, 2 Nov 1994 23:12:50 GMT
  45107. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  45108.  
  45109. With Kermit 3.14 does terminal emulation get turned off when
  45110. running a script with TAKE?  I would like to use a script to
  45111. connect me to a VAX server that handles TCP/IP connections,
  45112. but I can't find a way to have Kermit respond back with the
  45113. proper primary DA response.  It just hangs with a "c" on the
  45114. screen.  (Primary DA request is CSI [ c).
  45115.  
  45116. I would appreciate help with this.
  45117.  
  45118. Thanks.
  45119.  
  45120. -Tom
  45121.  
  45122.  
  45123.  
  45124.  
  45125.  
  45126. From news@columbia.edu Thu Nov  3 00:34:41 1994
  45127. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25486
  45128.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 2 Nov 1994 19:34:49 -0500
  45129. Received: by apakabar.cc.columbia.edu id AA03198
  45130.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 2 Nov 1994 19:34:47 -0500
  45131. Path: news.columbia.edu!usenet
  45132. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  45133. Newsgroups: comp.protocols.kermit.misc
  45134. Subject: Re: Emulation Turned Off In Scripts?
  45135. Date: 3 Nov 1994 00:34:41 GMT
  45136. Organization: Columbia University
  45137. Lines: 24
  45138. Message-Id: <399b71$33l@apakabar.cc.columbia.edu>
  45139. References: <3996di$4je@eng106.PSF.GE.COM>
  45140. Nntp-Posting-Host: fdc.cc.columbia.edu
  45141. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  45142.  
  45143. In article <3996di$4je@eng106.PSF.GE.COM> tcmayo@eng106.PSF.GE.COM (Tom Mayo)  
  45144. writes:
  45145. > With Kermit 3.14 does terminal emulation get turned off when
  45146. > running a script with TAKE? 
  45147. >
  45148. As the lawyers say, "asked and answered".  About once per day on this
  45149. newsgroup.  Again:
  45150.  
  45151.   If the terminal emulator is active, the command parser is not active.
  45152.   If the command parser is active, the terminal emulator is not active.
  45153.  
  45154. You would not want it any other way, at least not if you cared about
  45155. speed in the terminal emulator.
  45156.  
  45157. > I would like to use a script to
  45158. > connect me to a VAX server that handles TCP/IP connections,
  45159. > but I can't find a way to have Kermit respond back with the
  45160. > proper primary DA response.  It just hangs with a "c" on the
  45161. > screen.  (Primary DA request is CSI [ c).
  45162. Just read the KERMIT.BWR file that comes with MS-DOS Kermit 3.14, section
  45163. 18, Script Programming.
  45164.  
  45165. - Frank
  45166.  
  45167. From news@columbia.edu Thu Nov  3 08:11:53 1994
  45168. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20724
  45169.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 3 Nov 1994 04:28:04 -0500
  45170. Received: by apakabar.cc.columbia.edu id AA03930
  45171.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 3 Nov 1994 04:28:03 -0500
  45172. Path: news.columbia.edu!panix!zip.eecs.umich.edu!newsxfer.itd.umich.edu!gatech!howland.reston.ans.net!news.sprintlink.net!uunet!psinntp!barilvm!news.datasrv.co.il!zeus.datasrv.co.il!4dsoft
  45173. From: 4dsoft@zeus.datasrv.co.il (4th Dimension)
  45174. Newsgroups: comp.protocols.kermit.misc
  45175. Subject: Re: Zmodem on kermit
  45176. Date: 3 Nov 1994 08:11:53 GMT
  45177. Organization: DataServe LTD. (An Internet Access Provider), Israel.
  45178. Lines: 12
  45179. Message-Id: <39a609$a11@israel-info.datasrv.co.il>
  45180. References: <397oln$cp3@israel-info.datasrv.co.il>
  45181. Nntp-Posting-Host: zeus.datasrv.co.il
  45182. X-Newsreader: TIN [version 1.2 PL2]
  45183. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  45184.  
  45185. 4th Dimension (4dsoft@zeus.datasrv.co.il) wrote:
  45186. : Hi,
  45187.  
  45188. : Im looking for a way to perform file transfer via the Zmodem utilities
  45189. : while working in kermit.
  45190.  
  45191. : Examples For UNIX platforms will be appreciates.
  45192.  
  45193. :           Thanks in advance,
  45194.  
  45195. :                Itamar
  45196.  
  45197.  
  45198. From news@columbia.edu Thu Nov  3 05:24:58 1994
  45199. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24125
  45200.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 3 Nov 1994 06:11:13 -0500
  45201. Received: by apakabar.cc.columbia.edu id AA07958
  45202.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 3 Nov 1994 06:11:04 -0500
  45203. Path: news.columbia.edu!sol.ctr.columbia.edu!caen!newsxfer.itd.umich.edu!gatech!howland.reston.ans.net!wupost!simtel.coast.net!w8sdz
  45204. From: w8sdz@SimTel.Coast.NET (Keith Petersen)
  45205. Newsgroups: comp.protocols.kermit.misc
  45206. Subject: Re: Zmodem on kermit
  45207. Message-Id: <9411030524.AA13559@SimTel.Coast.NET>
  45208. Date: Thu, 3 Nov 1994 05:24:58 GMT
  45209. Organization: SimTel, the Coast to Coast Software Repository (tm)
  45210. References: <397oln$cp3@israel-info.datasrv.co.il>
  45211. Lines: 19
  45212. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  45213.  
  45214. 4dsoft@zeus.datasrv.co.il (4th Dimension) writes:
  45215. >Im looking for a way to perform file transfer via the Zmodem utilities
  45216. >while working in kermit.
  45217. >
  45218. >Examples will be appreciates.
  45219.  
  45220. ;
  45221. ;Thanks to Jason Merrill <jmerrill@jarthur.claremont.edu> for this
  45222. ;define to add zmodem protocol transfers. Add it to your mskermit.ini.
  45223. define rz run dsz F ha cts est 0 14400 rz \%1 \%2,
  45224. define sz run dsz F ha both est 0 14400 pB4096 sz \%1 \%2,
  45225. define t run dsz F ha cts est 0 14400 t \%1 \%2,
  45226.  
  45227. Keith
  45228. --
  45229. Keith Petersen
  45230. Moderator of comp.archives.msdos.announce and the MSDOS-Ann mailing list
  45231. Internet: w8sdz@SimTel.Coast.NET     or       w8sdz@Vela.ACS.Oakland.Edu
  45232. Uucp: uunet!umich!vela!w8sdz                       BITNET: w8sdz@OAKLAND
  45233.  
  45234. From news@columbia.edu Thu Nov  3 13:44:56 1994
  45235. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01167
  45236.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 3 Nov 1994 18:14:31 -0500
  45237. Received: by apakabar.cc.columbia.edu id AA17998
  45238.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 3 Nov 1994 18:14:29 -0500
  45239. Path: news.columbia.edu!panix!cyberspam!not-for-mail
  45240. From: cisitm@albert.cad.cea.fr
  45241. Newsgroups: alt.spam,comp.protocols.kermit.misc
  45242. Subject: cmsg cancel <39b3jl$b3m@anemone.saclay.cea.fr>
  45243. Control: cancel <39b3jl$b3m@anemone.saclay.cea.fr>
  45244. Date: 03 Nov 1994 17:44:56 EDT
  45245. Organization: Just say no to Spam.
  45246. Lines: 3
  45247. Sender: nospam@nowhere.nohow.edu.
  45248. Approved: nospam@nowhere.nohow.edu
  45249. Message-Id: <cancel.39b3jl$b3m@anemone.saclay.cea.fr>
  45250. Reply-To: na48985@anon.penet.fi
  45251. Nntp-Posting-Host: panix2.panix.com
  45252. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  45253.  
  45254. This spam has been cancelled.  
  45255.  
  45256. Comments to: na48985@anon.penet.fi.
  45257.  
  45258. From news@columbia.edu Thu Nov  3 20:31:22 1994
  45259. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08461
  45260.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 3 Nov 1994 20:08:10 -0500
  45261. Received: by apakabar.cc.columbia.edu id AA26814
  45262.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 3 Nov 1994 20:08:09 -0500
  45263. Newsgroups: comp.protocols.kermit.misc
  45264. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!hookup!news.mathworks.com!europa.eng.gtefsd.com!news.umbc.edu!haven.umd.edu!purdue!mozo.cc.purdue.edu!news.physics.purdue.edu!london.physics.purdue.edu!korty
  45265. From: korty@london.physics.purdue.edu (Andrew J. Korty)
  45266. Subject: 132-column Mode and MS-Kermit Verbs
  45267. Message-Id: <CypL0A.1L1@physics.purdue.edu>
  45268. Sender: usenet@physics.purdue.edu (News Administration)
  45269. Organization: Purdue University Department of Physics
  45270. Date: Thu, 3 Nov 1994 20:31:22 GMT
  45271. Lines: 23
  45272. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  45273.  
  45274. My friend and I just discovered the world of 132-column mode, and we
  45275. have a few questions for all who are familiar with its numerous
  45276. wonders.
  45277.  
  45278. 1.  My friend wants to define a key to switch between the modes while
  45279. in terminal emulation mode, but we couldn't find a verb that does
  45280. this.  Is using verbs the only way?  Also, we'd like to know if
  45281. there's a way to define a key to escape back to command mode and
  45282. execute a Kermit command (of any kind).
  45283.  
  45284. 2.  I'm running DOS Kermit under OS/2 in a full-screen DOS session.
  45285. When I use 132-column mode, everything works fine until I switch back
  45286. to the desktop, at which time the video proceeds to get completely
  45287. screwed up.  The only way to save things is to go back to Kermit and
  45288. do an Alt-X (which puts the screen back in 80 column-mode) and then go
  45289. back to the desktop (which is still screwed up) and activate a screen
  45290. saver or something to refresh the screen.
  45291.  
  45292. 3.  Also, Kermit's documentation claims that it can auto-detect the
  45293. screen width requested by the host, but doesn't seem to.
  45294.  
  45295. Thanks,
  45296. Andy
  45297.  
  45298. From news@columbia.edu Thu Nov  3 16:33:04 1994
  45299. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02369
  45300.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 4 Nov 1994 06:30:10 -0500
  45301. Received: by apakabar.cc.columbia.edu id AA28036
  45302.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 4 Nov 1994 06:30:09 -0500
  45303. Path: news.columbia.edu!sol.ctr.columbia.edu!math.ohio-state.edu!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  45304. From: jrd@cc.usu.edu (Joe Doupnik)
  45305. Newsgroups: comp.protocols.kermit.misc
  45306. Subject: Re: 132-column Mode and MS-Kermit Verbs
  45307. Message-Id: <1994Nov3.223304.31997@cc.usu.edu>
  45308. Date: 3 Nov 94 22:33:04 MDT
  45309. References: <CypL0A.1L1@physics.purdue.edu>
  45310. Organization: Utah State University
  45311. Lines: 42
  45312. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  45313.  
  45314. In article <CypL0A.1L1@physics.purdue.edu>, korty@london.physics.purdue.edu (Andrew J. Korty) writes:
  45315. > My friend and I just discovered the world of 132-column mode, and we
  45316. > have a few questions for all who are familiar with its numerous
  45317. > wonders.
  45318. > 1.  My friend wants to define a key to switch between the modes while
  45319. > in terminal emulation mode, but we couldn't find a verb that does
  45320. > this.  Is using verbs the only way?  Also, we'd like to know if
  45321. > there's a way to define a key to escape back to command mode and
  45322. > execute a Kermit command (of any kind).
  45323.  
  45324.     Check the user's manual, the book "Using MS-DOS Kermit" whose
  45325. details are given on the Kermit HELP screen and the *.UPD files issued
  45326. since then. You can assign a Kermit macro as the definition of a key. 
  45327. The macro can do anything you could say at the Kermit prompt, including 
  45328. issue SET TERM commands. Syntax is   SET KEY keycode {\Kmacroname}
  45329. and the \K must be inside the curly braces.
  45330.  
  45331. > 2.  I'm running DOS Kermit under OS/2 in a full-screen DOS session.
  45332. > When I use 132-column mode, everything works fine until I switch back
  45333. > to the desktop, at which time the video proceeds to get completely
  45334. > screwed up.  The only way to save things is to go back to Kermit and
  45335. > do an Alt-X (which puts the screen back in 80 column-mode) and then go
  45336. > back to the desktop (which is still screwed up) and activate a screen
  45337. > saver or something to refresh the screen.
  45338.  
  45339.     It's between OS/2 and your video driver and your monitor.
  45340. Please remember that there is no standard on 132 column video modes so
  45341. that OS/2 has no idea of what state the display is in and hence little
  45342. idea of what to do about it. Better video drivers could help more,
  45343. however.
  45344.  
  45345. > 3.  Also, Kermit's documentation claims that it can auto-detect the
  45346. > screen width requested by the host, but doesn't seem to.
  45347.  
  45348.     Maybe you mean the opposite here. Hosts can request 80 or 132
  45349. columns from VTxxx terminals, nothing more. Kermit obeys those requests.
  45350. Perhaps you mean that Kermit can tell the host its current screen size
  45351. upon request, which is true. There is no "auto-detect" in this arrangement,
  45352. by either host or terminal emulator. Kermit can also report screen size
  45353. in Telnet Options packets, if the host agrees to do so.
  45354.     Joe D.
  45355.  
  45356. From news@columbia.edu Fri Nov  4 00:48:00 1994
  45357. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09022
  45358.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 4 Nov 1994 09:15:42 -0500
  45359. Received: by apakabar.cc.columbia.edu id AA06403
  45360.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 4 Nov 1994 09:15:38 -0500
  45361. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!torn!news.ccs.queensu.ca!news
  45362. From: mike@ccs.queensu.ca (Mike Smith)
  45363. Newsgroups: comp.protocols.kermit.misc
  45364. Subject: Kermit and PCMCIA Cards
  45365. Date: 4 Nov 1994 00:48:00 GMT
  45366. Organization: Queen's University, Kingston
  45367. Lines: 11
  45368. Distribution: world
  45369. Message-Id: <39c0c0$g3a@knot.queensu.ca>
  45370. Nntp-Posting-Host: ccs-sparc2.ccs
  45371. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  45372.  
  45373. Can anyone offer any general advice on getting Kermit to work with
  45374. PCMCIA cards?  They are not explicitly mentioned in the beware file
  45375. but they seem to be trouble.  Is it just that the people I've met
  45376. don't have their card installed properly?  Is there something about
  45377. these beasts that make them nastier to support than an internal modem?
  45378.  
  45379. -- 
  45380.  
  45381.  Mike Smith                                  mike@ccs.queensu.ca
  45382.  Queen's University                          Michael.D.Smith@QueensU.CA
  45383.  Computing and Communications Services       (613) 545-2024
  45384.  
  45385. From news@columbia.edu Fri Nov  4 13:32:59 1994
  45386. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10163
  45387.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 4 Nov 1994 09:31:58 -0500
  45388. Received: by apakabar.cc.columbia.edu id AA07691
  45389.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 4 Nov 1994 09:31:57 -0500
  45390. Newsgroups: comp.archives.msdos.d,comp.protocols.kermit.misc
  45391. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!pipex!uknet!bcc.ac.uk!link-1.ts.bcc.ac.uk!uclyjjd
  45392. From: uclyjjd@ucl.ac.uk (Julian Daley)
  45393. Subject: Connection timer is MS-Kermit ?
  45394. Message-Id: <1994Nov4.133259.43506@ucl.ac.uk>
  45395. Date: Fri, 4 Nov 1994 13:32:59 GMT
  45396. Organization: University College London
  45397. Lines: 16
  45398. Xref: news.columbia.edu comp.archives.msdos.d:9223 comp.protocols.kermit.misc:991
  45399. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  45400.  
  45401. Qmodem has a clock on the status line which shows time of day if
  45402. off-line and the connection time when on-line.  
  45403.  
  45404. Is there any way to get a similar feature with MS-Kermit 3.13 ?  Any
  45405. sort of timer would do, for instance the 'dial' command could be 
  45406. pathched to reset the timer.
  45407.  
  45408. This feature is very useful for those of us who have to pay our
  45409. 'phone bills !
  45410.  
  45411. Julian.
  45412. --
  45413.         _____________________________________________________
  45414.        | Julian Daley,                     j.daley@ucl.ac.uk |
  45415.        | Department Clinical Physics, Guys Hospital, London. |
  45416.         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  45417.  
  45418. From news@columbia.edu Fri Nov  4 17:33:06 1994
  45419. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00625
  45420.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 4 Nov 1994 13:43:20 -0500
  45421. Received: by apakabar.cc.columbia.edu id AA27682
  45422.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 4 Nov 1994 13:43:15 -0500
  45423. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!europa.eng.gtefsd.com!howland.reston.ans.net!EU.net!uunet!israel-info.datasrv.co.il!not-for-mail
  45424. From: 4dsoft@zeus.datasrv.co.il (4th Dimension)
  45425. Newsgroups: comp.protocols.kermit.misc
  45426. Organization: DataServe LTD. (An Internet Access Provider), Israel.
  45427. Message-Id: <-39a609$a11@israel-info.datasrv.co.il>
  45428. Control: cancel <39a609$a11@israel-info.datasrv.co.il>
  45429. References: <397oln$cp3@israel-info.datasrv.co.il>
  45430. X-Newsreader: TIN [version 1.2 PL2]
  45431. Subject: cmsg cancel <39a609$a11@israel-info.datasrv.co.il>
  45432. Date: Fri, 4 Nov 1994 17:33:06 GMT
  45433. Approved: news@israel-info.datasrv.co.il
  45434. Lines: 1
  45435. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  45436.  
  45437. cancel <39a609$a11@israel-info.datasrv.co.il>
  45438.  
  45439. From news@columbia.edu Thu Nov  3 21:45:26 1994
  45440. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08613
  45441.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 4 Nov 1994 15:42:09 -0500
  45442. Received: by apakabar.cc.columbia.edu id AA07580
  45443.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 4 Nov 1994 15:42:02 -0500
  45444. Path: news.columbia.edu!sol.ctr.columbia.edu!news.moneng.mei.com!hookup!swrinde!sgiblab!idiom.com!idiom!jason
  45445. From: jason@idiom.com (Jason Venner)
  45446. Newsgroups: comp.protocols.kermit.misc
  45447. Subject: C Kermit and meta keys
  45448. Date: 03 Nov 1994 21:45:26 GMT
  45449. Organization: Idiom Consulting / Berkeley, CA  USA
  45450. Lines: 8
  45451. Distribution: world
  45452. Message-Id: <JASON.94Nov3134526@idiom.com>
  45453. Nntp-Posting-Host: idiom.com
  45454. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  45455.  
  45456.  
  45457. I use C-Kermit on my linux machine and dial into various unix hosts.
  45458.  
  45459. Kermit does not seem to honor the meta key.
  45460. Is there a way to make it recongnize 8 bit characters and pass them through
  45461. to the remote side?
  45462.  
  45463. Thanks -- Jason
  45464.  
  45465. From news@columbia.edu Fri Nov  4 22:31:29 1994
  45466. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24877
  45467.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 4 Nov 1994 19:56:11 -0500
  45468. Received: by apakabar.cc.columbia.edu id AA08084
  45469.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 4 Nov 1994 19:56:09 -0500
  45470. Path: news.columbia.edu!panix!news.mathworks.com!europa.eng.gtefsd.com!howland.reston.ans.net!news.sprintlink.net!nwnexus!news.halcyon.com!chinook!ken
  45471. From: ken@chinook.halcyon.com (Ken Pizzini)
  45472. Newsgroups: comp.protocols.kermit.misc
  45473. Subject: Re: C Kermit and meta keys
  45474. Date: 4 Nov 1994 22:31:29 GMT
  45475. Organization: What, me?
  45476. Lines: 11
  45477. Message-Id: <39eco1$h7k@news.halcyon.com>
  45478. References: <JASON.94Nov3134526@idiom.com>
  45479. Nntp-Posting-Host: chinook.halcyon.com
  45480. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  45481.  
  45482. In article <JASON.94Nov3134526@idiom.com>,
  45483. Jason Venner <jason@idiom.com> wrote:
  45484. >I use C-Kermit on my linux machine and dial into various unix hosts.
  45485. >
  45486. >Kermit does not seem to honor the meta key.
  45487. >Is there a way to make it recongnize 8 bit characters and pass them through
  45488. >to the remote side?
  45489.  
  45490. set term byte 8
  45491.  
  45492.         --Ken Pizzini
  45493.  
  45494. From news@columbia.edu Fri Nov  4 11:25:45 1994
  45495. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28413
  45496.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 4 Nov 1994 21:30:27 -0500
  45497. Received: by apakabar.cc.columbia.edu id AA13409
  45498.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 4 Nov 1994 21:30:26 -0500
  45499. Path: news.columbia.edu!sol.ctr.columbia.edu!caen!usenet.cis.ufl.edu!usenet.eel.ufl.edu!news.mathworks.com!europa.eng.gtefsd.com!howland.reston.ans.net!agate!dog.ee.lbl.gov!news.cs.utah.edu!cc.usu.edu!jrd
  45500. From: jrd@cc.usu.edu (Joe Doupnik)
  45501. Newsgroups: comp.protocols.kermit.misc
  45502. Subject: Re: Kermit and PCMCIA Cards
  45503. Message-Id: <1994Nov4.172545.32061@cc.usu.edu>
  45504. Date: 4 Nov 94 17:25:45 MDT
  45505. References: <39c0c0$g3a@knot.queensu.ca>
  45506. Distribution: world
  45507. Organization: Utah State University
  45508. Lines: 18
  45509. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  45510.  
  45511. In article <39c0c0$g3a@knot.queensu.ca>, mike@ccs.QueensU.CA (Mike Smith) writes:
  45512. > Can anyone offer any general advice on getting Kermit to work with
  45513. > PCMCIA cards?  They are not explicitly mentioned in the beware file
  45514. > but they seem to be trouble.  Is it just that the people I've met
  45515. > don't have their card installed properly?  Is there something about
  45516. > these beasts that make them nastier to support than an internal modem?
  45517. ----------
  45518.     No, those little guys aren't specifically mentioned because we
  45519. lack any useful information to offer (translation: I have no laptop. $$$)
  45520. Folks will have to struggle to load the proper mysterious drivers to handle 
  45521. the plug-in card and hope for the best.
  45522.         I can imagine anything requiring user intervention will cause
  45523. difficulties to tech support persons, but the proper channel for help with 
  45524. such cards is probably the card mfr or the laptop maker. The task is to
  45525. make the card look like a proper serial port (or Ethernet adapter, etc)
  45526. and that's the purpose of those drivers. Only afterward does Kermit come 
  45527. into the picture.
  45528.     Joe D.
  45529.  
  45530. From news@columbia.edu Fri Nov  4 11:28:40 1994
  45531. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28418
  45532.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 4 Nov 1994 21:30:39 -0500
  45533. Received: by apakabar.cc.columbia.edu id AA13415
  45534.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 4 Nov 1994 21:30:39 -0500
  45535. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!hookup!news.mathworks.com!udel!gatech!howland.reston.ans.net!agate!dog.ee.lbl.gov!news.cs.utah.edu!cc.usu.edu!jrd
  45536. From: jrd@cc.usu.edu (Joe Doupnik)
  45537. Newsgroups: comp.protocols.kermit.misc
  45538. Subject: Re: C Kermit and meta keys
  45539. Message-Id: <1994Nov4.172840.32062@cc.usu.edu>
  45540. Date: 4 Nov 94 17:28:40 MDT
  45541. References: <JASON.94Nov3134526@idiom.com>
  45542. Distribution: world
  45543. Organization: Utah State University
  45544. Lines: 16
  45545. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  45546.  
  45547. In article <JASON.94Nov3134526@idiom.com>, jason@idiom.com (Jason Venner) writes:
  45548. > I use C-Kermit on my linux machine and dial into various unix hosts.
  45549. > Kermit does not seem to honor the meta key.
  45550. > Is there a way to make it recongnize 8 bit characters and pass them through
  45551. > to the remote side?
  45552. > Thanks -- Jason
  45553. ---------
  45554.     There isn't such a key. Perhaps you are still thinking of how
  45555. Emacs chooses to interpret the local keyboard. Hint: ALT sends nothing,
  45556. it only modifies other keypresses, and the modification has nothing at
  45557. all to do with adding a high bit. Ditto Control and Shift. Emacs is
  45558. wierd this way.
  45559.     Joe D.
  45560.  
  45561. From news@columbia.edu Fri Nov  4 04:02:41 1994
  45562. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17936
  45563.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 5 Nov 1994 05:41:07 -0500
  45564. Received: by apakabar.cc.columbia.edu id AA04843
  45565.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 5 Nov 1994 05:41:06 -0500
  45566. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!agate!dog.ee.lbl.gov!news.cs.utah.edu!cc.usu.edu!jrd
  45567. From: jrd@cc.usu.edu (Joe Doupnik)
  45568. Newsgroups: comp.archives.msdos.d,comp.protocols.kermit.misc
  45569. Subject: Re: Connection timer is MS-Kermit ?
  45570. Message-Id: <1994Nov4.100241.32014@cc.usu.edu>
  45571. Date: 4 Nov 94 10:02:41 MDT
  45572. References: <1994Nov4.133259.43506@ucl.ac.uk>
  45573. Organization: Utah State University
  45574. Lines: 14
  45575. Xref: news.columbia.edu comp.archives.msdos.d:9232 comp.protocols.kermit.misc:996
  45576. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  45577.  
  45578. In article <1994Nov4.133259.43506@ucl.ac.uk>, uclyjjd@ucl.ac.uk (Julian Daley) writes:
  45579. > Qmodem has a clock on the status line which shows time of day if
  45580. > off-line and the connection time when on-line.  
  45581. > Is there any way to get a similar feature with MS-Kermit 3.13 ?  Any
  45582. > sort of timer would do, for instance the 'dial' command could be 
  45583. > pathched to reset the timer.
  45584. > This feature is very useful for those of us who have to pay our
  45585. > 'phone bills !
  45586. -------
  45587.     No timer, thanks. Suggest you use the portable, low maintainence,
  45588. compact, arm mounted (or even the table top model) time mechanism.
  45589.         Joe D.
  45590.  
  45591. From news@columbia.edu Fri Nov  4 18:54:25 1994
  45592. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21885
  45593.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 5 Nov 1994 08:01:14 -0500
  45594. Received: by apakabar.cc.columbia.edu id AA09927
  45595.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 5 Nov 1994 08:01:13 -0500
  45596. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!uhog.mit.edu!news.mathworks.com!europa.eng.gtefsd.com!howland.reston.ans.net!news.moneng.mei.com!uwm.edu!reuter.cse.ogi.edu!cs.uoregon.edu!news.uoregon.edu!netnews.nwnet.net!news.u.washington.edu!dwg5400
  45597. From: dwg5400@u.washington.edu (Dale Gombert)
  45598. Newsgroups: comp.protocols.kermit.misc
  45599. Subject: PRIME, Kermit, PCs, & 7-bit: help?
  45600. Date: 4 Nov 1994 18:54:25 GMT
  45601. Organization: University of Washington, Seattle
  45602. Lines: 7
  45603. Sender: dwg5400@u.washington.edu
  45604. Distribution: us
  45605. Message-Id: <39e011$ej5@nntp1.u.washington.edu>
  45606. Nntp-Posting-Host: hardy.u.washington.edu
  45607. Summary: We need help with this combination
  45608. Keywords: PRIME, kermit, PC, 7-bit
  45609. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  45610.  
  45611. Help! We have several dozen users now familiar with ProComm Plus on PCs,
  45612. and they routinely transfer ASCII and binary files with a PRIME computer.
  45613. Our TMS-3 Renex communication controller will only recognize M71, but our 
  45614. internal kermit protocol only works with N81. We would like to be able to
  45615. set our ProComm Pluses to enable this transfer. Email responses would be
  45616. perfectly welcome, in preference to Usenet.
  45617.  
  45618.  
  45619. From news@columbia.edu Sat Nov  5 13:32:49 1994
  45620. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23618
  45621.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 5 Nov 1994 09:00:34 -0500
  45622. Received: by apakabar.cc.columbia.edu id AA12468
  45623.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 5 Nov 1994 09:00:32 -0500
  45624. Newsgroups: comp.protocols.kermit.misc
  45625. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!ix.netcom.com!netcom.com!jzero
  45626. From: jzero@netcom.com (Jim Nakamura)
  45627. Subject: Re: Echoing modem responses
  45628. Message-Id: <jzeroCysqyp.I56@netcom.com>
  45629. Organization: NETCOM On-line Communication Services (408 261-4700 guest)
  45630. References: <jzeroCynAvC.IB8@netcom.com> <398eue$628@apakabar.cc.columbia.edu>
  45631. Date: Sat, 5 Nov 1994 13:32:49 GMT
  45632. Lines: 33
  45633. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  45634.  
  45635. fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  45636.  
  45637. | In article <jzeroCynAvC.IB8@netcom.com> jzero@netcom.com (Jim Nakamura)  
  45638. | writes:
  45639. | > How does one echo modem responses from a kermit script?
  45640. | > 
  45641. | Depending on which Kermit version you have, the command is:
  45642.  
  45643. |   SET TAKE ECHO ON
  45644. |   SET TAKE-ECHO ON
  45645.  
  45646. | etc.  If you are using C-Kermit 5A, the command you really want is:
  45647.  
  45648. |   SET DIAL DISPLAY ON
  45649.  
  45650. | MS-DOS Kermit dialing scripts already display all the interactions with
  45651. | the modem.
  45652.  
  45653. | Please read the appropriate manuals, "Using MS-DOS Kermit" or "Using
  45654. | C-Kermit" for complete details.
  45655.  
  45656. | - Frank
  45657.  
  45658.     Thanks.
  45659.  
  45660.     I have C-Kermit 5A.  I also have your book "Using C-Kermit".
  45661.     (Very good book.)
  45662.  
  45663.     Jim.
  45664.  
  45665.     
  45666. -- 
  45667. jzero@netcom.com
  45668.  
  45669. From news@columbia.edu Tue Nov  1 16:35:50 1994
  45670. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13683
  45671.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 6 Nov 1994 09:26:55 -0500
  45672. Received: by apakabar.cc.columbia.edu id AA04488
  45673.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 6 Nov 1994 09:26:54 -0500
  45674. Path: news.columbia.edu!panix!news.mathworks.com!europa.eng.gtefsd.com!howland.reston.ans.net!news.sprintlink.net!tequesta.gate.net!not-for-mail
  45675. From: stickler@tequesta.gate.net (Patrick Stickler)
  45676. Newsgroups: comp.protocols.kermit.misc
  45677. Subject: UNIX C-Kermit and 14.4 modem, Help!
  45678. Date: 1 Nov 1994 11:35:50 -0500
  45679. Organization: CyberGate, Inc.  Florida
  45680. Lines: 20
  45681. Message-Id: <395qp6$167h@inca.gate.net>
  45682. Nntp-Posting-Host: inca.gate.net
  45683. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  45684.  
  45685. I'm trying to use C-Kermit (C-Kermit 5A(162) ALPHA, 3 Nov 90, SUNOS 4.0, BSD)
  45686. with a 14.4 V42.bis/MNP5 modem, but the SET SPEED command does not specify
  45687. a 14400 baud rate, and the speed between the host and modem should in any
  45688. case be at least 57600 bps or faster to fully allow maximum V42.bis 
  45689. throughput.
  45690.  
  45691. Could someone suggest a possible solution, or perhaps some other UNIX
  45692. terminal emulator that supports kermit at fast speeds?
  45693.  
  45694. Any help will be greately appreciated.
  45695.  
  45696. Thanks,
  45697.  
  45698. ===============================================================================
  45699.   Patrick Stickler                             Information Group
  45700.   Senior Computer Systems Engineer             Martin Marietta Corporation
  45701.   stickler@.gate.net                           Orlando, Florida 32825 U.S.A.
  45702. ===============================================================================
  45703.  
  45704.  
  45705.  
  45706. From news@columbia.edu Tue Nov  1 16:58:08 1994
  45707. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14283
  45708.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 6 Nov 1994 09:47:46 -0500
  45709. Received: by apakabar.cc.columbia.edu id AA05272
  45710.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 6 Nov 1994 09:47:45 -0500
  45711. Path: news.columbia.edu!panix!news.mathworks.com!europa.eng.gtefsd.com!gatech!howland.reston.ans.net!cs.utexas.edu!natinst.com!xenon.brooks.af.mil!floyd.brooks.af.mil!smd
  45712. From: smd@floyd.brooks.af.mil (Sten Drescher)
  45713. Newsgroups: comp.protocols.kermit.misc
  45714. Subject: Re: MS-KERMIT (VT320) termcap entry for unix -- what is it?
  45715. Date: 01 Nov 1994 16:58:08 GMT
  45716. Organization: Armstrong Laboratory Intelligent Training Branch
  45717. Lines: 27
  45718. Distribution: comp
  45719. Message-Id: <SMD.94Nov1105808@floyd.brooks.af.mil>
  45720. References: <1994Oct15.143200.6064@imada.ou.dk>
  45721. Reply-To: smd@floyd.brooks.af.mil
  45722. Nntp-Posting-Host: floyd.brooks.af.mil
  45723. To: ravn@imada.ou.dk (Thorbjoern Ravn Andersen)
  45724. In-Reply-To: ravn@imada.ou.dk's message of 15 Oct 1994 09:32:00 -0500
  45725.  
  45726.     I've cobbled together a termcap entry for mskermit 3.13.  I'd
  45727. welcome any improvements to it.
  45728.  
  45729. --- cut here ---
  45730. K7|mskermit313|vt300|vt320|Kermit 3.13 emulation of vt320:\
  45731.         :am:da:db:es:hs:mi:ms:xn:xo:bs:pt:\
  45732.         :co#80:li#24:kn#3:\
  45733.         :AL=\E[%dL:DC=\E[%dP:DL=\E[%dM:DO=\E[%dB:IC=\E[%d@:\
  45734.         :LE=\E[%dD:RI=\E[%dC:UP=\E[%dA:ae=^O:al=\E[L:as=^N:\
  45735.         :cd=\E[J:ce=\E[K:cl=\E[;H\E[2J:cm=\E[%i%d;%dH:\
  45736.         :cs=\E[%i%d;%dr:ct=\E[3g:dc=\E[P:dl=\E[M:\
  45737.         :ds=\E[2$~\r\E[1$}\E[K\E[0$}\E[1$~:ei=\E[4l:fs=\E[0$}:\
  45738.         :ho=\E[H:im=\E[4h:\
  45739.         :is=\E[?1;3;5l\E[20l\E[?7h\E[12h\E[r\E[24;1H:k1=\EOP:\
  45740.         :k2=\EOQ:k3=\EOR:k4=\EOS:k6=\E[17~:k7=\E[18~:\
  45741.         :k8=\E[19~:k9=\E[20~:kb=\b:kd=\EOB:ke=\E[?1l\E>:\
  45742.         :kh=\E[H:kl=\EOD:kr=\EOC:ks=\E[?1h\E=:ku=\EOA:l1=pf1:\
  45743.         :l2=pf2:l3=pf3:l4=pf4:nd=\E[C:r1=\E[?3l:\
  45744.         :r2=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h:rc=\E8:\
  45745.         :rf=/usr/lib/tabset/vt100:sc=\E7:se=\E[27m:so=\E[7m:\
  45746.         :sr=\EM:st=\EH:ts=\E[2$~\E[1$}\E[1;%dH:ue=\E[24m:\
  45747.         :up=\E[A:us=\E[4m:vb=\E[?5h\E[?5l:ve=\E[?25h:\
  45748.         :vi=\E[?25l:vs=\E[?25h:ko=dl,ho,al:
  45749. --- cut here ---
  45750.  
  45751.     I hope this helps.
  45752. --
  45753.  
  45754. From news@columbia.edu Tue Nov  1 17:12:31 1994
  45755. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14565
  45756.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 6 Nov 1994 09:59:41 -0500
  45757. Received: by apakabar.cc.columbia.edu id AA05690
  45758.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 6 Nov 1994 09:59:40 -0500
  45759. Path: news.columbia.edu!panix!not-for-mail
  45760. From: mgflax@panix.com (Marshall G. Flax)
  45761. Newsgroups: comp.protocols.kermit.misc
  45762. Subject: Re: Receiving files "automatically"
  45763. Date: 1 Nov 1994 12:12:31 -0500
  45764. Organization: Currently, _extremely_ disorganized
  45765. Lines: 27
  45766. Message-Id: <395stv$7f9@panix2.panix.com>
  45767. References: <DRW.94Nov1095927@runge.mit.edu>
  45768. Nntp-Posting-Host: panix2.panix.com
  45769. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  45770.  
  45771. In article <DRW.94Nov1095927@runge.mit.edu>,
  45772. Dale R. Worley <drw@runge.mit.edu> wrote:
  45773. >Also, is there a "dial this number and connect me to it" command?
  45774. >So far, I have been stuck doing a CONNECT and then manually issuing
  45775. >ATDT to the modem.
  45776.  
  45777. Yes, the "DIAL" macro, quite extensively documented in the text
  45778. files in the MSKERMIT .zip file.
  45779.  
  45780. >And why is it that Kermit comes with almost no documentation?  Or is
  45781. >the rumor that Kermit is "free" just a front for selling books?
  45782.  
  45783. They quite freely admit that the books help finance the KERMIT project.
  45784. And there's nothing wrong with that -- it's a wonderful free program,
  45785. which you can learn more about (and help support) by buying their books.
  45786.  
  45787. marshall
  45788.  
  45789. >Dale
  45790. >
  45791. >Dale Worley        Dept. of Math., MIT        drw@math.mit.edu
  45792. >--
  45793. >Does the name "Pavlov" ring a bell?
  45794.  
  45795.  
  45796. -- 
  45797. [Marshall G. Flax -- 718-256-3482 -- 8776 16th Ave #2, Brooklyn, NY 11214-5802]
  45798.  
  45799. From news@columbia.edu Sun Nov  6 15:00:55 1994
  45800. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15695
  45801.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 6 Nov 1994 10:34:13 -0500
  45802. Received: by apakabar.cc.columbia.edu id AA07447
  45803.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 6 Nov 1994 10:34:12 -0500
  45804. Path: news.columbia.edu!panix!news.mathworks.com!news2.near.net!das-news2.harvard.edu!fas-news.harvard.edu!husc.harvard.edu!scws4.harvard.edu!mlevin
  45805. From: mlevin@scws4.harvard.edu (Michael Levin)
  45806. Newsgroups: comp.protocols.kermit.misc,comp.unix.osf.osf1
  45807. Subject: anyone got kermit on Alpha? where's the ftp site?
  45808. Date: 6 Nov 1994 15:00:55 GMT
  45809. Organization: Harvard University, Cambridge, MA
  45810. Lines: 11
  45811. Distribution: usa
  45812. Message-Id: <39ir37$gfl@scunix2.harvard.edu>
  45813. Nntp-Posting-Host: scws4.harvard.edu
  45814. Xref: news.columbia.edu comp.protocols.kermit.misc:1002 comp.unix.osf.osf1:6156
  45815. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  45816.  
  45817.  
  45818.     I am trying to get kermit running on a DEC Alpha/OSF-1. I got a
  45819. kermit distribution from cc.watsun.columbia.edu, but it seems
  45820. like an old one, since the makefile doesn't mention Alphas anywhere,
  45821. and when I put it together by hand it doesn't seem to be able to connect
  45822. to my workstation's kermit (Ultrix on a Decstation). Does anyone have
  45823. kermit running on a DEC alpha, and if so, can you either email me a
  45824. compressed, uuencoded executable, or tell me where you got the source
  45825. distribution?  Please email me at mlevin@husc7.harvard.edu. Thanks.
  45826.  
  45827. Mike Levin
  45828.  
  45829. From news@columbia.edu Sun Nov  6 15:52:42 1994
  45830. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16206
  45831.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 6 Nov 1994 10:55:02 -0500
  45832. Received: by apakabar.cc.columbia.edu id AA08336
  45833.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 6 Nov 1994 10:54:59 -0500
  45834. Newsgroups: comp.protocols.kermit.misc,comp.unix.osf.osf1
  45835. Path: news.columbia.edu!panix!news.mathworks.com!europa.eng.gtefsd.com!howland.reston.ans.net!usenet.ins.cwru.edu!news.csuohio.edu!sledge!cowboy
  45836. From: cowboy@trans.csuohio.edu (Joe Rosenfeld)
  45837. Subject: Re: anyone got kermit on Alpha? where's the ftp site?
  45838. Message-Id: <1994Nov6.155242.2102@news.csuohio.edu>
  45839. Followup-To: comp.protocols.kermit.misc,comp.unix.osf.osf1
  45840. Sender: news@news.csuohio.edu (USENET News System)
  45841. Organization: Cleveland State University
  45842. X-Newsreader: TIN [version 1.2 PL2]
  45843. References: <39ir37$gfl@scunix2.harvard.edu>
  45844. Distribution: usa
  45845. Date: Sun, 6 Nov 1994 15:52:42 GMT
  45846. Lines: 16
  45847. Xref: news.columbia.edu comp.protocols.kermit.misc:1003 comp.unix.osf.osf1:6157
  45848. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  45849.  
  45850. Michael Levin (mlevin@scws4.harvard.edu) wrote:
  45851.  
  45852. :     I am trying to get kermit running on a DEC Alpha/OSF-1. I got a
  45853. : kermit distribution from cc.watsun.columbia.edu, but it seems
  45854. : like an old one, since the makefile doesn't mention Alphas anywhere,
  45855. : and when I put it together by hand it doesn't seem to be able to connect
  45856. : to my workstation's kermit (Ultrix on a Decstation). Does anyone have
  45857. : kermit running on a DEC alpha, and if so, can you either email me a
  45858. : compressed, uuencoded executable, or tell me where you got the source
  45859. : distribution?  Please email me at mlevin@husc7.harvard.edu. Thanks.
  45860.  
  45861. You can get the latest (still test) version of kermit from the following
  45862. URL:
  45863.  
  45864. ftp://kermit.columbia.edu:/kermit/test/cku190.tar.gz
  45865. ftp://kermit.columbia/edu:/kermit/test/cku190.tar.Z
  45866.  
  45867. From news@columbia.edu Sun Nov  6 17:10:11 1994
  45868. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18750
  45869.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 6 Nov 1994 12:10:13 -0500
  45870. Received: by apakabar.cc.columbia.edu id AA12115
  45871.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 6 Nov 1994 12:10:12 -0500
  45872. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  45873. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  45874. Newsgroups: comp.protocols.kermit.misc
  45875. Subject: Re: 132-column Mode and MS-Kermit Verbs
  45876. Date: 6 Nov 1994 17:10:11 GMT
  45877. Organization: Columbia University
  45878. Lines: 50
  45879. Message-Id: <39j2lj$bqh@apakabar.cc.columbia.edu>
  45880. References: <CypL0A.1L1@physics.purdue.edu> <1994Nov3.223304.31997@cc.usu.edu>
  45881. Nntp-Posting-Host: watsun.cc.columbia.edu
  45882. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  45883.  
  45884. In article <1994Nov3.223304.31997@cc.usu.edu>,
  45885. Joe Doupnik <jrd@cc.usu.edu> wrote:
  45886. >In article <CypL0A.1L1@physics.purdue.edu>, korty@london.physics.purdue.edu (Andrew J. Korty) writes:
  45887. >> My friend and I just discovered the world of 132-column mode, and we
  45888. >> have a few questions for all who are familiar with its numerous
  45889. >> wonders.
  45890. >> 
  45891. >> 2.  I'm running DOS Kermit under OS/2 in a full-screen DOS session.
  45892. >> When I use 132-column mode, everything works fine until I switch back
  45893. >> to the desktop, at which time the video proceeds to get completely
  45894. >> screwed up.  The only way to save things is to go back to Kermit and
  45895. >> do an Alt-X (which puts the screen back in 80 column-mode) and then go
  45896. >> back to the desktop (which is still screwed up) and activate a screen
  45897. >> saver or something to refresh the screen.
  45898. >
  45899. >    It's between OS/2 and your video driver and your monitor.
  45900. >Please remember that there is no standard on 132 column video modes so
  45901. >that OS/2 has no idea of what state the display is in and hence little
  45902. >idea of what to do about it. Better video drivers could help more,
  45903. >however.
  45904.  
  45905.  
  45906. The problem is that by using 132 column mode you have put the display
  45907. hardware into a state which OS/2 does not understand.  Try the following:
  45908. Start a full screen DOS session.  Then execute the command "SVGA ON".
  45909. If the SVGA command cannot be found, change to the \OS2 directory of your
  45910. boot drive.  This command builds a table of each video mode so that OS/2
  45911. can safely restore switch back and forth when full screen programs directly
  45912. manipulate the screen size.
  45913.  
  45914. x
  45915. x
  45916. x
  45917. x
  45918. x
  45919. x
  45920.  
  45921.  
  45922. x
  45923. x
  45924. x
  45925. x
  45926. x
  45927.  
  45928. x
  45929.  
  45930. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  45931. "C-Kermit: available on more platforms than any other communications software."
  45932. "Kermit FTP: sending files whenever and wherever they are needed."
  45933. *NEW* OS/2 version available: ftp kermit.columbia.edu /kermit/bin/ckoker.zip 
  45934.  
  45935. From news@columbia.edu Wed Nov  2 15:18:49 1994
  45936. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00586
  45937.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 6 Nov 1994 20:45:18 -0500
  45938. Received: by apakabar.cc.columbia.edu id AA26368
  45939.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 6 Nov 1994 20:43:27 -0500
  45940. Path: news.columbia.edu!panix!news.mathworks.com!europa.eng.gtefsd.com!gatech!news-feed-1.peachnet.edu!news.Gsu.EDU!gsusgi2.gsu.edu!not-for-mail
  45941. From: isgtmb@gsusgi2.gsu.edu (Tom Bowden)
  45942. Newsgroups: comp.protocols.kermit.misc
  45943. Subject: Re: Windows version of Kermit??
  45944. Date: 2 Nov 1994 10:18:49 -0500
  45945. Organization: Georgia State University
  45946. Lines: 17
  45947. Message-Id: <398akp$i36@gsusgi2.gsu.edu>
  45948. References: <17060C991S85.MSIMONDS@wsuvm1.csc.wsu.edu> <395hdt$3a8@apakabar.cc.columbia.edu>
  45949. Nntp-Posting-Host: gsusgi2.gsu.edu
  45950. X-Newsreader: NN version 6.5.0 #3 (NOV)
  45951. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  45952.  
  45953. fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  45954.  
  45955. >The only recommended and supported Kermit program for Windows is MS-DOS
  45956. >Kermit; current version 3.13, with 3.14 in Beta test.  It is not a native
  45957. >Windows program, but it works fine in an Enhanced-mode window.
  45958.  
  45959. >Anonymous ftp to kermit.columbia.edu, directory kermit/test/bin, binary
  45960. >mode, file mstibm.zip for 3.14-Beta.
  45961.  
  45962. PFMJI, but there is something I've wondered about MS-Kermit and Windows:  
  45963. Since you include a kermit.pif in the MS-Kermit package, why don't you 
  45964. include a kermit.ico?  The one in /kermit/a/wkkico.boo would do very nicely.
  45965.  
  45966. -- 
  45967. Tom Bowden in Atlanta
  45968. isgtmb@gsusgi2.gsu.edu
  45969.  
  45970.  
  45971. From news@columbia.edu Sun Nov  6 21:22:27 1994
  45972. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05567
  45973.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 6 Nov 1994 21:22:27 -0500
  45974. Received: by apakabar.cc.columbia.edu id AA28055
  45975.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 6 Nov 1994 21:11:11 -0500
  45976. Path: news.columbia.edu!panix!news.mathworks.com!uhog.mit.edu!bloom-beacon.mit.edu!senator-bedfellow.mit.edu!math.mit.edu!drw
  45977. From: drw@markov.mit.edu (Dale R. Worley)
  45978. Newsgroups: comp.protocols.kermit.misc
  45979. Subject: Re: Receiving files "automatically"
  45980. Date: 2 Nov 94 11:10:01
  45981. Organization: National Institute for Lameness, Cambridge, MA, USA
  45982. Lines: 16
  45983. Message-Id: <DRW.94Nov2111001@markov.mit.edu>
  45984. References: <DRW.94Nov1095927@runge.mit.edu> <395stv$7f9@panix2.panix.com>
  45985. Nntp-Posting-Host: markov.mit.edu
  45986. In-Reply-To: mgflax@panix.com's message of 1 Nov 1994 12:12:31 -0500
  45987. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  45988.  
  45989. In article <395stv$7f9@panix2.panix.com> mgflax@panix.com (Marshall G. Flax) writes:
  45990.    Yes, the "DIAL" macro, quite extensively documented in the text
  45991.    files in the MSKERMIT .zip file.
  45992.  
  45993. It would have been more useful if you'd mentioned what the command is
  45994. ("DO DIAL number") and what file it is documented in (KERMIT.UPD).
  45995. Saying that the documentation is somewhere in the Kermit directory is
  45996. almost useless -- MS-DOS doesn't come with a grep that can handle
  45997. wildcards.
  45998.  
  45999. Dale
  46000.  
  46001. Dale Worley        Dept. of Math., MIT        drw@math.mit.edu
  46002. --
  46003. He was the sort of guy who would lie awake at night wondering whether
  46004. "anal retentive" was hyphenated.
  46005.  
  46006. From news@columbia.edu Wed Nov  2 15:35:26 1994
  46007. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05597
  46008.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 6 Nov 1994 21:22:33 -0500
  46009. Received: by apakabar.cc.columbia.edu id AA27851
  46010.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 6 Nov 1994 21:07:10 -0500
  46011. Path: news.columbia.edu!panix!news.mathworks.com!news.duke.edu!convex!cs.utexas.edu!math.ohio-state.edu!magnus.acs.ohio-state.edu!csn!col.hp.com!news.dtc.hp.com!hpscit.sc.hp.com!hpuerci.atl.hp.com!hpuerca.atl.hp.com!johnp
  46012. From: johnp@hpuerca.atl.hp.com (John Pezzano)
  46013. Newsgroups: comp.protocols.kermit.misc
  46014. Subject: Re: UNIX C-Kermit and 14.4 modem, Help!
  46015. Date: 2 Nov 1994 15:35:26 GMT
  46016. Organization: Hewlett-Packard NARC Atlanta
  46017. Lines: 21
  46018. Distribution: world
  46019. Message-Id: <398bju$941@hpuerci.atl.hp.com>
  46020. References: <395qp6$167h@inca.gate.net>
  46021. Nntp-Posting-Host: hpuerca.atl.hp.com
  46022. X-Newsreader: TIN [version 1.2 PL2]
  46023. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  46024.  
  46025. Patrick Stickler (stickler@news.gate.net) wrote:
  46026. : I'm trying to use C-Kermit (C-Kermit 5A(162) ALPHA, 3 Nov 90, SUNOS 4.0, BSD)
  46027. : with a 14.4 V42.bis/MNP5 modem, but the SET SPEED command does not specify
  46028. : a 14400 baud rate, and the speed between the host and modem should in any
  46029. : case be at least 57600 bps or faster to fully allow maximum V42.bis 
  46030. : throughput.
  46031.  
  46032. READ YOUR MODEM MANUAL. There is no such thing as a 14.4 speed between a
  46033. modem and the computer. Valid speeds are ... 9600, 19200, 38400, 57600 ...
  46034.  
  46035. The 14.4 is modem to modem only. The modem, if its DTE speed is fixed,
  46036. will handle the translation speeds between its effective modem to modem
  46037. connection speed and the speed you use to communicate to the computer.
  46038.  
  46039. You will probably get the same answer from your SUN tech support. And
  46040. they will know the fastest speed you can set the computer port to.
  46041. --
  46042. johnP
  46043.                                  John  Pezzano, HP NARC
  46044.                  Email: johnp@hpuerca.atl.hp.com
  46045.  
  46046.  
  46047. From news@columbia.edu Mon Nov  7 03:48:19 1994
  46048. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27641
  46049.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 7 Nov 1994 06:02:23 -0500
  46050. Received: by apakabar.cc.columbia.edu id AA22707
  46051.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 7 Nov 1994 06:02:21 -0500
  46052. Newsgroups: comp.protocols.kermit.misc
  46053. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!hookup!ames!news.Hawaii.Edu!nts224.dialup.hawaii.edu!user
  46054. From: phinely@uhunix.uhcc.hawaii.edu
  46055. Subject: Re: The Mac version of Kermit has less features than other OS versions.
  46056. Message-Id: <phinely-0611941748190001@nts224.dialup.hawaii.edu>
  46057. Sender: news@news.Hawaii.Edu
  46058. Organization: University of Hawaii
  46059. References: <3935bt$111o@fidoii.cc.lehigh.edu> <395huk$3uv@apakabar.cc.columbia.edu> <39eb19$6sm@tardis.Tymnet.COM>
  46060. Date: Mon, 7 Nov 1994 03:48:19 GMT
  46061. Lines: 17
  46062. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  46063.  
  46064. In article <39eb19$6sm@tardis.Tymnet.COM>, jms@tardis.Tymnet.COM (Joe
  46065. Smith) wrote:
  46066.  
  46067. >   >Mac Kermit is in need of a lot of development and fixing.
  46068. >   >
  46069. >   >Currently, nobody is working on the Mac-specific parts of it, and unless
  46070. >   >we get funding to hire a Macintosh programmer, or a new volunteer comes
  46071. >   >forward who is highly skilled in Macintosh communications
  46072. programming, there
  46073. >   >will not be much movement in this area.  Prospects in both areas, at
  46074. present,
  46075. >   >are dim.
  46076. >   >
  46077.  
  46078. Is this a joke, or did this message get lost in cyberspace for a couple
  46079. years?  Why would anybody want to use kermit?  It's slow and error prone
  46080. plus a pain to use.
  46081.  
  46082. From news@columbia.edu Mon Nov  7 14:21:10 1994
  46083. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03689
  46084.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 7 Nov 1994 09:21:15 -0500
  46085. Received: by apakabar.cc.columbia.edu id AA02271
  46086.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 7 Nov 1994 09:21:14 -0500
  46087. Path: news.columbia.edu!usenet
  46088. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  46089. Newsgroups: comp.protocols.kermit.misc
  46090. Subject: Re: UNIX C-Kermit and 14.4 modem, Help!
  46091. Date: 7 Nov 1994 14:21:10 GMT
  46092. Organization: Columbia University
  46093. Lines: 18
  46094. Message-Id: <39ld4m$26o@apakabar.cc.columbia.edu>
  46095. References: <395qp6$167h@inca.gate.net>
  46096. Nntp-Posting-Host: fdc.cc.columbia.edu
  46097. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  46098.  
  46099. In article <395qp6$167h@inca.gate.net> stickler@news.gate.net (Patrick  
  46100. Stickler) writes:
  46101. > I'm trying to use C-Kermit (C-Kermit 5A(162) ALPHA, 3 Nov 90, SUNOS 4.0,  
  46102. BSD)
  46103. > with a 14.4 V42.bis/MNP5 modem, but the SET SPEED command does not specify
  46104. > a 14400 baud rate, and the speed between the host and modem should in any
  46105. > case be at least 57600 bps or faster to fully allow maximum V42.bis 
  46106. > throughput.
  46107. The current version of C-Kermit is 5A(189), with 5A(190) to be released
  46108. any day now.
  46109.  
  46110. C-Kermit should let you SET SPEED to any speed that is supported by the
  46111. underlying tty driver.  In the case of SunOS, 14400 is not one of the
  46112. supported speeds.  But you can use 19200 or 38400.  You can't use 57600.
  46113. Solaris supports a wider range of speeds.
  46114.  
  46115. - Frank
  46116.  
  46117. From news@columbia.edu Mon Nov  7 16:39:36 1994
  46118. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12545
  46119.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 7 Nov 1994 11:39:43 -0500
  46120. Received: by apakabar.cc.columbia.edu id AA12795
  46121.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 7 Nov 1994 11:39:40 -0500
  46122. Path: news.columbia.edu!usenet
  46123. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  46124. Newsgroups: comp.protocols.kermit.misc
  46125. Subject: MS-DOS Kermit 3.14 Beta-11 Ready for Testing
  46126. Date: 7 Nov 1994 16:39:36 GMT
  46127. Organization: Columbia University
  46128. Lines: 61
  46129. Message-Id: <39ll88$cfp@apakabar.cc.columbia.edu>
  46130. Nntp-Posting-Host: fdc.cc.columbia.edu
  46131. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  46132.  
  46133. MS-DOS Kermit 3.14 Beta-10 is available for anonymous ftp from
  46134. kermit.columbia.edu as of 11:15am EST, Monday, 7 November 1994:
  46135.  
  46136.   kermit/test/bin/mstibm.zip  - Binary ZIP file
  46137.   kermit/test/text/mstibm.uue - Uuencoded ZIP file
  46138.   kermit/test/text/mstibm.boo - BOO-encoded ZIP file
  46139.  
  46140. The UUE and BOO files are also available on BITNET from KERMSRV at CUVMA.
  46141.  
  46142. Changes and fixes since Beta-10 include:
  46143.  
  46144.  . Correction of RTS/CTS flow control problems that were introduced in
  46145.    Beta-10.
  46146.  
  46147.  . Addition of full Japanese character-ser support in terminal emulation:
  46148.  
  46149.    a) Additional character sets:
  46150.     JIS-Katanaka    (JIS X 201, ISO(ECMA)#13)
  46151.     JIS-Roman    (JIS X 201, ISO(ECMA)#14)
  46152.  
  46153.    b) Additional choices in SET TERMINAL OUTPUT-SHIFT (for keyboarding
  46154.       of different Kanji character sets):
  46155.    
  46156.     JIS7-Kanji, EUC-Kanji, and DEC-Kanji.
  46157.    
  46158.         JIS7-Kanji can take the following modifers:
  46159.       JIS83-US (default)
  46160.       JIS83-Roman
  46161.       JIS83-75Roman
  46162.       JIS78-US
  46163.       JIS78-Roman
  46164.       JIS78-75Roman
  46165.  
  46166.    NOTE: This item still needs a bit more work, and should be fully
  46167.    operational in the next Beta edit.
  46168.  
  46169.  . Correction of some subtle bugs in screen management which were evident
  46170.    on Japanese DOS machines.
  46171.  
  46172.  . Pointer safety check added in the BOOTP client routine to ensure
  46173.    trouble does not occur if a BOOTP server fails to send a terminal token
  46174.    (255) in the response packet.
  46175.  
  46176.  . One more quick-action routine in file transfer code to react to loss of
  46177.    modem CD as soon as possible, primarily for BBS operators.
  46178.  
  46179.  . Two bugs corrected in the Wyse-50 terminal emulation, relating to
  46180.    setting of bold/dim/reverse visual attributes and to using a full 132
  46181.    column screen.
  46182.  
  46183.  . Begin packing the executable files to save space on distribution
  46184.    media.  This is the /EXEPACK option in LINK, not PKZIP or similar.
  46185.  
  46186. Thanks, as always, to Joe Doupnik of Utah State University for this work,
  46187. and also to Hirofumi Fujii of the Japan National Laboratory of High Energy
  46188. Physics for the Kanji work, and for noticing and fixing some subtle bugs
  46189. in the general screen management area.
  46190.  
  46191. Please continue to send reports by e-mail to kermit@columbia.edu.
  46192.  
  46193. - Frank
  46194.  
  46195. From news@columbia.edu Mon Nov  7 14:34:39 1994
  46196. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15891
  46197.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 7 Nov 1994 12:21:30 -0500
  46198. Received: by apakabar.cc.columbia.edu id AA16498
  46199.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 7 Nov 1994 12:21:29 -0500
  46200. Path: news.columbia.edu!panix!news.mathworks.com!europa.eng.gtefsd.com!howland.reston.ans.net!torn!news.ccs.queensu.ca!news
  46201. From: mike@ccs-sparc2post.QueensU.CA (Mike Smith)
  46202. Newsgroups: comp.protocols.kermit.misc
  46203. Subject: Re: The Mac version of Kermit has less features than other OS versions.
  46204. Date: 7 Nov 1994 14:34:39 GMT
  46205. Organization: Queen's University, Kingston
  46206. Lines: 24
  46207. Sender: mike%ccs-sparc2@apakabar.cc.columbia.edu (Mike Smith)
  46208. Distribution: world
  46209. Message-Id: <39ldtv$jq4@knot.queensu.ca>
  46210. References: <3935bt$111o@fidoii.cc.lehigh.edu> <395huk$3uv@apakabar.cc.columbia.edu> <39eb19$6sm@tardis.Tymnet.COM> <phinely-0611941748190001@nts224.dialup.hawaii.edu>
  46211. Nntp-Posting-Host: ccs-sparc2.ccs
  46212. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  46213.  
  46214. In article <phinely-0611941748190001@nts224.dialup.hawaii.edu>, phinely@uhunix.uhcc.hawaii.edu writes:
  46215. |> 
  46216. |> Is this a joke, or did this message get lost in cyberspace for a couple
  46217. |> years?  Why would anybody want to use kermit?  It's slow and error prone
  46218. |> plus a pain to use.
  46219.  
  46220. I can't offer an opinion on the Mac version.  But as a general statement
  46221. you are wrong.  We use Kermit as the recommended communications software
  46222. at Queen's for our PC users.  It is not slow, it certainly isn't error
  46223. prone, and as for being a pain to use, wrong again.  Kermit has a very
  46224. complete scripting language that made it possible for us to develop
  46225. homegrown login scripts for our University's dial-in services.  This
  46226. lets us conceal a myriad of idiosyncracies related to our mainframe,
  46227. PACX, telnet servers, etc.
  46228.  
  46229. Why would anybody want to use Kermit?  Because it does the job, works
  46230. on all of our systems, is well-documented and supported, and incredibly,
  46231. is free.
  46232.  
  46233. -- 
  46234.  
  46235.  Mike Smith                                  mike@ccs.queensu.ca
  46236.  Queen's University                          Michael.D.Smith@QueensU.CA
  46237.  Computing and Communications Services       (613) 545-2024
  46238.  
  46239. From news@columbia.edu Mon Nov  7 15:25:04 1994
  46240. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29248
  46241.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 7 Nov 1994 15:25:04 -0500
  46242. Received: by apakabar.cc.columbia.edu id AA03206
  46243.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 7 Nov 1994 15:25:00 -0500
  46244. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!uhog.mit.edu!bloom-beacon.mit.edu!senator-bedfellow.mit.edu!math.mit.edu!drw
  46245. From: drw@runge.mit.edu (Dale R. Worley)
  46246. Newsgroups: comp.protocols.kermit.misc
  46247. Subject: Re: Receiving files "automatically"
  46248. Date: 7 Nov 94 14:26:24
  46249. Organization: National Institute for Lameness, Cambridge, MA, USA
  46250. Lines: 39
  46251. Message-Id: <DRW.94Nov7142624@runge.mit.edu>
  46252. References: <DRW.94Nov1095927@runge.mit.edu> <CyLouB.6Lu@ritz.mordor.com>
  46253. Nntp-Posting-Host: runge.mit.edu
  46254. In-Reply-To: kudut@ritz.mordor.com's message of Tue, 1 Nov 1994 18:03:47 GMT
  46255. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  46256.  
  46257. In article <CyLouB.6Lu@ritz.mordor.com> kudut@ritz.mordor.com (Ken Udut) writes:
  46258.    >And why is it that Kermit comes with almost no documentation?  
  46259.  
  46260.    It comes with a *lot* of documentation.  The KERMIT.BWR and KERMIT.UPD
  46261.    file are both sets of documentation.  If you issue a HELP at the Kermit
  46262.    prompt, you get more information.  While you are typing in a comment,
  46263.    but you are not sure what to type in next, press a ?, and you will
  46264.    magically get help for that command.
  46265.  
  46266. Well, it comes with a lot of documentation files, but they're
  46267. hellishly organized.  The DIAL command, the second most important
  46268. feature (the first is terminal emulation), isn't in KERMIT.HLP, the
  46269. obvious documentation file, but is banished to the "Release notes"
  46270. file for some incomprehensible reason.  Since one expects DIAL to have
  46271. been is version 1.0000, one does not naturally think of looking in the
  46272. release notes for it.
  46273.  
  46274. And what is "KERMIT.BWR"?  Last I heard, "BWR" stands for Boiling
  46275. Water Reactor.  Put the documentation in one place, fer crying out
  46276. loud, don't scatter it among a half-dozen files.
  46277.  
  46278. The HELP command will give you pages of details about "SET BIT-MANGLE
  46279. FROG-MODE", but there is no simple menu of the half-dozen commands
  46280. that everybody needs.  (Unlike every other terminal emulator I've ever
  46281. seen.)
  46282.  
  46283. And if you make the mistake of starting Kermit when the current
  46284. directory is not the installation directory, then Kermit can't find
  46285. its initization files, and voila! DIAL simply disappears.  (I don't
  46286. know about the PC world, but as a general thing, Unix software is
  46287. bright enough to be able to find its initialization files on its own.)
  46288.  
  46289. Dale
  46290.  
  46291. Dale Worley        Dept. of Math., MIT        drw@math.mit.edu
  46292. --
  46293. In the shopping malls, in the high school halls -- conform or be cast out!
  46294. In the basement bars, in the backs of cars -- be cool or be cast out!
  46295. -- Rush, "Subdivisions"
  46296.  
  46297. From news@columbia.edu Mon Nov  7 19:31:11 1994
  46298. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29256
  46299.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 7 Nov 1994 15:25:57 -0500
  46300. Received: by apakabar.cc.columbia.edu id AA03274
  46301.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 7 Nov 1994 15:25:54 -0500
  46302. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!hookup!news.mathworks.com!news.duke.edu!news-feed-1.peachnet.edu!gatech!howland.reston.ans.net!vixen.cso.uiuc.edu!adam
  46303. From: adam@symcom.math.uiuc.edu (Adam H. Lewenberg)
  46304. Newsgroups: comp.protocols.kermit.misc
  46305. Subject: Will the New MS-DOS Kermit have MINPUT?
  46306. Date: 7 Nov 1994 19:31:11 GMT
  46307. Organization: University of Illinois at Urbana-Champaign Math department
  46308. Lines: 8
  46309. Distribution: usa
  46310. Message-Id: <39lv9v$2s@vixen.cso.uiuc.edu>
  46311. Nntp-Posting-Host: orion.math.uiuc.edu
  46312. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  46313.  
  46314.  
  46315. Will the New MS-DOS Kermit have the MINPUT command? I would like my 
  46316. scripts to work in both MS-DOS Kermit and C-Kermit, so it would be
  46317. nice if MINPUT was supported n MS-DOS Kermit. Adam Lewenberg
  46318. -- 
  46319. University of Illinois at Champaign-Urbana, Dept. Of Mathematics
  46320. INTERNET: adam@math.uiuc.edu   or    a-lewenberg@uiuc.edu
  46321.  
  46322.  
  46323. From news@columbia.edu Mon Nov  7 22:02:41 1994
  46324. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05539
  46325.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 7 Nov 1994 17:02:46 -0500
  46326. Received: by apakabar.cc.columbia.edu id AA12045
  46327.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 7 Nov 1994 17:02:44 -0500
  46328. Path: news.columbia.edu!usenet
  46329. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  46330. Newsgroups: comp.protocols.kermit.misc
  46331. Subject: Re: Receiving files "automatically"
  46332. Date: 7 Nov 1994 22:02:41 GMT
  46333. Organization: Columbia University
  46334. Lines: 63
  46335. Message-Id: <39m861$bob@apakabar.cc.columbia.edu>
  46336. References: <DRW.94Nov7142624@runge.mit.edu>
  46337. Nntp-Posting-Host: fdc.cc.columbia.edu
  46338. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  46339.  
  46340. In article <DRW.94Nov7142624@runge.mit.edu> drw@runge.mit.edu (Dale R.  
  46341. Worley) writes:
  46342. > In article <CyLouB.6Lu@ritz.mordor.com> kudut@ritz.mordor.com (Ken Udut)
  46343. > writes:
  46344. > >And why is it that Kermit comes with almost no documentation?  
  46345. >    It comes with a *lot* of documentation.  The KERMIT.BWR and KERMIT.UPD
  46346. >    file are both sets of documentation.  If you issue a HELP at the Kermit
  46347. >    prompt, you get more information.  While you are typing in a comment,
  46348. >    but you are not sure what to type in next, press a ?, and you will
  46349. >    magically get help for that command.
  46350. > Well, it comes with a lot of documentation files, but they're
  46351. > hellishly organized.  The DIAL command, the second most important
  46352. > feature (the first is terminal emulation), isn't in KERMIT.HLP, the
  46353. > obvious documentation file, but is banished to the "Release notes"
  46354. > file for some incomprehensible reason.  Since one expects DIAL to have
  46355. > been is version 1.0000, one does not naturally think of looking in the
  46356. > release notes for it.
  46357. But if one looks up the DIAL command in KERMIT.HLP, one sees "See
  46358. KERMIT.UPD".  So it should not be that hard to figure out.
  46359.  
  46360. > And what is "KERMIT.BWR"?  Last I heard, "BWR" stands for Boiling
  46361. > Water Reactor.  Put the documentation in one place, fer crying out
  46362. > loud, don't scatter it among a half-dozen files.
  46363. For the historical-minded, Kermit was first developed in the early 80s when
  46364. DEC was in its heyday, and every university had a DEC-10 or DEC-20 or a
  46365. VAX.  DEC software releases always included a "beware file", with file
  46366. type .BWR.  The idea was to get peoples' attention when something went
  46367. wrong, and everybody knew to "look in the BWR file" before reporting bugs,
  46368. etc.  Those days are over, of course, and perhaps it would it be more
  46369. intuitive (at least to newsgroup readers) to call them .FAQ files, but
  46370. then we'd have to recast them all in question-and-answer form, like in
  46371. Jeopardy, to avoid the inevitable rash of complaints.  But, given limited
  46372. resources and time, and an infinite amount of demand, this settles to a 
  46373. rather low rung on the priority ladder.
  46374.  
  46375. The simple fact is that Kermit, like a great deal of other software, comes
  46376. with a manual, and then some other files to supplement the manual, either
  46377. in the form of updates, or technical hints and tips.  Unlike a lot of this
  46378. other software, however, it also comes with a brief help file listing all
  46379. the commands.  I don't think this is something to complain about.
  46380.  
  46381. > And if you make the mistake of starting Kermit when the current
  46382. > directory is not the installation directory, then Kermit can't find
  46383. > its initization files, and voila! DIAL simply disappears.  (I don't
  46384. > know about the PC world, but as a general thing, Unix software is
  46385. > bright enough to be able to find its initialization files on its own.)
  46386. Like most other DOS programs, Kermit needs to know where its ancilliary
  46387. files are so it can behave in a consistent way no matter what directory
  46388. you start it from.  What would you have it do -- a "find file" over all of
  46389. your disks?  The installation instructions are excruciatingly simple:
  46390. Make a directory for the Kermit files, and then add that directory to your
  46391. DOS PATH.  See the READ.ME file in the MS-DOS Kermit 3.14 ZIP file.
  46392.  
  46393. The preceeding, of course, is for the benefit of those who want to use the
  46394. software but don't want to consult the manual.  We don't get a lot of
  46395. complaints from Kermit users who *do* have the manual.
  46396.  
  46397. - Frank
  46398.  
  46399. From news@columbia.edu Mon Nov  7 22:26:13 1994
  46400. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06921
  46401.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 7 Nov 1994 17:26:20 -0500
  46402. Received: by apakabar.cc.columbia.edu id AA14343
  46403.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 7 Nov 1994 17:26:19 -0500
  46404. Path: news.columbia.edu!usenet
  46405. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  46406. Newsgroups: comp.protocols.kermit.misc
  46407. Subject: Re: Will the New MS-DOS Kermit have MINPUT?
  46408. Date: 7 Nov 1994 22:26:13 GMT
  46409. Organization: Columbia University
  46410. Lines: 33
  46411. Message-Id: <39m9i5$e00@apakabar.cc.columbia.edu>
  46412. References: <39lv9v$2s@vixen.cso.uiuc.edu>
  46413. Nntp-Posting-Host: fdc.cc.columbia.edu
  46414. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  46415.  
  46416. In article <39lv9v$2s@vixen.cso.uiuc.edu> adam@symcom.math.uiuc.edu (Adam H.  
  46417. Lewenberg) writes:
  46418. > Will the New MS-DOS Kermit have the MINPUT command? I would like my 
  46419. > scripts to work in both MS-DOS Kermit and C-Kermit, so it would be
  46420. > nice if MINPUT was supported n MS-DOS Kermit. Adam Lewenberg
  46421. >
  46422. It is kind of late in the Beta cycle to consider adding this.  However,
  46423. you might be able to make do by defining an MINPUT macro, something like
  46424. this (courtesy of James Sturdevant):
  46425.  
  46426. define minput set alarm \%1,-
  46427. :top,-
  46428. if alarm end 1,-
  46429. input 1 \%2,if success asg mynput 1,if success end 0,-
  46430. if not def \%3 goto top,reinp 0 \%3,if succ asg mynput 2,if succ end 0,-
  46431. if not def \%4 goto top,reinp 0 \%4,if succ asg mynput 3,if succ end 0,-
  46432. if not def \%5 goto top,reinp 0 \%5,if succ asg mynput 4,if succ end 0,-
  46433. if not def \%6 goto top,reinp 0 \%6,if succ asg mynput 5,if succ end 0,-
  46434. if not def \%7 goto top,reinp 0 \%7,if succ asg mynput 6,if succ end 0,-
  46435. if not def \%8 goto top,reinp 0 \%8,if succ asg mynput 7,if succ end 0,-
  46436. if not def \%9 goto top,reinp 0 \%9,if succ asg mynput 8,if succ end 0,-
  46437. goto top
  46438.  
  46439. and then use it like this:
  46440.  
  46441.  
  46442.     minput 60 CONNECT ERROR {NO CARRIER} BUSY RING
  46443.     if fail errfail {No response from the modem}
  46444.     if eq \v(program) C-Kermit asg mynput \v(minput)
  46445.     goto CASE_\m(mynput)
  46446.  
  46447. - Frank
  46448.  
  46449. From news@columbia.edu Sun Nov  6 19:37:47 1994
  46450. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11134
  46451.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 7 Nov 1994 18:46:28 -0500
  46452. Received: by apakabar.cc.columbia.edu id AA21372
  46453.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 7 Nov 1994 18:46:27 -0500
  46454. Newsgroups: comp.protocols.kermit.misc
  46455. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!uhog.mit.edu!europa.eng.gtefsd.com!howland.reston.ans.net!torn!newshub.ccs.yorku.ca!newshub.ariel.cs.yorku.ca!news
  46456. From: "Archimedes L. Trajano" <cs932070@red.ariel.cs.yorku.ca>
  46457. Subject: C-Kermit vs MS-Kermit
  46458. X-Sender: cs932070@blue
  46459. Content-Type: TEXT/PLAIN; charset=US-ASCII
  46460. Message-Id: <Pine.SUN.3.90.941106143639.22421D-100000@blue>
  46461. Sender: news@red.ariel.cs.yorku.ca
  46462. Organization: York University, Department of Computer Science
  46463. Mime-Version: 1.0
  46464. Date: Sun, 6 Nov 1994 19:37:47 GMT
  46465. Lines: 8
  46466. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  46467.  
  46468. Is it not possible to create an MS-DOS version of Kermit from the 
  46469. C-Kermit source files?
  46470.  
  46471. Archimedes L. Trajano        _/_/_/ _/   _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
  46472. cs932070@ariel.cs.yorku.ca  _/  _/ _/     _/  York University
  46473. (IRC: Overdrive)           _/_/_/ _/     _/  Department of Computer Science
  46474. _/_/_/_/_/_/_/_/_/_/_/_/_/_/  _/ _/_/_/ _/  North York, Ontario, Canada
  46475.  
  46476.  
  46477. From news@columbia.edu Tue Nov  8 00:00:10 1994
  46478. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11831
  46479.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 7 Nov 1994 19:00:14 -0500
  46480. Received: by apakabar.cc.columbia.edu id AA22323
  46481.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 7 Nov 1994 19:00:13 -0500
  46482. Path: news.columbia.edu!usenet
  46483. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  46484. Newsgroups: comp.protocols.kermit.misc
  46485. Subject: Re: C-Kermit vs MS-Kermit
  46486. Date: 8 Nov 1994 00:00:10 GMT
  46487. Organization: Columbia University
  46488. Lines: 24
  46489. Message-Id: <39mf2a$lpf@apakabar.cc.columbia.edu>
  46490. References: <Pine.SUN.3.90.941106143639.22421D-100000@blue>
  46491. Nntp-Posting-Host: fdc.cc.columbia.edu
  46492. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  46493.  
  46494. In article <Pine.SUN.3.90.941106143639.22421D-100000@blue> "Archimedes L.  
  46495. Trajano" <cs932070@ariel.cs.yorku.ca> writes:
  46496. > Is it not possible to create an MS-DOS version of Kermit from the 
  46497. > C-Kermit source files?
  46498. Maybe, but why bother?  It would be bigger, slower, and do less, except
  46499. for some of the script programming features.  With some care, it is quite
  46500. possible to write script programs that are portable between MS-DOS
  46501. Kermit and C-Kermit.  I'm not denigrating C-Kermit at all, but really,
  46502. when you consider how much functionality is packed into the 200K-or-so
  46503. MS-DOS Kermit executable, it's astounding.
  46504.  
  46505. For comparison, look at OS/2 C-Kermit, the closest C-Kermit counterpart
  46506. to MS-DOS Kermit.  The 16-bit executable is 500K, and the 32-bit one is
  46507. 680K.  Although it might be unfashionable these days, there still is quite
  46508. a lot to be said for assembly language, especially when memory and
  46509. addressability are at a premium.
  46510.  
  46511. If somebody should really want to adapt C-Kermit to DOS, however, it should
  46512. be a mere matter of filling in some communications and file access primitives
  46513. and writing a terminal emulator.  And hooking in to the various networking
  46514. APIs, if you can find them.  Etc etc.
  46515.  
  46516. - Frank
  46517.  
  46518. From news@columbia.edu Mon Nov  7 20:45:31 1994
  46519. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17521
  46520.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 7 Nov 1994 20:58:27 -0500
  46521. Received: by apakabar.cc.columbia.edu id AA13567
  46522.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 7 Nov 1994 20:58:26 -0500
  46523. Path: news.columbia.edu!panix!news.mathworks.com!news.kei.com!bloom-beacon.mit.edu!senator-bedfellow.mit.edu!athena.mit.edu!fastcart
  46524. From: fastcart@MIT.EDU (Arcell B. Frazier)
  46525. Newsgroups: comp.protocols.kermit.misc
  46526. Subject: Re: .kermrc question (UNIX)
  46527. Date: 7 Nov 1994 20:45:31 GMT
  46528. Organization: Massachusetts Institute of Technology
  46529. Lines: 24
  46530. Message-Id: <FASTCART.94Nov7154540@pesto.MIT.EDU>
  46531. References: <TOLNAS.94Nov1135606@microsys3.engr.utk.edu> <396hic$3um@chopin.udel.edu>
  46532.     <FASTCART.94Nov2020153@marinara.MIT.EDU>
  46533.     <TOLNAS.94Nov2094608@sun1.engr.utk.edu>
  46534. Nntp-Posting-Host: pesto.mit.edu
  46535. In-Reply-To: tolnas@sun1.engr.utk.edu's message of 02 Nov 1994 14:46:08 GMT
  46536. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  46537.  
  46538. In article <TOLNAS.94Nov2094608@sun1.engr.utk.edu> tolnas@sun1.engr.utk.edu (Barry Tolnas) writes:
  46539. > In article <FASTCART.94Nov2020153@marinara.MIT.EDU> fastcart@MIT.EDU (Arcell B. Frazier) writes:
  46540. > >   Is there a way for C-Kermit to automatically know what line "/dev/whatever"
  46541. > >   you are using upon startup?
  46542. > >   
  46543. > >   Fast Cart
  46544. > set line /dev/whatever
  46545. > Barry
  46546.  
  46547. But, "whatever" changes whenever I log in.  Understand?  I want something that
  46548. will know what line I'm using...
  46549.  
  46550. Fast Cart
  46551. --
  46552.  
  46553. ===============================================================================
  46554. Fast Cart (Arcell B. Frazier)         Phone: (617)225-8945
  46555. 500 Memorial Drive #372             "But, my friends call me Fast Cart...
  46556. Cambridge, MA  02139-4326          Well, at least I prefer that anyway!"
  46557. fastcart@mit.edu
  46558.  
  46559. From news@columbia.edu Mon Nov  7 20:50:22 1994
  46560. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17902
  46561.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 7 Nov 1994 21:07:15 -0500
  46562. Received: by apakabar.cc.columbia.edu id AA14753
  46563.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 7 Nov 1994 21:07:14 -0500
  46564. Path: news.columbia.edu!panix!news.mathworks.com!uhog.mit.edu!bloom-beacon.mit.edu!senator-bedfellow.mit.edu!athena.mit.edu!fastcart
  46565. From: fastcart@MIT.EDU (Arcell B. Frazier)
  46566. Newsgroups: comp.protocols.kermit.misc
  46567. Subject: Re: .kermrc question (UNIX)
  46568. Date: 7 Nov 1994 20:50:22 GMT
  46569. Organization: Massachusetts Institute of Technology
  46570. Lines: 22
  46571. Message-Id: <FASTCART.94Nov7155031@pesto.MIT.EDU>
  46572. References: <TOLNAS.94Nov1135606@microsys3.engr.utk.edu> <396hic$3um@chopin.udel.edu>
  46573.     <FASTCART.94Nov2020153@marinara.mit.edu> <398rgf$3q9@news.halcyon.com>
  46574. Nntp-Posting-Host: pesto.mit.edu
  46575. In-Reply-To: ken@coho.halcyon.com's message of 2 Nov 1994 20:06:39 GMT
  46576. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  46577.  
  46578. You wrote:
  46579. In article <398rgf$3q9@news.halcyon.com> ken@coho.halcyon.com (Ken Pizzini) writes:
  46580. > Arcell B. Frazier <fastcart@MIT.EDU> wrote:
  46581. > >Is there a way for C-Kermit to automatically know what line "/dev/whatever"
  46582. > >you are using upon startup?
  46583. > I'm not sure I'm clear on your requirements -- does /dev/tty do what you want?
  46584. >         --Ken Pizzini
  46585.  
  46586. I found that on the C-kermit protocol we use, (from '89) /dev/tty is always
  46587. default at 1200 bps.  I want to be able to "set line /dev/whatever" whenever I
  46588. start C-kermit because I'm not always using the same tty.
  46589.  
  46590. Fast Cart
  46591. --
  46592.  
  46593. ===============================================================================
  46594. Fast Cart (Arcell B. Frazier)         Phone: (617)225-8945
  46595. 500 Memorial Drive #372             "But, my friends call me Fast Cart...
  46596. Cambridge, MA  02139-4326          Well, at least I prefer that anyway!"
  46597. fastcart@mit.edu
  46598.  
  46599. From news@columbia.edu Mon Nov  7 20:53:50 1994
  46600. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18153
  46601.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 7 Nov 1994 21:16:00 -0500
  46602. Received: by apakabar.cc.columbia.edu id AA17458
  46603.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 7 Nov 1994 21:15:58 -0500
  46604. Path: news.columbia.edu!panix!news.mathworks.com!uhog.mit.edu!bloom-beacon.mit.edu!senator-bedfellow.mit.edu!athena.mit.edu!fastcart
  46605. From: fastcart@MIT.EDU (Arcell B. Frazier)
  46606. Newsgroups: comp.protocols.kermit.misc
  46607. Subject: Re: C Kermit and meta keys
  46608. Date: 7 Nov 1994 20:53:50 GMT
  46609. Organization: Massachusetts Institute of Technology
  46610. Lines: 20
  46611. Distribution: world
  46612. Message-Id: <FASTCART.94Nov7155359@pesto.MIT.EDU>
  46613. References: <JASON.94Nov3134526@idiom.com> <1994Nov4.172840.32062@cc.usu.edu>
  46614. Nntp-Posting-Host: pesto.mit.edu
  46615. In-Reply-To: jrd@cc.usu.edu's message of 4 Nov 94 17:28:40 MDT
  46616. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  46617.  
  46618. You wrote:
  46619. In article <1994Nov4.172840.32062@cc.usu.edu> jrd@cc.usu.edu (Joe Doupnik) writes:
  46620. >     There isn't such a key. Perhaps you are still thinking of how
  46621. > Emacs chooses to interpret the local keyboard. Hint: ALT sends nothing,
  46622. > it only modifies other keypresses, and the modification has nothing at
  46623. > all to do with adding a high bit. Ditto Control and Shift. Emacs is
  46624. > wierd this way.
  46625. >     Joe D.
  46626.  
  46627. He is right.  I had this problem.  What I did was to set key for just about
  46628. all of the Alt keys.  You can email me and I'll send you what I have...
  46629.  
  46630. Fast Cart
  46631. --
  46632.  
  46633. ===============================================================================
  46634. Fast Cart (Arcell B. Frazier)         Phone: (617)225-8945
  46635. 500 Memorial Drive #372             "But, my friends call me Fast Cart...
  46636. Cambridge, MA  02139-4326          Well, at least I prefer that anyway!"
  46637. fastcart@mit.edu
  46638.  
  46639. From news@columbia.edu Tue Nov  8 07:34:20 1994
  46640. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07448
  46641.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 8 Nov 1994 04:55:38 -0500
  46642. Received: by apakabar.cc.columbia.edu id AA18009
  46643.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 8 Nov 1994 04:55:37 -0500
  46644. Newsgroups: comp.protocols.kermit.misc
  46645. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!ix.netcom.com!netcom.com!jhurwit
  46646. From: jhurwit@netcom.com (Jeffrey Hurwit)
  46647. Subject: Re: C-Kermit vs MS-Kermit
  46648. Message-Id: <jhurwitCyxuD9.FGy@netcom.com>
  46649. Organization: Organization?  What organization?
  46650. X-Newsreader: TIN [version 1.2 PL1]
  46651. References: <Pine.SUN.3.90.941106143639.22421D-100000@blue> <39mf2a$lpf@apakabar.cc.columbia.edu>
  46652. Date: Tue, 8 Nov 1994 07:34:20 GMT
  46653. Lines: 15
  46654. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  46655.  
  46656. In article <39mf2a$lpf@apakabar.cc.columbia.edu>, 
  46657. Frank da Cruz (fdc@fdc.cc.columbia.edu) wrote:
  46658.  
  46659. >Although it might be unfashionable these days, there still is quite
  46660. >a lot to be said for assembly language, especially when memory and
  46661. >addressability are at a premium.
  46662.  
  46663.     Oh, I wouldn't say that (unfashionable, that is).  Shareware
  46664.     authors often advertise the fact if they wrote their programs in
  46665.     assembly, and sometimes go on to point out the advantages:  A
  46666.     program that's small and fast.  There's no compiler in the world
  46667.     that can optimize like a knowledgeable programmer.  IMHO, well-
  46668.     written assembly is definitely a feature that savvy users look for.
  46669.  
  46670.                         Jeff
  46671.  
  46672. From news@columbia.edu Tue Nov  8 08:11:13 1994
  46673. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07712
  46674.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 8 Nov 1994 05:03:08 -0500
  46675. Received: by apakabar.cc.columbia.edu id AA18168
  46676.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 8 Nov 1994 05:03:06 -0500
  46677. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!yeshua.marcam.com!usc!howland.reston.ans.net!news.sprintlink.net!pipex!sunic!news.funet.fi!news.csc.fi!kronos.fmi.fi!dionysos.fmi.fi!hurtta
  46678. From: hurtta@dionysos.fmi.fi (Kari E. Hurtta)
  46679. Newsgroups: comp.protocols.kermit.misc,comp.terminals
  46680. Subject: Incorrect response to request of terminal mode status (DEC modes)
  46681.     - MS-DOS Kermit, Terminal interrogation commands
  46682. Date: 8 Nov 1994 08:11:13 GMT
  46683. Organization: Finnish Meteorological Institute (FMI)
  46684. Lines: 16
  46685. Message-Id: <39nbr2$rkh@kronos.fmi.fi>
  46686. Nntp-Posting-Host: dionysos.fmi.fi
  46687. X-Newsreader: NN version 6.5(beta3).0 #6 (NOV)
  46688. Xref: news.columbia.edu comp.protocols.kermit.misc:1022 comp.terminals:6023
  46689. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  46690.  
  46691. MS-DOS Kermit respons to query
  46692.     CSI ? Ps $ p
  46693. with response
  46694.     CSI Ps; Ps1 $ y
  46695.  
  46696. According of my another docomentation response of this should be
  46697.     CSI ? Ps; Ps1 $ y
  46698.  
  46699. (MS-Kermit's  documentation gives that response is CSI Ps; Ps1 $ y
  46700.  but I think that this is incorrect for VT -series emulation.)
  46701.  
  46702. Comments?
  46703. --
  46704. - Kari E. Hurtta                             /  Eldmd on monimutkaista
  46705.   Kari.Hurtta@Fmi.FI                 puh. (90) 1929 658
  46706.   {hurtta,root,Postmaster}@dionysos.fmi.fi
  46707.  
  46708. From news@columbia.edu Tue Nov  8 08:23:12 1994
  46709. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08512
  46710.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 8 Nov 1994 05:31:34 -0500
  46711. Received: by apakabar.cc.columbia.edu id AA18929
  46712.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 8 Nov 1994 05:31:32 -0500
  46713. Newsgroups: comp.protocols.kermit.misc
  46714. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!uhog.mit.edu!news.mathworks.com!udel!gatech!howland.reston.ans.net!ix.netcom.com!netcom.com!jhurwit
  46715. From: jhurwit@netcom.com (Jeffrey Hurwit)
  46716. Subject: Re: Will the New MS-DOS Kermit have MINPUT?
  46717. Message-Id: <jhurwitCyxwMo.JG7@netcom.com>
  46718. Organization: Organization?  What organization?
  46719. X-Newsreader: TIN [version 1.2 PL1]
  46720. References: <39lv9v$2s@vixen.cso.uiuc.edu> <39m9i5$e00@apakabar.cc.columbia.edu>
  46721. Date: Tue, 8 Nov 1994 08:23:12 GMT
  46722. Lines: 36
  46723. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  46724.  
  46725. In article <39m9i5$e00@apakabar.cc.columbia.edu>, 
  46726. Frank da Cruz (fdc@fdc.cc.columbia.edu) wrote:
  46727.  
  46728. >In article <39lv9v$2s@vixen.cso.uiuc.edu> adam@symcom.math.uiuc.edu (Adam H.  
  46729. >Lewenberg) writes:
  46730. >> 
  46731. >> Will the New MS-DOS Kermit have the MINPUT command? I would like my 
  46732. >> scripts to work in both MS-DOS Kermit and C-Kermit, so it would be
  46733. >> nice if MINPUT was supported n MS-DOS Kermit. Adam Lewenberg
  46734.  
  46735.     Yes, this was the command I was thinking of, that time I posted to
  46736.     ask if the next release of MS-Kermit would have more of the script
  46737.     commands that C-Kermit has.  I stumbled across it in the C-Kerm
  46738.     docs, and thought "What a valuable tool for login scripts!"  Then I
  46739.     couldn't find it again.  This command does me no good in C-Kerm,
  46740.     which I use only as a remote, but would be seriously valuable in
  46741.     MSK!
  46742.  
  46743. >It is kind of late in the Beta cycle to consider adding this.  
  46744.  
  46745.     :(  :(  :(  :(  :(  :(  :(
  46746.  
  46747. >                                                               However,
  46748. >you might be able to make do by defining an MINPUT macro, something like
  46749. >this (courtesy of James Sturdevant):
  46750.  
  46751.     [macro and example of how to use it deleted]
  46752.  
  46753.     Yes, this would work, but it's a little big, and memory is at a
  46754.     premium for some of us.  I tend to use take files more, and save
  46755.     memory for key settings and screen rollback.
  46756.  
  46757.     Anyway, if you can't, you can't.  But I'd be interested in this
  46758.     feature, too.
  46759.  
  46760.                         Jeff
  46761.  
  46762. From news@columbia.edu Tue Nov  8 15:26:18 1994
  46763. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15172
  46764.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 8 Nov 1994 10:37:06 -0500
  46765. Received: by apakabar.cc.columbia.edu id AA01099
  46766.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 8 Nov 1994 10:37:04 -0500
  46767. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!udel!gatech!cs.utk.edu!not-for-mail
  46768. From: shuford@cs.utk.edu (Richard Shuford)
  46769. Newsgroups: comp.terminals,comp.protocols.kermit.misc
  46770. Subject: Re: Incorrect response to request of terminal mode status (DEC modes)
  46771. Followup-To: comp.terminals,comp.protocols.kermit.misc
  46772. Date: 8 Nov 1994 10:26:18 -0500
  46773. Organization: University of Tennessee, Knoxville--Dept. of Computer Science
  46774. Lines: 74
  46775. Distribution: world
  46776. Expires: 31 Dec 1994 22:11:33 GMT
  46777. Message-Id: <39o5aqINN164@cetus2e.cs.utk.edu>
  46778. References: <39nbr2$rkh@kronos.fmi.fi>
  46779. Nntp-Posting-Host: cetus2e.cs.utk.edu
  46780. Summary: there are 2 cases, according to VT330/340 documentation
  46781. Keywords: DECRQM, DECRPM, VT300, VT330, MS-Kermit, mode, setting, report
  46782. Xref: news.columbia.edu comp.terminals:6025 comp.protocols.kermit.misc:1024
  46783. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  46784.  
  46785. In article <39nbr2$rkh@kronos.fmi.fi>,
  46786.    hurtta@dionysos.fmi.fi (Kari E. Hurtta) writes:
  46787. >
  46788. >MS-DOS Kermit responds to query
  46789. >    CSI ? Ps $ p
  46790. >with response
  46791. >    CSI Ps; Ps1 $ y
  46792. >According of my another docomentation response of this should be
  46793. >    CSI ? Ps; Ps1 $ y
  46794. >
  46795. >(MS-Kermit's  documentation gives that response is CSI Ps; Ps1 $ y
  46796. > but I think that this is incorrect for VT -series emulation.)
  46797. >
  46798. >- Kari E. Hurtta
  46799. >  Kari.Hurtta@Fmi.FI
  46800. >  {hurtta,root,Postmaster}@dionysos.fmi.fi
  46801.  
  46802. I think that you are referring to the VT300-mode request/response pair
  46803. DECRQM and DECRPM.
  46804.  
  46805. In the Digital documentation "VT330/VT340 Programmer Reference Manual,
  46806. Volume 1: Text Programming" (EK-VT3XX-TP-001) on page 238 we find
  46807.  
  46808.     MODE SETTINGS (VT300 mode only)
  46809.  
  46810.     Request Mode          DECRQM      CSI Pa $ p
  46811.                                       Pa = ANSI mode (see table 12-2)
  46812.  
  46813.                                       CSI ? Pd $ p
  46814.                                       Pa =  DEC private mode (see table 12-3)
  46815.  
  46816.     Report Mode           DECRPM      CSI Pa;Ps $ y
  46817.                                       Pa = ANSI mode (see table 12-2)
  46818.  
  46819.                                       Ps = mode state
  46820.                                        0 = unknown mode
  46821.                                        1 = set
  46822.                                        2 = reset
  46823.                                        3 = permanently set
  46824.                                        4 = permanently reset
  46825.  
  46826.  
  46827.     Set Mode              SM          CSI Pa; ...Pa h
  46828.                                       Pa = ANSI mode(s)
  46829.  
  46830.                                       CSI ? Pd; ...Pd h
  46831.                                       Pd =  DEC private mode(s)
  46832.  
  46833.     Reset Mode            RM          CSI Pa; ...Pa l
  46834.                                       Pa = ANSI mode(s)
  46835.  
  46836.                                       CSI ? Pd; ...Pd l
  46837.                                       Pd =  DEC private mode(s)
  46838.  
  46839.  
  46840. (Notes:  the CSI is hexadecimal 9B in 8-bit communication, or
  46841.          the sequence <Escape> [   in 7-bit communication.
  46842.  
  46843.          Pa, Ps, and Pd are variable parameters.
  46844.  
  46845.          The "l" in the above RM command is a lowercase "L".
  46846.  
  46847.          Spaces in the description are for clarity and are not transmitted.)
  46848.  
  46849. So one form of the response is appropriate for ANSI/ISO standardized
  46850. modes, and the other form for DEC proprietary modes.
  46851.  
  46852. Are you saying that MS-Kermit is generating the ANSI/ISO-mode response
  46853. to the DEC-mode query?
  46854.  
  46855. -- 
  46856.  ...Richard S. Shuford  | "When the righteous triumph, there is great elation;
  46857.  ...shuford@cs.utk.edu  |  but when the wicked rise to power, men go into
  46858.  ...Info-Stratus contact|  hiding." Proverbs 28:12 NIV
  46859.  
  46860. From news@columbia.edu Tue Nov  8 11:21:14 1994
  46861. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17132
  46862.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 8 Nov 1994 11:21:14 -0500
  46863. Received: by apakabar.cc.columbia.edu id AA04070
  46864.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 8 Nov 1994 11:21:13 -0500
  46865. Path: news.columbia.edu!sol.ctr.columbia.edu!math.ohio-state.edu!usc!bloom-beacon.mit.edu!senator-bedfellow.mit.edu!math.mit.edu!drw
  46866. From: drw@runge.mit.edu (Dale R. Worley)
  46867. Newsgroups: comp.protocols.kermit.misc
  46868. Subject: Re: Receiving files "automatically"
  46869. Date: 8 Nov 94 11:07:35
  46870. Organization: National Institute for Lameness, Cambridge, MA, USA
  46871. Lines: 43
  46872. Message-Id: <DRW.94Nov8110735@runge.mit.edu>
  46873. References: <DRW.94Nov7142624@runge.mit.edu>
  46874.     <39m861$bob@apakabar.cc.columbia.edu>
  46875. Nntp-Posting-Host: runge.mit.edu
  46876. In-Reply-To: fdc@fdc.cc.columbia.edu's message of 7 Nov 1994 22:02:41 GMT
  46877. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  46878.  
  46879. In article <39m861$bob@apakabar.cc.columbia.edu> fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  46880.    But if one looks up the DIAL command in KERMIT.HLP, one sees "See
  46881.    KERMIT.UPD".  So it should not be that hard to figure out.
  46882.  
  46883. Hmmm...  Just checked my KERMIT.HLP (version 3.13, gotten from
  46884. watsun.cc.columbia.edu, I think, but I can't check right now, its FTP
  46885. server is hosed), and it doesn't say that, although it does mention
  46886. the DIAL command in passing at one point.
  46887.  
  46888.    Like most other DOS programs, Kermit needs to know where its ancilliary
  46889.    files are so it can behave in a consistent way no matter what directory
  46890.    you start it from.  What would you have it do -- a "find file" over all of
  46891.    your disks?
  46892.  
  46893. Have KERMIT.EXE know where to look, as is universal in Unix software.
  46894. You wouldn't even have to make it configurable, since everything
  46895. assumes that Kermit will be in C:\KERMIT.
  46896.  
  46897.    The installation instructions are excruciatingly simple:
  46898.    Make a directory for the Kermit files, and then add that directory to your
  46899.    DOS PATH.  See the READ.ME file in the MS-DOS Kermit 3.14 ZIP file.
  46900.  
  46901. Yes, but I have Kermit 3.13, and the READ.ME doesn't warn you that you
  46902. have to modify your PATH.  I will grant that it does tell you to read
  46903. KERMIT.HLP, but that is a little long for installation instructions.
  46904.  
  46905.    The preceeding, of course, is for the benefit of those who want to use the
  46906.    software but don't want to consult the manual.  We don't get a lot of
  46907.    complaints from Kermit users who *do* have the manual.
  46908.  
  46909. If I wanted to buy the manual for a telecomm program, I'd go to my
  46910. local software store and buy Procomm.
  46911.  
  46912. Dale
  46913.  
  46914. Dale Worley        Dept. of Math., MIT        drw@math.mit.edu
  46915. --
  46916. The scariest quote I've seen in a long time:
  46917.  
  46918. There is nothing more painful to me at this stage in my life than to
  46919. walk down the street and hear footsteps and start thinking about
  46920. robbery.  Then [I] look around and see someone white and feel relieved.
  46921. -- Jesse Jackson, as quoted by Mike Royko
  46922.  
  46923. From news@columbia.edu Tue Nov  8 16:52:40 1994
  46924. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18817
  46925.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 8 Nov 1994 11:52:48 -0500
  46926. Received: by apakabar.cc.columbia.edu id AA06110
  46927.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 8 Nov 1994 11:52:44 -0500
  46928. Path: news.columbia.edu!usenet
  46929. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  46930. Newsgroups: comp.protocols.kermit.misc
  46931. Subject: Re: Receiving files "automatically"
  46932. Date: 8 Nov 1994 16:52:40 GMT
  46933. Organization: Columbia University
  46934. Lines: 20
  46935. Message-Id: <39oaco$5us@apakabar.cc.columbia.edu>
  46936. References: <DRW.94Nov8110735@runge.mit.edu>
  46937. Nntp-Posting-Host: christine.cc.columbia.edu
  46938. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  46939.  
  46940. In article <DRW.94Nov8110735@runge.mit.edu> drw@runge.mit.edu (Dale R.  
  46941. Worley) writes:
  46942. > Hmmm...  Just checked my KERMIT.HLP (version 3.13, gotten from
  46943. > watsun.cc.columbia.edu, I think, but I can't check right now, its FTP
  46944. > server is hosed), and it doesn't say that, although it does mention
  46945. > the DIAL command in passing at one point.
  46946. My comments were in reference to version 3.14.  I think you will find a
  46947. lot of improvements in version 3.14 over 3.13.
  46948.  
  46949. > If I wanted to buy the manual for a telecomm program, I'd go to my
  46950. > local software store and buy Procomm.
  46951. A noble attitude.  In other words, since you don't want to buy a manual,
  46952. you expect real human people to work for you, for free.  To develop
  46953. software for you AND document it, AND answer your questions, all for
  46954. free, and listen to your complaints about how they did it.  Please, go
  46955. buy Procomm.
  46956.  
  46957. - Frank
  46958.  
  46959. From news@columbia.edu Tue Nov  8 17:09:41 1994
  46960. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27258
  46961.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 8 Nov 1994 14:13:48 -0500
  46962. Received: by apakabar.cc.columbia.edu id AA16218
  46963.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 8 Nov 1994 14:13:46 -0500
  46964. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!hookup!swrinde!cs.utexas.edu!uunet!rcwusr.bp.com!learmonthgg
  46965. From: learmonthgg@rcwusr.bp.com
  46966. Newsgroups: comp.protocols.kermit.misc
  46967. Subject: Kermit for ALPHA VMS ?
  46968. Message-Id: <1994Nov8.120941.1253@rcwusr>
  46969. Date: 8 Nov 94 12:09:41 -0500
  46970. Organization: BP Warrensville, Cleveland, OH (USA)
  46971. Lines: 3
  46972. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  46973.  
  46974. Does anybody know where I can get a copy of Kermit for ALPHA VMS ?
  46975.  
  46976. Gaz.
  46977.  
  46978. From news@columbia.edu Tue Nov  8 04:46:53 1994
  46979. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00936
  46980.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 8 Nov 1994 15:22:11 -0500
  46981. Received: by apakabar.cc.columbia.edu id AA21518
  46982.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 8 Nov 1994 15:22:10 -0500
  46983. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  46984. From: jrd@cc.usu.edu (Joe Doupnik)
  46985. Newsgroups: comp.terminals,comp.protocols.kermit.misc
  46986. Subject: Re: Incorrect response to request of terminal mode status (DEC modes)
  46987. Message-Id: <1994Nov8.104653.32279@cc.usu.edu>
  46988. Date: 8 Nov 94 10:46:53 MDT
  46989. References: <39nbr2$rkh@kronos.fmi.fi> <39o5aqINN164@cetus2e.cs.utk.edu>
  46990. Followup-To: comp.terminals,comp.protocols.kermit.misc
  46991. Distribution: world
  46992. Organization: Utah State University
  46993. Lines: 26
  46994. Xref: news.columbia.edu comp.terminals:6026 comp.protocols.kermit.misc:1028
  46995. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  46996.  
  46997. In article <39o5aqINN164@cetus2e.cs.utk.edu>, shuford@cs.utk.edu (Richard Shuford) writes:
  46998. > In article <39nbr2$rkh@kronos.fmi.fi>,
  46999. >    hurtta@dionysos.fmi.fi (Kari E. Hurtta) writes:
  47000. >>
  47001. >>MS-DOS Kermit responds to query
  47002. >>    CSI ? Ps $ p
  47003. >>with response
  47004. >>    CSI Ps; Ps1 $ y
  47005. >>According of my another docomentation response of this should be
  47006. >>    CSI ? Ps; Ps1 $ y
  47007. >>
  47008. >>(MS-Kermit's  documentation gives that response is CSI Ps; Ps1 $ y
  47009. >> but I think that this is incorrect for VT -series emulation.)
  47010. >>
  47011. >>- Kari E. Hurtta
  47012. >>  Kari.Hurtta@Fmi.FI
  47013. >>  {hurtta,root,Postmaster}@dionysos.fmi.fi
  47014. > I think that you are referring to the VT300-mode request/response pair
  47015. > DECRQM and DECRPM.
  47016. ----------
  47017.     Kari is correct. A question mark was omitted from the DEC-specific
  47018. report. I've corrected that (and in msvibm.vt) here this morning and the
  47019. results will appear in the next beta of MSK.
  47020.     Thanks,
  47021.     Joe D.
  47022.  
  47023. From news@columbia.edu Tue Nov  8 04:56:02 1994
  47024. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01018
  47025.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 8 Nov 1994 15:23:47 -0500
  47026. Received: by apakabar.cc.columbia.edu id AA21612
  47027.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 8 Nov 1994 15:23:45 -0500
  47028. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!udel!gatech!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  47029. From: jrd@cc.usu.edu (Joe Doupnik)
  47030. Newsgroups: comp.protocols.kermit.misc
  47031. Subject: Re: Receiving files "automatically"
  47032. Message-Id: <1994Nov8.105602.32280@cc.usu.edu>
  47033. Date: 8 Nov 94 10:56:02 MDT
  47034. References: <DRW.94Nov7142624@runge.mit.edu><39m861$bob@apakabar.cc.columbia.edu> <DRW.94Nov8110735@runge.mit.edu>
  47035. Organization: Utah State University
  47036. Lines: 34
  47037. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  47038.  
  47039. In article <DRW.94Nov8110735@runge.mit.edu>, drw@runge.mit.edu (Dale R. Worley) writes:
  47040. > In article <39m861$bob@apakabar.cc.columbia.edu> fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  47041. >    But if one looks up the DIAL command in KERMIT.HLP, one sees "See
  47042. >    KERMIT.UPD".  So it should not be that hard to figure out.
  47043. > Hmmm...  Just checked my KERMIT.HLP (version 3.13, gotten from
  47044. > watsun.cc.columbia.edu, I think, but I can't check right now, its FTP
  47045. > server is hosed), and it doesn't say that, although it does mention
  47046. > the DIAL command in passing at one point.
  47047. >    Like most other DOS programs, Kermit needs to know where its ancilliary
  47048. >    files are so it can behave in a consistent way no matter what directory
  47049. >    you start it from.  What would you have it do -- a "find file" over all of
  47050. >    your disks?
  47051. > Have KERMIT.EXE know where to look, as is universal in Unix software.
  47052. > You wouldn't even have to make it configurable, since everything
  47053. > assumes that Kermit will be in C:\KERMIT.
  47054. > If I wanted to buy the manual for a telecomm program, I'd go to my
  47055. > local software store and buy Procomm.
  47056.  
  47057.     But then you'd have to read it all by yourself with no way to
  47058. talk to the developers.
  47059.  
  47060.     DOS ain't Unix, in case you haven't discovered that yet. Unix
  47061. won't necessarily find files either unless the PATH is used or the
  47062. program is built to look in its startup directory. The latter "feature"
  47063. can be implemented under current versions of DOS but only with trepedition
  47064. from a non-tree directory system (all those letters, SUBST, network drive
  47065. mappings, all the things which make it nearly impossible to know a 
  47066. directory as a real directory).
  47067.      Joe D.
  47068.  
  47069. > Dale Worley        Dept. of Math., MIT        drw@math.mit.edu
  47070.  
  47071. From news@columbia.edu Tue Nov  8 20:52:44 1994
  47072. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02742
  47073.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 8 Nov 1994 15:52:48 -0500
  47074. Received: by apakabar.cc.columbia.edu id AA23672
  47075.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 8 Nov 1994 15:52:46 -0500
  47076. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  47077. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  47078. Newsgroups: comp.protocols.kermit.misc
  47079. Subject: Re: Kermit for ALPHA VMS ?
  47080. Followup-To: comp.protocols.kermit.misc
  47081. Date: 8 Nov 1994 20:52:44 GMT
  47082. Organization: Columbia University
  47083. Lines: 6
  47084. Message-Id: <39ooes$n3m@apakabar.cc.columbia.edu>
  47085. References: <1994Nov8.120941.1253@rcwusr>
  47086. Nntp-Posting-Host: watsun.cc.columbia.edu
  47087. Keywords: Alpha, VMS, AXP
  47088. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  47089.  
  47090.  
  47091. Kermit for OpenVMS/AXP can be found on kermit.columbia.edu,
  47092. directory kermit/test/ and its subdirectories.  Begin by
  47093. getting the file kermit/test/ckvaaa.hlp and reading it.
  47094.  
  47095. - Frank
  47096.  
  47097. From news@columbia.edu Tue Nov  8 20:20:48 1994
  47098. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13505
  47099.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 8 Nov 1994 19:12:35 -0500
  47100. Received: by apakabar.cc.columbia.edu id AA20113
  47101.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 8 Nov 1994 19:12:27 -0500
  47102. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!hookup!swrinde!gatech!howland.reston.ans.net!news.sprintlink.net!nwnexus!news.halcyon.com!coho!ken
  47103. From: ken@coho.halcyon.com (Ken Pizzini)
  47104. Newsgroups: comp.protocols.kermit.misc
  47105. Subject: Re: C-Kermit vs MS-Kermit
  47106. Date: 8 Nov 1994 20:20:48 GMT
  47107. Organization: What, me?
  47108. Lines: 33
  47109. Message-Id: <39omj0$ocs@news.halcyon.com>
  47110. References: <Pine.SUN.3.90.941106143639.22421D-100000@blue> <39mf2a$lpf@apakabar.cc.columbia.edu> <jhurwitCyxuD9.FGy@netcom.com>
  47111. Nntp-Posting-Host: coho.halcyon.com
  47112. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  47113.  
  47114. (Sorry for continuing this thread in cpkm...)
  47115.  
  47116. In article <jhurwitCyxuD9.FGy@netcom.com>,
  47117. Jeffrey Hurwit <jhurwit@netcom.com> wrote:
  47118. >In article <39mf2a$lpf@apakabar.cc.columbia.edu>, 
  47119. >Frank da Cruz (fdc@fdc.cc.columbia.edu) wrote:
  47120. >
  47121. >>Although it might be unfashionable these days, there still is quite
  47122. >>a lot to be said for assembly language, especially when memory and
  47123. >>addressability are at a premium.
  47124. >
  47125. >    Oh, I wouldn't say that (unfashionable, that is).  Shareware
  47126. >    authors often advertise the fact if they wrote their programs in
  47127. >    assembly, and sometimes go on to point out the advantages:  A
  47128. >    program that's small and fast.  There's no compiler in the world
  47129. >    that can optimize like a knowledgeable programmer.  IMHO, well-
  47130. >    written assembly is definitely a feature that savvy users look for.
  47131.  
  47132. The problem with assembly is that complicated-but-faster algorithms
  47133. are less likely to be used, and it is much more likely that arbritrary
  47134. limits on data sizes will be introduced in order to simplify programming.
  47135. Also modern compilers will do a better job of optimizing than a
  47136. mediocre programmer, in most cases.  In the optimize-for-speed relm it
  47137. is much more fruitful to program in a high-level-language, profile the
  47138. resulting program, and hand-code only the routines thus determined to
  47139. be critical.
  47140.  
  47141. Then again, modern compilers are usually built to optimize for speed,
  47142. not space.  If memory is tight hand-coded assembly still has an edge.
  47143. If nothing else it will encourage the programmer to leave out some
  47144. unnecessary bells and whistles.
  47145.  
  47146.         --Ken Pizzini
  47147.  
  47148. From news@columbia.edu Wed Nov  9 12:30:00 1994
  47149. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08013
  47150.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 9 Nov 1994 07:37:17 -0500
  47151. Received: by apakabar.cc.columbia.edu id AA09344
  47152.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 9 Nov 1994 07:37:15 -0500
  47153. Newsgroups: comp.protocols.kermit.misc
  47154. Path: news.columbia.edu!sol.ctr.columbia.edu!usc!howland.reston.ans.net!pipex!uunet!newsflash.concordia.ca!news.mcgill.ca!cidsv01.cid.aes.doe.ca!cidsv01!afsypng
  47155. From: afsypng@cmcws75.cmc.aes.doe.ca (Jacques Marcoux)
  47156. Subject: Re: The Mac version of Kermit has less features than other OS versions.
  47157. In-Reply-To: phinely@uhunix.uhcc.hawaii.edu's message of Mon, 7 Nov 1994 03:48:19 GMT
  47158. Message-Id: <AFSYPNG.94Nov9073000@cmcws75.cmc.aes.doe.ca>
  47159. Sender: @cid.aes.doe.ca (Network News)
  47160. Organization: Quatrieme etage
  47161. References: <3935bt$111o@fidoii.cc.lehigh.edu> <395huk$3uv@apakabar.cc.columbia.edu>
  47162.     <39eb19$6sm@tardis.Tymnet.COM>
  47163.     <phinely-0611941748190001@nts224.dialup.hawaii.edu>
  47164. Date: Wed, 9 Nov 1994 12:30:00 GMT
  47165. Lines: 32
  47166. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  47167.  
  47168. >>>>> "phinely" == phinely  <phinely@uhunix.uhcc.hawaii.edu> babbles:
  47169. In article <phinely-0611941748190001@nts224.dialup.hawaii.edu>
  47170. phinely@uhunix.uhcc.hawaii.edu writes:
  47171.  
  47172.  
  47173.     phinely> In article <39eb19$6sm@tardis.Tymnet.COM>,
  47174.     phinely> jms@tardis.Tymnet.COM (Joe Smith) wrote:
  47175.  
  47176.     >> >Mac Kermit is in need of a lot of development and fixing.  >
  47177.     >> >Currently, nobody is working on the Mac-specific parts of it,
  47178.     >> and unless >we get funding to hire a Macintosh programmer, or a
  47179.     >> new volunteer comes >forward who is highly skilled in Macintosh
  47180.     >> communications
  47181.     phinely> programming, there
  47182.     >> >will not be much movement in this area.  Prospects in both
  47183.     >> areas, at
  47184.     phinely> present,
  47185.     >> >are dim.  >
  47186.  
  47187.     phinely> Is this a joke, or did this message get lost in
  47188.     phinely> cyberspace for a couple years?  Why would anybody want to
  47189.     phinely> use kermit?  It's slow and error prone plus a pain to
  47190.     phinely> use.
  47191.  
  47192. Glad you asked
  47193.  
  47194. Me for one, this is the only thing I can use to connect to some remote
  47195. site. Yes it is slow, Yes it is error prone, why  do you think the guy
  47196. is asking for improvement?
  47197.  
  47198.  
  47199.  
  47200.  
  47201. From news@columbia.edu Wed Nov  9 12:29:13 1994
  47202. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07969
  47203.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 9 Nov 1994 07:37:14 -0500
  47204. Received: by apakabar.cc.columbia.edu id AA09340
  47205.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 9 Nov 1994 07:37:13 -0500
  47206. Newsgroups: comp.protocols.kermit.misc
  47207. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!pipex!uunet!newsflash.concordia.ca!news.mcgill.ca!cidsv01.cid.aes.doe.ca!cidsv01!afsypng
  47208. From: afsypng@cmcws75.cmc.aes.doe.ca (Jacques Marcoux)
  47209. Subject: Re: The Mac version of Kermit has less features than other OS versions.
  47210. In-Reply-To: phinely@uhunix.uhcc.hawaii.edu's message of Mon, 7 Nov 1994 03:48:19 GMT
  47211. Message-Id: <AFSYPNG.94Nov9072913@cmcws75.cmc.aes.doe.ca>
  47212. Sender: @cid.aes.doe.ca (Network News)
  47213. Organization: Quatrieme etage
  47214. References: <3935bt$111o@fidoii.cc.lehigh.edu> <395huk$3uv@apakabar.cc.columbia.edu>
  47215.     <39eb19$6sm@tardis.Tymnet.COM>
  47216.     <phinely-0611941748190001@nts224.dialup.hawaii.edu>
  47217. Date: Wed, 9 Nov 1994 12:29:13 GMT
  47218. Lines: 32
  47219. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  47220.  
  47221. >>>>> "phinely" == phinely  <phinely@uhunix.uhcc.hawaii.edu> babbles:
  47222. In article <phinely-0611941748190001@nts224.dialup.hawaii.edu>
  47223. phinely@uhunix.uhcc.hawaii.edu writes:
  47224.  
  47225.  
  47226.     phinely> In article <39eb19$6sm@tardis.Tymnet.COM>,
  47227.     phinely> jms@tardis.Tymnet.COM (Joe Smith) wrote:
  47228.  
  47229.     >> >Mac Kermit is in need of a lot of development and fixing.  >
  47230.     >> >Currently, nobody is working on the Mac-specific parts of it,
  47231.     >> and unless >we get funding to hire a Macintosh programmer, or a
  47232.     >> new volunteer comes >forward who is highly skilled in Macintosh
  47233.     >> communications
  47234.     phinely> programming, there
  47235.     >> >will not be much movement in this area.  Prospects in both
  47236.     >> areas, at
  47237.     phinely> present,
  47238.     >> >are dim.  >
  47239.  
  47240.     phinely> Is this a joke, or did this message get lost in
  47241.     phinely> cyberspace for a couple years?  Why would anybody want to
  47242.     phinely> use kermit?  It's slow and error prone plus a pain to
  47243.     phinely> use.
  47244.  
  47245. Glad you asked
  47246.  
  47247. Me for one, this is the only thing I can use to connect to some remote
  47248. site. Yes it is slow, Yes it is error prone, why do you think the guys
  47249. is asking for improvment?
  47250.  
  47251.  
  47252.  
  47253.  
  47254. From news@columbia.edu Tue Nov  8 17:00:25 1994
  47255. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12617
  47256.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 9 Nov 1994 07:56:57 -0500
  47257. Received: by apakabar.cc.columbia.edu id AA09992
  47258.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 9 Nov 1994 07:56:56 -0500
  47259. Path: news.columbia.edu!sol.ctr.columbia.edu!usc!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  47260. From: jrd@cc.usu.edu (Joe Doupnik)
  47261. Newsgroups: comp.protocols.kermit.misc
  47262. Subject: Re: C-Kermit vs MS-Kermit
  47263. Message-Id: <1994Nov8.230025.32339@cc.usu.edu>
  47264. Date: 8 Nov 94 23:00:25 MDT
  47265. References: <Pine.SUN.3.90.941106143639.22421D-100000@blue> <39mf2a$lpf@apakabar.cc.columbia.edu> <jhurwitCyxuD9.FGy@netcom.com> <39omj0$ocs@news.halcyon.com>
  47266. Organization: Utah State University
  47267. Lines: 50
  47268. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  47269.  
  47270. In article <39omj0$ocs@news.halcyon.com>, ken@coho.halcyon.com (Ken Pizzini) writes:
  47271. > (Sorry for continuing this thread in cpkm...)
  47272. > In article <jhurwitCyxuD9.FGy@netcom.com>,
  47273. > Jeffrey Hurwit <jhurwit@netcom.com> wrote:
  47274. >>In article <39mf2a$lpf@apakabar.cc.columbia.edu>, 
  47275. >>Frank da Cruz (fdc@fdc.cc.columbia.edu) wrote:
  47276. >>
  47277. >>>Although it might be unfashionable these days, there still is quite
  47278. >>>a lot to be said for assembly language, especially when memory and
  47279. >>>addressability are at a premium.
  47280. >>
  47281. >>    Oh, I wouldn't say that (unfashionable, that is).  Shareware
  47282. >>    authors often advertise the fact if they wrote their programs in
  47283. >>    assembly, and sometimes go on to point out the advantages:  A
  47284. >>    program that's small and fast.  There's no compiler in the world
  47285. >>    that can optimize like a knowledgeable programmer.  IMHO, well-
  47286. >>    written assembly is definitely a feature that savvy users look for.
  47287. > The problem with assembly is that complicated-but-faster algorithms
  47288. > are less likely to be used, and it is much more likely that arbritrary
  47289. > limits on data sizes will be introduced in order to simplify programming.
  47290. > Also modern compilers will do a better job of optimizing than a
  47291. > mediocre programmer, in most cases.  In the optimize-for-speed relm it
  47292. > is much more fruitful to program in a high-level-language, profile the
  47293. > resulting program, and hand-code only the routines thus determined to
  47294. > be critical.
  47295. > Then again, modern compilers are usually built to optimize for speed,
  47296. > not space.  If memory is tight hand-coded assembly still has an edge.
  47297. > If nothing else it will encourage the programmer to leave out some
  47298. > unnecessary bells and whistles.
  47299. ------------
  47300.     May I end this thread as a person with some experience in both
  47301. assembler and C?
  47302.     There is no way C can beat decent assembler. All those push/pops
  47303. and stack references (that's touching real memory folks) kill performance.
  47304. Programs beyond the hobbyist level aren't designed and written by undoing
  47305. C code to assembler; far from it. They are designed differently from the 
  47306. ground up.
  47307.     I doubt many readers here have any idea of what is involved using
  47308. C without all the helpful crutches provided by the compiler vendor. Remove
  47309. the startup routines, and the run time libraries, and mix in near and far
  47310. code and data, add interrupt routines. That will do for openers. It's not
  47311. at all like programming "Hello World\n". Yet this occurs in MS-DOS Kermit
  47312. which is 80% assembler and which uses C for the TCP/IP stack, and that's
  47313. run partly at interrupt level and never as a "main" program. There is 
  47314. no main() nor any vendor libraries etc. And I wish your last phrase were
  47315. true, sigh.
  47316.     Joe D.
  47317.  
  47318. From news@columbia.edu Wed Nov  9 13:16:47 1994
  47319. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13926
  47320.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 9 Nov 1994 08:29:16 -0500
  47321. Received: by apakabar.cc.columbia.edu id AA11327
  47322.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 9 Nov 1994 08:29:14 -0500
  47323. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news.sprintlink.net!pipex!lyra.csx.cam.ac.uk!sunsite.doc.ic.ac.uk!susx.ac.uk!leilabd
  47324. From: leilabd@central.susx.ac.uk (Leila Burrell-Davis)
  47325. Newsgroups: comp.protocols.kermit.misc
  47326. Subject: Re: Receiving files "automatically"
  47327. Date: 9 Nov 1994 13:16:47 GMT
  47328. Organization: Computing Service, University of Sussex, UK
  47329. Lines: 20
  47330. Message-Id: <39qi3v$s7r@infa.central.susx.ac.uk>
  47331. References: <DRW.94Nov1095927@runge.mit.edu> <CyLouB.6Lu@ritz.mordor.com> <DRW.94Nov7142624@runge.mit.edu>
  47332. Nntp-Posting-Host: solx1.central.susx.ac.uk
  47333. X-Newsreader: TIN [version 1.2 PL2]
  47334. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  47335.  
  47336. Dale R. Worley (drw@runge.mit.edu) wrote:
  47337. % Well, it comes with a lot of documentation files, but they're
  47338. % hellishly organized.  The DIAL command, the second most important
  47339. % feature (the first is terminal emulation), isn't in KERMIT.HLP, the
  47340. % obvious documentation file, but is banished to the "Release notes"
  47341. % file for some incomprehensible reason.  Since one expects DIAL to have
  47342. % been is version 1.0000, one does not naturally think of looking in the
  47343. % release notes for it.
  47344.  
  47345. I know it's frustrating when you can't get software to work, but I
  47346. really do think you should modify your tone when asking for help. I'm
  47347. astonished at how patient people have been in replying to your 
  47348. queries given the way that you phrase them.
  47349.  
  47350. Leila
  47351. -- 
  47352. Leila Burrell-Davis, Computing Service, University of Sussex, Brighton, UK
  47353. Tel:  +44 (0) 1273 678390            Fax:  +44 (0) 1273 678470
  47354. Email: L.Burrell-Davis@sussex.ac.uk
  47355. PGP Public Key fingerprint: 18 A3 45 D6 40 6D 62 00  E9 71 AD 18 E8 E2 9F 7D 
  47356.  
  47357. From news@columbia.edu Wed Nov  9 09:01:10 1994
  47358. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15705
  47359.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 9 Nov 1994 09:01:10 -0500
  47360. Received: by apakabar.cc.columbia.edu id AA12714
  47361.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 9 Nov 1994 09:01:09 -0500
  47362. Path: news.columbia.edu!panix!news.mathworks.com!uhog.mit.edu!bloom-beacon.mit.edu!senator-bedfellow.mit.edu!math.mit.edu!drw
  47363. From: drw@runge.mit.edu (Dale R. Worley)
  47364. Newsgroups: comp.protocols.kermit.misc
  47365. Subject: Re: Receiving files "automatically"
  47366. Date: 9 Nov 94 08:58:40
  47367. Organization: National Institute for Lameness, Cambridge, MA, USA
  47368. Lines: 29
  47369. Message-Id: <DRW.94Nov9085840@runge.mit.edu>
  47370. References: <DRW.94Nov7142624@runge.mit.edu><39m861$bob@apakabar.cc.columbia.edu>
  47371.     <DRW.94Nov8110735@runge.mit.edu> <1994Nov8.105602.32280@cc.usu.edu>
  47372. Nntp-Posting-Host: runge.mit.edu
  47373. In-Reply-To: jrd@cc.usu.edu's message of 8 Nov 94 10:56:02 MDT
  47374. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  47375.  
  47376. In article <1994Nov8.105602.32280@cc.usu.edu> jrd@cc.usu.edu (Joe Doupnik) writes:
  47377.    > If I wanted to buy the manual for a telecomm program, I'd go to my
  47378.    > local software store and buy Procomm.
  47379.  
  47380.    But then you'd have to read it all by yourself with no way to
  47381.    talk to the developers.
  47382.  
  47383. So far, the developers haven't been stunningly useful.  I've made one
  47384. request, "The DIAL command is the single most important command in a
  47385. terminal emulator, so you should make it *easy* to find out how to use
  47386. it." and the developers have replied "We don't care."
  47387.  
  47388. And for most commercial software, you *can* talk to tech support.  And
  47389. the developers do listen to what customers complain about.
  47390.  
  47391.    DOS ain't Unix, in case you haven't discovered that yet. Unix
  47392.    won't necessarily find files either unless the PATH is used or the
  47393.    program is built to look in its startup directory.
  47394.  
  47395. You just compile the correct directory into the executable.  It works
  47396. quite reliably.
  47397.  
  47398. Dale
  47399.  
  47400. Dale Worley        Dept. of Math., MIT        drw@math.mit.edu
  47401. --
  47402. We have ways to make you scream.
  47403. -- Intel advertisement, in the June 1989 Doctor Dobbs Journal
  47404. (Yeah, like having to write 80x86 assembler code!)
  47405.  
  47406. From news@columbia.edu Wed Nov  9 13:32:34 1994
  47407. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17712
  47408.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 9 Nov 1994 09:32:02 -0500
  47409. Received: by apakabar.cc.columbia.edu id AA14718
  47410.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 9 Nov 1994 09:32:00 -0500
  47411. Newsgroups: comp.protocols.kermit.misc
  47412. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!travelers.mail.cornell.edu!newstand.syr.edu!galileo.cc.rochester.edu!uhura.cc.rochester.edu!mcia
  47413. From: mcia@uhura.cc.rochester.edu (Mike Ciaraldi)
  47414. Subject: Re: Receiving files "automatically"
  47415. Message-Id: <1994Nov9.133234.27003@galileo.cc.rochester.edu>
  47416. Sender: news@galileo.cc.rochester.edu
  47417. Nntp-Posting-Host: uhura.cc.rochester.edu
  47418. Organization: University of Rochester (Rochester, NY)
  47419. References: <DRW.94Nov8110735@runge.mit.edu> <39oaco$5us@apakabar.cc.columbia.edu>
  47420. Date: Wed, 9 Nov 94 13:32:34 GMT
  47421. Lines: 19
  47422. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  47423.  
  47424. In article <39oaco$5us@apakabar.cc.columbia.edu> fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  47425. >In article <DRW.94Nov8110735@runge.mit.edu> drw@runge.mit.edu (Dale R.  
  47426. >Worley) writes:
  47427. >> If I wanted to buy the manual for a telecomm program, I'd go to my
  47428. >> local software store and buy Procomm.
  47429. >> 
  47430. >A noble attitude.  In other words, since you don't want to buy a manual,
  47431. >you expect real human people to work for you, for free.  To develop
  47432. >software for you AND document it, AND answer your questions, all for
  47433. >free, and listen to your complaints about how they did it.  Please, go
  47434. >buy Procomm.
  47435. >
  47436. >- Frank
  47437.  
  47438. Well said, Frank!
  47439.  
  47440. --Mike Ciaraldi
  47441.   University of Rochester
  47442.  
  47443.  
  47444. From news@columbia.edu Wed Nov  9 14:35:28 1994
  47445. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17971
  47446.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 9 Nov 1994 09:35:41 -0500
  47447. Received: by apakabar.cc.columbia.edu id AA15033
  47448.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 9 Nov 1994 09:35:40 -0500
  47449. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  47450. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  47451. Newsgroups: comp.protocols.kermit.misc
  47452. Subject: Re: Receiving files "automatically"
  47453. Date: 9 Nov 1994 14:35:28 GMT
  47454. Organization: Columbia University
  47455. Lines: 57
  47456. Message-Id: <39qmng$ela@apakabar.cc.columbia.edu>
  47457. References: <DRW.94Nov7142624@runge.mit.edu> <DRW.94Nov8110735@runge.mit.edu> <1994Nov8.105602.32280@cc.usu.edu> <DRW.94Nov9085840@runge.mit.edu>
  47458. Nntp-Posting-Host: watsun.cc.columbia.edu
  47459. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  47460.  
  47461. In article <DRW.94Nov9085840@runge.mit.edu>,
  47462. Dale R. Worley <drw@runge.mit.edu> wrote:
  47463. >In article <1994Nov8.105602.32280@cc.usu.edu> jrd@cc.usu.edu (Joe Doupnik) writes:
  47464. >So far, the developers haven't been stunningly useful.  I've made one
  47465. >request, "The DIAL command is the single most important command in a
  47466. >terminal emulator, so you should make it *easy* to find out how to use
  47467. >it." and the developers have replied "We don't care."
  47468.  
  47469.  
  47470. The "we don't care." are your words not Frank's, not Joe's, and not mine.
  47471. We do care.  However, we also do have limited time.  3.14 is still in Beta.
  47472. There is a ways to go yet.  Be patient.  
  47473.  
  47474. Frank and Joe commented in previous messages about your claim that DIAL was
  47475. not documented anywhere.  They correctly pointed out that you were wrong.
  47476. Granted, with a several hundred page book, and several update files there is
  47477.  a lot to read.  But this is *free* software (until you buy the manual.)
  47478.  
  47479. >And for most commercial software, you *can* talk to tech support.  And
  47480. >the developers do listen to what customers complain about.
  47481.  
  47482. Hate to tell you.  Tech support is a far cry from talking to the developers.
  47483. Sure Tech Support may be able to tell you where to find the DIAL command
  47484. in the docs, but in most cases they can't help you with the real world of
  47485. non-PC to PC based communication.
  47486.  
  47487. >
  47488. >   DOS ain't Unix, in case you haven't discovered that yet. Unix
  47489. >   won't necessarily find files either unless the PATH is used or the
  47490. >   program is built to look in its startup directory.
  47491. >
  47492. >You just compile the correct directory into the executable.  It works
  47493. >quite reliably.
  47494.  
  47495. Are you saying hard code a specific directory name into an executable?
  47496. This is nuts.  Where do you keep your MS-DOS Kermit?
  47497.  
  47498. C:\KERMIT
  47499. D:\KERMIT
  47500. F:\MSK
  47501. C:\BIN\COMM\MSK
  47502.  
  47503. how are we supposed to know where you keep your files?
  47504.  
  47505. Then there is the second case, I know where the exe files are but
  47506. where are the initialization files.  Many people use separate directories
  47507. of init files in order to preserve separate configurations.  Maybe for
  47508. a laptop on the LAN vs. a laptop connected to the LAN via a remote dialup.
  47509.  
  47510. You can't hard code directory names.  Sorry.
  47511.  
  47512.  
  47513.  
  47514. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  47515. "C-Kermit: available on more platforms than any other communications software."
  47516. "Kermit FTP: sending files whenever and wherever they are needed."
  47517. *NEW* OS/2 version available: ftp kermit.columbia.edu /kermit/bin/ckoker.zip 
  47518.  
  47519. From news@columbia.edu Wed Nov  9 19:53:50 1994
  47520. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15015
  47521.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 9 Nov 1994 15:39:39 -0500
  47522. Received: by apakabar.cc.columbia.edu id AA17528
  47523.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 9 Nov 1994 15:39:37 -0500
  47524. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!swrinde!sgiblab!idiom.com!idiom!jason
  47525. From: jason@idiom.com (Jason Venner)
  47526. Newsgroups: comp.protocols.kermit.misc
  47527. Subject: [ANSWER] Re: C Kermit and meta keys -
  47528. Date: 09 Nov 1994 19:53:50 GMT
  47529. Organization: Idiom Consulting / Berkeley, CA  USA
  47530. Lines: 6
  47531. Distribution: world
  47532. Message-Id: <JASON.94Nov9115351@idiom.com>
  47533. References: <JASON.94Nov3134526@idiom.com>
  47534. Nntp-Posting-Host: idiom.com
  47535. In-Reply-To: jason@idiom.com's message of 03 Nov 1994 21:45:26 GMT
  47536. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  47537.  
  47538.  
  47539. The answer to this question is:
  47540.  
  47541. set command bytesize 8
  47542.  
  47543. Thanks to Ken Pizzini <ken@halcyon.com> for the answer.
  47544.  
  47545. From news@columbia.edu Wed Nov  9 01:15:17 1994
  47546. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15340
  47547.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 9 Nov 1994 15:44:20 -0500
  47548. Received: by apakabar.cc.columbia.edu id AA18014
  47549.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 9 Nov 1994 15:44:19 -0500
  47550. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!news.duke.edu!news-feed-1.peachnet.edu!gatech!howland.reston.ans.net!news.moneng.mei.com!uwm.edu!lll-winken.llnl.gov!koriel!newsworthy.West.Sun.COM!cronkite.Central.Sun.COM!news2me.EBay.Sun.COM!engnews2.Eng.Sun.COM!peregrine!falk
  47551. From: falk@peregrine.eng.sun.com (Ed Falk)
  47552. Newsgroups: comp.protocols.kermit.misc
  47553. Subject: pointer to kermit protocol spec?
  47554. Date: 9 Nov 1994 01:15:17 GMT
  47555. Organization: Sun
  47556. Lines: 8
  47557. Message-Id: <39p7r5$fo1@engnews2.Eng.Sun.COM>
  47558. Nntp-Posting-Host: peregrine.eng.sun.com
  47559. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  47560.  
  47561. Hi all; can anybody point me to the kermit protocol spec?  It
  47562. would be ever so much easier than reading source code.
  47563.  
  47564. ADVthanxANCE,
  47565. -- 
  47566.         -ed falk, sun microsystems
  47567.          falk@sun.com
  47568.     "Towards the end, the smell of their air began to change"
  47569.  
  47570. From news@columbia.edu Wed Nov  9 19:46:33 1994
  47571. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21182
  47572.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 9 Nov 1994 17:06:52 -0500
  47573. Received: by apakabar.cc.columbia.edu id AA07570
  47574.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 9 Nov 1994 17:06:51 -0500
  47575. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!europa.eng.gtefsd.com!howland.reston.ans.net!news.sprintlink.net!nwnexus!news.halcyon.com!coho!ken
  47576. From: ken@coho.halcyon.com (Ken Pizzini)
  47577. Newsgroups: comp.protocols.kermit.misc
  47578. Subject: Re: C Kermit and meta keys
  47579. Date: 9 Nov 1994 19:46:33 GMT
  47580. Organization: What, me?
  47581. Lines: 16
  47582. Message-Id: <39r8up$37e@news.halcyon.com>
  47583. References: <JASON.94Nov3134526@idiom.com> <39eco1$h7k@news.halcyon.com>
  47584. Nntp-Posting-Host: coho.halcyon.com
  47585. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  47586.  
  47587. In article <39eco1$h7k@news.halcyon.com>,
  47588. Ken Pizzini <ken@chinook.halcyon.com> wrote:
  47589. >In article <JASON.94Nov3134526@idiom.com>,
  47590. >Jason Venner <jason@idiom.com> wrote:
  47591. >>I use C-Kermit on my linux machine and dial into various unix hosts.
  47592. >>
  47593. >>Kermit does not seem to honor the meta key.
  47594. >>Is there a way to make it recongnize 8 bit characters and pass them through
  47595. >>to the remote side?
  47596. >
  47597. >set term byte 8
  47598.  
  47599. This was only a partial answer.  He also needed to
  47600.   set command bytesize 8
  47601.  
  47602.         --Ken Pizzini
  47603.  
  47604. From news@columbia.edu Wed Nov  9 20:01:32 1994
  47605. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29271
  47606.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 9 Nov 1994 19:25:04 -0500
  47607. Received: by apakabar.cc.columbia.edu id AA19617
  47608.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 9 Nov 1994 19:25:01 -0500
  47609. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!news.ultranet.com!newsie.dmc.com!spdcc!merk!harvee.billerica.ma.us!esj
  47610. From: esj@harvee.billerica.ma.us (Eric S Johansson)
  47611. Newsgroups: comp.protocols.kermit.misc
  47612. Distribution: world
  47613. Message-Id: <H.eg.THO968filpM@harvee.billerica.ma.us>
  47614. Subject: Re: C Kermit and meta keys
  47615. References: <JASON.94Nov3134526@idiom.com> <1994Nov4.172840.32062@cc.usu.edu>
  47616. Reply-To: esj@harvee.billerica.ma.us
  47617. X-Software: HERMES GUS 1.10 Rev. May  3 1993
  47618. Date: Wed, 09 Nov 1994 15:01:32 -0500
  47619. Mime-Version: 1.0
  47620. Content-Type: text/plain; charset=US-ASCII
  47621. Content-Transfer-Encoding: 7bit
  47622. Lines: 21
  47623. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  47624.  
  47625. In <1994Nov4.172840.32062@cc.usu.edu>, Joe Doupnik writes:
  47626. >In article <JASON.94Nov3134526@idiom.com>, jason@idiom.com (Jason Venner) writes:
  47627. >> Kermit does not seem to honor the meta key.
  47628. >> Is there a way to make it recongnize 8 bit characters and pass them through
  47629. >> to the remote side?
  47630. >> 
  47631. >    There isn't such a key. Perhaps you are still thinking of how
  47632. >Emacs chooses to interpret the local keyboard. Hint: ALT sends nothing,
  47633. >it only modifies other keypresses, and the modification has nothing at
  47634. >all to do with adding a high bit. Ditto Control and Shift. Emacs is
  47635. >wierd this way.
  47636. >    Joe D.
  47637.  
  47638. well, in days long past, in RMS land, there were systems with 
  47639. "meta" key as well as a "hyper" key.  if I remember correctly, 
  47640. "meta" did add 0x80 to each char.
  47641.  
  47642. --- eric
  47643. -- 
  47644. esj@harvee.billerica.ma.us         ka1eec
  47645. those that do not read history are doomed to repost it
  47646.  
  47647. From news@columbia.edu Wed Nov  9 23:07:36 1994
  47648. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29928
  47649.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 9 Nov 1994 19:34:29 -0500
  47650. Received: by apakabar.cc.columbia.edu id AA20453
  47651.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 9 Nov 1994 19:34:27 -0500
  47652. Path: news.columbia.edu!panix!news.mathworks.com!hookup!news.moneng.mei.com!uwm.edu!msuinfo!harbinger.cc.monash.edu.au!news.uwa.edu.au!madvax.uwa.edu.au!watson
  47653. From: watson@madvax.maths.uwa.edu.au (David Watson)
  47654. Newsgroups: comp.protocols.kermit.misc
  47655. Subject: How to tell Kermit I have a sun-cmd screen?
  47656. Date: 9 Nov 1994 23:07:36 GMT
  47657. Organization: Maths Dept UWA
  47658. Lines: 12
  47659. Distribution: world
  47660. Message-Id: <39rkno$vaj@styx.uwa.edu.au>
  47661. Nntp-Posting-Host: pandanus.maths.uwa.edu.au
  47662. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  47663.  
  47664. I run Linux on my 486 and so I have XView and the openwin screens
  47665. which I have become quite accustomed to.  But Kermit doesn't understand
  47666. them and I have to use the vt100 terminal screen when I use Kermit.  
  47667.  
  47668. How can I tell Kermit that I have sun-cmd screens?
  47669.  
  47670. Many thanks for any help.
  47671. -- 
  47672. Dave Watson                          Internet: watson@maths.uwa.edu.au
  47673. Department of Mathematics                          watson@DIALix.oz.au
  47674. The University of Western Australia               Tel: (61 9) 380 1359
  47675. Nedlands, WA 6009  Australia.                     FAX: (61 9) 380 1028
  47676.  
  47677. From news@columbia.edu Thu Nov 10 02:17:28 1994
  47678. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07783
  47679.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 9 Nov 1994 22:08:31 -0500
  47680. Received: by apakabar.cc.columbia.edu id AA02613
  47681.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 9 Nov 1994 22:08:30 -0500
  47682. Newsgroups: comp.protocols.kermit.misc
  47683. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!hookup!news.moneng.mei.com!howland.reston.ans.net!ix.netcom.com!netcom.com!jhurwit
  47684. From: jhurwit@netcom.com (Jeffrey Hurwit)
  47685. Subject: Re: re msdos kermit 3.14 ...
  47686. Message-Id: <jhurwitCz1514.LHK@netcom.com>
  47687. Organization: Organization?  What organization?
  47688. X-Newsreader: TIN [version 1.2 PL1]
  47689. References: <39qhs2$k1j@bingnet1.cc.binghamton.edu>
  47690. Date: Thu, 10 Nov 1994 02:17:28 GMT
  47691. Lines: 52
  47692. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  47693.  
  47694. In article <39qhs2$k1j@bingnet1.cc.binghamton.edu>, 
  47695. br00031@bingsuns.cc.binghamton.edu wrote:
  47696.  
  47697. >Hi, 
  47698. >Could anyone explain what I should do with the files from
  47699. >kermit.columbia.edu.
  47700. >These do not seem to be executables. 
  47701.  
  47702.     Are you sure you're getting the right file-- kermit/test/bin/
  47703.     mstibm.zip?  Your executables are right after the readme:
  47704.  
  47705. Archive:  mstibm.zip
  47706.  Length  Method   Size  Ratio   Date    Time   CRC-32     Name ("^" ==> case
  47707.  ------  ------   ----  -----   ----    ----   ------     ----   conversion)
  47708.   10577  Implode   4473  58%  10-30-94  15:59  b99272a2  ^read.me
  47709.  228152  Implode 146491  36%  11-07-94  10:40  cbf6f11f  ^kermit.exe <===
  47710.  158290  Implode 102723  35%  11-07-94  10:40  533ef169  ^kermite.exe <===
  47711.  103274  Implode  66358  36%  11-07-94  10:40  f94fd286  ^kerlite.exe <===
  47712.  
  47713. >                                    Am I supposed to compile the
  47714. >binary code or do I just place the files in the directory where
  47715. >mskermit 3.13 is now.
  47716.  
  47717.     Neither.  There's nothing to compile-- the executables are ready to
  47718.     run.  You may want to work over the INItialization and script
  47719.     files, depending on how you use Kermit.
  47720.  
  47721.     Since this is a beta, it would probably be better if you were to
  47722.     create a separate directory for 3.14, rather than just dumping the
  47723.     files in (and overwriting files already in) the directory where you
  47724.     have 3.13.
  47725.  
  47726. >                       Also before I bother upgrading,  if the server
  47727. >I conncet to, my University,  does not upgrade its version of Kermit
  47728. >on its platform is my upgrading a waste of time? Thank you
  47729.  
  47730.     That all depends on what features you want the most.  If the Kermit
  47731.     on your host is so old that it doesn't support sliding windows,
  47732.     long packets, control character unprefixing, or uses the old
  47733.     terminalR/terminalS instead of the newer APC, the new Kermit won't
  47734.     help all that much.  However, if you want the new script commands,
  47735.     character sets, etc., then get 3.14.
  47736.  
  47737.     I can't speak for other platforms, but if your account is on a Unix
  47738.     host and you have the space in your quota, it's not too hard to get
  47739.     the sources for C-Kermit 190 and build your own copy.  (If space
  47740.     *is* a problem, gzexe compresses the executable very nicely to
  47741.     about 1/2 original size.)  IMO the new crash recovery feature alone
  47742.     is worth the effort, and if your host's Kermit doesn't have the
  47743.     other features previously mentioned, so much more the reason.
  47744.  
  47745.                         Jeff
  47746.  
  47747. From news@columbia.edu Thu Nov 10 01:41:11 1994
  47748. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09065
  47749.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 9 Nov 1994 22:33:05 -0500
  47750. Received: by apakabar.cc.columbia.edu id AA04586
  47751.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 9 Nov 1994 22:33:03 -0500
  47752. Path: news.columbia.edu!sol.ctr.columbia.edu!ucsnews!ucssun1!gillespi
  47753. From: gillespi@ucssun1.sdsu.edu (gillespie)
  47754. Newsgroups: comp.protocols.kermit.misc
  47755. Subject: HELP!
  47756. Date: 10 Nov 1994 01:41:11 GMT
  47757. Organization: San Diego State University Computing Services
  47758. Lines: 13
  47759. Message-Id: <39rtnn$spo@gondor.sdsu.edu>
  47760. Nntp-Posting-Host: 130.191.1.100
  47761. X-Newsreader: TIN [version 1.2 PL0]
  47762. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  47763.  
  47764. So I've figured out how to ftp files to my account @ sdsu's ucssun1
  47765. and can even look and see that they are there.  I found a handout
  47766. at the university computer operations office that gave some insight into
  47767. using kermit, but I'm still missing some pieces of the puzzle.  Here I 
  47768. sit at home connected to the sun server, but I can't quite figure out
  47769. how to send files to my PC.  I tried the send command with one of the
  47770. files that I ftp'd to my acct. and kept getting told that the file
  47771. I was asking for didn't exist.  However, after using the "ls" command
  47772. at the c kermit prompt the file I wanted to send was listed.  Where am
  47773. I going wrong.  If anyone could email me a procedure for downloading 
  47774. files please do!
  47775.  
  47776. Wally Gillespie
  47777.  
  47778. From news@columbia.edu Wed Nov  9 13:34:40 1994
  47779. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09288
  47780.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 9 Nov 1994 22:39:06 -0500
  47781. Received: by apakabar.cc.columbia.edu id AA04974
  47782.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 9 Nov 1994 22:39:06 -0500
  47783. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  47784. From: jrd@cc.usu.edu (Joe Doupnik)
  47785. Newsgroups: comp.protocols.kermit.misc
  47786. Subject: Re: re msdos kermit 3.14 ...
  47787. Message-Id: <1994Nov9.193440.32420@cc.usu.edu>
  47788. Date: 9 Nov 94 19:34:40 MDT
  47789. References: <39qhs2$k1j@bingnet1.cc.binghamton.edu>
  47790. Organization: Utah State University
  47791. Lines: 14
  47792. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  47793.  
  47794. In article <39qhs2$k1j@bingnet1.cc.binghamton.edu>, br00031@bingsuns.cc.binghamton.edu () writes:
  47795. > Hi, 
  47796. > Could anyone explain what I should do with the files from
  47797. > kermit.columbia.edu.
  47798. > These do not seem to be executables. Am I supposed to compile the
  47799. > binary code or do I just place the files in the directory where
  47800. > mskermit 3.13 is now.  Also before I bother upgrading,  if the server
  47801. > I conncet to, my University,  does not upgrade its version of Kermit
  47802. > on its platform is my upgrading a waste of time? Thank you
  47803. ----------
  47804.     Don't touch them! MS-DOS Kermit v3.14 is in beta testing; it is
  47805. not release level material yet. Please wait for the formal announcement
  47806. then follow instructions in that message.
  47807.     Joe D.
  47808.  
  47809. From news@columbia.edu Wed Nov  9 13:52:21 1994
  47810. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09338
  47811.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 9 Nov 1994 22:40:40 -0500
  47812. Received: by apakabar.cc.columbia.edu id AA05208
  47813.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 9 Nov 1994 22:40:39 -0500
  47814. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!news.duke.edu!convex!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  47815. From: jrd@cc.usu.edu (Joe Doupnik)
  47816. Newsgroups: comp.protocols.kermit.misc
  47817. Subject: Re: C-Kermit vs MS-Kermit
  47818. Message-Id: <1994Nov9.195221.32422@cc.usu.edu>
  47819. Date: 9 Nov 94 19:52:21 MDT
  47820. References: <Pine.SUN.3.90.941106143639.22421D-100000@blue> <39mf2a$lpf@apakabar.cc.columbia.edu> <39r47t$pil@burgundy.csn.net>
  47821. Organization: Utah State University
  47822. Lines: 39
  47823. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  47824.  
  47825. In article <39r47t$pil@burgundy.csn.net>, oberg@teal.csn.org (Craig Oberg)
  47826.  writes:
  47827. > fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  47828. >>In article <Pine.SUN.3.90.941106143639.22421D-100000@blue> "Archimedes L.  
  47829. >>Trajano" <cs932070@ariel.cs.yorku.ca> writes:
  47830. >>> Is it not possible to create an MS-DOS version of Kermit from the 
  47831. >>> C-Kermit source files?
  47832. >>> 
  47833. >>Maybe, but why bother?  It would be bigger, slower, and do less, except
  47834. >>for some of the script programming features.  With some care, it is quite
  47835. >>possible to write script programs that are portable between MS-DOS
  47836. >>Kermit and C-Kermit.  I'm not denigrating C-Kermit at all, but really,
  47837. >>when you consider how much functionality is packed into the 200K-or-so
  47838. >>MS-DOS Kermit executable, it's astounding.
  47839. > For my use, the script programming is one of the MOST important 
  47840. > features of MS-kermit and C-Kermit. I would love to have the the 
  47841. > C-kermit and MS-Kermit scripting interfaces be 100% compatible
  47842. > (except for those limited by the OS). Perhaps there could be a 
  47843. > way to  link the C-kermit scripting source in to the MS-kermit 
  47844. > version with out increasing the size dramaticly. If this is not 
  47845. > possible or wise, then I would request to enhance the MS-kermit's
  47846. > scripting features to be compatible with C-kermit. For me, I
  47847. > would trade a lot of the size to get compatibility and readability
  47848. > of MS-kermit  scripts.
  47849. ----------
  47850.     I'm sorry, but MSK and CK are not code compatible at all.
  47851. The command parsers which you like so much are extremely complicated
  47852. sets of code in each program, and they are very different. There will
  47853. be operations in one which are either awkward to implement in the
  47854. other or just can't be because of internal design considerations.
  47855. We try to make the two behave similarly, but there are limits on
  47856. program effects as well as person time involved (and I want to
  47857. emphasize that this means a *lot* of concentrated effort).
  47858.     I don't understand your last sentence. I can say that we won't
  47859. trade lots of program space (memory) for seldom used features. But then 
  47860. we don't have any idea of what's important to you.
  47861.     Joe D. 
  47862.  
  47863. From news@columbia.edu Thu Nov 10 03:51:17 1994
  47864. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25177
  47865.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 10 Nov 1994 04:52:15 -0500
  47866. Received: by apakabar.cc.columbia.edu id AA23959
  47867.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 10 Nov 1994 04:52:13 -0500
  47868. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!udel!gatech!howland.reston.ans.net!vixen.cso.uiuc.edu!prairienet.org!jwarner
  47869. From: jwarner@prairienet.org (Jack E. Warner)
  47870. Newsgroups: comp.protocols.kermit.misc
  47871. Subject: if busy hangup and try again ...
  47872. Date: 10 Nov 1994 03:51:17 GMT
  47873. Organization: University of Illinois at Urbana
  47874. Lines: 22
  47875. Message-Id: <39s5bl$dqe@vixen.cso.uiuc.edu>
  47876. Reply-To: jwarner@prairienet.org (Jack E. Warner)
  47877. Nntp-Posting-Host: firefly.prairienet.org
  47878. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  47879.  
  47880.  
  47881. My .kermrc file looks something like this (from memory):
  47882.  
  47883.     set line /dev/ph1
  47884.     set speed 9600
  47885.     set <something else>
  47886.     log session
  47887.     dial 0000000
  47888.     connect
  47889.  
  47890. How do I tell C-Kermit for UNIX "if you get a busy signal, hangup and redial
  47891. until you get success, then connect"? I have no documentation for this
  47892. program and would like to customize it just a bit and get tired of typing
  47893. red, ^c, red ^c, red, ^c, red, ^c, red, ... connect.
  47894.  
  47895. Please send response to jwarner@prairienet.org
  47896. Thanks, 
  47897. Jack.
  47898.  
  47899.  
  47900. -- 
  47901.  
  47902.  
  47903. From news@columbia.edu Thu Nov 10 09:48:26 1994
  47904. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25631
  47905.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 10 Nov 1994 05:05:39 -0500
  47906. Received: by apakabar.cc.columbia.edu id AA24437
  47907.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 10 Nov 1994 05:05:36 -0500
  47908. Newsgroups: comp.protocols.kermit.misc
  47909. Path: news.columbia.edu!panix!news.mathworks.com!hookup!usc!howland.reston.ans.net!ix.netcom.com!netcom.com!jhurwit
  47910. From: jhurwit@netcom.com (Jeffrey Hurwit)
  47911. Subject: Re: HELP!
  47912. Message-Id: <jhurwitCz1pwq.587@netcom.com>
  47913. Organization: Organization?  What organization?
  47914. X-Newsreader: TIN [version 1.2 PL1]
  47915. References: <39rtnn$spo@gondor.sdsu.edu>
  47916. Date: Thu, 10 Nov 1994 09:48:26 GMT
  47917. Lines: 27
  47918. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  47919.  
  47920. In article <39rtnn$spo@gondor.sdsu.edu>, 
  47921. gillespie (gillespi@ucssun1.sdsu.edu) wrote:
  47922.  
  47923. >So I've figured out how to ftp files to my account @ sdsu's ucssun1
  47924. >and can even look and see that they are there.  I found a handout
  47925. >at the university computer operations office that gave some insight into
  47926. >using kermit, but I'm still missing some pieces of the puzzle.  Here I 
  47927. >sit at home connected to the sun server, but I can't quite figure out
  47928. >how to send files to my PC.  I tried the send command with one of the
  47929. >files that I ftp'd to my acct. and kept getting told that the file
  47930. >I was asking for didn't exist.  However, after using the "ls" command
  47931. >at the c kermit prompt the file I wanted to send was listed.  Where am
  47932. >I going wrong.  If anyone could email me a procedure for downloading 
  47933. >files please do!
  47934.  
  47935.     I can think of only one remote possibility (even more remote,
  47936.     considering that you got ftp to work): You are aware, aren't you,
  47937.     that the Unix system on which you have your account is case
  47938.     sensitive?  Because it is, so is the Kermit running on it.  You
  47939.     have to type in the file name *exactly* as it appears in the "ls"
  47940.     listing, after the send command.  Unlike with DOS, filename,
  47941.     Filename, and FILENAME are different names for different files.
  47942.  
  47943.     Other than this guess, I haven't a clue, and I'm sorry if I've told
  47944.     you something so basic as to sound insulting.
  47945.  
  47946.                         Jeff
  47947.  
  47948. From news@columbia.edu Mon Nov  7 07:59:02 1994
  47949. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26124
  47950.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 10 Nov 1994 05:22:29 -0500
  47951. Received: by apakabar.cc.columbia.edu id AA25264
  47952.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 10 Nov 1994 05:22:28 -0500
  47953. Path: news.columbia.edu!panix!news.mathworks.com!hookup!news.moneng.mei.com!howland.reston.ans.net!pipex!uunet!psinntp!hk.super.net!news.ust.hk!hpg30a.csc.cuhk.hk!ctsc.hkbc.hk!ctsc.hkbc.hk!not-for-mail
  47954. From: s11976@ctsc.hkbc.hk (PM Wong)
  47955. Newsgroups: comp.protocols.kermit.misc
  47956. Subject: Can Kermit 3.14 run on PCTCP's ODIPKT
  47957. Date: 7 Nov 1994 15:59:02 +0800
  47958. Organization: HONG KONG BAPTIST COLLEGE
  47959. Lines: 16
  47960. Message-Id: <39kmo6$k82@ctsc.hkbc.hk>
  47961. Nntp-Posting-Host: ctsc.hkbc.hk
  47962. X-Newsreader: TIN [version 1.1 PL9]
  47963. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  47964.  
  47965. We have been using Kermit's telnet (over either packet driver or Novell's
  47966. ODI, i.e. Da Lancinni's ODIPKT) for quite some time now. Recently some
  47967. PCTCP's apps have to be run and we want to keep the user Kermit telnet.
  47968. So it'll be handy if Kermit can run on top of PCTCP's ODIPKT
  47969. (I don't want to go for the tnglass option as batch files have been
  47970. written that use kermit's telnet all along)
  47971. --
  47972.  
  47973.                     \\\//
  47974.                     (o o)
  47975. [----------------ooO-(_)-Ooo---------------] PM Wong (Computer Officer)
  47976. [User User User User User User User User Us] CTSC Hong Kong Baptist College
  47977. [ser User User User User User User User Use] 224 Waterloo Road, Kln. HONGKONG
  47978. [er User User User User User User User User] Voice: (852)3397425  Fax: 3397888
  47979. [------------------------------------------] Email: pm@ctsc.hkbc.hk 
  47980.  
  47981.  
  47982. From news@columbia.edu Wed Nov  9 15:56:36 1994
  47983. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27997
  47984.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 10 Nov 1994 06:24:12 -0500
  47985. Received: by apakabar.cc.columbia.edu id AA27392
  47986.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 10 Nov 1994 06:24:10 -0500
  47987. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  47988. From: jrd@cc.usu.edu (Joe Doupnik)
  47989. Newsgroups: comp.protocols.kermit.misc
  47990. Subject: Re: pointer to kermit protocol spec?
  47991. Message-Id: <1994Nov9.215636.32432@cc.usu.edu>
  47992. Date: 9 Nov 94 21:56:36 MDT
  47993. References: <39p7r5$fo1@engnews2.Eng.Sun.COM>
  47994. Organization: Utah State University
  47995. Lines: 10
  47996. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  47997.  
  47998. In article <39p7r5$fo1@engnews2.Eng.Sun.COM>, falk@peregrine.eng.sun.com (Ed Falk) writes:
  47999. > Hi all; can anybody point me to the kermit protocol spec?  It
  48000. > would be ever so much easier than reading source code.
  48001. -----------
  48002.     Sure, no problem. Purchase the book "Kermit, a file transfer protocol"
  48003. by Frank da Cruz, ISBN 0-932376-88-6, Digital Press (or used to be, Frank?),
  48004. about $35. It's the formal spec doc to that time. Further extensions are
  48005. on kermit.columbia.edu in the kermit directory heirarchy.
  48006.     I have two large grad classes using this book as one of two books.
  48007.     Joe D.
  48008.  
  48009. From news@columbia.edu Thu Nov 10 00:25:23 1994
  48010. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02996
  48011.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 10 Nov 1994 09:20:42 -0500
  48012. Received: by apakabar.cc.columbia.edu id AA05536
  48013.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 10 Nov 1994 09:20:41 -0500
  48014. Path: news.columbia.edu!panix!news.mathworks.com!hookup!usc!howland.reston.ans.net!agate!dog.ee.lbl.gov!news.cs.utah.edu!cc.usu.edu!jrd
  48015. From: jrd@cc.usu.edu (Joe Doupnik)
  48016. Newsgroups: comp.protocols.kermit.misc
  48017. Subject: Re: Can Kermit 3.14 run on PCTCP's ODIPKT
  48018. Message-Id: <1994Nov10.062523.32448@cc.usu.edu>
  48019. Date: 10 Nov 94 06:25:23 MDT
  48020. References: <39kmo6$k82@ctsc.hkbc.hk>
  48021. Organization: Utah State University
  48022. Lines: 14
  48023. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  48024.  
  48025. In article <39kmo6$k82@ctsc.hkbc.hk>, s11976@ctsc.hkbc.hk (PM Wong) writes:
  48026. > We have been using Kermit's telnet (over either packet driver or Novell's
  48027. > ODI, i.e. Da Lancinni's ODIPKT) for quite some time now. Recently some
  48028. > PCTCP's apps have to be run and we want to keep the user Kermit telnet.
  48029. > So it'll be handy if Kermit can run on top of PCTCP's ODIPKT
  48030. > (I don't want to go for the tnglass option as batch files have been
  48031. > written that use kermit's telnet all along)
  48032. ----------
  48033.     I replied to this privately but here is a summary.
  48034.     FTP Inc's ODIPKT has a license detection feature in ARP which
  48035. prevents Kermit or other non-FTP program from accessing ARP packets
  48036. over their ODIPKT. Both FTP's stack and Kermit will run over Harvard's
  48037. ODIPKT, but never together.
  48038.     Joe D.
  48039.  
  48040. From news@columbia.edu Thu Nov 10 16:44:24 1994
  48041. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25744
  48042.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 10 Nov 1994 14:36:51 -0500
  48043. Received: by apakabar.cc.columbia.edu id AA03174
  48044.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 10 Nov 1994 14:36:50 -0500
  48045. Path: news.columbia.edu!panix!zip.eecs.umich.edu!newsxfer.itd.umich.edu!gatech!howland.reston.ans.net!vixen.cso.uiuc.edu!mrcnext.cso.uiuc.edu!zinzow
  48046. From: zinzow@mrcnext.cso.uiuc.edu (Mark S. Zinzow)
  48047. Newsgroups: comp.protocols.kermit.misc
  48048. Subject: Re: if busy hangup and try again ...
  48049. Date: 10 Nov 1994 16:44:24 GMT
  48050. Organization: University of Illinois at Urbana
  48051. Lines: 30
  48052. Message-Id: <39til8$b02@vixen.cso.uiuc.edu>
  48053. References: <39s5bl$dqe@vixen.cso.uiuc.edu>
  48054. Nntp-Posting-Host: mrcnext.cso.uiuc.edu
  48055. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  48056.  
  48057. jwarner@prairienet.org (Jack E. Warner) writes:
  48058. >My .kermrc file looks something like this (from memory):
  48059.  
  48060. >    set line /dev/ph1
  48061. >    set speed 9600
  48062. >    set <something else>
  48063. >    log session
  48064. >    dial 0000000
  48065. >    connect
  48066.  
  48067. >How do I tell C-Kermit for UNIX "if you get a busy signal, hangup and redial
  48068. >until you get success, then connect"? I have no documentation for this
  48069. >program and would like to customize it just a bit and get tired of typing
  48070. >red, ^c, red ^c, red, ^c, red, ^c, red, ... connect.
  48071.  
  48072. >Please send response to jwarner@prairienet.org
  48073. >Thanks, 
  48074. >Jack.
  48075.  
  48076. RTFM.  Kermit has a powerful script language.  Look at the CCSO Kermit doc
  48077. in gopher for a full page of references, or ftp to watsun.cc.columbia.edu.
  48078. Many sample scripts are disctributed with MS-DOS kermit that will do what you
  48079. want.  A trivial one would be:
  48080. :dial-loop
  48081. out ATDT xxx-xxxx\13
  48082. in 45 BUSY
  48083. if suc goto dial-loop
  48084. echo Not Busy, so I assume we're connected!
  48085.  
  48086. You can define this as a macro, or a take-file.
  48087.  
  48088. From news@columbia.edu Thu Nov 10 18:36:22 1994
  48089. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28007
  48090.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 10 Nov 1994 15:06:20 -0500
  48091. Received: by apakabar.cc.columbia.edu id AA05724
  48092.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 10 Nov 1994 15:06:19 -0500
  48093. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!udel!news-4.nss.udel.edu!chopin.udel.edu!not-for-mail
  48094. From: darkstar@chopin.udel.edu (Jerry Alexandratos)
  48095. Newsgroups: comp.protocols.kermit.misc
  48096. Subject: Re: Can Kermit 3.14 run on PCTCP's ODIPKT
  48097. Date: 10 Nov 1994 13:36:22 -0500
  48098. Organization: Broken Toys Unlimited
  48099. Lines: 23
  48100. Message-Id: <39tp76$6ti@chopin.udel.edu>
  48101. References: <39kmo6$k82@ctsc.hkbc.hk>
  48102. Nntp-Posting-Host: chopin.udel.edu
  48103. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  48104.  
  48105. In article <39kmo6$k82@ctsc.hkbc.hk>, PM Wong <s11976@ctsc.hkbc.hk> wrote:
  48106. :We have been using Kermit's telnet (over either packet driver or Novell's
  48107. :ODI, i.e. Da Lancinni's ODIPKT) for quite some time now. Recently some
  48108. :PCTCP's apps have to be run and we want to keep the user Kermit telnet.
  48109. :So it'll be handy if Kermit can run on top of PCTCP's ODIPKT
  48110. :(I don't want to go for the tnglass option as batch files have been
  48111. :written that use kermit's telnet all along)
  48112.  
  48113.  
  48114. It'll work, but I don't understand why you would want to do this. 
  48115. Kermit can directly interface with odi packets (has been able to since
  48116. v3.12 or was that 3.11?)  Anyway, just do a set tcp packet odi instead
  48117. of using the packet driver intrupt.
  48118.  
  48119. However, if you're still hell bent on using PCTCP's odipkt, then yes,
  48120. it will run over that too...
  48121.  
  48122.         --Jerry
  48123.  
  48124. -- 
  48125. |>  Jerry Alexandratos                **  "vengo de la tierra del    <|
  48126. |>  darkstar@strauss.udel.edu         **   fuego ten cuidado cuando  <|
  48127. |>  darkstar@canary.pearson.udel.edu  **   llamas mi nombre..."      <|
  48128.  
  48129. From news@columbia.edu Mon Nov  7 14:47:32 1994
  48130. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14350
  48131.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 10 Nov 1994 19:19:34 -0500
  48132. Received: by apakabar.cc.columbia.edu id AA11130
  48133.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 10 Nov 1994 19:19:33 -0500
  48134. Path: news.columbia.edu!panix!news.mathworks.com!news.duke.edu!concert!news.wfu.edu!matthews
  48135. From: matthews@wfu.edu (Rick Matthews)
  48136. Newsgroups: comp.protocols.kermit.misc
  48137. Subject: Re: The Mac version of Kermit has less features than other OS versions.
  48138. Date: 7 Nov 1994 14:47:32 GMT
  48139. Organization: Wake Forest University
  48140. Lines: 26
  48141. Message-Id: <39lem4$9qc@eis.wfunet.wfu.edu>
  48142. References: <3935bt$111o@fidoii.cc.lehigh.edu> <395huk$3uv@apakabar.cc.columbia.edu> <39eb19$6sm@tardis.Tymnet.COM> <phinely-0611941748190001@nts224.dialup.hawaii.edu>
  48143. Nntp-Posting-Host: acg60.wfunet.wfu.edu
  48144. X-Newsreader: TIN [version 1.2 PL2]
  48145. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  48146.  
  48147. phinely@uhunix.uhcc.hawaii.edu wrote:
  48148. : Is this a joke, or did this message get lost in cyberspace for a couple
  48149. : years?  Why would anybody want to use kermit?  
  48150.  
  48151. Unequalled emulation, built-in Tektronix support (in the DOS version),
  48152. and free.
  48153.  
  48154. > It's slow
  48155.  
  48156. My own tests indicate very close to the theoretical maximum.  Transfer
  48157. rates are typically 97% to 106% of Zmodem.  Have you found something
  48158. much faster than Zmodem?
  48159.  
  48160. : and error prone
  48161.  
  48162. I go weeks at a time without an error.  Please elaborate.
  48163.  
  48164. : plus a pain to use.
  48165.  
  48166. Ah, no GUI.
  48167.  
  48168. --
  48169. Rick Matthews                     matthews@wfu.edu            Ham radio:
  48170. Wake Forest University            910-759-5340   (Voice)      WA4GSP
  48171. Winston-Salem, NC 27109-7507      910-759-6142   (FAX)
  48172.  
  48173.  
  48174. From news@columbia.edu Fri Nov 11 04:46:08 1994
  48175. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11447
  48176.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 11 Nov 1994 06:13:50 -0500
  48177. Received: by apakabar.cc.columbia.edu id AA18641
  48178.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 11 Nov 1994 06:13:47 -0500
  48179. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!usc!news.service.uci.edu!rigel.oac.uci.edu!eapu603
  48180. From: eapu603@rigel.oac.uci.edu (Michiko Fukada)
  48181. Newsgroups: comp.protocols.kermit.misc,comp.unix.osf.osf1
  48182. Subject: Re: anyone got kermit on Alpha? where's the ftp site?
  48183. Date: 11 Nov 1994 04:46:08 GMT
  48184. Organization: University of California, Irvine
  48185. Lines: 3
  48186. Distribution: usa
  48187. Message-Id: <39usug$mt5@news.service.uci.edu>
  48188. References: <39ir37$gfl@scunix2.harvard.edu> <1994Nov6.155242.2102@news.csuohio.edu>
  48189. Nntp-Posting-Host: rigel.oac.uci.edu
  48190. Xref: news.columbia.edu comp.protocols.kermit.misc:1056 comp.unix.osf.osf1:6245
  48191. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  48192.  
  48193. Isn't kermit available on the Alpha Freeware CD?
  48194.  
  48195.  
  48196.  
  48197. From news@columbia.edu Thu Nov 10 14:21:45 1994
  48198. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18331
  48199.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 12 Nov 1994 04:21:13 -0500
  48200. Received: by apakabar.cc.columbia.edu id AA29904
  48201.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 12 Nov 1994 04:21:11 -0500
  48202. Path: news.columbia.edu!spcuna!charon.citicorp.com!uunet!news.mathworks.com!udel!gatech!howland.reston.ans.net!pipex!sunic!news.funet.fi!news.csc.fi!kronos.fmi.fi!dionysos.fmi.fi!hurtta
  48203. From: hurtta@dionysos.fmi.fi (Kari E. Hurtta)
  48204. Newsgroups: comp.protocols.kermit.misc,comp.os.msdos.programmer
  48205. Subject: Re: Receiving files "automatically"
  48206. Date: 10 Nov 1994 14:21:45 GMT
  48207. Organization: Finnish Meteorological Institute (FMI)
  48208. Lines: 34
  48209. Message-Id: <39ta9p$5j6@kronos.fmi.fi>
  48210. References: <DRW.94Nov7142624@runge.mit.edu> <DRW.94Nov8110735@runge.mit.edu> <1994Nov8.105602.32280@cc.usu.edu> <DRW.94Nov9085840@runge.mit.edu> <39qmng$ela@apakabar.cc.columbia.edu>
  48211. Nntp-Posting-Host: dionysos.fmi.fi
  48212. Mime-Version: 1.0
  48213. Content-Type: text/plain; charset=iso-8859-1
  48214. Content-Transfer-Encoding: 8bit
  48215. In-Reply-To: Article <39qmng$ela@apakabar.cc.columbia.edu> of Jeffrey Altman
  48216. X-Newsreader: NN version 6.5(beta3).0 #6 (NOV)
  48217. Xref: news.columbia.edu comp.protocols.kermit.misc:1057 comp.os.msdos.programmer:46468
  48218. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  48219.  
  48220. [ From newsgroup comp.protocols.kermit.misc ]
  48221.  
  48222. jaltman@watsun.cc.columbia.edu (Jeffrey Altman) writes:
  48223.  
  48224. ;>   DOS ain't Unix, in case you haven't discovered that yet. Unix
  48225. ;>   won't necessarily find files either unless the PATH is used or the
  48226. ;>   program is built to look in its startup directory.
  48227. ;>
  48228. ;>You just compile the correct directory into the executable.  It works
  48229. ;>quite reliably.
  48230.  
  48231. ;Are you saying hard code a specific directory name into an executable?
  48232. ;This is nuts.  Where do you keep your MS-DOS Kermit?
  48233.  
  48234. ;C:\KERMIT
  48235. ;D:\KERMIT
  48236. ;F:\MSK
  48237. ;C:\BIN\COMM\MSK
  48238.  
  48239. ;how are we supposed to know where you keep your files?
  48240.  
  48241. I have impression, that in MS-DOS 3 (or was it 3.2?) or newer full path from
  48242. where program was started is accessible to program.
  48243.  
  48244. ;Then there is the second case, I know where the exe files are but
  48245. ;where are the initialization files.  Many people use separate directories
  48246.  
  48247. Yes. This is another case, perhaps some environment variable is good
  48248. in this case.
  48249.  
  48250. --
  48251. - Kari E. Hurtta                             /  Eldmd on monimutkaista
  48252.   Kari.Hurtta@Fmi.FI                 puh. (90) 1929 658
  48253.   {hurtta,root,Postmaster}@dionysos.fmi.fi
  48254.  
  48255. From news@columbia.edu Sun Nov 12 02:02:54 1994
  48256. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20758
  48257.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 12 Nov 1994 05:43:45 -0500
  48258. Received: by apakabar.cc.columbia.edu id AA02888
  48259.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 12 Nov 1994 05:43:43 -0500
  48260. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!hookup!news.moneng.mei.com!howland.reston.ans.net!pipex!uunet!haven.umd.edu!news.umbc.edu!not-for-mail
  48261. From: rdavis4@umbc.edu (davis robert)
  48262. Newsgroups: comp.protocols.kermit.misc,umbc.unix
  48263. Subject: S...l...o...w C-Kermit File Transfers.  What's wrong?
  48264. Date: 11 Nov 1994 21:02:54 -0500
  48265. Organization: University of Maryland, Baltimore County
  48266. Lines: 19
  48267. Message-Id: <3a17oe$b1k@umbc8.umbc.edu>
  48268. Nntp-Posting-Host: f-umbc8.umbc.edu
  48269. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  48270.  
  48271. This afternoon, I hooked up a 14,400 baud modem to my UNIX box, set
  48272. the line being used to 19,200 bps (the modem's manual suggests setting
  48273. the speed between the modem and computer to 19,200 bps) in inittab and
  48274. set C-Kermit's speed to 19,200 bps.  Although everything else, such as
  48275. viewing files on the screen, reading news, etc., is faster, when I
  48276. attempt to transfer any files, the file transfer is about as slow as
  48277. it was as 1,200 bps!  Am I doing someting wrong, or is kermit supposed
  48278. to transfer files this slowly?  It took almost 4 minutes to
  48279. transfer a 25K uncompressed text file.
  48280.  
  48281. Thanks very much for any information that anyone can provide about
  48282. what, if anything, is wrong here.
  48283.  
  48284.  
  48285. -- 
  48286. R.D. Davis           |         Eccentrics have more fun! :-) 
  48287. ...uunet!mystica!rdd | 
  48288. rdavis4@umbc.edu     | Under construction:  http://access.digex.net/~rdd
  48289. 1-410-744-7964       | 
  48290.  
  48291. From news@columbia.edu Fri Nov 11 13:35:25 1994
  48292. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20807
  48293.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 12 Nov 1994 05:45:03 -0500
  48294. Received: by apakabar.cc.columbia.edu id AA02906
  48295.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 12 Nov 1994 05:44:56 -0500
  48296. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!usenet.eel.ufl.edu!usenet.cis.ufl.edu!caen!kuhub.cc.ukans.edu!tdsmith
  48297. From: tdsmith@kuhub.cc.ukans.edu
  48298. Newsgroups: comp.protocols.kermit.misc
  48299. Subject: Re: The Mac version of Kermit has less features than other OS versions.
  48300. Message-Id: <1994Nov11.183525.77435@kuhub.cc.ukans.edu>
  48301. Date: 11 Nov 94 18:35:25 CDT
  48302. References: <3935bt$111o@fidoii.cc.lehigh.edu>  <AFSYPNG.94Nov9072913@cmcws75.cmc.aes.doe.ca>
  48303. Organization: University of Kansas Academic Computing Services
  48304. Lines: 43
  48305. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  48306.  
  48307. In article <AFSYPNG.94Nov9072913@cmcws75.cmc.aes.doe.ca>, afsypng@cmcws75.cmc.aes.doe.ca (Jacques Marcoux) writes:
  48308. >>>>>> "phinely" == phinely  <phinely@uhunix.uhcc.hawaii.edu> babbles:
  48309. > In article <phinely-0611941748190001@nts224.dialup.hawaii.edu>
  48310. > phinely@uhunix.uhcc.hawaii.edu writes:
  48311. >     phinely> In article <39eb19$6sm@tardis.Tymnet.COM>,
  48312. >     phinely> jms@tardis.Tymnet.COM (Joe Smith) wrote:
  48313. [snip]
  48314. > Me for one, this is the only thing I can use to connect to some remote
  48315. > site. Yes it is slow, Yes it is error prone, why do you think the guys
  48316. > is asking for improvment?
  48317.  
  48318. Slow?  I'm getting about 2300cps w/ a 14.4k modem using compression--if 
  48319. this is slow (I upgraded from a 2400), somebody please tell me what I 
  48320. need to do to increase the speed.  As for errors, the only time I get 
  48321. *any* errors is if I forget to set filetype binary on both ends before 
  48322. a non-text transfer.
  48323.  
  48324. For those of you who might know how to make my transfer speed increase,
  48325. but need particulars, my *.ini reads:
  48326.  
  48327. set send pack 4096
  48328. ser receive pack 4096
  48329. set block 3
  48330. set window 2
  48331. set retry 63
  48332.  
  48333. The terminal server that I connect to suports transfer rates as high 
  48334. as 38400, but no higher (KU is planning on upgrading its servers.)
  48335.  
  48336. Note that I've never seen kermit use more than one window, though.
  48337. Also, I use a high retry number because my link will sometimes hang 
  48338. for an extended period (not kermit's fault) and start kermit's retry 
  48339. sequence (which has timed out before.)
  48340.  
  48341. Thanks for any help, and good luck to the poster on getting improved 
  48342. performance.
  48343.  
  48344. Troy Smith
  48345.  
  48346. From news@columbia.edu Fri Nov 11 13:45:06 1994
  48347. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20781
  48348.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 12 Nov 1994 05:45:00 -0500
  48349. Received: by apakabar.cc.columbia.edu id AA02910
  48350.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 12 Nov 1994 05:44:59 -0500
  48351. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!hookup!caen!kuhub.cc.ukans.edu!tdsmith
  48352. From: tdsmith@kuhub.cc.ukans.edu
  48353. Newsgroups: comp.protocols.kermit.misc
  48354. Subject: Pseudo-VMS C-Kermit?
  48355. Message-Id: <1994Nov11.184506.77436@kuhub.cc.ukans.edu>
  48356. Date: 11 Nov 94 18:45:06 CDT
  48357. Organization: University of Kansas Academic Computing Services
  48358. Lines: 13
  48359. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  48360.  
  48361. Hi, all.
  48362.  
  48363.     I'm trying to set up a new OS (TSX-Lite) on my 486.  It will run 
  48364. DOS executables, but so far I have been unsuccessful in getting MS-Kermit
  48365. to see the com port (TSX controlls the hardware.)  There is a native 
  48366. version of Kermit available for this OS, but I'd rather not tie myself to 
  48367. a proprietary implementation of the standard.  Will one of the VMS 
  48368. versions of C-Kermit work with this OS?  If so, which one, and how 
  48369. difficult will it be to set up?
  48370.  
  48371. Thanks for any answers, even negative ones.
  48372.  
  48373. Troy Smith
  48374.  
  48375. From news@columbia.edu Sat Nov 12 07:17:27 1994
  48376. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23209
  48377.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 12 Nov 1994 08:41:25 -0500
  48378. Received: by apakabar.cc.columbia.edu id AA09237
  48379.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 12 Nov 1994 08:41:23 -0500
  48380. Path: news.columbia.edu!sol.ctr.columbia.edu!newsxfer.itd.umich.edu!gatech!udel!chopin.udel.edu!not-for-mail
  48381. From: darkstar@chopin.udel.edu (Jerry Alexandratos)
  48382. Newsgroups: comp.protocols.kermit.misc
  48383. Subject: Help With Transfer Rate
  48384. Date: 12 Nov 1994 02:17:27 -0500
  48385. Organization: Broken Toys Unlimited
  48386. Lines: 43
  48387. Message-Id: <3a1q67$53m@chopin.udel.edu>
  48388. Nntp-Posting-Host: chopin.udel.edu
  48389. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  48390.  
  48391.  
  48392. Is it just me or am I missing something plainly obvious?  Here's what's
  48393. going on:
  48394.  
  48395. I have MS-Kermit (v3.13) on a 386 over an ethernet connection.  On the
  48396. host side, I'm running C-Kermit (5A(189)) on a Sun 4.  With the
  48397. following settings I get a average CPS of about 8500 (or at least
  48398. that's what the status bar on MSK says).
  48399.  
  48400. MS-Kermit               C-Kermit
  48401. set flow none           set flow none
  48402. set windows 3           set windows 3
  48403. set send pack 5000      set send pack 5000
  48404. set rec pack 5000       set rec pack 5000
  48405.                         set file display none
  48406.                         set file names literal
  48407.                         
  48408. However, when I run C-Kermit from my Linux box I don't get anywhere
  48409. near the same performance.  FYI, the two machines are right next to
  48410. each other, and have the same hardware (actually, they may have
  48411. different ethernet cards).  I connect to the same host.  The .mykermit
  48412. file on the local machine looks the same as the above C-Kermit one
  48413. except that the file display line reads ``set file display crt''.  I
  48414. found that fullscreen did indeed slow it down a lot, and that there
  48415. wasn't much difference between crt and serial, and that the improvement
  48416. over none wasn't so significant that I wanted to give up knowing how
  48417. the file transfer was going.  (Yes, I got all of this from the C-Kermit
  48418. book--a must get!).
  48419.  
  48420. So, am I doing something wrong?  Is the report generated by MSK wrong,
  48421. and I should really look at the host's `stat' report?  Is there
  48422. something that I should be setting since I'm going from C-Kermit to
  48423. C-Kermit?  Am I so illiterate that I totally missed something in the
  48424. book?
  48425.  
  48426. Thanks in advance for any and all help.
  48427.  
  48428.         --Jerry
  48429.  
  48430. -- 
  48431. |>  Jerry Alexandratos                **  "vengo de la tierra del    <|
  48432. |>  darkstar@strauss.udel.edu         **   fuego ten cuidado cuando  <|
  48433. |>  darkstar@canary.pearson.udel.edu  **   llamas mi nombre..."      <|
  48434.  
  48435. From news@columbia.edu Tue Nov  8 23:35:50 1994
  48436. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28086
  48437.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 12 Nov 1994 11:12:39 -0500
  48438. Received: by apakabar.cc.columbia.edu id AA16341
  48439.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 12 Nov 1994 11:12:37 -0500
  48440. Path: news.columbia.edu!panix!news.mathworks.com!hookup!swrinde!cs.utexas.edu!uunet!winternet.com!jamess
  48441. From: jamess@winternet.com (James Sturdevant)
  48442. Newsgroups: comp.protocols.kermit.misc
  48443. Subject: Re: Will the New MS-DOS Kermit have MINPUT?
  48444. Date: 8 Nov 1994 23:35:50 GMT
  48445. Organization: StarNet Communications, Inc
  48446. Lines: 21
  48447. Message-Id: <39p20m$rn1@blackice.winternet.com>
  48448. References: <39lv9v$2s@vixen.cso.uiuc.edu> <39m9i5$e00@apakabar.cc.columbia.edu> <jhurwitCyxwMo.JG7@netcom.com>
  48449. Nntp-Posting-Host: icicle.winternet.com
  48450. X-Newsreader: TIN [version 1.2 PL2]
  48451. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  48452.  
  48453. Jeffrey Hurwit (jhurwit@netcom.com) wrote:
  48454. : In article <39m9i5$e00@apakabar.cc.columbia.edu>, 
  48455. : Frank da Cruz (fdc@fdc.cc.columbia.edu) wrote:
  48456.  
  48457. : >In article <39lv9v$2s@vixen.cso.uiuc.edu> adam@symcom.math.uiuc.edu (Adam H.  
  48458. : >Lewenberg) writes:
  48459. : >> 
  48460. : >> Will the New MS-DOS Kermit have the MINPUT command? I would like my 
  48461. : >> scripts to work in both MS-DOS Kermit and C-Kermit, so it would be
  48462. : >> nice if MINPUT was supported n MS-DOS Kermit. Adam Lewenberg
  48463.  
  48464. :     [macro and example of how to use it deleted]
  48465.  
  48466. :     Yes, this would work, but it's a little big, and memory is at a
  48467. :     premium for some of us.  I tend to use take files more, and save
  48468. :     memory for key settings and screen rollback.
  48469. Well, there is no reason that you can't put the text into a take file and
  48470. then define minput to take the take file.  Macros are no more than memory
  48471. resident take files.
  48472.  
  48473. JamesS
  48474.  
  48475. From news@columbia.edu Sat Nov 12 16:23:09 1994
  48476. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28418
  48477.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 12 Nov 1994 11:23:18 -0500
  48478. Received: by apakabar.cc.columbia.edu id AA17085
  48479.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 12 Nov 1994 11:23:17 -0500
  48480. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!gatech!news-feed-1.peachnet.edu!news.duke.edu!eff!news.umbc.edu!not-for-mail
  48481. From: rdavis4@umbc.edu (R. D. Davis)
  48482. Newsgroups: comp.protocols.kermit.misc,umbc.unix
  48483. Subject: cmsg cancel <3a17oe$b1k@umbc8.umbc.edu>
  48484. Control: cancel <3a17oe$b1k@umbc8.umbc.edu>
  48485. Date: 12 Nov 1994 11:23:09 -0500
  48486. Organization: University of Maryland, Baltimore County Campus
  48487. Lines: 6
  48488. Message-Id: <3a2q5e$7q8@umbc8.umbc.edu>
  48489. Nntp-Posting-Host: f-umbc8.umbc.edu
  48490. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  48491.  
  48492. <3a17oe$b1k@umbc8.umbc.edu> was cancelled from within trn.
  48493. -- 
  48494. R.D. Davis           |         Eccentrics have more fun! :-) 
  48495. ...uunet!mystica!rdd | 
  48496. rdavis4@umbc.edu     | Under construction:  http://access.digex.net/~rdd
  48497. 1-410-744-7964       | 
  48498.  
  48499. From news@columbia.edu Sat Nov 12 12:44:54 1994
  48500. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09239
  48501.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 12 Nov 1994 15:41:10 -0500
  48502. Received: by apakabar.cc.columbia.edu id AA15126
  48503.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 12 Nov 1994 15:41:08 -0500
  48504. Newsgroups: comp.protocols.kermit.misc
  48505. From: scott@musicman.demon.co.uk (Scott Mordecai)
  48506. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!howland.reston.ans.net!pipex!demon!betanews.demon.co.uk!musicman.demon.co.uk!scott
  48507. Subject: Where to get Kermit
  48508. Organization: home
  48509. Reply-To: scott@musicman.demon.co.uk
  48510. X-Newsreader: Demon Internet Simple News v1.27
  48511. Lines: 12
  48512. Date: Sat, 12 Nov 1994 12:44:54 +0000
  48513. Message-Id: <784644294snz@musicman.demon.co.uk>
  48514. Sender: usenet@demon.co.uk
  48515. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  48516.  
  48517. Can anyone tell me where I should go to get the latest version of Kermit
  48518. for MS-DOS? What server, filename, etc. is it?
  48519.  
  48520. Also, is the source code available?  Is it in 'C'?  Will it run on my ICL
  48521. DRS6000 and my Siemens Nixdorf RM400 at work?  (Nearing in mind I have
  48522. minimal skills in 'C' so I couldn't modify the code if I had to).
  48523.  
  48524. Cheers,
  48525. --
  48526.  \|||/  Scott Mordecai                       /   A BAD DAY SKYDIVING
  48527. < o,o > Internet: scott@musicman.demon.co.uk \ IS BETTER THAN A GOOD DAY
  48528.   \_/   CompuServe: 70374,2246               /         AT WORK
  48529.  
  48530. From news@columbia.edu Sat Nov 12 21:12:39 1994
  48531. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10674
  48532.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 12 Nov 1994 16:12:43 -0500
  48533. Received: by apakabar.cc.columbia.edu id AA17192
  48534.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 12 Nov 1994 16:12:41 -0500
  48535. Path: news.columbia.edu!ciao.cc.columbia.edu!ycl6
  48536. From: ycl6@columbia.edu (Yeechang Lee)
  48537. Newsgroups: comp.protocols.kermit.misc
  48538. Subject: Why does Kermit freeze up on me?
  48539. Date: 12 Nov 1994 21:12:39 GMT
  48540. Organization: Trilateral Commission, Columbia University student chapter
  48541. Lines: 14
  48542. Message-Id: <3a3b47$gp6@apakabar.cc.columbia.edu>
  48543. Reply-To: ycl6@columbia.edu
  48544. Nntp-Posting-Host: ciao-cddi.cc.columbia.edu
  48545. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  48546.  
  48547. I'm using MS-Kermit 3.14 beta 11, and it's been nice being able to help
  48548. Kermit's progression in any way.  However, I have a problem that's been
  48549. around since at least beta-4.  Sometimes when I'm online to here at
  48550. Columbia things freeze up.  By accident I discovered that when I go into
  48551. command mode and type 'show modem' or run a DOS program or whatever, the
  48552. RD light on my modem snaps on again, and all's well with the world.  For
  48553. a while this was happening a lot; I thought it went away, but it happened
  48554. again a couple times today.
  48555.  
  48556. Any ideas?  I haven't been able to reproduce the problem myself, but when
  48557. it happens the 'show modem' method works every time.
  48558. --   _____________________________________________________________________
  48559.      Yeechang Lee  (ycl6@columbia.edu)|Nevada Las Vegas Mission  7/92-7/94
  48560.      Columbia University/New York City|The Celestial Kingdom has Taco Bell
  48561.  
  48562. From news@columbia.edu Sat Nov 12 21:14:22 1994
  48563. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10752
  48564.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 12 Nov 1994 16:14:24 -0500
  48565. Received: by apakabar.cc.columbia.edu id AA17262
  48566.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 12 Nov 1994 16:14:23 -0500
  48567. Path: news.columbia.edu!ciao.cc.columbia.edu!ycl6
  48568. From: ycl6@columbia.edu (Yeechang Lee)
  48569. Newsgroups: comp.protocols.kermit.misc
  48570. Subject: Re: Why does Kermit freeze up on me?
  48571. Date: 12 Nov 1994 21:14:22 GMT
  48572. Organization: Trilateral Commission, Columbia University student chapter
  48573. Lines: 9
  48574. Message-Id: <3a3b7e$grc@apakabar.cc.columbia.edu>
  48575. References: <3a3b47$gp6@apakabar.cc.columbia.edu>
  48576. Reply-To: ycl6@columbia.edu
  48577. Nntp-Posting-Host: ciao-cddi.cc.columbia.edu
  48578. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  48579.  
  48580. I should also point out that I'm running MS-Kermit on an old Tandy XT
  48581. clone and an Intel 144/144e external 14.4k modem.  Nothing's changed at
  48582. all configurationwise since when I was using 3.13, and I don't think this
  48583. happened then.
  48584.  
  48585.  
  48586. --   _____________________________________________________________________
  48587.      Yeechang Lee  (ycl6@columbia.edu)|Nevada Las Vegas Mission  7/92-7/94
  48588.      Columbia University/New York City|The Celestial Kingdom has Taco Bell
  48589.  
  48590. From news@columbia.edu Wed Nov  9 09:21:46 1994
  48591. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17750
  48592.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 12 Nov 1994 18:58:44 -0500
  48593. Received: by apakabar.cc.columbia.edu id AA27977
  48594.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 12 Nov 1994 18:58:43 -0500
  48595. Path: news.columbia.edu!sol.ctr.columbia.edu!newsxfer.itd.umich.edu!gatech!swrinde!pipex!uunet!psinntp!hk.super.net!news.ust.hk!hpg30a.csc.cuhk.hk!ctsc.hkbc.hk!ctsc.hkbc.hk!not-for-mail
  48596. From: s11976@ctsc.hkbc.hk (PM Wong)
  48597. Newsgroups: comp.protocols.tcp-ip.ibmpc,comp.protocols.kermit.misc
  48598. Subject: kermit on tnglass logout problem
  48599. Date: 9 Nov 1994 17:21:46 +0800
  48600. Organization: HONG KONG BAPTIST COLLEGE
  48601. Lines: 19
  48602. Message-Id: <39q4ba$j50@ctsc.hkbc.hk>
  48603. Nntp-Posting-Host: ctsc.hkbc.hk
  48604. X-Newsreader: TIN [version 1.1 PL9]
  48605. Xref: news.columbia.edu comp.protocols.tcp-ip.ibmpc:31601 comp.protocols.kermit.misc:1066
  48606. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  48607.  
  48608. We are trying to run kermit.exe (v3.12) on PCTCP (v. 2.3) tnglass 
  48609. via Int 14.
  48610. Now when we logout of the unix host, it will not come back to the
  48611. DOS prompt straight-away (though we have put the keyword EXIT or
  48612. PUSH at the end of the called kermit's .ini script)
  48613. We have to manually press ^] and then type c to come out.
  48614. Is there any method to automate this exit to DOS function at logout
  48615. of the unix host ? 
  48616.  
  48617. --
  48618.  
  48619.                     \\\//
  48620.                     (o o)
  48621. [----------------ooO-(_)-Ooo---------------] PM Wong (Computer Officer)
  48622. [User User User User User User User User Us] CTSC Hong Kong Baptist College
  48623. [ser User User User User User User User Use] 224 Waterloo Road, Kln. HONGKONG
  48624. [er User User User User User User User User] Voice: (852)3397425  Fax: 3397888
  48625. [------------------------------------------] Email: pm@ctsc.hkbc.hk 
  48626.  
  48627.  
  48628. From news@columbia.edu Wed Nov  9 18:26:05 1994
  48629. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19917
  48630.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 12 Nov 1994 19:49:29 -0500
  48631. Received: by apakabar.cc.columbia.edu id AA01406
  48632.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 12 Nov 1994 19:49:28 -0500
  48633. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!howland.reston.ans.net!math.ohio-state.edu!magnus.acs.ohio-state.edu!csn!oberg
  48634. From: oberg@teal.csn.org (Craig Oberg)
  48635. Newsgroups: comp.protocols.kermit.misc
  48636. Subject: Re: C-Kermit vs MS-Kermit
  48637. Date: 9 Nov 1994 18:26:05 GMT
  48638. Organization: Colorado Supernet
  48639. Lines: 28
  48640. Message-Id: <39r47t$pil@burgundy.csn.net>
  48641. References: <Pine.SUN.3.90.941106143639.22421D-100000@blue> <39mf2a$lpf@apakabar.cc.columbia.edu>
  48642. Nntp-Posting-Host: 199.117.27.22
  48643. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  48644.  
  48645. fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  48646.  
  48647. >In article <Pine.SUN.3.90.941106143639.22421D-100000@blue> "Archimedes L.  
  48648. >Trajano" <cs932070@ariel.cs.yorku.ca> writes:
  48649. >> Is it not possible to create an MS-DOS version of Kermit from the 
  48650. >> C-Kermit source files?
  48651. >> 
  48652. >Maybe, but why bother?  It would be bigger, slower, and do less, except
  48653. >for some of the script programming features.  With some care, it is quite
  48654. >possible to write script programs that are portable between MS-DOS
  48655. >Kermit and C-Kermit.  I'm not denigrating C-Kermit at all, but really,
  48656. >when you consider how much functionality is packed into the 200K-or-so
  48657. >MS-DOS Kermit executable, it's astounding.
  48658.  
  48659. For my use, the script programming is one of the MOST important 
  48660. features of MS-kermit and C-Kermit. I would love to have the the 
  48661. C-kermit and MS-Kermit scripting interfaces be 100% compatible
  48662. (except for those limited by the OS). Perhaps there could be a 
  48663. way to  link the C-kermit scripting source in to the MS-kermit 
  48664. version with out increasing the size dramaticly. If this is not 
  48665. possible or wise, then I would request to enhance the MS-kermit's
  48666. scripting features to be compatible with C-kermit. For me, I
  48667. would trade a lot of the size to get compatibility and readability
  48668. of MS-kermit  scripts.
  48669.  
  48670. Craig Oberg
  48671. oberg@hexagon.com
  48672.  
  48673.  
  48674. From news@columbia.edu Wed Nov  9 13:12:34 1994
  48675. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21298
  48676.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 12 Nov 1994 20:25:49 -0500
  48677. Received: by apakabar.cc.columbia.edu id AA03572
  48678.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 12 Nov 1994 20:25:48 -0500
  48679. Path: news.columbia.edu!panix!news.mathworks.com!zombie.ncsc.mil!news.duke.edu!godot.cc.duq.edu!newsfeed.pitt.edu!dsinc!ub!newserve!br00031
  48680. From: br00031@bingsuns.cc.binghamton.edu ()
  48681. Newsgroups: comp.protocols.kermit.misc
  48682. Subject: re msdos kermit 3.14 ...
  48683. Date: 9 Nov 1994 13:12:34 GMT
  48684. Organization: Binghamton University, Binghamton, NY
  48685. Lines: 9
  48686. Message-Id: <39qhs2$k1j@bingnet1.cc.binghamton.edu>
  48687. Nntp-Posting-Host: 128.226.1.2
  48688. X-Newsreader: TIN [version 1.2 PL2]
  48689. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  48690.  
  48691. Hi, 
  48692. Could anyone explain what I should do with the files from
  48693. kermit.columbia.edu.
  48694. These do not seem to be executables. Am I supposed to compile the
  48695. binary code or do I just place the files in the directory where
  48696. mskermit 3.13 is now.  Also before I bother upgrading,  if the server
  48697. I conncet to, my University,  does not upgrade its version of Kermit
  48698. on its platform is my upgrading a waste of time? Thank you
  48699.  
  48700.  
  48701. From news@columbia.edu Sat Nov 12 23:19:32 1994
  48702. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11304
  48703.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 13 Nov 1994 05:31:01 -0500
  48704. Received: by apakabar.cc.columbia.edu id AA28340
  48705.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 13 Nov 1994 05:30:59 -0500
  48706. Newsgroups: comp.protocols.kermit.misc
  48707. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!howland.reston.ans.net!torn!newshub.ccs.yorku.ca!newshub.ariel.cs.yorku.ca!cs932070
  48708. From: cs932070@red.ariel.cs.yorku.ca (ARCHIMEDES L TRAJANO)
  48709. Subject: Re: C-Kermit vs MS-Kermit
  48710. Message-Id: <Cz6GsK.wy@ariel.cs.yorku.ca>
  48711. Sender: news@red.ariel.cs.yorku.ca
  48712. Organization: York University, Dept. of Computer Science
  48713. References: <Pine.SUN.3.90.941106143639.22421D-100000@blue> <39mf2a$lpf@apakabar.cc.columbia.edu> <39r47t$pil@burgundy.csn.net> <1994Nov9.195221.32422@cc.usu.edu>
  48714. Date: Sat, 12 Nov 1994 23:19:32 GMT
  48715. Lines: 17
  48716. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  48717.  
  48718. In article <1994Nov9.195221.32422@cc.usu.edu>,
  48719. Joe Doupnik <jrd@cc.usu.edu> wrote:
  48720. >    I don't understand your last sentence. I can say that we won't
  48721. >trade lots of program space (memory) for seldom used features. But then 
  48722. >we don't have any idea of what's important to you.
  48723. One of the things I liked with the CKermit source codes is that someone 
  48724. can compile them with or without the extra nifty features that it has to 
  48725. offer.  In effect we can get a smaller binary by removing all the 
  48726. unneeded features.  The MSKermit distribution contains two other versions 
  48727. that are "not complete" but I prefer to have the ability to just make my 
  48728. own decisions as to what should be included or not.
  48729.  
  48730. -- 
  48731. Archimedes L. Trajano        _/_/_/ _/   _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
  48732. cs932070@ariel.cs.yorku.ca  _/  _/ _/     _/  York University
  48733. (IRC: Overdrive)           _/_/_/ _/     _/  Department of Computer Science
  48734. _/_/_/_/_/_/_/_/_/_/_/_/_/_/  _/ _/_/_/ _/  North York, Ontario, Canada
  48735.  
  48736. From news@columbia.edu Sun Nov 13 04:16:31 1994
  48737. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14824
  48738.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 13 Nov 1994 07:12:00 -0500
  48739. Received: by apakabar.cc.columbia.edu id AA01945
  48740.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 13 Nov 1994 07:11:58 -0500
  48741. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!hookup!swrinde!pipex!uunet!dove.nist.gov!enh.nist.gov!reflib
  48742. From: reflib@enh.nist.gov
  48743. Newsgroups: comp.protocols.kermit.misc
  48744. Subject: Re: kermit on tnglass logout problem
  48745. Date: 13 NOV 94 04:16:31 GMT
  48746. Organization: NIST
  48747. Lines: 6
  48748. Message-Id: <13NOV94.04163145@enh.nist.gov>
  48749. Nntp-Posting-Host: enh.nist.gov
  48750. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  48751.  
  48752. >We have to manually press ^] and then type c to ... exit to DOS...
  48753.  
  48754. I don't know if there's a way to "automate" an exit to DOS, but alt-x
  48755. should work.
  48756.  
  48757. reflib@enh.nist.gov
  48758.  
  48759. From news@columbia.edu Sun Nov 13 06:10:56 1994
  48760. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07955
  48761.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 13 Nov 1994 07:39:50 -0500
  48762. Received: by apakabar.cc.columbia.edu id AA02780
  48763.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 13 Nov 1994 07:39:47 -0500
  48764. Path: news.columbia.edu!sol.ctr.columbia.edu!usc!bloom-beacon.mit.edu!senator-bedfellow.mit.edu!athena.mit.edu!fastcart
  48765. From: fastcart@MIT.EDU (Arcell B. Frazier)
  48766. Newsgroups: comp.protocols.kermit.misc
  48767. Subject: Re: .kermrc question (UNIX)
  48768. Date: 13 Nov 1994 06:10:56 GMT
  48769. Organization: Massachusetts Institute of Technology
  48770. Lines: 10
  48771. Message-Id: <FASTCART.94Nov13011107@cacciatore.MIT.EDU>
  48772. References: <FASTCART.94Nov2020153@marinara.mit.edu> <398rgf$3q9@news.halcyon.com>
  48773.     <FASTCART.94Nov7155031@pesto.MIT.EDU> <3a0lci$c9h@tardis.Tymnet.COM>
  48774. Nntp-Posting-Host: cacciatore.mit.edu
  48775. In-Reply-To: jms@tardis.Tymnet.COM's message of 11 Nov 1994 12:49:22 -0800
  48776. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  48777.  
  48778. Ok.  I'm confused then.  Thanks.
  48779.  
  48780. Fast Cart
  48781. --
  48782.  
  48783. ===============================================================================
  48784. Fast Cart (Arcell B. Frazier)         Phone: (617)225-8945
  48785. 500 Memorial Drive #372             "But, my friends call me Fast Cart...
  48786. Cambridge, MA  02139-4326          Well, at least I prefer that anyway!"
  48787. fastcart@mit.edu
  48788.  
  48789. From news@columbia.edu Thu Nov 10 14:41:25 1994
  48790. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18133
  48791.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 13 Nov 1994 10:57:01 -0500
  48792. Received: by apakabar.cc.columbia.edu id AA11142
  48793.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 13 Nov 1994 10:56:59 -0500
  48794. Newsgroups: comp.os.lynx,comp.protocols.kermit.misc
  48795. Path: news.columbia.edu!panix!news.mathworks.com!news.kei.com!wang!news
  48796. From: chermesh@techunix.technion.ac.il (Chermesh Ran)
  48797. Subject: FAQ: Lynx and Dialup
  48798. Organization: Technion, Israel Institute of Technology
  48799. Date: Thu, 10 Nov 1994 14:41:25 GMT
  48800. Message-Id: <Cz23H2.AJ6@discus.technion.ac.il>
  48801. Sender: news@wang.com
  48802. Lines: 21
  48803. Xref: news.columbia.edu comp.os.lynx:995 comp.protocols.kermit.misc:1072
  48804. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  48805.  
  48806.  
  48807. Hi,
  48808.     Well, as you may guess, I managed to find the DOS version of Lynx.
  48809. I expected to find a program capable of supplying text retrieval from ANY
  48810. DOS machine, but instead, discovered that it requires an Ethernet card or its
  48811. substitutes.
  48812.     I wonder, is it possible to use Lynx through dialup communication? 
  48813. Is it possible to add it, for example, to kermit?
  48814.  
  48815.  
  48816.                  Ran
  48817.  
  48818. --
  48819. Ran Chermesh                                  E - M A I L
  48820. Behavioral Sciences Dept.                     ===========
  48821. Ben-Gurion University                  Internet: CHERMESH@BGUVM.BGU.AC.IL
  48822. Beer-Sheva 84105                                 CHERMESH@BGUMAIL.BGU.AC.IL
  48823. Israel                                 Bitnet  : CHERMESH@BGUVM.BITNET
  48824. Phone: 972-7-472-057                   Fax: 972-7-232-766
  48825.  
  48826. URL: gopher://gopher.bgu.ac.il:70/00/Ben/res/hum/beh/CHERMESH%2c%20RAN
  48827.  
  48828. From news@columbia.edu Sun Nov 13 16:04:24 1994
  48829. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18511
  48830.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 13 Nov 1994 11:04:28 -0500
  48831. Received: by apakabar.cc.columbia.edu id AA11551
  48832.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 13 Nov 1994 11:04:27 -0500
  48833. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  48834. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  48835. Newsgroups: comp.protocols.kermit.misc
  48836. Subject: Re: kermit on tnglass logout problem
  48837. Followup-To: comp.protocols.kermit.misc
  48838. Date: 13 Nov 1994 16:04:24 GMT
  48839. Organization: Columbia University
  48840. Lines: 8
  48841. Sender: fdc@columbia.edu
  48842. Message-Id: <3a5de8$b8t@apakabar.cc.columbia.edu>
  48843. References: <13NOV94.04163145@enh.nist.gov>
  48844. Nntp-Posting-Host: watsun.cc.columbia.edu
  48845. Keywords: TNGLASS
  48846. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  48847.  
  48848.  
  48849. TNGLASS does not tell Kermit when the connection is broken, so Kermit
  48850. can't pop back to the prompt automatically.  In fact, Kermit does not
  48851. even know it's a TELNET connection.  Kermit's internal TCP/IP TELNET
  48852. implementation does exactly what you want, and goes faster and does
  48853. more things, but you can't run it at the same time as PC/TCP.
  48854.  
  48855. - Frank
  48856.  
  48857. From news@columbia.edu Sun Nov 13 16:08:05 1994
  48858. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18643
  48859.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 13 Nov 1994 11:08:10 -0500
  48860. Received: by apakabar.cc.columbia.edu id AA11689
  48861.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 13 Nov 1994 11:08:08 -0500
  48862. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  48863. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  48864. Newsgroups: comp.protocols.kermit.misc
  48865. Subject: Re: re msdos kermit 3.14 ...
  48866. Date: 13 Nov 1994 16:08:05 GMT
  48867. Organization: Columbia University
  48868. Lines: 23
  48869. Message-Id: <3a5dl5$bd7@apakabar.cc.columbia.edu>
  48870. References: <39qhs2$k1j@bingnet1.cc.binghamton.edu>
  48871. Nntp-Posting-Host: watsun.cc.columbia.edu
  48872. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  48873.  
  48874. In article <39qhs2$k1j@bingnet1.cc.binghamton.edu>,
  48875.  <br00031@bingsuns.cc.binghamton.edu> wrote:
  48876. >Could anyone explain what I should do with the files from
  48877. >kermit.columbia.edu.
  48878. >These do not seem to be executables. Am I supposed to compile the
  48879. >binary code or do I just place the files in the directory where
  48880. >mskermit 3.13 is now.  Also before I bother upgrading,  if the server
  48881. >I conncet to, my University,  does not upgrade its version of Kermit
  48882. >on its platform is my upgrading a waste of time? Thank you
  48883. >
  48884. It sounds like what you are really asking is, where can I get a newer
  48885. version of MS-DOS Kermit?
  48886.  
  48887. MS-DOS Kermit 3.14 is in Beta test.  The "draft" distribution diskette
  48888. image is in a ZIP file, including the executables:
  48889.  
  48890. Anonymous ftp to kermit.columbia.edu, directory kermit/test/bin,
  48891. binary mode, file mstibm.zip.  Unzip with "-d" switch to preserve the
  48892. directory structure, read the top-level READ.ME file for installation
  48893. instructions.
  48894.  
  48895. - Frank
  48896.  
  48897.  
  48898. From news@columbia.edu Thu Nov 10 13:20:11 1994
  48899. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18761
  48900.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 13 Nov 1994 11:11:26 -0500
  48901. Received: by apakabar.cc.columbia.edu id AA11780
  48902.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 13 Nov 1994 11:11:25 -0500
  48903. Path: news.columbia.edu!panix!news.mathworks.com!news.duke.edu!concert!news.wfu.edu!matthews
  48904. From: matthews@wfu.edu (Rick Matthews)
  48905. Newsgroups: comp.protocols.kermit.misc
  48906. Subject: Re: Receiving files "automatically"
  48907. Date: 10 Nov 1994 13:20:11 GMT
  48908. Organization: Wake Forest University
  48909. Lines: 19
  48910. Message-Id: <39t6mb$kd6@eis.wfunet.wfu.edu>
  48911. References: <DRW.94Nov7142624@runge.mit.edu><39m861$bob@apakabar.cc.columbia.edu> <DRW.94Nov9085840@runge.mit.edu>
  48912. Nntp-Posting-Host: acg60.wfunet.wfu.edu
  48913. X-Newsreader: TIN [version 1.2 PL2]
  48914. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  48915.  
  48916. Dale R. Worley (drw@runge.mit.edu) wrote:
  48917. : You just compile the correct directory into the executable.  It works
  48918. : quite reliably.
  48919.  
  48920. I *hate* programs with the directory compiled into the executable.
  48921.  
  48922.     1.   The "correct directory" is inevitably under the root 
  48923.          directory, so the root directory listing is huge.  I
  48924.          prefer to group applications by type.
  48925.         2.   Ever try to share an application across a network that
  48926.              demands to run from "C:\EGOTIST" and to find all of its
  48927.              configuration files there?  We have rejected several
  48928.          software packages for this very reason.  
  48929.  
  48930. --
  48931. Rick Matthews                     matthews@wfu.edu            Ham radio:
  48932. Wake Forest University            910-759-5340   (Voice)      WA4GSP
  48933. Winston-Salem, NC 27109-7507      910-759-6142   (FAX)
  48934.  
  48935.  
  48936. From news@columbia.edu Sun Nov 13 16:12:52 1994
  48937. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18847
  48938.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 13 Nov 1994 11:12:54 -0500
  48939. Received: by apakabar.cc.columbia.edu id AA11841
  48940.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 13 Nov 1994 11:12:54 -0500
  48941. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  48942. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  48943. Newsgroups: comp.protocols.kermit.misc
  48944. Subject: Re: Where to get Kermit
  48945. Followup-To: comp.protocols.kermit.misc
  48946. Date: 13 Nov 1994 16:12:52 GMT
  48947. Organization: Columbia University
  48948. Lines: 22
  48949. Sender: fdc@columbia.edu
  48950. Message-Id: <3a5du4$bhv@apakabar.cc.columbia.edu>
  48951. References: <784644294snz@musicman.demon.co.uk>
  48952. Nntp-Posting-Host: watsun.cc.columbia.edu
  48953. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  48954.  
  48955. In article <784644294snz@musicman.demon.co.uk>,
  48956. Scott Mordecai <scott@musicman.demon.co.uk> wrote:
  48957. >Can anyone tell me where I should go to get the latest version of Kermit
  48958. >for MS-DOS? What server, filename, etc. is it?
  48959. >
  48960. kermit.columbia.edu.
  48961.  
  48962. The latest version of MS-DOS Kermit is 3.14 Beta, directory kermit/test/bin,
  48963. binary mode, file mstibm.zip.  Unzip with "-d" switch.
  48964.  
  48965. >Also, is the source code available?  Is it in 'C'?  Will it run on my ICL
  48966. >DRS6000 and my Siemens Nixdorf RM400 at work?  (Nearing in mind I have
  48967. >minimal skills in 'C' so I couldn't modify the code if I had to).
  48968. >
  48969. Aren't those UNIX machines?  Then just run C-Kermit on them.  I sounds like
  48970. you would be surprised to find out that Kermit programs are already written
  48971. to run on most kinds of computers and operating systems.
  48972.  
  48973. C-Kermit 5A(190) is on the same host, directory kermit/f.  Get the file
  48974. ckaaaa.hlp, read it, take it from there.
  48975.  
  48976. - Frank
  48977.  
  48978. From news@columbia.edu Sun Nov 13 18:34:29 1994
  48979. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24622
  48980.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 13 Nov 1994 13:36:31 -0500
  48981. Received: by apakabar.cc.columbia.edu id AA20183
  48982.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 13 Nov 1994 13:36:30 -0500
  48983. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!vixen.cso.uiuc.edu!prairienet.org!somebody
  48984. From: somebody@prairienet.org (Carlos Ramirez Pnet Admin)
  48985. Newsgroups: comp.protocols.kermit.misc
  48986. Subject: Kermit Scripts
  48987. Date: 13 Nov 1994 18:34:29 GMT
  48988. Organization: Prairienet, the East-Central Illinois Free-Net
  48989. Lines: 17
  48990. Message-Id: <3a5m7l$a4j@vixen.cso.uiuc.edu>
  48991. Nntp-Posting-Host: firefly.prairienet.org
  48992. X-Newsreader: TIN [version 1.2 PL2]
  48993. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  48994.  
  48995.     I just started using Kermit and I like the performance of and 
  48996. it's flexibility of it. Currently I am using to dialup via slip and I am 
  48997. search of a sample script that will the following things from a DOS prompt
  48998. 1) startup kermit and dial a phone number
  48999. 2) keep redialing if busy
  49000. 3) once connected enter a username that I will provide.
  49001. 4) then open a passwd prompt give a passwd that I will provide.
  49002. 5) enter the line "slip default"
  49003. 6) completely exit kermit and return me to a dos prompt so I can use 
  49004. NCSA's telnet
  49005.  
  49006. Ok second thing I am looking for is some some .ini files for a slip 
  49007. connection.
  49008.  
  49009.     I am would appreciate and help what so ever thank you
  49010.                         Carlos
  49011.  
  49012.  
  49013. From news@columbia.edu Sun Nov 13 19:38:59 1994
  49014. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27848
  49015.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 13 Nov 1994 14:39:11 -0500
  49016. Received: by apakabar.cc.columbia.edu id AA01579
  49017.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 13 Nov 1994 14:39:05 -0500
  49018. Path: news.columbia.edu!usenet
  49019. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  49020. Newsgroups: comp.protocols.kermit.misc
  49021. Subject: C-Kermit 5A(190) Replaces 5A(189)
  49022. Date: 13 Nov 1994 19:38:59 GMT
  49023. Organization: Columbia University
  49024. Lines: 71
  49025. Message-Id: <3a5q0j$1em@apakabar.cc.columbia.edu>
  49026. Nntp-Posting-Host: christine.cc.columbia.edu
  49027. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  49028.  
  49029. As of 13 November 1994, C-Kermit 5A(190) is installed for real on
  49030. kermit.columbia.edu, replacing the previous version, 5A(189) of 30 June
  49031. 1993.  This is the Kermit software for UNIX (all varieties), VMS, OS/2,
  49032. Stratus VOS, AOS/VS, OS-9, the Macintosh, the Commodore Amiga, and the
  49033. Atari ST.  Highlights of the new version are:
  49034.  
  49035.  . File transfer recovery from point of failure (binary-mode transfers
  49036.    only): UNIX, VMS, OS/2, AOS/VS, VOS, Amiga.
  49037.  
  49038.  . Massive improvements in the OS/2 version.
  49039.  
  49040.  . Totally new and full-featured implementations for QNX and Stratus VOS.
  49041.  
  49042.  . Support for many new OS releases: Solaris 2.3, AIX 4.1, Unixware 1.1,
  49043.    new releases of Linux, {Free,Net,etc}BSD, OpenVMS 6.x, etc etc...
  49044.  
  49045.  . Auto-upload/download/configuration/anything-else via APC mechanism:
  49046.    UNIX, VMS, OS/2.
  49047.  
  49048.  . Numerous improvements in performance, script programming, client/server
  49049.    protocol, character sets, file transfer display, dialing, etc.
  49050.  
  49051. C-Kermit 5A(190) is available via anonymous ftp from kermit.columbia.edu,
  49052. directory kermit/f (NOT kermit/b), also known as kermit/c-kermit, and
  49053. several other directories, as follows:
  49054.  
  49055.   kermit/f (= kermit/c-kermit) - FTP all files in text mode:
  49056.     Source code;
  49057.     Documentation files (.hlp, .nr, .upd, .bwr, .doc, etc);
  49058.     Initialization and script files (.ini, .kdd, .ksd, etc);
  49059.     ASCII-binaries except for VMS, UNIX, and OS/2:
  49060.       ckd190.uue - DG AOS/VS
  49061.       ckiker.boo - Amiga
  49062.       cklker.h68 - VOS 680x0
  49063.       cklker.h86 - VOS i860
  49064.       ckm190.hqx - Macintosh
  49065.       cksker.boo - Atari ST
  49066.       cksncp.boo - Atari ST (small version)
  49067.  
  49068.   kermit/bin - FTP all files in binary mode (except READ.ME):
  49069.     True binaries for UNIX, VMS, etc.  See the READ.ME for details.
  49070.  
  49071.   kermit/vmshex - FTP in text mode:
  49072.     VMS C-Kermit binaries in hex format, together with the decoding
  49073.     program, ckvdeh.mar.  See the READ.ME file for details.
  49074.  
  49075.   kermit/archives - FTP in binary mode unless otherwise indicated:
  49076.     cku190.tar.Z  - Compressed tar of C-Kermit source code & other files.
  49077.     cku190.tar.gz - Gzip'd tar of C-Kermit source code & other files.
  49078.     ckvsrc.hex    - (TEXT mode) VMS C-Kermit source BACKUP saveset.
  49079.     cko190.zip    - OS/2 C-Kermit distribution diskette image.
  49080.  
  49081. See kermit/f/ckc190.ann for a detailed list of changes in 5A(190).
  49082. See kermit/f/cko190.ann for new features of the OS/2 version.
  49083. For overviews of specific versions, see:
  49084.  
  49085.   kermit/f/ckaaaa.hlp - General C-Kermit overview
  49086.   kermit/f/ckdaaa.hlp - AOS/VS
  49087.   kermit/f/ckiaaa.hlp - Amiga
  49088.   kermit/f/cklaaa.hlp - Stratus VOS
  49089.   kermit/f/ckoaaa.hlp - OS/2
  49090.   kermit/f/ckuaaa.hlp - UNIX
  49091.   kermit/f/ckvaaa.hlp - VMS
  49092.  
  49093. The user manual, "Using C-Kermit", is recommended for everybody who wants
  49094. to make serious use of C-Kermit and to get the most out of it; remember
  49095. that manual sales are the primary source of support for the Kermit effort.
  49096. Call +1 212-3703 to order, or send email to kermit@columbia.edu for
  49097. further info.  A German-language edition is also available.
  49098.  
  49099. - Frank
  49100.  
  49101. From news@columbia.edu Sat Nov 12 04:16:42 1994
  49102. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05755
  49103.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 13 Nov 1994 17:16:55 -0500
  49104. Received: by apakabar.cc.columbia.edu id AA16253
  49105.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 13 Nov 1994 17:16:54 -0500
  49106. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!bloom-beacon.mit.edu!gatech!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  49107. From: jrd@cc.usu.edu (Joe Doupnik)
  49108. Newsgroups: comp.protocols.kermit.misc
  49109. Subject: Re: Help With Transfer Rate
  49110. Message-Id: <1994Nov12.101642.32608@cc.usu.edu>
  49111. Date: 12 Nov 94 10:16:42 MDT
  49112. References: <3a1q67$53m@chopin.udel.edu>
  49113. Organization: Utah State University
  49114. Lines: 28
  49115. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  49116.  
  49117. In article <3a1q67$53m@chopin.udel.edu>, darkstar@chopin.udel.edu (Jerry Alexandratos) writes:
  49118. > Is it just me or am I missing something plainly obvious?  Here's what's
  49119. > going on:
  49120. > I have MS-Kermit (v3.13) on a 386 over an ethernet connection.  On the
  49121. > host side, I'm running C-Kermit (5A(189)) on a Sun 4.  With the
  49122. > following settings I get a average CPS of about 8500 (or at least
  49123. > that's what the status bar on MSK says).
  49124. > MS-Kermit               C-Kermit
  49125. > set flow none           set flow none
  49126. > set windows 3           set windows 3
  49127. > set send pack 5000      set send pack 5000
  49128. > set rec pack 5000       set rec pack 5000
  49129. >                         set file display none
  49130. >                         set file names literal
  49131. --------
  49132.     Something is not what it should be Jerry. 8.5K cps over Telnet is
  49133. far below what I see under similar circumstances. Between MSK and C Kermit
  49134. on a DEC Alpha I get around 85K cps, MSK to CK on a 386-33 Unix machine I 
  49135. get around 28K cps. 486-66 DX/2 machine for the MSK part.
  49136.     Suggestions are to upgrade the C Kermit side to 5A (190) where
  49137. significant speed improvments have occurred, and to have a careful look
  49138. at your Ethernet system to see if packets are being dropped. Note that
  49139. MSK has a 4KB TCP buffer so Kermit packets smaller than this are a more
  49140. natural fit (only a minor effect). I use 2KB packets and 4 window slots.
  49141.         Joe D.
  49142.  
  49143. From news@columbia.edu Sat Nov 12 14:04:25 1994
  49144. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06793
  49145.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 13 Nov 1994 17:40:25 -0500
  49146. Received: by apakabar.cc.columbia.edu id AA18041
  49147.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 13 Nov 1994 17:40:23 -0500
  49148. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  49149. From: jrd@cc.usu.edu (Joe Doupnik)
  49150. Newsgroups: comp.protocols.tcp-ip.ibmpc,comp.protocols.kermit.misc
  49151. Subject: Re: kermit on tnglass logout problem
  49152. Message-Id: <1994Nov12.200425.32637@cc.usu.edu>
  49153. Date: 12 Nov 94 20:04:25 MDT
  49154. References: <39q4ba$j50@ctsc.hkbc.hk>
  49155. Organization: Utah State University
  49156. Lines: 18
  49157. Xref: news.columbia.edu comp.protocols.tcp-ip.ibmpc:31616 comp.protocols.kermit.misc:1080
  49158. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  49159.  
  49160. In article <39q4ba$j50@ctsc.hkbc.hk>, s11976@ctsc.hkbc.hk (PM Wong) writes:
  49161. > We are trying to run kermit.exe (v3.12) on PCTCP (v. 2.3) tnglass 
  49162. > via Int 14.
  49163. > Now when we logout of the unix host, it will not come back to the
  49164. > DOS prompt straight-away (though we have put the keyword EXIT or
  49165. > PUSH at the end of the called kermit's .ini script)
  49166. > We have to manually press ^] and then type c to come out.
  49167. > Is there any method to automate this exit to DOS function at logout
  49168. > of the unix host ? 
  49169. ---------------
  49170.     The interface provided by tnglass is the standard Bios Int 14h
  49171. for serial ports, and that lacks the notion of session status. Hence
  49172. Kermit does not know the Telnet session has ended. If you use Kermit's
  49173. own TCP/IP stack then it knows all about session status; the same is
  49174. true with FTP's utilities which are built to work with their stack.
  49175.     The simple keypress to exit Kermit connect mode is ALT-x, which
  49176. is easier to type than ESC ] c (though both work).
  49177.     Joe D.
  49178.  
  49179. From news@columbia.edu Sun Nov 13 03:33:31 1994
  49180. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07521
  49181.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 13 Nov 1994 17:57:30 -0500
  49182. Received: by apakabar.cc.columbia.edu id AA19251
  49183.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 13 Nov 1994 17:57:29 -0500
  49184. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  49185. From: jrd@cc.usu.edu (Joe Doupnik)
  49186. Newsgroups: comp.protocols.kermit.misc
  49187. Subject: Re: C-Kermit vs MS-Kermit
  49188. Message-Id: <1994Nov13.093331.32652@cc.usu.edu>
  49189. Date: 13 Nov 94 09:33:31 MDT
  49190. References: <Pine.SUN.3.90.941106143639.22421D-100000@blue>  <Cz6GsK.wy@ariel.cs.yorku.ca>
  49191. Organization: Utah State University
  49192. Lines: 24
  49193. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  49194.  
  49195. In article <Cz6GsK.wy@ariel.cs.yorku.ca>, cs932070@ariel.cs.yorku.ca (ARCHIMEDES L TRAJANO) writes:
  49196. > In article <1994Nov9.195221.32422@cc.usu.edu>,
  49197. > Joe Doupnik <jrd@cc.usu.edu> wrote:
  49198. >>    I don't understand your last sentence. I can say that we won't
  49199. >>trade lots of program space (memory) for seldom used features. But then 
  49200. >>we don't have any idea of what's important to you.
  49201. > One of the things I liked with the CKermit source codes is that someone 
  49202. > can compile them with or without the extra nifty features that it has to 
  49203. > offer.  In effect we can get a smaller binary by removing all the 
  49204. > unneeded features.  The MSKermit distribution contains two other versions 
  49205. > that are "not complete" but I prefer to have the ability to just make my 
  49206. > own decisions as to what should be included or not.
  49207. > -- 
  49208. > Archimedes L. Trajano        _/_/_/ _/   _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
  49209. > cs932070@ariel.cs.yorku.ca  _/  _/ _/     _/  York University
  49210. > (IRC: Overdrive)           _/_/_/ _/     _/  Department of Computer Science
  49211. > _/_/_/_/_/_/_/_/_/_/_/_/_/_/  _/ _/_/_/ _/  North York, Ontario, Canada
  49212.  
  49213. ------------
  49214.     We publlish the source code so you then have all the items at your
  49215. disposal for tailoring. Be aware that the patch file works only on the 
  49216. executables issued from Columbia.
  49217.     Joe D.
  49218.  
  49219. From news@columbia.edu Sun Nov 13 06:44:16 1994
  49220. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07915
  49221.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 13 Nov 1994 18:05:15 -0500
  49222. Received: by apakabar.cc.columbia.edu id AA19702
  49223.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 13 Nov 1994 18:05:14 -0500
  49224. Path: news.columbia.edu!sol.ctr.columbia.edu!caen!math.ohio-state.edu!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  49225. From: jrd@cc.usu.edu (Joe Doupnik)
  49226. Newsgroups: comp.protocols.kermit.misc
  49227. Subject: Re: Kermit Scripts
  49228. Message-Id: <1994Nov13.124416.32660@cc.usu.edu>
  49229. Date: 13 Nov 94 12:44:16 MDT
  49230. References: <3a5m7l$a4j@vixen.cso.uiuc.edu>
  49231. Organization: Utah State University
  49232. Lines: 27
  49233. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  49234.  
  49235. In article <3a5m7l$a4j@vixen.cso.uiuc.edu>, somebody@prairienet.org (Carlos Ramirez Pnet Admin) writes:
  49236. >     I just started using Kermit and I like the performance of and 
  49237. > it's flexibility of it. Currently I am using to dialup via slip and I am 
  49238. > search of a sample script that will the following things from a DOS prompt
  49239. > 1) startup kermit and dial a phone number
  49240. > 2) keep redialing if busy
  49241. > 3) once connected enter a username that I will provide.
  49242. > 4) then open a passwd prompt give a passwd that I will provide.
  49243. > 5) enter the line "slip default"
  49244. > 6) completely exit kermit and return me to a dos prompt so I can use 
  49245. > NCSA's telnet
  49246. > Ok second thing I am looking for is some some .ini files for a slip 
  49247. > connection.
  49248. >     I am would appreciate and help what so ever thank you
  49249. >                         Carlos
  49250. ---------
  49251.     Hmmm. Maybe we should tell you to complain to NCSA about the
  49252. lack of scripting etc in their product rather than us jumping through
  49253. hoops with ours to help you run theirs. 
  49254.     May I make two serious suggestions?
  49255.     1. Read the user's manual. It's there to help you generate your
  49256. own scripts.
  49257.     2. Use MS-DOS Kermit for Telnet. It's better, amongst other things.
  49258.     Joe D.
  49259.  
  49260. From news@columbia.edu Sun Nov 13 06:49:03 1994
  49261. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07921
  49262.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 13 Nov 1994 18:05:17 -0500
  49263. Received: by apakabar.cc.columbia.edu id AA19707
  49264.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 13 Nov 1994 18:05:16 -0500
  49265. Path: news.columbia.edu!sol.ctr.columbia.edu!caen!hookup!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!ivie
  49266. From: ivie@cc.usu.edu
  49267. Newsgroups: comp.protocols.kermit.misc
  49268. Subject: Re: Pseudo-VMS C-Kermit?
  49269. Message-Id: <1994Nov13.124903.32662@cc.usu.edu>
  49270. Date: 13 Nov 94 12:49:03 MDT
  49271. References: <1994Nov11.184506.77436@kuhub.cc.ukans.edu>
  49272. Organization: Utah State University
  49273. Lines: 23
  49274. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  49275.  
  49276. In article <1994Nov11.184506.77436@kuhub.cc.ukans.edu>, tdsmith@kuhub.cc.ukans.edu writes:
  49277. >     I'm trying to set up a new OS (TSX-Lite) on my 486.  It will run 
  49278. > DOS executables, but so far I have been unsuccessful in getting MS-Kermit
  49279. > to see the com port (TSX controlls the hardware.)
  49280.  
  49281. Hmm. I haven't had any trouble with MS-Kermit under TSX-Lite. However, I am
  49282. using an antique version MS-Kermit: 3.11. (Hi, Joe!)
  49283.  
  49284. >  Will one of the VMS 
  49285. > versions of C-Kermit work with this OS?  If so, which one, and how 
  49286. > difficult will it be to set up?
  49287.  
  49288. I don't think you'll have much luck with the VMS version of C-Kermit.
  49289. Although the OSes are conceptually similar, they are also quite different.
  49290.  
  49291. Your best bet for now would be to try to figure out why MS-Kermit won't work
  49292. on your system. I can ship you a copy of the 3.11 executable that I have been
  49293. using under TSX-Lite. I suppose I could also download the newer version so
  49294. that more people are working on the problem...
  49295. -- 
  49296. ----------------+------------------------------------------------------
  49297. Roger Ivie      | Don't think of it as a 'new' computer, think of it as
  49298. ivie@cc.usu.edu |     'obsolete-ready'
  49299.  
  49300. From news@columbia.edu Sun Nov 13 23:19:54 1994
  49301. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08762
  49302.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 13 Nov 1994 18:19:59 -0500
  49303. Received: by apakabar.cc.columbia.edu id AA20784
  49304.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 13 Nov 1994 18:19:57 -0500
  49305. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  49306. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  49307. Newsgroups: comp.protocols.kermit.misc
  49308. Subject: Re: Kermit Scripts
  49309. Date: 13 Nov 1994 23:19:54 GMT
  49310. Organization: Columbia University
  49311. Lines: 20
  49312. Message-Id: <3a66uq$k9c@apakabar.cc.columbia.edu>
  49313. References: <3a5m7l$a4j@vixen.cso.uiuc.edu>
  49314. Nntp-Posting-Host: watsun.cc.columbia.edu
  49315. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  49316.  
  49317. In article <3a5m7l$a4j@vixen.cso.uiuc.edu>,
  49318. Carlos Ramirez Pnet Admin <somebody@prairienet.org> wrote:
  49319. >6) completely exit kermit and return me to a dos prompt so I can use 
  49320. >NCSA's telnet
  49321.  
  49322. This is the third time in a month that I have seen someone ask:
  49323.  
  49324. "How can I use Kermit so that I can use NCSA's telnet?"
  49325.  
  49326. Question:  Could someone please explain to me what it is that NCSA Telnet 
  49327. provides that MS-DOS Kermit and/or C-Kermit do not provide?
  49328.  
  49329. Much appreciated.
  49330.  
  49331.  
  49332.  
  49333. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  49334. "C-Kermit: available on more platforms than any other communications software."
  49335. "Kermit FTP: sending files whenever and wherever they are needed."
  49336. *NEW* OS/2 version 5A(190): ftp kermit.columbia.edu /kermit/archives/ckoker.zip 
  49337.  
  49338. From news@columbia.edu Sun Nov 13 23:30:48 1994
  49339. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09350
  49340.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 13 Nov 1994 18:34:30 -0500
  49341. Received: by apakabar.cc.columbia.edu id AA21666
  49342.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 13 Nov 1994 18:34:29 -0500
  49343. Path: news.columbia.edu!panix!news.mathworks.com!news.kei.com!ddsw1!not-for-mail
  49344. From: les@MCS.COM (Leslie Mikesell)
  49345. Newsgroups: comp.protocols.kermit.misc,alt.winsock
  49346. Subject: winsock/pkt dvr hack possible?
  49347. Date: 13 Nov 1994 17:30:48 -0600
  49348. Organization: /usr/lib/news/organi[sz]ation
  49349. Lines: 9
  49350. Message-Id: <3a67j8$j39@Mercury.mcs.com>
  49351. Nntp-Posting-Host: mercury.mcs.com
  49352. Xref: news.columbia.edu comp.protocols.kermit.misc:1085 alt.winsock:21638
  49353. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  49354.  
  49355. Since a "real" windows kermit seems unlikely in the near future, I'd
  49356. like to know if it would be possible to use some kind of shim that
  49357. looks like a packet driver in a dos session but actually uses the
  49358. winsock interface.  I know you can do this if you have an NDIS driver
  49359. below the winsock layer, but I'd like something that would work the
  49360. same way over the dial-up versions of winsock.
  49361.  
  49362. Les Mikesell
  49363.   les@mcs.com
  49364.  
  49365. From news@columbia.edu Mon Nov 14 01:49:15 1994
  49366. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16016
  49367.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 13 Nov 1994 21:00:25 -0500
  49368. Received: by apakabar.cc.columbia.edu id AA01047
  49369.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 13 Nov 1994 21:00:17 -0500
  49370. Newsgroups: comp.os.lynx,comp.protocols.kermit.misc
  49371. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!pipex!uunet!bast!kzinti.Lynx.COM!seibert
  49372. From: seibert@kzinti.Lynx.COM (Greg Seibert)
  49373. Subject: Re: FAQ: Lynx and Dialup
  49374. References: <Cz23H2.AJ6@discus.technion.ac.il>
  49375. Sender: news@lynx.com (Usenet)
  49376. Organization: Lynx Real-Time Systems
  49377. Date: Mon, 14 Nov 1994 01:49:15 GMT
  49378. Message-Id: <1994Nov14.014915.111@lynx.com>
  49379. Lines: 30
  49380. Xref: news.columbia.edu comp.os.lynx:996 comp.protocols.kermit.misc:1086
  49381. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  49382.  
  49383. In article <Cz23H2.AJ6@discus.technion.ac.il>,
  49384. Chermesh Ran <chermesh@techunix.technion.ac.il> wrote:
  49385. >
  49386. >Hi,
  49387. >    Well, as you may guess, I managed to find the DOS version of Lynx.
  49388. >I expected to find a program capable of supplying text retrieval from ANY
  49389. >DOS machine, but instead, discovered that it requires an Ethernet card or its
  49390. >substitutes.
  49391. >    I wonder, is it possible to use Lynx through dialup communication? 
  49392. >Is it possible to add it, for example, to kermit?
  49393. >
  49394. >
  49395. >                 Ran
  49396. >
  49397. >--
  49398. >Ran Chermesh                                  E - M A I L
  49399. >Behavioral Sciences Dept.                     ===========
  49400. >Ben-Gurion University                  Internet: CHERMESH@BGUVM.BGU.AC.IL
  49401. >Beer-Sheva 84105                                 CHERMESH@BGUMAIL.BGU.AC.IL
  49402. >Israel                                 Bitnet  : CHERMESH@BGUVM.BITNET
  49403. >Phone: 972-7-472-057                   Fax: 972-7-232-766
  49404. >
  49405. >URL: gopher://gopher.bgu.ac.il:70/00/Ben/res/hum/beh/CHERMESH%2c%20RAN
  49406.  
  49407. And he's not even on AOL !!!
  49408. -- 
  49409. --Greg
  49410. (seibert@lynx.com)
  49411.  
  49412. "In Real-Time You Never Get a Second Chance"
  49413.  
  49414. From news@columbia.edu Sun Nov 14 04:37:17 1994
  49415. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11721
  49416.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 14 Nov 1994 09:08:55 -0500
  49417. Received: by apakabar.cc.columbia.edu id AA05537
  49418.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 14 Nov 1994 09:08:53 -0500
  49419. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!hookup!swrinde!pipex!news.sprintlink.net!news.charm.net!news.charm.net!cnordin
  49420. From: cnordin@charm.net (Craig Nordin)
  49421. Newsgroups: comp.protocols.kermit.misc,umbc.unix
  49422. Subject: Re: S...l...o...w C-Kermit File Transfers. What's wrong?
  49423. Date: 13 Nov 1994 23:37:17 -0500
  49424. Organization: Charm.Net : Baltimore Local Internet Access, Hon
  49425. Lines: 30
  49426. Message-Id: <cnordin.784786562@news.charm.net>
  49427. References: <3a17oe$b1k@umbc8.umbc.edu>
  49428. Nntp-Posting-Host: sowebo.charm.net
  49429. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  49430.  
  49431. Heres my .kermrc file, this should make C-Kermit happy.  You'll
  49432. do even better if you tune your local kermit accordingly.
  49433.  
  49434. With a little tuning you can get almost the same throughput as zmodem.
  49435.  
  49436. -----------------------------------------------------------------------
  49437. set local off 
  49438. set flow rts
  49439. set buffer 50000 50000
  49440. set win 0
  49441. set send pac 4096
  49442. set rec pac 4096
  49443. set window 3 
  49444. set block 1
  49445. set file type bi
  49446. define rz !rz \%1 \%2 \%3 <&\v(ttyfd) >&\v(ttyfd)
  49447. define sz !sz \%1 \%2 \%3 <&\v(ttyfd) >&\v(ttyfd)
  49448. define sb !sb \%1 \%2 \%3 <&\v(ttyfd) >&\v(ttyfd)
  49449. define rb !rb \%1 \%2 \%3 <&\v(ttyfd) >&\v(ttyfd)
  49450. define sx !sx \%1 \%2 \%3 <&\v(ttyfd) >&\v(ttyfd)
  49451. define rx !rx \%1 \%2 \%3 <&\v(ttyfd) >&\v(ttyfd)
  49452. -----------------------------------------------------------------------
  49453.  
  49454.  
  49455.  
  49456. -- 
  49457.  
  49458. See the Emerald on the Matrix?   Baltimore, Maryland Access to the Internet
  49459.    That's Charm.Net Hon!       E-Mail: info@charm.net  Voice:(410) 558.3900
  49460.   http://www.charm.net/    "guest" login, no password   Data:(410) 558.3300
  49461.  
  49462. From news@columbia.edu Sun Nov 14 04:05:42 1994
  49463. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12065
  49464.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 14 Nov 1994 09:14:56 -0500
  49465. Received: by apakabar.cc.columbia.edu id AA06087
  49466.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 14 Nov 1994 09:14:55 -0500
  49467. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!gatech!news-feed-1.peachnet.edu!insosf1.infonet.net!usenet.ee.pdx.edu!not-for-mail
  49468. From: rkwee@ee.pdx.edu (Roland Kwee)
  49469. Newsgroups: comp.os.lynx,comp.protocols.kermit.misc
  49470. Subject: Re: FAQ: Lynx and Dialup
  49471. Date: 13 Nov 1994 20:05:42 -0800
  49472. Lines: 10
  49473. Message-Id: <3a6nmm$k5k@cruella.ee.pdx.edu>
  49474. References: <Cz23H2.AJ6@discus.technion.ac.il>
  49475. Nntp-Posting-Host: cruella.ee.pdx.edu
  49476. X-Newsreader: NN version 6.4.19 #2
  49477. Xref: news.columbia.edu comp.os.lynx:998 comp.protocols.kermit.misc:1088
  49478. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  49479.  
  49480. chermesh@techunix.technion.ac.il (Chermesh Ran) writes:
  49481.  
  49482. >    I wonder, is it possible to use Lynx through dialup communication? 
  49483. >Is it possible to add it, for example, to kermit?
  49484.  
  49485. I expect that lynx needs TCP/IP, not necessarily ethernet. Therefore,
  49486. on a dialup link, you should use SLIP or PPP after you log in with Kermit.
  49487. Once the SLIP or PPP link is established, lynx will work.
  49488.  
  49489. Roland Kwee   <rolandkwee@acm.org>
  49490.  
  49491. From news@columbia.edu Mon Nov 14 16:58:41 1994
  49492. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08642
  49493.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 14 Nov 1994 14:26:44 -0500
  49494. Received: by apakabar.cc.columbia.edu id AA03822
  49495.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 14 Nov 1994 14:26:42 -0500
  49496. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!hookup!swrinde!gatech!howland.reston.ans.net!vixen.cso.uiuc.edu!prairienet.org!somebody
  49497. From: somebody@prairienet.org (Carlos Ramirez Pnet Admin)
  49498. Newsgroups: comp.protocols.kermit.misc
  49499. Subject: Re: Kermit Scripts
  49500. Date: 14 Nov 1994 16:58:41 GMT
  49501. Organization: Prairienet, the East-Central Illinois Free-Net
  49502. Lines: 54
  49503. Message-Id: <3a8501$k3b@vixen.cso.uiuc.edu>
  49504. References: <3a5m7l$a4j@vixen.cso.uiuc.edu> <1994Nov13.124416.32660@cc.usu.edu>
  49505. Nntp-Posting-Host: firefly.prairienet.org
  49506. X-Newsreader: TIN [version 1.2 PL2]
  49507. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  49508.  
  49509. Joe Doupnik (jrd@cc.usu.edu) wrote:
  49510. : In article <3a5m7l$a4j@vixen.cso.uiuc.edu>, somebody@prairienet.org (Carlos Ramirez Pnet Admin) writes:
  49511. : >     I just started using Kermit and I like the performance of and 
  49512. : > it's flexibility of it. Currently I am using to dialup via slip and I am 
  49513. : > search of a sample script that will the following things from a DOS prompt
  49514. : > 1) startup kermit and dial a phone number
  49515. : > 2) keep redialing if busy
  49516. : > 3) once connected enter a username that I will provide.
  49517. : > 4) then open a passwd prompt give a passwd that I will provide.
  49518. : > 5) enter the line "slip default"
  49519. : > 6) completely exit kermit and return me to a dos prompt so I can use 
  49520. : > NCSA's telnet
  49521. : > 
  49522. : > Ok second thing I am looking for is some some .ini files for a slip 
  49523. : > connection.
  49524. : > 
  49525. : >     I am would appreciate and help what so ever thank you
  49526. : >                         Carlos
  49527. : > 
  49528. : ---------
  49529. :     Hmmm. Maybe we should tell you to complain to NCSA about the
  49530. : lack of scripting etc in their product rather than us jumping through
  49531. : hoops with ours to help you run theirs. 
  49532.     Not really many hopes but the in general I didn't seem to find 
  49533. much insight on using kermit for slip. Yes I did see the article with the 
  49534. docs.
  49535.     I wanted to complain I would do so. BTW this wasn't a complaint 
  49536. if your ego is too fragile to handle it sorry. But it was a request for 
  49537. information.
  49538.     
  49539. :     May I make two serious suggestions?
  49540. :     1. Read the user's manual. It's there to help you generate your
  49541. : own scripts.
  49542. I have read the manual and have gotten a small feel for kermit scripting 
  49543. but I would not consider myself a pro at this and I am sure there many 
  49544. people out there who are very good at this.Ergo instead of trying a hack 
  49545. at it myself I figure I wouldn't post a to a news groups that would 
  49546. know better. If you don't proclaim to know better keep you comments to 
  49547. yourself!:     
  49548.     2. Use MS-DOS Kermit for Telnet. It's better, amongst other things. 
  49549. :     Joe D.
  49550.  
  49551. To this all I can say is I use what works. First I want to get a 
  49552. something working that works and I know. The tinker with something new. I 
  49553. am sure you would agree it's better to have a old car in working order 
  49554. than a new Cadillac (or what have you) sitting in the garage requiring 
  49555. you to figure the firing order for it. Regardless I do plan to 
  49556. evidentually move to ms-dos kermit. 
  49557.     "It's better, amongst other things." Lacks any evidence or 
  49558. support if you care to support you claims please do so. I am eager to 
  49559. hear about it's better benefits afterall being new to Kermit some insight 
  49560. you be beneficial.
  49561.     LAST OF ALL. What the point of this news group if not to answer 
  49562. the questions and queries of the less knowledgable. 
  49563.  
  49564. From news@columbia.edu Tue Nov 15 00:03:56 1994
  49565. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27752
  49566.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 14 Nov 1994 19:04:13 -0500
  49567. Received: by apakabar.cc.columbia.edu id AA12383
  49568.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 14 Nov 1994 19:04:09 -0500
  49569. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  49570. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  49571. Newsgroups: comp.protocols.kermit.misc
  49572. Subject: MS-DOS Kermit 3.14 Beta-12 Ready
  49573. Date: 15 Nov 1994 00:03:56 GMT
  49574. Organization: Columbia University
  49575. Lines: 49
  49576. Message-Id: <3a8ttc$c1u@apakabar.cc.columbia.edu>
  49577. Nntp-Posting-Host: watsun.cc.columbia.edu
  49578. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  49579.  
  49580.  
  49581. MS-DOS Kermit 3.14 Beta-12 is available for anonymous ftp from
  49582. kermit.columbia.edu as of about 5pm EST, 14 November 1994.
  49583.  
  49584.   kermit/test/bin/mstibm.zip  - Binary ZIP file
  49585.   kermit/test/text/mstibm.uue - Uuencoded ZIP file
  49586.   kermit/test/text/mstibm.boo - BOO-encoded ZIP file
  49587.  
  49588. The UUE and BOO files are also available on BITNET from KERMSRV at CUVMA.
  49589.  
  49590. Changes and fixes since Beta-11 include:
  49591.  
  49592. - Additional RTS/CTS and SET CARRIER ON fixes and enforcement.  Heavy
  49593.   testing needed (more of it...)
  49594.  
  49595. - Kanji terminal emulation completed.  Use MS-DOS Kermit on regular IBM PCs
  49596.   with EGA or VGA or higher and DOS/V to read Kanji (fj.*) newsgroups, access
  49597.   the Nikkei Telecom database, use other host-based Kanji applications like
  49598.   e-mail, etc.  Transfer Kanji text files between PC and host without garbling
  49599.   the characters (Shift-JIS to JIS conversion), etc.  Many thanks to Hirofumi
  49600.   Fujii for this work.
  49601.  
  49602. - Cyrillic font fixed; "e" is no longer displayed as "c" (thanks to Yossi Gil
  49603.   at the Technion for getting this fixed so promptly).  Russian keyboard
  49604.   drivers (thanks to Dimitri Vulis) and documentation added.  If you have an
  49605.   8-bit-clean host-based newsreader, simply type "cyrillic" at the MS-Kermit>
  49606.   prompt, and then browse the relcom.* newsgroups (assumes postings are in
  49607.   KOI8, but Kermit can also handle ISO 8859-5 and Short KOI).  See
  49608.   CYRILLIC\READ.ME for details.
  49609.   
  49610. - Compose u-circumflex fixed (required reading in Canada :-)
  49611.  
  49612. - SET KEY capacity increased to 269 key definitions, 256 string definitions,
  49613.   and 2000 bytes of string space.
  49614.  
  49615. - WPGGOLD.COM added, an alternative to GOLD.COM, allowing Num Lock to
  49616.   be used as a regular key with its own unique scan code (\325).  VT300.INI
  49617.   updated to account for this scan code.  Thanks to Novell's new WordPerfect
  49618.   Division for this contribution.
  49619.  
  49620. - EMACS.INI added: key mappings for EMACS users, primarily allowing the
  49621.   Alt key to be used as the EMACS Meta key.
  49622.  
  49623. Thanks, as ever, to Joe Doupnik for his skillful work and for integrating the
  49624. work of the others acknowledged above.
  49625.  
  49626. Please continue to send reports by e-mail to kermit@columbia.edu.
  49627.  
  49628. - Frank
  49629.  
  49630. From news@columbia.edu Mon Nov 14 20:07:20 1994
  49631. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29471
  49632.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 14 Nov 1994 19:30:12 -0500
  49633. Received: by apakabar.cc.columbia.edu id AA14850
  49634.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 14 Nov 1994 19:30:05 -0500
  49635. Path: news.columbia.edu!news.media.mit.edu!bloom-beacon.mit.edu!gatech!newsxfer.itd.umich.edu!zip.eecs.umich.edu!yeshua.marcam.com!charnel.ecst.csuchico.edu!psgrain!ticsa.com!soren.aztec.co.za!soren
  49636. From: soren@aztec.co.za (Soren Aalto)
  49637. Newsgroups: comp.protocols.kermit.misc,alt.winsock
  49638. Subject: Re: winsock/pkt dvr hack possible?
  49639. Date: Mon, 14 Nov 1994 11:33:39
  49640. Organization: Linkdata
  49641. Lines: 25
  49642. Message-Id: <soren.202.000B8FF5@aztec.co.za>
  49643. References: <3a67j8$j39@Mercury.mcs.com>
  49644. Nntp-Posting-Host: soren.aztec.co.za
  49645. X-Newsreader: Trumpet for Windows [Version 1.0 Rev A]
  49646. Xref: news.columbia.edu comp.protocols.kermit.misc:1091 alt.winsock:21725
  49647. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  49648.  
  49649. In article <3a67j8$j39@Mercury.mcs.com> les@MCS.COM (Leslie Mikesell) writes:
  49650.  
  49651. >Since a "real" windows kermit seems unlikely in the near future, I'd
  49652. >like to know if it would be possible to use some kind of shim that
  49653. >looks like a packet driver in a dos session but actually uses the
  49654. >winsock interface.  I know you can do this if you have an NDIS driver
  49655. >below the winsock layer, but I'd like something that would work the
  49656. >same way over the dial-up versions of winsock.
  49657.  
  49658. Well, I've thought about this one, and I'd have to say that the
  49659. blunt answer is no.
  49660.  
  49661. I am working on some things like this--you'd have to go the route 
  49662. of running Winsock over a packet driver & then using a shim
  49663. like pktmux to split off virtual packet drivers.  I suppose you
  49664. could run slp16550 or etherppp packet drivers outside of Windows.
  49665. Otherwise you'd have to write an implementation of SLIP or PPP
  49666. that communicates with some kind of TSR stub in the System VM
  49667. that makes it look like the packets from the dial-up connection
  49668. are comming out of a packet driver.
  49669.  
  49670. In short, this is pretty yecchy.
  49671.  
  49672. Soren
  49673.  
  49674.  
  49675. From news@columbia.edu Sun Nov 13 21:59:43 1994
  49676. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10735
  49677.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 14 Nov 1994 22:56:29 -0500
  49678. Received: by apakabar.cc.columbia.edu id AA29085
  49679.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 14 Nov 1994 22:56:27 -0500
  49680. Newsgroups: comp.protocols.kermit.misc
  49681. From: scott@musicman.demon.co.uk (Scott Mordecai)
  49682. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!pipex!demon!betanews.demon.co.uk!musicman.demon.co.uk!scott
  49683. Subject: Re: re msdos kermit 3.14 ...
  49684. References: <39qhs2$k1j@bingnet1.cc.binghamton.edu> <1994Nov9.193440.32420@cc.usu.edu>
  49685. Organization: home
  49686. Reply-To: scott@musicman.demon.co.uk
  49687. X-Newsreader: Demon Internet Simple News v1.27
  49688. Lines: 10
  49689. Date: Sun, 13 Nov 1994 21:59:43 +0000
  49690. Message-Id: <784763983snz@musicman.demon.co.uk>
  49691. Sender: usenet@demon.co.uk
  49692. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  49693.  
  49694. >        Don't touch them! MS-DOS Kermit v3.14 is in beta testing; it is
  49695. >not release level material yet. Please wait for the formal announcement
  49696. >then follow instructions in that message.
  49697.  
  49698. Any idea how far away this will be?
  49699.  
  49700. --
  49701.  \|||/  Scott Mordecai                       /   A BAD DAY SKYDIVING
  49702. < o,o > Internet: scott@musicman.demon.co.uk \ IS BETTER THAN A GOOD DAY
  49703.   \_/   CompuServe: 70374,2246               /         AT WORK
  49704.  
  49705. From news@columbia.edu Mon Nov 14 05:23:47 1994
  49706. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14242
  49707.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 15 Nov 1994 00:01:55 -0500
  49708. Received: by apakabar.cc.columbia.edu id AA02239
  49709.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 15 Nov 1994 00:01:53 -0500
  49710. Path: news.columbia.edu!sol.ctr.columbia.edu!spool.mu.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  49711. From: jrd@cc.usu.edu (Joe Doupnik)
  49712. Newsgroups: comp.os.lynx,comp.protocols.kermit.misc
  49713. Subject: Re: FAQ: Lynx and Dialup
  49714. Message-Id: <1994Nov14.112347.32738@cc.usu.edu>
  49715. Date: 14 Nov 94 11:23:47 MDT
  49716. References: <Cz23H2.AJ6@discus.technion.ac.il> <3a6nmm$k5k@cruella.ee.pdx.edu>
  49717. Organization: Utah State University
  49718. Lines: 15
  49719. Xref: news.columbia.edu comp.os.lynx:1001 comp.protocols.kermit.misc:1093
  49720. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  49721.  
  49722. In article <3a6nmm$k5k@cruella.ee.pdx.edu>, rkwee@ee.pdx.edu (Roland Kwee) writes:
  49723. > chermesh@techunix.technion.ac.il (Chermesh Ran) writes:
  49724. >>    I wonder, is it possible to use Lynx through dialup communication? 
  49725. >>Is it possible to add it, for example, to kermit?
  49726. > I expect that lynx needs TCP/IP, not necessarily ethernet. Therefore,
  49727. > on a dialup link, you should use SLIP or PPP after you log in with Kermit.
  49728. > Once the SLIP or PPP link is established, lynx will work.
  49729. > Roland Kwee   <rolandkwee@acm.org>
  49730. ------------
  49731.     Greg Seibert @ lynx.com points out that the "lynx" above refers to a
  49732. WWW browser. That's hardly the business Kermit programs are in.
  49733.         Joe D.
  49734.  
  49735. From news@columbia.edu Mon Nov 14 15:44:28 1994
  49736. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28504
  49737.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 15 Nov 1994 05:40:55 -0500
  49738. Received: by apakabar.cc.columbia.edu id AA14178
  49739.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 15 Nov 1994 05:40:53 -0500
  49740. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!hookup!usc!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  49741. From: jrd@cc.usu.edu (Joe Doupnik)
  49742. Newsgroups: comp.protocols.kermit.misc
  49743. Subject: Re: The Mac version of Kermit has less features than other OS versions.
  49744. Message-Id: <1994Nov14.214428.32803@cc.usu.edu>
  49745. Date: 14 Nov 94 21:44:28 MDT
  49746. References: <3935bt$111o@fidoii.cc.lehigh.edu>   <1994Nov11.183525.77435@kuhub.cc.ukans.edu> <1994Nov14.075525.33863@miavx1>
  49747. Organization: Utah State University
  49748. Lines: 36
  49749. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  49750.  
  49751. In article <1994Nov14.075525.33863@miavx1>, kacovert@miavx1.acs.muohio.edu (Kent Covert) writes:
  49752. > In article <1994Nov11.183525.77435@kuhub.cc.ukans.edu>, tdsmith@kuhub.cc.ukans.edu writes:
  49753. >> Note that I've never seen kermit use more than one window, though.
  49754. > Actually, I think that the Mac version of Kermit reports this incorrectly. 
  49755. > I've never seen the Mac version report anything higher than 1 also.  But,
  49756. > if you issue the STATUS command on the server after a transfer, you'll
  49757. > usually find that the server reports using more than 1.
  49758. -----------
  49759.     You are both right, but maybe not for the reasons you think.
  49760.     With Columbia Kermits the receiver shows how many packets have
  49761. been recognized as packets and are being processed. If packets arrive
  49762. in order with none missing then one at a time is processed as bytes are 
  49763. read from the comms channel; we see one window slot in use. Other bytes
  49764. may still be in the comms channel (includes receiver's port buffer) but 
  49765. not yet parsed as a packet.
  49766.     If a packet is damaged or really missing then the out of
  49767. order packets are recognized and stashed away while the receiver still
  49768. tries to find the desired (but missing) packet. Then the number of
  49769. window slots in use grows. Kermit uses "selective repeat" sliding windows
  49770. so only the missing packet(s) needs to be retransmitted.
  49771.     The status command should show the number of window slots
  49772. available, rather than just the number used. But I have no Mac to see
  49773. what's what on it. MS-DOS Kermit shows the "active out of available"
  49774. number on the formatted file transfer display.
  49775.     The transmitter is given permission to send all window slots
  49776. worth of packets. It does so, but between each it takes a very quick
  49777. peek at the comms channel to see if enough bytes have arrived to
  49778. constitute a possible acknowledgment. If there are enough then it is
  49779. read and processed on the fly. Thus the transmitter may show many (two
  49780. or more) window slots in use even under ideal conditions as it waits for
  49781. ACKs from the other side.
  49782.     Quiz Friday. Homework: what might a receiver say about a missing
  49783. packet? Hint: as little as possible, but...
  49784.     Joe D.
  49785.  
  49786. From news@columbia.edu Tue Nov 15 12:25:25 1994
  49787. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14666
  49788.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 15 Nov 1994 11:45:57 -0500
  49789. Received: by apakabar.cc.columbia.edu id AA03834
  49790.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 15 Nov 1994 11:45:55 -0500
  49791. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!uhog.mit.edu!sgiblab!cs.uoregon.edu!reuter.cse.ogi.edu!netnews.nwnet.net!ns1.nodak.edu!heart.cas.und.nodak.edu!degregor
  49792. From: degregor@aero.und.nodak.edu (Brian Degregorio)
  49793. Newsgroups: comp.protocols.kermit.misc
  49794. Subject: Terminal Emulation
  49795. Date: 15 Nov 1994 12:25:25 GMT
  49796. Organization: University of North Dakota; Grand Forks, ND
  49797. Lines: 8
  49798. Message-Id: <3aa9bl$1bva@heart.cas.und.nodak.edu>
  49799. Nntp-Posting-Host: agassiz.cas.und.nodak.edu
  49800. X-Newsreader: TIN [version 1.2 PL2]
  49801. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  49802.  
  49803. Does any one know where I can find .ini files to setup MSKermit for 
  49804. IBM3164 and FOX terminal emulations.  If they don't exist can any one help 
  49805. me with creating them. Thanks.
  49806.  
  49807.                 Brian Degregorio
  49808.                 degregor@aero.und.nodak.edu
  49809.  
  49810.  
  49811.  
  49812. From news@columbia.edu Tue Nov 15 21:24:00 1994
  49813. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06126
  49814.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 15 Nov 1994 17:22:52 -0500
  49815. Received: by apakabar.cc.columbia.edu id AA08512
  49816.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 15 Nov 1994 17:22:50 -0500
  49817. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!udel!gatech!howland.reston.ans.net!vixen.cso.uiuc.edu!rsm1.physics.uiuc.edu!lewart
  49818. From: d-lewart@uiuc.edu (Daniel S. Lewart)
  49819. Newsgroups: comp.protocols.kermit.misc
  49820. Subject: MS-DOS Kermit 3.14/Beta-12 breaks Int 14h redirection
  49821. Date: 15 Nov 94 21:24:00 GMT
  49822. Organization: DSL Consulting
  49823. Lines: 9
  49824. Message-Id: <lewart.784934636@rsm1.physics.uiuc.edu>
  49825. Reply-To: d-lewart@uiuc.edu (Daniel S. Lewart)
  49826. Nntp-Posting-Host: rsm1.physics.uiuc.edu
  49827. Cc: kermit@columbia.edu (Kermit Distribution)
  49828. X-Newsreader: NN version 6.5.0 (NOV)
  49829.  
  49830. I have been using Int 14h redirection with MS-Kermit successfully
  49831. up to and including 3.14/Beta-11.  However, Beta-12 doesn't connect.
  49832. The redirectors I use are:
  49833.     FTP Software TNGLASS.EXE v2.3
  49834.     NCSA NET14.EXE
  49835.  
  49836. Thank you,
  49837. Daniel Lewart
  49838. d-lewart@uiuc.edu
  49839.  
  49840. From news@columbia.edu Tue Nov 15 10:24:00 1994
  49841. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07525
  49842.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 15 Nov 1994 17:43:06 -0500
  49843. Received: by apakabar.cc.columbia.edu id AA12882
  49844.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 15 Nov 1994 17:43:04 -0500
  49845. Newsgroups: comp.protocols.kermit.misc
  49846. From: Mike@childsoc.demon.co.uk (Michael Bernardi)
  49847. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!udel!news.sprintlink.net!pipex!demon!childsoc.demon.co.uk!Mike
  49848. Subject: Re: Kermit Scripts
  49849. References: <3a5m7l$a4j@vixen.cso.uiuc.edu>
  49850. Organization: The Children's Society
  49851. Reply-To: Michael Bernardi <Mike@childsoc.demon.co.uk>
  49852. X-Newsreader: Demon Internet Simple News v1.29
  49853. Lines: 23
  49854. Date: Tue, 15 Nov 1994 10:24:00 +0000
  49855. Message-Id: <784895040snz@childsoc.demon.co.uk>
  49856. Sender: usenet@demon.co.uk
  49857. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  49858.  
  49859. In article <3a5m7l$a4j@vixen.cso.uiuc.edu>
  49860.            somebody@prairienet.org "Carlos Ramirez Pnet Admin" writes:
  49861.  
  49862. >        I just started using Kermit and I like the performance of and 
  49863. >it's flexibility of it. Currently I am using to dialup via slip and I am 
  49864. >search of a sample script that will the following things from a DOS prompt
  49865. >1) startup kermit and dial a phone number
  49866. >2) keep redialing if busy
  49867. The DIAL command already does this
  49868. >3) once connected enter a username that I will provide.
  49869. >4) then open a passwd prompt give a passwd that I will provide.
  49870. >5) enter the line "slip default"
  49871. I've altered the DIAL so that the last field is NOT a comment but the name
  49872. of the SCRIPT file which is run AFTER the DIAL has finished.
  49873. >6) completely exit kermit and return me to a dos prompt so I can use 
  49874. >NCSA's telnet
  49875. Since you are using MS-Kermit to dial up WHY do you need to use a different
  49876. telnet program? MS-Kermit has a very good one already!
  49877. Mike
  49878. -- 
  49879.  Michael Bernardi        mike@childsoc.demon.co.uk (Internet) | Making lives
  49880.  The Children's Society, Edward Rudolf House, Margery Street, | worth living
  49881.  London, WC1X 0JL, UK    Voice: +44 171 837 4299     Charity Reg. No. 221124
  49882.  
  49883. From news@columbia.edu Tue Nov 15 19:50:50 1994
  49884. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17426
  49885.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 15 Nov 1994 20:39:29 -0500
  49886. Received: by apakabar.cc.columbia.edu id AA13993
  49887.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 15 Nov 1994 20:39:28 -0500
  49888. Newsgroups: comp.protocols.tcp-ip.ibmpc,comp.protocols.kermit.misc
  49889. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!Germany.EU.net!EU.net!sun4nl!echelon!kees
  49890. From: kees@echelon.nl (Kees Hendrikse)
  49891. Subject: Re: kermit on tnglass logout problem
  49892. Organization: Echelon Consultancy, Enschede, The Netherlands
  49893. Date: Tue, 15 Nov 1994 19:50:50 GMT
  49894. Message-Id: <CzBr4q.1po@echelon.nl>
  49895. References: <39q4ba$j50@ctsc.hkbc.hk> <1994Nov12.200425.32637@cc.usu.edu>
  49896. Lines: 30
  49897. Xref: news.columbia.edu comp.protocols.tcp-ip.ibmpc:31638 comp.protocols.kermit.misc:1098
  49898. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  49899.  
  49900. In <1994Nov12.200425.32637@cc.usu.edu> jrd@cc.usu.edu (Joe Doupnik) writes:
  49901.  
  49902. > In article <39q4ba$j50@ctsc.hkbc.hk>, s11976@ctsc.hkbc.hk (PM Wong) writes:
  49903. > > Now when we logout of the unix host, it will not come back to the
  49904. > > DOS prompt straight-away (though we have put the keyword EXIT or
  49905. > > PUSH at the end of the called kermit's .ini script)
  49906. (..)
  49907. > Kermit does not know the Telnet session has ended. If you use Kermit's
  49908. > own TCP/IP stack then it knows all about session status; the same is
  49909. > true with FTP's utilities which are built to work with their stack.
  49910. >     The simple keypress to exit Kermit connect mode is ALT-x, which
  49911. > is easier to type than ESC ] c (though both work).
  49912.  
  49913. Putting 
  49914.     connect
  49915.     quit
  49916. in your ini-file, makes Alt-X behave like 'end session & quit'. If you
  49917. always use the same command to log out from your host, say 'exit' you
  49918. also can try a sequence like:
  49919.     connect
  49920.     output exit\13
  49921.     quit
  49922.  
  49923. very handy for 'canned' sessions.
  49924.  
  49925. -- 
  49926. Kees Hendrikse                                | email:   kees@echelon.nl
  49927.                                               |
  49928. ECHELON consultancy and software development  | phone: +31 (0)53 836 585
  49929. PO Box 545, 7500AM Enschede, The Netherlands  | fax:   +31 (0)53 337 415
  49930.  
  49931. From news@columbia.edu Wed Nov 16 11:49:48 1994
  49932. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15936
  49933.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 16 Nov 1994 07:09:09 -0500
  49934. Received: by apakabar.cc.columbia.edu id AA05189
  49935.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 16 Nov 1994 07:08:38 -0500
  49936. Newsgroups: comp.protocols.kermit.misc
  49937. Path: news.columbia.edu!panix!news.mathworks.com!zombie.ncsc.mil!news.duke.edu!convex!cs.utexas.edu!swrinde!howland.reston.ans.net!ix.netcom.com!netcom.com!jhurwit
  49938. From: jhurwit@netcom.com (Jeffrey Hurwit)
  49939. Subject: Re: C-Kermit 5A(190) Replaces 5A(189)
  49940. Message-Id: <jhurwitCzCzJ1.C7t@netcom.com>
  49941. Organization: Organization?  What organization?
  49942. X-Newsreader: TIN [version 1.2 PL1]
  49943. References: <3ac9vg$r39@harbinger.cc.monash.edu.au>
  49944. Date: Wed, 16 Nov 1994 11:49:48 GMT
  49945. Lines: 12
  49946. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  49947.  
  49948. In article <3ac9vg$r39@harbinger.cc.monash.edu.au>, Ralphe Neill
  49949. (ran@daneel.rdt.monash.edu.au) wrote:
  49950.  
  49951. >Re "C-Kermit 5A(190) Replaces 5A(189)" in
  49952. >comp.protocols.kermit.announce - the makefile appears to be missing
  49953. >from the cku190.tar.gz archive.
  49954.  
  49955.     Huh???  I just grabbed that file a few days ago, and everything was
  49956.     in it, including the makefile.  Everything seemed to be fine--
  49957.     built a working Kermit with no problems.
  49958.  
  49959.                         Jeff
  49960.  
  49961. From news@columbia.edu Wed Nov 16 03:39:26 1994
  49962. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01922
  49963.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 16 Nov 1994 07:31:49 -0500
  49964. Received: by apakabar.cc.columbia.edu id AA05954
  49965.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 16 Nov 1994 07:31:48 -0500
  49966. Newsgroups: comp.protocols.kermit.misc
  49967. Path: news.columbia.edu!panix!news.mathworks.com!hookup!swrinde!gatech!usenet.ins.cwru.edu!ncoast!dchou
  49968. From: dchou@ncoast.org (David Chou)
  49969. Subject: Kermit 3.14 beta 10 hangs
  49970. Date: Wed, 16 Nov 1994 03:39:26 GMT
  49971. Message-Id: <CzCCtq.LnJ@NCoast.ORG>
  49972. Organization: North Coast Public Access *NIX, Cleveland, OH
  49973. Lines: 8
  49974. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  49975.  
  49976. I am experiencing periodic hangs with the latest version of MS-Kermit
  49977. with garbage.  I have seen this on two processors which have little in
  49978. common except that both have 16550 serial UARTS.  One board is a 386/33
  49979. AMI Mark II based system; the second is a 90MHz Pentium AMI board.  Both
  49980. have had the problem when junk is received.  The problem is cleared throug
  49981. the alt-= reset function in Kermit.
  49982.  
  49983. Dave Chou
  49984.  
  49985. From news@columbia.edu Tue Nov 15 08:27:19 1994
  49986. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15491
  49987.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 16 Nov 1994 11:08:20 -0500
  49988. Received: by apakabar.cc.columbia.edu id AA19381
  49989.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 16 Nov 1994 11:08:18 -0500
  49990. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!hookup!news.moneng.mei.com!uwm.edu!lll-winken.llnl.gov!osi-east2.es.net!cronkite.nersc.gov!dancer.ca.sandia.gov!overload.lbl.gov!dog.ee.lbl.gov!news.cs.utah.edu!cc.usu.edu!jrd
  49991. From: jrd@cc.usu.edu (Joe Doupnik)
  49992. Newsgroups: comp.protocols.kermit.misc
  49993. Subject: Re: Terminal Emulation
  49994. Message-Id: <1994Nov15.142720.32864@cc.usu.edu>
  49995. Date: 15 Nov 94 14:27:19 MDT
  49996. References: <3aa9bl$1bva@heart.cas.und.nodak.edu>
  49997. Organization: Utah State University
  49998. Lines: 15
  49999. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  50000.  
  50001. In article <3aa9bl$1bva@heart.cas.und.nodak.edu>, degregor@aero.und.nodak.edu (Brian Degregorio) writes:
  50002. > Does any one know where I can find .ini files to setup MSKermit for 
  50003. > IBM3164 and FOX terminal emulations.  If they don't exist can any one help 
  50004. > me with creating them. Thanks.
  50005. >                 Brian Degregorio
  50006. >                 degregor@aero.und.nodak.edu
  50007. ------------
  50008.     Terminal emulation doesn't work via .ini files, as you probably
  50009. know. There is no support for either of the terminals above, unless they
  50010. happen to emulate one of the text terminals already present in MS-DOS Kermit:
  50011. VT320/220/102/100/52, Heath-19, Data General D470/D463, Wyse-50, Honeywell 
  50012. VIP7809, Prime PT200. Adding a new terminal type is generally a fairly
  50013. serious undertaking, not to mention a memory consumer.
  50014.     Joe D.
  50015.  
  50016. From news@columbia.edu Wed Nov 16 06:48:16 1994
  50017. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06589
  50018.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 16 Nov 1994 16:33:34 -0500
  50019. Received: by apakabar.cc.columbia.edu id AA21963
  50020.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 16 Nov 1994 16:33:31 -0500
  50021. Path: news.columbia.edu!sol.ctr.columbia.edu!usc!hookup!news.moneng.mei.com!uwm.edu!caen!msuinfo!harbinger.cc.monash.edu.au!daneel.rdt.monash.edu.au!ran
  50022. From: ran@daneel.rdt.monash.edu.au (Ralphe Neill)
  50023. Newsgroups: comp.protocols.kermit.misc
  50024. Subject: Re: C-Kermit 5A(190) Replaces 5A(189)
  50025. Date: 16 Nov 1994 06:48:16 GMT
  50026. Organization: Monash University
  50027. Lines: 4
  50028. Message-Id: <3ac9vg$r39@harbinger.cc.monash.edu.au>
  50029. Nntp-Posting-Host: daneel.rdt.monash.edu.au
  50030. X-Nntp-Posting-User: ran
  50031. Summary: Missing make file
  50032. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  50033.  
  50034. Re "C-Kermit 5A(190) Replaces 5A(189)" in comp.protocols.kermit.announce -
  50035. the makefile appears to be missing from the cku190.tar.gz archive.
  50036.  
  50037. Sorry for the posting but mail to Frank da Cruz is bouncing.
  50038.  
  50039. From news@columbia.edu Wed Nov 16 21:56:20 1994
  50040. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28048
  50041.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 16 Nov 1994 22:58:28 -0500
  50042. Received: by apakabar.cc.columbia.edu id AA08236
  50043.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 16 Nov 1994 22:58:26 -0500
  50044. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!hookup!news.moneng.mei.com!uwm.edu!msuinfo!harbinger.cc.monash.edu.au!daneel.rdt.monash.edu.au!ran
  50045. From: ran@daneel.rdt.monash.edu.au (Ralphe Neill)
  50046. Newsgroups: comp.protocols.kermit.misc
  50047. Subject: Re: C-Kermit 5A(190) Replaces 5A(189)
  50048. Date: 16 Nov 1994 21:56:20 GMT
  50049. Organization: Monash University
  50050. Lines: 16
  50051. Message-Id: <3adv64$k37@harbinger.cc.monash.edu.au>
  50052. References: <3ac9vg$r39@harbinger.cc.monash.edu.au> <jhurwitCzCzJ1.C7t@netcom.com> <3adsv3$j7o@harbinger.cc.monash.edu.au>
  50053. Nntp-Posting-Host: daneel.rdt.monash.edu.au
  50054. X-Nntp-Posting-User: ran
  50055. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  50056.  
  50057. >jhurwit@netcom.com (Jeffrey Hurwit) writes:
  50058.  
  50059. >>In article <3ac9vg$r39@harbinger.cc.monash.edu.au>, Ralphe Neill
  50060. >>(ran@daneel.rdt.monash.edu.au) wrote:
  50061.  
  50062. >>>Re "C-Kermit 5A(190) Replaces 5A(189)" in
  50063. >>>comp.protocols.kermit.announce - the makefile appears to be missing
  50064. >>>from the cku190.tar.gz archive.
  50065.  
  50066. >>    Huh???  I just grabbed that file a few days ago, and everything was
  50067. >>    in it, including the makefile.  Everything seemed to be fine--
  50068. >>    built a working Kermit with no problems.
  50069.  
  50070. I have re-FTP'd it and the archive is, indeed, complete. Don't ask me
  50071. what went wrong with the first copy because I have no idea! Apologies
  50072. if I have misled anybody ...
  50073.  
  50074. From news@columbia.edu Tue Nov 15 16:54:37 1994
  50075. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28499
  50076.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 16 Nov 1994 23:06:55 -0500
  50077. Received: by apakabar.cc.columbia.edu id AA08834
  50078.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 16 Nov 1994 23:06:52 -0500
  50079. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!hookup!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  50080. From: jrd@cc.usu.edu (Joe Doupnik)
  50081. Newsgroups: comp.protocols.kermit.misc
  50082. Subject: Re: MS-DOS Kermit 3.14/Beta-12 breaks Int 14h redirection
  50083. Message-Id: <1994Nov15.225437.32927@cc.usu.edu>
  50084. Date: 15 Nov 94 22:54:37 MDT
  50085. References: <lewart.784934636@rsm1.physics.uiuc.edu>
  50086. Organization: Utah State University
  50087. Lines: 19
  50088. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  50089.  
  50090. In article <lewart.784934636@rsm1.physics.uiuc.edu>, d-lewart@uiuc.edu (Daniel S. Lewart) writes:
  50091. > I have been using Int 14h redirection with MS-Kermit successfully
  50092. > up to and including 3.14/Beta-11.  However, Beta-12 doesn't connect.
  50093. > The redirectors I use are:
  50094. >     FTP Software TNGLASS.EXE v2.3
  50095. >     NCSA NET14.EXE
  50096. > Thank you,
  50097. > Daniel Lewart
  50098. > d-lewart@uiuc.edu
  50099. ---------------
  50100.     Are you really sure? I ask that because it's worked fine before
  50101. and I just ran a check with the latest FTP stack and it's TNGLASS, using
  50102. MSK beta-12, and it worked perfectly.
  50103.     Recall that with these Int 14h guys Kermit does not TCP/IP work
  50104. at all. The underlying TCP/IP stack connects and such. Be sure that the
  50105. active port selection for Kermit is BIOS1 and that you do NOT have
  50106. SET CARRIER ON (make sure it's OFF).
  50107.     Joe D.
  50108.  
  50109. From news@columbia.edu Wed Nov 16 22:43:00 1994
  50110. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02364
  50111.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 17 Nov 1994 06:47:13 -0500
  50112. Received: by apakabar.cc.columbia.edu id AA19419
  50113.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 17 Nov 1994 06:47:11 -0500
  50114. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!hookup!usc!howland.reston.ans.net!vixen.cso.uiuc.edu!rsm1.physics.uiuc.edu!lewart
  50115. From: d-lewart@uiuc.edu (Daniel S. Lewart)
  50116. Newsgroups: comp.protocols.kermit.misc
  50117. Subject: Re: MS-DOS Kermit 3.14/Beta-12 breaks Int 14h redirection
  50118. Date: 16 Nov 94 22:43:00 GMT
  50119. Organization: DSL Consulting
  50120. Lines: 31
  50121. Message-Id: <lewart.785025784@rsm1.physics.uiuc.edu>
  50122. References: <lewart.784934636@rsm1.physics.uiuc.edu> <1994Nov15.225437.32927@cc.usu.edu>
  50123. Reply-To: d-lewart@uiuc.edu (Daniel S. Lewart)
  50124. Nntp-Posting-Host: rsm1.physics.uiuc.edu
  50125. X-Newsreader: NN version 6.5.0 (NOV)
  50126. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  50127.  
  50128. jrd@cc.usu.edu (Joe Doupnik) writes:
  50129.  
  50130. >    Are you really sure? I ask that because it's worked fine before
  50131. > and I just ran a check with the latest FTP stack and it's TNGLASS, using
  50132. > MSK beta-12, and it worked perfectly.
  50133.  
  50134. Yes.  My redirectors are FTP 2.3 TNGLASS and NCSA 2.3.08 NET14.
  50135. MS-Kermit 3.13 and 3.14/Beta-N, where N <= 11, work with both of them.
  50136. 3.14/Beta-12 connects, but the screen stays blank with both of them.
  50137.  
  50138. >    Recall that with these Int 14h guys Kermit does not TCP/IP work
  50139. > at all. The underlying TCP/IP stack connects and such. Be sure that the
  50140. > active port selection for Kermit is BIOS1 and that you do NOT have
  50141. > SET CARRIER ON (make sure it's OFF).
  50142.  
  50143. I have kermit.exe (3.14/Beta-12), mskermit.ini (below is a stripped-
  50144. down version), and msvibm.exe (3.13) all in the current directory.
  50145. My commands with the FTP stack are as follows:
  50146.     tnglass myhost -e msvibm
  50147.     tnglass myhost -e kermit
  50148.  
  50149. The first works; the second fails.
  50150.  
  50151. Thank you,
  50152. Daniel Lewart
  50153. d-lewart@uiuc.edu
  50154. -------------------------------------------------------------------------------
  50155. set port bios1                          ; Int 14H redirection
  50156. if not < version 314 set carrier off    ; Default anyway
  50157. connect
  50158. -------------------------------------------------------------------------------
  50159.  
  50160. From news@columbia.edu Thu Nov 17 08:41:03 1994
  50161. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19260
  50162.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 17 Nov 1994 07:06:56 -0500
  50163. Received: by apakabar.cc.columbia.edu id AA20428
  50164.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 17 Nov 1994 07:06:54 -0500
  50165. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!howland.reston.ans.net!math.ohio-state.edu!jussieu.fr!univ-lyon1.fr!swidir.switch.ch!scsing.switch.ch!news.dfn.de!news.belwue.de!News.Uni-Marburg.DE!news.th-darmstadt.de!fauern!news.unibw-muenchen.de!p41bsmk
  50166. From: p41bsmk@kommsrv.rz.unibw-muenchen.de (Peter Schmolck)
  50167. Newsgroups: comp.protocols.kermit.misc
  50168. Subject: Kermit Script for Creatix Modem
  50169. Date: 17 Nov 1994 08:41:03 GMT
  50170. Organization: University of the Federal Armed Forces Munich
  50171. Lines: 8
  50172. Message-Id: <3af4uv$1ck@infosrv.rz.unibw-muenchen.de>
  50173. Nntp-Posting-Host: kommsrv.rz.unibw-muenchen.de
  50174. X-Newsreader: NN version 6.5.0 #5 (NOV)
  50175. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  50176.  
  50177. Has anybody made a script for the Creatix modem (Version SG144, maybe an 
  50178. earlier version might work as well)? This modem seems to be quite popular 
  50179. in Germany.
  50180. --
  50181. Peter Schmolck                                p41bsmk@rz.unibw-muenchen.de
  50182. Department of Education                       Phone :     +49-89-6004-2056
  50183. Univ. of the Federal Armed Forces Munich      Fax   :     +49-89-6004-3968
  50184. 85577 NEUBIBERG, GERMANY    
  50185.  
  50186. From news@columbia.edu Wed Nov 16 22:53:00 1994
  50187. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23836
  50188.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 17 Nov 1994 07:12:42 -0500
  50189. Received: by apakabar.cc.columbia.edu id AA20834
  50190.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 17 Nov 1994 07:12:40 -0500
  50191. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!hookup!news.moneng.mei.com!howland.reston.ans.net!vixen.cso.uiuc.edu!rsm1.physics.uiuc.edu!lewart
  50192. From: d-lewart@uiuc.edu (Daniel S. Lewart)
  50193. Newsgroups: comp.protocols.kermit.misc
  50194. Subject: SET PARITY command-line completion
  50195. Date: 16 Nov 94 22:53:00 GMT
  50196. Organization: DSL Consulting
  50197. Lines: 16
  50198. Message-Id: <lewart.785026428@rsm1.physics.uiuc.edu>
  50199. Reply-To: d-lewart@uiuc.edu (Daniel S. Lewart)
  50200. Nntp-Posting-Host: rsm1.physics.uiuc.edu
  50201. X-Newsreader: NN version 6.5.0 (NOV)
  50202. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  50203.  
  50204. I am using MS-Kermit 3.14/Beta-12, but this command-line completion bug
  50205. has been around for a while.  The following add extra stuff on the end:
  50206.     set parity e<Esc>
  50207.     set parity m<Esc>
  50208.     set parity n<Esc>
  50209.     set parity o<Esc>
  50210.     set parity s<Esc>
  50211. For example, "set parity n<Esc>" gives:
  50212.     set parity none (8-bit data)  _
  50213. This should be:
  50214.     set parity none_
  50215. where the underscore is the cursor.
  50216.  
  50217. Thank you,
  50218. Daniel Lewart
  50219. d-lewart@uiuc.edu
  50220.  
  50221. From news@columbia.edu Thu Nov 17 09:42:10 1994
  50222. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18004
  50223.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 17 Nov 1994 07:50:46 -0500
  50224. Received: by apakabar.cc.columbia.edu id AA22995
  50225.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 17 Nov 1994 07:50:45 -0500
  50226. Path: news.columbia.edu!panix!bloom-beacon.mit.edu!usc!math.ohio-state.edu!jussieu.fr!univ-lyon1.fr!swidir.switch.ch!scsing.switch.ch!news.dfn.de!news.belwue.de!News.Uni-Marburg.DE!news.th-darmstadt.de!fauern!news.unibw-muenchen.de!p41bsmk
  50227. From: p41bsmk@kommsrv.rz.unibw-muenchen.de (Peter Schmolck)
  50228. Newsgroups: comp.protocols.kermit.misc
  50229. Subject: Re: Backspace
  50230. Date: 17 Nov 1994 09:42:10 GMT
  50231. Organization: University of the Federal Armed Forces Munich
  50232. Lines: 24
  50233. Message-Id: <3af8hi$1r0@infosrv.rz.unibw-muenchen.de>
  50234. References: <3abv77$1cr1@saturn.caps.maine.edu>
  50235. Nntp-Posting-Host: kommsrv.rz.unibw-muenchen.de
  50236. X-Newsreader: NN version 6.5.0 #5 (NOV)
  50237. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  50238.  
  50239. mtdesert@saturn.caps.maine.edu (MDIHS) writes:
  50240.  
  50241. >Now how do I get backspace key on my DOS machine to actually backpace 
  50242. >instead of printing ^D.  I'm on PC, MS-Kermit 3.14/Beta 12, VT320 
  50243. >emulation.  I've never been able to get backspace to work with previous 
  50244. >Kermits either, though I'm sure it's a very simple thing to do...
  50245. >It gets old ^Uing all of my command line mistakes.
  50246. >Thanks for any help.
  50247. >-mdi
  50248.  
  50249. The MSKERMIT.INI normally re-defines the backspace key (_bs) as \127, not as 
  50250. \4 = ^D as in your case. You can easily experiment with key definitions by 
  50251. entering "sh key" and "set key" from the MS-Kermit prompt. Maybe there 
  50252. are good reasons for your ^D configuration of the backspace key. If your 
  50253. remote computer runs UNIX, you can simply enter
  50254.   stty erase KEYSTROKE
  50255. with KEYSTROKE meaning, press your backspace key, and whatever its key 
  50256. definition, it will then work correctly at the command line (without 
  50257. changing the key's function in application programs).
  50258. --
  50259. Peter Schmolck                                p41bsmk@rz.unibw-muenchen.de
  50260. Department of Education                       Phone :     +49-89-6004-2056
  50261. Univ. of the Federal Armed Forces Munich      Fax   :     +49-89-6004-3968
  50262. 85577 NEUBIBERG, GERMANY    
  50263.  
  50264. From news@columbia.edu Thu Nov 17 09:12:18 1994
  50265. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18059
  50266.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 17 Nov 1994 07:53:04 -0500
  50267. Received: by apakabar.cc.columbia.edu id AA23186
  50268.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 17 Nov 1994 07:53:03 -0500
  50269. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!math.ohio-state.edu!jussieu.fr!univ-lyon1.fr!swidir.switch.ch!scsing.switch.ch!news.dfn.de!news.belwue.de!News.Uni-Marburg.DE!news.th-darmstadt.de!fauern!news.unibw-muenchen.de!p41bsmk
  50270. From: p41bsmk@kommsrv.rz.unibw-muenchen.de (Peter Schmolck)
  50271. Newsgroups: comp.protocols.kermit.misc
  50272. Subject: NCSA telnet vs Kermit (Was: Kermit Scripts)
  50273. Date: 17 Nov 1994 09:12:18 GMT
  50274. Organization: University of the Federal Armed Forces Munich
  50275. Lines: 37
  50276. Message-Id: <3af6pi$1iq@infosrv.rz.unibw-muenchen.de>
  50277. References: <3a5m7l$a4j@vixen.cso.uiuc.edu> <3a66uq$k9c@apakabar.cc.columbia.edu>
  50278. Nntp-Posting-Host: kommsrv.rz.unibw-muenchen.de
  50279. X-Newsreader: NN version 6.5.0 #5 (NOV)
  50280. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  50281.  
  50282. jaltman@watsun.cc.columbia.edu (Jeffrey Altman) writes:
  50283.  
  50284.  
  50285. >Question:  Could someone please explain to me what it is that NCSA Telnet 
  50286. >provides that MS-DOS Kermit and/or C-Kermit do not provide?
  50287.  
  50288. >Much appreciated.
  50289.  
  50290. I'm interested in that question, too, since I'm going to change from 
  50291. serial-to-terminal-server to full TCP/IP connection shortly. At the 
  50292. moment I have nearly no practice with Kermit's telnet but some practice 
  50293. with NCSA telnet. 
  50294.  
  50295. The advantages of NCSA telnet I am aware of, are:
  50296.  
  50297. * Copy/Paste function implemented; in Kermit I need Windows to do that.
  50298. * ftp: This does not necessitate to start a server program at the remote 
  50299.        computer (if that is a PC it just needs to be in a NCSA telnet 
  50300.        session with ftp allowed). One cannot do anonymous ftp from the PC 
  50301.        with Kermit (right?)
  50302.  
  50303. There are *many* advantages of Kermit, of course, like superb terminal 
  50304. emulations, automatic character-translations, etc. And, compared to ftp, 
  50305. Kermit filetransfer has also advantages I specifically appreciate: It 
  50306. can transfer the time stamps, and with "file collision update" (new for 
  50307. MS-Kermit in Version 3.14) I can easily update backup copies of 
  50308. multiple files on different computers.
  50309.  
  50310. Further comments?
  50311.  
  50312. Regards,
  50313. Peter
  50314. --
  50315. Peter Schmolck                                p41bsmk@rz.unibw-muenchen.de
  50316. Department of Education                       Phone :     +49-89-6004-2056
  50317. Univ. of the Federal Armed Forces Munich      Fax   :     +49-89-6004-3968
  50318. 85577 NEUBIBERG, GERMANY    
  50319.  
  50320. From news@columbia.edu Thu Nov 17 00:54:16 1994
  50321. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25045
  50322.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 17 Nov 1994 09:57:53 -0500
  50323. Received: by apakabar.cc.columbia.edu id AA02650
  50324.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 17 Nov 1994 09:57:51 -0500
  50325. Path: news.columbia.edu!panix!zip.eecs.umich.edu!newsxfer.itd.umich.edu!gatech!psuvax1!uwm.edu!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  50326. From: jrd@cc.usu.edu (Joe Doupnik)
  50327. Newsgroups: comp.protocols.kermit.misc
  50328. Subject: Re: MSTIBM.EXE and KERMIT.PIF
  50329. Message-Id: <1994Nov17.065416.33073@cc.usu.edu>
  50330. Date: 17 Nov 94 06:54:16 MDT
  50331. References: <Pine.A32.3.90a.941117093309.35094B-100000@arad.bgu.ac.il>
  50332. Organization: Utah State University
  50333. Lines: 17
  50334. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  50335.  
  50336. In article <Pine.A32.3.90a.941117093309.35094B-100000@arad.bgu.ac.il>, chermesh@bgumail.bgu.ac.il (Ran Chermesh) writes:
  50337. > Hi,
  50338. >     I tried to run kermit ver. 3.14 thru my win3.1 menu using the
  50339. > kermit.pif from the last release. Well, I failed. When I opened the pif,
  50340. > I saw that it was labelled as a ver. 3.13 pif and that it called a 
  50341. > MSTIBM.EXE file.
  50342. >     My qestions:
  50343. > 1. Was there a change in pif specification between ver. 3.13 and ver. 3.14?
  50344. > 2. What is this MSTIBM.EXE? Should I replace it with KERMIT.EXE
  50345. ------------
  50346.     First, I strongly suggest you go back to MSK v3.13 until v3.14
  50347. is released. The current beta period is for shaking out bugs, where
  50348. changes still occur, and the final bundle of distribution files is still
  50349. fluid. MSK 3.14 has not yet reached release (but will very soon).
  50350.     Second, the filename you reference is what Windows wants to run
  50351. when the icon is clicked. Choose a filename that's appropriate.
  50352.     Joe D.
  50353.  
  50354. From news@columbia.edu Thu Nov 17 15:13:54 1994
  50355. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26751
  50356.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 17 Nov 1994 10:14:04 -0500
  50357. Received: by apakabar.cc.columbia.edu id AA04066
  50358.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 17 Nov 1994 10:14:01 -0500
  50359. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  50360. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  50361. Newsgroups: comp.protocols.kermit.misc
  50362. Subject: Re: NCSA telnet vs Kermit (Was: Kermit Scripts)
  50363. Date: 17 Nov 1994 15:13:54 GMT
  50364. Organization: Columbia University
  50365. Lines: 46
  50366. Message-Id: <3afrvi$3ur@apakabar.cc.columbia.edu>
  50367. References: <3a5m7l$a4j@vixen.cso.uiuc.edu> <3a66uq$k9c@apakabar.cc.columbia.edu> <3af6pi$1iq@infosrv.rz.unibw-muenchen.de>
  50368. Nntp-Posting-Host: watsun.cc.columbia.edu
  50369. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  50370.  
  50371. In article <3af6pi$1iq@infosrv.rz.unibw-muenchen.de>,
  50372. Peter Schmolck <p41bsmk@kommsrv.rz.unibw-muenchen.de> wrote:
  50373. >jaltman@watsun.cc.columbia.edu (Jeffrey Altman) writes:
  50374. >
  50375. >
  50376. >>Question:  Could someone please explain to me what it is that NCSA Telnet 
  50377. >>provides that MS-DOS Kermit and/or C-Kermit do not provide?
  50378.  
  50379. >I'm interested in that question, too, since I'm going to change from 
  50380. >serial-to-terminal-server to full TCP/IP connection shortly. At the 
  50381. >moment I have nearly no practice with Kermit's telnet but some practice 
  50382. >with NCSA telnet. 
  50383. >
  50384. >The advantages of NCSA telnet I am aware of, are:
  50385. >
  50386. >* Copy/Paste function implemented; in Kermit I need Windows to do that.
  50387.  
  50388. Understood.  This functionality is available in C-Kermit for OS/2 but not 
  50389. MS-DOS Kermit.
  50390.  
  50391. >* ftp: This does not necessitate to start a server program at the remote 
  50392. >       computer (if that is a PC it just needs to be in a NCSA telnet 
  50393. >       session with ftp allowed). One cannot do anonymous ftp from the PC 
  50394. >       with Kermit (right?)
  50395.  
  50396. Well, of course a server is required.  You just don't have to start it.  
  50397. But if the server daemon (ftpd) is not running you won't be able to perform 
  50398. any file transfers at all.  But of course you can't perform an anonymous 
  50399. ftp with Kermit.  Most tcp/ip stacks come with an ftp program though.
  50400.  
  50401. However, for remote transfers from the PC, Kermit can always be placed in
  50402. Server mode.
  50403.  
  50404. >There are *many* advantages of Kermit, of course, like superb terminal 
  50405. >emulations, automatic character-translations, etc. And, compared to ftp, 
  50406. >Kermit filetransfer has also advantages I specifically appreciate: It 
  50407. >can transfer the time stamps, and with "file collision update" (new for 
  50408. >MS-Kermit in Version 3.14) I can easily update backup copies of 
  50409. >multiple files on different computers.
  50410.  
  50411. Correct.
  50412.  
  50413. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  50414. "C-Kermit: available on more platforms than any other communications software."
  50415. "Kermit FTP: sending files whenever and wherever they are needed."
  50416. *NEW* OS/2 version 5A(190): ftp kermit.columbia.edu /kermit/archives/ckoker.zip 
  50417.  
  50418. From news@columbia.edu Thu Nov 17 07:38:50 1994
  50419. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01451
  50420.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 18 Nov 1994 04:35:14 -0500
  50421. Received: by apakabar.cc.columbia.edu id AA13248
  50422.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 18 Nov 1994 04:35:12 -0500
  50423. Newsgroups: comp.protocols.kermit.misc
  50424. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!wang!news
  50425. From: chermesh@bgumail.bgu.ac.il (Ran Chermesh)
  50426. Subject: Kermit 3.14, DOSLYNX and dialup
  50427. Organization: Technion, Israel Institute of Technology
  50428. Date: Thu, 17 Nov 1994 07:38:50 GMT
  50429. Message-Id: <Pine.A32.3.90a.941117093739.35094C-100000@arad.bgu.ac.il>
  50430. Sender: news@wang.com
  50431. Lines: 11
  50432. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  50433.  
  50434. Hi,
  50435.     Is it possible to run doslynx through kermit from a dialup connection?
  50436. Appreciate a reply.
  50437.  
  50438.             Ran
  50439.  
  50440. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  50441. ()   Ran Chermesh   Behavioral Sciences Dept.   Ben-Gurion University      ()
  50442. ()==)         Beer-Sheva                     Israel                     (==()
  50443. () URL: gopher://gopher.bgu.ac.il:70/00/Ben/res/hum/beh/CHERMESH%2c%20RAN  ()
  50444.  
  50445.  
  50446. From news@columbia.edu Thu Nov 17 07:37:16 1994
  50447. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01456
  50448.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 18 Nov 1994 04:35:21 -0500
  50449. Received: by apakabar.cc.columbia.edu id AA13256
  50450.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 18 Nov 1994 04:35:20 -0500
  50451. Newsgroups: comp.protocols.kermit.misc
  50452. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!wang!news
  50453. From: chermesh@bgumail.bgu.ac.il (Ran Chermesh)
  50454. Subject: MSTIBM.EXE and KERMIT.PIF
  50455. Organization: Technion, Israel Institute of Technology
  50456. Date: Thu, 17 Nov 1994 07:37:16 GMT
  50457. Message-Id: <Pine.A32.3.90a.941117093309.35094B-100000@arad.bgu.ac.il>
  50458. Sender: news@wang.com
  50459. Lines: 16
  50460. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  50461.  
  50462. Hi,
  50463.     I tried to run kermit ver. 3.14 thru my win3.1 menu using the
  50464. kermit.pif from the last release. Well, I failed. When I opened the pif,
  50465. I saw that it was labelled as a ver. 3.13 pif and that it called a 
  50466. MSTIBM.EXE file.
  50467.     My qestions:
  50468. 1. Was there a change in pif specification between ver. 3.13 and ver. 3.14?
  50469. 2. What is this MSTIBM.EXE? Should I replace it with KERMIT.EXE
  50470.  
  50471.             Ran
  50472.  
  50473. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  50474. ()   Ran Chermesh   Behavioral Sciences Dept.   Ben-Gurion University      ()
  50475. ()==)         Beer-Sheva                     Israel                     (==()
  50476. () URL: gopher://gopher.bgu.ac.il:70/00/Ben/res/hum/beh/CHERMESH%2c%20RAN  ()
  50477.  
  50478.  
  50479. From news@columbia.edu Thu Nov 17 20:07:19 1994
  50480. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03718
  50481.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 18 Nov 1994 05:50:54 -0500
  50482. Received: by apakabar.cc.columbia.edu id AA16946
  50483.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 18 Nov 1994 05:50:53 -0500
  50484. Newsgroups: comp.protocols.kermit.misc
  50485. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!news.alpha.net!uwm.edu!cs.utexas.edu!swrinde!pipex!uunet!hearst.acc.Virginia.EDU!murdoch!fulton.seas.Virginia.EDU!esh6h
  50486. From: esh6h@fulton.seas.Virginia.EDU (Erik Hatcher)
  50487. Subject: VMS C-Kermit return status
  50488. Message-Id: <CzFH87.38q@murdoch.acc.Virginia.EDU>
  50489. Sender: usenet@murdoch.acc.Virginia.EDU
  50490. Organization: University of Virginia
  50491. Date: Thu, 17 Nov 1994 20:07:19 GMT
  50492. Lines: 15
  50493. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  50494.  
  50495. After checking $status after several C-Kermit sessions I realized
  50496. that the exit status ends up in ckermit_status.
  50497.  
  50498. I'm running 5A(190) BETA.17 for OpenVMS AXP (and also a similar
  50499. version on a VAX).
  50500.  
  50501. Is this the standard symbol for the result?  I couldn't find reference
  50502. to ckermit_status in the Using C-Kermit book anywhere.
  50503.  
  50504.     Erik
  50505. --
  50506. Erik Hatcher                           + "But every now and then we just have
  50507. http://fulton.seas.virginia.edu/~esh6h |  to howl with the wolves." 
  50508.                                        |        - Werner Heisenberg
  50509. ---------------------------------------+-------------------------------------
  50510.  
  50511. From news@columbia.edu Thu Nov 17 13:03:48 1994
  50512. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13393
  50513.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 18 Nov 1994 10:20:26 -0500
  50514. Received: by apakabar.cc.columbia.edu id AA03836
  50515.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 18 Nov 1994 10:20:25 -0500
  50516. Newsgroups: comp.protocols.kermit.misc
  50517. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!eff!cs.umd.edu!info.usuhs.mil!apgea.army.mil.!jeeisenm
  50518. From: jeeisenm@apgea.army.mil (Joseph E. Eisenmeier <jeeisenm@apgea.army.mil>)
  50519. Subject: help w\ kermit send binary
  50520. Message-Id: <1994Nov17.130348.1694@apgea.army.mil>
  50521. Sender: news@apgea.army.mil (0000-news(0000))
  50522. Nntp-Posting-Host: cbda7.apgea.army.mil
  50523. Organization: apgea
  50524. Date: Thu, 17 Nov 94 13:03:48 GMT
  50525. Lines: 13
  50526. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  50527.  
  50528. Can anyone give me a clue about sending a *.zip file from unix host to pc?
  50529. I type kermit, at prompt send filename, shell to dos prompt and startup
  50530. kermit on pc. Binary 7 bit transfer is set in .kermrc and verified by
  50531. show command. Host uses 7 bit protocol so I'm forced to use kermit (if itwas
  50532.  8 bit I'd have my choice of software).
  50533.  
  50534. anyway receive works fine (from pc to host), but send gets aborted
  50535. too quick for me to see the error message. 
  50536.  
  50537. email or post would be appreciated. 
  50538.  
  50539. Joe
  50540.  
  50541.  
  50542. From news@columbia.edu Fri Nov 18 08:16:29 1994
  50543. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18841
  50544.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 18 Nov 1994 11:35:07 -0500
  50545. Received: by apakabar.cc.columbia.edu id AA10447
  50546.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 18 Nov 1994 11:35:04 -0500
  50547. Path: news.columbia.edu!sol.ctr.columbia.edu!spool.mu.edu!darwin.sura.net!mother.usf.edu!soleil!oconnor
  50548. From: Frank  O'Connor <oconnor@acomp.usf.edu>
  50549. Newsgroups: comp.protocols.kermit.misc,alt.winsock
  50550. Subject: Re: winsock/pkt dvr hack possible?
  50551. Date: Fri, 18 Nov 1994 03:16:29 -0500
  50552. Organization: University of South Florida
  50553. Lines: 18
  50554. Message-Id: <Pine.SUN.3.91.941118031532.9000A-100000@soleil>
  50555. References: <3a67j8$j39@Mercury.mcs.com>
  50556. Nntp-Posting-Host: soleil.acomp.usf.edu
  50557. Mime-Version: 1.0
  50558. Content-Type: TEXT/PLAIN; charset=US-ASCII
  50559. X-Sender: oconnor@soleil
  50560. In-Reply-To: <3a67j8$j39@Mercury.mcs.com> 
  50561. Xref: news.columbia.edu comp.protocols.kermit.misc:1116 alt.winsock:22133
  50562. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  50563.  
  50564. I'm looking for the same thing... 
  50565. But right now I'd dettle for the NDIS/PktDrvr shim. Do you know where I 
  50566. can find it? 
  50567. Thanks!
  50568.  
  50569. On 13 Nov 1994, Leslie Mikesell wrote:
  50570.  
  50571. > Since a "real" windows kermit seems unlikely in the near future, I'd
  50572. > like to know if it would be possible to use some kind of shim that
  50573. > looks like a packet driver in a dos session but actually uses the
  50574. > winsock interface.  I know you can do this if you have an NDIS driver
  50575. > below the winsock layer, but I'd like something that would work the
  50576. > same way over the dial-up versions of winsock.
  50577. > Les Mikesell
  50578. >   les@mcs.com
  50579.  
  50580. From news@columbia.edu Fri Nov 18 19:13:52 1994
  50581. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29691
  50582.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 18 Nov 1994 14:13:57 -0500
  50583. Received: by apakabar.cc.columbia.edu id AA26201
  50584.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 18 Nov 1994 14:13:56 -0500
  50585. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  50586. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  50587. Newsgroups: comp.protocols.kermit.misc,alt.winsock
  50588. Subject: Re: winsock/pkt dvr hack possible?
  50589. Date: 18 Nov 1994 19:13:52 GMT
  50590. Organization: Columbia University
  50591. Lines: 23
  50592. Message-Id: <3aiudg$pil@apakabar.cc.columbia.edu>
  50593. References: <3a67j8$j39@Mercury.mcs.com> <Pine.SUN.3.91.941118031532.9000A-100000@soleil>
  50594. Nntp-Posting-Host: watsun.cc.columbia.edu
  50595. Xref: news.columbia.edu comp.protocols.kermit.misc:1118 alt.winsock:22152
  50596. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  50597.  
  50598. >On 13 Nov 1994, Leslie Mikesell wrote:
  50599. >
  50600. >> Since a "real" windows kermit seems unlikely in the near future, I'd
  50601. >> like to know if it would be possible to use some kind of shim that
  50602. >> looks like a packet driver in a dos session but actually uses the
  50603. >> winsock interface.  I know you can do this if you have an NDIS driver
  50604. >> below the winsock layer, but I'd like something that would work the
  50605. >> same way over the dial-up versions of winsock.
  50606. >> 
  50607. >> Les Mikesell
  50608. >>   les@mcs.com
  50609.  
  50610. A packet driver on top of winsock makes no sense since winsock is not 
  50611. protocol independent.  The best you could possibly hope for would be a 
  50612. Telnet redirector for Windows DOS Sessions which communicates through 
  50613. WinSock.
  50614.  
  50615.  
  50616.  
  50617. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  50618. "C-Kermit: available on more platforms than any other communications software."
  50619. "Kermit FTP: sending files whenever and wherever they are needed."
  50620. *NEW* OS/2 version 5A(190): ftp kermit.columbia.edu /kermit/archives/ckoker.zip 
  50621.  
  50622. From news@columbia.edu Fri Nov 18 19:10:29 1994
  50623. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00511
  50624.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 18 Nov 1994 14:23:50 -0500
  50625. Received: by apakabar.cc.columbia.edu id AA25904
  50626.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 18 Nov 1994 14:10:32 -0500
  50627. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  50628. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  50629. Newsgroups: comp.protocols.kermit.misc
  50630. Subject: Re: help w\ kermit send binary
  50631. Date: 18 Nov 1994 19:10:29 GMT
  50632. Organization: Columbia University
  50633. Lines: 25
  50634. Message-Id: <3aiu75$p9c@apakabar.cc.columbia.edu>
  50635. References: <1994Nov17.130348.1694@apgea.army.mil>
  50636. Nntp-Posting-Host: watsun.cc.columbia.edu
  50637. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  50638.  
  50639. In article <1994Nov17.130348.1694@apgea.army.mil>,
  50640. Joseph E. Eisenmeier <jeeisenm> <jeeisenm> wrote:
  50641. >Can anyone give me a clue about sending a *.zip file from unix host to pc?
  50642. >I type kermit, at prompt send filename, shell to dos prompt and startup
  50643. >kermit on pc. Binary 7 bit transfer is set in .kermrc and verified by
  50644. >show command. Host uses 7 bit protocol so I'm forced to use kermit (if itwas
  50645. > 8 bit I'd have my choice of software).
  50646. >
  50647. >anyway receive works fine (from pc to host), but send gets aborted
  50648. >too quick for me to see the error message. 
  50649. >
  50650.  
  50651. What software are you using on the PC side of the connection?
  50652.  
  50653. If you are not using MS-DOS Kermit, I would suggest that you do.  Many other 
  50654. software packages that claim Kermit protocol support are very selective 
  50655. about which parts of the protocol definition they implement.
  50656.  
  50657. We need more info to help.
  50658.  
  50659.  
  50660. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  50661. "C-Kermit: available on more platforms than any other communications software."
  50662. "Kermit FTP: sending files whenever and wherever they are needed."
  50663. *NEW* OS/2 version 5A(190): ftp kermit.columbia.edu /kermit/archives/ckoker.zip 
  50664.  
  50665. From news@columbia.edu Fri Nov 18 01:12:51 1994
  50666. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00799
  50667.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 18 Nov 1994 14:28:28 -0500
  50668. Received: by apakabar.cc.columbia.edu id AA28006
  50669.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 18 Nov 1994 14:28:26 -0500
  50670. Newsgroups: comp.protocols.kermit.misc,comp.protocols.misc
  50671. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!news.alpha.net!uwm.edu!math.ohio-state.edu!usc!news.service.uci.edu!ttinews!mosspc.TTI.COM!moss
  50672. From: moss@tti.com (Les Moss)
  50673. Subject: Re: source for Zmodem specs?
  50674. Message-Id: <moss.3.00118076@tti.com>
  50675. Lines: 17
  50676. Sender: usenet@ttinews.tti.com (Usenet Admin)
  50677. Nntp-Posting-Host: mosspc.tti.com
  50678. Organization: TTI
  50679. X-Newsreader: Trumpet for Windows [Version 1.0 Rev B final beta #1]
  50680. References:  <CzF5so.9qK@aplcenmp.apl.jhu.edu>
  50681. Date: Fri, 18 Nov 1994 01:12:51 GMT
  50682. Xref: news.columbia.edu comp.protocols.kermit.misc:1119 comp.protocols.misc:3839
  50683. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  50684.  
  50685. In article <CzF5so.9qK@aplcenmp.apl.jhu.edu> ennisj@aplcenmp.apl.jhu.edu (Jay Ennis) writes:
  50686.  
  50687. >Does anyone know where I might find a specification for Zmodem?  Is it even
  50688. >written down?
  50689.  
  50690. I don't believe there is one (Nothing like the Kermit Protocol Manual, for 
  50691. example). Most people implement it by porting the public domain code by 
  50692. Forsberg available on many FTP sites.  You will find some written stuff by 
  50693. Forsberg at those same sites, but it is not complete, you still need to read 
  50694. the code.  Thats all I found for my implementation (written from scratch for 
  50695. non-C environment).
  50696.  
  50697. Tim Kientzle (kientzle@netcom.com) is currently writing a book which should
  50698. be a complete ZModem spec.  Hopefully, that will be available soon.  (I 
  50699. reviewed an early version of his spec and it sure would have helped me if I 
  50700. had had it in the beginning of my implementation.)
  50701.  
  50702.  
  50703. From news@columbia.edu Fri Nov 18 07:18:53 1994
  50704. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23965
  50705.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 18 Nov 1994 18:39:05 -0500
  50706. Received: by apakabar.cc.columbia.edu id AA04778
  50707.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 18 Nov 1994 18:39:04 -0500
  50708. Newsgroups: comp.protocols.kermit.misc
  50709. Path: news.columbia.edu!sol.ctr.columbia.edu!caen!hookup!olivea!news.hal.COM!decwrl!tribune.usask.ca!quartz.ucs.ualberta.ca!news.ucalgary.ca!lkadams
  50710. From: lkadams@acs.ucalgary.ca (Larson Keith Adams)
  50711. Subject: Help with flow rate
  50712. Message-Id: <Nov18.071853.19856@acs.ucalgary.ca>
  50713. Date: Fri, 18 Nov 1994 07:18:53 GMT
  50714. Organization: The University of Calgary, Alberta, Canada
  50715. X-Newsreader: TIN [version 1.2 PL2]
  50716. Lines: 10
  50717. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  50718.  
  50719. I'm having real problems.  Transferring via a 14400, I cannot get
  50720. above 300cps.  Is the problem at the host (packet length set at
  50721. 1000) or on my home system (WinComm Pro...doesn't seem to be much
  50722. in the way of settings).  If any Kermit wizards out there could
  50723. mail me and help me speed this thing up, I would be grateful.
  50724.  
  50725. Keith
  50726. lkadams@engg.ucalgary.ca
  50727.  
  50728. ps...our system administrator is no help at all
  50729.  
  50730. From news@columbia.edu Fri Nov 18 04:14:17 1994
  50731. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20539
  50732.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 19 Nov 1994 06:53:56 -0500
  50733. Received: by apakabar.cc.columbia.edu id AA15767
  50734.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 19 Nov 1994 06:53:54 -0500
  50735. Path: news.columbia.edu!news.media.mit.edu!bloom-beacon.mit.edu!uhog.mit.edu!news.mathworks.com!udel!gatech!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  50736. From: jrd@cc.usu.edu (Joe Doupnik)
  50737. Newsgroups: comp.protocols.kermit.misc,alt.winsock
  50738. Subject: Re: winsock/pkt dvr hack possible?
  50739. Message-Id: <1994Nov18.101417.33213@cc.usu.edu>
  50740. Date: 18 Nov 94 10:14:17 MDT
  50741. References: <3a67j8$j39@Mercury.mcs.com> <Pine.SUN.3.91.941118031532.9000A-100000@soleil>
  50742. Organization: Utah State University
  50743. Lines: 21
  50744. Xref: news.columbia.edu comp.protocols.kermit.misc:1121 alt.winsock:22228
  50745. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  50746.  
  50747. In article <Pine.SUN.3.91.941118031532.9000A-100000@soleil>, Frank  O'Connor <oconnor@acomp.usf.edu> writes:
  50748. > I'm looking for the same thing... 
  50749. > But right now I'd dettle for the NDIS/PktDrvr shim. Do you know where I 
  50750. > can find it? 
  50751. > Thanks!
  50752. > On 13 Nov 1994, Leslie Mikesell wrote:
  50753. >> Since a "real" windows kermit seems unlikely in the near future, I'd
  50754. >> like to know if it would be possible to use some kind of shim that
  50755. >> looks like a packet driver in a dos session but actually uses the
  50756. >> winsock interface.  I know you can do this if you have an NDIS driver
  50757. >> below the winsock layer, but I'd like something that would work the
  50758. >> same way over the dial-up versions of winsock.
  50759. >> 
  50760. >> Les Mikesell
  50761. >>   les@mcs.com
  50762. ------------
  50763.     The shim comes from me, Les. Dis_pkt9.zip in directory drivers
  50764. on netlab2.usu.edu, and this will also be in the MSK 3.14 distribution.
  50765.     Joe D.
  50766.  
  50767. From news@columbia.edu Fri Nov 18 03:19:31 1994
  50768. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26117
  50769.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 19 Nov 1994 07:00:54 -0500
  50770. Received: by apakabar.cc.columbia.edu id AA16062
  50771.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 19 Nov 1994 07:00:52 -0500
  50772. Path: news.columbia.edu!sol.ctr.columbia.edu!caen!usenet.cis.ufl.edu!usenet.eel.ufl.edu!news.mathworks.com!udel!gatech!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!garym
  50773. From: garym@cc.usu.edu
  50774. Newsgroups: comp.protocols.kermit.misc
  50775. Subject: Kermit user's manual or FAQ???
  50776. Message-Id: <1994Nov18.091931.33200@cc.usu.edu>
  50777. Date: 18 Nov 94 09:19:31 MDT
  50778. Organization: Utah State University
  50779. Lines: 5
  50780. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  50781.  
  50782. Anyone know where I could get a user's manual or possibly a FAQ for Kermit?
  50783. -- 
  50784. Gary S. Mortensen                                          GARYM@CC.USU.EDU
  50785. "You can't achieve the impossible without attempting the absurd." - Unknown
  50786. "If you know what you're doing, you're not learning anything." - Unknown
  50787.  
  50788. From news@columbia.edu Sat Nov 19 12:20:54 1994
  50789. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21936
  50790.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 19 Nov 1994 07:30:24 -0500
  50791. Received: by apakabar.cc.columbia.edu id AA17387
  50792.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 19 Nov 1994 07:30:22 -0500
  50793. Path: news.columbia.edu!sol.ctr.columbia.edu!newsxfer.itd.umich.edu!gatech!swrinde!pipex!sunsite.doc.ic.ac.uk!qmw!vaxb.mdx.ac.uk!ANDREW27
  50794. From: andrew27@vaxb.mdx.ac.uk
  50795. Newsgroups: comp.protocols.kermit.misc
  50796. Subject: DEC VAX to home terminal problem
  50797. Date: 19 Nov 1994 12:20:54 GMT
  50798. Organization: Middlesex University, London, England
  50799. Lines: 11
  50800. Message-Id: <3akqj6$r8h@beta.qmw.ac.uk>
  50801. Reply-To: andrew27@vaxb.mdx.ac.uk
  50802. Nntp-Posting-Host: vaxb.mdx.ac.uk
  50803. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  50804.  
  50805. Can anyone help?
  50806.  
  50807. I am trying to download a file from a DEC VAX using KERMIT-32
  50808. to my home Macintosh using the Kermit protocol supplied with
  50809. my Comms software, VICOM Connect. I can't seem to get the two
  50810. to connect. The direction of a FAQ for this and other elementary
  50811. problems would be greatly appreciatted.
  50812.  
  50813. Any replies or E-Mail on this subject gratefully recieved.
  50814.  
  50815. Thanks, Andrew
  50816.  
  50817. From news@columbia.edu Fri Nov 18 18:02:48 1994
  50818. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07924
  50819.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 19 Nov 1994 10:26:13 -0500
  50820. Received: by apakabar.cc.columbia.edu id AA26899
  50821.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 19 Nov 1994 10:26:11 -0500
  50822. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!news.alpha.net!pacifier!pacifier!not-for-mail
  50823. From: mikef@pacifier.com (Mike Freeman)
  50824. Newsgroups: comp.protocols.kermit.misc
  50825. Subject: Re: Help with binary downloads.
  50826. Date: 18 Nov 1994 10:02:48 -0800
  50827. Organization: none
  50828. Lines: 28
  50829. Message-Id: <3aiq88$bdc@pacifier.com>
  50830. References: <1994Nov17.125037@clstac>
  50831. Nntp-Posting-Host: pacifier.com
  50832. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  50833.  
  50834. In article <1994Nov17.125037@clstac>,
  50835. Kevin Anthony Stanchfield <kastanchfiel@csupomona.edu> wrote:
  50836. >
  50837. >I use MS-Kermit to call up my Internet account from my house through
  50838. >a CSUNet local dialup to Cal Poly Pomona, Ca.  The system at Cal Poly 
  50839. >is a VAX.  I am able to "GET" text files, but not binary files.  Even 
  50840. >after I "SET FILE TYPE BINARY" on _both_ ends.  My terminal is set to 
  50841. >9600 7n1 VT102, I'm using MS-Kermit 3.14 with a USR 14.4 FAX/Modem on 
  50842. >port 2.  Can someone help?
  50843. >
  50844. >Thank You.
  50845. >
  50846. Since your terminal is set to 7N1, I assume that you do not have a full
  50847. 8-bit path to your host.  I would surmise that neither of your Kermits
  50848. knows this.  Have you tried doing a
  50849.  
  50850. SET PARITY SPACE
  50851.  
  50852. on both ends before doing the binary transfers?  This has the effect
  50853. of telling the Kermits that the high-bit cannot be used for data and
  50854. that "8th-bit-quoting" must be used.  Hence, you'll get 8-bit data thru
  50855. your 7-bit data path.
  50856.  
  50857. Good luck!
  50858. -- 
  50859. Mike Freeman            |       Internet: mikef@pacifier.com
  50860. GEnie: M.FREEMAN11      |       Amateur Radio Callsign: K7UIJ
  50861. ... "Innovation is hard to schedule." -- Dan Fylstra
  50862.  
  50863. From news@columbia.edu Fri Nov 18 05:02:38 1994
  50864. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11285
  50865.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 19 Nov 1994 11:34:49 -0500
  50866. Received: by apakabar.cc.columbia.edu id AA01470
  50867.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 19 Nov 1994 11:34:47 -0500
  50868. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!udel!gatech!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  50869. From: jrd@cc.usu.edu (Joe Doupnik)
  50870. Newsgroups: comp.protocols.kermit.misc
  50871. Subject: Re: Help with binary downloads.
  50872. Message-Id: <1994Nov18.110238.33219@cc.usu.edu>
  50873. Date: 18 Nov 94 11:02:38 MDT
  50874. References: <1994Nov17.125037@clstac>
  50875. Organization: Utah State University
  50876. Lines: 23
  50877. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  50878.  
  50879. In article <1994Nov17.125037@clstac>, kastanchfiel@csupomona.edu (Kevin Anthony Stanchfield) writes:
  50880. > I use MS-Kermit to call up my Internet account from my house through
  50881. > a CSUNet local dialup to Cal Poly Pomona, Ca.  The system at Cal Poly 
  50882. > is a VAX.  I am able to "GET" text files, but not binary files.  Even 
  50883. > after I "SET FILE TYPE BINARY" on _both_ ends.  My terminal is set to 
  50884. > 9600 7n1 VT102, I'm using MS-Kermit 3.14 with a USR 14.4 FAX/Modem on 
  50885. > port 2.  Can someone help?
  50886. > Thank You.
  50887. ---------
  50888.     There was a bug in MSK 3.14 beta prior to 12, a side effect of
  50889. adding the "whatami" feature. The resulting transmission mode ended
  50890. up being text no matter what.
  50891.     May I suggest to testers that when you do find a bug please
  50892. try the current beta to see if it's been fixed.
  50893.  
  50894.     Items underway for the next beta:
  50895.     Certain operations with string substitution were confused when
  50896. \fname appears and the name isn't one of the \fxxx() functions. Fixed.
  50897.     Still questions on RTS/CTS, to be investigated this weekend.
  50898.     Set Parity blah<ESC> shows extra "(8 data bits)" tag. Yes, I
  50899. may change that.
  50900.     Joe D.
  50901.  
  50902. From news@columbia.edu Fri Nov 18 23:26:56 1994
  50903. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11596
  50904.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 19 Nov 1994 11:40:46 -0500
  50905. Received: by apakabar.cc.columbia.edu id AA02034
  50906.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 19 Nov 1994 11:40:44 -0500
  50907. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!udel!gatech!swrinde!sgiblab!rahul.net!a2i!dold.a2i!dold
  50908. From: Clarence Dold <dold@rahul.net>
  50909. Newsgroups: comp.protocols.kermit.misc
  50910. Subject: Re: C-Kermit 5A(190) Replaces 5A(189)
  50911. Date: 18 Nov 1994 23:26:56 GMT
  50912. Organization: a2i network
  50913. Lines: 20
  50914. Message-Id: <3ajd80$2qv@hustle.rahul.net>
  50915. References: <3a5q0j$1em@apakabar.cc.columbia.edu>
  50916. Nntp-Posting-Host: foxtrot.rahul.net
  50917. Nntp-Posting-User: dold
  50918. X-Newsreader: TIN [version 1.2 PL2]
  50919. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  50920.  
  50921. Frank da Cruz (fdc@fdc.cc.columbia.edu) wrote:
  50922.  
  50923. : The user manual, "Using C-Kermit", is recommended for everybody who wants
  50924. : to make serious use of C-Kermit and to get the most out of it; remember
  50925. : that manual sales are the primary source of support for the Kermit effort.
  50926. : Call +1 212-3703 to order, or send email to kermit@columbia.edu for
  50927. : further info.  A German-language edition is also available.
  50928.  
  50929. But I can't dial that phone number from my location ;-)
  50930. Here I sit, AmEx in hand... 
  50931.  
  50932. Perhaps you meant to say:
  50933.           Tel.  +1 212 854-3703
  50934.  
  50935. Oh, bummer, VISA or MasterCard only.
  50936.  
  50937. -- 
  50938. ---
  50939. Clarence A Dold - dold@rahul.net
  50940.                 - Pope Valley & Napa CA.
  50941.  
  50942. From news@columbia.edu Sat Nov 19 17:01:10 1994
  50943. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13208
  50944.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 19 Nov 1994 12:28:15 -0500
  50945. Received: by apakabar.cc.columbia.edu id AA05334
  50946.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 19 Nov 1994 12:28:11 -0500
  50947. Newsgroups: comp.protocols.kermit.misc
  50948. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!howland.reston.ans.net!ix.netcom.com!netcom.com!wpfulmor
  50949. From: wpfulmor@netcom.com (william p fulmor)
  50950. Subject: C-KERMIT 5A(190)
  50951. Message-Id: <wpfulmorCzIxxy.6EH@netcom.com>
  50952. Organization: NETCOM On-line Communication Services (408 261-4700 guest)
  50953. X-Newsreader: TIN [version 1.2 PL1]
  50954. Date: Sat, 19 Nov 1994 17:01:10 GMT
  50955. Lines: 13
  50956. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  50957.  
  50958. Hi-
  50959.  
  50960. Last night (11/19/94) I grabbed ckuker.att7300 (don't laugh, it's paid 
  50961. for & I've got 4 spares) from kermit.columbia.edu.  It's about 90K bigger 
  50962. than the 5A(189) which I have been using for ~~6 months, but when run, 
  50963. insists that it is 5A(189), not 5A(190) as expected.  
  50964.  
  50965. Is this some cruel hoax or just another example of the complete lack of 
  50966. respect granted to users of the much maligned UNIXPC.  Or did some 
  50967. overworked programmer overlook the need to change the banner.  Or, most 
  50968. likely have I once again put my foot in it? <G>
  50969.  
  50970. Bill
  50971.  
  50972. From news@columbia.edu Fri Nov 18 12:10:09 1994
  50973. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23324
  50974.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 19 Nov 1994 16:14:29 -0500
  50975. Received: by apakabar.cc.columbia.edu id AA25417
  50976.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 19 Nov 1994 16:14:28 -0500
  50977. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!bloom-beacon.mit.edu!usc!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  50978. From: jrd@cc.usu.edu (Joe Doupnik)
  50979. Newsgroups: comp.protocols.kermit.misc
  50980. Subject: Re: C-Kermit 5A(190) Replaces 5A(189)
  50981. Message-Id: <1994Nov18.181009.33272@cc.usu.edu>
  50982. Date: 18 Nov 94 18:10:09 MDT
  50983. References: <3a5q0j$1em@apakabar.cc.columbia.edu> <3ajd80$2qv@hustle.rahul.net>
  50984. Organization: Utah State University
  50985. Lines: 23
  50986. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  50987.  
  50988. In article <3ajd80$2qv@hustle.rahul.net>, Clarence Dold <dold@rahul.net> writes:
  50989. > Frank da Cruz (fdc@fdc.cc.columbia.edu) wrote:
  50990. > : The user manual, "Using C-Kermit", is recommended for everybody who wants
  50991. > : to make serious use of C-Kermit and to get the most out of it; remember
  50992. > : that manual sales are the primary source of support for the Kermit effort.
  50993. > : Call +1 212-3703 to order, or send email to kermit@columbia.edu for
  50994. > : further info.  A German-language edition is also available.
  50995. > But I can't dial that phone number from my location ;-)
  50996. > Here I sit, AmEx in hand... 
  50997. > Perhaps you meant to say:
  50998. >           Tel.  +1 212 854-3703
  50999.         ^^^^^^^^^^^^^^^^^^^^^------ correct.
  51000.  
  51001. > Oh, bummer, VISA or MasterCard only.
  51002.     Rats. We can't win sometimes.
  51003.     Joe D. 
  51004. > -- 
  51005. > ---
  51006. > Clarence A Dold - dold@rahul.net
  51007. >                 - Pope Valley & Napa CA.
  51008.  
  51009. From news@columbia.edu Sat Nov 19 05:26:18 1994
  51010. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23629
  51011.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 19 Nov 1994 16:22:20 -0500
  51012. Received: by apakabar.cc.columbia.edu id AA26232
  51013.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 19 Nov 1994 16:22:18 -0500
  51014. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!hookup!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  51015. From: jrd@cc.usu.edu (Joe Doupnik)
  51016. Newsgroups: comp.protocols.kermit.misc
  51017. Subject: Re: C-KERMIT 5A(190)
  51018. Message-Id: <1994Nov19.112618.33306@cc.usu.edu>
  51019. Date: 19 Nov 94 11:26:18 MDT
  51020. References: <wpfulmorCzIxxy.6EH@netcom.com>
  51021. Organization: Utah State University
  51022. Lines: 17
  51023. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  51024.  
  51025. In article <wpfulmorCzIxxy.6EH@netcom.com>, wpfulmor@netcom.com (william p fulmor) writes:
  51026. > Hi-
  51027. > Last night (11/19/94) I grabbed ckuker.att7300 (don't laugh, it's paid 
  51028. > for & I've got 4 spares) from kermit.columbia.edu.  It's about 90K bigger 
  51029. > than the 5A(189) which I have been using for ~~6 months, but when run, 
  51030. > insists that it is 5A(189), not 5A(190) as expected.  
  51031. > Is this some cruel hoax or just another example of the complete lack of 
  51032. > respect granted to users of the much maligned UNIXPC.  Or did some 
  51033. > overworked programmer overlook the need to change the banner.  Or, most 
  51034. > likely have I once again put my foot in it? <G>
  51035. ------------
  51036.     C Kermit builds to file "wermit" so you can rename it to a convenient
  51037. spelling later (without losing your older Kermit). "ls -l" tells all. This 
  51038. C Kermit works ok on my Unix PC.
  51039.     Joe D.
  51040.  
  51041. From news@columbia.edu Sun Nov 19 01:52:23 1994
  51042. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27858
  51043.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 19 Nov 1994 18:09:04 -0500
  51044. Received: by apakabar.cc.columbia.edu id AA16272
  51045.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 19 Nov 1994 18:09:02 -0500
  51046. Path: news.columbia.edu!sol.ctr.columbia.edu!math.ohio-state.edu!uwm.edu!cs.utexas.edu!swrinde!pipex!uunet!noc.near.net!eisner!burns
  51047. From: burns@eisner.decus.org (Scott Burns)
  51048. Newsgroups: comp.protocols.kermit.misc
  51049. Subject: Re: VMS C-Kermit return status
  51050. Message-Id: <1994Nov18.205223.7538@eisner>
  51051. Date: 18 Nov 94 20:52:23 -0500
  51052. Organization: DECUServe
  51053. Lines: 5
  51054. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  51055.  
  51056. I think CKERMIT_STATUS contains the values listed on page 324 in table I-1.
  51057.  
  51058. scott
  51059. burns@burns.decus.org
  51060.  
  51061.  
  51062. From news@columbia.edu Sat Nov 19 23:48:11 1994
  51063. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29324
  51064.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 19 Nov 1994 18:48:14 -0500
  51065. Received: by apakabar.cc.columbia.edu id AA19121
  51066.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 19 Nov 1994 18:48:13 -0500
  51067. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!vixen.cso.uiuc.edu!adam
  51068. From: adam@symcom.math.uiuc.edu (Adam H. Lewenberg)
  51069. Newsgroups: comp.protocols.kermit.misc
  51070. Subject: C-kermit -ix and binary transfers (not working)
  51071. Date: 19 Nov 1994 23:48:11 GMT
  51072. Organization: University of Illinois at Urbana-Champaign Math department
  51073. Lines: 33
  51074. Distribution: usa
  51075. Message-Id: <3am2rr$ete@vixen.cso.uiuc.edu>
  51076. Nntp-Posting-Host: deneb.math.uiuc.edu
  51077. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  51078.  
  51079. I am having some trouble sending binary files from the UNIX machine at
  51080. school  to my OS/2 system at home. Here is what happens: 
  51081.  
  51082. 1. If I type kermit -ix, escape back to my OS/2 Ckermit, and then type
  51083. 'get file.zip', my OS/2 C-kermit starts receiving the file but announces
  51084. that the FILE TYPE is "TEXT (no translation)". Huh?
  51085.  
  51086. 2. If I start kermit with no command line options, type 
  51087. 'set file type binary' at the C-kermit prompt, type 'send file.zip',
  51088. escape back to the OS/2 C-kermit and then type 'receive' my OS/2
  51089. C-kermit recieves the file and tells me the FILE TYPE is BINARY. 
  51090.  
  51091.  
  51092. Why does 2 work while 1 does not? Shouldn't the '-ix' force all file
  51093. transfers to be binary? I used to have NO trouble (before I installed
  51094. the current version of the Unix C-kermit). 
  51095.  
  51096. The Unix C-kermit is 
  51097.  
  51098.    C-Kermit 5A(190), 4 Oct 94, for Solaris 2.x
  51099.     Copyright (C) 1985, 1994,
  51100.     
  51101. while the OS/2 kermit is
  51102.  
  51103. C-Kermit 5A(190) BETA.23, 18 Sep 94, for OS/2 2.11 32-bit
  51104.  Numeric: 501190
  51105.  
  51106.                         Thanks, Adam H. Leweneberg
  51107.                                           adam@math.uiuc.edu
  51108. -- 
  51109. University of Illinois at Champaign-Urbana, Dept. Of Mathematics
  51110. INTERNET: adam@math.uiuc.edu   or    a-lewenberg@uiuc.edu
  51111.  
  51112.  
  51113. From news@columbia.edu Sat Nov 19 10:24:40 1994
  51114. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29408
  51115.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 19 Nov 1994 18:49:50 -0500
  51116. Received: by apakabar.cc.columbia.edu id AA19184
  51117.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 19 Nov 1994 18:49:49 -0500
  51118. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!agate!dog.ee.lbl.gov!news.cs.utah.edu!cc.usu.edu!jrd
  51119. From: jrd@cc.usu.edu (Joe Doupnik)
  51120. Newsgroups: comp.protocols.kermit.misc
  51121. Subject: Re: MS-Kermit: Unable to ARP resolve ... (Pathworks v5.0)
  51122. Message-Id: <1994Nov19.162440.33322@cc.usu.edu>
  51123. Date: 19 Nov 94 16:24:40 MDT
  51124. References: <CzIvzo.Kqu@ireq.hydro.qc.ca>
  51125. Organization: Utah State University
  51126. Lines: 41
  51127. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  51128.  
  51129. In article <CzIvzo.Kqu@ireq.hydro.qc.ca>, ratel@ireq-ccfm.hydro.qc.ca (Gilles Ratel 8720) writes:
  51130. > Hello,
  51131. >   I hope use MS-Kermit [3.14 beta-12 14 nov 1994] with telnet.
  51132. >   Actually, I use Pathworks v5.0 and load TCPIP via file STARNET.BAT.
  51133. >   (DIS_PKT9 is included into file template CFG*.TPL)
  51134. >   My problem is:
  51135. >   ----------------------------------------------------------------
  51136. >     MS-Kermit> telnet 131.195.1.28
  51137. >      Resolving address of host 131.195.1.28 ...
  51138. >      Unable to ARP resolve 131.195.1.28
  51139. >      Unable to contact the host
  51140. >      The host may be down or a gateway may be needed
  51141. >   -----------------------------------------------------------------
  51142. >   remark: I test
  51143. >           c:\> arp 131.195.1.28     o.k.
  51144. >           c:\> ping 131.195.1.28    o.k.
  51145. >           c:\> ftp 131.195.1.28     o.k.
  51146. >           c:\> SETHOST  ...         o.k.
  51147. >    Do you have hint for my ARP problem with MS-Kermit ?
  51148. > Thanks in advance,
  51149. > Gilles Ratel
  51150. > Email: ratel@toka.ireq-ccfm.hydro.qc.ca
  51151. -------------
  51152.     I'll guess you still have Pathworks running over TCP/IP when
  51153. you used Kermit.
  51154.  
  51155.     One may have only one protocol stack of a given kind running over a 
  51156. board at one time. 
  51157.  
  51158.     Try again without the Pathworks TCP/IP stack going, or run Kermit over 
  51159. the top of Pathworks.
  51160.     Joe D.
  51161.  
  51162. From news@columbia.edu Sat Nov 19 16:18:59 1994
  51163. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25436
  51164.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 20 Nov 1994 05:55:39 -0500
  51165. Received: by apakabar.cc.columbia.edu id AA24237
  51166.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 20 Nov 1994 05:55:38 -0500
  51167. Newsgroups: comp.protocols.kermit.misc
  51168. Path: news.columbia.edu!sol.ctr.columbia.edu!news.moneng.mei.com!hookup!swrinde!pipex!uunet!newsflash.concordia.ca!CC.UMontreal.CA!IRO.UMontreal.CA!clouso.crim.ca!hobbit.ireq.hydro.qc.ca!ratel
  51169. From: ratel@ireq-ccfm.hydro.qc.ca (Gilles Ratel 8720)
  51170. Subject: MS-Kermit: Unable to ARP resolve ... (Pathworks v5.0)
  51171. Message-Id: <CzIvzo.Kqu@ireq.hydro.qc.ca>
  51172. Sender: news@ireq.hydro.qc.ca (Netnews Admin)
  51173. Reply-To: ratel@ireq-ccfm.hydro.qc.ca
  51174. Organization: Institut de recherche d'Hydro-Quebec, Varennes, Canada
  51175. Date: Sat, 19 Nov 1994 16:18:59 GMT
  51176. Lines: 30
  51177. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  51178.  
  51179. Hello,
  51180.  
  51181.   I hope use MS-Kermit [3.14 beta-12 14 nov 1994] with telnet.
  51182.  
  51183.   Actually, I use Pathworks v5.0 and load TCPIP via file STARNET.BAT.
  51184.   (DIS_PKT9 is included into file template CFG*.TPL)
  51185.  
  51186.   My problem is:
  51187.   ----------------------------------------------------------------
  51188.     MS-Kermit> telnet 131.195.1.28
  51189.      Resolving address of host 131.195.1.28 ...
  51190.  
  51191.      Unable to ARP resolve 131.195.1.28
  51192.      Unable to contact the host
  51193.      The host may be down or a gateway may be needed
  51194.   -----------------------------------------------------------------
  51195.  
  51196.   remark: I test
  51197.           c:\> arp 131.195.1.28     o.k.
  51198.           c:\> ping 131.195.1.28    o.k.
  51199.           c:\> ftp 131.195.1.28     o.k.
  51200.           c:\> SETHOST  ...         o.k.
  51201.  
  51202.    Do you have hint for my ARP problem with MS-Kermit ?
  51203.  
  51204.  
  51205. Thanks in advance,
  51206.  
  51207. Gilles Ratel
  51208. Email: ratel@toka.ireq-ccfm.hydro.qc.ca
  51209.  
  51210. From news@columbia.edu Sat Nov 19 19:12:25 1994
  51211. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02068
  51212.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 20 Nov 1994 07:16:49 -0500
  51213. Received: by apakabar.cc.columbia.edu id AA28222
  51214.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 20 Nov 1994 07:16:46 -0500
  51215. Newsgroups: comp.protocols.kermit.misc
  51216. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!bloom-beacon.mit.edu!gatech!news-feed-1.peachnet.edu!insosf1.infonet.net!fastbox.ridgecrest.ca.us!mbguest
  51217. From: mbguest@fastbox.ridgecrest.ca.us (Matthew B. Guest)
  51218. Subject: Re: Help with flow rate
  51219. X-Newsreader: TIN [version 1.2 PL2]
  51220. Organization: The box in my house
  51221. Message-Id: <CzJ40q.xG@fastbox.ridgecrest.ca.us>
  51222. References: <Nov18.071853.19856@acs.ucalgary.ca>
  51223. Date: Sat, 19 Nov 1994 19:12:25 GMT
  51224. Lines: 16
  51225. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  51226.  
  51227. Larson Keith Adams (lkadams@acs.ucalgary.ca) wrote:
  51228. : I'm having real problems.  Transferring via a 14400, I cannot get
  51229. : above 300cps.  Is the problem at the host (packet length set at
  51230. : 1000) or on my home system (WinComm Pro...doesn't seem to be much
  51231. : in the way of settings). 
  51232.  
  51233. You may have problems in both . The immediate problem is your WinComm
  51234. Pro . It is using 64 bit packes and 1 at a time . I would suggest getting
  51235. MS-Kermit . If WinComm Pro supports external protocols , follow the 
  51236. instructions on how to do that . Otherwise use MS-Kermit as the 
  51237. term program also.
  51238. -- 
  51239. Matt - Linux Help via e-mail
  51240.  
  51241. mbguest@fastbox.ridgecrest.ca.us     mbguest@worf.infonet.net
  51242. mbguest@delphi.com          mbguest@scfe.chinalake.navy.mil
  51243.  
  51244. From news@columbia.edu Sat Nov 19 12:27:44 1994
  51245. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21219
  51246.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 20 Nov 1994 07:37:53 -0500
  51247. Received: by apakabar.cc.columbia.edu id AA29048
  51248.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 20 Nov 1994 07:37:51 -0500
  51249. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!agate!dog.ee.lbl.gov!news.cs.utah.edu!cc.usu.edu!jrd
  51250. From: jrd@cc.usu.edu (Joe Doupnik)
  51251. Newsgroups: comp.protocols.kermit.misc
  51252. Subject: Re: DEC VAX to home terminal problem
  51253. Message-Id: <1994Nov19.182744.33330@cc.usu.edu>
  51254. Date: 19 Nov 94 18:27:44 MDT
  51255. References: <3akqj6$r8h@beta.qmw.ac.uk>
  51256. Organization: Utah State University
  51257. Lines: 20
  51258. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  51259.  
  51260. In article <3akqj6$r8h@beta.qmw.ac.uk>, andrew27@vaxb.mdx.ac.uk writes:
  51261. > Can anyone help?
  51262. > I am trying to download a file from a DEC VAX using KERMIT-32
  51263. > to my home Macintosh using the Kermit protocol supplied with
  51264. > my Comms software, VICOM Connect. I can't seem to get the two
  51265. > to connect. The direction of a FAQ for this and other elementary
  51266. > problems would be greatly appreciatted.
  51267. ---------
  51268.     Common maladies:
  51269.     Wrong parity, so the sides don't match (they must match)
  51270.     Insufficient flow control
  51271.     Specifying the wrong kind (Binary, Text) of file mode
  51272.  
  51273.     Please inform your VAX administrator that everyone would be
  51274. much better off if Kermit-32 were deleted and C Kermit 5A were
  51275. installed. See kermit.columbia.edu, cd kermit/bin for ckv*.exe,
  51276. and cd kermit/b for all text files.
  51277.         I have no Macs, nor have I heard of "VICOM Connect."
  51278.     Joe D.
  51279.  
  51280. e NO trouble (before I installed
  51281. > the current version of the Unix C-kermit). 
  51282. > The Unix C-kermit is 
  51283. >    C-Kermit 5A(190), 4 Oct 94, for Solaris 2.x
  51284. >     Copyright (C) 1985, 1994,
  51285. >     
  51286. > while the OS/2 kermit is
  51287. > C-Kermit 5A(190) BETA.23, 18 Sep 94, for OS/2 2.11 32-bit
  51288. >  Numeric: 501190
  51289. -----------
  51290.     I believe the release notes for C Kermit explain that the
  51291. client now controls file TYPE via the SET FILE TYPE command given
  51292. on the client. It's part of file attributes, named the "whatami"
  51293. component, where the client informs the server of its binary/text
  51294. state. It's a step forward, really.
  51295.     Joe D.
  51296.  
  51297. From news@columbia.edu Sat Nov 19 02:12:08 1994
  51298. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25470
  51299.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 20 Nov 1994 07:42:53 -0500
  51300. Received: by apakabar.cc.columbia.edu id AA29295
  51301.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 20 Nov 1994 07:42:52 -0500
  51302. Path: news.columbia.edu!sol.ctr.columbia.edu!news.moneng.mei.com!uwm.edu!msuinfo!harbinger.cc.monash.edu.au!aggedor.rmit.EDU.AU!minyos.xx.rmit.EDU.AU!s923796
  51303. From: s923796@minyos.xx.rmit.EDU.AU (David Anthony Sexton)
  51304. Newsgroups: comp.protocols.kermit.misc
  51305. Subject: kermit icon
  51306. Date: 19 Nov 1994 02:12:08 GMT
  51307. Organization: Royal Melbourne Institute of Technology, Melbourne, Australia.
  51308. Lines: 10
  51309. Message-Id: <3ajmto$c7o@aggedor.rmit.EDU.AU>
  51310. Nntp-Posting-Host: minyos.xx.rmit.edu.au
  51311. Summary: Seeking a kermit icon for the Windows desktop
  51312. Keywords: kermit icon
  51313. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  51314.  
  51315. Hi all, I am looking for a cute green frog to add to my desktop.
  51316. Preferably with Kermit's looks in face or torso. Does the latest
  51317. versions of Kermit have this already?
  51318. Dave.
  51319.  
  51320. -- 
  51321. David A. Sexton
  51322. s923796@minyos.xx.rmit.edu.au
  51323.  
  51324. n
  51325.  
  51326. From news@columbia.edu Sat Nov 19 14:15:30 1994
  51327. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26445
  51328.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 20 Nov 1994 08:09:26 -0500
  51329. Received: by apakabar.cc.columbia.edu id AA00516
  51330.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 20 Nov 1994 08:09:24 -0500
  51331. Path: news.columbia.edu!sol.ctr.columbia.edu!news.moneng.mei.com!uwm.edu!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  51332. From: jrd@cc.usu.edu (Joe Doupnik)
  51333. Newsgroups: comp.protocols.kermit.misc
  51334. Subject: Re: kermit icon
  51335. Message-Id: <1994Nov19.201531.33339@cc.usu.edu>
  51336. Date: 19 Nov 94 20:15:30 MDT
  51337. References: <3ajmto$c7o@aggedor.rmit.EDU.AU>
  51338. Organization: Utah State University
  51339. Lines: 9
  51340. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  51341.  
  51342. In article <3ajmto$c7o@aggedor.rmit.EDU.AU>, s923796@minyos.xx.rmit.EDU.AU (David Anthony Sexton) writes:
  51343. > Hi all, I am looking for a cute green frog to add to my desktop.
  51344. > Preferably with Kermit's looks in face or torso. Does the latest
  51345. > versions of Kermit have this already?
  51346. > Dave.
  51347. ---------
  51348.     Please wait for the formal release. No, no frogs in the icon. Maybe
  51349. you want to create your own.
  51350.     Joe D.
  51351.  
  51352. From news@columbia.edu Sun Nov 20 07:00:13 1994
  51353. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04131
  51354.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 20 Nov 1994 12:01:13 -0500
  51355. Received: by apakabar.cc.columbia.edu id AA13647
  51356.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 20 Nov 1994 12:01:11 -0500
  51357. Path: news.columbia.edu!sol.ctr.columbia.edu!news.moneng.mei.com!hookup!relay.tor.hookup.net!newsadm
  51358. From: bangus@hookup.net (Brian F. Angus)
  51359. Newsgroups: comp.protocols.kermit.misc,alt.winsock
  51360. Subject: Re: winsock/pkt dvr hack possible?
  51361. Date: Sun, 20 Nov 94 12:00:13 est
  51362. Organization: hookup.net
  51363. Lines: 32
  51364. Message-Id: <3anvci$dut@relay.tor.hookup.net>
  51365. References: <3a67j8$j39@Mercury.mcs.com> <Pine.SUN.3.91.941118031532.9000A-100000@soleil> <3aiudg$pil@apakabar.cc.columbia.edu>
  51366. Nntp-Posting-Host: bangus.tor.hookup.net
  51367. Mime-Version: 1.0
  51368. X-Newsreader: WinVN 0.93.0
  51369. Xref: news.columbia.edu comp.protocols.kermit.misc:1139 alt.winsock:22420
  51370. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  51371.  
  51372.  
  51373.  
  51374. In article <3aiudg$pil@apakabar.cc.columbia.edu>, jaltman@watsun.cc.columbia.edu 
  51375. says...
  51376.  
  51377. >A packet driver on top of winsock makes no sense since winsock is not 
  51378. >protocol independent.  The best you could possibly hope for would be a 
  51379. >Telnet redirector for Windows DOS Sessions which communicates through 
  51380. >WinSock.
  51381.  
  51382. Actually, it could probably be done by filtering out the non TCP/IP
  51383. functionality, but it would be a very complicated bit of engineering.
  51384. You would likely have to write some nasty DOS interrupt redirection
  51385. code which would allow the DOS program to communicate directly to a native Windows 
  51386. WINSOCK application via the packet driver interrupt.  The WINSOCK application 
  51387. would act as a type of pass-through tunnel for the DOS application.  This may 
  51388. require the use of a custom VXD, I'm not sure.  I briefly looked into this but I 
  51389. have decided that my skill sets are not quite at a level required for this task.
  51390.  
  51391. Any takers.
  51392.  
  51393. Brian.
  51394.  
  51395. P.S. I was looking into this for Network DOOM.
  51396.  
  51397. -- 
  51398.  _---_   ------------------------------------------------------------
  51399.  /o o\   Brian Angus                 Unsupported hack supporter - DEC
  51400. (  |  )  bangus@trooa.enet.dec.com          
  51401.  \_=_/   bangus@hookup.net           The one with the most shims wins
  51402.          ------------------------------------------------------------
  51403.  
  51404.  
  51405. From news@columbia.edu Sun Nov 20 04:58:34 1994
  51406. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07390
  51407.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 20 Nov 1994 13:25:06 -0500
  51408. Received: by apakabar.cc.columbia.edu id AA19892
  51409.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 20 Nov 1994 13:25:04 -0500
  51410. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!newshost.marcam.com!usc!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  51411. From: jrd@cc.usu.edu (Joe Doupnik)
  51412. Newsgroups: comp.protocols.kermit.misc,alt.winsock
  51413. Subject: Re: winsock/pkt dvr hack possible?
  51414. Message-Id: <1994Nov20.105834.33349@cc.usu.edu>
  51415. Date: 20 Nov 94 10:58:34 MDT
  51416. References: <3a67j8$j39@Mercury.mcs.com> <Pine.SUN.3.91.941118031532.9000A-100000@soleil> <3aiudg$pil@apakabar.cc.columbia.edu> <3anvci$dut@relay.tor.hookup.net>
  51417. Organization: Utah State University
  51418. Lines: 26
  51419. Xref: news.columbia.edu comp.protocols.kermit.misc:1140 alt.winsock:22429
  51420. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  51421.  
  51422. In article <3anvci$dut@relay.tor.hookup.net>, bangus@hookup.net (Brian F. Angus) writes:
  51423. > In article <3aiudg$pil@apakabar.cc.columbia.edu>, jaltman@watsun.cc.columbia.edu 
  51424. > says...
  51425. >>A packet driver on top of winsock makes no sense since winsock is not 
  51426. >>protocol independent.  The best you could possibly hope for would be a 
  51427. >>Telnet redirector for Windows DOS Sessions which communicates through 
  51428. >>WinSock.
  51429. > Actually, it could probably be done by filtering out the non TCP/IP
  51430. > functionality, but it would be a very complicated bit of engineering.
  51431. > You would likely have to write some nasty DOS interrupt redirection
  51432. > code which would allow the DOS program to communicate directly to a native Windows 
  51433. > WINSOCK application via the packet driver interrupt.  The WINSOCK application 
  51434. > would act as a type of pass-through tunnel for the DOS application.  This may 
  51435. > require the use of a custom VXD, I'm not sure.  I briefly looked into this but I 
  51436. > have decided that my skill sets are not quite at a level required for this task.
  51437. -------
  51438.     Jeff is correct. The top of a sockets API is a TCP stream channel of
  51439. bytes, not packets. "It could be done..." means creating a second TCP/IP
  51440. stack feeding from the streams channel and packaging it into TCP/IP over
  51441. Ethernet frames to be passed to the application. Not very desirable, nor 
  51442. realistic.
  51443.     Joe D.    
  51444.  
  51445. From news@columbia.edu Sun Nov 20 20:34:41 1994
  51446. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10333
  51447.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 20 Nov 1994 14:47:30 -0500
  51448. Received: by apakabar.cc.columbia.edu id AA25912
  51449.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 20 Nov 1994 14:47:29 -0500
  51450. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!bloom-beacon.mit.edu!gatech!howland.reston.ans.net!agate!darkstar.UCSC.EDU!news.hal.COM!decwrl!waikato!comp.vuw.ac.nz!zephyr.grace.cri.nz!PeterW!p.waltenberg
  51451. From: p.waltenberg@irl.cri.nz (Peter Waltenberg)
  51452. Newsgroups: comp.protocols.kermit.misc,alt.winsock
  51453. Subject: Re: winsock/pkt dvr hack possible?
  51454. Date: Sun, 20 Nov 1994 20:34:41 GMT
  51455. Organization: Industrial Research Ltd
  51456. Lines: 21
  51457. Message-Id: <p.waltenberg.1154.2ECFB2E0@irl.cri.nz>
  51458. References: <3a67j8$j39@Mercury.mcs.com> <Pine.SUN.3.91.941118031532.9000A-100000@soleil> <3aiudg$pil@apakabar.cc.columbia.edu> <3anvci$dut@relay.tor.hookup.net> <1994Nov20.105834.33349@cc.usu.edu>
  51459. Nntp-Posting-Host: 161.65.60.3
  51460. X-Newsreader: Trumpet for Windows [Version 1.0 Rev B final beta #4]
  51461. Xref: news.columbia.edu comp.protocols.kermit.misc:1141 alt.winsock:22440
  51462. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  51463.  
  51464. -------
  51465. >        Jeff is correct. The top of a sockets API is a TCP stream channel of
  51466. >bytes, not packets. "It could be done..." means creating a second TCP/IP
  51467. >stack feeding from the streams channel and packaging it into TCP/IP over
  51468. >Ethernet frames to be passed to the application. Not very desirable, nor 
  51469. >realistic.
  51470. >        Joe D.  
  51471.  
  51472. Actually acheiving the required functionality is pretty trivial, just run the 
  51473. winsock on top of a packet multiplexor on top of a packet driver instead. 
  51474. Using packet mux on top of the packet driver you can get packet drivers for 
  51475. DOS boxes plus a packet driver for Trumpet winsock. Pktmux can be found on 
  51476. biochemistry.cwru.edu. (and quite a few other sites).
  51477. The system has to be configured at the bottom (DOS) level to use packet 
  51478. drivers, but thats possible with nearly all configurations.
  51479.  
  51480. I'll admit that going from Winsock to packet driver is nightmarish, but 
  51481. actually acheiving whats wanted , which is KA9Q in a DOS box with Winsock 
  51482. running isn't. Thats basically how my system is configured now.
  51483.  
  51484. PeterW
  51485.  
  51486. From news@columbia.edu Sun Nov 20 20:37:37 1994
  51487. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12233
  51488.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 20 Nov 1994 15:37:41 -0500
  51489. Received: by apakabar.cc.columbia.edu id AA11871
  51490.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 20 Nov 1994 15:37:39 -0500
  51491. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  51492. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  51493. Newsgroups: comp.protocols.kermit.misc,alt.winsock
  51494. Subject: Re: winsock/pkt dvr hack possible?
  51495. Date: 20 Nov 1994 20:37:37 GMT
  51496. Organization: Columbia University
  51497. Lines: 45
  51498. Message-Id: <3aoc2h$bit@apakabar.cc.columbia.edu>
  51499. References: <3a67j8$j39@Mercury.mcs.com> <3anvci$dut@relay.tor.hookup.net> <1994Nov20.105834.33349@cc.usu.edu> <p.waltenberg.1154.2ECFB2E0@irl.cri.nz>
  51500. Nntp-Posting-Host: watsun.cc.columbia.edu
  51501. Xref: news.columbia.edu comp.protocols.kermit.misc:1142 alt.winsock:22443
  51502. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  51503.  
  51504. In article <p.waltenberg.1154.2ECFB2E0@irl.cri.nz>,
  51505. Peter Waltenberg <p.waltenberg@irl.cri.nz> wrote:
  51506. >-------
  51507. >>        Jeff is correct. The top of a sockets API is a TCP stream channel of
  51508. >>bytes, not packets. "It could be done..." means creating a second TCP/IP
  51509. >>stack feeding from the streams channel and packaging it into TCP/IP over
  51510. >>Ethernet frames to be passed to the application. Not very desirable, nor 
  51511. >>realistic.
  51512. >>        Joe D.  
  51513. >
  51514. >Actually acheiving the required functionality is pretty trivial, just run the 
  51515. >winsock on top of a packet multiplexor on top of a packet driver instead. 
  51516. >Using packet mux on top of the packet driver you can get packet drivers for 
  51517. >DOS boxes plus a packet driver for Trumpet winsock. Pktmux can be found on 
  51518. >biochemistry.cwru.edu. (and quite a few other sites).
  51519. >The system has to be configured at the bottom (DOS) level to use packet 
  51520. >drivers, but thats possible with nearly all configurations.
  51521. >
  51522. >I'll admit that going from Winsock to packet driver is nightmarish, but 
  51523. >actually acheiving whats wanted , which is KA9Q in a DOS box with Winsock 
  51524. >running isn't. Thats basically how my system is configured now.
  51525. >
  51526.  
  51527. But this doesn't address the original need.
  51528.  
  51529. The original requirement was being able to run MS-DOS Kermit over a 
  51530. WinSock interface when WinSock is active over a serial line connection
  51531. made with Windows for Workgroups.
  51532.  
  51533. In this circumstance, you don't have the packet multiplexor nor the 
  51534. real packet driver for the mux to sit on.
  51535.  
  51536. In the setup you describe there is no need to interface a virtual packet 
  51537. driver with the WinSock API because the DOS session can talk with the 
  51538. real packet driver.
  51539.  
  51540. In any case, the desired functionality is not available nor is it worth
  51541. creating.  The only thing that makes sense is a telnet redirector.
  51542.  
  51543.  
  51544.  
  51545. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  51546. "C-Kermit: available on more platforms than any other communications software."
  51547. "Kermit FTP: sending files whenever and wherever they are needed."
  51548. *NEW* OS/2 version 5A(190): ftp kermit.columbia.edu /kermit/archives/ckoker.zip 
  51549.  
  51550. From news@columbia.edu Wed Nov 16 09:43:06 1994
  51551. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15294
  51552.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 20 Nov 1994 17:01:13 -0500
  51553. Received: by apakabar.cc.columbia.edu id AA18292
  51554.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 20 Nov 1994 17:01:12 -0500
  51555. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!europa.eng.gtefsd.com!news.mathworks.com!usenet.eel.ufl.edu!piaget.moe.ac.sg!raffles.technet.sg!nuscc.nus.sg!teosongh
  51556. From: teosongh@iscs.nus.sg (25 minutes late...)
  51557. Newsgroups: comp.protocols.kermit.misc
  51558. Subject: Can Kermit run on OS2 Warp?
  51559. Date: 16 Nov 1994 09:43:06 GMT
  51560. Organization: DISCS at NUS
  51561. Lines: 9
  51562. Message-Id: <3ack7a$d73@nuscc.nus.sg>
  51563. Nntp-Posting-Host: teosongh@sununx.iscs.nus.sg
  51564. X-Newsreader: TIN [version 1.2 PL2]
  51565. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  51566.  
  51567.  
  51568. Just wondering if kermit can run on Warp or just only in DOS?
  51569.  
  51570. --
  51571. SoNghEnG tHe 25 MiNuTeS lAtE...
  51572. FoR tHe LaTtEr To CoMe...
  51573. -=-=-=-=-=-=-<Teo Song Heng ~{UEKIPK~} a.k.a Anti_Climax...>-=-=-=-=-=-=- 
  51574. -=-=-=-=-=-< Email : teosongh@iscs.nus.sg or isc30171@nus.sg >-=-=-=-=-=- 
  51575. -=-=-=-=-=-=-=-=-=-<National University of Singapore.>-=-=-=-=-=-=-=-=-=-
  51576.  
  51577. From news@columbia.edu Sun Nov 20 22:06:03 1994
  51578. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15628
  51579.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 20 Nov 1994 17:11:32 -0500
  51580. Received: by apakabar.cc.columbia.edu id AA19159
  51581.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 20 Nov 1994 17:11:31 -0500
  51582. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!europa.eng.gtefsd.com!library.ucla.edu!csulb.edu!nic-nac.CSU.net!charnel.ecst.csuchico.edu!olivea!decwrl!nntp.crl.com!crl5.crl.com!not-for-mail
  51583. From: nmiller@crl.com (Norman Miller)
  51584. Newsgroups: comp.protocols.kermit.misc
  51585. Subject: Help needed with Hebrew Kermit
  51586. Date: 20 Nov 1994 14:06:03 -0800
  51587. Organization: CRL Dialup Internet Access    (415) 705-6060  [Login: guest]
  51588. Lines: 10
  51589. Message-Id: <3aoh8b$hhn@crl5.crl.com>
  51590. Nntp-Posting-Host: crl5.crl.com
  51591. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  51592.  
  51593. Has anyone successfully installed Hebrew Kermit?  I can get Hebrew
  51594. characters on screen but only left-to-right.  The documentation I got was
  51595. not very helpful.  It doesn't explain, for instance, the connection between
  51596. Kermit and HED (a nice little editor).  It doesn't explain _anything_ when
  51597. you get right down to it.
  51598.  
  51599. Any help appreciated.
  51600.  
  51601. Norman Miller
  51602.  
  51603.  
  51604. From news@columbia.edu Sun Nov 20 10:16:25 1994
  51605. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18334
  51606.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 20 Nov 1994 18:25:11 -0500
  51607. Received: by apakabar.cc.columbia.edu id AA25276
  51608.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 20 Nov 1994 18:25:10 -0500
  51609. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!bloom-beacon.mit.edu!gatech!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  51610. From: jrd@cc.usu.edu (Joe Doupnik)
  51611. Newsgroups: comp.protocols.kermit.misc
  51612. Subject: Re: Can Kermit run on OS2 Warp?
  51613. Message-Id: <1994Nov20.161625.33380@cc.usu.edu>
  51614. Date: 20 Nov 94 16:16:25 MDT
  51615. References: <3ack7a$d73@nuscc.nus.sg>
  51616. Organization: Utah State University
  51617. Lines: 13
  51618. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  51619.  
  51620. In article <3ack7a$d73@nuscc.nus.sg>, teosongh@iscs.nus.sg (25 minutes late...) writes:
  51621. > Just wondering if kermit can run on Warp or just only in DOS?
  51622. ----------
  51623.     MS-DOS Kermit is a DOS program, and it runs fine in an OS/2 DOS
  51624. box using communications facilities available to DOS programs. It works
  51625. with OS/2 to relinquish cpu time slices when nothing much is happening
  51626. and to economize on screen updating overhead.
  51627.     C Kermit for OS/2 is an OS/2 program which uses communications
  51628. facilities available to OS/2 programs.
  51629.     MSK 3.13 is the current formal release, with 3.14 being in the
  51630. last stages of beta testing. CK v5A(190) is the current C Kermit release.
  51631.     Joe D.
  51632.  
  51633. From news@columbia.edu Sun Nov 20 10:40:15 1994
  51634. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19191
  51635.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 20 Nov 1994 18:49:51 -0500
  51636. Received: by apakabar.cc.columbia.edu id AA27316
  51637.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 20 Nov 1994 18:49:49 -0500
  51638. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  51639. From: jrd@cc.usu.edu (Joe Doupnik)
  51640. Newsgroups: comp.protocols.kermit.misc
  51641. Subject: Re: Help needed with Hebrew Kermit
  51642. Message-Id: <1994Nov20.164015.33381@cc.usu.edu>
  51643. Date: 20 Nov 94 16:40:15 MDT
  51644. References: <3aoh8b$hhn@crl5.crl.com>
  51645. Organization: Utah State University
  51646. Lines: 735
  51647. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  51648.  
  51649. In article <3aoh8b$hhn@crl5.crl.com>, nmiller@crl.com (Norman Miller) writes:
  51650. > Has anyone successfully installed Hebrew Kermit?  I can get Hebrew
  51651. > characters on screen but only left-to-right.  The documentation I got was
  51652. > not very helpful.  It doesn't explain, for instance, the connection between
  51653. > Kermit and HED (a nice little editor).  It doesn't explain _anything_ when
  51654. > you get right down to it.
  51655. ------------
  51656.     We need to understand precisely what you mean by "Hebrew Kermit."
  51657. MS-DOS Kermit is the vehicle delivering Kermit for Hebrew users of DOS
  51658. machines, and it works well that way. The user's manual, the book "Using
  51659. MS-DOS Kermit", discusses ways of using MSK with Hebrew hosts. The only
  51660. Kermit command which is specialized for this purpose is SET TERMINAL
  51661. DIRECTION (LEFT-TO-RIGHT, RIGHT-TO-LEFT); the rest is built upon regular
  51662. Kermit features.
  51663.     You did not mention which version of Kermit you are using, which
  51664. would have been helpful. May I suggest you look at the preliminary
  51665. documentation for the beta MSK 3.14, file mstibm.zip in directory kermit/test
  51666. on kermit.columbia.edu. See the Hebrew subdirectory after you unpack
  51667. the file. Btw, "beta" means things change before release.
  51668.     I'm afraid that we can't help with HED since that's outside of
  51669. Kermit. Perhaps the attachment below has enough information to help.
  51670.     For quick general reference I'm going to bloat News with file 
  51671. Hebrew.doc from the archive. Hopefully it will help others get started too.
  51672.     Joe D.
  51673. --------------
  51674. USING MS-DOS KERMIT TO DISPLAY, ENTER, AND TRANSFER HEBREW TEXT
  51675.  
  51676.     Frank da Cruz
  51677.     Academic Information Systems
  51678.     Columbia University
  51679.     E-Mail: fdc@columbia.edu
  51680.     April-October, 1994
  51681.  
  51682. Beginning with version 3.13 (July 1993), MS-DOS Kermit includes full support
  51683. for Hebrew text, including Hebrew terminal emulation for mixing Hebrew and
  51684. Roman characters when using host-based Hebrew software, and translation of
  51685. Hebrew character sets during file transfer.  Earlier MS-DOS Kermit releases do
  51686. not include Hebrew features.
  51687.  
  51688. This document assumes some familiarity with DOS and with MS-DOS Kermit.
  51689. References are listed at the end.
  51690.  
  51691.     This document explains how to use MS-DOS Kermit in Hebrew mode for
  51692.     interacting with other computers.  It does not address questions
  51693.     of Hebrew text processing within the PC environment itself.
  51694.  
  51695. WARNING: As of this writing, I have not been able to find a way to make the
  51696. techniques described in this document work in a Microsoft Windows window.  Even
  51697. though Kermit itself works perfectly in a window, Windows does not allow the
  51698. Hebrew font to be loaded.  Reportedly, Windows 3.1 ML (Multi-Lingual) supports
  51699. Hebrew, but perhaps not in a way that can be used by Kermit.  Thus, to use
  51700. Kermit's Hebrew features, you must run Kermit in DOS, or in a Windows
  51701. fullscreen session, but not in a window.
  51702.  
  51703. BACKGROUND: HEBREW CHARACTER SETS
  51704.  
  51705. There are several coded character sets that contain the Hebrew alphabet.  Each
  51706. of these sets uses a different encoding, and therefore they are all mutually
  51707. incompatible.  To interchange Hebrew text between two computers that use
  51708. different encodings, conversions must be done.  Kermit software makes these
  51709. conversions for you.  The character sets are:
  51710.  
  51711. ASCII - The American National Standard Code for Information Interchange.
  51712.   This is a 7-bit character set, incorporating 128 characters, of which 95 are
  51713.   "graphic" (printable) characters, and 17 are control characters such as
  51714.   carriage return, linefeed, etc.  It contains no Hebrew, but it is the basis
  51715.   for all the other character sets discussed here, unless noted otherwise.  It
  51716.   includes uppercase and lowercase Roman letters A-Z, digits 0-9, space, and
  51717.   various punctuation marks.
  51718.  
  51719. ISO 8859-8 - The Latin/Hebrew Alphabet.
  51720.   The international standard character set for Hebrew, adopted by the
  51721.   International Organization for Standardization (ISO), of which Israel is a
  51722.   member body.  It is an 8-bit character set, incorporating 256 characters, of
  51723.   which 137 are graphic characters, 65 are control characters, and 22 are
  51724.   undefined.  It includes ASCII, some additional punctuation, math, and
  51725.   currency symbols, plus the 22 Hebrew letters and 5 final forms.
  51726.  
  51727. IBM PC Code Page 862.
  51728.   Similar to Latin/Hebrew, but including many additional characters (line and
  51729.   box drawing, accented Roman letters, etc), and using different encoding.
  51730.   Used only on PCs.
  51731.  
  51732. IBM Mainframe Code Page 424.
  51733.   An 8-bit mainframe code, totally incompatible with ASCII and everything
  51734.   else, which contains approximately the same repertoire as Latin/Hebrew.
  51735.  
  51736. DEC Hebrew (or "Hebrew-7").
  51737.   A 7-bit character set, equivalent to ASCII, but with the lowercase Roman
  51738.   letters replaced by Hebrew letters.  Used to trick 7-bit applications and
  51739.   communication methods into handling Hebrew characters.
  51740.  
  51741. ADDING HEBREW FEATURES TO KERMIT
  51742.  
  51743. To use MS-DOS Kermit's Hebrew terminal emulation features, you must first load
  51744. a Hebrew code page into your PC.  "Code page" is IBM's term for "font" or
  51745. "character set".  An EGA, VGA, or compatible video system that permits text
  51746. fonts to be loaded is required.
  51747.  
  51748. The Kermit diskette contains a public-domain Hebrew code page (and several
  51749. others) and public-domain utilities for loading and displaying code pages,
  51750. compiled and/or created by Professor Joseph (Yossi) Gil at the Technion, plus
  51751. additional material created at Columbia University: the Hebrew setups and key
  51752. mappings for Kermit, various character set tables, documentation, etc.
  51753.  
  51754. Here is a brief synopsis of the files in the Kermit HEBREW directory:
  51755.  
  51756.    HEBREW.DOC   - This file
  51757.    HEBREW.INI   - Hebrew initialization file for Kermit
  51758.    HEBREW.HLP   - Documentation for HEBREW.INI
  51759.    CP862.TBL    - IBM PC Hebrew code page table
  51760.    ISO88598.TBL - ISO 8859-8 Latin/Hebrew alphabet table
  51761.    HEBREW-7.TBL - Hebrew-7 table   
  51762.  
  51763. And these are in the Kermit PCFONTS directory:
  51764.  
  51765.    LOADFONT.COM - Program for changing PC code page (font)
  51766.    LOADFONT.HLP - Help text for LOADFONT
  51767.    CHARSET.COM  - Program to display current code page (font)
  51768.  
  51769.    CP437.F16    - USA code page
  51770.    CP850.F16    - Multinational (i.e. Western Europe) code page
  51771.    CP852.F16    - Eastern Europe code page
  51772.    CP862.F16    - Hebrew code page
  51773.    CP866.F16    - Cyrillic code page
  51774.  
  51775. The CPxxx.F16 files are to be used with LOADFONT.  For example, to load
  51776. the Hebrew code page, type the following command at the DOS prompt:
  51777.  
  51778.   C:\> cd c:\kermit\pcfonts
  51779.        ^^^^^^^^^^^^^^^^^^^^
  51780.   C:\> loadfont cp862.f16
  51781.        ^^^^^^^^^^^^^^^^^^
  51782. The CP862.TBL file will look right when you have CP862 loaded (for example,
  51783. when you TYPE it, EDIT it, etc).  The other .TBL files are there for reference
  51784. and practice.
  51785.  
  51786. USING KERMIT'S HEBREW FEATURES
  51787.  
  51788. After you start Kermit, type the command:
  51789.  
  51790.   HEBREW
  51791.  
  51792. at the "MS-Kermit>" prompt.  "HEBREW" is a macro, defined in MSKERMIT.INI, that
  51793. executes the HEBREW.INI file from the KERMIT\HEBREW directory.  HEBREW.INI sets
  51794. everything up for you automatically.  If you always want to have the Hebrew
  51795. features available when you use Kermit, use a text editor to add the HEBREW
  51796. command to your MSCUSTOM.INI file, and then you won't have to type this command
  51797. at all.
  51798.  
  51799. The HEBREW.INI file:
  51800.  
  51801.   1. Activates ISO 8859-8 / CP862 character-set translations.
  51802.   2. Adds commands to let you change code pages easily.
  51803.   3. Loads the Hebrew code page.
  51804.   4. Defines the key maps for Hebrew and English keyboard modes.
  51805.   5. Sets up commands and hot keys for switching keyboard modes.
  51806.   6. Sets up hot keys for switching screen-writing direction.
  51807.  
  51808. The initial keyboard mode is English.
  51809.  
  51810. The Hebrew font remains loaded after you exit from Kermit, unless you load
  51811. another font yourself.
  51812.  
  51813. After Kermit has executed the HEBREW.INI command file, the following new
  51814. commands are available at at the "MS-Kermit>" prompt:
  51815.  
  51816.   HKEYS   Enter Hebrew keyboard mode upon next CONNECT command.
  51817.   EKEYS   Enter English keyboard mode upon next CONNECT command.
  51818.   HFONT   Load the Hebrew font (done automatically when you TAKE HEBREW.INI)
  51819.   EFONT   Load the US font (CP437)
  51820.   MFONT   Load the Multinational (West European) font (CP850) 
  51821.     
  51822. And the following function keys are available during terminal emulation
  51823. (CONNECT mode):
  51824.  
  51825.   F5      "Hot key" to enter Hebrew keyboard mode immediately.
  51826.   F6      Hot key to enter English keyboard mode immediately.
  51827.   F7      Equivalent to DEC VT terminal's F7 key (for use with JTSA catalog).
  51828.   F9      Select right-to-left screen writing.
  51829.   F10     Select left-to-right screen writing.
  51830.  
  51831. USING MS-DOS KERMIT FOR HEBREW TERMINAL EMULATION
  51832.  
  51833. The HEBREW.INI file sets Kermit up for an 8-bit connection to hosts and
  51834. applications that use the 8-bit ISO Latin/Hebrew character set.  This is the
  51835. the international standard Hebrew character set, and the one used by most
  51836. host-based applications, such as the ALEPH Hebrew library software.  But it is
  51837. not the same as the PC Hebrew code page, so Kermit must translate between the
  51838. two.
  51839.  
  51840. There are at least two other possibilities, which you must consider if you
  51841. access a Hebrew application through Kermit, but the characters look wrong:
  51842.  
  51843.  . On 7-bit connections, "Hebrew-7" -- a 7-bit character set in which the
  51844.    lowercase Roman letters are replaced by Hebrew letters -- is generally
  51845.    used.  Hebrew-7 codes are different from Latin/Hebrew and also from CP862.
  51846.    Hebrew-7 is commonly used in e-mail, in which it is difficult or impossible
  51847.    to transmit 8-bit text.  To use Hebrew-7:
  51848.  
  51849.      SET TERMINAL CHARACTER-SET HEBREW-7
  51850.      SET TERMINAL BYTESIZE 7
  51851.   
  51852.  . It is possible that some Israeli BBSs use Code Page 862.  In this case,
  51853.    tell Kermit not to translate.
  51854.  
  51855.      SET TERMINAL CHARACTER-SET TRANSPARENT
  51856.      SET TERMINAL BYTESIZE 8
  51857.    
  51858.  . For completeness, here are the commands to use ISO Latin/Hebrew:
  51859.  
  51860.      SET TERMINAL CHARACTER-SET HEBREW-ISO
  51861.      SET TERMINAL BYTESIZE 8
  51862.  
  51863. Before accessing the host or service, you must also choose the appropriate type
  51864. of terminal emulation, one of the following (use the highest model that works):
  51865.  
  51866.   SET TERMINAL TYPE VT320  (this is the default)
  51867.   SET TERMINAL TYPE VT220
  51868.   SET TERMINAL TYPE VT102
  51869.   SET TERMINAL TYPE VT100
  51870.  
  51871. From this point, Hebrew-aware software on the remote host or service should be
  51872. able to produce correctly formatted screens containing any mixture of English
  51873. and Hebrew.
  51874.  
  51875. ENTERING HEBREW CHARACTERS ON THE KEYBOARD
  51876.  
  51877. MS-DOS Kermit acts like a Hebrew-model DEC VT terminal.  Like your PC, the VT
  51878. terminal has the normal number of keys; it does not have extra keys for Hebrew.
  51879. Thus, some keys are "shared" between Roman and Hebrew characters.  To send
  51880. Hebrew letters the keyboard must be in "Hebrew mode", and to send lowercase
  51881. Roman letters, the keyboard must be in "English mode".  The HEBREW.INI file
  51882. supplies you with commands and hot keys to switch modes:
  51883.  
  51884.                         Command    Hot-Key
  51885.    Enter Hebrew mode:    HKEYS       F5
  51886.    Enter English mode:   EKEYS       F6
  51887.  
  51888. Use the commands (HKEYS, EKEYS) when at the "MS-Kermit>" prompt; use the hot
  51889. keys (F5, F6) during terminal emulation.  MS-DOS Kermit also allows the host
  51890. application to change your keyboard mode automatically by sending escape
  51891. sequences (the JTSA catalog application does this); see the Appendix at the
  51892. end of this file.
  51893.  
  51894. When Hebrew key mappings are in effect and you press any key to which a Hebrew
  51895. code is assigned during terminal emulation, Kermit automatically translates
  51896. the PC Hebrew code into the appropriate code (HEBREW-ISO or HEBREW-7 or
  51897. TRANSPARENT) for the remote application, according to your TERMINAL
  51898. CHARACTER-SET setting.  In other words, you do NOT need different key mappings
  51899. for different host Hebrew character sets.
  51900.  
  51901. HEBREW FILE TRANSFER
  51902.  
  51903. Hebrew text-file transfer is supported only by MS-DOS Kermit, C-Kermit (UNIX,
  51904. VMS, OS/2, Stratus VOS, etc), and IBM Mainframe Kermit (VM/CMS, MVS/TSO, CICS).
  51905.  
  51906. When transferring Hebrew text files between MS-DOS Kermit and a remote
  51907. computer or service, use the following commands to ensure that the Hebrew
  51908. characters are translated correctly:
  51909.  
  51910. On the PC:                         On the remote computer:
  51911.  
  51912.  SET FILE CHARACTER-SET CP862       SET FILE CHARACTER-SET xxx
  51913.  SET TRANSFER CHARACTER-SET HEBREW  SET TRANSFER CHARACTER-SET HEBREW
  51914.  
  51915. xxx is the name of the Hebrew character-set on the remote host, such as
  51916. HEBREW-ISO, HEBREW-7, or (only on IBM Mainframes) CP424.  Then send and
  51917. receive text files in the normal way.
  51918.  
  51919. PRINTING
  51920.  
  51921. All files created on your PC's disk by Kermit will record Hebrew letters in the
  51922. IBM PC Hebrew code page, CP862 (provided you have set up the appropriate
  51923. translation).  If you have a printer that is capable of printing this character
  51924. set, then all the normal printing facilities of DOS and of Kermit should work
  51925. as expected:
  51926.  
  51927.  . The DOS PRINT command.
  51928.  . The Print Screen key in DOS or Kermit.
  51929.  . etc etc.
  51930.  
  51931. NOTE: If you have an IBM printer that is capable of code-page switching, then
  51932. the Hebrew fonts supplied on the Hebrew disk will probably not print correctly.
  51933. In this case, you will need the real IBM Code Page 862, prepared and loaded
  51934. according to the instructions on pages 126-129 of "Using MS-DOS Kermit".
  51935. (Sorry, I do not know how to get it -- try IBM Israel :-)
  51936.  
  51937. If you do NOT have a printer with a Hebrew font built in, then you must use
  51938. higher-level software to do the printing.  Reportedly, for example, it is
  51939. possible to import a plain-text CP862 file (such as Kermit would create when
  51940. you save a screen) into Hebrew WordPerfect and then print it from there.
  51941.  
  51942. ACCESSING THE ALEPH LIBRARY CATALOG APPLICATION
  51943.  
  51944. The ALEPH system, in use throughout Israel and also at the Jewish Theological
  51945. Seminary of America, is designed for use by DEC VT terminals, such as those
  51946. emulated by MS-DOS Kermit, and it uses the 8-bit ISO Latin/Hebrew alphabet.
  51947. The HEBREW.INI file sets everything up for you.
  51948.  
  51949. If your PC is on a TCP/IP network and your MSCUSTOM.INI (MS-DOS Kermit
  51950. customization file) is correctly set up for TCP/IP, you can telnet directly
  51951. from your PC to an ALEPH host, e.g.:
  51952.  
  51953.   MS-Kermit> telnet aleph.huji.ac.il
  51954.              ^^^^^^^^^^^^^^^^^^^^^^^
  51955. If your PC is not on the network, you can dial up with a modem.
  51956.  
  51957. No matter which way you came in, you should now see the host banner and
  51958. login prompt, e.g.:
  51959.  
  51960.   **********************************************************************
  51961.   *           The Jewish Theological Seminary of America               *
  51962.   *                         VAX/VMS v.5-4                              *
  51963.   **********************************************************************
  51964.  
  51965.   Username: ALEPH
  51966.             ^^^^^
  51967. Respond to the "Username:" prompt by typing the word "aleph" and then press
  51968. the Enter key.  You won't need a password.  Now you will see the following
  51969. greeting and menu:
  51970.  
  51971.         Welcome to VAX/VMS version V5.4 on node THEO
  51972.     Last interactive login on Tuesday, 8-FEB-1994 18:38
  51973.     Last non-interactive login on Sunday,  4-JUL-1993 18:44
  51974.  
  51975.               Terminal selection  
  51976.   Standard (non soft font) terminals: 
  51977.    3.  VT102 (Latin only, unless accessed using Israeli ALEPH KERMIT)
  51978.    11. VT220 protocol (VT220,VT320,VT340,VT420,V603, etc.
  51979.            Latin only, unless terminal has Hebrew chip installed)
  51980.  
  51981.   Full Latin and SOFT FONT (Hebrew, Arabic, Cyrillic) standard terminals:
  51982.    17. VT320 
  51983.    18. VT420 
  51984.  
  51985.   English/Hebrew and SOFT FONT (Arabic, Cyrillic) Israeli Hebrew chip
  51986.   terminals:
  51987.    27. VT320 
  51988.    28. VT420 
  51989.  
  51990.            Select from menu : 11
  51991.                                       ^^
  51992. Choose 11 (VT220) from the terminal-type menu.  That's all there is to it.
  51993.  
  51994. Now you should see an English menu on your screen with Hebrew writing near
  51995. the top.  Here's a quick demo:
  51996.  
  51997. 1. In the menu screen, type "?/HEB" (uppercase, without the quotes) and then
  51998.    press the Enter key to switch to Hebrew display mode.  The menu should
  51999.    change to all Hebrew, and your keyboard should switch automatically into
  52000.    Hebrew mode.
  52001.  
  52002. 2. Now type "?/ENG" to switch back to English.  Beware: Since the keyboard is
  52003.    in Hebrew mode while you are typing this, the slash character (/) is now
  52004.    mapped to lowercase "q", so to enter "?/ENG", you must type "?qENG".
  52005.    Notice how these characters echo when you type them.  Now you should see a
  52006.    help screen whose left side is English and whose right side is Hebrew.
  52007.  
  52008. 3. Now type "ENG" or "HEB" to select English or Hebrew screens.  The host
  52009.    application automatically switches your keyboard to the appropriate mode.
  52010.    If you select Hebrew, the Hebrew key mappings go into effect automatically;
  52011.    if you select English, the English mappings are made automatically.
  52012.  
  52013. 4. In an English screen, search for (say) authors named Singer by typing:
  52014.  
  52015.       AU/Singer
  52016.  
  52017.    In a Hebrew screen type the Hebrew author-search command, Mem-Chet-slash
  52018.    (njq) and the author's name in Hebrew, for example "zhbdr" (= Zade Yod Nun
  52019.    Gimel Resh = Zinger):
  52020.  
  52021.       njqzhbdr
  52022.  
  52023. 5. To capture a screen, hold down the Ctrl key and press the End key on the
  52024.    numeric keypad.  This copies text on the screen to a file on your disk
  52025.    called KERMIT.SCN.  If you do this more than once, it will keep adding new
  52026.    screens to the end of the KERMIT.SCN file, separating each one by a
  52027.    Formfeed.
  52028.    
  52029. To get back to the main menu at any time, press the PC's F7 key.
  52030.  
  52031. To leave ALEPH, type the word "STOP" (without the quotes) and then press the
  52032. Enter key.
  52033.  
  52034. Some Hebrew library catalogs that use the ALEPH software are:
  52035.  
  52036.   Central ALEPH Computer          Telnet RAM2.HUJI.AC.IL or 128.139.4.207
  52037.   Bar-Ilan University             Telnet ALEPH.BIU.AC.IL or 132.70.9.36
  52038.   Ben-Gurion University           Telnet BGULIB.BGU.AC.IL
  52039.   Haifa University                Telnet LIB.HAIFA.AC.IL or 132.74.1.100
  52040.   Hebrew University               Telnet ALEPH.HUJI.AC.IL or 128.139.4.207
  52041.   Jewish Theological Seminary     Telnet JTSA.EDU
  52042.   Technion                        Telnet LIB.TECHNION.AC.IL or 132.68.1.20
  52043.   Tel Aviv University             Telnet TAUVAX.TAU.AC.IL or 132.66.32.6
  52044.   Weizmann Institute of Science   Telnet WISLIB.WEIZMANN.AC.IL or 132.76.64.14
  52045.  
  52046. In all cases, the username to use is ALEPH and no password is required,
  52047. and in all cases you should choose "11" from the terminal-type menu.
  52048.  
  52049. Also, please note that references to Hebrew-University Kermit are obsolete, as
  52050. are the instructions for using it.  All the work done at Hebrew University was
  52051. incorporated into MS-DOS Kermit 3.13, and upgraded to a much higher level of
  52052. functionality.  Please ignore the instructions about special MSKERMIT.INI
  52053. files, VT102 emulation, Terminal Type 3, etc.
  52054.  
  52055. USING KERMIT'S HEBREW FEATURES IN NON-HEBREW APPLICATIONS
  52056.  
  52057. You can use Kermit's Hebrew features to create or view plain-text documents on
  52058. a CUNIX or other host computer written in Hebrew (or Yiddish?) (or Ladino?)  if
  52059. you keep the following points in mind:
  52060.  
  52061.  . Hebrew characters are restricted to the basic set of 22 letters and
  52062.    5 final forms.
  52063.  
  52064.  . Hebrew characters are stored and transmitted left to right, even though
  52065.    they should be displayed right to left.
  52066.  
  52067.  . You can't mix Roman and Hebrew text in a plain-text file unless you are
  52068.    willing to type the Hebrew letters in reverse order (or vice-versa,
  52069.    depending on how the text is to be displayed).  That's because
  52070.    non-Hebrew-aware software is not equipped to handle bidirectional text.
  52071.  
  52072. If you are using Kermit to create or read Hebrew text on a computer that does
  52073. not have Hebrew-aware software, you can tell Kermit to reverse its
  52074. screen-writing direction to force characters to be written right-to-left:
  52075.  
  52076.   SET TERMINAL DIRECTION RIGHT-TO-LEFT
  52077.  
  52078. And, of course, you can also undo this effect:
  52079.  
  52080.   SET TERMINAL DIRECTION LEFT-TO-RIGHT
  52081.  
  52082. The HEBREW.INI file assigns these functions to F9 and F10, respectively, so you
  52083. can conveniently switch direction during terminal emulation.
  52084.  
  52085. If your connection to the host application is "8-bit clean", AND the
  52086. application itself is also 8-bit clean, you can use the ISO 8859-8 Latin/Hebrew
  52087. Alphabet, which contains full upper and lowercase Roman, plus Hebrew, plus a
  52088. variety of symbols.  Unfortunately, very few host applications are 8-bit clean
  52089. (except on VMS -- such as the JTSA Library System).
  52090.  
  52091. EXAMPLE: Creating a Hebrew text file with the VMS EVE (EDIT/TPU) editor:
  52092.  
  52093.   1. Tell MS-DOS Kermit to TAKE HEBREW.INI
  52094.   2. Log in to the VAX.
  52095.   3. EDIT/TPU <filename>.
  52096.   4. Push F5 to enter Hebrew keyboard mode.
  52097.   5. Push F9 to select right-to-left screen writing.
  52098.   6. Create/edit the file in the normal way.  All the English
  52099.      will be displayed backwards, but the Hebrew will look right.
  52100.  
  52101. IN THE 7-BIT ENVIRONMENT, you'll have to use the Hebrew-7 character set,
  52102. in which lowercase Roman letters are replaced by Hebrew letters; thus
  52103. only uppercase Roman letters are available.  For example, to send a Hebrew
  52104. e-mail message with (English) Pine:
  52105.  
  52106.   1. Access and log in to CUNIX (don't put Kermit into Hebrew mode yet).
  52107.   2. Start Pine and select COMPOSE MESSAGE.
  52108.   3. Fill out the To: and Subject: fields of the message using Roman letters.
  52109.   4. Move to the message body using the down-arrow or Enter key.
  52110.   5. Press the F5 key to enter Hebrew keyboard mode.
  52111.   6. Use Alt-x to return to the MS-Kermit> prompt and enter the following
  52112.      commands:
  52113.      
  52114.        take hebrew.ini
  52115.        set terminal character-set hebrew-7
  52116.        set terminal bytesize 7
  52117.        connect
  52118.  
  52119.      Remember: you can abbreviate Kermit commands and keywords (but not
  52120.      filenames) to their minimum unique length.  So the above commands could
  52121.      also be entered as:
  52122.  
  52123.        ta hebrew.ini
  52124.        set ter ch hebrew-7
  52125.        set ter by 7
  52126.        c
  52127.  
  52128.   7. Push F9 to select right-to-left screen writing.
  52129.   8. Type Ctrl-L (hold down Ctrl and press the L key) to refresh the screen.
  52130.   9. Enter Hebrew text into the message body, referring to the keyboard map.
  52131.      If you must type numbers, enter the digits in reverse order.  If you must
  52132.      type English text, enter the letters in UPPER CASE and in reverse order.
  52133.  10. To send the message, type Ctrl-X (hold down Ctrl, press X).
  52134.  11. To return to English mode, press F6 and F10, then Ctrl-L to refresh
  52135.      the screen.
  52136.  12. Enter Q to quit from Pine.
  52137.  
  52138. The person who receives your message must, of course, also be set up for the
  52139. Hebrew-7 character set and right-to-left display.  Remember that when the
  52140. keyboard is in Hebrew mode, all Roman letters must be entered in UPPER CASE.
  52141. This includes (of course) Pine commands.
  52142.  
  52143. OTHER HOST-BASED HEBREW APPLICATIONS   
  52144.  
  52145. There is a version of the text editor EMACS, developed in Japan, called MULE
  52146. (MUltiLingual EMACS), which is capable of handling Hebrew (as well as almost
  52147. any other script in the world), fully accomodating mixed Hebrew and Roman (or
  52148. other) scripts, and (reportedly) handling bidirectionality correctly.  It
  52149. works best with X terminals, but might also work in Hebrew mode with PCs
  52150. running Kermit.
  52151.  
  52152. There is a Hebrew version of the UNIX VI text editor, called vi.iv, from
  52153. the Technion.
  52154.  
  52155. There is reportedly a Hebrew version of the Pine e-mail software.
  52156.  
  52157. EPILOG
  52158.  
  52159. Because Hebrew text is intrinsically bidirectional (since, for example, numbers
  52160. are written left-to-right, and Roman or other types of left-to-right text are
  52161. often mixed in), no "plain-text" standard for Hebrew has ever emerged.  Hebrew
  52162. text can only be handled on a "higher" level, e.g. by applications such as the
  52163. JTSA catalog, Hebrew WordPerfect, and so on.
  52164.  
  52165. Unfortunately, but not surprisingly, these higher-level applications are
  52166. incompatible with each other, using different character sets and different
  52167. methods for indicating and controlling directionality, not to mention other
  52168. rendering and representation issues (Macintosh vs PC, font selection and style,
  52169. boldface, italic, etc etc).  Thus, widespread system- and application-
  52170. independent interchange of Hebrew text has never been achieved.  Informants in
  52171. Israel tell me, for example, that Hebrew simply is not used in e-mail;
  52172. everybody gets by with English.
  52173.  
  52174. The situation with Arabic is similar, but not identical.
  52175.  
  52176. The situation with other non-Roman alphabetic scripts, such as Cyrillic and
  52177. Greek, is far better.  These scripts can be handled very easily by a simple
  52178. font change, and mixtures of Cyrillic and Roman or Greek and Roman letters in a
  52179. plain text file poses no problems at all.  Similar comments apply to other
  52180. left-to-right alphabetic scripts such as Armenian, Georgian, etc.
  52181.  
  52182. In the future, there will be a universal coded character set, ISO 10646,
  52183. capable of representing all of the world's scripts in a single coding system,
  52184. including both modern and ancient scripts.  Presently, ISO 10646 includes only
  52185. the basic Hebrew repertoire of 22 letters plus 5 final forms.  An extension to
  52186. this standard, proposed by the Israel Institute for Standards, will add vowel
  52187. points, cantillation marks, and possibly also unique Hebrew forms of
  52188. punctuation as well as Yiddish digraphs.  ISO 10646 (and its precursor,
  52189. Unicode, which is in most part a compatible subset of ISO 10646) will allow
  52190. text to contain any mixture of scripts.  But massive changes in software, data,
  52191. as well as in display, printing, and data entry devices will be required, so
  52192. only time will tell if ISO 10646 will achieve widespread use.
  52193.  
  52194. APPENDIX I - EDITING FILES ON THE PC
  52195.  
  52196. Your AUTOEXEC.BAT and CONFIG.SYS are "plain text" files.  The same is true of
  52197. all Kermit command and initialization files.  You can modify such files using
  52198. the DOS EDLIN or EDIT programs.  EDLIN and EDIT are documented in your DOS
  52199. manual.  The recommended method for editing these files is to use the DOS EDIT
  52200. program.  Let's suppose you want to modify your AUTOEXEC.BAT file.  First, make
  52201. a backup copy in case something goes wrong:
  52202.  
  52203.   cd c:\
  52204.   copy autoexec.bat autoexec.bak
  52205.  
  52206. And then start the editor:
  52207.  
  52208.   edit autoexec.bat
  52209.  
  52210. This brings up a screen showing the file.  You can move through the file with
  52211. the arrow keys until you find the line you want to change, in our case the line
  52212. that starts with "PATH=".  Use the End key to position the cursor at the end of
  52213. the "PATH=" line, then type the text you want to add, such as ";C:\KERMIT".
  52214.  
  52215. To save the file, press Alt-f (hold down Alt, press f) to activate the File
  52216. menu.  Then use the down-arrow key to highlight the Save item, and then press
  52217. the Enter key.
  52218.  
  52219. To exit from EDIT, press Alt-f again, use the arrow key to highlight Exit, and
  52220. press Enter.
  52221.  
  52222. If you are using a word processing program to create or modify a DOS or Kermit
  52223. command file, do not include any special effects (bold, underline, italics),
  52224. and be sure to save the file in text mode.  The method for doing this depends
  52225. on the word processor.
  52226.  
  52227. In Microsoft Word 5.0, for example, press the Esc key to get to the menu, press
  52228. T to choose Transfer, press S to choose Save, type the filename, use the arrow
  52229. keys to get to the "format" line, choose Text-Only, press Enter to save the
  52230. file, and then leave the program by pressing the Esc key and then Q.
  52231.  
  52232. In WordPerfect 5.1, use Ctrl-F5 (hold down the Ctrl key and press the F5 key)
  52233. to save the file, press T to select DOS Text, 1 to Save, type the filename and
  52234. press Enter, and quit from WordPerfect by pressing the F7 key.
  52235.  
  52236. APPENDIX II - THE HEBREW KEY MAP
  52237.  
  52238. (Note: Names of Hebrew letters are from the ISO 8859-8 Standard.)
  52239.  
  52240. Hebrew Order             Roman Order              QWERTY Keyboard Order        
  52241.  
  52242.   q = Slash                , = Taw             q = Slash 
  52243.   w = Apostrophe           . = Terminal Zade        w = Apostrophe 
  52244.   ' = Comma                ' = Comma                e = Qoph 
  52245.   / = Period               / = Period               r = Resh 
  52246.   t = Aleph                ; = Terminal Pe          t = Aleph 
  52247.   c = Bet                  a = Shin                 y = Tet 
  52248.   d = Gimel                b = Nun                  u = Waw 
  52249.   s = Dalet                c = Bet                  i = Terminal Nun 
  52250.   v = He                   d = Gimel                o = Terminal Mem 
  52251.   u = Waw                  e = Qoph                 p = Pe 
  52252.   z = Zain                 f = Kaph                 a = Shin 
  52253.   j = Chet                 g = Ayin                 s = Dalet 
  52254.   y = Tet                  h = Yod                  d = Gimel 
  52255.   h = Yod                  i = Terminal Nun         f = Kaph 
  52256.   l = Terminal Kaph        j = Chet                 g = Ayin 
  52257.   f = Kaph                 k = Lamed                h = Yod 
  52258.   k = Lamed                l = Terminal Kaph        j = Chet 
  52259.   o = Terminal Mem         m = Zade                 k = Lamed 
  52260.   n = Mem                  n = Mem                  l = Terminal Kaph 
  52261.   i = Terminal Nun         o = Terminal Mem         ; = Terminal Pe 
  52262.   b = Nun                  p = Pe                   ' = Comma 
  52263.   x = Samech               q = Slash                z = Zain 
  52264.   g = Ayin                 r = Resh                 x = Samech 
  52265.   ; = Terminal Pe          s = Dalet                c = Bet 
  52266.   p = Pe                   t = Aleph                v = He 
  52267.   . = Terminal Zade        u = Waw                  b = Nun 
  52268.   m = Zade                 v = He                   n = Mem 
  52269.   e = Qoph                 w = Apostrophe           m = Zade 
  52270.   r = Resh                 x = Samech               , = Taw 
  52271.   a = Shin                 y = Tet                  . = Terminal Zade 
  52272.   , = Taw                  z = Zain                 / = Period 
  52273.  
  52274. If you have a PostScript printer, you can get a picture of the key map
  52275. by printing the KEYMAP.PS file from the KERMIT\HEBREW directory.
  52276.  
  52277. APPENDIX III - Technical Summary
  52278.  
  52279. Hebrew terminal emulation and file transfer (version 3.13).  Commands:
  52280.  
  52281.   SET TRANSFER CHARACTER-SET HEBREW
  52282.   SET FILE CHARACTER-SET CP862
  52283.   SET TERMINAL CHARACTER-SET { HEBREW-ISO, HEBREW-7 }
  52284.   SET TERMINAL DIRECTION { RIGHT-TO-LEFT, LEFT-TO-RIGHT }
  52285.   SET TERMINAL CODE-PAGE CP862
  52286.  
  52287. Terminal direction is controlled in two different ways: (1) by host- generated
  52288. escape sequences (automatic, see below) and (2) by the SET TERMINAL DIRECTION
  52289. command.  When the writing direction is changed by escape sequences from the
  52290. host, the cursor-positioning coordinate system is not changed.  For example, if
  52291. Kermit was in left-to-right mode and the host send ESC [ ? 34 h, position (1,1)
  52292. would still be in the upper left.  This is how a real Hebrew-model VT terminal
  52293. works.  If, however, you command Kermit into RIGHT-TO-LEFT mode, the coordinate
  52294. system flips right to left so the origin (1,1) is at the upper right corner,
  52295. which is useful for viewing and composing some right to left text. The host can
  52296. override the user setting, and the user can later override the host setting.
  52297.  
  52298. Hebrew character sets:
  52299.  
  52300.  . CP862 is the PC Hebrew code page, available from IBM as EGAHE.COM, or
  52301.    perhaps as a hardware code page on Hebrew-model PCs.  Distributed on the
  52302.    the Kermit diskette in a public-domain form as CP862.F16, to be used with
  52303.    the (also public-domain) LOADFONT program.
  52304.  
  52305.  . HEBREW-ISO is the 8-bit standard ISO 8859-8 Latin/Hebrew alphabet.
  52306.  
  52307.  . HEBREW-7 is the 7-bit Hebrew "National Replacement Character Set" (NRC),
  52308.    ASCII with the lowercase Roman letters replaced by Hebrew letters,
  52309.    often used in e-mail.
  52310.  
  52311. MS-DOS Kermit 3.13 supports:
  52312.  
  52313.  . Automatic selection of writing direction by host escape sequence.
  52314.  . ISO 2022-compliant terminal character-set designation and invocation.
  52315.  . Hebrew keyboard mode.
  52316.  
  52317. Hebrew-specific escape sequences recognized by the VT220 and 320 terminal
  52318. emulators: 
  52319.  
  52320.   ESC ) H        Designates right half of Latin/Hebrew to G1   
  52321.   ESC * H        Designates right half of Latin/Hebrew to G2   
  52322.   ESC + H        Designates right half of Latin/Hebrew to G3   
  52323.   ESC ( % =        Designates 7-bit Hebrew NRC to G0-G3          
  52324.   ESC ) " 4        Designates DEC supplement Hebrew letters to G1
  52325.   ESC * " 4        Designates DEC supplement Hebrew letters to G2
  52326.   ESC + " 4        Designates DEC supplement Hebrew letters to G3
  52327.   DCS 0 ! u " 4 ST    Assigns DEC supplement Hebrew as UPSS
  52328.   DCS 0 ! u H ST    Assigns Latin/Hebrew as UPSS
  52329.   CSI ? 34 h        Sets right-to-left screen-writing mode
  52330.   CSI ? 34 l        Sets left-to-right screen-writing mode
  52331.   CSI ? 35 h        Sets Hebrew keyboard mapping via Kermit macros
  52332.   CSI ? 35 l        Sets Roman (North American) keyboard mapping, ditto
  52333.   CSI ? 36 h        Hebrew encoding mode is 7-bit Hebrew-7 "National mode"
  52334.   CSI ? 36 l        Hebrew encoding mode is 8-bit ISO Latin/Hebrew
  52335.  
  52336. Hebrew keyboard mapping:
  52337.  
  52338.  . CSI ? 35 h invokes the macro KEYBOARDS, which you must define to set up
  52339.    your keyboard for entering Hebrew characters.  If this macro is not
  52340.    defined, nothing happens.
  52341.  
  52342.  . CSI ? 35 l invokes the macro KEYBOARDR, which you must define to set up
  52343.    your keyboard for entering Roman (North American) characters.  If this
  52344.    macro is not defined, nothing happens.
  52345.  
  52346.      NOTE: do not define KEYBOARDS without also defining KEYBOARDR
  52347.      to undo its effects!
  52348.  
  52349. The various reports furnished by MS-DOS Kermit also include Hebrew-specific
  52350. information, and the following host-initiated operations work in both left-
  52351. to-right and right-to-left mode: Insert/Replace Mode, Autowrap, Backspace,
  52352. Carriage Return, Linefeed, Formfeed, Vertical Tab, Horizontal Tab.
  52353.  
  52354. The keyboard mapping sequences invoke the user-defined macros KEYBOARDS (h) and
  52355. KEYBOARDR (l).  Users should define these macros to accomplish the desired
  52356. keyboard mappings with SET KEY commands.  Sample mappings (those used with
  52357. Hebrew WordPerfect, etc) are supplied in the HEBREW.INI file.
  52358.  
  52359. In VT100 and VT102 mode, the following functions are supported:
  52360.  
  52361.   ESC ) 1        Enter Hebrew mode
  52362.   ESC ) B        Exit Hebrew mode
  52363.  
  52364. FURTHER READING 
  52365.  
  52366. 1. Your MS-DOS manual, the sections on code pages.  For example, Microsoft 
  52367.    MS-DOS Operating System Version 5.0 User's Guide and Reference (1992), 
  52368.    Chapter 13 and the Appendix, "Keyboard Layouts and Code Pages". 
  52369.  
  52370. 2. Gianone, Christine M., "Using MS-DOS Kermit", Digital Press (1992), 
  52371.    Chapter 13, "International Character Sets".  Also, for TCP/IP setup, 
  52372.    Chapter 16, "Kermit on Local Area Networks". 
  52373.  
  52374. 3. The files KERMIT.UPD and HEBREW\HEBREW.HLP on the MS-DOS 3.13 diskette.
  52375.  
  52376. 4. The Hebrew character-set tables in the HEBREW directory, and the PC
  52377.    font material in the PCFONTS directory.
  52378.  
  52379. 5. The Unicode Standard, Worldwide Character Encoding, Version 1.0, Volume 1, 
  52380.    The Unicode Consortium.  Addison-Wesley (1991). 
  52381.  
  52382. (End of HEBREW.DOC) 
  52383.  
  52384.  
  52385. From news@columbia.edu Mon Nov 21 00:44:50 1994
  52386. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21450
  52387.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 20 Nov 1994 19:44:53 -0500
  52388. Received: by apakabar.cc.columbia.edu id AA01738
  52389.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 20 Nov 1994 19:44:51 -0500
  52390. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  52391. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  52392. Newsgroups: comp.protocols.kermit.misc
  52393. Subject: Re: Can Kermit run on OS2 Warp?
  52394. Date: 21 Nov 1994 00:44:50 GMT
  52395. Organization: Columbia University
  52396. Lines: 40
  52397. Message-Id: <3aoqi2$1m6@apakabar.cc.columbia.edu>
  52398. References: <3ack7a$d73@nuscc.nus.sg>
  52399. Nntp-Posting-Host: watsun.cc.columbia.edu
  52400. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  52401.  
  52402. In article <3ack7a$d73@nuscc.nus.sg>,
  52403. 25 minutes late... <teosongh@iscs.nus.sg> wrote:
  52404. >
  52405. >Just wondering if kermit can run on Warp or just only in DOS?
  52406. >
  52407.  
  52408. There are two versions of Kermit from Columbia U. that work with OS/2 WARP.
  52409.  
  52410. First there is C-Kermit 5A(190) for OS/2.
  52411.  
  52412. C-Kermit is certified by IBM as "Ready for OS/2" and "Ready for LAN Systems"
  52413.  
  52414. C-Kermit provides vt220, vt102, vt52, and ANSI BBS terminal emulations
  52415. over either serial or network connections (TCP/IP [WARP IAK], NETBIOS,
  52416. NAMED PIPES, DEC LAT).
  52417.  
  52418. Full scripting (Kermit and REXX)
  52419. > 1 million line scrollback buffer
  52420. Mouse cursor positioning and PM clipboard copy/paste
  52421. File tranfer supporting OS/2 Extended Attributes
  52422. OS/2 Long file names supported on FAT file systems
  52423.  
  52424. and much more.
  52425.  
  52426. ----
  52427.  
  52428. If you must use a VT320 or Tektronics emulation you can still use 
  52429. MS-DOS Kermit in a DOS Window or Full screen session.
  52430.  
  52431. I would recommend using Ray Gwinn's Serail Fossil Drivers if you
  52432. are going to use MS-DOS Kermit.  MS-DOS Kermit's network capabilities
  52433. do not work in a DOS session unless you can dedicate a separate 
  52434. network card to that session.
  52435.  
  52436. If you need more info, post again.
  52437.  
  52438. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  52439. "C-Kermit: available on more platforms than any other communications software."
  52440. "Kermit FTP: sending files whenever and wherever they are needed."
  52441. *NEW* OS/2 version 5A(190): ftp kermit.columbia.edu /kermit/archives/ckoker.zip 
  52442.  
  52443. From news@columbia.edu Mon Nov 21 00:52:50 1994
  52444. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22234
  52445.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 20 Nov 1994 20:01:53 -0500
  52446. Received: by apakabar.cc.columbia.edu id AA02989
  52447.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 20 Nov 1994 20:01:51 -0500
  52448. Newsgroups: comp.protocols.kermit.misc
  52449. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!gatech!bloom-beacon.mit.edu!news.bu.edu!gw1.att.com!nntpa!not-for-mail
  52450. From: mrbaker@hodcs.ho.att.com (-M.BAKER)
  52451. Subject: Question about ASK usage in MS-Kermit script
  52452. Message-Id: <CzLEG2.3Er@nntpa.cb.att.com>
  52453. Sender: news@nntpa.cb.att.com (Netnews Administration)
  52454. Nntp-Posting-Host: hodcs.ho.att.com
  52455. Organization: AT&T
  52456. Date: Mon, 21 Nov 1994 00:52:50 GMT
  52457. Lines: 20
  52458. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  52459.  
  52460. Hello:
  52461.  
  52462. I have a question about ASK.  I am writing an MS-Kermit 
  52463. script which prompts
  52464. the user to enter a filename, so I "ASK" for it.  No problem
  52465. there.  But I would like to be able to detect if the user merely
  52466. hits the ENTER key without typing anything else in first.
  52467.  
  52468. There is probably an obvious answer.  I have looked all over &
  52469. experimented with no success.  I am a new user of Kermit, hence I
  52470. am working from .HLP, .UPD, and .BWR while waiting for my copy
  52471. of "the book" to arrive.
  52472.  
  52473. Can someone please help? (Examples appreciated)
  52474.  
  52475. Thank you very much,
  52476. Maurice Baker
  52477. AT&T Bell Labs, Homdel
  52478. mrbaker  at  hodcs.att.com  (email preferred, but followups OK too)
  52479.  
  52480.  
  52481. From news@columbia.edu Sun Nov 20 17:52:33 1994
  52482. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17665
  52483.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 21 Nov 1994 05:40:32 -0500
  52484. Received: by apakabar.cc.columbia.edu id AA07192
  52485.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 21 Nov 1994 05:40:31 -0500
  52486. Path: news.columbia.edu!news.media.mit.edu!bloom-beacon.mit.edu!news.kei.com!hookup!relay.tor.hookup.net!newsadm
  52487. From: bangus@hookup.net (Brian F. Angus)
  52488. Newsgroups: comp.protocols.kermit.misc,alt.winsock
  52489. Subject: Re: winsock/pkt dvr hack possible?
  52490. Date: Sun, 20 Nov 94 22:52:33 est
  52491. Organization: hookup.net
  52492. Lines: 31
  52493. Message-Id: <3ap5jm$km8@relay.tor.hookup.net>
  52494. References: <3a67j8$j39@Mercury.mcs.com> <Pine.SUN.3.91.941118031532.9000A-100000@soleil> <3aiudg$pil@apakabar.cc.columbia.edu> <3anvci$dut@relay.tor.hook <1994Nov20.105834.33349@cc.usu.edu>
  52495. Nntp-Posting-Host: bangus.tor.hookup.net
  52496. Mime-Version: 1.0
  52497. X-Newsreader: WinVN 0.93.0
  52498. Xref: news.columbia.edu comp.protocols.kermit.misc:1149 alt.winsock:22495
  52499. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  52500.  
  52501. In article <1994Nov20.105834.33349@cc.usu.edu>, jrd@cc.usu.edu says...
  52502. >
  52503. >        Jeff is correct. The top of a sockets API is a TCP stream channel of
  52504. >bytes, not packets. "It could be done..." means creating a second TCP/IP
  52505. >stack feeding from the streams channel and packaging it into TCP/IP over
  52506. >Ethernet frames to be passed to the application. Not very desirable, nor 
  52507. >realistic.
  52508. >        Joe D.  
  52509.  
  52510.  
  52511. Many interesting projects arise from rather pointless objectives, and in
  52512. this case, I believe we have the perfect example of a truly pointless
  52513. objective.  But, to continue this one step further (yes I know this isn't
  52514. really attempting to solve the original problem), instead of trying to tie
  52515. into the Winsock API, would it be feasible or even possible tie a DOS packet
  52516. driver into the Windows based NDIS3 drivers (I believe MicroSoft's PPP
  52517. driver is only supplied as an NDIS3 Windows based driver).  It seems to me
  52518. there would still be the problem of multiplexing multiple IP stacks (very
  52519. undesireable).
  52520.  
  52521. Brian A.
  52522.  
  52523. P.S.  Just trying to promote some more interesting and irrelevant discussion.
  52524.  
  52525. -- 
  52526.  _---_   -------------------------------------------------------------------
  52527.  /o o\   Brian Angus                        Unsupported hack supporter - DEC
  52528. (  |  )  bangus@trooa.enet.dec.com          
  52529.  \_=_/   bangus@hookup.net                  The one with the most shims wins
  52530.          -------------------------------------------------------------------
  52531.  
  52532.  
  52533. From news@columbia.edu Sun Nov 20 12:43:40 1994
  52534. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17913
  52535.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 21 Nov 1994 05:49:42 -0500
  52536. Received: by apakabar.cc.columbia.edu id AA07654
  52537.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 21 Nov 1994 05:49:40 -0500
  52538. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!agate!dog.ee.lbl.gov!news.cs.utah.edu!cc.usu.edu!jrd
  52539. From: jrd@cc.usu.edu (Joe Doupnik)
  52540. Newsgroups: comp.protocols.kermit.misc
  52541. Subject: Re: Question about ASK usage in MS-Kermit script
  52542. Message-Id: <1994Nov20.184340.33391@cc.usu.edu>
  52543. Date: 20 Nov 94 18:43:40 MDT
  52544. References: <CzLEG2.3Er@nntpa.cb.att.com>
  52545. Organization: Utah State University
  52546. Lines: 23
  52547. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  52548.  
  52549. In article <CzLEG2.3Er@nntpa.cb.att.com>, mrbaker@hodcs.ho.att.com (-M.BAKER) writes:
  52550. > Hello:
  52551. > I have a question about ASK.  I am writing an MS-Kermit 
  52552. > script which prompts
  52553. > the user to enter a filename, so I "ASK" for it.  No problem
  52554. > there.  But I would like to be able to detect if the user merely
  52555. > hits the ENTER key without typing anything else in first.
  52556. > There is probably an obvious answer.  I have looked all over &
  52557. > experimented with no success.  I am a new user of Kermit, hence I
  52558. > am working from .HLP, .UPD, and .BWR while waiting for my copy
  52559. > of "the book" to arrive.
  52560. > Can someone please help? (Examples appreciated)
  52561. -----------
  52562.     ask \%a prompt>
  52563.     prompt> <user presses Enter so \%a is empty and therefore undefined>
  52564.     if equ "\%a" "" echo The user did not provide text
  52565. or    if defined \%a  echo The user did provide text
  52566. and so on. Don't use {\%a} {} because they will parse out to empty, leaving
  52567.  if equ echo The ... which is not what is wanted.
  52568.     Joe D.
  52569.  
  52570. From news@columbia.edu Mon Nov 21 06:39:07 1994
  52571. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18786
  52572.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 21 Nov 1994 07:53:42 -0500
  52573. Received: by apakabar.cc.columbia.edu id AA13920
  52574.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 21 Nov 1994 07:53:40 -0500
  52575. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!vixen.cso.uiuc.edu!news.uoregon.edu!netnews.nwnet.net!news.u.washington.edu!saul1.u.washington.edu!micah
  52576. From: Micah Anderson <micah@u.washington.edu>
  52577. Newsgroups: comp.protocols.kermit.misc
  52578. Subject: Is there anyway to quit kermit without hanging up?
  52579. Date: Sun, 20 Nov 1994 22:39:07 -0800
  52580. Organization: University of Washington
  52581. Lines: 14
  52582. Message-Id: <Pine.OSF.3.91a.941120223713.15730A-100000@saul1.u.washington.edu>
  52583. Nntp-Posting-Host: saul1.u.washington.edu
  52584. Mime-Version: 1.0
  52585. Content-Type: TEXT/PLAIN; charset=US-ASCII
  52586. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  52587.  
  52588.  
  52589. I am running kermit on ultrix 4.3 and I want to be able to call up with 
  52590. kermit and then quit kermit, but NOT hangup the modem - so I can then run 
  52591. slattach and start a slip connection. The reason I want to do this is 
  52592. because I cannot get the chat script for the slip.hosts to work and 
  52593. figured that if I can just call up with kermit and then get out of kermit 
  52594. but leave the tty attached but accessable via slattach I could then start 
  52595. slip going...
  52596.  
  52597. Thanks for any help!
  52598. Please if you can respond via email (micah@u.washington.edu)
  52599.  
  52600. Micah
  52601.  
  52602.  
  52603. From news@columbia.edu Mon Nov 21 06:46:39 1994
  52604. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18791
  52605.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 21 Nov 1994 07:53:58 -0500
  52606. Received: by apakabar.cc.columbia.edu id AA13931
  52607.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 21 Nov 1994 07:53:57 -0500
  52608. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!swrinde!sgiblab!cs.uoregon.edu!reuter.cse.ogi.edu!netnews.nwnet.net!news.u.washington.edu!saul1.u.washington.edu!micah
  52609. From: Micah Anderson <micah@u.washington.edu>
  52610. Newsgroups: comp.protocols.kermit.misc
  52611. Subject: Droped characters - flow control problem?
  52612. Date: Sun, 20 Nov 1994 22:46:39 -0800
  52613. Organization: University of Washington
  52614. Lines: 12
  52615. Message-Id: <Pine.OSF.3.91a.941120224428.15730B-100000@saul1.u.washington.edu>
  52616. Nntp-Posting-Host: saul1.u.washington.edu
  52617. Mime-Version: 1.0
  52618. Content-Type: TEXT/PLAIN; charset=US-ASCII
  52619. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  52620.  
  52621.  
  52622. I cannot figure out what to set up kermit to use as flow control. I have 
  52623. a 14.4 ZyXEL modem with a hardware handshaking cable and I've always set 
  52624. flow control to be Hardware Handshaking... Now that I am running kermit I 
  52625. am not sure what to set it at and because of this I get characters 
  52626. dropped and redrawing screens really is messy... Any ideas from 
  52627. experienced folks?
  52628.  
  52629. Thanks!
  52630.  
  52631. Micah
  52632.  
  52633.  
  52634. From news@columbia.edu Sat Nov 19 22:03:05 1994
  52635. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18967
  52636.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 21 Nov 1994 07:58:50 -0500
  52637. Received: by apakabar.cc.columbia.edu id AA14231
  52638.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 21 Nov 1994 07:58:49 -0500
  52639. Newsgroups: comp.protocols.kermit.misc
  52640. From: david@djwhome.demon.co.uk (David Woolley)
  52641. Path: news.columbia.edu!sol.ctr.columbia.edu!newsxfer.itd.umich.edu!gatech!swrinde!pipex!demon!djwhome.demon.co.uk!david
  52642. Subject: Telnet Data Mark displays as "r" on MSK 3.13.
  52643. Keywords: SCO 3.2V4.2, MS-Kermit 3.13, Telnet, Interrupt, Data Mark
  52644. Summary: SCO Unix sends Data Mark on interrupt.  MSK 3.13 P13 displays as r.
  52645. X-Mailer: cppnews $Revision: 1.42 $
  52646. Organization: Demon Subscriber at Home
  52647. Lines: 18
  52648. Date: Sat, 19 Nov 1994 22:03:05 +0000
  52649. Message-Id: <785307785snx@djwhome.demon.co.uk>
  52650. Sender: usenet@demon.co.uk
  52651. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  52652.  
  52653. When an interrupt signal is generated on our SCO machines
  52654. (3.2V4.2), MS-Kermit (3.13, patch about 13, but there are no
  52655. obvious fixes listed up to patch 20**) displays an "r".  NCSA
  52656. Telnet handles this correctly, and examining the event trace
  52657. shows that a Telnet Data Mark signal is being sent.
  52658.  
  52659. This happens for both Telnet interrupts, and interrupts generated
  52660. by sending the stty interrupt character.
  52661.  
  52662. This is really only a cosmetic problem, and normally results from
  52663. being too lazy to change the interrupt character or remap the
  52664. backspace key before talking to the machine in question.  It
  52665. doesn't happen for SunOS 4.1.1.
  52666.  
  52667. ** the patch level 20 file is at home, not in the office.
  52668. -- 
  52669. David Woolley, London, England                     david@djwhome.demon.co.uk
  52670. Demon supplies me with IP/SMTP/NNTP.  *.demon hosts are independently managed.
  52671.  
  52672. From news@columbia.edu Mon Nov 21 08:28:35 1994
  52673. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19969
  52674.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 21 Nov 1994 08:28:35 -0500
  52675. Received: by apakabar.cc.columbia.edu id AA16140
  52676.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 21 Nov 1994 08:28:33 -0500
  52677. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!quagga.ru.ac.za!ee.und.ac.za!ticsa.com!soren.aztec.co.za!soren
  52678. From: soren@aztec.co.za (Soren Aalto)
  52679. Newsgroups: comp.protocols.kermit.misc,alt.winsock
  52680. Subject: Re: winsock/pkt dvr hack possible?
  52681. Date: Mon, 21 Nov 1994 15:26:45
  52682. Organization: Linkdata
  52683. Lines: 24
  52684. Message-Id: <soren.222.000F72A1@aztec.co.za>
  52685. References: <3a67j8$j39@Mercury.mcs.com> <Pine.SUN.3.91.941118031532.9000A-100000@soleil> <3aiudg$pil@apakabar.cc.columbia.edu> <3anvci$dut@relay.tor.hookup.net> <1994Nov20.105834.33349@cc.usu.edu>
  52686. Nntp-Posting-Host: soren.aztec.co.za
  52687. X-Newsreader: Trumpet for Windows [Version 1.0 Rev A]
  52688. Xref: news.columbia.edu comp.protocols.kermit.misc:1154 alt.winsock:22527
  52689. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  52690.  
  52691. In article <1994Nov20.105834.33349@cc.usu.edu> jrd@cc.usu.edu (Joe Doupnik) writes:
  52692.  
  52693. >>>A packet driver on top of winsock makes no sense since winsock is not 
  52694. >>>protocol independent.  The best you could possibly hope for would be a 
  52695. >>>Telnet redirector for Windows DOS Sessions which communicates through 
  52696. >>>WinSock.
  52697. >> 
  52698. >> Actually, it could probably be done by filtering out the non TCP/IP
  52699. >> functionality, but it would be a very complicated bit of engineering.
  52700. >> You would likely have to write some nasty DOS interrupt redirection
  52701. >> code which would allow the DOS program to communicate directly to a native Windows 
  52702. >> WINSOCK application via the packet driver interrupt.  The WINSOCK application 
  52703. >> would act as a type of pass-through tunnel for the DOS application.  This may 
  52704. >> require the use of a custom VXD, I'm not sure.  I briefly looked into this but I 
  52705. >> have decided that my skill sets are not quite at a level required for this task.
  52706. >-------
  52707. >        Jeff is correct. The top of a sockets API is a TCP stream channel of
  52708. >bytes, not packets. "It could be done..." means creating a second TCP/IP
  52709. >stack feeding from the streams channel and packaging it into TCP/IP over
  52710. >Ethernet frames to be passed to the application. Not very desirable, nor 
  52711. >realistic.
  52712.  
  52713. ...but is similar to what is done inside TIA, if I am not mistaken.
  52714.  
  52715.  
  52716. From news@columbia.edu Mon Nov 21 08:33:25 1994
  52717. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20243
  52718.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 21 Nov 1994 08:33:25 -0500
  52719. Received: by apakabar.cc.columbia.edu id AA16446
  52720.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 21 Nov 1994 08:33:24 -0500
  52721. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!ee.und.ac.za!ticsa.com!soren.aztec.co.za!soren
  52722. From: soren@aztec.co.za (Soren Aalto)
  52723. Newsgroups: comp.protocols.kermit.misc,alt.winsock
  52724. Subject: Re: winsock/pkt dvr hack possible?
  52725. Date: Mon, 21 Nov 1994 15:31:44
  52726. Organization: Linkdata
  52727. Lines: 39
  52728. Message-Id: <soren.223.000F87E0@aztec.co.za>
  52729. References: <3a67j8$j39@Mercury.mcs.com> <3anvci$dut@relay.tor.hookup.net> <1994Nov20.105834.33349@cc.usu.edu> <p.waltenberg.1154.2ECFB2E0@irl.cri.nz> <3aoc2h$bit@apakabar.cc.columbia.edu>
  52730. Nntp-Posting-Host: soren.aztec.co.za
  52731. X-Newsreader: Trumpet for Windows [Version 1.0 Rev A]
  52732. Xref: news.columbia.edu comp.protocols.kermit.misc:1155 alt.winsock:22528
  52733. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  52734.  
  52735. In article <3aoc2h$bit@apakabar.cc.columbia.edu> jaltman@watsun.cc.columbia.edu (Jeffrey Altman) writes:
  52736.  
  52737. >>>        Jeff is correct. The top of a sockets API is a TCP stream channel of
  52738. >>>bytes, not packets. "It could be done..." means creating a second TCP/IP
  52739. >>>stack feeding from the streams channel and packaging it into TCP/IP over
  52740. >>>Ethernet frames to be passed to the application. Not very desirable, nor 
  52741. >>>realistic.
  52742. >>>        Joe D.  
  52743. >>
  52744. >>Actually acheiving the required functionality is pretty trivial, just run the 
  52745. >>winsock on top of a packet multiplexor on top of a packet driver instead. 
  52746. >>Using packet mux on top of the packet driver you can get packet drivers for 
  52747. >>DOS boxes plus a packet driver for Trumpet winsock. Pktmux can be found on 
  52748. >>biochemistry.cwru.edu. (and quite a few other sites).
  52749. >>The system has to be configured at the bottom (DOS) level to use packet 
  52750. >>drivers, but thats possible with nearly all configurations.
  52751. >>
  52752. >>I'll admit that going from Winsock to packet driver is nightmarish, but 
  52753. >>actually acheiving whats wanted , which is KA9Q in a DOS box with Winsock 
  52754. >>running isn't. Thats basically how my system is configured now.
  52755. >>
  52756.  
  52757. >But this doesn't address the original need.
  52758.  
  52759. >The original requirement was being able to run MS-DOS Kermit over a 
  52760. >WinSock interface when WinSock is active over a serial line connection
  52761. >made with Windows for Workgroups.
  52762.  
  52763. >In this circumstance, you don't have the packet multiplexor nor the 
  52764. >real packet driver for the mux to sit on.
  52765.  
  52766. And _that_ is the real problem.  I have wondered at times if the
  52767. TCP/IP stack functionality and the Comms/SLIP/PPP functionality
  52768. shouldn't be separated into two programs--you could have a
  52769. packet driver that "reflects" stuff & attach the comms driver
  52770. for SLIP/PPP/whatever to one side and Winsock to the other.
  52771.  
  52772.  
  52773.  
  52774.  
  52775. From news@columbia.edu Mon Nov 21 00:46:42 1994
  52776. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21700
  52777.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 21 Nov 1994 09:04:40 -0500
  52778. Received: by apakabar.cc.columbia.edu id AA18713
  52779.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 21 Nov 1994 09:04:39 -0500
  52780. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!udel!gatech!howland.reston.ans.net!agate!dog.ee.lbl.gov!news.cs.utah.edu!cc.usu.edu!jrd
  52781. From: jrd@cc.usu.edu (Joe Doupnik)
  52782. Newsgroups: comp.protocols.kermit.misc
  52783. Subject: Re: Droped characters - flow control problem?
  52784. Message-Id: <1994Nov21.064642.33428@cc.usu.edu>
  52785. Date: 21 Nov 94 06:46:42 MDT
  52786. References: <Pine.OSF.3.91a.941120224428.15730B-100000@saul1.u.washington.edu>
  52787. Organization: Utah State University
  52788. Lines: 11
  52789. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  52790.  
  52791. In article <Pine.OSF.3.91a.941120224428.15730B-100000@saul1.u.washington.edu>, Micah Anderson <micah@u.washington.edu> writes:
  52792. > I cannot figure out what to set up kermit to use as flow control. I have 
  52793. > a 14.4 ZyXEL modem with a hardware handshaking cable and I've always set 
  52794. > flow control to be Hardware Handshaking... Now that I am running kermit I 
  52795. > am not sure what to set it at and because of this I get characters 
  52796. > dropped and redrawing screens really is messy... Any ideas from 
  52797. > experienced folks?
  52798. ---------
  52799.     SET FLOW RTS/CTS in Kermit.
  52800.     Joe D.
  52801.  
  52802. From news@columbia.edu Mon Nov 21 15:27:54 1994
  52803. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27760
  52804.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 21 Nov 1994 10:48:28 -0500
  52805. Received: by apakabar.cc.columbia.edu id AA27811
  52806.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 21 Nov 1994 10:48:21 -0500
  52807. Path: news.columbia.edu!aloha.cc.columbia.edu!ycl6
  52808. From: ycl6@aloha.cc.columbia.edu (Yeechang Lee)
  52809. Newsgroups: comp.protocols.kermit.misc
  52810. Subject: Re: Droped characters - flow control problem?
  52811. Date: 21 Nov 1994 15:27:54 GMT
  52812. Organization: Trilateral Commission, Columbia University student chapter
  52813. Lines: 12
  52814. Message-Id: <3aqe9q$pfl@apakabar.cc.columbia.edu>
  52815. References: <Pine.OSF.3.91a.941120224428.15730B-100000@saul1.u.washington.edu> <1994Nov21.064642.33428@cc.usu.edu>
  52816. Reply-To: ycl6@columbia.edu
  52817. Nntp-Posting-Host: aloha-cddi.cc.columbia.edu
  52818. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  52819.  
  52820. In article <1994Nov21.064642.33428@cc.usu.edu>,
  52821. Joe Doupnik <jrd@cc.usu.edu> wrote:
  52822. |    SET FLOW RTS/CTS in Kermit.
  52823. |    Joe D.
  52824.  
  52825. Also be sure to lower the DTE rate appropriately if you're running a
  52826. relatively slow computer.  On my Tandy XT clone, I can't run my Intel
  52827. 144/144e 14.4k external modem faster than 19200, even with hardware
  52828. handshaking.
  52829. --   _____________________________________________________________________
  52830.      Yeechang Lee  (ycl6@columbia.edu)|Nevada Las Vegas Mission Jul'92-'94
  52831.      Columbia University/New York City|The Celestial Kingdom has Taco Bell
  52832.  
  52833. From news@columbia.edu Mon Nov 21 16:18:01 1994
  52834. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03071
  52835.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 21 Nov 1994 12:07:11 -0500
  52836. Received: by apakabar.cc.columbia.edu id AA05312
  52837.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 21 Nov 1994 12:07:10 -0500
  52838. Newsgroups: comp.protocols.kermit.misc
  52839. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!uhog.mit.edu!bloom-beacon.mit.edu!gatech!swrinde!pipex!uknet!liv!xchen
  52840. From: xchen@liverpool.ac.uk (Prof X. Chen)
  52841. Subject: Help: file transfer problem
  52842. Message-Id: <CzMLA2.K01@liverpool.ac.uk>
  52843. Sender: news@liverpool.ac.uk (News System)
  52844. Nntp-Posting-Host: uxg.liv.ac.uk
  52845. Organization: The University of Liverpool
  52846. X-Newsreader: TIN [version 1.2 PL2]
  52847. Date: Mon, 21 Nov 1994 16:18:01 GMT
  52848. Lines: 10
  52849. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  52850.  
  52851. I use MSKermit 3.13 for the communication between my PC and University
  52852. Unix system. When I use it to transfer files, it is ok to download
  52853. files to my PC in a reasonable speed. However, if I try to send files
  52854. to the remote system, the speed becomes very very slow and often do 
  52855. not work at all.
  52856.  
  52857. Could any expert out there tell me why. I use most default parameters
  52858. for file transfer.
  52859.  
  52860. WJ
  52861.  
  52862. From news@columbia.edu Mon Nov 21 17:13:54 1994
  52863. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03732
  52864.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 21 Nov 1994 12:14:00 -0500
  52865. Received: by apakabar.cc.columbia.edu id AA05965
  52866.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 21 Nov 1994 12:13:58 -0500
  52867. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  52868. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  52869. Newsgroups: comp.protocols.kermit.misc
  52870. Subject: Re: C-KERMIT 5A(190)
  52871. Date: 21 Nov 1994 17:13:54 GMT
  52872. Organization: Columbia University
  52873. Lines: 17
  52874. Message-Id: <3aqkgi$5q8@apakabar.cc.columbia.edu>
  52875. References: <wpfulmorCzIxxy.6EH@netcom.com>
  52876. Nntp-Posting-Host: watsun.cc.columbia.edu
  52877. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  52878.  
  52879. In article <wpfulmorCzIxxy.6EH@netcom.com>,
  52880. william p fulmor <wpfulmor@netcom.com> wrote:
  52881. >Last night (11/19/94) I grabbed ckuker.att7300 (don't laugh, it's paid 
  52882. >for & I've got 4 spares) from kermit.columbia.edu.  It's about 90K bigger 
  52883. >than the 5A(189) which I have been using for ~~6 months, but when run, 
  52884. >insists that it is 5A(189), not 5A(190) as expected.  
  52885. >
  52886. We will have to round up a new Kermit binary for the AT&T 7300.
  52887. Until then, we kept the old one there rather than having none at all.
  52888.  
  52889. If you build one yourself (using one of the many AT&T-specific C-Kermit
  52890. makefile entries), you could submit it yourself; otherwise I'll see
  52891. where else I can get one made.  (No, we do not have an example of every
  52892. computer in the world here at Columbia, so we "must rely on the kindness
  52893. of others"...
  52894.  
  52895. - Frank
  52896.  
  52897. From news@columbia.edu Mon Nov 21 17:19:20 1994
  52898. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04238
  52899.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 21 Nov 1994 12:19:25 -0500
  52900. Received: by apakabar.cc.columbia.edu id AA06734
  52901.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 21 Nov 1994 12:19:23 -0500
  52902. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  52903. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  52904. Newsgroups: comp.protocols.kermit.misc
  52905. Subject: Re: Is there anyway to quit kermit without hanging up?
  52906. Date: 21 Nov 1994 17:19:20 GMT
  52907. Organization: Columbia University
  52908. Lines: 25
  52909. Message-Id: <3aqkqo$6ia@apakabar.cc.columbia.edu>
  52910. References: <Pine.OSF.3.91a.941120223713.15730A-100000@saul1.u.washington.edu>
  52911. Nntp-Posting-Host: watsun.cc.columbia.edu
  52912. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  52913.  
  52914. In article <Pine.OSF.3.91a.941120223713.15730A-100000@saul1.u.washington.edu>,
  52915. Micah Anderson  <micah@u.washington.edu> wrote:
  52916. >I am running kermit on ultrix 4.3 and I want to be able to call up with 
  52917. >kermit and then quit kermit, but NOT hangup the modem - so I can then run 
  52918. >slattach and start a slip connection. The reason I want to do this is 
  52919. >because I cannot get the chat script for the slip.hosts to work and 
  52920. >figured that if I can just call up with kermit and then get out of kermit 
  52921. >but leave the tty attached but accessable via slattach I could then start 
  52922. >slip going...
  52923. >
  52924. Since UNIX is a "real operating system" -- unlike, say, DOS -- processes
  52925. close all open file handles when they exit.  So no, you can't use C-Kermit
  52926. on UNIX to open a connection and then exit and expect for it to be left
  52927. open, at least not unless you configure the modem to ignore DTR, and take
  52928. a few other esoteric steps, none of which are recommended as they pose
  52929. distinct security risks.
  52930.  
  52931. But there are several ways for C-Kermit to give access to its connection to
  52932. other processes, which are covered mostly in section 11 of the file
  52933. ckuker.bwr, which comes with C-Kermit 5A(190).  These include PUSHing from
  52934. C-Kermit, suspending C-Kermit, and forking (via ! or REDIRECT) other processes
  52935. from C-Kermit.  So read this material, and also read about the new (to edit
  52936. 190) REDIRECT command in the 5A(190) ckcker.upd file.
  52937.  
  52938. - Frank
  52939.  
  52940. From news@columbia.edu Mon Nov 21 03:00:47 1994
  52941. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04509
  52942.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 21 Nov 1994 12:23:04 -0500
  52943. Received: by apakabar.cc.columbia.edu id AA07198
  52944.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 21 Nov 1994 12:23:02 -0500
  52945. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!uhog.mit.edu!sgiblab!swrinde!howland.reston.ans.net!agate!dog.ee.lbl.gov!news.cs.utah.edu!cc.usu.edu!jrd
  52946. From: jrd@cc.usu.edu (Joe Doupnik)
  52947. Newsgroups: comp.protocols.kermit.misc
  52948. Subject: winsock, ndis, sundry
  52949. Message-Id: <1994Nov21.090047.33443@cc.usu.edu>
  52950. Date: 21 Nov 94 09:00:47 MDT
  52951. Organization: Utah State University
  52952. Lines: 15
  52953. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  52954.  
  52955.     Maybe the last of the winsock discussion here.
  52956.     Just so we are clear on things. Winsock is for pure Windows
  52957. programs, not for DOS programs. We say again, pure Windows programs.
  52958. And, I am unaware of any winsock implementation yet smart enough
  52959. to get the heck off the hardware when the last close occurs. They
  52960. all want to sit and occupy space and attachments whether used or not
  52961. (not to mention complaining bitterly if one of their friends isn't
  52962. ready when Windows starts). That puts these things in the category
  52963. of TSRs rather than upon-demand programs. I think the industry has
  52964. a step to go yet to clean up this act.
  52965.     NDIS 3 shims. Be my guest. First you need to decode NDIS 2,
  52966. and then the tangle constituting NDIS 3.
  52967.     Splitting MS-DOS Kermit into pieces. Won't happen, please forget
  52968. about the concept.
  52969.     Joe D.
  52970.  
  52971. From news@columbia.edu Mon Nov 21 01:43:13 1994
  52972. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04611
  52973.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 21 Nov 1994 12:24:40 -0500
  52974. Received: by apakabar.cc.columbia.edu id AA02127
  52975.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 21 Nov 1994 11:31:48 -0500
  52976. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!bloom-beacon.mit.edu!gatech!howland.reston.ans.net!agate!dog.ee.lbl.gov!news.cs.utah.edu!cc.usu.edu!jrd
  52977. From: jrd@cc.usu.edu (Joe Doupnik)
  52978. Newsgroups: comp.protocols.kermit.misc
  52979. Subject: Re: Telnet Data Mark displays as "r" on MSK 3.13.
  52980. Message-Id: <1994Nov21.074313.33432@cc.usu.edu>
  52981. Date: 21 Nov 94 07:43:13 MDT
  52982. References: <785307785snx@djwhome.demon.co.uk>
  52983. Organization: Utah State University
  52984. Lines: 35
  52985. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  52986.  
  52987. In article <785307785snx@djwhome.demon.co.uk>, david@djwhome.demon.co.uk (David Woolley) writes:
  52988. > When an interrupt signal is generated on our SCO machines
  52989. > (3.2V4.2), MS-Kermit (3.13, patch about 13, but there are no
  52990. > obvious fixes listed up to patch 20**) displays an "r".  NCSA
  52991. > Telnet handles this correctly, and examining the event trace
  52992. > shows that a Telnet Data Mark signal is being sent.
  52993. > This happens for both Telnet interrupts, and interrupts generated
  52994. > by sending the stty interrupt character.
  52995. > This is really only a cosmetic problem, and normally results from
  52996. > being too lazy to change the interrupt character or remap the
  52997. > backspace key before talking to the machine in question.  It
  52998. > doesn't happen for SunOS 4.1.1.
  52999. > ** the patch level 20 file is at home, not in the office.
  53000. --------
  53001.     Data Marks are rather rare events, but you ought not have seen
  53002. an "r" as a consequence. DMARK is 242 decimal, which after chopping the
  53003. high bit yields 114 decimal "r". But the DMARK should have been sent as
  53004. IAC DMARK (255 242), and the Kermit Telnet code would (quotes) have absorbed
  53005. both bytes.
  53006.     If you are still reading along, the way I understand this situation 
  53007. is the SCO machine was trying to flush bytes sent to the MSK client, by 
  53008. sending IAC DMARK in a TCP segment with the TCP URGENT bit set. The recepient
  53009. is supposed to discard all data up to and including the IAC DMARK. Folks have 
  53010. commented upon this less than clear or desirable "feature" of Telnet, and 
  53011. Kermit does not play that game. Just how much discarding should occur is 
  53012. ambiguous, and I chose not to chase down internal buffers to do the flush. 
  53013. In any case, the commands are really intended to be sent to servers where a 
  53014. job may be blocked unable to read the data stream for the Interrupt Process 
  53015. command pair IAC IP or similar; they ought not be sent to clients.
  53016.     If you still have the trace I'd appreciate receiving a copy.
  53017.     Thanks,
  53018.     Joe D.
  53019.  
  53020. From news@columbia.edu Mon Nov 21 17:27:00 1994
  53021. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04823
  53022.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 21 Nov 1994 12:27:07 -0500
  53023. Received: by apakabar.cc.columbia.edu id AA07530
  53024.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 21 Nov 1994 12:27:04 -0500
  53025. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  53026. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  53027. Newsgroups: comp.protocols.kermit.misc
  53028. Subject: Re: Droped characters - flow control problem?
  53029. Date: 21 Nov 1994 17:27:00 GMT
  53030. Organization: Columbia University
  53031. Lines: 23
  53032. Message-Id: <3aql94$7ar@apakabar.cc.columbia.edu>
  53033. References: <Pine.OSF.3.91a.941120224428.15730B-100000@saul1.u.washington.edu>
  53034. Nntp-Posting-Host: watsun.cc.columbia.edu
  53035. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  53036.  
  53037. In article <Pine.OSF.3.91a.941120224428.15730B-100000@saul1.u.washington.edu>,
  53038. Micah Anderson  <micah@u.washington.edu> wrote:
  53039. >
  53040. >I cannot figure out what to set up kermit to use as flow control. I have 
  53041. >a 14.4 ZyXEL modem with a hardware handshaking cable and I've always set 
  53042. >flow control to be Hardware Handshaking... Now that I am running kermit I 
  53043. >am not sure what to set it at and because of this I get characters 
  53044. >dropped and redrawing screens really is messy... Any ideas from 
  53045. >experienced folks?
  53046. >
  53047. Modem configuration is always a pain, especially with the newer modems.
  53048.  
  53049. If you are using MS-DOS Kermit, you can get a Zyxel dialing script for it
  53050. that sets up the modem and Kermit for optimal performance.  This script
  53051. comes with MS-DOS Kermit 3.14 Beta, available via anonymous ftp to host
  53052. kermit.columbia.edu, directory kermit/test/bin, binary mode, file mstibm.zip.
  53053. Unzip with "-d" switch.  Install according to directions in the top-level
  53054. READ.ME file.  Then just tell Kermit to "set modem zyxel" and DIAL.
  53055.  
  53056. Remember this is still a beta version; report any problems via e-mail to
  53057. kermit@columbia.edu.
  53058.  
  53059. - Frank
  53060.  
  53061. From news@columbia.edu Mon Nov 21 17:31:42 1994
  53062. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05353
  53063.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 21 Nov 1994 12:31:46 -0500
  53064. Received: by apakabar.cc.columbia.edu id AA08008
  53065.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 21 Nov 1994 12:31:44 -0500
  53066. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  53067. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  53068. Newsgroups: comp.protocols.kermit.misc
  53069. Subject: Re: Help: file transfer problem
  53070. Date: 21 Nov 1994 17:31:42 GMT
  53071. Organization: Columbia University
  53072. Lines: 32
  53073. Message-Id: <3aqlhu$7q6@apakabar.cc.columbia.edu>
  53074. References: <CzMLA2.K01@liverpool.ac.uk>
  53075. Nntp-Posting-Host: watsun.cc.columbia.edu
  53076. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  53077.  
  53078. In article <CzMLA2.K01@liverpool.ac.uk>,
  53079. Prof X. Chen <xchen@liverpool.ac.uk> wrote:
  53080. >I use MSKermit 3.13 for the communication between my PC and University
  53081. >Unix system. When I use it to transfer files, it is ok to download
  53082. >files to my PC in a reasonable speed. However, if I try to send files
  53083. >to the remote system, the speed becomes very very slow and often do 
  53084. >not work at all.
  53085. >
  53086. This type of question is answered clearly and at length in the documentation.
  53087. Very briefly:  There are five major items to be considered:
  53088.  
  53089.  1. Interface speed -- use the highest possible speed, lock your modem
  53090.     at that speed, and also enable its error-correction and data compression
  53091.     features.
  53092.  
  53093.  2. Flow control -- use the most effective possible means thereof, such as
  53094.     RTS/CTS.
  53095.  
  53096.  3. Use long packets.  Tell the Kermit program which is *receiving* the file
  53097.     to "set receive packet-length 2000" (or whatever other number works best).
  53098.  
  53099.  4. Use sliding windows.  Tell *both* Kermit programs to "set window 4"
  53100.     (or other number).
  53101.  
  53102.  5. Read about control-character unprefixing in the update notes files that
  53103.     come with the current releases of C-Kermit and MS-DOS Kermit.
  53104.  
  53105. Items 1 and 2 are handled automatically by the dialing scripts for high-speed
  53106. modems that come with MS-DOS Kermit.  Items 3-5 require some experimentation
  53107. to obtain the maximum transfer rate possible on any given connection.
  53108.  
  53109. - Frank
  53110.  
  53111. From news@columbia.edu Mon Nov 21 18:11:24 1994
  53112. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09512
  53113.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 21 Nov 1994 13:28:00 -0500
  53114. Received: by apakabar.cc.columbia.edu id AA13672
  53115.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 21 Nov 1994 13:27:57 -0500
  53116. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!europa.eng.gtefsd.com!howland.reston.ans.net!vixen.cso.uiuc.edu!mrcnext.cso.uiuc.edu!zinzow
  53117. From: zinzow@mrcnext.cso.uiuc.edu (Mark S. Zinzow)
  53118. Newsgroups: comp.protocols.kermit.misc
  53119. Subject: Re: kermit icon
  53120. Date: 21 Nov 1994 18:11:24 GMT
  53121. Organization: University of Illinois at Urbana
  53122. Lines: 11
  53123. Message-Id: <3aqnsc$ohs@vixen.cso.uiuc.edu>
  53124. References: <3ajmto$c7o@aggedor.rmit.EDU.AU>
  53125. Nntp-Posting-Host: mrcnext.cso.uiuc.edu
  53126. Keywords: kermit icon
  53127. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  53128.  
  53129. s923796@minyos.xx.rmit.EDU.AU (David Anthony Sexton) writes:
  53130. >Hi all, I am looking for a cute green frog to add to my desktop.
  53131. >Preferably with Kermit's looks in face or torso. Does the latest
  53132. >versions of Kermit have this already?
  53133.  
  53134. There are a lot of nifty frog pictures on the World Wide Web.
  53135. A good source is Sandra Loosemore's Froggy Page
  53136. http://www.cs.yale.edu/HTML/YALE/CS/HyPlans/loosemore-sandra/froggy.html
  53137. I've converted one of her drawings to a decent Kermit icon which you
  53138. can access from my (under construction)    kermit page:
  53139. http://ux1.cso.uiuc.edu/~zinzow/kermit.html
  53140.  
  53141. From news@columbia.edu Mon Nov 21 21:07:34 1994
  53142. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25777
  53143.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 21 Nov 1994 17:07:38 -0500
  53144. Received: by apakabar.cc.columbia.edu id AA18264
  53145.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 21 Nov 1994 17:07:33 -0500
  53146. Newsgroups: comp.protocols.kermit.misc
  53147. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!hookup!swrinde!howland.reston.ans.net!math.ohio-state.edu!caen!hearst.acc.Virginia.EDU!murdoch!fulton.seas.Virginia.EDU!esh6h
  53148. From: esh6h@fulton.seas.Virginia.EDU (Erik Hatcher)
  53149. Subject: Re: Is there anyway to quit kermit without hanging up?
  53150. Message-Id: <CzMyoM.38v@murdoch.acc.Virginia.EDU>
  53151. Sender: usenet@murdoch.acc.Virginia.EDU
  53152. Organization: University of Virginia
  53153. References: <Pine.OSF.3.91a.941120223713.15730A-100000@saul1.u.washington.edu> <3aqkqo$6ia@apakabar.cc.columbia.edu>
  53154. Date: Mon, 21 Nov 1994 21:07:34 GMT
  53155. Lines: 17
  53156. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  53157.  
  53158.  
  53159. In VMS you can "exit" C-Kermit and keep the modem allocated.
  53160.  
  53161. I use the VMS ALLOCATE command and then go into Kermit and exit,
  53162. then go into Kermit again and when I'm done I DEALLOCATE.
  53163.  
  53164. Works like a charm and is extremely useful for my particular
  53165. application (queuing files to send to various "nodes" but
  53166. keeping the connection up in case the next file queued is
  53167. for the same node!).
  53168.  
  53169.     Erik
  53170. --
  53171. Erik Hatcher                           + "But every now and then we just have
  53172. http://fulton.seas.virginia.edu/~esh6h |  to howl with the wolves." 
  53173.                                        |        - Werner Heisenberg
  53174. ---------------------------------------+-------------------------------------
  53175.  
  53176. From news@columbia.edu Mon Nov 21 22:24:00 1994
  53177. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28371
  53178.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 21 Nov 1994 17:33:54 -0500
  53179. Received: by apakabar.cc.columbia.edu id AA21058
  53180.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 21 Nov 1994 17:33:51 -0500
  53181. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  53182. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  53183. Newsgroups: comp.protocols.kermit.misc
  53184. Subject: MS-DOS Kermit 3.14 Beta 14 ready for testing
  53185. Date: 21 Nov 1994 22:24:00 GMT
  53186. Organization: Columbia University
  53187. Lines: 49
  53188. Message-Id: <3ar6m0$jmt@apakabar.cc.columbia.edu>
  53189. Nntp-Posting-Host: watsun.cc.columbia.edu
  53190. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  53191.  
  53192. MS-DOS Kermit 3.14 Beta-14 is available for anonymous ftp from
  53193. kermit.columbia.edu as of Monday, 21 November 1994, 5:00pm EST:
  53194.  
  53195.   kermit/test/bin/mstibm.zip  - Binary ZIP file
  53196.   kermit/test/text/mstibm.uue - Uuencoded ZIP file
  53197.   kermit/test/text/mstibm.boo - BOO-encoded ZIP file
  53198.  
  53199. The UUE and BOO files are also available on BITNET from KERMSRV at CUVMA.
  53200.  
  53201. Changes and fixes since Beta-12 ( there was no Beta-13 :-) include:
  53202.    
  53203. 1. Final touches added to SET CARRIER detection for rapid reaction.
  53204.  
  53205. 2. Found and fixed the recent slowdown for real serial ports (too long a
  53206.    delay when waiting for the UART transmitter to become free).  ZIP-file
  53207.    throughput dropped to 600-700 file characters per second, rather than
  53208.    the usual 1600 or so with a 14,400 bps modem (when Kermit protocol is
  53209.    tuned for peak performance and you have a buffered UART, etc).
  53210.  
  53211. 3. Added new built-in DIAL command.  This looks for a macro of the same
  53212.    name (such as the one defined in the standard MSKERMIT.INI file), and
  53213.    executes it with the given phone number as its argument(s).  If no DIAL
  53214.    macro is defined then a simple internal macro named __DIAL is run
  53215.    instead.  This allows at least some form of dialing to be done under
  53216.    program control even when KERMIT.EXE is run "bare" with no macros
  53217.    defined.  The only assumption made by the built-in DIAL macro is that
  53218.    ATD<phone-number><CR> is the dialing command.  See (the new) section
  53219.    1.2 of the KERMIT.UPD file for details.
  53220.  
  53221. 4. Cured a bug when "\FOOBAR" or other word beginning with \F (upper or
  53222.    lower case), but not one of the \function()s, occurs in certain
  53223.    commands, especially in SET PROMPT.
  53224.  
  53225. 5. Fixed a bug in sending packets over a seven bit channel with locking
  53226.    shifts active. A packet could be one byte longer than a "regular" one
  53227.    and be sent in long packet format by mistake.
  53228.    
  53229. 6. Fixed a bug in packet capabilities fields which could prevent a client
  53230.    from requesting file type Binary automatically.
  53231.    
  53232. 7. Minor fixes to Cyrillic .INI files, addition of a SHORTKOI.TBL file.
  53233.  
  53234. Still more thanks to Joe Doupnik for his continuing work on this project
  53235. and his responsiveness to beta testing reports.
  53236.  
  53237. Please continue to send reports by e-mail to kermit@columbia.edu.  Let's
  53238. give this one a good workout in hopes that it might be the final Beta!
  53239.  
  53240. - Frank
  53241.  
  53242. From news@columbia.edu Mon Nov 21 04:54:30 1994
  53243. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02974
  53244.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 21 Nov 1994 18:44:36 -0500
  53245. Received: by apakabar.cc.columbia.edu id AA28253
  53246.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 21 Nov 1994 18:44:34 -0500
  53247. Path: news.columbia.edu!news.media.mit.edu!bloom-beacon.mit.edu!spool.mu.edu!agate!overload.lbl.gov!dog.ee.lbl.gov!news.cs.utah.edu!cc.usu.edu!jrd
  53248. From: jrd@cc.usu.edu (Joe Doupnik)
  53249. Newsgroups: comp.protocols.kermit.misc,alt.winsock
  53250. Subject: Re: winsock/pkt dvr hack possible?
  53251. Message-Id: <1994Nov21.105430.33454@cc.usu.edu>
  53252. Date: 21 Nov 94 10:54:30 MDT
  53253. References: <3a67j8$j39@Mercury.mcs.com> <3anvci$dut@relay.tor.hookup.net>  <soren.223.000F87E0@aztec.co.za>
  53254. Organization: Utah State University
  53255. Lines: 29
  53256. Xref: news.columbia.edu comp.protocols.kermit.misc:1168 alt.winsock:22603
  53257. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  53258.  
  53259. In article <soren.223.000F87E0@aztec.co.za>, soren@aztec.co.za (Soren Aalto) writes:
  53260. > In article <3aoc2h$bit@apakabar.cc.columbia.edu> jaltman@watsun.cc.columbia.edu (Jeffrey Altman) writes:
  53261. >>>>        Jeff is correct. The top of a sockets API is a TCP stream channel of
  53262. >>>>bytes, not packets. "It could be done..." means creating a second TCP/IP
  53263. >>>>stack feeding from the streams channel and packaging it into TCP/IP over
  53264. >>>>Ethernet frames to be passed to the application. Not very desirable, nor 
  53265. >>>>realistic.
  53266. >>>>        Joe D.  
  53267.     <huge amount of repeated material omitted>
  53268. > And _that_ is the real problem.  I have wondered at times if the
  53269. > TCP/IP stack functionality and the Comms/SLIP/PPP functionality
  53270. > shouldn't be separated into two programs--you could have a
  53271. > packet driver that "reflects" stuff & attach the comms driver
  53272. > for SLIP/PPP/whatever to one side and Winsock to the other.
  53273. -----------
  53274.     Nice idea but not practical here. There are a great many
  53275. coupling threads (variables, calls) between the high level and comms
  53276. level material in Kermit so that control may be exercised and speed
  53277. retained. And there is much more to comms than serial or the internal
  53278. TCP/IP stack; SET PORT exhibits the list (and some choices transparently
  53279. encompass two or three variations from the same vendor).
  53280.     Winsock is for pure Windows programs, not for DOS programs.
  53281.     MS-DOS Kermit removes itself from comms channels when done with
  53282. them. Few commercial TCP/IP stacks do so (none that I know of). Were
  53283. winsock guys to get off the pot when done the problem would be smaller.
  53284. So please consider hounding your winsock vendor to go un-TSR upon last
  53285. close and to not be present until an application makes a demand.
  53286.     Joe D. 
  53287.  
  53288. From news@columbia.edu Tue Nov 22 03:26:02 1994
  53289. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16094
  53290.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 21 Nov 1994 23:01:22 -0500
  53291. Received: by apakabar.cc.columbia.edu id AA21685
  53292.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 21 Nov 1994 23:01:21 -0500
  53293. Newsgroups: comp.protocols.kermit.misc
  53294. Path: news.columbia.edu!sol.ctr.columbia.edu!newsxfer.itd.umich.edu!gatech!howland.reston.ans.net!news.sprintlink.net!news.dorsai.org!vkwan
  53295. From: vkwan@dorsai.org (Vito Kwan)
  53296. Subject: re-dial in kermit 3.12
  53297. Message-Id: <CznG7G.1ty@dorsai.org>
  53298. Organization: The Dorsai Embassy - New York
  53299. X-Newsreader: TIN [version 1.2 PL2]
  53300. Date: Tue, 22 Nov 1994 03:26:02 GMT
  53301. Lines: 8
  53302. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  53303.  
  53304. Hi all,
  53305.    I am using MS-DOS kermit on my PC and try to find out how to re-dial a
  53306. phone number at a certain time interval, like 5-seconds.
  53307.    Could someone please give me some hints?
  53308.    Thanks in advance.
  53309.  
  53310. V. Kwan
  53311. vkwan@dorsai.org
  53312.  
  53313. From news@columbia.edu Tue Nov 22 02:36:43 1994
  53314. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22279
  53315.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 22 Nov 1994 00:34:34 -0500
  53316. Received: by apakabar.cc.columbia.edu id AA00208
  53317.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 22 Nov 1994 00:34:33 -0500
  53318. Newsgroups: comp.protocols.kermit.misc
  53319. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!news.alpha.net!uwm.edu!lll-winken.llnl.gov!noc.near.net!black.clarku.edu!black.clarku.edu!kdesai
  53320. From: kdesai@black.clarku.edu (Kamalkumar R. Desai)
  53321. Subject: Help with autodial in MSKERMIT - V3.11 DOS
  53322. Message-Id: <kdesai.785471803@black.clarku.edu>
  53323. Organization: Clark University (Worcester, MA)
  53324. Date: 22 Nov 94 02:36:43 GMT
  53325. Lines: 22
  53326. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  53327.  
  53328. Hi,
  53329. I am using DOS 6.22 and MSKERMIT V3.11 (Yes I will get 3.14 soon),
  53330. I have written a small script to call my school using my modem and once
  53331. connects types my username and password and logs me in. It works fine but
  53332. I would like to start it from DOS prompt, i.e. 
  53333. type "LOGMEIN.BAT" and this file should have one line.
  53334.  
  53335. KERMIT SCHOOL.TAK
  53336.  
  53337. That does works too i.e. I can start it from C:>/ prompt and would put me
  53338. to my school $ prompt on vax. However whenever I hit Alt-X (Escape 
  53339. sequence) it puts me to DOS prompt rather then MS-KERMIT> prompt. I normally
  53340. start KERMIT again and now I am at MS-KERMIT> prompt and can do file transfers.
  53341.  
  53342. I am sure there is a way to do it so that it won't kick me out to DOS. I looked
  53343. into Manual (Using Kermit.. F. Da'Cruz book) and README files but no avail.
  53344. Any help is welcome.
  53345.  
  53346. Kamal Desai
  53347. Clark Univ.
  53348. Worcester, MA 01610.
  53349.  
  53350.  
  53351. From news@columbia.edu Tue Nov 22 06:12:33 1994
  53352. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24789
  53353.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 22 Nov 1994 01:23:40 -0500
  53354. Received: by apakabar.cc.columbia.edu id AA02936
  53355.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 22 Nov 1994 01:23:38 -0500
  53356. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!zombie.ncsc.mil!romulus.ncsc.mil!not-for-mail
  53357. From: richh@romulus.ncsc.mil (Richard L. Hamilton)
  53358. Newsgroups: comp.protocols.kermit.misc
  53359. Subject: Re: C-KERMIT 5A(190)
  53360. Date: 22 Nov 1994 01:12:33 -0500
  53361. Organization: ncsc
  53362. Lines: 20
  53363. Message-Id: <3as24h$q76@romulus.ncsc.mil>
  53364. References: <wpfulmorCzIxxy.6EH@netcom.com> <3aqkgi$5q8@apakabar.cc.columbia.edu>
  53365. Nntp-Posting-Host: romulus.ncsc.mil
  53366. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  53367.  
  53368. In article <3aqkgi$5q8@apakabar.cc.columbia.edu>,
  53369. Frank da Cruz <fdc@watsun.cc.columbia.edu> wrote:
  53370. [...]
  53371. >We will have to round up a new Kermit binary for the AT&T 7300.
  53372. >Until then, we kept the old one there rather than having none at all.
  53373. >
  53374. >If you build one yourself (using one of the many AT&T-specific C-Kermit
  53375. >makefile entries), you could submit it yourself; otherwise I'll see
  53376. >where else I can get one made.  (No, we do not have an example of every
  53377. >computer in the world here at Columbia, so we "must rely on the kindness
  53378. >of others"...
  53379.  
  53380. If whoever provides one would be kind enough to post when it's available,
  53381. I'd appreciate it.  I'd rebuild it myself, having gcc and most other goodies,
  53382. but the one goody I don't have right now is enough disk space :-(
  53383.  
  53384. -- 
  53385.                       I compute, therefore I am.
  53386. My opinions are strictly by own, and should not be construed to represent
  53387. anyone else.
  53388.  
  53389. From news@columbia.edu Tue Nov 22 06:56:35 1994
  53390. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28626
  53391.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 22 Nov 1994 03:06:39 -0500
  53392. Received: by apakabar.cc.columbia.edu id AA07023
  53393.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 22 Nov 1994 03:06:38 -0500
  53394. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!swrinde!pipex!uunet!psinntp!barilvm!vms.huji.ac.il!marder.agri.huji.ac.il!MARDER
  53395. Newsgroups: comp.protocols.kermit.misc
  53396. Subject: Re: kermit icon
  53397. Message-Id: <MARDER.291.2ED19623@agri.huji.ac.il>
  53398. From: MARDER@agri.huji.ac.il (Jonathan B. Marder)
  53399. Date: Tue, 22 Nov 1994 06:56:35 GMT
  53400. References: <3ajmto$c7o@aggedor.rmit.EDU.AU> <1994Nov19.201531.33339@cc.usu.edu>
  53401. Distribution: world
  53402. Organization: The Hebrew University of Jerusalem
  53403. Nntp-Posting-Host: marder.agri.huji.ac.il
  53404. X-Newsreader: Trumpet for Windows [Version 1.0 Rev B final beta #4]
  53405. Lines: 48
  53406. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  53407.  
  53408. In article <1994Nov19.201531.33339@cc.usu.edu> jrd@cc.usu.edu (Joe Doupnik) writes:
  53409. >Subject: Re: kermit icon
  53410. >From: jrd@cc.usu.edu (Joe Doupnik)
  53411. >Date: 19 Nov 94 20:15:30 MDT
  53412.  
  53413. >In article <3ajmto$c7o@aggedor.rmit.EDU.AU>, s923796@minyos.xx.rmit.EDU.AU
  53414. >(David Anthony Sexton) writes:
  53415. >> Hi all, I am looking for a cute green frog to add to my desktop.
  53416. >> Preferably with Kermit's looks in face or torso. Does the latest
  53417. >> versions of Kermit have this already?
  53418. >> Dave.
  53419. >---------
  53420. >        Please wait for the formal release. No, no frogs in the icon. Maybe
  53421. >you want to create your own.
  53422. >        Joe D.
  53423.  
  53424. For what it's worth, here's my own icon ...
  53425. __
  53426. Jonathan B. Marder                 '
  53427. Department of Agricultural Botany  |     Internet: MARDER@agri.huji.ac.il
  53428. The Hebrew University of Jerusalem | /\/ Bitnet:   MARDER@HUJIAGRI
  53429. Faculty of Agriculture             |/  \ Phone:    (08 or +9728) 481918
  53430. P.O.Box 12, Rehovot 76100, ISRAEL  /     Fax:      (08 or +9728) 467763
  53431. UUENCODED by Trumpet for Windows [Version 1.0 Rev B final beta #4]
  53432.  
  53433. BEGIN--cut here--cut here----
  53434. begin 640 KERMIT.ICO
  53435. M```!``$`("`0``````#H`@``%@```"@````@````0`````$`!```````@`(`
  53436. M``````````````````````````````"```"`````@(``@````(``@`"`@```
  53437. M@("``,#`P````/\``/\```#__P#_````_P#_`/__``#___\`````````````
  53438. M```````````````````````````````(=W=W=W=W=W=W!W=W=W=P"'=W=W=W
  53439. M=W=W=P=W<`=W<`AP=P=P=P=W=W<````````(<'<'<'<'=W=W!W=P!WIP"'!W
  53440. M!W!W!W=W=P````````AW=W=W=W=W=W<'=W=W=W`(<```=W=ZIZIW!W=P!W=P
  53441. M"'```'=W>J>J=P````````B(B(B(B(B(B(@'=W`'>G``````````````````
  53442. M`````````(=W=W=W=W=W``````````````````````````````AW=W=W=W=W
  53443. M=W=W=P````"'``````````````!P````@/_____________P<````(#___\B
  53444. M(B(B+___\'````"`__(B(IF9DB(B__!P````@/\B*9F9F9F9(B_P<````(#R
  53445. M(IF9(B(IF9(B\'````"`\B(B(B(B(B(B(O!P````@/(O_P(B(B+_\"+P<```
  53446. M`(#R__``(B(O_P`"\'````"`\O_P`"(B+_\``O!P````@/(O_P(B(B+_\"+P
  53447. M<````(#_(B(B___R(B(O\'````"`#_____________!P````AP``````````
  53448. M```'<`````AW=W=W=W=W=W=W=P``````````````````````````````````
  53449. M``````````#_____````````````````````````````````````````````
  53450. M``````````````#^``!_\```!^````/@```#X````^````/@```#X````^``
  53451. M``/@```#X````^````/@```#X````^````/@```#X````^````/P```'____
  53452. !_P``
  53453. `
  53454. end
  53455. END--cut here--cut here----
  53456.  
  53457. From news@columbia.edu Tue Nov 22 00:00:33 1994
  53458. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28975
  53459.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 22 Nov 1994 03:19:10 -0500
  53460. Received: by apakabar.cc.columbia.edu id AA07532
  53461.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 22 Nov 1994 03:19:03 -0500
  53462. Newsgroups: comp.protocols.kermit.misc
  53463. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!bloom-beacon.mit.edu!gatech!howland.reston.ans.net!news.sprintlink.net!EU.net!sun4nl!echelon!kees
  53464. From: kees@echelon.nl (Kees Hendrikse)
  53465. Subject: Re: Can Kermit run on OS2 Warp?
  53466. Organization: Echelon Consultancy, Enschede, The Netherlands
  53467. Date: Tue, 22 Nov 1994 00:00:33 GMT
  53468. Message-Id: <Czn6ox.2x1@echelon.nl>
  53469. References: <3aoqi2$1m6@apakabar.cc.columbia.edu>
  53470. Lines: 16
  53471. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  53472.  
  53473. In <3aoqi2$1m6@apakabar.cc.columbia.edu> Jeffrey Altman writes:
  53474.  
  53475. >                             MS-DOS Kermit's network capabilities
  53476. > do not work in a DOS session unless you can dedicate a separate 
  53477. > network card to that session.
  53478.  
  53479. Not entirely true, there are ways to use MS-Kermit's network capabilities.
  53480. For example, I run multiple MS-Kermit sessions with NVT (Netware Virtual
  53481. Terminal) over a global IPX/ODI stack on OS/2, talking to a SCO Unix host
  53482. that's running an SPX/IPX stack. :-)
  53483.  
  53484. -- 
  53485. Kees Hendrikse                                | email:   kees@echelon.nl
  53486.                                               |
  53487. ECHELON consultancy and software development  | phone: +31 (0)53 836 585
  53488. PO Box 545, 7500AM Enschede, The Netherlands  | fax:   +31 (0)53 337 415
  53489.  
  53490. From news@columbia.edu Tue Nov 22 02:23:56 1994
  53491. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29046
  53492.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 22 Nov 1994 03:21:13 -0500
  53493. Received: by apakabar.cc.columbia.edu id AA07598
  53494.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 22 Nov 1994 03:21:12 -0500
  53495. Newsgroups: comp.protocols.kermit.misc
  53496. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!uhog.mit.edu!sgiblab!cs.uoregon.edu!reuter.cse.ogi.edu!netnews.nwnet.net!serval.net.wsu.edu!serval.net.wsu.edu.!chang
  53497. From: chang@theta.math.wsu.edu (Ching Mo Chang)
  53498. Subject: Re: Help: file transfer problem
  53499. In-Reply-To: fdc@watsun.cc.columbia.edu's message of 21 Nov 1994 17:31:42 GMT
  53500. Message-Id: <CHANG.94Nov21182356@theta.math.wsu.edu>
  53501. Sender: news@serval.net.wsu.edu (News)
  53502. Organization: Washington State University
  53503. References: <CzMLA2.K01@liverpool.ac.uk> <3aqlhu$7q6@apakabar.cc.columbia.edu>
  53504. Date: Tue, 22 Nov 1994 02:23:56 GMT
  53505. Lines: 30
  53506. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  53507.  
  53508. >>>>> "Frank" == Frank da Cruz <fdc@watsun.cc.columbia.edu> writes:
  53509.  
  53510.     Frank> In article <CzMLA2.K01@liverpool.ac.uk>, Prof X. Chen
  53511.     Frank> <xchen@liverpool.ac.uk> wrote:
  53512.         >> I use MSKermit 3.13 for the communication between my PC and
  53513.         >> University Unix system. When I use it to transfer files, it is
  53514.         >> ok to download files to my PC in a reasonable speed. However,
  53515.         >> if I try to send files to the remote system, the speed becomes
  53516.         >> very very slow and often do not work at all.
  53517.         >> 
  53518.     Frank> This type of question is answered clearly and at length in
  53519.     Frank> the documentation.  Very briefly: There are five major
  53520.     Frank> items to be considered:
  53521.  
  53522.     Frank>  1. Interface speed -- use the highest possible speed,.......
  53523.     Frank>  2. Flow control -- use the most effective possible means......
  53524.     Frank>  3. Use long packets.  Tell the Kermit program which is......
  53525.     Frank>  4. Use sliding windows.  Tell *both* Kermit programs to........
  53526.     Frank>  5. Read about control-character unprefixing in the update
  53527.     Frank>     notes files that come with the current releases of C-Kermit
  53528.     Frank>     and MS-DOS Kermit.
  53529.  
  53530.  
  53531. I also have the file upload problem with MS-Kermit (Also C-Kermit in OS/2),
  53532. I can download file with packets length at 5012, but when I use the same
  53533. setting to upload file I got lots of timeout and eventually end up too many
  53534. retries error and fail to upload file. If I really need to upload file, I
  53535. need to increase the retry limit and set the packets length to 92, let the
  53536. file crawl from my PC to the host or I will just paste the file into an editor
  53537. in my host side (only work in ASCII file).
  53538.  
  53539. From news@columbia.edu Mon Nov 21 19:45:23 1994
  53540. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02528
  53541.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 22 Nov 1994 04:48:52 -0500
  53542. Received: by apakabar.cc.columbia.edu id AA10398
  53543.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 22 Nov 1994 04:48:50 -0500
  53544. Newsgroups: comp.protocols.kermit.misc
  53545. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!eff!cs.umd.edu!info.usuhs.mil!apgea.army.mil.!jeeisenm
  53546. From: jeeisenm@apgea.army.mil (Joseph E. Eisenmeier <jeeisenm@apgea.army.mil>)
  53547. Subject: Re: Help with binary downloads.
  53548. Message-Id: <1994Nov21.194523.4841@apgea.army.mil>
  53549. Sender: news@apgea.army.mil (0000-news(0000))
  53550. Nntp-Posting-Host: cbda7.apgea.army.mil
  53551. Organization: apgea
  53552. References: <1994Nov17.125037@clstac>
  53553. Date: Mon, 21 Nov 94 19:45:23 GMT
  53554. Lines: 23
  53555. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  53556.  
  53557. In article <1994Nov17.125037@clstac>,
  53558. Kevin Anthony Stanchfield <kastanchfiel@csupomona.edu> wrote:
  53559. >I use MS-Kermit to call up my Internet account from my house through
  53560. >a CSUNet local dialup to Cal Poly Pomona, Ca.  The system at Cal Poly 
  53561. >is a VAX.  I am able to "GET" text files, but not binary files.  Even 
  53562. >after I "SET FILE TYPE BINARY" on _both_ ends.  My terminal is set to 
  53563. >9600 7n1 VT102, I'm using MS-Kermit 3.14 with a USR 14.4 FAX/Modem on 
  53564. >port 2.  Can someone help?
  53565. >
  53566. >Thank You.
  53567. >
  53568.  
  53569.  
  53570. I have the same identical problem.  I can download from 8 bit systems
  53571. using 3 different commercial packages.  But everybody says kermit
  53572. is the only solution for 7 bit systems.  When I d'l a zip file,
  53573. pkunzip can read the zipped file directory, but it fails a crc check.
  53574. Why can't these people make life simple and switch to 8 bit?
  53575.  
  53576. any ideas?
  53577.  
  53578.  
  53579. Joe
  53580.  
  53581. From news@columbia.edu Tue Nov 22 14:24:16 1994
  53582. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10964
  53583.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 22 Nov 1994 09:24:23 -0500
  53584. Received: by apakabar.cc.columbia.edu id AA26202
  53585.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 22 Nov 1994 09:24:22 -0500
  53586. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  53587. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  53588. Newsgroups: comp.protocols.kermit.misc
  53589. Subject: Re: Help with binary downloads.
  53590. Date: 22 Nov 1994 14:24:16 GMT
  53591. Organization: Columbia University
  53592. Lines: 45
  53593. Message-Id: <3asuug$pij@apakabar.cc.columbia.edu>
  53594. References: <1994Nov17.125037@clstac> <1994Nov21.194523.4841@apgea.army.mil>
  53595. Nntp-Posting-Host: watsun.cc.columbia.edu
  53596. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  53597.  
  53598. In article <1994Nov21.194523.4841@apgea.army.mil>,
  53599. Joseph E. Eisenmeier <jeeisenm> <jeeisenm> wrote:
  53600. >...
  53601. >I have the same identical problem.  I can download from 8 bit systems
  53602. >using 3 different commercial packages.  But everybody says kermit
  53603. >is the only solution for 7 bit systems.  When I d'l a zip file,
  53604. >pkunzip can read the zipped file directory, but it fails a crc check.
  53605. >Why can't these people make life simple and switch to 8 bit?
  53606. >
  53607. Because of billions of dollars of investment in the installed base of
  53608. communications equipment, and even in some cases, operating systems.
  53609.  
  53610. Let's be specific about exactly which Kermit software and which versions
  53611. of it we are talking about.  Released versions of Kermit software *do*
  53612. *work* in both the 7-bit and 8-bit environments.  There was a problem
  53613. with a couple of the Beta edits of MS-DOS Kermit 3.14, but that's Beta
  53614. software, not released software.  The current Beta (14) should not have
  53615. any problems.
  53616.  
  53617. Leaving Betas aside for a moment, the standard method for transferring
  53618. files -- any kind of files -- over a 7-bit connection with Kermit is to
  53619. tell *both* Kermit programs to:
  53620.  
  53621.   SET PARITY EVEN
  53622.  
  53623. (or ODD, or MARK, or SPACE).  When Kermit's parity is set to anything
  53624. other than NONE, this enables -- in fact, forces -- 7-bit transfers,
  53625. meaning that 8-bit data gets encoded in a special 7-bit form that can
  53626. pass through the 7-bit connection.  This should always work.
  53627.  
  53628. In practice, it is usually only necessary to tell the file *sender*
  53629. to "set parity <whatever>", because then it will tell the receiver.
  53630. Newer Kermit versions (1990's vintage) will also detect even, odd, or
  53631. mark parity automatically, even if you don't give a "set parity"
  53632. command.  But they can't detect "space" parity, which is indistinguishable
  53633. from no parity at all, and which is increasingly common on terminal-server
  53634. connections, etc.
  53635.  
  53636. So to be safe, give a "set parity" command to both Kermit programs.
  53637.  
  53638. Finally, don't expect this to work with non-Columbia Kermit implementations.
  53639. In my experience, few of the shareware or commercial packages get this
  53640. stuff right.
  53641.  
  53642. - Frank
  53643.  
  53644. From news@columbia.edu Tue Nov 22 14:31:55 1994
  53645. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11635
  53646.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 22 Nov 1994 09:32:01 -0500
  53647. Received: by apakabar.cc.columbia.edu id AA27123
  53648.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 22 Nov 1994 09:31:59 -0500
  53649. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  53650. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  53651. Newsgroups: comp.protocols.kermit.misc
  53652. Subject: Re: Help: file transfer problem
  53653. Date: 22 Nov 1994 14:31:55 GMT
  53654. Organization: Columbia University
  53655. Lines: 30
  53656. Message-Id: <3asvcr$qfg@apakabar.cc.columbia.edu>
  53657. References: <CzMLA2.K01@liverpool.ac.uk> <3aqlhu$7q6@apakabar.cc.columbia.edu> <CHANG.94Nov21182356@theta.math.wsu.edu>
  53658. Nntp-Posting-Host: watsun.cc.columbia.edu
  53659. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  53660.  
  53661. In article <CHANG.94Nov21182356@theta.math.wsu.edu>,
  53662. Ching Mo Chang <chang@theta.math.wsu.edu> wrote:
  53663. >I also have the file upload problem with MS-Kermit (Also C-Kermit in OS/2),
  53664. >I can download file with packets length at 5012, but when I use the same
  53665. >setting to upload file I got lots of timeout and eventually end up too many
  53666. >retries error and fail to upload file. If I really need to upload file, I
  53667. >need to increase the retry limit and set the packets length to 92, let the
  53668. >file crawl from my PC to the host or I will just paste the file into an editor
  53669. >in my host side (only work in ASCII file).
  53670. >
  53671. This is not Kermit's fault.  You should be thankful that Kermit lets you
  53672. adjust these parameters to make the file transfer work at all.  Why is this
  53673. happening?  It's hard to say without more information, but the most likely
  53674. culprit is a lack of buffer capacity in the "upstream" direction, coupled
  53675. with a lack of effective flow control -- a fatal combination, and a common
  53676. one.
  53677.  
  53678. Many communications processors (terminal servers, front ends, host console
  53679. drivers) are designed on the assumption that traffic *to* the host consists
  53680. of nothing but keystrokes -- which hardly anybody can produce at more than
  53681. about ten per second (= 100 bps) -- whereas traffic in the downstream
  53682. direction is voluminous -- file listings, etc.  So they have big output
  53683. buffers and tiny input buffers.
  53684.  
  53685. To compound the problem, some communications processors take this assumption
  53686. one step further and do not even provide flow control in the upstream
  53687. direction, because they figure they will never need it.  A well-known example
  53688. is the Cisco ASM series of terminal servers.
  53689.  
  53690. - Frank
  53691.  
  53692. From news@columbia.edu Tue Nov 22 14:40:46 1994
  53693. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12289
  53694.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 22 Nov 1994 09:40:49 -0500
  53695. Received: by apakabar.cc.columbia.edu id AA27957
  53696.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 22 Nov 1994 09:40:48 -0500
  53697. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  53698. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  53699. Newsgroups: comp.protocols.kermit.misc
  53700. Subject: Re: Help with autodial in MSKERMIT - V3.11 DOS
  53701. Date: 22 Nov 1994 14:40:46 GMT
  53702. Organization: Columbia University
  53703. Lines: 34
  53704. Message-Id: <3asvte$r9j@apakabar.cc.columbia.edu>
  53705. References: <kdesai.785471803@black.clarku.edu>
  53706. Nntp-Posting-Host: watsun.cc.columbia.edu
  53707. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  53708.  
  53709. In article <kdesai.785471803@black.clarku.edu>,
  53710. Kamalkumar R. Desai <kdesai@black.clarku.edu> wrote:
  53711. >I am using DOS 6.22 and MSKERMIT V3.11 (Yes I will get 3.14 soon), I have
  53712. >written a small script to call my school using my modem and once connects
  53713. >types my username and password and logs me in. It works fine but I would
  53714. >like to start it from DOS prompt, i.e.  type "LOGMEIN.BAT" and this file
  53715. >should have one line.
  53716. >
  53717. >KERMIT SCHOOL.TAK
  53718. >
  53719. >That does works too i.e. I can start it from C:>/ prompt and would put me
  53720. >to my school $ prompt on vax. However whenever I hit Alt-X (Escape
  53721. >sequence) it puts me to DOS prompt rather then MS-KERMIT> prompt.  I am
  53722. >sure there is a way to do it so that it won't kick me out to DOS. I
  53723. >looked into Manual (Using Kermit.. F. Da'Cruz book) and README files but
  53724. >no avail.
  53725. >
  53726. Actually, the manual is:
  53727.  
  53728.   Christine M. Gianone, "Using MS-DOS Kermit", Second Edition, Digital
  53729.   Press / Butterworth-Heinemann, Woburn, MA, 1992, 345 pages, ISBN
  53730.   1-55558-082-3.
  53731.  
  53732. Look on page 202, section Command Line Invocation:
  53733.  
  53734.   Several commands may be given on the command line, separated by commas.
  53735.   ...  MS-DOS Kermit will exit back to DOS after completing the specified
  53736.   commands unless you include the STAY commaand on the command line:
  53737.  
  53738.     C> kermit connect, stay
  53739.  
  53740. (end quote).
  53741.  
  53742. - Frank
  53743.  
  53744. From news@columbia.edu Tue Nov 22 14:43:14 1994
  53745. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12483
  53746.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 22 Nov 1994 09:43:18 -0500
  53747. Received: by apakabar.cc.columbia.edu id AA28144
  53748.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 22 Nov 1994 09:43:17 -0500
  53749. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  53750. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  53751. Newsgroups: comp.protocols.kermit.misc
  53752. Subject: Re: re-dial in kermit 3.12
  53753. Date: 22 Nov 1994 14:43:14 GMT
  53754. Organization: Columbia University
  53755. Lines: 26
  53756. Message-Id: <3at022$rfc@apakabar.cc.columbia.edu>
  53757. References: <CznG7G.1ty@dorsai.org>
  53758. Nntp-Posting-Host: watsun.cc.columbia.edu
  53759. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  53760.  
  53761. In article <CznG7G.1ty@dorsai.org>, Vito Kwan <vkwan@dorsai.org> wrote:
  53762. >I am using MS-DOS kermit on my PC and try to find out how to re-dial a
  53763. >phone number at a certain time interval, like 5-seconds.
  53764. >Could someone please give me some hints?
  53765. >
  53766. Read the chapter on script programming in the manual?
  53767.  
  53768. Use any of the standard dialing scripts, which already do this?
  53769.  
  53770. Once again, the manual is:
  53771.  
  53772.   Christine M. Gianone, "Using MS-DOS Kermit", Second Edition, Digital
  53773.   Press / Butterworth-Heinemann, Woburn, MA, 1992, 345 pages, ISBN
  53774.   1-55558-082-3.  Packaged with version 3.13 of MS-DOS Kermit for the
  53775.   IBM PC, PS/2, and compatibles on a 3.5-inch diskette.
  53776.  
  53777.   US single-copy price: $34.95; quantity discounts available.  Available
  53778.   in computer bookstores or directly from:
  53779.  
  53780.     Kermit Development and Distribution
  53781.     Columbia University Academic Information Systems
  53782.     612 West 115th Street
  53783.     New York, NY  10025  USA
  53784.     Telephone: +1 212 854-3703
  53785.  
  53786. - Frank
  53787.  
  53788. From news@columbia.edu Tue Nov 22 15:53:50 1994
  53789. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22545
  53790.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 22 Nov 1994 11:49:01 -0500
  53791. Received: by apakabar.cc.columbia.edu id AA11674
  53792.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 22 Nov 1994 11:48:59 -0500
  53793. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!europa.eng.gtefsd.com!howland.reston.ans.net!news.sprintlink.net!interactive.net!winternet.com!jamess
  53794. From: jamess@winternet.com (James Sturdevant)
  53795. Newsgroups: comp.protocols.kermit.misc
  53796. Subject: Re: Help with binary downloads.
  53797. Date: 22 Nov 1994 15:53:50 GMT
  53798. Organization: StarNet Communications, Inc
  53799. Lines: 16
  53800. Message-Id: <3at46e$nse@blackice.winternet.com>
  53801. References: <1994Nov17.125037@clstac>
  53802. Nntp-Posting-Host: icicle.winternet.com
  53803. X-Newsreader: TIN [version 1.2 PL2]
  53804. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  53805.  
  53806. Kevin Anthony Stanchfield (kastanchfiel@csupomona.edu) wrote:
  53807. : I use MS-Kermit to call up my Internet account from my house through
  53808. : a CSUNet local dialup to Cal Poly Pomona, Ca.  The system at Cal Poly 
  53809. : is a VAX.  I am able to "GET" text files, but not binary files.  Even 
  53810. : after I "SET FILE TYPE BINARY" on _both_ ends.  My terminal is set to 
  53811. : 9600 7n1 VT102, I'm using MS-Kermit 3.14 with a USR 14.4 FAX/Modem on 
  53812. : port 2.  Can someone help?
  53813.  
  53814. : Thank You.
  53815.  
  53816. VMS C-Kermit ignores the binary request for certain file types.  To force
  53817. it to transfer the file as binary, use
  53818.  
  53819.     SET FILE TYPE IMAGE
  53820.  
  53821. JamesS
  53822.  
  53823. From news@columbia.edu Tue Nov 22 17:59:22 1994
  53824. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06356
  53825.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 22 Nov 1994 15:10:07 -0500
  53826. Received: by apakabar.cc.columbia.edu id AA15419
  53827.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 22 Nov 1994 15:10:05 -0500
  53828. Newsgroups: comp.protocols.kermit.misc
  53829. Path: news.columbia.edu!sol.ctr.columbia.edu!math.ohio-state.edu!uwm.edu!news.alpha.net!news.mathworks.com!europa.eng.gtefsd.com!howland.reston.ans.net!gatech!newsfeed.pitt.edu!dsinc!ub!acsu.buffalo.edu!stein-c
  53830. From: stein-c@acsu.buffalo.edu (Craig Steinberger)
  53831. Subject: Re: C-KERMIT 5A(190)
  53832. Message-Id: <CzoKMy.ELJ@acsu.buffalo.edu>
  53833. Sender: nntp@acsu.buffalo.edu
  53834. Nntp-Posting-Host: cfd20.eng.buffalo.edu
  53835. Reply-To: stein-c@eng.buffalo.edu
  53836. Organization: SUNY at Buffalo CFD Lab
  53837. References: <wpfulmorCzIxxy.6EH@netcom.com> <3aqkgi$5q8@apakabar.cc.columbia.edu>
  53838. Date: Tue, 22 Nov 1994 17:59:22 GMT
  53839. Lines: 23
  53840. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  53841.  
  53842. In article <3aqkgi$5q8@apakabar.cc.columbia.edu>,
  53843. Frank da Cruz <fdc@watsun.cc.columbia.edu> wrote:
  53844. >We will have to round up a new Kermit binary for the AT&T 7300.
  53845. >Until then, we kept the old one there rather than having none at all.
  53846. >
  53847. >If you build one yourself (using one of the many AT&T-specific C-Kermit
  53848. >makefile entries), you could submit it yourself; otherwise I'll see
  53849. >where else I can get one made.  (No, we do not have an example of every
  53850. >computer in the world here at Columbia, so we "must rely on the kindness
  53851. >of others"...
  53852. >
  53853.  
  53854. I will be more than happy to biuld 5A(190) for the 7300. I have the
  53855. stock compilers, and will leave most of the options in.
  53856.  
  53857. How would I go about submitting this to the archive?
  53858.  
  53859. -Craig
  53860. -- 
  53861. Craig Steinberger                               stein-c@eng.buffalo.edu
  53862.               SUNY at Buffalo, Computational Fluid Dynamics Lab
  53863.           http://cfd20.eng.buffalo.edu/~stein-c/craig.html
  53864.          send email with subject "PGPKEY" for PGP public key
  53865.  
  53866. From news@columbia.edu Tue Nov 22 22:36:21 1994
  53867. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17738
  53868.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 22 Nov 1994 18:04:46 -0500
  53869. Received: by apakabar.cc.columbia.edu id AA04345
  53870.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 22 Nov 1994 18:04:44 -0500
  53871. Path: news.columbia.edu!panix!news.mathworks.com!europa.eng.gtefsd.com!howland.reston.ans.net!news.sprintlink.net!EU.net!uunet!dove.nist.gov!enh.nist.gov!lacko
  53872. From: lacko@enh.nist.gov (Tom Lacko)
  53873. Newsgroups: comp.protocols.kermit.misc
  53874. Subject: Looking for screen dump capability in Kermit 3.12 DOS
  53875. Date: 22 NOV 94 22:36:21 GMT
  53876. Organization: NIST
  53877. Lines: 7
  53878. Message-Id: <22NOV94.22362199@enh.nist.gov>
  53879. Nntp-Posting-Host: enh.nist.gov
  53880. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  53881.  
  53882. Anyone know of a screen dump utility (freeware, shareware, etc.) that I
  53883. can use with Kermit 3.12?  Thank you!
  53884.  
  53885.  
  53886. Tom Lacko
  53887. lacko@enh.nist.gov
  53888.  
  53889.  
  53890. From news@columbia.edu Tue Nov 22 22:35:41 1994
  53891. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17841
  53892.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 22 Nov 1994 18:06:47 -0500
  53893. Received: by apakabar.cc.columbia.edu id AA04580
  53894.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 22 Nov 1994 18:06:46 -0500
  53895. Path: news.columbia.edu!panix!news.mathworks.com!usenet.eel.ufl.edu!news-feed-1.peachnet.edu!gatech!howland.reston.ans.net!news.sprintlink.net!news.cais.com!cais.cais.com!pifer
  53896. From: pifer@cais.cais.com ()
  53897. Newsgroups: comp.protocols.kermit.misc
  53898. Subject: MS-DOS 3.1.3 problems
  53899. Date: 22 Nov 1994 22:35:41 GMT
  53900. Organization: Capital Area Internet Service
  53901. Lines: 30
  53902. Message-Id: <3atrnt$c14@news.cais.com>
  53903. Nntp-Posting-Host: cais.com
  53904. X-Newsreader: TIN [version 1.2 PL2]
  53905. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  53906.  
  53907. We have been experiencing problems with using 3.1.3 Kermit at our Navy
  53908. facility that we have not had with 3.1.1. We would like to use this
  53909. version because of the new features and added network support. However,
  53910. the numerous problems prevent us from doing so. Specificly, the problmes
  53911. are thus:
  53912.  
  53913.     1) The status line at the bottom of the screen comes back on
  53914. when connecting to the host, even though mode is set to off.
  53915.  
  53916.     2) Terminals have been known to go dead after some use on the network.
  53917.  
  53918.     3) "rollback 0" does not work the same as it did in 3.1.1.
  53919.  
  53920.     4) File transfer does not work. We set terminalr and terminals
  53921. and execute the local escape sequence but the PC does not see it. Again,
  53922. it works in 3.11 version.
  53923.  
  53924.     5) Inverse video does not work with multi-colors. I believe problem
  53925. 4 and 5 are related since they send escape sequences to the PC and are not
  53926. getting to the PC.
  53927.  
  53928. WE are looking for help from anyone on the net. We have tried to get answers
  53929. to these problems from Columbia yet they have turned a deaf ear. If the 
  53930. answer is to install version 3.1.4 to fix the problems, then we will do so
  53931. iff it addresses the problems we have encountered.
  53932.  
  53933. -Darren G. Pifer
  53934. Code 431 - NAVMASSO
  53935. Phone: (804) 523-8098
  53936. E-mail: pifer@cais.com
  53937.  
  53938. From news@columbia.edu Tue Nov 22 18:24:19 1994
  53939. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21555
  53940.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 22 Nov 1994 19:24:55 -0500
  53941. Received: by apakabar.cc.columbia.edu id AA12159
  53942.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 22 Nov 1994 19:24:52 -0500
  53943. Newsgroups: comp.protocols.kermit.misc
  53944. From: scott@musicman.demon.co.uk (Scott Mordecai)
  53945. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!news.alpha.net!uwm.edu!vixen.cso.uiuc.edu!howland.reston.ans.net!pipex!demon!betanews.demon.co.uk!musicman.demon.co.uk!scott
  53946. Subject: Trouble compiling C-Kermit
  53947. Organization: home
  53948. Reply-To: scott@musicman.demon.co.uk
  53949. X-Newsreader: Demon Internet Simple News v1.27
  53950. Lines: 19
  53951. Date: Tue, 22 Nov 1994 18:24:19 +0000
  53952. Message-Id: <785528659snz@musicman.demon.co.uk>
  53953. Sender: usenet@demon.co.uk
  53954. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  53955.  
  53956. I'm trying to get the latest version of C-Kermit going on a couple of Unix
  53957. boxes at work.  One is an ICL DRS6000 - I have compiled on there without a
  53958. problem (using make iclsys5r4).
  53959.  
  53960. The other box is a Siemens Nixdorf RM400, but I'm not completely sure what
  53961. unix version it is.  On loggin in it reports "UNIX(r) System V Release
  53962. 4.0". After loggin in, it reports "SINIX Version 5.41".
  53963.  
  53964. Unfortunately there is no Siemens Nixdorf, or SINIX entry in the makefile.
  53965. I've tried compiling with "make sys5r4", but I just get a bunch of warnings
  53966. and finally and fails completely.  I was going to include all the messages
  53967. here, but thought better to save bandwidth and get some suggestions first.
  53968.  
  53969. Any ideas?
  53970.  
  53971. --
  53972.  \|||/  Scott Mordecai                       /   A BAD DAY SKYDIVING
  53973. < o,o > Internet: scott@musicman.demon.co.uk \ IS BETTER THAN A GOOD DAY
  53974.   \_/   CompuServe: 70374,2246               /         AT WORK
  53975.  
  53976. From news@columbia.edu Tue Nov 22 23:35:16 1994
  53977. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27251
  53978.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 22 Nov 1994 21:28:57 -0500
  53979. Received: by apakabar.cc.columbia.edu id AA23748
  53980.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 22 Nov 1994 21:28:54 -0500
  53981. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!udel!news-4.nss.udel.edu!chopin.udel.edu!not-for-mail
  53982. From: darkstar@chopin.udel.edu (Jerry Alexandratos)
  53983. Newsgroups: comp.protocols.kermit.misc
  53984. Subject: Re: MS-DOS 3.1.3 problems
  53985. Date: 22 Nov 1994 18:35:16 -0500
  53986. Organization: Broken Toys Unlimited
  53987. Lines: 55
  53988. Message-Id: <3atv7k$kp3@chopin.udel.edu>
  53989. References: <3atrnt$c14@news.cais.com>
  53990. Nntp-Posting-Host: chopin.udel.edu
  53991. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  53992.  
  53993. In article <3atrnt$c14@news.cais.com>,  <pifer@cais.cais.com> wrote:
  53994. :We have been experiencing problems with using 3.1.3 Kermit at our Navy
  53995. :facility that we have not had with 3.1.1. We would like to use this
  53996. :version because of the new features and added network support. However,
  53997. :the numerous problems prevent us from doing so. Specificly, the problmes
  53998. :are thus:
  53999. :
  54000. :    1) The status line at the bottom of the screen comes back on
  54001. :when connecting to the host, even though mode is set to off.
  54002. :
  54003. :    2) Terminals have been known to go dead after some use on the network.
  54004. :
  54005. :    3) "rollback 0" does not work the same as it did in 3.1.1.
  54006. :
  54007. :    4) File transfer does not work. We set terminalr and terminals
  54008. :and execute the local escape sequence but the PC does not see it. Again,
  54009. :it works in 3.11 version.
  54010. :
  54011. :    5) Inverse video does not work with multi-colors. I believe problem
  54012. :4 and 5 are related since they send escape sequences to the PC and are not
  54013. :getting to the PC.
  54014. :
  54015. :WE are looking for help from anyone on the net. We have tried to get answers
  54016. :to these problems from Columbia yet they have turned a deaf ear. If the 
  54017. :answer is to install version 3.1.4 to fix the problems, then we will do so
  54018. :iff it addresses the problems we have encountered.
  54019.  
  54020. Hmm, well, here's what I would take a crack at...
  54021.  
  54022. 1) See if there isn't a macro that connects you to a machine and
  54023.    changes something around.  Do you connect by hand (set port tcp ...) or
  54024.    do you have a macro handle all of this?
  54025.  
  54026. 2) Need more information for this one.  What type of network, etc...
  54027.  
  54028. 3) What was the original functionality that doesn't work now.  Are you
  54029.    sure that you didn't change some local setting somewhere in your
  54030.    mscustom.ini after upgrading?
  54031.    
  54032. 4) Terminals and Terminalr don't exist anymore.  Check the *.upd and
  54033.    *.bwr files.  Their funcionality has been replace by using apc command
  54034.    codes.  If you look at the C-Kermit ini files, you will see a bunch
  54035.    of macros that use apc to send sequences down to the pc to do
  54036.    ``one-sided'' file transfers.
  54037.  
  54038. 5) Hmmm...  I don't know what to say for this one.
  54039.  
  54040. Hope this helped a little.
  54041.  
  54042.         --Jerry
  54043.  
  54044. -- 
  54045. |>  Jerry Alexandratos                **  "vengo de la tierra del    <|
  54046. |>  darkstar@strauss.udel.edu         **   fuego ten cuidado cuando  <|
  54047. |>  darkstar@canary.pearson.udel.edu  **   llamas mi nombre..."      <|
  54048.  
  54049. From news@columbia.edu Mon Nov 21 23:03:40 1994
  54050. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15214
  54051.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 23 Nov 1994 04:43:07 -0500
  54052. Received: by apakabar.cc.columbia.edu id AA20572
  54053.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 23 Nov 1994 04:43:05 -0500
  54054. Path: news.columbia.edu!sol.ctr.columbia.edu!usenet.ucs.indiana.edu!indyvax.iupui.edu!indyunix.iupui.edu!rjfortho
  54055. Newsgroups: comp.protocols.kermit.misc
  54056. Subject: Alternate character set
  54057. Message-Id: <1994Nov21.180341.10495@ivax>
  54058. From: rjfortho@indyunix.iupui.edu ()
  54059. Date: 21 Nov 94 18:03:40 -0500
  54060. Nntp-Posting-Host: indyunix.iupui.edu
  54061. X-Newsreader: Tin 1.1 PL4
  54062. Lines: 12
  54063. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  54064.  
  54065. I am using MS-Kermit to dial in to an IBM 3090 mainframe, through a protocol
  54066. converter.  Periodically, I will get line noise which causes Kermit to switch
  54067. character sets on me.  (I can recreate the problem by picking up the phone 
  54068. and setting it down quickly.) The character set appears to by Cyrillic or 
  54069. some graphical character set - I'm not sure.  I can use Kreset (alt-=) to 
  54070. restore the character set, but I would like to prevent the switch from 
  54071. ever happening. Does anyone have any suggestions on how to tell Kermit not to
  54072. make this switch?  By the way, I am using VT102 emulation in Kermit.  I'm 
  54073. willing to try other emulations if that would help, but VT102 works well with
  54074. our protocol converter, in that it provides printer support.  Any suggestions
  54075. would be greatly appreciated.
  54076.  
  54077.  
  54078. From news@columbia.edu Wed Nov 23 03:37:06 1994
  54079. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29412
  54080.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 23 Nov 1994 06:43:22 -0500
  54081. Received: by apakabar.cc.columbia.edu id AA26822
  54082.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 23 Nov 1994 06:43:20 -0500
  54083. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!bloom-beacon.mit.edu!gatech!swrinde!pipex!uunet!news.nevada.edu!homesick.cs.unlv.edu!ftlofaro
  54084. From: ftlofaro@unlv.edu (Frank Lofaro)
  54085. Newsgroups: comp.protocols.kermit.misc
  54086. Subject: Where is actual user input and tty ioctl's handled?
  54087. Date: 23 Nov 1994 03:37:06 GMT
  54088. Organization: University of Nevada, Las Vegas
  54089. Lines: 11
  54090. Distribution: world
  54091. Message-Id: <3audd2$dk0@homesick.cs.unlv.edu>
  54092. Nntp-Posting-Host: big-twist.cs.unlv.edu
  54093. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  54094.  
  54095. Where is actual user input and tty ioctl's handled?
  54096.  
  54097. I want to add some modifications to kermit so when it sets up the tty 
  54098. it does the equivalent of stty -ignbrk -brkint parmrk, have kermit 
  54099. detect an incoming break (255 0 0) and send a break out the 
  54100. communications port then.
  54101.  
  54102. I know how to do the ioctl's and the break checking, but it is hard to 
  54103. find exactly what file and function I need to add my code to.
  54104. Just going by the file names and grepping for ioctl isn't as useful as I 
  54105. had hoped.
  54106.  
  54107. From news@columbia.edu Tue Nov 22 16:25:50 1994
  54108. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12662
  54109.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 23 Nov 1994 07:04:38 -0500
  54110. Received: by apakabar.cc.columbia.edu id AA27770
  54111.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 23 Nov 1994 07:04:36 -0500
  54112. Path: news.columbia.edu!sol.ctr.columbia.edu!news.moneng.mei.com!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  54113. From: jrd@cc.usu.edu (Joe Doupnik)
  54114. Newsgroups: comp.protocols.kermit.misc
  54115. Subject: Re: Alternate character set
  54116. Message-Id: <1994Nov22.222550.33619@cc.usu.edu>
  54117. Date: 22 Nov 94 22:25:50 MDT
  54118. References: <1994Nov21.180341.10495@ivax>
  54119. Organization: Utah State University
  54120. Lines: 19
  54121. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  54122.  
  54123. In article <1994Nov21.180341.10495@ivax>, rjfortho@indyunix.iupui.edu () writes:
  54124. > I am using MS-Kermit to dial in to an IBM 3090 mainframe, through a protocol
  54125. > converter.  Periodically, I will get line noise which causes Kermit to switch
  54126. > character sets on me.  (I can recreate the problem by picking up the phone 
  54127. > and setting it down quickly.) The character set appears to by Cyrillic or 
  54128. > some graphical character set - I
  54129. m not sure.  I can use Kreset (alt-=) to 
  54130. > restore the character set, but I would like to prevent the switch from 
  54131. > ever happening. Does anyone have any suggestions on how to tell Kermit not to
  54132. > make this switch?  By the way, I am using VT102 emulation in Kermit.  I'm 
  54133. > willing to try other emulations if that would help, but VT102 works well with
  54134. > our protocol converter, in that it provides printer support.  Any suggestions
  54135. > would be greatly appreciated.
  54136. ---------
  54137.     Those would be control codes SI and SO which change character
  54138. sets on you. A real VT100 will do exactly the same. Use VT320 where
  54139. these two codes switch amongst the same character sets most of the
  54140. item, or get your phone line fixed. I can't assist with your mainframe
  54141. terminal facilties vis VT320's so I wish you luck with that end.
  54142.     Joe D.
  54143.  
  54144. From news@columbia.edu Tue Nov 22 16:28:48 1994
  54145. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12664
  54146.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 23 Nov 1994 07:04:38 -0500
  54147. Received: by apakabar.cc.columbia.edu id AA27772
  54148.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 23 Nov 1994 07:04:36 -0500
  54149. Path: news.columbia.edu!sol.ctr.columbia.edu!news.moneng.mei.com!uwm.edu!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  54150. From: jrd@cc.usu.edu (Joe Doupnik)
  54151. Newsgroups: comp.protocols.kermit.misc
  54152. Subject: Re: MS-DOS 3.1.3 problems
  54153. Message-Id: <1994Nov22.222848.33621@cc.usu.edu>
  54154. Date: 22 Nov 94 22:28:48 MDT
  54155. References: <3atrnt$c14@news.cais.com>
  54156. Organization: Utah State University
  54157. Lines: 22
  54158. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  54159.  
  54160. In article <3atrnt$c14@news.cais.com>, pifer@cais.cais.com () writes:
  54161. > We have been experiencing problems with using 3.1.3 Kermit at our Navy
  54162. > facility that we have not had with 3.1.1. We would like to use this
  54163. > version because of the new features and added network support. However,
  54164. > the numerous problems prevent us from doing so. Specificly, the problmes
  54165. > are thus:
  54166.     <details omitted>
  54167. > WE are looking for help from anyone on the net. We have tried to get answers
  54168. > to these problems from Columbia yet they have turned a deaf ear. If the 
  54169. > answer is to install version 3.1.4 to fix the problems, then we will do so
  54170. > iff it addresses the problems we have encountered.
  54171. > -Darren G. Pifer
  54172. > Code 431 - NAVMASSO
  54173. > Phone: (804) 523-8098
  54174. > E-mail: pifer@cais.com
  54175. ---------------
  54176.     I very seriously doubt that Columbia turned a deaf ear. Maybe a
  54177. little personality clash or things just got lost in the shuffle?
  54178.     As the author of MSK please send me more details directly and I
  54179. will see if we can understand some of them. jrd@cc.usu.edu.
  54180.     Joe D.
  54181.  
  54182. From news@columbia.edu Wed Nov 23 12:23:15 1994
  54183. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20271
  54184.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 23 Nov 1994 08:36:36 -0500
  54185. Received: by apakabar.cc.columbia.edu id AA03456
  54186.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 23 Nov 1994 08:36:35 -0500
  54187. Path: news.columbia.edu!sol.ctr.columbia.edu!caen!math.ohio-state.edu!uwm.edu!msuinfo!harbinger.cc.monash.edu.au!daneel.rdt.monash.edu.au!ran
  54188. From: ran@daneel.rdt.monash.edu.au (Ralphe Neill)
  54189. Newsgroups: comp.protocols.kermit.misc
  54190. Subject: fin and stat
  54191. Date: 23 Nov 1994 12:23:15 GMT
  54192. Organization: Monash University
  54193. Lines: 10
  54194. Message-Id: <3avc7j$ocs@harbinger.cc.monash.edu.au>
  54195. Nntp-Posting-Host: daneel.rdt.monash.edu.au
  54196. X-Nntp-Posting-User: ran
  54197. Summary: old feature appears again?
  54198. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  54199.  
  54200. I have just compiled C-Kermit 5A(190) under SunOS 4.0.2 and have
  54201. noted what seems to be the re-appearance of an old "feature" -
  54202. entering "stat" after "fin" gives the results for the "finish"
  54203. instead of the last file(s). I remember this being noted as a bug
  54204. years ago but it was then fixed in, I think, (179).
  54205.  
  54206. It's not the most serious of problems but, if I haven't missed
  54207. something, I thought that it was worth pointing out.
  54208.  
  54209. Ralphe Neill
  54210.  
  54211. From news@columbia.edu Wed Nov 23 09:08:34 1994
  54212. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21451
  54213.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 23 Nov 1994 09:08:34 -0500
  54214. Received: by apakabar.cc.columbia.edu id AA05841
  54215.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 23 Nov 1994 09:08:32 -0500
  54216. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!hookup!swrinde!pipex!sunic!news.funet.fi!news.csc.fi!news.helsinki.fi!cc.helsinki.fi!jaakola
  54217. From: jaakola@cc.helsinki.fi
  54218. Newsgroups: comp.protocols.kermit.misc,alt.winsock
  54219. Subject: Re: winsock/MS-Kermit hack possible? (Was: winsock/pkt drv hack...)
  54220. Date: 22 Nov 94 22:02:04 EET
  54221. Organization: University of Helsinki
  54222. Lines: 45
  54223. Message-Id: <1994Nov22.220204.1@cc.helsinki.fi>
  54224. References: <3a67j8$j39@Mercury.mcs.com> <3anvci$dut@relay.tor.hookup.net>  <soren.223.000F87E0@aztec.co.za> <1994Nov21.105430.33454@cc.usu.edu>
  54225. Nntp-Posting-Host: hylka.helsinki.fi
  54226. Mime-Version: 1.0
  54227. Content-Type: text/plain; charset=ISO-8859-1
  54228. Content-Transfer-Encoding: 8bit
  54229. Xref: news.columbia.edu comp.protocols.kermit.misc:1192 alt.winsock:22840
  54230. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  54231.  
  54232. In article <1994Nov21.105430.33454@cc.usu.edu>, jrd@cc.usu.edu (Joe Doupnik) writes:
  54233. >     Nice idea but not practical here. There are a great many
  54234. > coupling threads (variables, calls) between the high level and comms
  54235. > level material in Kermit so that control may be exercised and speed
  54236. > retained. And there is much more to comms than serial or the internal
  54237. > TCP/IP stack; SET PORT exhibits the list (and some choices transparently
  54238. > encompass two or three variations from the same vendor).
  54239. >     Winsock is for pure Windows programs, not for DOS programs.
  54240. >     MS-DOS Kermit removes itself from comms channels when done with
  54241. > them. Few commercial TCP/IP stacks do so (none that I know of). Were
  54242. > winsock guys to get off the pot when done the problem would be smaller.
  54243. > So please consider hounding your winsock vendor to go un-TSR upon last
  54244. > close and to not be present until an application makes a demand.
  54245. >     Joe D. 
  54246.  
  54247. I can use Trumpet Winsock (version 1, beta 6) and MS-Kermit, but not at
  54248. the same time, and I can switch back and forth using either one, one at
  54249. a time. I use WINPKT+ODITRPKT+ODI drivers.
  54250.  
  54251. A guy from New Zealand says that he is able to use Winsock and KA9Q at
  54252. the same time without stopping the other one. He is even using the same
  54253. IP address for both of them! He uses PKTMUX.
  54254.  
  54255. I think that XFS is a hack which allows you to have NFS and Winsock
  54256. simultaneously.
  54257.  
  54258. Is it possible to use MS-Kermit and Winsock simultaneously with PKTMUX,
  54259. and both stacks having the same IP number?
  54260.  
  54261. I see the following problems:
  54262.  
  54263. Who answers to ICMP echo (ping, that is)? How about other ICMP messages?
  54264.  
  54265. How does one avoid using the same port numbers in both stacks? Could Joe
  54266. add a client port range parameter to MS-Kermit, and is the same possible
  54267. on the Winsock side, so that the two ranges would not overlap? Of
  54268. course, for Winsock this would be stack brand dependent. Peter Tattam,
  54269. do you hear?
  54270.  
  54271. When MS-Kermit 3.14 sends RARP for its own address (the duplicate
  54272. check), will the Winsock answer it and thus trigger a false alarm?
  54273.  
  54274. Can these problems be circumvented?
  54275. --
  54276. Juhani Jaakola, jaakola@cc.helsinki.fi
  54277.  
  54278. From news@columbia.edu Wed Nov 23 16:09:07 1994
  54279. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29188
  54280.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 23 Nov 1994 11:09:12 -0500
  54281. Received: by apakabar.cc.columbia.edu id AA18097
  54282.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 23 Nov 1994 11:09:11 -0500
  54283. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  54284. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  54285. Newsgroups: comp.protocols.kermit.misc
  54286. Subject: Re: Where is actual user input and tty ioctl's handled?
  54287. Date: 23 Nov 1994 16:09:07 GMT
  54288. Organization: Columbia University
  54289. Lines: 19
  54290. Message-Id: <3avpf3$hl8@apakabar.cc.columbia.edu>
  54291. References: <3audd2$dk0@homesick.cs.unlv.edu>
  54292. Nntp-Posting-Host: watsun.cc.columbia.edu
  54293. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  54294.  
  54295. In article <3audd2$dk0@homesick.cs.unlv.edu>,
  54296. Frank Lofaro <ftlofaro@unlv.edu> wrote:
  54297. >Where is actual user input and tty ioctl's handled?
  54298. >
  54299. >I want to add some modifications to kermit so when it sets up the tty 
  54300. >it does the equivalent of stty -ignbrk -brkint parmrk, have kermit 
  54301. >detect an incoming break (255 0 0) and send a break out the 
  54302. >communications port then.
  54303. >
  54304. Although you did not say so, I assume you are talking about C-Kermit.
  54305.  
  54306. C-Kermit is a software program that runs on literally hundreds of
  54307. different platforms, and I am responsible for it, so you should
  54308. probably contact me directly.  Locally hacked versions of C-Kermit
  54309. are discouraged, as a matter of self-preservation.
  54310.  
  54311. - Frank
  54312.  
  54313.  
  54314.  
  54315. From news@columbia.edu Wed Nov 23 16:16:51 1994
  54316. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29728
  54317.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 23 Nov 1994 11:16:59 -0500
  54318. Received: by apakabar.cc.columbia.edu id AA19121
  54319.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 23 Nov 1994 11:16:57 -0500
  54320. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  54321. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  54322. Newsgroups: comp.protocols.kermit.misc
  54323. Subject: Re: Trouble compiling C-Kermit
  54324. Date: 23 Nov 1994 16:16:51 GMT
  54325. Organization: Columbia University
  54326. Lines: 26
  54327. Message-Id: <3avptj$ila@apakabar.cc.columbia.edu>
  54328. References: <785528659snz@musicman.demon.co.uk>
  54329. Nntp-Posting-Host: watsun.cc.columbia.edu
  54330. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  54331.  
  54332. In article <785528659snz@musicman.demon.co.uk>,
  54333. Scott Mordecai <scott@musicman.demon.co.uk> wrote:
  54334. >I'm trying to get the latest version of C-Kermit going on a couple of Unix
  54335. >boxes at work.  One is an ICL DRS6000 - I have compiled on there without a
  54336. >problem (using make iclsys5r4).
  54337. >
  54338. Running which version of UNIX?  (I'd like to confirm that it works on
  54339. DRS/NX System V R4.2.)
  54340.  
  54341. >The other box is a Siemens Nixdorf RM400, but I'm not completely sure what
  54342. >unix version it is.  On loggin in it reports "UNIX(r) System V Release
  54343. >4.0". After loggin in, it reports "SINIX Version 5.41".
  54344. >
  54345. This is a new one on me.  Maybe you could send me the compilation log
  54346. directory (don't post it to the newsgroup).  There is a makefile entry for
  54347. Nixdorf Targon/31 with an operating system called TOS, which is based on
  54348. System V R3, but that is probably not the same thing.  But it is a pretty
  54349. generic SVR3 version so it might be worth a try.
  54350.  
  54351. In any case, please let's continue this offline.  If anybody else has
  54352. some feedback about the ICL and/or Nixdorf C-Kermit versions, please come
  54353. forward.
  54354.  
  54355. Thanks!
  54356.  
  54357. - Frank
  54358.  
  54359. From news@columbia.edu Wed Nov 23 16:31:08 1994
  54360. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00919
  54361.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 23 Nov 1994 11:31:13 -0500
  54362. Received: by apakabar.cc.columbia.edu id AA20453
  54363.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 23 Nov 1994 11:31:11 -0500
  54364. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  54365. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  54366. Newsgroups: comp.protocols.kermit.misc
  54367. Subject: Re: MS-DOS 3.1.3 problems
  54368. Date: 23 Nov 1994 16:31:08 GMT
  54369. Organization: Columbia University
  54370. Lines: 16
  54371. Message-Id: <3avqoc$jv2@apakabar.cc.columbia.edu>
  54372. References: <3atrnt$c14@news.cais.com>
  54373. Nntp-Posting-Host: watsun.cc.columbia.edu
  54374. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  54375.  
  54376. In article <3atrnt$c14@news.cais.com>,  <pifer@cais.cais.com> wrote:
  54377. >We have been experiencing problems with using 3.1.3 Kermit at our Navy
  54378. >facility...
  54379. >WE are looking for help from anyone on the net. We have tried to get answers
  54380. >to these problems from Columbia yet they have turned a deaf ear.
  54381. >
  54382. We get about 500 tech support requests per day by phone, email, and postal
  54383. mail.  We try to handle all of them.  We do not deliberately ignore any
  54384. queries or requests for help.  We do not turn a deaf ear, but (as Joe said)
  54385. items sometimes do get lost in the shuffle, because sometimes we are 
  54386. overwhelmed by the sheer volume.
  54387.  
  54388. If features are broken, we want to fix them.  If features are poorly
  54389. documented, we want to improve the documentation.
  54390.  
  54391. - Frank
  54392.  
  54393. From news@columbia.edu Wed Nov 23 16:46:59 1994
  54394. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02074
  54395.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 23 Nov 1994 11:47:15 -0500
  54396. Received: by apakabar.cc.columbia.edu id AA21927
  54397.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 23 Nov 1994 11:47:14 -0500
  54398. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  54399. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  54400. Newsgroups: comp.protocols.kermit.misc
  54401. Subject: Re: Alternate character set
  54402. Date: 23 Nov 1994 16:46:59 GMT
  54403. Organization: Columbia University
  54404. Lines: 33
  54405. Message-Id: <3avrm3$lck@apakabar.cc.columbia.edu>
  54406. References: <1994Nov21.180341.10495@ivax> <1994Nov22.222550.33619@cc.usu.edu>
  54407. Nntp-Posting-Host: watsun.cc.columbia.edu
  54408. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  54409.  
  54410. In article <1994Nov22.222550.33619@cc.usu.edu>,
  54411. Joe Doupnik <jrd@cc.usu.edu> wrote:
  54412. >In article <1994Nov21.180341.10495@ivax>,
  54413. >rjfortho@indyunix.iupui.edu () writes: 
  54414. >> I am using MS-Kermit to dial in to an IBM 3090 mainframe, through a protocol
  54415. >> converter.  Periodically, I will get line noise which causes Kermit to
  54416. >> switch character sets on me.
  54417. >Those would be control codes SI and SO which change character
  54418. >sets on you. A real VT100 will do exactly the same. Use VT320 where
  54419. >these two codes switch amongst the same character sets most of the time...
  54420. >
  54421. It is a fundamental limitation of terminal/host communication that noise
  54422. can be generated on the communication channel that looks to the terminal
  54423. exactly like a legitimate control function.  Control functions can do
  54424. anything at all -- not just switch character sets.  You can avoid this
  54425. situation by setting up an error-corrected terminal session via SLIP, or
  54426. making a network connection instead of a serial connection, etc.  You can
  54427. minimize (but no eliminate) the risks of this on a dialup connection by
  54428. using an error-correcting modem and hardware flow control.
  54429.  
  54430. When you can't avoid a noisy connection, and you only care about ASCII
  54431. characters (i.e. you don't ever want to see accented letters, etc), then
  54432. you can designate ASCII to all four of Kermit's terminal character-set
  54433. tables as follows:
  54434.  
  54435.   SET TERMINAL CHARACTER-SET ASCII G0 G1 G2 G3
  54436.  
  54437. Consult "Using MS-DOS Kermit", Appendix II, "Terminal Character Set
  54438. Terminology and Mechanics", pp.289-290, for details.  For further details,
  54439. read ISO standards 4873 and 2022, or a VT220 or VT320 Programmer Reference
  54440. Manual.
  54441.  
  54442. - Frank
  54443.  
  54444. From news@columbia.edu Wed Nov 23 14:28:07 1994
  54445. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07882
  54446.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 23 Nov 1994 13:05:47 -0500
  54447. Received: by apakabar.cc.columbia.edu id AA29431
  54448.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 23 Nov 1994 13:05:45 -0500
  54449. Path: news.columbia.edu!panix!news.mathworks.com!hookup!swrinde!pipex!sunsite.doc.ic.ac.uk!susx.ac.uk!leilabd
  54450. From: leilabd@central.susx.ac.uk (Leila Burrell-Davis)
  54451. Newsgroups: comp.protocols.kermit.misc,alt.winsock
  54452. Subject: Re: winsock/MS-Kermit hack possible? (Was: winsock/pkt drv hack...)
  54453. Followup-To: comp.protocols.kermit.misc,alt.winsock
  54454. Date: 23 Nov 1994 14:28:07 GMT
  54455. Organization: Computing Service, University of Sussex, UK
  54456. Lines: 32
  54457. Message-Id: <3avjhn$ae3@infa.central.susx.ac.uk>
  54458. References: <3a67j8$j39@Mercury.mcs.com> <3anvci$dut@relay.tor.hookup.net>  <soren.223.000F87E0@aztec.co.za> <1994Nov21.105430.33454@cc.usu.edu> <1994Nov22.220204.1@cc.helsinki.fi>
  54459. Nntp-Posting-Host: solx1.central.susx.ac.uk
  54460. X-Newsreader: TIN [version 1.2 PL2]
  54461. Xref: news.columbia.edu comp.protocols.kermit.misc:1197 alt.winsock:22862
  54462. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  54463.  
  54464. jaakola@cc.helsinki.fi wrote:
  54465. % Is it possible to use MS-Kermit and Winsock simultaneously with PKTMUX,
  54466. % and both stacks having the same IP number?
  54467.  
  54468. Yes. We do that here. We run MS-Kermit and Trumpet Winsock
  54469. simultaneously and it works. (The IP no. and other IP info is
  54470. supplied by a bootp server.) I constantly marvel at how clever it is! 
  54471.  
  54472. % I see the following problems:
  54473.  
  54474. % Who answers to ICMP echo (ping, that is)? How about other ICMP messages?
  54475.  
  54476. % How does one avoid using the same port numbers in both stacks? Could Joe
  54477. % add a client port range parameter to MS-Kermit, and is the same possible
  54478. % on the Winsock side, so that the two ranges would not overlap? Of
  54479. % course, for Winsock this would be stack brand dependent. Peter Tattam,
  54480. % do you hear?
  54481.  
  54482. % When MS-Kermit 3.14 sends RARP for its own address (the duplicate
  54483. % check), will the Winsock answer it and thus trigger a false alarm?
  54484.  
  54485. % Can these problems be circumvented?
  54486.  
  54487. I am not competent to answer these questions, but we don't have any
  54488. problems of this kind.
  54489.  
  54490. Leila
  54491. -- 
  54492. Leila Burrell-Davis, Computing Service, University of Sussex, Brighton, UK
  54493. Tel:  +44 (0) 1273 678390            Fax:  +44 (0) 1273 678470
  54494. Email: L.Burrell-Davis@sussex.ac.uk
  54495. PGP Public Key fingerprint: 18 A3 45 D6 40 6D 62 00  E9 71 AD 18 E8 E2 9F 7D 
  54496.  
  54497. From news@columbia.edu Wed Nov 23 11:19:05 1994
  54498. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15539
  54499.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 23 Nov 1994 14:58:25 -0500
  54500. Received: by apakabar.cc.columbia.edu id AA10060
  54501.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 23 Nov 1994 14:58:23 -0500
  54502. Newsgroups: comp.protocols.kermit.misc,alt.winsock
  54503. Path: news.columbia.edu!news.media.mit.edu!bloom-beacon.mit.edu!gatech!swrinde!pipex!uunet!heifetz.msen.com!zib-berlin.de!fauern!news.th-darmstadt.de!muster!news
  54504. From: Johannes.Becker@hrz.uni-giessen.de (Johannes Becker)
  54505. Subject: Re: winsock/pkt dvr hack possible?
  54506. Sender: news@muster.hrz.uni-giessen.de
  54507. Message-Id: <Czpwru.FAM@muster.hrz.uni-giessen.de>
  54508. Date: Wed, 23 Nov 1994 11:19:05 GMT
  54509. References: <3a67j8$j39@Mercury.mcs.com> <Pine.SUN.3.91.941118031532.9000A-100000@soleil>
  54510. Organization: HRZ Uni Giessen
  54511. X-Newsreader: WinVN 0.92.5
  54512. Lines: 17
  54513. Xref: news.columbia.edu comp.protocols.kermit.misc:1198 alt.winsock:22872
  54514. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  54515.  
  54516. >On 13 Nov 1994, Leslie Mikesell wrote:
  54517. >
  54518. >> Since a "real" windows kermit seems unlikely in the near future, I'd
  54519. >> like to know if it would be possible to use some kind of shim that
  54520. >> looks like a packet driver in a dos session but actually uses the
  54521. >> winsock interface. 
  54522.  
  54523. Hello,
  54524.  there4s a program called COMt around, that redirects MS-Windows
  54525. calls to COM-Ports to the internet.
  54526. Microsoft4s  tcpip32 winsockets for Windows for Workgroups come with
  54527. DOS-programs like ping, that are redirected to the tcpip32 winsockets.
  54528. Could any programmer put these things together to build the above
  54529. mentioned shim?
  54530.   
  54531.   Johannes
  54532.  
  54533.  
  54534. From news@columbia.edu Wed Nov 23 17:00:44 1994
  54535. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23025
  54536.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 23 Nov 1994 16:40:31 -0500
  54537. Received: by apakabar.cc.columbia.edu id AA27436
  54538.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 23 Nov 1994 16:40:25 -0500
  54539. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!europa.eng.gtefsd.com!howland.reston.ans.net!news.sprintlink.net!news.cais.com!cais2.cais.com!pifer
  54540. From: pifer@cais2.cais.com ()
  54541. Newsgroups: comp.protocols.kermit.misc
  54542. Subject: MS-DOS 3.1.3 problems
  54543. Date: 23 Nov 1994 17:00:44 GMT
  54544. Organization: Capital Area Internet Service
  54545. Lines: 70
  54546. Message-Id: <3avsfs$iq2@news.cais.com>
  54547. Nntp-Posting-Host: cais2.cais.com
  54548. X-Newsreader: TIN [version 1.2 PL2]
  54549. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  54550.  
  54551. >From: darkstar@chopin.udel.edu (Jerry Alexandratos)
  54552. >
  54553. >:    1) The status line at the bottom of the screen comes back on
  54554. >:when connecting to the host, even though mode is set to off.
  54555. >:
  54556. >:    2) Terminals have been known to go dead after some use on the network.
  54557. >:
  54558. >:    3) "rollback 0" does not work the same as it did in 3.1.1.
  54559. >:
  54560. >:    4) File transfer does not work. We set terminalr and terminals
  54561. >:and execute the local escape sequence but the PC does not see it. Again,
  54562. >:it works in 3.11 version.
  54563. >:
  54564. >:    5) Inverse video does not work with multi-colors. I believe problem
  54565. >:4 and 5 are related since they send escape sequences to the PC and are not
  54566. >:getting to the PC.
  54567. >:
  54568. >Hmm, well, here's what I would take a crack at...
  54569. >
  54570. >1) See if there isn't a macro that connects you to a machine and
  54571. >   changes something around.  Do you connect by hand (set port tcp ...) or
  54572. >   do you have a macro handle all of this? 
  54573.  
  54574. I have removed all macros out of the `take` file. The problem appears
  54575. to be the way the UNIX system is initializing the terminal type, 
  54576.  
  54577. ie. tput init
  54578.  
  54579. That command seems to reset the terminal which includes adding kermits'
  54580. status line back. This worked in V3.13.
  54581.  
  54582. >2) Need more information for this one.  What type of network, etc...
  54583.  
  54584. I am not sure the real problem behind this -- it could be that our LAN
  54585. is just experiencing some traffic problems causing the drop in connection.
  54586. I will try to find out more on this as the other problems are ironed out.
  54587.  
  54588. >3) What was the original functionality that doesn't work now.  Are you
  54589. >   sure that you didn't change some local setting somewhere in your
  54590. >   mscustom.ini after upgrading?
  54591.  
  54592. There might just be a misunderstood idea of how it works; most people here
  54593. think by setting rollback to 0 that there will be unlimited amount of
  54594. screens to be saved. I will have to clarify this everyone involved here so
  54595. that this one can be resolved without any testing involved. 
  54596.    
  54597. >4) Terminals and Terminalr don't exist anymore.  Check the *.upd and
  54598. >   *.bwr files.  Their funcionality has been replace by using apc command
  54599. >   codes.  If you look at the C-Kermit ini files, you will see a bunch
  54600. >   of macros that use apc to send sequences down to the pc to do
  54601. >   ``one-sided'' file transfers.
  54602.  
  54603. I have looked up the apc in the kermit.upd but have not come upon how to
  54604. set it correctly on the PC side. There are examples on to do that same on
  54605. the host side but do not relate equivalently. I also do not have .ini files
  54606. where they are defined. Do you have any examples of such?
  54607.  
  54608. >5) Hmmm...  I don't know what to say for this one.
  54609.  
  54610. I am not sure either but will get to this one when the others are resolved.
  54611.  
  54612. >Hope this helped a little.
  54613. >
  54614.  
  54615. Thanks for the suggestions and for any other ideas.
  54616.  
  54617. Darren G. Pifer
  54618. NAVMASSO - Code 431
  54619. Phone: (804) 523-8098
  54620. E-mail: pifer@cais.com
  54621.  
  54622. From news@columbia.edu Wed Nov 23 06:29:10 1994
  54623. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28836
  54624.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 23 Nov 1994 18:21:37 -0500
  54625. Received: by apakabar.cc.columbia.edu id AA10292
  54626.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 23 Nov 1994 18:21:35 -0500
  54627. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!EU.net!uunet!emba-news.uvm.edu!news.cs.utah.edu!cc.usu.edu!jrd
  54628. From: jrd@cc.usu.edu (Joe Doupnik)
  54629. Newsgroups: comp.protocols.kermit.misc
  54630. Subject: Re: MS-DOS 3.1.3 problems
  54631. Message-Id: <1994Nov23.122910.33675@cc.usu.edu>
  54632. Date: 23 Nov 94 12:29:10 MDT
  54633. References: <3avsfs$iq2@news.cais.com>
  54634. Organization: Utah State University
  54635. Lines: 20
  54636. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  54637.  
  54638. In article <3avsfs$iq2@news.cais.com>, pifer@cais2.cais.com () writes:
  54639. >>From: darkstar@chopin.udel.edu (Jerry Alexandratos)
  54640.     <much omitted>    
  54641. >>4) Terminals and Terminalr don't exist anymore.  Check the *.upd and
  54642. >>   *.bwr files.  Their funcionality has been replace by using apc command
  54643. >>   codes.  If you look at the C-Kermit ini files, you will see a bunch
  54644. >>   of macros that use apc to send sequences down to the pc to do
  54645. >>   ``one-sided'' file transfers.
  54646. > I have looked up the apc in the kermit.upd but have not come upon how to
  54647. > set it correctly on the PC side. There are examples on to do that same on
  54648. > the host side but do not relate equivalently. I also do not have .ini files
  54649. > where they are defined. Do you have any examples of such?
  54650.  
  54651.     SET TERMINAL APC ? to see the only thing one can do on the clients.
  54652. It's that simple this time. The host's APC command has the text strings
  54653. (client Kermit commands) to be executed on the client. Creative folks may
  54654. wish to invoke macros on the client, and have those macros defined on the
  54655. client rather than sending long strings from the host. 
  54656.     Joe D.
  54657.  
  54658. From news@columbia.edu Wed Nov 23 09:04:38 1994
  54659. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05755
  54660.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 23 Nov 1994 21:12:37 -0500
  54661. Received: by apakabar.cc.columbia.edu id AA23456
  54662.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 23 Nov 1994 21:12:36 -0500
  54663. Path: news.columbia.edu!panix!news.mathworks.com!europa.eng.gtefsd.com!gatech!swrinde!pipex!uunet!emba-news.uvm.edu!news.cs.utah.edu!cc.usu.edu!jrd
  54664. From: jrd@cc.usu.edu (Joe Doupnik)
  54665. Newsgroups: comp.protocols.kermit.misc
  54666. Subject: Re: MS-DOS 3.1.3 problems
  54667. Message-Id: <1994Nov23.150438.33689@cc.usu.edu>
  54668. Date: 23 Nov 94 15:04:38 MDT
  54669. References: <3avsfs$iq2@news.cais.com> <3b058b$aeb@chopin.udel.edu>
  54670. Organization: Utah State University
  54671. Lines: 51
  54672. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  54673.  
  54674. In article <3b058b$aeb@chopin.udel.edu>, darkstar@chopin.udel.edu (Jerry Alexandratos) writes:
  54675. > In article <3avsfs$iq2@news.cais.com>,  <pifer@cais2.cais.com> wrote:
  54676. > :>From: darkstar@chopin.udel.edu (Jerry Alexandratos)
  54677. > :>:    3) "rollback 0" does not work the same as it did in 3.1.1.
  54678. > :>:
  54679. > :>:    4) File transfer does not work. We set terminalr and terminals
  54680. > :>:and execute the local escape sequence but the PC does not see it. Again,
  54681. > :>:it works in 3.11 version.
  54682.     <big chunks omitted>
  54683. > :There might just be a misunderstood idea of how it works; most people here
  54684. > :think by setting rollback to 0 that there will be unlimited amount of
  54685. > :screens to be saved. I will have to clarify this everyone involved here so
  54686. > :that this one can be resolved without any testing involved. 
  54687.  
  54688.     Rollback 0 has always meant, and continues to mean, no rollback
  54689. screens.
  54690.  
  54691. > Well, I would chalk it up to a misunderstanding.  For as long as I can
  54692. > remember, rollback 0 meant to turn off rollback.  In fact, give me a
  54693. > sec...  Yep, double-checking in my Using MS-Kermit v3.11 (didn't want
  54694. > to use the latest, just in case something may have changed), it says
  54695. > the same thing.
  54696. > :>4) Terminals and Terminalr don't exist anymore.  Check the *.upd and
  54697. > :>   *.bwr files.  Their funcionality has been replace by using apc command
  54698. > :>   codes.  If you look at the C-Kermit ini files, you will see a bunch
  54699. > :>   of macros that use apc to send sequences down to the pc to do
  54700. > :>   ``one-sided'' file transfers.
  54701. > :
  54702. > :I have looked up the apc in the kermit.upd but have not come upon how to
  54703. > :set it correctly on the PC side. There are examples on to do that same on
  54704. > :the host side but do not relate equivalently. I also do not have .ini files
  54705. > :where they are defined. Do you have any examples of such?
  54706. > Okay, here are the macros from C-Kermit:
  54707. > define pcget apc {send \%1 \%2}, receive
  54708. > define pcsend asg \%9 \ffiles(\%1),-
  54709. >   if = 0 \%9 end 1 {\?File not found},-
  54710. >   set delay 1, apc receive,-
  54711. >   if = 1 \%9 send \%1 \%2,-  ; Single file with as-name
  54712. >   else send \%1              ; or wildcard with no as-name
  54713. > Make sure you do ``set term apc on'' to enable this feature.  I think
  54714. > that MS-Kermit only accepts and understand APC signals, but doesn't
  54715. > send and out.
  54716. -------------
  54717.     Both. MSK 3.14 has command APC to send to a host, in addition to
  54718. VTxxx reception of them.
  54719.     Thanks Jerry,
  54720.     Joe D.
  54721.  
  54722. From news@columbia.edu Thu Nov 24 01:53:48 1994
  54723. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07623
  54724.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 23 Nov 1994 21:56:34 -0500
  54725. Received: by apakabar.cc.columbia.edu id AA26479
  54726.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 23 Nov 1994 21:56:32 -0500
  54727. Newsgroups: comp.protocols.kermit.misc
  54728. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!hookup!swrinde!howland.reston.ans.net!ix.netcom.com!netcom.com!jhurwit
  54729. From: jhurwit@netcom.com (Jeffrey Hurwit)
  54730. Subject: Re: MS-DOS 3.1.3 problems
  54731. Message-Id: <jhurwitCzr19o.Azu@netcom.com>
  54732. Organization: Organization?  What organization?
  54733. X-Newsreader: TIN [version 1.2 PL1]
  54734. References: <3avsfs$iq2@news.cais.com>
  54735. Date: Thu, 24 Nov 1994 01:53:48 GMT
  54736. Lines: 34
  54737. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  54738.  
  54739. In article <3avsfs$iq2@news.cais.com>, pifer@cais2.cais.com wrote:
  54740.  
  54741. >I have looked up the apc in the kermit.upd but have not come upon how
  54742. >to set it correctly on the PC side. There are examples on to do that
  54743. >same on the host side but do not relate equivalently. I also do not
  54744. >have .ini files where they are defined. Do you have any examples of
  54745. >such?
  54746.  
  54747.     I can help with this one (since I've used both apc and terminalR/
  54748.     terminalS).  There's nothing to set up on the PC side with apc, no
  54749.     terminalR or terminalS macros.  That's the idea-- apc is more
  54750.     flexible.  You just have the host Kermit execute 'apc comma,
  54751.     separated,list,of,commands', and this list will be sent to the PC,
  54752.     which will execute them as though they were a comma separated list
  54753.     of commands in a macro definition.  The PC Kermit automatically
  54754.     goes to command mode when it recieves an apc, and automatically
  54755.     returns to terminal mode after it finishes executing the commands.
  54756.  
  54757.     The only thing that you may want to set on your PC is the 'terminal
  54758.     apc' variable.  Default is 'on', which enables "safe" commands.  If
  54759.     you want your apc to include delete, run (shell to DOS), or other
  54760.     "unsafe" commands, you need to 'set terminal apc unchecked' first. 
  54761.     This itself can be done from the host, with a separate apc command. 
  54762.     Note that terminal apc should be reset back to 'on' as soon as
  54763.     possible.  The apc from the host can also instruct your PC to
  54764.     execute a macro or take file you want something.
  54765.  
  54766.     One last little note:  If you want a backslash sent in an apc
  54767.     command (eg. directory specifications) from a Unix host, it seems
  54768.     to be necessary to escape it with a second one, or it isn't sent.
  54769.  
  54770.     Hope that helps.
  54771.  
  54772.                         Jeff
  54773.  
  54774. From news@columbia.edu Thu Nov 24 05:04:30 1994
  54775. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23085
  54776.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 24 Nov 1994 05:20:43 -0500
  54777. Received: by apakabar.cc.columbia.edu id AA17512
  54778.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 24 Nov 1994 05:20:42 -0500
  54779. Newsgroups: comp.protocols.kermit.misc
  54780. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!udel!gatech!howland.reston.ans.net!ix.netcom.com!netcom.com!jhurwit
  54781. From: jhurwit@netcom.com (Jeffrey Hurwit)
  54782. Subject: Re: MS-DOS 3.1.3 problems
  54783. Message-Id: <jhurwitCzrA3J.H7q@netcom.com>
  54784. Organization: Organization?  What organization?
  54785. X-Newsreader: TIN [version 1.2 PL1]
  54786. References: <3avsfs$iq2@news.cais.com> <3b058b$aeb@chopin.udel.edu>
  54787. Date: Thu, 24 Nov 1994 05:04:30 GMT
  54788. Lines: 12
  54789. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  54790.  
  54791. In article <3b058b$aeb@chopin.udel.edu>, Jerry Alexandratos
  54792. (darkstar@chopin.udel.edu) wrote:
  54793.  
  54794. >Make sure you do ``set term apc on'' to enable this feature.  I think
  54795. >that MS-Kermit only accepts and understand APC signals, but doesn't
  54796. >send and out.
  54797.  
  54798.     Quickly checking kermit.hlp for 3.13, this seems to be the case. 
  54799.     This is probably because if you want to control the host Kermit
  54800.     from the PC end, you put the host Kermit in server mode.
  54801.  
  54802.                         Jeff
  54803.  
  54804. From news@columbia.edu Wed Nov 23 14:51:28 1994
  54805. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23867
  54806.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 24 Nov 1994 05:50:05 -0500
  54807. Received: by apakabar.cc.columbia.edu id AA18787
  54808.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 24 Nov 1994 05:50:04 -0500
  54809. Path: news.columbia.edu!sol.ctr.columbia.edu!newsxfer.itd.umich.edu!gatech!howland.reston.ans.net!usc!nic-nac.CSU.net!clstac!kastanchfiel
  54810. From: kastanchfiel@csupomona.edu (Kevin Anthony Stanchfield)
  54811. Newsgroups: comp.protocols.kermit.misc
  54812. Subject: Slow _binary_ download/fast text download?
  54813. Date: 23 Nov 94 22:51:28 PST
  54814. Organization: California State Polytechnic University, Pomona
  54815. Lines: 7
  54816. Message-Id: <1994Nov23.225128@clstac>
  54817. Nntp-Posting-Host: pinto.is.csupomona.edu
  54818. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  54819.  
  54820. First of all, I would like to thank you all for your help in gitting
  54821. my machine to download binary al well as text files... The "SET PARITY
  54822. SPACE" worked!!  No I got a new prob., the transfers are soooo slow!
  54823. And, they never finish, the always fail.  I'm using a 14.4 to call up a 
  54824. 9600 baud telnet site to connect to my university.  Hardware flow control,
  54825. 7s1, set parity space, windows 4, port speed is 57.6K, I'm using MS-Kermit
  54826. 3.14,...  What else it there?
  54827.  
  54828. From news@columbia.edu Thu Nov 24 11:03:16 1994
  54829. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24654
  54830.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 24 Nov 1994 06:12:16 -0500
  54831. Received: by apakabar.cc.columbia.edu id AA19750
  54832.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 24 Nov 1994 06:12:14 -0500
  54833. Newsgroups: comp.protocols.kermit.misc
  54834. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!pipex!ibmpcug!kate.ibmpcug.co.uk!alun
  54835. From: alun@ibmpcug.co.uk (Alun Jenkins)
  54836. Subject: DPS 6 kermit !
  54837. Organization: /usr/lib/news/organiszation
  54838. Date: Thu, 24 Nov 1994 11:03:16 GMT
  54839. Message-Id: <CzrqpI.Fvy@ibmpcug.co.uk>
  54840. Lines: 13
  54841. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  54842.  
  54843. Hello!,
  54844.  
  54845. I have the doubtful honour of trying to get DPS 6 kermit working
  54846. Unfortunatly i dont have a C compiler can any one help
  54847. Im running GCOS V2.0
  54848.  
  54849. Alun Jenkins
  54850.  
  54851. -- 
  54852. Alun G Jenkins            Tech Support                 OSICOM UK
  54853. -----------------------------------------------------------------
  54854. Fanatic Viper 3.20 Bic Allegro 2.7 Mosquito 2.55
  54855. Neil Pryde 3.5 4.5 5.5 Twin cam ST
  54856.  
  54857. From news@columbia.edu Wed Nov 23 19:30:19 1994
  54858. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01643
  54859.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 24 Nov 1994 11:23:18 -0500
  54860. Received: by apakabar.cc.columbia.edu id AA05676
  54861.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 24 Nov 1994 11:23:15 -0500
  54862. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!udel!news-4.nss.udel.edu!chopin.udel.edu!not-for-mail
  54863. From: darkstar@chopin.udel.edu (Jerry Alexandratos)
  54864. Newsgroups: comp.protocols.kermit.misc
  54865. Subject: Re: MS-DOS 3.1.3 problems
  54866. Date: 23 Nov 1994 14:30:19 -0500
  54867. Organization: Broken Toys Unlimited
  54868. Lines: 101
  54869. Message-Id: <3b058b$aeb@chopin.udel.edu>
  54870. References: <3avsfs$iq2@news.cais.com>
  54871. Nntp-Posting-Host: chopin.udel.edu
  54872. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  54873.  
  54874. In article <3avsfs$iq2@news.cais.com>,  <pifer@cais2.cais.com> wrote:
  54875. :>From: darkstar@chopin.udel.edu (Jerry Alexandratos)
  54876. :>
  54877. :>:    1) The status line at the bottom of the screen comes back on
  54878. :>:when connecting to the host, even though mode is set to off.
  54879. :>:
  54880. :>:    2) Terminals have been known to go dead after some use on the network.
  54881. :>:
  54882. :>:    3) "rollback 0" does not work the same as it did in 3.1.1.
  54883. :>:
  54884. :>:    4) File transfer does not work. We set terminalr and terminals
  54885. :>:and execute the local escape sequence but the PC does not see it. Again,
  54886. :>:it works in 3.11 version.
  54887. :>:
  54888. :>:    5) Inverse video does not work with multi-colors. I believe problem
  54889. :>:4 and 5 are related since they send escape sequences to the PC and are not
  54890. :>:getting to the PC.
  54891. :>:
  54892. :>Hmm, well, here's what I would take a crack at...
  54893. :>
  54894. :>1) See if there isn't a macro that connects you to a machine and
  54895. :>   changes something around.  Do you connect by hand (set port tcp ...) or
  54896. :>   do you have a macro handle all of this? 
  54897. :
  54898. :I have removed all macros out of the `take` file. The problem appears
  54899. :to be the way the UNIX system is initializing the terminal type, 
  54900. :
  54901. :ie. tput init
  54902. :
  54903. :That command seems to reset the terminal which includes adding kermits'
  54904. :status line back. This worked in V3.13.
  54905.  
  54906. Okay, what's probably happening is that tput is trying to (and
  54907. succeeding at reinitializing your screen).  What you want to do is tell
  54908. tput to set the information for the host and just reset the terminal
  54909. (thus you're assuming everything on the terminal is fine--which it
  54910. should be).  So, just use the ``tput reset'' command in your .login. 
  54911. The ``reset'' argument tells it to just reset the terminal instead of
  54912. reinitializing it...
  54913.  
  54914. :>2) Need more information for this one.  What type of network, etc...
  54915. :
  54916. :I am not sure the real problem behind this -- it could be that our LAN
  54917. :is just experiencing some traffic problems causing the drop in connection.
  54918. :I will try to find out more on this as the other problems are ironed out.
  54919. :
  54920. :>3) What was the original functionality that doesn't work now.  Are you
  54921. :>   sure that you didn't change some local setting somewhere in your
  54922. :>   mscustom.ini after upgrading?
  54923. :
  54924. :There might just be a misunderstood idea of how it works; most people here
  54925. :think by setting rollback to 0 that there will be unlimited amount of
  54926. :screens to be saved. I will have to clarify this everyone involved here so
  54927. :that this one can be resolved without any testing involved. 
  54928.  
  54929. Well, I would chalk it up to a misunderstanding.  For as long as I can
  54930. remember, rollback 0 meant to turn off rollback.  In fact, give me a
  54931. sec...  Yep, double-checking in my Using MS-Kermit v3.11 (didn't want
  54932. to use the latest, just in case something may have changed), it says
  54933. the same thing.
  54934.  
  54935. :>4) Terminals and Terminalr don't exist anymore.  Check the *.upd and
  54936. :>   *.bwr files.  Their funcionality has been replace by using apc command
  54937. :>   codes.  If you look at the C-Kermit ini files, you will see a bunch
  54938. :>   of macros that use apc to send sequences down to the pc to do
  54939. :>   ``one-sided'' file transfers.
  54940. :
  54941. :I have looked up the apc in the kermit.upd but have not come upon how to
  54942. :set it correctly on the PC side. There are examples on to do that same on
  54943. :the host side but do not relate equivalently. I also do not have .ini files
  54944. :where they are defined. Do you have any examples of such?
  54945.  
  54946. Okay, here are the macros from C-Kermit:
  54947.  
  54948. define pcget apc {send \%1 \%2}, receive
  54949. define pcsend asg \%9 \ffiles(\%1),-
  54950.   if = 0 \%9 end 1 {\?File not found},-
  54951.   set delay 1, apc receive,-
  54952.   if = 1 \%9 send \%1 \%2,-  ; Single file with as-name
  54953.   else send \%1              ; or wildcard with no as-name
  54954.  
  54955. Make sure you do ``set term apc on'' to enable this feature.  I think
  54956. that MS-Kermit only accepts and understand APC signals, but doesn't
  54957. send and out.
  54958.  
  54959. :>5) Hmmm...  I don't know what to say for this one.
  54960. :
  54961. :I am not sure either but will get to this one when the others are resolved.
  54962. :
  54963. :>Hope this helped a little.
  54964. :>
  54965. :Thanks for the suggestions and for any other ideas.
  54966.  
  54967. Glad to be of help.
  54968.  
  54969.         --Jerry
  54970.  
  54971. -- 
  54972. |>  Jerry Alexandratos                **  "vengo de la tierra del    <|
  54973. |>  darkstar@strauss.udel.edu         **   fuego ten cuidado cuando  <|
  54974. |>  darkstar@canary.pearson.udel.edu  **   llamas mi nombre..."      <|
  54975.  
  54976. From news@columbia.edu Thu Nov 24 16:30:32 1994
  54977. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01932
  54978.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 24 Nov 1994 11:30:38 -0500
  54979. Received: by apakabar.cc.columbia.edu id AA05948
  54980.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 24 Nov 1994 11:30:36 -0500
  54981. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  54982. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  54983. Newsgroups: comp.protocols.kermit.misc
  54984. Subject: Re: Slow _binary_ download/fast text download?
  54985. Date: 24 Nov 1994 16:30:32 GMT
  54986. Organization: Columbia University
  54987. Lines: 23
  54988. Message-Id: <3b2f39$5pq@apakabar.cc.columbia.edu>
  54989. References: <1994Nov23.225128@clstac>
  54990. Nntp-Posting-Host: watsun.cc.columbia.edu
  54991. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  54992.  
  54993. In article <1994Nov23.225128@clstac>,
  54994. Kevin Anthony Stanchfield <kastanchfiel@csupomona.edu> wrote:
  54995. >First of all, I would like to thank you all for your help in gitting
  54996. >my machine to download binary al well as text files... The "SET PARITY
  54997. >SPACE" worked!!  No I got a new prob., the transfers are soooo slow!
  54998. >And, they never finish, the always fail.  I'm using a 14.4 to call up a 
  54999. >9600 baud telnet site to connect to my university.  Hardware flow control,
  55000. >7s1, set parity space, windows 4, port speed is 57.6K, I'm using MS-Kermit
  55001. >3.14,...  What else it there?
  55002. >
  55003. Long packets.  Tell the file receiver to "set receive packet-length 1000"
  55004. or thereabouts.
  55005.  
  55006. Control-character unprefixing.  Read about this in the KERMIT.UPD file.
  55007.  
  55008. The real question remains: why are your transfers failing?  Let's figure
  55009. this one out, and then we can make them as fast as possible.
  55010.  
  55011. Tell MS-DOS Kermit to "log packet", then try to transfer a file.  Then
  55012. tell MS-DOS Kermit to "close packet", and send the resulting PACKET.LOG
  55013. file by e-mail to kermit@columbia.edu for analysis.
  55014.  
  55015. - Frank
  55016.  
  55017. From news@columbia.edu Wed Nov 23 15:27:59 1994
  55018. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02002
  55019.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 24 Nov 1994 11:32:35 -0500
  55020. Received: by apakabar.cc.columbia.edu id AA06142
  55021.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 24 Nov 1994 11:32:34 -0500
  55022. Newsgroups: comp.protocols.kermit.misc
  55023. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!europa.eng.gtefsd.com!howland.reston.ans.net!swrinde!pipex!uunet!newsflash.concordia.ca!CC.UMontreal.CA!IRO.UMontreal.CA!clouso.crim.ca!hobbit.ireq.hydro.qc.ca!seguin!regie
  55024. From: regie@ireq-robot.hydro.qc.ca (Regis Houde)
  55025. Subject: Xmodem with kermit
  55026. Message-Id: <Czq8Ao.6qn@ireq.hydro.qc.ca>
  55027. Sender: news@ireq.hydro.qc.ca (Netnews Admin)
  55028. Reply-To: regie@ireq-robot.hydro.qc.ca
  55029. Organization: IREQ - Hydro-Quebec
  55030. Date: Wed, 23 Nov 1994 15:27:59 GMT
  55031. Lines: 43
  55032. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  55033.  
  55034.  
  55035. Sorry if this is a trivial question but...
  55036.  
  55037. I want to download a file from Unix to a BBS using Xmodem. I
  55038. don't have control over the protocol/software used by the BBS
  55039. machine. Here is what I did (and it didn't work...)
  55040.  
  55041. ------- Kermit session ------
  55042.  
  55043. set modem hayes
  55044. set line /dev/cua1        
  55045. set file type binary
  55046. set speed 9600
  55047. dial BBS_NUMBER
  55048. connect
  55049.  
  55050. %     Here I placed the BBS software in the recieve mode
  55051. %
  55052.  
  55053. % I tried
  55054.  
  55055. run xmodem -sbk my_file
  55056.  
  55057. % And
  55058.  
  55059. !xmodem -sbk my_file
  55060.  
  55061.  
  55062. ------- End of Kermit session ------
  55063.  
  55064. What am I doing wrong? If someone know how to do it using tip, I'll
  55065. appreciate too.
  55066.  
  55067. Thank you
  55068.  
  55069.  
  55070. --------------------------------------------------------------------
  55071. Regis Houde                             regie@ireq-robot.hydro.qc.ca
  55072. Institut de recherche d'Hydro-Quebec    regie@ireq-robot.uucp
  55073. 1800, montee Sainte-Julie        (514) 652-8107
  55074. Varennes, Que., Canada   J3X 1S1    FAX : (514) 652-1316
  55075. --------------------------------------------------------------------
  55076.  
  55077.  
  55078. From news@columbia.edu Thu Nov 24 16:12:11 1994
  55079. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02572
  55080.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 24 Nov 1994 11:48:58 -0500
  55081. Received: by apakabar.cc.columbia.edu id AA06996
  55082.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 24 Nov 1994 11:48:56 -0500
  55083. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!Germany.EU.net!EU.net!uunet!noc.near.net!saturn.caps.maine.edu!news.ycc.yale.edu!yar.trincoll.edu!nmiller
  55084. From: nmiller@trincoll.edu (Norman Miller)
  55085. Newsgroups: comp.protocols.kermit.misc
  55086. Subject: Re: Help needed with Hebrew Kermit
  55087. Date: 24 Nov 1994 16:12:11 GMT
  55088. Organization: Trinity College, Hartford, CT
  55089. Lines: 10
  55090. Message-Id: <3b2e0r$99g@yar.trincoll.edu>
  55091. References: <3aoh8b$hhn@crl5.crl.com> <1994Nov20.164015.33381@cc.usu.edu>
  55092. Nntp-Posting-Host: mail.cc.trincoll.edu
  55093. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  55094.  
  55095. Thanks to Joe Doupnik for his reply.  Version 3.14 is up and running
  55096. and all is well.  There were some problems with the instructions in
  55097. hebrew.doc (getting back to English) but not serious.
  55098.  
  55099. The one problem I haven't solved may be with 3.14 itself.  I have no trouble
  55100. using zmodem when running under 4dos.com.  The same command processor,
  55101. however, isn't recognized when I run Kermit under Desqview.  Other than that,
  55102. MS-Kermit continues to be the best I've seen.
  55103.  
  55104. Norman Miller
  55105.  
  55106. From news@columbia.edu Thu Nov 24 17:19:14 1994
  55107. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03773
  55108.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 24 Nov 1994 12:29:03 -0500
  55109. Received: by apakabar.cc.columbia.edu id AA21358
  55110.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 24 Nov 1994 12:29:01 -0500
  55111. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!pipex!sunsite.doc.ic.ac.uk!susx.ac.uk!leilabd
  55112. From: leilabd@central.susx.ac.uk (Leila Burrell-Davis)
  55113. Newsgroups: comp.protocols.kermit.misc,alt.winsock
  55114. Subject: Re: winsock/MS-Kermit hack possible? (Was: winsock/pkt drv hack...)
  55115. Date: 24 Nov 1994 17:19:14 GMT
  55116. Organization: Computing Service, University of Sussex, UK
  55117. Lines: 73
  55118. Message-Id: <3b2hui$4ih@infa.central.susx.ac.uk>
  55119. References: <3a67j8$j39@Mercury.mcs.com> <3anvci$dut@relay.tor.hookup.net>  <soren.223.000F87E0@aztec.co.za> <1994Nov21.105430.33454@cc.usu.edu> <1994Nov22.220204.1@cc.helsinki.fi> <3avjhn$ae3@infa.central.susx.ac.uk>
  55120. Nntp-Posting-Host: solx1.central.susx.ac.uk
  55121. X-Newsreader: TIN [version 1.2 PL2]
  55122. Xref: news.columbia.edu comp.protocols.kermit.misc:1210 alt.winsock:23017
  55123. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  55124.  
  55125. I (leilabd@central.susx.ac.uk) wrote:
  55126. % Yes. We do that here. We run MS-Kermit and Trumpet Winsock
  55127. % simultaneously and it works. (The IP no. and other IP info is
  55128. % supplied by a bootp server.) I constantly marvel at how clever it is! 
  55129.  
  55130. And I was asked by email for details of the setup we use. In case
  55131. anyone else is interested:
  55132.  
  55133. If running over packet drivers I load the following before starting
  55134. Windows. I use 3 pktdrv's (I had some problems with only 2, though
  55135. that should have been enough, 1 for Kermit & 1 for Winsock)
  55136.  
  55137.     rmftpat2 0x78  [ packet driver for my ethernet card ]
  55138.     pktmux /i 3
  55139.     pktdrv
  55140.     pktdrv
  55141.     pktdrv
  55142.  
  55143. This is the odi solution we use when we also want to connect to a
  55144. NetWare server:
  55145.  
  55146.     lsl
  55147.     rmodiat2       [ this is odi driver for my ethernet card ]
  55148.     odipkt 1 0x78 
  55149.     pktmux 3  
  55150.     pktdrv  
  55151.     pktdrv  
  55152.     pktdrv  
  55153. [then NetWare stuff]
  55154.     ipxodi
  55155.     netx
  55156.     login
  55157.  
  55158. And in my net.cfg I have:
  55159.  
  55160. Link Support
  55161.     Max Stacks 8
  55162.     buffers 8 1600
  55163.     MemPool 4096
  55164.  
  55165. Link Driver rmodiat2
  55166.     Frame Ethernet_802.3
  55167.     Frame Ethernet_II
  55168.     Protocol IPX 0 Ethernet_802.3
  55169.  
  55170. ; I have no idea if I need this next chunk but it works so I leave it in
  55171. Protocol TCPIP
  55172.     tcp_sockets     8
  55173.     udp_sockets     8
  55174.     raw_sockets     1
  55175.     nb_sessions     4
  55176.     nb_commands     8
  55177.     nb_adapter      0
  55178.     nb_domain       
  55179.  
  55180. show dots = on
  55181. long machine type = RM_PC
  55182. file handles = 80
  55183. get local target stacks = 10
  55184. spx = 20
  55185. preferred server = CS06
  55186.  
  55187. Then I run Windows. Both Kermit and Winsock are in my path. Both get
  55188. their IP configuration info from a bootp server running on a unix box.
  55189.  
  55190. Hope this helps,
  55191.  
  55192. Leila
  55193. -- 
  55194. Leila Burrell-Davis, Computing Service, University of Sussex, Brighton, UK
  55195. Tel:  +44 (0) 1273 678390            Fax:  +44 (0) 1273 678470
  55196. Email: L.Burrell-Davis@sussex.ac.uk
  55197. PGP Public Key fingerprint: 18 A3 45 D6 40 6D 62 00  E9 71 AD 18 E8 E2 9F 7D 
  55198.  
  55199. From news@columbia.edu Wed Nov 23 08:14:08 1994
  55200. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04362
  55201.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 24 Nov 1994 12:43:19 -0500
  55202. Received: by apakabar.cc.columbia.edu id AA22108
  55203.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 24 Nov 1994 12:43:18 -0500
  55204. Newsgroups: comp.protocols.kermit.misc
  55205. Path: news.columbia.edu!panix!bloom-beacon.mit.edu!gatech!howland.reston.ans.net!agate!ames!news.Hawaii.Edu!mpg.phys.hawaii.edu!tony
  55206. From: tony@mpg.phys.hawaii.edu (Antonio Querubin)
  55207. Subject: disabling \ translation
  55208. Message-Id: <Czpo7K.3Jx@news.Hawaii.Edu>
  55209. Sender: news@news.Hawaii.Edu
  55210. Organization: University of Hawaii
  55211. X-Newsreader: TIN [version 1.2 PL2]
  55212. Date: Wed, 23 Nov 1994 08:14:08 GMT
  55213. Lines: 13
  55214. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  55215.  
  55216. I have a kermit script which reads a line at a time from a text file and
  55217. outputs it to the active com port.  The problem I have is that some of the
  55218. text in the file consists of the \ character followed by numbers.  When
  55219. the line is output to the com port it will sometimes transmit translated
  55220. characters rather than the original text from the file.  For example, an
  55221. 'output aaa\97128bbb' will generate 'aaa\97128bbb' while 'output
  55222. aaa\47122bbb' generates two strange characters sandwiched between 'aaa'
  55223. and 'bbb'.  Is there any way of disabling the \ translation feature
  55224. temporarily in a script? 
  55225.  
  55226. --
  55227. Antonio Querubin  
  55228. tony@mpg.phys.hawaii.edu / ah6bw@uhm.ampr.org
  55229.  
  55230. From news@columbia.edu Thu Nov 24 18:12:09 1994
  55231. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05296
  55232.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 24 Nov 1994 13:12:12 -0500
  55233. Received: by apakabar.cc.columbia.edu id AA23691
  55234.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 24 Nov 1994 13:12:11 -0500
  55235. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  55236. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  55237. Newsgroups: comp.protocols.kermit.misc
  55238. Subject: Re: disabling \ translation
  55239. Date: 24 Nov 1994 18:12:09 GMT
  55240. Organization: Columbia University
  55241. Lines: 27
  55242. Message-Id: <3b2l1p$n49@apakabar.cc.columbia.edu>
  55243. References: <Czpo7K.3Jx@news.hawaii.edu>
  55244. Nntp-Posting-Host: watsun.cc.columbia.edu
  55245. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  55246.  
  55247. In article <Czpo7K.3Jx@news.hawaii.edu>,
  55248. Antonio Querubin <tony@mpg.phys.hawaii.edu> wrote:
  55249. >I have a kermit script which reads a line at a time from a text file and
  55250. >outputs it to the active com port.
  55251. >
  55252. Using which Kermit program, and what version?
  55253.  
  55254. When commenting on the behavior of a software program, it is always a
  55255. good idea to say which program it is, and which version of it.
  55256.  
  55257. >The problem I have is that some of the text in the file consists of the \
  55258. >character followed by numbers.  When the line is output to the com port
  55259. >it will sometimes transmit translated characters rather than the original
  55260. >text from the file.  ...  Is there any way of disabling the \ translation
  55261. >feature temporarily in a script?
  55262. >
  55263. Yes.  In C-Kermit 5A(190), there is "set command quoting off".  Also, in
  55264. both C-Kermit 5A (188-190) and MS-DOS Kermit 3.14 (but not earlier), you
  55265. should be able to do something like this:
  55266.  
  55267.   read \%a
  55268.   output \fcontents(\%a)
  55269.  
  55270. By the way, a similar kind of problem occurs whenever you need to refer
  55271. to DOS-like pathnames in a Kermit script.  The solutions are the same.
  55272.  
  55273. - Frank
  55274.  
  55275. From news@columbia.edu Thu Nov 24 04:54:25 1994
  55276. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05310
  55277.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 24 Nov 1994 13:13:00 -0500
  55278. Received: by apakabar.cc.columbia.edu id AA23705
  55279.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 24 Nov 1994 13:12:59 -0500
  55280. Path: news.columbia.edu!panix!bloom-beacon.mit.edu!gatech!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  55281. From: jrd@cc.usu.edu (Joe Doupnik)
  55282. Newsgroups: comp.protocols.kermit.misc
  55283. Subject: Re: Help needed with Hebrew Kermit
  55284. Message-Id: <1994Nov24.105425.33738@cc.usu.edu>
  55285. Date: 24 Nov 94 10:54:25 MDT
  55286. References: <3aoh8b$hhn@crl5.crl.com> <1994Nov20.164015.33381@cc.usu.edu> <3b2e0r$99g@yar.trincoll.edu>
  55287. Organization: Utah State University
  55288. Lines: 16
  55289. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  55290.  
  55291. In article <3b2e0r$99g@yar.trincoll.edu>, nmiller@trincoll.edu (Norman Miller) writes:
  55292. > Thanks to Joe Doupnik for his reply.  Version 3.14 is up and running
  55293. > and all is well.  There were some problems with the instructions in
  55294. > hebrew.doc (getting back to English) but not serious.
  55295. > The one problem I haven't solved may be with 3.14 itself.  I have no trouble
  55296. > using zmodem when running under 4dos.com.  The same command processor,
  55297.  
  55298.     Look at COMSPEC= in your Environment and see  "...\4dos.com" which 
  55299. means binary four to Kermit. Had 4dos.com been named fourdos.com there would 
  55300. have been no problem.
  55301.     Joe D.
  55302.  
  55303. > however, isn't recognized when I run Kermit under Desqview.  Other than that,
  55304. > MS-Kermit continues to be the best I've seen.
  55305.  
  55306.  
  55307. From news@columbia.edu Thu Nov 24 18:23:03 1994
  55308. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05785
  55309.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 24 Nov 1994 13:23:07 -0500
  55310. Received: by apakabar.cc.columbia.edu id AA24462
  55311.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 24 Nov 1994 13:23:05 -0500
  55312. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  55313. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  55314. Newsgroups: comp.protocols.kermit.misc
  55315. Subject: Kermit WWW Home Page
  55316. Date: 24 Nov 1994 18:23:03 GMT
  55317. Organization: Columbia University
  55318. Lines: 15
  55319. Message-Id: <3b2lm7$nsc@apakabar.cc.columbia.edu>
  55320. Nntp-Posting-Host: watsun.cc.columbia.edu
  55321. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  55322.  
  55323.  
  55324. For Infobahn surfers, a first cut at a home page for Kermit.  The URL is:
  55325.  
  55326.   http://www.columbia.edu/~kermit/
  55327.  
  55328. Comments welcome, via email to kermit@columbia.edu -- please let's not
  55329. clog the newsgroup with discussions about home-page and HTML trivia.
  55330.  
  55331. I'd appreciate having pointers to this new home page added to home pages
  55332. in other locations.
  55333.  
  55334. And yes, I know there are no pictures of frogs.  That is on purpose;
  55335. please don't bother sending frog pictures.  Thanks.
  55336.  
  55337. - Frank
  55338.  
  55339. From news@columbia.edu Thu Nov 24 10:12:13 1994
  55340. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12512
  55341.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 24 Nov 1994 17:02:51 -0500
  55342. Received: by apakabar.cc.columbia.edu id AA06983
  55343.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 24 Nov 1994 17:02:49 -0500
  55344. Path: news.columbia.edu!sol.ctr.columbia.edu!news.moneng.mei.com!hookup!caen!kuhub.cc.ukans.edu!tdsmith
  55345. From: tdsmith@kuhub.cc.ukans.edu
  55346. Newsgroups: comp.protocols.kermit.misc
  55347. Subject: Re: Slow _binary_ download/fast text download?
  55348. Message-Id: <1994Nov24.151213.78500@kuhub.cc.ukans.edu>
  55349. Date: 24 Nov 94 15:12:13 CDT
  55350. References: <1994Nov23.225128@clstac> <3b2f39$5pq@apakabar.cc.columbia.edu>
  55351. Organization: University of Kansas Academic Computing Services
  55352. Lines: 33
  55353. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  55354.  
  55355. In article <3b2f39$5pq@apakabar.cc.columbia.edu>, fdc@watsun.cc.columbia.edu (Frank da Cruz) writes:
  55356. > In article <1994Nov23.225128@clstac>,
  55357. > Kevin Anthony Stanchfield <kastanchfiel@csupomona.edu> wrote:
  55358. >>First of all, I would like to thank you all for your help in gitting
  55359. >>my machine to download binary al well as text files... The "SET PARITY
  55360. >>SPACE" worked!!  No I got a new prob., the transfers are soooo slow!
  55361. >>And, they never finish, the always fail.  I'm using a 14.4 to call up a 
  55362. >>9600 baud telnet site to connect to my university.  Hardware flow control,
  55363. >>7s1, set parity space, windows 4, port speed is 57.6K, I'm using MS-Kermit
  55364. >>3.14,...  What else it there?
  55365. >>
  55366. > Long packets.  Tell the file receiver to "set receive packet-length 1000"
  55367. > or thereabouts.
  55368. > Control-character unprefixing.  Read about this in the KERMIT.UPD file.
  55369. > The real question remains: why are your transfers failing?  Let's figure
  55370. > this one out, and then we can make them as fast as possible.
  55371. > Tell MS-DOS Kermit to "log packet", then try to transfer a file.  Then
  55372. > tell MS-DOS Kermit to "close packet", and send the resulting PACKET.LOG
  55373. > file by e-mail to kermit@columbia.edu for analysis.
  55374. > - Frank
  55375.  
  55376. Just to add a data point: with a high load on the computer that I'm 
  55377. posting from (a DEC 7000), transfers will hang sometimes.  MS-Kermit 
  55378. will then go into its retry cycle.  I've had it time out, even with 
  55379. retries set to 63.  Fortunately, it's a rare occurrence.
  55380.  
  55381. Good luck.
  55382.  
  55383. Troy Smith
  55384.  
  55385. From news@columbia.edu Thu Nov 24 22:26:41 1994
  55386. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13241
  55387.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 24 Nov 1994 17:26:44 -0500
  55388. Received: by apakabar.cc.columbia.edu id AA08504
  55389.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 24 Nov 1994 17:26:43 -0500
  55390. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  55391. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  55392. Newsgroups: comp.protocols.kermit.misc
  55393. Subject: Re: Slow _binary_ download/fast text download?
  55394. Date: 24 Nov 1994 22:26:41 GMT
  55395. Organization: Columbia University
  55396. Lines: 26
  55397. Message-Id: <3b33v1$89m@apakabar.cc.columbia.edu>
  55398. References: <1994Nov23.225128@clstac> <3b2f39$5pq@apakabar.cc.columbia.edu> <1994Nov24.151213.78500@kuhub.cc.ukans.edu>
  55399. Nntp-Posting-Host: watsun.cc.columbia.edu
  55400. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  55401.  
  55402. In article <1994Nov24.151213.78500@kuhub.cc.ukans.edu>,
  55403. <tdsmith@kuhub.cc.ukans.edu> wrote:
  55404. >Just to add a data point: with a high load on the computer that I'm 
  55405. >posting from (a DEC 7000), transfers will hang sometimes.  MS-Kermit 
  55406. >will then go into its retry cycle.  I've had it time out, even with 
  55407. >retries set to 63.  Fortunately, it's a rare occurrence.
  55408. >
  55409. Right.  Of course, if the load on one or both systems is hideously
  55410. high, or the network is horribly congested, then Kermit can time out
  55411. before the expected packet comes, even though it would have come
  55412. eventually.  Here again, the user has control.  The solution is to
  55413. increase the timeout interval, rather than the retry limit.  The
  55414. trick is to avoid unnecessary retransmissions, not to increase the
  55415. number of them.  The command is "set receive timeout", which should
  55416. be given to both Kermit programs in advance of the transfer, for
  55417. example:
  55418.  
  55419.   set receive timeout 20
  55420.  
  55421. to increase the timeout interval from the default 5 seconds to
  55422. 20 seconds.  If you know the connection is good, but very slow,
  55423. you can use "set receive timeout 0", meaning wait forever for
  55424. each packet, and don't time out.  For greater detail, see the
  55425. Command Summary section of "Using MS-DOS Kermit".
  55426.  
  55427. - Frank
  55428.  
  55429. From news@columbia.edu Fri Nov 25 01:31:37 1994
  55430. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18522
  55431.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 24 Nov 1994 20:34:11 -0500
  55432. Received: by apakabar.cc.columbia.edu id AA19061
  55433.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 24 Nov 1994 20:34:09 -0500
  55434. Newsgroups: comp.protocols.kermit.misc
  55435. Path: news.columbia.edu!panix!zip.eecs.umich.edu!newsxfer.itd.umich.edu!gatech!howland.reston.ans.net!news.sprintlink.net!news.indirect.com!monty
  55436. From: monty@indirect.com (Jim Monty)
  55437. Subject: [?] MS-DOS Kermit 3.13 and PPP
  55438. Message-Id: <Czsuwq.LL1@indirect.com>
  55439. Sender: usenet@indirect.com (System Operator)
  55440. Organization: Internet Direct, indirect.com
  55441. Date: Fri, 25 Nov 1994 01:31:37 GMT
  55442. X-Newsreader: TIN [version 1.2.1 [BP] PL2.1]
  55443. Lines: 30
  55444. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  55445.  
  55446. I've been told by my Internet service provider that, for my SLIP account,
  55447. I need to use "dynamic" IP addressing in lieu of "static" IP addressing.  
  55448. I've also been told that, if I switch from SLIP to PPP, I won't need to 
  55449. worry about dynamic versus static IP addressing because PPP does what I 
  55450. need it to do.  I'm confused.
  55451.  
  55452. I use MS-DOS Kermit 3.13 and its built-in TCP/IP support in tandem with
  55453. the SLIP8250 packet driver.  Sometimes I can initiate a TCP/IP connection 
  55454. to a remote host, sometimes I can't.  Apparently, the reason for this 
  55455. intermittent success is that my service provider uses different terminal 
  55456. servers, some of which only support dynamic IP addressing.
  55457.  
  55458. 1.  Does MS-DOS Kermit 3.13 support dynamic IP addressing?  If so, what 
  55459. _is_ "dynamic" IP addressing?  And how do I implement it?
  55460.  
  55461. 2.  If MS-DOS Kermit 3.13 does not support dynamic IP addressing, then it 
  55462. seems I need to switch from SLIP to PPP.  Correct?  Is there a PPP driver 
  55463. for MS-DOS (and not Windows 3.1)?  If so, where can I find this driver?
  55464.  
  55465. If none of this inquiry makes any sense, it's because I don't really 
  55466. understand what I'm asking.  I only understand that my service provider 
  55467. can't help me--they only know and support Winsock applications.  They 
  55468. only pretend to listen to me after I've uttered the word "Kermit".
  55469.  
  55470. Thanks for your help.
  55471.  
  55472.  
  55473. ---
  55474. Jim Monty
  55475. monty@indirect.com (Internet Direct, Inc. in Phoenix, Arizona)
  55476.  
  55477. From news@columbia.edu Thu Nov 24 22:34:05 1994
  55478. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07127
  55479.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 25 Nov 1994 05:24:07 -0500
  55480. Received: by apakabar.cc.columbia.edu id AA13516
  55481.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 25 Nov 1994 05:24:06 -0500
  55482. Newsgroups: comp.protocols.kermit.misc
  55483. From: david@djwhome.demon.co.uk (David Woolley)
  55484. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news.sprintlink.net!demon!djwhome.demon.co.uk!david
  55485. Subject: Re: Telnet Data Mark displays as "r" on MSK 3.13.
  55486. References: <785307785snx@djwhome.demon.co.uk> <1994Nov21.074313.33432@cc.usu.edu>
  55487. Summary: Problem seems to be DM sequence split across segments.
  55488. Cc: jrd@cc.usu.edu
  55489. X-Mailer: cppnews $Revision: 1.42 $
  55490. Organization: Demon Subscriber at Home
  55491. Lines: 76
  55492. Date: Thu, 24 Nov 1994 22:34:05 +0000
  55493. Message-Id: <785741645snx@djwhome.demon.co.uk>
  55494. Sender: usenet@demon.co.uk
  55495.  
  55496. In article <1994Nov21.074313.33432@cc.usu.edu>
  55497.    jrd@cc.usu.edu (Joe Doupnik) writes:
  55498.  
  55499. >    Data Marks are rather rare events, but you ought not have seen
  55500. >an "r" as a consequence. DMARK is 242 decimal, which after chopping the
  55501. >high bit yields 114 decimal "r". But the DMARK should have been sent as
  55502. >IAC DMARK (255 242), and the Kermit Telnet code would (quotes) have absorbed
  55503. >both bytes.
  55504. .....
  55505. >    If you still have the trace I'd appreciate receiving a copy.
  55506.  
  55507. The original log I had was just the ALT Z screen from NCSA
  55508. telnet.  However, I have now done a trace with KA9Q (I couldn't
  55509. get the packet driver trace to log anything, although it has
  55510. worked before - possibly something to do with using ODIPKT now?).
  55511. There is no kermit involvement in the tracing process.
  55512.  
  55513. It appears that the data mark is being split between two
  55514. segments, which appears to me to be a legitimate, although
  55515. perverse, interpretation of RFC 854.
  55516.  
  55517. In the following, one delete, the default interrupt character, is
  55518. entered at the login prompt.  I have the kermit option
  55519. negotiation trace, and the full KA9Q trace, but it seems to me
  55520. that the options are irrelevant.  I've pruned the data from ACKs.
  55521. Using the login sequence as an example was to reduce the length
  55522. of the trace.  The symptom is easily repeatable.  (It's even
  55523. repeatable on new versions of KEATERM, but not older ones!!!)
  55524.  
  55525. [ A fuller trace has been sent to JRD ]
  55526.  
  55527.  
  55528.  
  55529. Thu Nov 24 12:51:30 1994 - et0 recv:
  55530. Ether: len 63 00:80:0f:66:bd:8c->00:00:c0:2d:5f:81 type IP
  55531. IP: len 47 193.130.6.37->193.130.6.73 ihl 20 ttl 59 tos 16 prot TCP
  55532. TCP: 23->1024 Seq xa4559a5f Ack x2163e01f ACK PSH Wnd 4096 Data 7
  55533. 0030  10 00 69 f0 00 00 6c 6f 67 69 6e 3a 20 00 4e     ..ip..login: .N
  55534.  
  55535. >>>>> ACK
  55536.  
  55537. Backspace and echo sent by mistake.
  55538. Thu Nov 24 12:51:38 1994 - et0 rec
  55539. >>>>> ACK
  55540.  
  55541. Thu Nov 24 12:51:39 1994 - et0 sent:
  55542. Ether: len 55 00:00:c0:2d:5f:81->00:80:0f:66:bd:8c type IP
  55543. IP: len 41 193.130.6.73->193.130.6.37 ihl 20 ttl 63 prot TCP
  55544. TCP: 1024->23 Seq x2163e020 Ack xa4559a67 ACK PSH Wnd 11680 Data 1
  55545. 0030  2d a0 2f 60 00 00 7f                             - /`...
  55546. ========================^^=============================================DEL
  55547.  
  55548. Thu Nov 24 12:51:39 1994 - et0 recv:
  55549. Ether: len 61 00:80:0f:66:bd:8c->00:00:c0:2d:5f:81 type IP
  55550. IP: len 41 193.130.6.37->193.130.6.73 ihl 20 ttl 59 tos 16 prot TCP
  55551. TCP: 23->1024 Seq xa4559a67 Ack x2163e021 URG ACK PSH Wnd 4096 UP x1 Data 1
  55552. ==========================================^^^
  55553. 0030  10 00 cc dd 00 01 ff 00 20 20 20 20 20           ..L]....     
  55554. ========================^^=============================================IAC
  55555.  
  55556. <<<<< ACK
  55557.  
  55558. >>>>> ACK
  55559.  
  55560. Thu Nov 24 12:51:39 1994 - et0 recv:
  55561. Ether: len 61 00:80:0f:66:bd:8c->00:00:c0:2d:5f:81 type IP
  55562. IP: len 41 193.130.6.37->193.130.6.73 ihl 20 ttl 59 tos 16 prot TCP
  55563. TCP: 23->1024 Seq xa4559a68 Ack x2163e021 ACK PSH Wnd 4096 Data 1
  55564. 0030  10 00 d9 fd 00 00 f2 00 20 20 20 20 20           ..Y}..r.     
  55565. ========================^^===============================================DM
  55566.  
  55567. >>>>> ACK
  55568.  
  55569. -- 
  55570. David Woolley, London, England                     david@djwhome.demon.co.uk
  55571. Demon supplies me with IP/SMTP/NNTP.  *.demon hosts are independently managed.
  55572.  
  55573. From news@columbia.edu Fri Nov 25 03:45:09 1994
  55574. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16898
  55575.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 25 Nov 1994 12:13:33 -0500
  55576. Received: by apakabar.cc.columbia.edu id AA04432
  55577.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 25 Nov 1994 12:13:32 -0500
  55578. Path: news.columbia.edu!panix!bloom-beacon.mit.edu!gatech!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  55579. From: jrd@cc.usu.edu (Joe Doupnik)
  55580. Newsgroups: comp.protocols.kermit.misc
  55581. Subject: Re: [?] MS-DOS Kermit 3.13 and PPP
  55582. Message-Id: <1994Nov25.094509.33775@cc.usu.edu>
  55583. Date: 25 Nov 94 09:45:09 MDT
  55584. References: <Czsuwq.LL1@indirect.com>
  55585. Organization: Utah State University
  55586. Lines: 43
  55587. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  55588.  
  55589. In article <Czsuwq.LL1@indirect.com>, monty@indirect.com (Jim Monty) writes:
  55590. > I've been told by my Internet service provider that, for my SLIP account,
  55591. > I need to use "dynamic" IP addressing in lieu of "static" IP addressing.  
  55592. > I've also been told that, if I switch from SLIP to PPP, I won't need to 
  55593. > worry about dynamic versus static IP addressing because PPP does what I 
  55594. > need it to do.  I'm confused.
  55595. > I use MS-DOS Kermit 3.13 and its built-in TCP/IP support in tandem with
  55596. > the SLIP8250 packet driver.  Sometimes I can initiate a TCP/IP connection 
  55597. > to a remote host, sometimes I can't.  Apparently, the reason for this 
  55598. > intermittent success is that my service provider uses different terminal 
  55599. > servers, some of which only support dynamic IP addressing.
  55600. > 1.  Does MS-DOS Kermit 3.13 support dynamic IP addressing?  If so, what 
  55601. > _is_ "dynamic" IP addressing?  And how do I implement it?
  55602.  
  55603.     It is not a client option. It is how the other side may choose
  55604. to hand out IP addresses to clients. SLIP has no provision to supply
  55605. this via a protocol transfer so you may need to read it off the screen or
  55606. similar. Dynamic in this case means drawn from a pool of IP addresses on
  55607. some server machine.
  55608.     Cicso terminal servers support bootp over SLIP and that will provide
  55609. the information. I have no idea about other host connections.
  55610.  
  55611. > 2.  If MS-DOS Kermit 3.13 does not support dynamic IP addressing, then it 
  55612. > seems I need to switch from SLIP to PPP.  Correct?  Is there a PPP driver 
  55613. > for MS-DOS (and not Windows 3.1)?  If so, where can I find this driver?
  55614.  
  55615.     See above. PPP can do the same. However, there is no formal way
  55616. of transferring that information to the overlying TCP/IP protocol stack.
  55617. Each vendor has different methods (if any). MS-DOS Kermit can obtain that
  55618. information from the DOS Environment and from Novell's NET.CFG file for
  55619. the case of Telebit PPP drivers.
  55620.     Bootp may or may not work in your environment.
  55621.  
  55622. > If none of this inquiry makes any sense, it's because I don't really 
  55623. > understand what I'm asking.  I only understand that my service provider 
  55624. > can't help me--they only know and support Winsock applications.  They 
  55625. > only pretend to listen to me after I've uttered the word "Kermit".
  55626.     Then you need a better service provider. Winsock means TCP/IP
  55627. stack, Windows or not, and thus the problem is exactly the same for DOS
  55628. and Windows.
  55629.     Joe D. 
  55630.  
  55631. From news@columbia.edu Sat Nov 26 00:03:37 1994
  55632. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00728
  55633.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 25 Nov 1994 19:03:40 -0500
  55634. Received: by apakabar.cc.columbia.edu id AA12577
  55635.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 25 Nov 1994 19:03:39 -0500
  55636. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  55637. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  55638. Newsgroups: comp.protocols.kermit.misc
  55639. Subject: Icon contest
  55640. Date: 26 Nov 1994 00:03:37 GMT
  55641. Organization: Columbia University
  55642. Lines: 17
  55643. Message-Id: <3b5u0p$c8v@apakabar.cc.columbia.edu>
  55644. Nntp-Posting-Host: watsun.cc.columbia.edu
  55645. Keywords: MS-DOS Kermit, Icon, Windows
  55646. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  55647.  
  55648.  
  55649. Needed: The perfect Windows 3.x icon for MS-DOS Kermit 3.14.  Should
  55650. have a professional look, and should suggest Kermit's use as a
  55651. communications program (with perhaps a hint at its networking, graphics,
  55652. and/or international character-set capabilities, and/or speed and
  55653. flexibility, etc).
  55654.  
  55655. No frogs of any kind will be considered, nor (but not necessarily) any
  55656. other kind of animal, puppet, or cartoon character, although graphical
  55657. puns (not too obscure) on "3.14" might not be ruled out(*).  Judging and
  55658. selection will be arbitrary and capricious.  The winner will get full
  55659. credit in the KERMIT\WINDOWS\READ.ME file.
  55660.  
  55661. - Frank
  55662.  
  55663. (*) There is no truth to the rumor that future releases of MS-DOS Kermit
  55664.     will be be 3.141, 3.1415, 3.14159, 3.141592, 3.1415926, 3.14159263...
  55665.  
  55666. From news@columbia.edu Sat Nov 26 03:33:37 1994
  55667. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06663
  55668.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 25 Nov 1994 22:33:40 -0500
  55669. Received: by apakabar.cc.columbia.edu id AA24836
  55670.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 25 Nov 1994 22:33:39 -0500
  55671. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  55672. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  55673. Newsgroups: comp.protocols.kermit.misc
  55674. Subject: Character-set stories needed
  55675. Date: 26 Nov 1994 03:33:37 GMT
  55676. Organization: Columbia University
  55677. Lines: 37
  55678. Message-Id: <3b6aai$o82@apakabar.cc.columbia.edu>
  55679. Nntp-Posting-Host: watsun.cc.columbia.edu
  55680. Keywords: Kermit News, Character Sets
  55681. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  55682.  
  55683.  
  55684. For Kermit News #6, due out soon(er or later), we'd like to collect some
  55685. stories, testimonials, quotes, and/or evidence of the usefulness of the
  55686. character-set conversion capabilities found in MS-DOS Kermit, C-Kermit,
  55687. and IBM Mainframe Kermit.
  55688.  
  55689. If you are using these capabilities in terminal connection / emulation
  55690. (i.e. CONNECT mode) or in text-mode file transfer, please drop a note via
  55691. email to kermit@columbia.edu and let us know.  We'd like to hear from
  55692. everybody, but we'd especially like to hear from people in Eastern Europe and
  55693. the former Soviet Union about the Latin-2 and Cyrillic capabilities, since we
  55694. have received, until now, so little feedback on these: how do people in the
  55695. Czech Republic or Poland or Hungary deal with the incompatibility of Code
  55696. Page 852 and ISO Latin-2 in their data communications if not with Kermit?
  55697. How do Russians, Bielorussians, Ukranians, and Bulgarians convert among the
  55698. KOI8, Short KOI, ISO Latin/Cyrillic, DKOI, etc, encodings for Cyrillic text
  55699. if not with Kermit?
  55700.  
  55701. We know, for example, that Russian newsgroups are in KOI8, but Russian PCs
  55702. use "Alternative Cyrillic" a.k.a. CP866 -- MS-DOS Kermit and C-Kermit handle
  55703. this fine, although the complete package -- fonts, keyboard drivers, complete
  55704. mappings, etc -- was not included in the basic package until version 3.14.
  55705.  
  55706. What about Poland -- I see there are some pl.* Polish newsgroups, but I can't
  55707. get access to them from here.  What character sets are used, etc?
  55708.  
  55709. But like I said, more commonplace stories are welcome too, from Western
  55710. Europe, Latin America, Canada -- anywhere.  Japan and Israel are pretty well
  55711. covered, but if are using Kermit's Hebrew and Kanji capabilities and we
  55712. haven't heard from you, feel free to jump in!
  55713.  
  55714. And if you have any other Amazing Stories involving Kermit software, send
  55715. them in too -- get published!
  55716.  
  55717. Thanks.
  55718.  
  55719. - Frank
  55720.  
  55721. From news@columbia.edu Sat Nov 26 02:54:11 1994
  55722. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07709
  55723.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 25 Nov 1994 23:03:49 -0500
  55724. Received: by apakabar.cc.columbia.edu id AA26504
  55725.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 25 Nov 1994 23:03:47 -0500
  55726. Newsgroups: comp.protocols.kermit.misc
  55727. Path: news.columbia.edu!sol.ctr.columbia.edu!caen!hookup!ames!news.Hawaii.Edu!mpg.phys.hawaii.edu!tony
  55728. From: tony@mpg.phys.hawaii.edu (Antonio Querubin)
  55729. Subject: Re: disabling \ translation
  55730. Message-Id: <CzutEC.3ox@news.Hawaii.Edu>
  55731. Sender: news@news.Hawaii.Edu
  55732. Organization: University of Hawaii
  55733. X-Newsreader: TIN [version 1.2 PL2]
  55734. References: <Czpo7K.3Jx@news.hawaii.edu> <3b2l1p$n49@apakabar.cc.columbia.edu>
  55735. Date: Sat, 26 Nov 1994 02:54:11 GMT
  55736. Lines: 35
  55737. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  55738.  
  55739. Frank da Cruz (fdc@watsun.cc.columbia.edu) wrote:
  55740. : In article <Czpo7K.3Jx@news.hawaii.edu>,
  55741. : Antonio Querubin <tony@mpg.phys.hawaii.edu> wrote:
  55742. : >I have a kermit script which reads a line at a time from a text file and
  55743. : >outputs it to the active com port.
  55744. : >
  55745. : Using which Kermit program, and what version?
  55746.  
  55747. Kermit 3.14, latest beta downloaded today.
  55748.  
  55749. : >The problem I have is that some of the text in the file consists of the \
  55750. : >character followed by numbers.  When the line is output to the com port
  55751. : >it will sometimes transmit translated characters rather than the original
  55752. : >text from the file.  ...  Is there any way of disabling the \ translation
  55753. : >feature temporarily in a script?
  55754. : >
  55755. : Yes.  In C-Kermit 5A(190), there is "set command quoting off".  Also, in
  55756. : both C-Kermit 5A (188-190) and MS-DOS Kermit 3.14 (but not earlier), you
  55757. : should be able to do something like this:
  55758.  
  55759. :   read \%a
  55760. :   output \fcontents(\%a)
  55761.  
  55762. Actually I have something like this in a loop:
  55763.  
  55764. read \%l
  55765. output \Fcontents(\%l)\13
  55766.  
  55767. and the file contains:
  55768. 94BQ011XXX UAR\47122  OSAN AB
  55769. 94BQ011XXX UAR\47142  TAEGU
  55770.  
  55771. The \47122 and \47142 get sent as two control characters.
  55772.  
  55773.  
  55774.  
  55775. From news@columbia.edu Sat Nov 26 10:40:44 1994
  55776. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22438
  55777.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 26 Nov 1994 05:49:45 -0500
  55778. Received: by apakabar.cc.columbia.edu id AA13036
  55779.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 26 Nov 1994 05:49:38 -0500
  55780. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!agate!dog.ee.lbl.gov!news.cs.utah.edu!news.cc.utah.edu!atmos.met.utah.edu!jgmiles
  55781. From: "John G. Miles" <jgmiles@atmos.met.utah.edu>
  55782. Newsgroups: comp.protocols.kermit.misc
  55783. Subject: MSK 3.13 tektronics terminal emulation w/ vt320 mode.A
  55784. Date: Sat, 26 Nov 1994 03:40:44 -0700
  55785. Organization: University Of Utah Computer Center
  55786. Lines: 34
  55787. Message-Id: <Pine.SUN.3.91.941126031931.13703A-100000@atmos.met.utah.edu>
  55788. References: <CypL0A.1L1@physics.purdue.edu> <1994Nov3.223304.31997@cc.usu.edu>
  55789. Nntp-Posting-Host: atmos.met.utah.edu
  55790. Mime-Version: 1.0
  55791. Content-Type: TEXT/PLAIN; charset=US-ASCII
  55792. Cc: jgmiles@atmos.met.utah.edu
  55793. In-Reply-To: <1994Nov3.223304.31997@cc.usu.edu> 
  55794.  
  55795. Sorry if this is an obvious question, but I have been using
  55796. MSKermit 3.13 on a 486/DX33 and often connect to my computer at the
  55797. university to run graphics programs which support the tektronics
  55798. graphics terminal.  If I set Kermit (before entering terminal mode)
  55799. to emulate the tektronics terminal, then the graphics are displayed
  55800. without problem. 
  55801.  
  55802. However, if I set my terminal to VT320 (which I
  55803. prefer since I also use the Unix system extensively besides my
  55804. graphics needs) and then enter terminal mode with the "c" command, the
  55805. tektronics mode is *not* automatically invoked when the Unix box (an
  55806. IBM RS/6000 system) starts sending the tektronics graphics commands.
  55807. It *does* seem to try (i.e., I get the little square cursor), but
  55808. immediately begins echoing the ascii text, itself, of the graphics
  55809. commands.  Once I return to VT320 emulation mode, I no longer get
  55810. anything readable, but rather my color monitor displays solid
  55811. multi-colored gibberish (though I can tell that the keystrokes I type
  55812. are still getting through to the Unix box).  I end up having to type
  55813. "exit" as normal (even though the echo to my screen is the gibberish as
  55814. indicated above) and redial the Unix box in VT320 mode.
  55815.  
  55816. I've looked over the on-line documentation, and believe that I
  55817. understand correctly the fact that the tektronics emulation is
  55818. seemless when using the VT320 emulation mode.  But everything I've
  55819. tried has been unsuccessful.
  55820.  
  55821. Is it at all possible that the problem sits on my end (e.g., my video
  55822. card which is a Trident SVGA)?  I'm not Kermit-proficient so any
  55823. pointers, however basic, would be helpful.  Please e-mail me personally
  55824. as well as posting to the newsgroup as I don't get to read the news as
  55825. often as I'd like).
  55826.  
  55827. --John Miles
  55828. jgmiles@atmos.met.utah.edu
  55829.  
  55830. From news@columbia.edu Fri Nov 25 09:17:41 1994
  55831. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23029
  55832.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 26 Nov 1994 06:10:33 -0500
  55833. Received: by apakabar.cc.columbia.edu id AA14047
  55834.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 26 Nov 1994 06:10:32 -0500
  55835. Newsgroups: comp.protocols.kermit.misc
  55836. From: scott@musicman.demon.co.uk (Scott Mordecai)
  55837. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!hookup!swrinde!pipex!demon!betanews.demon.co.uk!musicman.demon.co.uk!scott
  55838. Subject: Re: Trouble compiling C-Kermit
  55839. References: <785528659snz@musicman.demon.co.uk>
  55840. Organization: home
  55841. Reply-To: scott@musicman.demon.co.uk
  55842. X-Newsreader: Demon Internet Simple News v1.27
  55843. Lines: 19
  55844. Date: Fri, 25 Nov 1994 09:17:41 +0000
  55845. Message-Id: <785755061snz@musicman.demon.co.uk>
  55846. Sender: usenet@demon.co.uk
  55847. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  55848.  
  55849. I'm trying to get the latest version of C-Kermit going on a couple of Unix
  55850. boxes at work.  One is an ICL DRS6000 - I have compiled on there without a
  55851. problem (using make iclsys5r4).
  55852.  
  55853. The other box is a Siemens Nixdorf RM400, but I'm not completely sure what
  55854. unix version it is.  On loggin in it reports "UNIX(r) System V Release
  55855. 4.0". After loggin in, it reports "SINIX Version 5.41".
  55856.  
  55857. Unfortunately there is no Siemens Nixdorf, or SINIX entry in the makefile.
  55858. I've tried compiling with "make sys5r4", but I just get a bunch of warnings
  55859. and finally and fails completely.  I was going to include all the messages
  55860. here, but thought better to save bandwidth and get some suggestions first.
  55861.  
  55862. Any ideas?
  55863.  
  55864. --
  55865.  \|||/  Scott Mordecai                       /   A BAD DAY SKYDIVING
  55866. < o,o > Internet: scott@musicman.demon.co.uk \ IS BETTER THAN A GOOD DAY
  55867.   \_/   CompuServe: 70374,2246               /         AT WORK
  55868.  
  55869. From news@columbia.edu Sat Nov 26 15:45:47 1994
  55870. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28379
  55871.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 26 Nov 1994 10:50:13 -0500
  55872. Received: by apakabar.cc.columbia.edu id AA28480
  55873.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 26 Nov 1994 10:50:11 -0500
  55874. Path: news.columbia.edu!panix!news.mathworks.com!udel!news-4.nss.udel.edu!chopin.udel.edu!not-for-mail
  55875. From: darkstar@chopin.udel.edu (Jerry Alexandratos)
  55876. Newsgroups: comp.protocols.kermit.misc
  55877. Subject: Re: Icon contest
  55878. Date: 26 Nov 1994 10:45:47 -0500
  55879. Organization: Broken Toys Unlimited
  55880. Lines: 27
  55881. Message-Id: <3b7l7b$l6d@chopin.udel.edu>
  55882. References: <3b5u0p$c8v@apakabar.cc.columbia.edu>
  55883. Nntp-Posting-Host: chopin.udel.edu
  55884. Keywords: MS-DOS Kermit, Icon, Windows
  55885. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  55886.  
  55887. In article <3b5u0p$c8v@apakabar.cc.columbia.edu>,
  55888. Frank da Cruz <fdc@watsun.cc.columbia.edu> wrote:
  55889. :
  55890. :Needed: The perfect Windows 3.x icon for MS-DOS Kermit 3.14.  Should
  55891.  
  55892. [stuff deleted]
  55893.  
  55894. :No frogs of any kind will be considered, nor (but not necessarily) any
  55895.  
  55896. [stuff deleted]
  55897.  
  55898. So the no frog rule, is this because we want kermit to appears more
  55899. ``professional'' or is it to avoid and form of lawsuit (or both)?
  55900.  
  55901. :(*) There is no truth to the rumor that future releases of MS-DOS Kermit
  55902. :    will be be 3.141, 3.1415, 3.14159, 3.141592, 3.1415926, 3.14159263...
  55903.  
  55904. Isn't this the naming scheme that all of us TeX/LaTeX users have grown
  55905. to love when it comes to Knuth's TeX engine.  Hey, couldn't hurt here
  55906. too!  8)
  55907.  
  55908.         --Jerry
  55909.  
  55910. -- 
  55911. |>  Jerry Alexandratos                **  "vengo de la tierra del    <|
  55912. |>  darkstar@strauss.udel.edu         **   fuego ten cuidado cuando  <|
  55913. |>  darkstar@canary.pearson.udel.edu  **   llamas mi nombre..."      <|
  55914.  
  55915. From news@columbia.edu Sat Nov 26 20:10:39 1994
  55916. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07555
  55917.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 26 Nov 1994 15:14:23 -0500
  55918. Received: by apakabar.cc.columbia.edu id AA27248
  55919.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 26 Nov 1994 15:14:21 -0500
  55920. Newsgroups: comp.protocols.kermit.misc,indirect.help.slip.ppp
  55921. Path: news.columbia.edu!panix!news.mathworks.com!news2.near.net!howland.reston.ans.net!news.sprintlink.net!news.indirect.com!monty
  55922. From: monty@indirect.com (Jim Monty)
  55923. Subject: [?] PPP and MS-DOS Kermit 3.13
  55924. Message-Id: <Czw5Ds.HDH@indirect.com>
  55925. Sender: usenet@indirect.com (System Operator)
  55926. Organization: Internet Direct, indirect.com
  55927. Date: Sat, 26 Nov 1994 20:10:39 GMT
  55928. X-Newsreader: TIN [version 1.2.1 [BP] PL2.1]
  55929. Lines: 32
  55930. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  55931.  
  55932. I am able load the PPP packet driver from Merit Network, Inc.
  55933. (etherppp.exe, version 1.9.37 beta) and successfully make a connection to
  55934. my Internet service provider.  Once connected, I start MS-DOS Kermit 
  55935. 3.13, patch level 17, and do this:
  55936.  
  55937. MS-Kermit>set port tcp/ip 165.247.1.10
  55938. MS-Kermit>connect
  55939.  Resolving address of host 165.247.1.10 ...
  55940.  
  55941.  Unable to contact the host.
  55942.  The host may be down or a gateway may be needed.
  55943. ?Cannot start the connection.
  55944. MS-Kermit>set port tcp/ip indirect.com
  55945. MS-Kermit>connect
  55946.  Resolving address of host indirect.com ...
  55947.   trying name indirect.com
  55948.   Cannot read name server 165.247.1.3
  55949.  Cannot resolve address of host indirect.com
  55950. ?Cannot start the connection
  55951. MS-Kermit>
  55952.  
  55953. I _can_ successfully connect using the SLIP driver SLIP8250.  Is it not 
  55954. possible to use PPP instead of SLIP with MS-DOS Kermit?  If it is 
  55955. possible, how can I determine what is causing the problem?
  55956.  
  55957. Any suggestions or assistance will be greatly appreciated.
  55958.  
  55959.  
  55960. ---
  55961. Jim Monty
  55962. monty@indirect.com
  55963.  
  55964.  
  55965. From news@columbia.edu Sun Nov 27 02:08:20 1994
  55966. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19475
  55967.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 26 Nov 1994 21:08:23 -0500
  55968. Received: by apakabar.cc.columbia.edu id AA21017
  55969.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 26 Nov 1994 21:08:22 -0500
  55970. Path: news.columbia.edu!watsun.cc.columbia.edu!jrd
  55971. From: jrd@watsun.cc.columbia.edu (Joe R. Doupnik)
  55972. Newsgroups: comp.protocols.kermit.misc,indirect.help.slip.ppp
  55973. Subject: Re: [?] PPP and MS-DOS Kermit 3.13
  55974. Date: 27 Nov 1994 02:08:20 GMT
  55975. Organization: Columbia University
  55976. Lines: 55
  55977. Message-Id: <3b8pmk$kgn@apakabar.cc.columbia.edu>
  55978. References: <Czw5Ds.HDH@indirect.com>
  55979. Nntp-Posting-Host: watsun.cc.columbia.edu
  55980. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  55981.  
  55982. In article <Czw5Ds.HDH@indirect.com>, Jim Monty <monty@indirect.com> wrote:
  55983. >I am able load the PPP packet driver from Merit Network, Inc.
  55984. >(etherppp.exe, version 1.9.37 beta) and successfully make a connection to
  55985. >my Internet service provider.  Once connected, I start MS-DOS Kermit 
  55986. >3.13, patch level 17, and do this:
  55987. >
  55988. >MS-Kermit>set port tcp/ip 165.247.1.10
  55989. >MS-Kermit>connect
  55990. > Resolving address of host 165.247.1.10 ...
  55991. >
  55992. > Unable to contact the host.
  55993. > The host may be down or a gateway may be needed.
  55994. >?Cannot start the connection.
  55995. >MS-Kermit>set port tcp/ip indirect.com
  55996. >MS-Kermit>connect
  55997. > Resolving address of host indirect.com ...
  55998. >  trying name indirect.com
  55999. >  Cannot read name server 165.247.1.3
  56000. > Cannot resolve address of host indirect.com
  56001. >?Cannot start the connection
  56002. >MS-Kermit>
  56003. >
  56004. >I _can_ successfully connect using the SLIP driver SLIP8250.  Is it not 
  56005. >possible to use PPP instead of SLIP with MS-DOS Kermit?  If it is 
  56006. >possible, how can I determine what is causing the problem?
  56007. >
  56008. >Any suggestions or assistance will be greatly appreciated.
  56009. ------------------
  56010.     PPP is, um, a Point to Point protocol. Only two stations on such
  56011. links, this one and the other one. Thus the only way off the wire is 
  56012. through the "other one." This in turn implies two important things:
  56013.     1. ARP doesn't work or even apply because that's a physical layer
  56014. broadcast to obtain the physical address of other stations on the wire
  56015. (having the same IP "network" number but different IP "host" numbers).
  56016.     2. All, and that means ALL, stations are reached via the "other
  56017. one", and hence the "other one" is the IP Gateway for all outbound traffic.
  56018.     2 corollary. The IP network is confined to two stations, us and the
  56019. "other end." Thus the wire can hold 165.247.1.us and 165.247.1.them and that's
  56020. it. All other stations must be on a different IP network number and reached 
  56021. via the "other end" as a gateway. This includes name servers etc.
  56022.     The "other end" must be prepared as an IP router, or else you will
  56023. need to log into the other end and create a Telnet session there which goes 
  56024. onward.
  56025.     I'm happy to hear that you got the Merit PPP driver to work at all.
  56026. It hangs my machine during its startup every time I'm tried it, well before
  56027. Kermit is started. I have no idea of what's inside that serial driver or
  56028. how it really represents itself to programs (it hangs my machine...).
  56029.     So, I suggest you talk with your service provider about IP numbers
  56030. of your link and tell Kermit about the gateway IP number and proper subnet
  56031. mask. Nameservers can be anywhere in the world.
  56032.     Joe D.
  56033.  
  56034.  
  56035.  
  56036.  
  56037.  
  56038. From news@columbia.edu Sun Nov 27 17:21:08 1994
  56039. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19898
  56040.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 27 Nov 1994 12:21:11 -0500
  56041. Received: by apakabar.cc.columbia.edu id AA18771
  56042.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 27 Nov 1994 12:21:10 -0500
  56043. Path: news.columbia.edu!aloha.cc.columbia.edu!ycl6
  56044. From: ycl6@aloha.cc.columbia.edu (Yeechang Lee)
  56045. Newsgroups: comp.sys.palmtops,comp.protocols.kermit.misc
  56046. Subject: Re: HELP: HP95 Kermit
  56047. Date: 27 Nov 1994 17:21:08 GMT
  56048. Organization: Trilateral Commission, Columbia University student chapter
  56049. Lines: 28
  56050. Message-Id: <3baf64$iah@apakabar.cc.columbia.edu>
  56051. References: <3babi9$3j0@nz12.rz.uni-karlsruhe.de>
  56052. Reply-To: Yeechang Lee <ycl6@columbia.edu>
  56053. Nntp-Posting-Host: aloha-cddi.cc.columbia.edu
  56054. Xref: news.columbia.edu comp.sys.palmtops:19572 comp.protocols.kermit.misc:1228
  56055. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  56056.  
  56057. In article <3babi9$3j0@nz12.rz.uni-karlsruhe.de>,
  56058. Hajo Brunne <brunne@ira.uka.de> wrote:
  56059. |i want to use kermit for filetransfer from HP to unix (ckermit)
  56060. |
  56061. |I run ckermit on unix in server mode, but i can not send multiple
  56062. |files (c:\_dat\*.txt or something like that), the send command
  56063. |in the HP built in option will not allow me to select more than one
  56064. |file.
  56065. |
  56066. |The other way starting HP95LX kermit in server mode and trying to
  56067. |get more than one file by a get command from ckermit fails also
  56068. |
  56069. |i.e get c:\123\*.wk1 results in an error:
  56070. |
  56071. |File does not exist!
  56072. |
  56073. |Transfering one file only or using wildcards in c:\
  56074. |(i.e. get c:\*.*) works fine! Is HP's Software buggy?
  56075.  
  56076. Seeing as how the HP95 is essentially an XT-compatible computer, I would
  56077. download MS-Kermit 3.13 from ftp://kermit.columbia.edu/kermit.  Lean,
  56078. fast program; rock-solid terminal emulation and (more importantly) the
  56079. definitive implementation of the Kermit protocol.  I've crossposted this
  56080. to comp.protocols.kermit.misc for more info.
  56081.  
  56082. --   _____________________________________________________________________
  56083.      Yeechang Lee  (ycl6@columbia.edu)|Nevada Las Vegas Mission Jul'92-'94
  56084.      Columbia University/New York City|The Celestial Kingdom has Taco Bell
  56085.  
  56086. From news@columbia.edu Sun Nov 27 19:53:03 1994
  56087. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25141
  56088.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 27 Nov 1994 14:54:16 -0500
  56089. Received: by apakabar.cc.columbia.edu id AA29610
  56090.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 27 Nov 1994 14:54:14 -0500
  56091. Path: news.columbia.edu!panix!bloom-beacon.mit.edu!usc!nic-nac.CSU.net!jupiter!cselkin
  56092. From: cselkin@jupiter.calstatela.edu (Carl Selkin)
  56093. Newsgroups: comp.protocols.kermit.misc
  56094. Subject: delete
  56095. Date: 27 Nov 1994 19:53:03 GMT
  56096. Organization: Information Resources and Technology
  56097. Lines: 8
  56098. Message-Id: <3bao2v$knf@nic-nac.CSU.net>
  56099. Nntp-Posting-Host: jupiter.calstatela.edu
  56100. X-Newsreader: TIN [version 1.2 PL2]
  56101. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  56102.  
  56103.  
  56104. I cant seem to delete in vt100 emulation. When I hook up, I can delete 
  56105. letters, but after the link is established I cannot delete. Can anyone help me?
  56106. --
  56107.              -Eli Selkin C/O 
  56108.     Carl Selkin Acting Dean of the School of Arts and Letters
  56109.      Please Respond to me   (e-MAIL ADDRESS ):
  56110.         cselkin@jupiter.calstatela.edu
  56111.  
  56112. From news@columbia.edu Mon Nov 28 07:59:27 1994
  56113. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29635
  56114.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 28 Nov 1994 05:13:21 -0500
  56115. Received: by apakabar.cc.columbia.edu id AA24855
  56116.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 28 Nov 1994 05:13:19 -0500
  56117. Path: news.columbia.edu!panix!bloom-beacon.mit.edu!gatech!howland.reston.ans.net!Germany.EU.net!EU.net!sun4nl!news.nic.surfnet.nl!highway.LeidenUniv.nl!rulxho!VDK
  56118. From: vdk%rulxho@apakabar.cc.columbia.edu (Peter - INL)
  56119. Newsgroups: comp.protocols.kermit.misc
  56120. Subject: Problems with Kermit VT220 emulation
  56121. Date: 28 Nov 1994 07:59:27 GMT
  56122. Organization: Institute for Dutch Lexicology
  56123. Lines: 27
  56124. Message-Id: <3bc2kv$8sc@highway.LeidenUniv.nl>
  56125. Reply-To: VDK@RULXHO.LeidenUniv.NL
  56126. Nntp-Posting-Host: rulxho.leidenuniv.nl
  56127. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  56128.  
  56129. Hello Kermit people,
  56130.  
  56131. I use Kermit to connect to my Internet service provider (a SUN machine). The
  56132. terminal type is set to VT220. When I use programs as Pine, NN and Lynx, my
  56133. screen becomes a mess. I think because they use reverse video codes. With
  56134. 'normal' screens everything is fine. Another guy on this group had the same
  56135. kind of problem and he was advised to set flow control to rts/cts. I tried
  56136. this too, but it didn't help. I tried a lot of other things like
  56137. reliable link with compression, reliable link without compression, flow control
  56138. none, flow control xon/xoff, flow control rts/cts, display 8-bit, set terminal
  56139. to VT 100, but the problem still exists.
  56140. The host sends sequences like <ESC>[7m, <ESC>[m and <ESC>[27m. Is there a
  56141. way to let Kermit interpret these sequences correctly? What must be the
  56142. settings of my modem and Kermit to let it talk to a Sun machine?
  56143.  
  56144. FYI:
  56145. MS-Kermit 3.13, patch level 12
  56146. Modem: Victory 14400E (14K4)
  56147. Parity: none, databits: 8, one stopbit
  56148. MS-DOS 6.0
  56149. Computer: Compaq Contura 4/25
  56150.  
  56151. Hope someone can put a light on this problem.
  56152. Thanks!
  56153.  
  56154. Peter van der Kamp
  56155. vdk@rulxho.leidenuniv.nl
  56156.  
  56157. From news@columbia.edu Mon Nov 28 11:40:02 1994
  56158. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11088
  56159.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 28 Nov 1994 06:40:32 -0500
  56160. Received: by apakabar.cc.columbia.edu id AA28807
  56161.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 28 Nov 1994 06:40:30 -0500
  56162. Path: news.columbia.edu!panix!news.mathworks.com!hookup!swrinde!pipex!uunet!news.inhouse.compuserve.com!news.compuserve.com!news
  56163. From: Helmut Stoecklin <100303.1604@CompuServe.COM>
  56164. Newsgroups: comp.protocols.kermit.misc
  56165. Subject: Kermit AS400 implementation ???
  56166. Date: 28 Nov 1994 11:40:02 GMT
  56167. Organization: Eu-Log-System
  56168. Lines: 5
  56169. Message-Id: <3bcfii$mgq$1@mhadf.production.compuserve.com>
  56170. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  56171.  
  56172. Help ...
  56173. Is there a Kermit implementation for a IBM AS400 out in the filed 
  56174. ?? Any comment is appreciated.
  56175. Thanks's in advance,
  56176. Hans Rehfeld
  56177.  
  56178. From news@columbia.edu Mon Nov 28 13:22:34 1994
  56179. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03443
  56180.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 28 Nov 1994 08:30:31 -0500
  56181. Received: by apakabar.cc.columbia.edu id AA04877
  56182.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 28 Nov 1994 08:30:30 -0500
  56183. Path: news.columbia.edu!panix!news.mathworks.com!europa.eng.gtefsd.com!gatech!concert!news.wfu.edu!matthews
  56184. From: matthews@wfu.edu (Rick Matthews)
  56185. Newsgroups: comp.protocols.kermit.misc
  56186. Subject: Re: MSK 3.13 tektronics terminal emulation w/ vt320 mode.A
  56187. Date: 28 Nov 1994 13:22:34 GMT
  56188. Organization: Wake Forest University
  56189. Lines: 33
  56190. Message-Id: <3bcliq$k76@eis.wfunet.wfu.edu>
  56191. References: <CypL0A.1L1@physics.purdue.edu> <1994Nov3.223304.31997@cc.usu.edu> <Pine.SUN.3.91.941126031931.13703A-100000@atmos.met.utah.edu>
  56192. Nntp-Posting-Host: acg60.wfunet.wfu.edu
  56193. X-Newsreader: TIN [version 1.2 PL2]
  56194. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  56195.  
  56196. John G. Miles (jgmiles@atmos.met.utah.edu) wrote:
  56197. : Sorry if this is an obvious question, but I have been using
  56198. : MSKermit 3.13 on a 486/DX33 and often connect to my computer at the
  56199. : university to run graphics programs which support the tektronics
  56200. : graphics terminal.  If I set Kermit (before entering terminal mode)
  56201. : to emulate the tektronics terminal, then the graphics are displayed
  56202. : without problem. 
  56203.  
  56204. : However, if I set my terminal to VT320 (which I
  56205. : prefer since I also use the Unix system extensively besides my
  56206. : graphics needs) and then enter terminal mode with the "c" command, the
  56207. : tektronics mode is *not* automatically invoked when the Unix box (an
  56208. : IBM RS/6000 system) starts sending the tektronics graphics commands.
  56209.  
  56210.  
  56211. You application may not generate the necessary codes to invoke the
  56212. Tektronix mode.  Here is the sequence of codes I have my applications
  56213. send to invoke Tek emulation on a variety of emulators.  It is a bit
  56214. more than MS-Kermit needs, but will work with MS-Kermit, NCSA Telnet,
  56215. and Xterm (on an X server).  All codes in decimal:
  56216.  
  56217.     27,91,63,51,56,104,27,12
  56218.  
  56219. Try launching your application from a script file that first sends the
  56220. above codes.
  56221.  
  56222. If you need any help in generating the above codes, let me know.
  56223.  
  56224. --
  56225. Rick Matthews                     matthews@wfu.edu            Ham radio:
  56226. Wake Forest University            910-759-5340   (Voice)      WA4GSP
  56227. Winston-Salem, NC 27109-7507      910-759-6142   (FAX)
  56228.  
  56229.  
  56230. From news@columbia.edu Mon Nov 28 13:50:51 1994
  56231. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04317
  56232.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 28 Nov 1994 08:50:54 -0500
  56233. Received: by apakabar.cc.columbia.edu id AA06219
  56234.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 28 Nov 1994 08:50:53 -0500
  56235. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  56236. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  56237. Newsgroups: comp.protocols.kermit.misc
  56238. Subject: Re: Problems with Kermit VT220 emulation
  56239. Date: 28 Nov 1994 13:50:51 GMT
  56240. Organization: Columbia University
  56241. Lines: 60
  56242. Message-Id: <3bcn7r$627@apakabar.cc.columbia.edu>
  56243. References: <3bc2kv$8sc@highway.leidenuniv.nl>
  56244. Nntp-Posting-Host: watsun.cc.columbia.edu
  56245. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  56246.  
  56247. In article <3bc2kv$8sc@highway.leidenuniv.nl>,
  56248. Peter - INL <VDK@RULXHO.LeidenUniv.NL> wrote:
  56249. > I use Kermit to connect to my Internet service provider (a SUN
  56250. > machine). The terminal type is set to VT220. When I use programs as
  56251. > Pine, NN and Lynx, my screen becomes a mess. I think because they use
  56252. > reverse video codes. With 'normal' screens everything is fine. Another
  56253. > guy on this group had the same kind of problem and he was advised to set
  56254. > flow control to rts/cts. I tried this too, but it didn't help. I tried a
  56255. > lot of other things like reliable link with compression, reliable link
  56256. > without compression, flow control none, flow control xon/xoff, flow
  56257. > control rts/cts, display 8-bit, set terminal to VT 100, but the problem
  56258. > still exists.  The host sends sequences like <ESC>[7m, <ESC>[m and
  56259. > <ESC>[27m. Is there a way to let Kermit interpret these sequences
  56260. > correctly?
  56261. Kermit does interpret these sequences correctly, as all of its users will
  56262. testify.  I, for one, use it every day in exactly the same environment as
  56263. you (dialup thru high-speed modem to a Sun, running applications like trn,
  56264. Lynx, MM, and EMACS) and it works perfectly.  So something else must be
  56265. wrong.
  56266.  
  56267. Are you sure that Kermit and the Sun are both set to the same terminal
  56268. type (vt220)?
  56269.  
  56270. Does your PC have a buffered UART?  If not, then you probably should not
  56271. try to use interface speeds above a certain level, depending on (a) how
  56272. fast your CPU is, and (b) whether your PC is running DOS or Windows.
  56273. If you are running Kermit under Windows, you REALLY need a buffered UART.
  56274.  
  56275. > What must be the settings of my modem and Kermit to let it talk to a Sun
  56276. > machine?
  56277. Flow control is probably the correct answer.  Remember, flow control is
  56278. a game that needs two players.  Telling Kermit to "set flow rts/cts" is
  56279. not enough -- you have to tell your modem to do it too.
  56280.  
  56281. > Modem: Victory 14400E (14K4)
  56282. >
  56283. I never heard of this kind of modem, so I can't tell you how to operate
  56284. it.  My best advice is:
  56285.  
  56286.  1. Get MS-DOS Kermit 3.14 Beta.  Anonymous ftp to kermit.columbia.edu,
  56287.     directory kermit/test/bin, binary mode, file mstibm.zip, unzip
  56288.     with "-d" switch.  Install according to directions in the top-level
  56289.     READ.ME file.
  56290.  
  56291.  2. Look at one of our high-speed modem dialing scripts in the MODEMS
  56292.     subdirectory; say, ZYXEL.SCR.  Sit down with your Victory modem manual
  56293.     and adapt the script to use Victory modem commands.
  56294.  
  56295. Assuming your modem works right, this will ensure that Kermit and the
  56296. modem have optimal settings for each other.  If you wind up with a good
  56297. dialing script, you might want to post it for the benefit of other Victory
  56298. modem users.
  56299.  
  56300. Also, be sure to read the KERMIT.BWR file that comes on the diskette --
  56301. it contains troubleshooting instructions for just about every imagineable
  56302. problem.
  56303.  
  56304. - Frank
  56305.  
  56306. From news@columbia.edu Mon Nov 28 14:02:12 1994
  56307. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05345
  56308.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 28 Nov 1994 09:02:16 -0500
  56309. Received: by apakabar.cc.columbia.edu id AA07148
  56310.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 28 Nov 1994 09:02:14 -0500
  56311. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  56312. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  56313. Newsgroups: comp.protocols.kermit.misc
  56314. Subject: Re: Kermit AS400 implementation ???
  56315. Date: 28 Nov 1994 14:02:12 GMT
  56316. Organization: Columbia University
  56317. Lines: 27
  56318. Message-Id: <3bcnt4$6v8@apakabar.cc.columbia.edu>
  56319. References: <3bcfii$mgq$1@mhadf.production.compuserve.com>
  56320. Nntp-Posting-Host: watsun.cc.columbia.edu
  56321. Keywords: AS/400
  56322. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  56323.  
  56324. In article <3bcfii$mgq$1@mhadf.production.compuserve.com>,
  56325. Helmut Stoecklin  <100303.1604@CompuServe.COM> wrote:
  56326. > Is there a Kermit implementation for a IBM AS400 out in the field?
  56327. >
  56328. Of all the computers and operating systems in the world, there are only
  56329. a couple for which nobody has ever written any Kermit software, and the
  56330. AS/400 (and its predecessors, the Systems /34, /36, and /38) is one of
  56331. them.  Evidently this line of computers must be very hard to program;
  56332. from what little I know about them, everything is "different" -- the
  56333. text character set (it's not ASCII), the file system (probably record-
  56334. oriented), the communication methods (some kind of bizarre proprietary
  56335. "twinax" block-mode affair).  But we have hurdled such obstacles before
  56336. in the IBM mainframe world, thus we have the experience and know what is
  56337. required.
  56338.  
  56339. We get this question frequently, so there is definitely a big demand.
  56340. But we do not have an AS/400 ourselves for development, and even if we
  56341. did, we don't have a programmer to do the work.  Back in the early days
  56342. of the Kermit project, there were dozens of sites developing Kermit
  56343. software for every imagineable platform.  Maybe it's time to revive
  56344. that early spirit.
  56345.  
  56346. Anybody who is seriously interested in developing a Kermit program for
  56347. the AS/400 (or porting an existing program, such as C-Kermit) should
  56348. contact me.
  56349.  
  56350. - Frank
  56351.  
  56352. From news@columbia.edu Mon Nov 28 16:10:03 1994
  56353. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26316
  56354.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 28 Nov 1994 13:34:05 -0500
  56355. Received: by apakabar.cc.columbia.edu id AA16904
  56356.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 28 Nov 1994 13:34:02 -0500
  56357. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!zombie.ncsc.mil!news.duke.edu!godot.cc.duq.edu!calvin.cc.duq.edu!SIMEONE
  56358. From: SIMEONE@calvin.cc.duq.edu (Simeone Stephen)
  56359. Newsgroups: comp.protocols.kermit.misc
  56360. Subject: Super Kermit
  56361. Date: 28 Nov 1994 16:10:03 GMT
  56362. Organization: Duquesne University, Pittsburgh, PA
  56363. Lines: 17
  56364. Message-Id: <3bcvcr$beg@godot.cc.duq.edu>
  56365. Nntp-Posting-Host: calvin.cc.duq.edu
  56366. X-Newsreader: TIN [version 1.2 PL2 [VAX/VMS]]
  56367. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  56368.  
  56369. Could anyone please give me any information on Super Kermit.  I'm not 
  56370. familiar with it - but if it's superior to regular Kermit, I'd like to 
  56371. use it instead.
  56372.  
  56373. Thanks !
  56374.  
  56375. --
  56376.  
  56377.  
  56378.           __  _-==-=_,-.          
  56379.          /--`' \_@-@.--<        Stephen R. Simeone
  56380.          `--'\ \   <___/.         
  56381.               \ \\   " /    PROJECT GENESIS
  56382.                >=\\_/`<        Center for Communications and Technology
  56383.    ____       /= |  \_|/    Duquesne University
  56384.  _'    `\   _/=== \___/        Pittsburgh, Pennsylvania.   USA
  56385. = -_ __/===================================================================
  56386.  
  56387. From news@columbia.edu Mon Nov 28 19:43:14 1994
  56388. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01092
  56389.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 28 Nov 1994 14:43:20 -0500
  56390. Received: by apakabar.cc.columbia.edu id AA24702
  56391.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 28 Nov 1994 14:43:19 -0500
  56392. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  56393. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  56394. Newsgroups: comp.protocols.kermit.misc
  56395. Subject: Re: Super Kermit
  56396. Date: 28 Nov 1994 19:43:14 GMT
  56397. Organization: Columbia University
  56398. Lines: 19
  56399. Message-Id: <3bdbsi$o3l@apakabar.cc.columbia.edu>
  56400. References: <3bcvcr$beg@godot.cc.duq.edu>
  56401. Nntp-Posting-Host: watsun.cc.columbia.edu
  56402. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  56403.  
  56404. In article <3bcvcr$beg@godot.cc.duq.edu>,
  56405. Simeone Stephen <SIMEONE@calvin.cc.duq.edu> wrote:
  56406. >Could anyone please give me any information on Super Kermit.  I'm not 
  56407. >familiar with it - but if it's superior to regular Kermit, I'd like to 
  56408. >use it instead.
  56409.  
  56410. Sorry, but SuperKermit is just a non-Columbia University implementation 
  56411. of sliding windows protocol.  The best Kermit protocols are those included
  56412. within MS-DOS Kermit 3.14, C-Kermit 5A(190), and VM/CMS Kermit (version ?).
  56413.  
  56414. These packages implement sliding windows, extended length packets, WHATAMI
  56415. negotiation, and RESEND for binary files.
  56416.  
  56417. - Jeff
  56418.  
  56419. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  56420. "C-Kermit: available on more platforms than any other communications software."
  56421. "Kermit FTP: sending files whenever and wherever they are needed."
  56422. *NEW* OS/2 version 5A(190): ftp kermit.columbia.edu /kermit/archives/ckoker.zip 
  56423.  
  56424. From news@columbia.edu Mon Nov 28 20:52:18 1994
  56425. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09974
  56426.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 28 Nov 1994 16:52:41 -0500
  56427. Received: by apakabar.cc.columbia.edu id AA09297
  56428.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 28 Nov 1994 16:52:37 -0500
  56429. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news.sprintlink.net!news.cais.com!cais.cais.com!pifer
  56430. From: pifer@cais.cais.com ()
  56431. Newsgroups: comp.protocols.kermit.misc
  56432. Subject: MS-DOS 3.1.3 problems
  56433. Date: 28 Nov 1994 20:52:18 GMT
  56434. Organization: Capital Area Internet Service
  56435. Lines: 42
  56436. Message-Id: <3bdfu2$qe6@news.cais.com>
  56437. Nntp-Posting-Host: cais.com
  56438. X-Newsreader: TIN [version 1.2 PL2]
  56439. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  56440.  
  56441. In article <3avsfs$iq2@news.cais.com>, pifer@cais2.cais.com () writes:
  56442. >>>From: darkstar@chopin.udel.edu (Jerry Alexandratos)
  56443. >>>4) Terminals and Terminalr don't exist anymore.  Check the *.upd and
  56444. >>>   *.bwr files.  Their funcionality has been replace by using apc command
  56445. >>>   codes.  If you look at the C-Kermit ini files, you will see a bunch
  56446. >>>   of macros that use apc to send sequences down to the pc to do
  56447. >>>   ``one-sided'' file transfers.
  56448. >> 
  56449. >> I have looked up the apc in the kermit.upd but have not come upon how to
  56450. >> set it correctly on the PC side. There are examples on to do that same on
  56451. >> the host side but do not relate equivalently. I also do not have .ini 
  56452. >> files where they are defined. Do you have any examples of such?
  56453.  
  56454. >    SET TERMINAL APC ? to see the only thing one can do on the clients.
  56455. > It's that simple this time. The host's APC command has the text strings
  56456. > (client Kermit commands) to be executed on the client. Creative folks may
  56457. > wish to invoke macros on the client, and have those macros defined on the
  56458. > client rather than sending long strings from the host. 
  56459. >    Joe D.
  56460.  
  56461. When we used V 3.11 we set up two macros for two purposes: 1) to download
  56462. a file using the terminalr define and 2) to download a file and execute a 
  56463. local PC application. The following two lines are out of the mskermit.ini 
  56464. file:
  56465.  
  56466. define terminalr RECEIVE, CONNECT
  56467. define terminals RECEIVE graph.dat, RUN type graph.dat | grafdraw.exe, 
  56468. FINISH, CONNECT
  56469.  
  56470. The first define, it appears, can be easily be done by the new built-in
  56471. command. However, I do not see how the second would be done.
  56472.  
  56473. Also, does C-Kermit V 188 contain the APC command set or will we
  56474. have to get V 189?
  56475.  
  56476. Darren Pifer
  56477. Code 431 - NAVMASSO
  56478. Phone: (804) 523-8098
  56479. E-mail: pifer@cais.com
  56480.  
  56481.  
  56482.  
  56483.  
  56484. From news@columbia.edu Mon Nov 28 14:46:15 1994
  56485. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03353
  56486.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 28 Nov 1994 23:30:44 -0500
  56487. Received: by apakabar.cc.columbia.edu id AA18463
  56488.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 28 Nov 1994 23:30:42 -0500
  56489. Path: news.columbia.edu!panix!news.mathworks.com!hookup!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  56490. From: jrd@cc.usu.edu (Joe Doupnik)
  56491. Newsgroups: comp.protocols.kermit.misc
  56492. Subject: Re: MSK 3.13 tektronics terminal emulation w/ vt320 mode.A
  56493. Message-Id: <1994Nov28.204615.33951@cc.usu.edu>
  56494. Date: 28 Nov 94 20:46:15 MDT
  56495. References: <CypL0A.1L1@physics.purdue.edu> <1994Nov3.223304.31997@cc.usu.edu> <Pine.SUN.3.91.941126031931.13703A-100000@atmos.met.utah.edu>
  56496. Organization: Utah State University
  56497. Lines: 50
  56498. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  56499.  
  56500. In article <Pine.SUN.3.91.941126031931.13703A-100000@atmos.met.utah.edu>, "John G. Miles" <jgmiles@atmos.met.utah.edu> writes:
  56501. > Sorry if this is an obvious question, but I have been using
  56502. > MSKermit 3.13 on a 486/DX33 and often connect to my computer at the
  56503. > university to run graphics programs which support the tektronics
  56504. > graphics terminal.  If I set Kermit (before entering terminal mode)
  56505. > to emulate the tektronics terminal, then the graphics are displayed
  56506. > without problem. 
  56507. > However, if I set my terminal to VT320 (which I
  56508. > prefer since I also use the Unix system extensively besides my
  56509. > graphics needs) and then enter terminal mode with the "c" command, the
  56510. > tektronics mode is *not* automatically invoked when the Unix box (an
  56511. > IBM RS/6000 system) starts sending the tektronics graphics commands.
  56512. > It *does* seem to try (i.e., I get the little square cursor), but
  56513. > immediately begins echoing the ascii text, itself, of the graphics
  56514. > commands.  Once I return to VT320 emulation mode, I no longer get
  56515. > anything readable, but rather my color monitor displays solid
  56516. > multi-colored gibberish (though I can tell that the keystrokes I type
  56517. > are still getting through to the Unix box).  I end up having to type
  56518. > "exit" as normal (even though the echo to my screen is the gibberish as
  56519. > indicated above) and redial the Unix box in VT320 mode.
  56520. > I've looked over the on-line documentation, and believe that I
  56521. > understand correctly the fact that the tektronics emulation is
  56522. > seemless when using the VT320 emulation mode.  But everything I've
  56523. > tried has been unsuccessful.
  56524. > Is it at all possible that the problem sits on my end (e.g., my video
  56525. > card which is a Trident SVGA)?  I'm not Kermit-proficient so any
  56526. > pointers, however basic, would be helpful.  Please e-mail me personally
  56527. > as well as posting to the newsgroup as I don't get to read the news as
  56528. > often as I'd like).
  56529. > --John Miles
  56530. > jgmiles@atmos.met.utah.edu
  56531. ----------
  56532.     I recall replying to you privately John.
  56533.     I can't help from the above description alone. The Kermit
  56534. documentation explains which commands in VT320 mode will trigger a
  56535. change to Tek mode, and it's a necessarily restrictive set. ESC Control-L
  56536. (ESCape Form Feed) is the most common mode, meaning Tek screen clear.
  56537. ESC [ ? 38 h  will too, as will starting a DEC Sixel graphics command.
  56538.     My suggestion is to capture a sample session to a log file via
  56539. LOG SESSION filename. Then send me the uuencoded file with commentary
  56540. on what should have happened when so I can dig into the bits.
  56541.     I will also repeat a warning which results from seeing those
  56542. funny colored blobs in VT320 mode. It is to never let anything use 
  56543. video memory, A000-BFFF, because it's video territory. I will guess
  56544. that you may have let a memory manager sneak down there by mistake.
  56545.     Joe D.
  56546.  
  56547. From news@columbia.edu Tue Nov 29 00:33:35 1994
  56548. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11661
  56549.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 29 Nov 1994 01:25:09 -0500
  56550. Received: by apakabar.cc.columbia.edu id AA27040
  56551.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 29 Nov 1994 01:25:07 -0500
  56552. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!news.duke.edu!eff!news.umbc.edu!haven.umd.edu!cs.umd.edu!jujube.cs.umd.edu!rgc
  56553. From: rgc@jujube.cs.umd.edu (Ross Garrett Cutler)
  56554. Newsgroups: comp.protocols.kermit.misc
  56555. Subject: How do you redial in kermit?
  56556. Date: 29 Nov 1994 00:33:35 GMT
  56557. Organization: U of Maryland, Dept. of Computer Science, Coll. Pk., MD 20742
  56558. Lines: 7
  56559. Message-Id: <3bdssv$qhb@mimsy.cs.umd.edu>
  56560. Nntp-Posting-Host: jujube.cs.umd.edu
  56561. X-Newsreader: TIN [version 1.2 PL2]
  56562. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  56563.  
  56564. Anyone know how to redial until you get a connect in kermit?
  56565. Is there a script that does this?  Thanks.
  56566.  
  56567. --
  56568. Ross Cutler
  56569. University of Maryland, College Park
  56570. Internet: rgc@cs.umd.edu
  56571.  
  56572. From news@columbia.edu Tue Nov 29 06:00:44 1994
  56573. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15633
  56574.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 29 Nov 1994 03:22:57 -0500
  56575. Received: by apakabar.cc.columbia.edu id AA02280
  56576.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 29 Nov 1994 03:22:55 -0500
  56577. Newsgroups: comp.protocols.kermit.misc
  56578. Path: news.columbia.edu!panix!zip.eecs.umich.edu!newsxfer.itd.umich.edu!gatech!howland.reston.ans.net!ix.netcom.com!netcom.com!jhurwit
  56579. From: jhurwit@netcom.com (Jeffrey Hurwit)
  56580. Subject: MSKerm 3.14 BETA 14- APC security too strong?
  56581. Message-Id: <jhurwitD00M19.MnM@netcom.com>
  56582. Organization: Organization?  What organization?
  56583. X-Newsreader: TIN [version 1.2 PL1]
  56584. Date: Tue, 29 Nov 1994 06:00:44 GMT
  56585. Lines: 12
  56586. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  56587.  
  56588.     I have a pair of scripts (one on the host, one on my PC) for
  56589.     downloading a compressed backup archive.  I usually keep terminal
  56590.     apc set to on, but need it to be set to unchecked for this one
  56591.     script.  I was able to do this automatically with MS-Kermit 3.13,
  56592.     because it would accept a 'set term apc unchecked' command sent as
  56593.     an apc from the host.  With 3.14, trying to do this produces a
  56594.     '?Word "unchecked" not usable here' error.  Isn't this a little bit
  56595.     too much security?  Can someone suggest a workaround (besides
  56596.     manually changing the settings, which defeats the point of having a
  56597.     script to do it all automatically)?  TIA for your help,
  56598.  
  56599.                         Jeff
  56600.  
  56601. From news@columbia.edu Tue Nov 29 07:37:43 1994
  56602. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16428
  56603.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 29 Nov 1994 03:50:14 -0500
  56604. Received: by apakabar.cc.columbia.edu id AA02964
  56605.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 29 Nov 1994 03:50:11 -0500
  56606. Path: news.columbia.edu!panix!news.mathworks.com!hookup!swrinde!gatech!howland.reston.ans.net!vixen.cso.uiuc.edu!news.uoregon.edu!netnews.nwnet.net!news.u.washington.edu!wirt
  56607. From: wirt@u.washington.edu (Brian Wirt)
  56608. Newsgroups: comp.protocols.kermit.misc
  56609. Subject: Optimizing speed using C-Kermit
  56610. Date: 29 Nov 1994 07:37:43 GMT
  56611. Organization: University of Washington
  56612. Lines: 18
  56613. Message-Id: <3belo7$aqc@nntp1.u.washington.edu>
  56614. Nntp-Posting-Host: stein2.u.washington.edu
  56615. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  56616.  
  56617. Hello all,
  56618.  
  56619. It's been quite a long time since I've had to use kermit to transfer 
  56620. files from a remote Unix machine to my home PC and vice-versa, but alas, 
  56621. the time is here yet again.
  56622.  
  56623. My problem is that I can't remember exactly what options I used to 
  56624. optimize download speed.  I seem to recall setting the packet length or 
  56625. something.  If anyone can help me out I would appreciate it.  I remember 
  56626. two or three things I used to type that would boost the speed from about 
  56627. 200 CPS to 900 CPS on a 14.4k modem.  Can anyone tell me how to obtain 
  56628. this speed or even better?
  56629.  
  56630. Please respond via email, and thanks for any replies!
  56631. -- 
  56632. Brian Wirt             
  56633. wirt@u.washington.edu  
  56634. Seattle, Washington    
  56635.  
  56636. From news@columbia.edu Tue Nov 29 14:02:01 1994
  56637. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26425
  56638.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 29 Nov 1994 09:02:06 -0500
  56639. Received: by apakabar.cc.columbia.edu id AA14552
  56640.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 29 Nov 1994 09:02:04 -0500
  56641. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  56642. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  56643. Newsgroups: comp.protocols.kermit.misc
  56644. Subject: Re: MS-DOS 3.1.3 problems
  56645. Date: 29 Nov 1994 14:02:01 GMT
  56646. Organization: Columbia University
  56647. Lines: 49
  56648. Message-Id: <3bfc8p$e68@apakabar.cc.columbia.edu>
  56649. References: <3bdfu2$qe6@news.cais.com>
  56650. Nntp-Posting-Host: watsun.cc.columbia.edu
  56651. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  56652.  
  56653. In article <3bdfu2$qe6@news.cais.com>,  <pifer@cais.cais.com> wrote:
  56654. > When we used V 3.11 we set up two macros for two purposes: 1) to
  56655. > download a file using the terminalr define and 2) to download a file
  56656. > and execute a local PC application. The following two lines are out of
  56657. > the mskermit.ini file:
  56658. >
  56659. >  define terminalr RECEIVE, CONNECT
  56660. >  define terminals RECEIVE graph.dat, RUN type graph.dat | grafdraw.exe, 
  56661. >  FINISH, CONNECT
  56662. >
  56663. > The first define, it appears, can be easily be done by the new 
  56664. > built-in command. However, I do not see how the second would be done.
  56665. >
  56666. You can do absolutely anything with APC, but there are always risks when
  56667. computer A lets applications on computer B issue commands to it.  That's
  56668. why we have three levels of security on APCs.  By default, they are not
  56669. allowed at all, for paranoia's sake, since almost any command, when
  56670. issued maliciously, might be harmful.  So the MS-DOS Kermit user must
  56671. issue "set terminal apc on" to enable the APC mechanism at all.
  56672.  
  56673. This is a change from version 3.13, where TERMINAL APC was ON by
  56674. default, due to user feedback.  However, TERMINAL APC ON only allows
  56675. what are deemed "safe" commands (such as file transfer commands), and
  56676. disallows commands that are by their very nature unsafe (such as DELETE
  56677. and RUN).  That's why your second example doesn't work.  To allow RUN
  56678. commands in APCs, the MS-DOS Kermit user must SET TERMINAL APC
  56679. UNCHECKED, which is obviously risky.
  56680.  
  56681. There is, however, still a TERMINALR/TERMINALS-like mechanism in MS-DOS
  56682. Kermit, namely the PRODUCT macro, which allows the host application to
  56683. invoke a user-defined macro, and even pass arguments to it.  See pages
  56684. 181-182 of "Using MS-DOS Kermit".
  56685.  
  56686. >Also, does C-Kermit V 188 contain the APC command set or will we
  56687. >have to get V 189?
  56688. >
  56689. Any application can issue an APC command.  It just sends ESC,
  56690. underscore, text, ESC, backslash.  In C-Kermit 5A(188) you can
  56691. easily define a macro to do this:
  56692.  
  56693.   define apc echo \27_\%1\27\92
  56694.  
  56695. which you can use like this:
  56696.  
  56697.   apc { first command, second command, etc }
  56698.  
  56699. Of course it's always better to run an up-to-date version of C-Kermit.
  56700.  
  56701. - Frank
  56702.  
  56703. From news@columbia.edu Tue Nov 29 14:05:29 1994
  56704. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26668
  56705.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 29 Nov 1994 09:05:37 -0500
  56706. Received: by apakabar.cc.columbia.edu id AA14939
  56707.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 29 Nov 1994 09:05:35 -0500
  56708. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  56709. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  56710. Newsgroups: comp.protocols.kermit.misc
  56711. Subject: Re: How do you redial in kermit?
  56712. Date: 29 Nov 1994 14:05:29 GMT
  56713. Organization: Columbia University
  56714. Lines: 11
  56715. Message-Id: <3bfcf9$eio@apakabar.cc.columbia.edu>
  56716. References: <3bdssv$qhb@mimsy.cs.umd.edu>
  56717. Nntp-Posting-Host: watsun.cc.columbia.edu
  56718. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  56719.  
  56720. In article <3bdssv$qhb@mimsy.cs.umd.edu>,
  56721. Ross Garrett Cutler <rgc@jujube.cs.umd.edu> wrote:
  56722. >Anyone know how to redial until you get a connect in kermit?
  56723. >Is there a script that does this?  Thanks.
  56724. >
  56725. If you are talking about MS-DOS Kermit, all you need to do is
  56726. install it according to instructions.  The DIAL macro that is
  56727. supplied in the standard MSKERMIT.INI file, together with the
  56728. appropriate dialing script, does redial automatically.
  56729.  
  56730. - Frank
  56731.  
  56732. From news@columbia.edu Tue Nov 29 14:16:25 1994
  56733. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27228
  56734.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 29 Nov 1994 09:16:40 -0500
  56735. Received: by apakabar.cc.columbia.edu id AA16030
  56736.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 29 Nov 1994 09:16:38 -0500
  56737. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  56738. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  56739. Newsgroups: comp.protocols.kermit.misc
  56740. Subject: Re: MSKerm 3.14 BETA 14- APC security too strong?
  56741. Date: 29 Nov 1994 14:16:25 GMT
  56742. Organization: Columbia University
  56743. Lines: 32
  56744. Message-Id: <3bfd3p$fkg@apakabar.cc.columbia.edu>
  56745. References: <jhurwitD00M19.MnM@netcom.com>
  56746. Nntp-Posting-Host: watsun.cc.columbia.edu
  56747. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  56748.  
  56749. In article <jhurwitD00M19.MnM@netcom.com>,
  56750. Jeffrey Hurwit <jhurwit@netcom.com> wrote:
  56751. >    I have a pair of scripts (one on the host, one on my PC) for
  56752. >    downloading a compressed backup archive.  I usually keep terminal
  56753. >    apc set to on, but need it to be set to unchecked for this one
  56754. >    script.  I was able to do this automatically with MS-Kermit 3.13,
  56755. >    because it would accept a 'set term apc unchecked' command sent as
  56756. >    an apc from the host.  With 3.14, trying to do this produces a
  56757. >    '?Word "unchecked" not usable here' error.  Isn't this a little bit
  56758. >    too much security?  Can someone suggest a workaround (besides
  56759. >    manually changing the settings, which defeats the point of having a
  56760. >    script to do it all automatically)?  TIA for your help,
  56761. >
  56762. We get this complaint a lot, but there is no easy solution.  There is a
  56763. basic conflict between the need for host-directed operations such as
  56764. your script and the need to protect all MS-DOS Kermit users from
  56765. malicious attacks.
  56766.  
  56767. If SET TERMINAL APC UNCHECKED could be issued by the host application,
  56768. then there would *be* no security.
  56769.  
  56770. On balance, I think most would agree that inconvenience weighs less
  56771. than disaster.
  56772.  
  56773. You should think of SET TERMINAL APC UNCHECKED the same way you think
  56774. about passwords.  You don't put passwords in scripts because the risk
  56775. far outweighs the convenience.  Thus whenever you run your login script,
  56776. you have it prompt you for your password.  Similarly, you shoul SET TERM
  56777. APC UNCHECKED before running your script and then put it back to ON
  56778. afterwards.
  56779.  
  56780. - Frank
  56781.  
  56782. From news@columbia.edu Tue Nov 29 14:21:12 1994
  56783. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27500
  56784.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 29 Nov 1994 09:21:26 -0500
  56785. Received: by apakabar.cc.columbia.edu id AA16414
  56786.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 29 Nov 1994 09:21:24 -0500
  56787. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  56788. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  56789. Newsgroups: comp.protocols.kermit.misc
  56790. Subject: Re: Optimizing speed using C-Kermit
  56791. Date: 29 Nov 1994 14:21:12 GMT
  56792. Organization: Columbia University
  56793. Lines: 180
  56794. Message-Id: <3bfdco$g07@apakabar.cc.columbia.edu>
  56795. References: <3belo7$aqc@nntp1.u.washington.edu>
  56796. Nntp-Posting-Host: watsun.cc.columbia.edu
  56797. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  56798.  
  56799. In article <3belo7$aqc@nntp1.u.washington.edu>,
  56800. Brian Wirt <wirt@u.washington.edu> wrote:
  56801. >It's been quite a long time since I've had to use kermit to transfer 
  56802. >files from a remote Unix machine to my home PC and vice-versa, but alas, 
  56803. >the time is here yet again.
  56804. >
  56805. >My problem is that I can't remember exactly what options I used to 
  56806. >optimize download speed.  I seem to recall setting the packet length or 
  56807. >something.  If anyone can help me out I would appreciate it.  I remember 
  56808. >two or three things I used to type that would boost the speed from about 
  56809. >200 CPS to 900 CPS on a 14.4k modem.  Can anyone tell me how to obtain 
  56810. >this speed or even better?
  56811. >
  56812. Reposting (and slightly updating):
  56813.  
  56814. Path: news.columbia.edu!usenet
  56815. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  56816. Newsgroups: comp.protocols.kermit.misc
  56817. Subject: Re: [HELP] Slow Kermit Transfer ?!
  56818. Date: 19 Sep 1994 14:15:42 GMT
  56819. Organization: Columbia University
  56820. Lines: 153
  56821. Keywords: Kermit, Performance, Slow, Fast
  56822.  
  56823. In article <35jrgsINNdq2@newsman.csu.murdoch.edu.au>
  56824. anson@csuvax1.csu.murdoch.edu.au (Binh Anson) writes:
  56825. > I used Kermit 3.13 for my PC, my modem has a speed of 14.4 K, but I found
  56826. > that the downloading rate from the mainframe to my PC was still very slow!
  56827. > I tried Telix with SZ (Z-Modem Protocol), and it was very fast compared to
  56828. > Kermit. Is there a way to accelerate Kermit transfer ?
  56829. Yes.
  56830.  
  56831. But first, welcome to comp.protocols.kermit.misc.  This is the first
  56832. day of operation of this unmoderated newsgroup.  I hope it will prove
  56833. beneficial to all Kermit users.
  56834.  
  56835. To answer your question, somewhat longwindedly, since this Question is
  56836. Asked so Frequently :-) ...
  56837.  
  56838. Zmodem is optimized for speed on the assumption that it has a clear 8-bit
  56839. transparent channel with no blockages (small buffers, etc), and so, out of
  56840. the box, when it works it goes fast.  The tradeoff is that it often does
  56841. not work at all, in which case you have to configure it in various ways --
  56842. escaping of control characters, changing window size, etc.  In some cases
  56843. it can't be made to work at all, either because of the nature of the
  56844. connection, or because of one or both of the computers on the two ends.
  56845.  
  56846. Kermit, on the other hand, is configured to work -- i.e. transfer files --
  56847. out of the box, even under hostile conditions.  By default, it does not 
  56848. assume that control characters pass through transparently, nor that large
  56849. buffers are available.  It does not even assume a full-duplex connection.
  56850. The tradeoff is speed.
  56851.  
  56852. In a perfect world, there would be no tradeoffs, but the world is far from
  56853. perfect.  7-bit transmission is still extremely common, small buffers are
  56854. very common, even in modern terminal servers and other communications
  56855. processors, flow control is rarely implemented correctly and effectively,
  56856. telephone lines are still noisy, and we still have a bewildering array
  56857. of communication methods needed for accessing different kinds of hosts and
  56858. services.  Most PCs are still shipped with non-buffered UARTs; many PCs
  56859. have interrupt conflicts, noisy buses, etc; many modern modems are buggy.
  56860. The list goes on.  This is by way of demonstrating that Kermit's default
  56861. tuning is not crazy, and goes a long way towards explaining its justified
  56862. reputation for dependability.
  56863.  
  56864. Unfortunately, because of the tradeoffs necessary to achieve its
  56865. reliability, Kermit has a reputation for slowness:
  56866.  
  56867.   Yes, Kermit transfers are slow if you use the default tuning.
  56868.  
  56869. However, you can make Kermit go as fast the communication path will permit
  56870. by changing a few parameters.  But first, here are some general principles
  56871. that apply to all communications software:
  56872.  
  56873.  1. Ensure that you have an effective means of flow control enabled at
  56874.     every juncture along the communication path (this applies to any file
  56875.     transfer protocol).  For example, when using high-speed,
  56876.     error-correcting modems, you should use some form of hardware flow
  56877.     control, most commonly RTS/CTS.  You have to tell the software to use
  56878.     it, AND you have to tell the modem to use it too -- if the flow
  56879.     control methods of the PC and the modem do not agree, then data will
  56880.     be lost.
  56881.  
  56882.  2. If your modem is capable of data compression, use it.  Fix the
  56883.     interface speed of the software to four times the connection speed if
  56884.     possible -- e.g. for a V.32bis 14400 bps connection, use an interface
  56885.     speed of 57600, or else the modem's compression capacity is likely to
  56886.     be wasted.
  56887.  
  56888.  3. On network connections (e.g. TCP/IP), it is usually best to turn off
  56889.     flow control entirely, because the underlying networking method
  56890.     supplies fully effective flow control.
  56891.  
  56892. Now, to make Kermit go fast, follow these steps:
  56893.  
  56894.  1. Use real Kermit software, not the many shareware and commercial
  56895.     packages, most of whose Kermit protocol implementations lack the
  56896.     performance features listed below and/or the means for the user to
  56897.     control them.
  56898.  
  56899.  2. Use long packets.  Kermit's default packet length is 94.  You can
  56900.     increase it to a theoretical maximum of 9024.  Give the following
  56901.     command to the file receiver:
  56902.  
  56903.       SET RECEIVE PACKET-LENGTH 2000  ; (or other length)
  56904.  
  56905.     The longer you make the packets, the more efficient the file transfer
  56906.     will be... IF IT WORKS.  If you make packets longer than some buffer
  56907.     somewhere along the line, and effective flow control is lacking, the
  56908.     transfer might not work.  Also, the longer the packet, the greater
  56909.     the chance it will be hit by noise, and the longer it takes to
  56910.     retransmit.
  56911.  
  56912.  3. On full duplex connections, use sliding windows.  Sliding windows
  56913.     allow packets to be transmitted in a continuous stream, rather than
  56914.     "stop and wait" style.  The command is:
  56915.  
  56916.       SET WINDOW 4 ; (or other number)
  56917.  
  56918.     The maximum is 32 (or less, depending on the implementation).  Give
  56919.     this command to *both* Kermit programs.
  56920.  
  56921. For text files and uncompressed binary files, this should give you very
  56922. good performance -- efficiencies in the 85%-100% range.  For compressed
  56923. files, and certain other types of binary files, you can squeeze out
  56924. another 20-25% efficiency by telling Kermit not to prefix a given list of
  56925. control characters.  A typical sequence might be:
  56926.  
  56927.   SET CONTROL UNPREFIX ALL  ;  Unprefix all control characters.
  56928.   SET CONTROL PREFIX 0 1 13 129 141 ...  ; Add back prefixes for these.
  56929.  
  56930. This requires a lot of trial and error because there is no way that a
  56931. communication software program can know what characters are safe and
  56932. which ones are not on a particular connection.  For example, you might be
  56933. going through an X.25 PAD where Ctrl-P will pop you back to the PAD
  56934. prompt.  Or you might be going through a TELNET terminal server where
  56935. Ctrl-] or Ctrl-^ will pop you back to the terminal server prompt.  Or the
  56936. connection might be using Xon/Xoff flow control, and sending Ctrl-S as a
  56937. data character might freeze the connection.
  56938.  
  56939. If you take all of these steps, using optimal packet lengths, window
  56940. sizes, and unprefixing, you should achieve transfer rates comparable to,
  56941. and often better than, the Zmodem implementations that you find in Telix,
  56942. Procomm, and similar shareware and commercial packages; for example, on a
  56943. V.32bis/V.42/V.42bis connection, RTS/CTS flow control, no parity, 57600
  56944. bps interface speed:
  56945.  
  56946.   Typical text files:        3500 cps (characters per second)
  56947.   Uncompressed binary files: 2400 cps (e.g. PC KERMIT.EXE)
  56948.   Compressed files:          1600 cps (e.g. ZIP files)
  56949.  
  56950. These figures come from Kermit News #5, June 1993, which is available via
  56951. anonymous ftp from kermit.columbia.edu, directory kermit/e, file
  56952. newsn5.txt (ASCII) or newsn5.ps (PostScript).  Also see newsn4.txt (.ps)
  56953. for a detailed discussion of long packets and sliding windows.
  56954.  
  56955. Kermit software is available via anonymous ftp to kermit.columbia.edu
  56956. [128.59.39.2], directory kermit and its subdirectories.  There are
  56957. literally hundreds of different Kermit programs for *almost* every machine
  56958. and operating system imaginable.  The most widely used Kermit programs
  56959. are:
  56960.  
  56961.  . MS-DOS Kermit 3.13 for DOS and Windows.
  56962.    No, this is not a native Windows application, but yes, this
  56963.    is the Kermit software we recommend for Windows.
  56964.    File: kermit/archives/msvib.zip.
  56965.    MS-DOS Kermit 3.14 Beta: kermit/test/bin/mstibm.zip.
  56966.    Unzip with "-d" switch.
  56967.  
  56968.  . C-Kermit 5A(190) for UNIX, VMS, OS/2, AOS/VS, the Commodore Amiga, etc.
  56969.    UNIX: kermit/archives/cku190.tar.Z (or .gz)
  56970.    VMS: Get kermit/f/ckvaaa.hlp, read it, take it from there.
  56971.    OS/2: kermit/archives/cko190.zip.
  56972.    Others: Get kermit/f/ckaaaa.hlp, read it, go from there.
  56973.  
  56974.  . IBM Mainframe Kermit-370 for VM/CMS, MVS/TSO, CICS, and MUSIC.
  56975.    kermit/b/ik*.*.
  56976.  
  56977. - Frank
  56978.  
  56979. From news@columbia.edu Tue Nov 29 20:10:00 1994
  56980. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22888
  56981.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 29 Nov 1994 15:48:26 -0500
  56982. Received: by apakabar.cc.columbia.edu id AA25594
  56983.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 29 Nov 1994 15:48:25 -0500
  56984. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!vixen.cso.uiuc.edu!rsm1.physics.uiuc.edu!lewart
  56985. From: d-lewart@uiuc.edu (Daniel S. Lewart)
  56986. Newsgroups: comp.protocols.kermit.misc
  56987. Subject: MS-Kermit 3.14/Beta-14 command-line editing bug
  56988. Date: 29 Nov 94 20:10:00 GMT
  56989. Organization: DSL Consulting
  56990. Lines: 12
  56991. Message-Id: <lewart.786140027@rsm1.physics.uiuc.edu>
  56992. Reply-To: d-lewart@uiuc.edu (Daniel S. Lewart)
  56993. Nntp-Posting-Host: rsm1.physics.uiuc.edu
  56994. X-Newsreader: NN version 6.5.0 (NOV)
  56995. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  56996.  
  56997. Here is a weird MS-DOS Kermit 3.14/Beta-14 command-line editing bug:
  56998.     MS-Kermit>set duplex f<Esc>
  56999.     MS-Kermit>set duplex f<Esc>
  57000. The first time "f<Esc>" properly expands to "full ", but the second time
  57001. it expands to "full\13".  How's that for an esoteric one?
  57002.  
  57003. By the way, do others fail or succeed when running 3.14/Beta-14 over
  57004. NET14.EXE or TNGLASS.EXE?
  57005.  
  57006. Thank you,
  57007. Daniel Lewart
  57008. d-lewart@uiuc.edu
  57009.  
  57010. From news@columbia.edu Tue Nov 29 14:39:55 1994
  57011. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23277
  57012.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 29 Nov 1994 15:57:23 -0500
  57013. Received: by apakabar.cc.columbia.edu id AA26468
  57014.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 29 Nov 1994 15:57:21 -0500
  57015. Newsgroups: comp.protocols.kermit.misc
  57016. Path: news.columbia.edu!sol.ctr.columbia.edu!math.ohio-state.edu!cs.utexas.edu!swrinde!howland.reston.ans.net!ix.netcom.com!netcom.com!wpfulmor
  57017. From: wpfulmor@netcom.com (william p fulmor)
  57018. Subject: Re: C-KERMIT 5A(190)
  57019. Message-Id: <wpfulmorD01A2J.5G2@netcom.com>
  57020. Organization: NETCOM On-line Communication Services (408 261-4700 guest)
  57021. X-Newsreader: TIN [version 1.2 PL1]
  57022. References: <wpfulmorCzIxxy.6EH@netcom.com> <3aqkgi$5q8@apakabar.cc.columbia.edu>
  57023. Date: Tue, 29 Nov 1994 14:39:55 GMT
  57024. Lines: 21
  57025. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  57026.  
  57027. Frank da Cruz (fdc@watsun.cc.columbia.edu) wrote:
  57028.  
  57029. : We will have to round up a new Kermit binary for the AT&T 7300.
  57030. : Until then, we kept the old one there rather than having none at all.
  57031.  
  57032. : If you build one yourself (using one of the many AT&T-specific C-Kermit
  57033. : makefile entries), you could submit it yourself; otherwise I'll see
  57034. : where else I can get one made.  (No, we do not have an example of every
  57035. : computer in the world here at Columbia, so we "must rely on the kindness
  57036. : of others"...
  57037.  
  57038. : - Frank
  57039.  
  57040. To the unknown (to me) person who placed the 3B1 Kermit binaries for 
  57041. 5A(190) in kermit/bin:
  57042.  
  57043.              THANK YOU
  57044.  
  57045. Enjoy.
  57046.  
  57047. Bill
  57048.  
  57049. From news@columbia.edu Tue Nov 29 22:33:49 1994
  57050. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00484
  57051.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 29 Nov 1994 17:33:52 -0500
  57052. Received: by apakabar.cc.columbia.edu id AA20019
  57053.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 29 Nov 1994 17:33:50 -0500
  57054. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  57055. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  57056. Newsgroups: comp.protocols.kermit.misc
  57057. Subject: Re: MS-Kermit 3.14/Beta-14 command-line editing bug
  57058. Date: 29 Nov 1994 22:33:49 GMT
  57059. Organization: Columbia University
  57060. Lines: 10
  57061. Message-Id: <3bga8d$jhe@apakabar.cc.columbia.edu>
  57062. References: <lewart.786140027@rsm1.physics.uiuc.edu>
  57063. Nntp-Posting-Host: watsun.cc.columbia.edu
  57064. Cc: 
  57065.  
  57066. In article <lewart.786140027@rsm1.physics.uiuc.edu>,
  57067. >...
  57068. >By the way, do others fail or succeed when running 3.14/Beta-14 over
  57069. >NET14.EXE or TNGLASS.EXE?
  57070. >
  57071. Yes.
  57072.  
  57073. This will be fixed in Beta-15.
  57074.  
  57075. - Frank
  57076.  
  57077. From news@columbia.edu Tue Nov 29 22:21:19 1994
  57078. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05925
  57079.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 29 Nov 1994 18:53:06 -0500
  57080. Received: by apakabar.cc.columbia.edu id AA28110
  57081.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 29 Nov 1994 18:53:00 -0500
  57082. Newsgroups: comp.protocols.kermit.misc
  57083. Path: news.columbia.edu!sol.ctr.columbia.edu!news.msfc.nasa.gov!news.larc.nasa.gov!lerc.nasa.gov!magnus.acs.ohio-state.edu!math.ohio-state.edu!uwm.edu!vixen.cso.uiuc.edu!howland.reston.ans.net!ix.netcom.com!netcom.com!cornhead
  57084. From: cornhead@netcom.com (Jeff Miller)
  57085. Subject: Need interactive Kermit to exit completely on modem disconnect
  57086. Message-Id: <cornheadD01vFK.7FL@netcom.com>
  57087. Followup-To: poster
  57088. Sender: cornhead@netcom.com
  57089. Organization: Netcom Online Communications Services (408-241-9760 login: guest)
  57090. Date: Tue, 29 Nov 1994 22:21:19 GMT
  57091. Lines: 23
  57092. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  57093.  
  57094. Hi, 
  57095.  
  57096. I run kermit on my UNIX system as a replacement for tip. I typically start 
  57097. up kermit "from the keyboard", the .kermrc points it at my modem attached 
  57098. to one of my machine's serial ports, I type "c" to connect to the modem 
  57099. and it's straightforward terminal interaction from their. When I log 
  57100. out of my remote host and my modem disconnects, I am bounced back to the 
  57101. the local Kermit> prompt. Fine for many years. 
  57102.  
  57103. But now I would like to use that same line and modem for uucp dial-outs and 
  57104. dial-ins as well. I could quit Kermit, and kermit would remove its lock files 
  57105. and give up the line and I'd be all set. But I've been doing that for months 
  57106. now, and seem to forget to exit Kermit explicitely all too often. It would 
  57107. be nice if Kermit automatically exited gracefully on loss of carrier detect: 
  57108. nicer still (I think?) if it relinquished the tty line and removed its 
  57109. lock but did not exit upon loss of carrier. 
  57110.  
  57111. Can I configure kermit to behave this way? If not "out of the box", 
  57112. any pointers toward hacking a solution? I'd bet there's a one-line solution. 
  57113.  
  57114. Thanks in advance! 
  57115.  
  57116. -Jeff
  57117.  
  57118. From news@columbia.edu Wed Nov 30 00:14:21 1994
  57119. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10696
  57120.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 29 Nov 1994 20:07:49 -0500
  57121. Received: by apakabar.cc.columbia.edu id AA05465
  57122.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 29 Nov 1994 20:07:48 -0500
  57123. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!nntp.crl.com!usenet
  57124. From: Marco Papa <felsina@crl.com>
  57125. Newsgroups: comp.protocols.kermit.misc
  57126. Subject: Long packets
  57127. Date: 30 Nov 1994 00:14:21 GMT
  57128. Organization: CRL Dialup Internet Access
  57129. Lines: 5
  57130. Message-Id: <3bgg4t$jav@nntp.crl.com>
  57131. Nntp-Posting-Host: crl2.crl.com
  57132. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  57133.  
  57134. I am looking for informatioin on implementation of Kermit long packets.
  57135. Where should I look at? Thanks.
  57136.  
  57137. -- Marco Papa
  57138.  
  57139.  
  57140. From news@columbia.edu Tue Nov 29 21:52:01 1994
  57141. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11455
  57142.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 29 Nov 1994 20:21:22 -0500
  57143. Received: by apakabar.cc.columbia.edu id AA06836
  57144.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 29 Nov 1994 20:21:20 -0500
  57145. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!swrinde!sgiblab!uhog.mit.edu!news.mathworks.com!zombie.ncsc.mil!cs.umd.edu!jujube.cs.umd.edu!rgc
  57146. From: rgc@jujube.cs.umd.edu (Ross Garrett Cutler)
  57147. Newsgroups: comp.protocols.kermit.misc
  57148. Subject: Re: How do you redial in kermit?
  57149. Date: 29 Nov 1994 21:52:01 GMT
  57150. Organization: U of Maryland, Dept. of Computer Science, Coll. Pk., MD 20742
  57151. Lines: 17
  57152. Message-Id: <3bg7q1$6ae@mimsy.cs.umd.edu>
  57153. References: <3bdssv$qhb@mimsy.cs.umd.edu> <3bfcf9$eio@apakabar.cc.columbia.edu>
  57154. Nntp-Posting-Host: jujube.cs.umd.edu
  57155. X-Newsreader: TIN [version 1.2 PL2]
  57156. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  57157.  
  57158. Frank da Cruz (fdc@watsun.cc.columbia.edu) wrote:
  57159. : In article <3bdssv$qhb@mimsy.cs.umd.edu>,
  57160. : Ross Garrett Cutler <rgc@jujube.cs.umd.edu> wrote:
  57161. : >Anyone know how to redial until you get a connect in kermit?
  57162. : >Is there a script that does this?  Thanks.
  57163. : >
  57164. : If you are talking about MS-DOS Kermit, all you need to do is
  57165. : install it according to instructions.  The DIAL macro that is
  57166. : supplied in the standard MSKERMIT.INI file, together with the
  57167. : appropriate dialing script, does redial automatically.
  57168.  
  57169. Actually, I use c-kermit.  Any scripts for that?  Thanks.
  57170.  
  57171. --
  57172. Ross Cutler
  57173. University of Maryland, College Park
  57174. Internet: rgc@cs.umd.edu
  57175.  
  57176. From news@columbia.edu Wed Nov 30 03:12:27 1994
  57177. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18187
  57178.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 29 Nov 1994 22:12:35 -0500
  57179. Received: by apakabar.cc.columbia.edu id AA17758
  57180.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 29 Nov 1994 22:12:34 -0500
  57181. Path: news.columbia.edu!sawasdee.cc.columbia.edu!ycl6
  57182. From: Yeechang Lee <ycl6@columbia.edu>
  57183. Newsgroups: news.newusers.questions,comp.protocols.kermit.misc
  57184. Subject: Assorted MS-Kermit questions
  57185. Date: Tue, 29 Nov 1994 22:12:27 -0500
  57186. Organization: Columbia University
  57187. Lines: 86
  57188. Message-Id: <Pine.SUN.3.91.941129215119.12186A-100000@sawasdee.cc.columbia.edu>
  57189. References: <3beh0j$dm5@news.sas.ab.ca> <D00z3M.21J@iglou.com> <199411300248.VAA06939@acmez.gatech.edu>
  57190. Nntp-Posting-Host: sawasdee.cc.columbia.edu
  57191. Mime-Version: 1.0
  57192. Content-Type: TEXT/PLAIN; charset=US-ASCII
  57193. X-Sender: ycl6@sawasdee.cc.columbia.edu
  57194. In-Reply-To: <199411300248.VAA06939@acmez.gatech.edu>
  57195. Xref: news.columbia.edu news.newusers.questions:41077 comp.protocols.kermit.misc:1252
  57196. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  57197.  
  57198. On Tue, 29 Nov 1994 gt7611a@prism.gatech.edu wrote:
  57199. > The only complaint I have, is
  57200. > that you cannot scroll back like you can with some other packages. (Or can
  57201. > you?  I don't know how.)  
  57202.  
  57203. First, make sure you're running the latest version (3.13 is the latest
  57204. production version; 3.14 is in solid beta.  Both are available at
  57205. ftp://kermit.columbia.edu/kermit, or http://kermit.columbia.edu/)
  57206.  
  57207. To turn screen rollback on, put
  57208.  
  57209. SET TERM ROLLBACK ON
  57210.  
  57211. in your mscustom.ini file.  Then put
  57212.  
  57213. SET ROLLBACK xxxx (where xxxx=# between 1 and 8000)
  57214.  
  57215. to govern how many screens will be remembered.  By default, the grey PageUp
  57216. and PageDown keys will be used to scroll up and down--if you don't like
  57217. this, you can redefine the keys.
  57218.  
  57219. > I use GSZ, a Zmodem implementation, to download files -- I find it faster
  57220. > than Kermit.  On the other hand, I have frequently had difficulty
  57221. > downloading using Zmodem, and then I download the same file effortlessly,
  57222. > although more slowly, using Kermit.  Why is it more robust?
  57223.  
  57224. Kermit is a very cautious protocol.  It "escapes" or sort of specially-marks
  57225. all unusual control characters so they'll cross any link, whether a dialup
  57226. to a BBS, dialup to a university Unix system through a terminal server, or
  57227. whatever.  (This is one of the reasons for Kermit's slower performance
  57228. compared to Zmodem.) By contrast, ZModem was originally designed for 8-bit
  57229. clean lines (e.g., the kind of connection you get calling a BBS over the
  57230. phone).  It escapes no control characters at all (though this can be
  57231. changed--see your ZModem docs).  You can experiment with only escaping the
  57232. control characters on Kermit that cause problems for your system; this will
  57233. help your throughput a lot.  Get the Kermit 3.14 beta--it has a document,
  57234. PERFORM.DOC, that details all this and more.
  57235.  
  57236. > *  I have heard, and you mention the same, that Kermit is only marginally
  57237. > slower than Zmodem "if the settings are right".  I have tweaked the packet
  57238. > sizes, but I'm really only shooting in the dark.  I have seen faster
  57239. > transfers with longer packets, and my Unix machine, from which I sometimes
  57240. > down / upload, prompts me to change BLOCKS.  What are all these
  57241. > parameters, and what do I set them to? (And how do I know that is what I
  57242. > need to set them to?)
  57243.  
  57244. Blocks, for Kermit, refer to checksum schemes.  Type SET BLOCK 3 on both
  57245. your side and on the university's side; it'll help accuracy.
  57246.  
  57247. The 3.14 beta makes big improvements on all these fronts--not only is there
  57248. the PERFORM.DOC, plus more discussion of this "Most Frequently Asked
  57249. Question" in the main documentation (KERMIT.HLP, KERMIT.BWR), but there are
  57250. also some basic macros that will set things to go a lot faster than normal
  57251. automatically.
  57252.  
  57253. > *  I currently PUSH out of Kermit, and then run a batch file to download
  57254. > using Zmodem.  It works fine, but is cumbersome.  I have had many problems
  57255. > uploading, though, and I have a feeling it may be due to the PUSHing.  Is
  57256. > there a way to use Zmodem straight out of Kermit's bowels?  What Zmodem
  57257. > protocol implementation do you use?  Is there a freeware version? (Where
  57258. > do I find it?)
  57259.  
  57260. Yes.  I have these lines in my mscustom.ini file;
  57261.  
  57262. define rz run c:\kermit\dsz\dsz.exe F ha on port 1 G rz -mrr
  57263. define sz run c:\kermit\dsz\dsz.exe F ha both port 1 G sz -Q^ -m \%1 \%2,
  57264.  
  57265. Type the above lines _exactly_, including the case; just substitute in the
  57266. filepath of your ZModem program (I'd recommend you find and use dsz.exe;
  57267. it's quicker than gsz.com or dsz.com.).  The '-Q^' is required on my system
  57268. to escape a control code that causes problems for my server; it tells ZModem
  57269. to escape ASCII code 30, '^^'.  It probably won't be the same with your
  57270. system; take that part out and see how things work out.  Talk to your
  57271. sysadmins about what control characters need to be escaped on uploads and
  57272. downloads.  Anyways, with these commands you can just type 'sz xyz.txt' and
  57273. 'rz' to up/download right from the MS-Kermit command line.
  57274.  
  57275. > I look forward to hearing from you soon. 
  57276.  
  57277. Hope this helps.  I'll also crosspost this to comp.protocols.kermit.misc,
  57278. Kermit HQ on Usenet.
  57279.  
  57280. --   _____________________________________________________________________
  57281.      Yeechang Lee  (ycl6@columbia.edu)|Nevada Las Vegas Mission Jul'92-'94
  57282.      Columbia University/New York City|Celestial Kingdom through Taco Bell
  57283.  
  57284.  
  57285. From news@columbia.edu Wed Nov 30 05:51:00 1994
  57286. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03447
  57287.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 30 Nov 1994 03:58:42 -0500
  57288. Received: by apakabar.cc.columbia.edu id AA10676
  57289.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 30 Nov 1994 03:58:41 -0500
  57290. Newsgroups: comp.protocols.kermit.misc
  57291. Path: news.columbia.edu!sol.ctr.columbia.edu!math.ohio-state.edu!uwm.edu!news.alpha.net!news.mathworks.com!hookup!swrinde!howland.reston.ans.net!ix.netcom.com!netcom.com!jhurwit
  57292. From: jhurwit@netcom.com (Jeffrey Hurwit)
  57293. Subject: Re: MSKerm 3.14 BETA 14- APC security too strong?
  57294. Message-Id: <jhurwitD02G90.6Bw@netcom.com>
  57295. Organization: Organization?  What organization?
  57296. X-Newsreader: TIN [version 1.2 PL1]
  57297. References: <jhurwitD00M19.MnM@netcom.com> <3bfd3p$fkg@apakabar.cc.columbia.edu>
  57298. Date: Wed, 30 Nov 1994 05:51:00 GMT
  57299. Lines: 36
  57300. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  57301.  
  57302. In article <3bfd3p$fkg@apakabar.cc.columbia.edu>, Frank da Cruz
  57303. (fdc@watsun.cc.columbia.edu) wrote:
  57304.  
  57305. >We get this complaint a lot, but there is no easy solution.  There is
  57306. >a basic conflict between the need for host-directed operations such
  57307. >as your script and the need to protect all MS-DOS Kermit users from
  57308. >malicious attacks.
  57309.  
  57310. >If SET TERMINAL APC UNCHECKED could be issued by the host application,
  57311. >then there would *be* no security.
  57312.  
  57313. >On balance, I think most would agree that inconvenience weighs less
  57314. >than disaster.
  57315.  
  57316. >You should think of SET TERMINAL APC UNCHECKED the same way you think
  57317. >about passwords.  You don't put passwords in scripts because the risk
  57318. >far outweighs the convenience.  Thus whenever you run your login
  57319. >script, you have it prompt you for your password.  Similarly, you shoul
  57320. >SET TERM APC UNCHECKED before running your script and then put it back
  57321. >to ON afterwards.
  57322.  
  57323.     Um, ok, I can accept this argument as far as it goes.  But, problem
  57324.     is, if a macro or take file is invoked with an apc command, any
  57325.     "unsafe" operations called for in those are also disabled.  So,
  57326.     while I can understand wanting to protect some innocent user from a
  57327.     malicious script or some such, what about having apc commands invoke
  57328.     scripts that others are unlikely to know about?  Example:  The
  57329.     script on my host account sends a compressed backup file,
  57330.     backup.tgz, as backup.tmp.  The script on my PC receives the
  57331.     transfer and, *if the transfer succeeds*, deletes the already
  57332.     existing backup.tgz and renames backup.tmp to backup.tgz.  Would an
  57333.     option to set apc unchecked for scripts only make any sense?  If
  57334.     not, I guess I could always put the command in a macro and then bind
  57335.     it to a key...
  57336.  
  57337.                         Jeff
  57338.  
  57339. From news@columbia.edu Wed Nov 30 20:49:09 1994
  57340. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22374
  57341.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 30 Nov 1994 20:18:53 -0500
  57342. Received: by apakabar.cc.columbia.edu id AA17561
  57343.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 30 Nov 1994 20:18:51 -0500
  57344. Newsgroups: comp.protocols.kermit.misc
  57345. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!pipex!uunet!newsgate.watson.ibm.com!watnews.watson.ibm.com!bocanews.bocaraton.ibm.com!news
  57346. From: timur@vnet.ibm.com (Timur Tabi)
  57347. Subject: can't get this script to work
  57348. Sender: news@bocanews.bocaraton.ibm.com (News Admin ID)
  57349. Message-Id: <D03Ltx.nt7@bocanews.bocaraton.ibm.com>
  57350. Date: Wed, 30 Nov 1994 20:49:09 GMT
  57351. Lines: 16
  57352. Nntp-Posting-Host: timur.bocaraton.ibm.com
  57353. Organization: IBM Boca Raton
  57354. X-Newsreader: NetSuite News for OS/2 [version: 3.4beta]
  57355. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  57356.  
  57357. I'm using ckermit for OS/2 as a telnet substitute so I can use the scripting 
  57358. feature to automate logins.  Unfortunately, it's not working.  The "telnet" 
  57359. line is executed, but the "input" line doesn't see the "login:" text that 
  57360. comes in.
  57361.  
  57362. Here's the script:
  57363.  
  57364. telnet tollbooth2.cwp.ibm.com
  57365. input 10 login:
  57366. output timur\13
  57367.  
  57368. --
  57369. Timur "too sexy for my code" Tabi, timur@vnet.ibm.com, using UltiMail/2
  57370. Speaking as a member of Team OS/2, not as an IBM'er
  57371. MMPM/2 MIDI Device Drivers
  57372.  
  57373.  
  57374.  
  57375. From news@columbia.edu Thu Dec  1 03:27:49 1994
  57376. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28992
  57377.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 30 Nov 1994 22:27:52 -0500
  57378. Received: by apakabar.cc.columbia.edu id AA29657
  57379.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 30 Nov 1994 22:27:51 -0500
  57380. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  57381. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  57382. Newsgroups: comp.protocols.kermit.misc
  57383. Subject: Re: can't get this script to work
  57384. Date: 1 Dec 1994 03:27:49 GMT
  57385. Organization: Columbia University
  57386. Lines: 24
  57387. Message-Id: <3bjfrl$sum@apakabar.cc.columbia.edu>
  57388. References: <D03Ltx.nt7@bocanews.bocaraton.ibm.com>
  57389. Nntp-Posting-Host: watsun.cc.columbia.edu
  57390. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  57391.  
  57392. In article <D03Ltx.nt7@bocanews.bocaraton.ibm.com>,
  57393. Timur Tabi <timur@vnet.ibm.com> wrote:
  57394. >I'm using ckermit for OS/2 as a telnet substitute so I can use the scripting 
  57395. >feature to automate logins.  Unfortunately, it's not working.  The "telnet" 
  57396. >line is executed, but the "input" line doesn't see the "login:" text that 
  57397. >comes in.
  57398. >
  57399. >Here's the script:
  57400. >
  57401. >telnet tollbooth2.cwp.ibm.com
  57402. >input 10 login:
  57403. >output timur\13
  57404. >
  57405.  
  57406. Use:
  57407.  
  57408. set host tollbooth2.cwp.ibm.com
  57409. input 10 login:
  57410. output timur\13
  57411. connect
  57412. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  57413. "C-Kermit: available on more platforms than any other communications software."
  57414. "Kermit FTP: sending files whenever and wherever they are needed."
  57415. *NEW* OS/2 version 5A(190): ftp kermit.columbia.edu /kermit/archives/ckoker.zip 
  57416.  
  57417. From news@columbia.edu Wed Nov 30 18:16:01 1994
  57418. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29750
  57419.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 30 Nov 1994 22:45:49 -0500
  57420. Received: by apakabar.cc.columbia.edu id AA01287
  57421.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 30 Nov 1994 22:45:46 -0500
  57422. Newsgroups: comp.protocols.kermit.misc
  57423. Path: news.columbia.edu!sol.ctr.columbia.edu!newsxfer.itd.umich.edu!gatech!udel!news.mathworks.com!news.ultranet.com!newsie.dmc.com!spdcc!hsdndev!cfanews!cheimets
  57424. From: cheimets@cfa.harvard.edu (Peter Cheimets)
  57425. Subject: Speeding up file transfer with kermit
  57426. Message-Id: <D03Eqq.DJ5@cfanews.harvard.edu>
  57427. Sender: news@cfanews.harvard.edu
  57428. Organization: Smithsonian Astrophysical Observatory, Cambridge, MA, USA
  57429. X-Newsreader: TIN [version 1.2 PL0]
  57430. Date: Wed, 30 Nov 1994 18:16:01 GMT
  57431. Lines: 19
  57432. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  57433.  
  57434. I am trying to speed up kermit. I changed the packet length and that improved
  57435. things greatly.  I don't have a benchmark though.  I was on a 9600baud line,
  57436. and a packet length of 1000, I was getting a speed of around 620cps (15kB file
  57437. in 28 seconds).  Is that fast?
  57438.  
  57439. What is the interaction between kermit and inline compression, the modem was
  57440. supposedly running at 38kbaud with compression.
  57441.  
  57442. thanks
  57443. --
  57444. Peter Cheimets
  57445. Smithsonian Astrophysical Observatory             ,__o-
  57446. Smithsonian Institution                         _-\_<,
  57447. 60 Garden St.                                  (*)/'(*)-
  57448. Cambridge, MA 01238                   
  57449.  
  57450. cheimets@cfa.harvard.edu
  57451. (617)495-7384 X134 (voice)
  57452. (617)495-7098      (FAX)
  57453.  
  57454. From news@columbia.edu Wed Nov 30 01:32:46 1994
  57455. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01001
  57456.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 30 Nov 1994 23:10:09 -0500
  57457. Received: by apakabar.cc.columbia.edu id AA03532
  57458.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 30 Nov 1994 23:10:08 -0500
  57459. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!zombie.ncsc.mil!news.duke.edu!concert!bigblue.oit.unc.edu!lla
  57460. From: lla@med.unc.edu (Lance Arnder)
  57461. Newsgroups: comp.protocols.kermit.misc
  57462. Subject: Autodialing Script?
  57463. Date: 30 Nov 1994 01:32:46 GMT
  57464. Organization: UNC-CH School of Medicine
  57465. Lines: 16
  57466. Message-Id: <3bgknu$1n3l@bigblue.oit.unc.edu>
  57467. Nntp-Posting-Host: jason.med.unc.edu
  57468. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  57469.  
  57470. Does anyone know where I might find a simple autodialing script for 
  57471. C-Kermit?  I've written one myself that works using MS-DOS Kermit
  57472. but doesn't work using C-Kermit on an RS6000.  The input command
  57473. intercepts messages from the computer I'm dialing to but it 
  57474. doesn't seem to intercept messages from the modem (like "call
  57475. failed 'line BUSY'") - therefore I can't test to see if the line
  57476. I'm dialing is busy.  I realize that this is a solved problem but
  57477. it is frustrating me beyond its importance.
  57478.  
  57479. Thanks a priori,
  57480.  
  57481. Lance Arnder
  57482. Imaging Physics Laboratory, Duke University
  57483. Dept. of Radiology, UNC-CH
  57484.  
  57485.  
  57486.  
  57487. From news@columbia.edu Wed Nov 30 22:54:07 1994
  57488. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19556
  57489.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 1 Dec 1994 08:03:18 -0500
  57490. Received: by apakabar.cc.columbia.edu id AA01552
  57491.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 1 Dec 1994 08:03:16 -0500
  57492. Newsgroups: comp.protocols.kermit.misc
  57493. Path: news.columbia.edu!sol.ctr.columbia.edu!newsxfer.itd.umich.edu!caen!hearst.acc.Virginia.EDU!murdoch!fulton.seas.Virginia.EDU!esh6h
  57494. From: esh6h@fulton.seas.Virginia.EDU (Erik Hatcher)
  57495. Subject: C-Kermit weirdness
  57496. Message-Id: <D03rM7.37t@murdoch.acc.Virginia.EDU>
  57497. Sender: usenet@murdoch.acc.Virginia.EDU
  57498. Organization: University of Virginia
  57499. Date: Wed, 30 Nov 1994 22:54:07 GMT
  57500. Lines: 51
  57501. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  57502.  
  57503. I wrote a C-Kermit script for someone here at work to log onto
  57504. a machine via modem and send a mail and then log back off to
  57505. minimize the time on the modem.  A command procedure (DCL)
  57506. builds the commands that get executed by C-Kermit.
  57507.  
  57508. To make a long story short, he is trying to put things like
  57509. ":-(" in the subject and it is causing problems.  Below is
  57510. a test I performed that gives me the same error.
  57511.  
  57512. C-Kermit 5A(190), 4 Oct 94, for OpenVMS VAX
  57513.  Copyright (C) 1985, 1994,
  57514.   Trustees of Columbia University in the City of New York.
  57515. Type ? or HELP for help.
  57516. C-Kermit>def arglist echo 1=(\%1) 2=(\%2) 3=(\%3)
  57517. C-Kermit>xif success {arglist {123},show macro arglist}
  57518. 1=(123) 2=() 3=()
  57519.  
  57520. arglist = echo 1=(\%1) 2=(\%2) 3=(\%3)
  57521. C-Kermit>xif success {arglist {(},show macro arglist}
  57522. ?No keywords match - glist
  57523.  
  57524. -----------------------------
  57525. I realize that the "(" is potentially bad and that is exactly
  57526. what is causing the problem.  What can I do to alleviate
  57527. this weirdness?
  57528.  
  57529. Also I noticed that my version of C-Kermit doesn't
  57530. perform a LF when it does its first output (the above
  57531. was slightly edited).  It really would have looked
  57532. like this on my screen.
  57533.  
  57534. C-Kermit 5A(190), 4 Oct 94, for OpenVMS VAX
  57535.  Copyright (C) 1985, 1994,
  57536.   Trustees of Columbia University in the City of New York.
  57537. Type ? or HELP for help.
  57538. C-Kermit>def arglist echo 1=(\%1) 2=(\%2) 3=(\%3)
  57539. 1=(123) 2=() 3=()ess {arglist {123},show macro arglist}
  57540.  
  57541. ------------------------
  57542. Where after the "def arglist..." I did the same "xif" as
  57543. shown above.  I imagine this is a small bug and not big
  57544. deal to fix.  Just wanted to point it out.
  57545.  
  57546. Thanks for your help in advance.
  57547.  
  57548.     Erik
  57549. --
  57550. Erik Hatcher                           + "But every now and then we just have
  57551. http://fulton.seas.virginia.edu/~esh6h |  to howl with the wolves." 
  57552.                                        |        - Werner Heisenberg
  57553. ---------------------------------------+-------------------------------------
  57554.  
  57555. From news@columbia.edu Thu Dec  1 08:23:14 1994
  57556. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20479
  57557.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 1 Dec 1994 08:23:14 -0500
  57558. Received: by apakabar.cc.columbia.edu id AA02904
  57559.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 1 Dec 1994 08:23:11 -0500
  57560. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!howland.reston.ans.net!pipex!uunet!fonorola!alpha.vaxxine.com!pcbrad.vaxxine.com!brad
  57561. From: brad@vaxxine.com (Brad Bell)
  57562. Newsgroups: comp.protocols.kermit.misc
  57563. Subject: Discard Date Question.
  57564. Date: Wed, 30 Nov 1994 11:19:42 UNDEFINED
  57565. Organization: Public Access at Vaxxine Computer Systems
  57566. Lines: 9
  57567. Message-Id: <brad.5.001BC1B5@vaxxine.com>
  57568. Nntp-Posting-Host: pcbrad.vaxxine.com
  57569. X-Newsreader: Trumpet for Windows [Version 1.0 Rev B final beta #1]
  57570. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  57571.  
  57572. I am using Kermit to transfer files between from an MS-DOS machine to a VMS 
  57573. VAX. I am using version 5A(189) on both ends.
  57574.  
  57575. When files are transferred, the date attached to the file on the PC is brought 
  57576. over to the VAX. I would like the date/time of transfer to be kept on the 
  57577. files (IE creation time on the VAX). Is there any way to do that? 
  57578.  
  57579. Thanks in advance....
  57580. Brad.
  57581.  
  57582. From news@columbia.edu Wed Nov 30 17:50:41 1994
  57583. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21103
  57584.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 1 Dec 1994 08:41:21 -0500
  57585. Received: by apakabar.cc.columbia.edu id AA04090
  57586.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 1 Dec 1994 08:41:18 -0500
  57587. Path: news.columbia.edu!sol.ctr.columbia.edu!caen!math.ohio-state.edu!cs.utexas.edu!convex!convex!constellation!news.uoknor.edu!news.ualr.edu!news.ach.uams.edu!news
  57588. From: bruce@mail.uams.edu (Bruce Hulsey)
  57589. Newsgroups: comp.protocols.kermit.misc
  57590. Subject: Help with SmarTerm 2xx and C-Kermit
  57591. Date: 30 Nov 1994 17:50:41 GMT
  57592. Organization: UAMS-Computing Services
  57593. Lines: 37
  57594. Message-Id: <3bie1h$1dp@alvin.ach.uams.edu>
  57595. Nntp-Posting-Host: 144.30.1.66
  57596. X-Newsreader: WinVN 0.91.6
  57597. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  57598.  
  57599. Greetings!
  57600.  
  57601. We're currently running C-Kermit 5a(189) under OpenVMS 1.5.  We have a 
  57602. number of users who are using older versions of Persoft's comm programs 
  57603. SmarTerm 220 and SmarTerm 240 on their pc's.  Unfortunately, these 
  57604. programs' implementations of kermit don't work properly when trying to 
  57605. GET a file from C-Kermit when it is in server mode.  Every other kermit 
  57606. file transfer appears to work ok between SmarTerm and C-Kermit, i.e., 
  57607. interactive (non-server mode) send/receive operations work fine in both 
  57608. directions.  SEND transfers with C-Kermit in server mode seems to work ok 
  57609. as well.  Only GETs from C-Kermit fail.
  57610.  
  57611. I understand from a post that I received from Frank da Cruz regarding 
  57612. this that many comm packages simply don't follow the kermit protocol the 
  57613. way they should, but I'd still like to try to get it to work if possible.
  57614. I do have packet logs from attempted GET transfers using SmarTerm 240 
  57615. (which doesn't work) and SmarTerm 340 (which does work), and SmarTerm 240 
  57616. does send a strange packet up front which SmarTerm 340 does not (the 
  57617. strange packet is <SOH>#N3<CR> ).  Quite a few users are a little 
  57618. concerned about this since everything worked fine before we moved from 
  57619. Kermit-32 version 3.3.111 on a VAX to C-Kermit on an Alpha processor.
  57620.  
  57621. If anyone has found a workaround for this problem, please let me know.  
  57622. At this point, I don't want to tell everyone they have to upgrade their 
  57623. comm software or switch them over to something else, but I suppose that I 
  57624. will if I have to...
  57625.  
  57626. Also, I can't find any mention of Kermit-32 in the listing of Kermit 
  57627. software versions in the "Using C-Kermit" book.  Is Kermit-32 a 
  57628. 'legitimate' member of the Kermit family?
  57629.  
  57630. All help is greatly appreciated...thanks!
  57631.  
  57632. Bruce Hulsey
  57633. Univ. of Arkansas for Medical Sciences
  57634. bruce@mail.uams.edu
  57635. bbhulsey@life.uams.edu
  57636.  
  57637. From news@columbia.edu Thu Dec  1 13:30:41 1994
  57638. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21741
  57639.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 1 Dec 1994 08:53:46 -0500
  57640. Received: by apakabar.cc.columbia.edu id AA04939
  57641.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 1 Dec 1994 08:53:45 -0500
  57642. Path: news.columbia.edu!sol.ctr.columbia.edu!newsxfer.itd.umich.edu!gatech!howland.reston.ans.net!news.sprintlink.net!news.clark.net!reichera
  57643. From: reichera@clark.net (A. Reichert)
  57644. Newsgroups: comp.protocols.kermit.misc
  57645. Subject: Re: Speeding up file transfer with kermit
  57646. Date: 1 Dec 1994 13:30:41 GMT
  57647. Organization: Clark Internet Services, Inc., Ellicott City, MD USA
  57648. Lines: 23
  57649. Message-Id: <3bkj61$r5j@clarknet.clark.net>
  57650. References: <D03Eqq.DJ5@cfanews.harvard.edu>
  57651. Nntp-Posting-Host: clark.net
  57652. Mime-Version: 1.0
  57653. Content-Type: TEXT/PLAIN; charset=ISO-8859-1
  57654. Content-Transfer-Encoding: 8bit
  57655. X-Newsreader: TIN [version 1.2 PL2]
  57656. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  57657.  
  57658. Peter Cheimets (cheimets@cfa.harvard.edu) wrote:
  57659. : I am trying to speed up kermit. I changed the packet length and that improved
  57660. : things greatly.  I don't have a benchmark though.  I was on a 9600baud line,
  57661. : and a packet length of 1000, I was getting a speed of around 620cps (15kB file
  57662. : in 28 seconds).  Is that fast?
  57663.  
  57664. : What is the interaction between kermit and inline compression, the modem was
  57665. : supposedly running at 38kbaud with compression.
  57666.  
  57667. : thanks
  57668.  
  57669. I have Kermit set to a packet size of 1024 with sliding windows set to 
  57670. 4.  Running on a 9600 line, I regularly get transfer rates of about 1150 
  57671. cps.
  57672.  
  57673. --
  57674.  ______________________ _________________________________________________
  57675. |    Alan Reichert     | The Noble Blades' 1994 Gratuitous Violence Tour |
  57676. |  reichera@clark.net  |                      -----                      |
  57677. |----------------------|  "Of course he has a knife.  He always has a    |
  57678. | "Acrophobic Lighting |   knife.  We all have knives.  It's 1183 and    |
  57679. |  Designer for Hire"  |   we're barbarians."   -A Lion In Winter        |
  57680. |______________________|_________________________________________________|
  57681.  
  57682. From news@columbia.edu Thu Dec  1 14:22:42 1994
  57683. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23698
  57684.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 1 Dec 1994 09:22:54 -0500
  57685. Received: by apakabar.cc.columbia.edu id AA07473
  57686.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 1 Dec 1994 09:22:51 -0500
  57687. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  57688. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  57689. Newsgroups: comp.protocols.kermit.misc
  57690. Subject: Re: Autodialing Script?
  57691. Date: 1 Dec 1994 14:22:42 GMT
  57692. Organization: Columbia University
  57693. Lines: 23
  57694. Message-Id: <3bkm7i$798@apakabar.cc.columbia.edu>
  57695. References: <3bgknu$1n3l@bigblue.oit.unc.edu>
  57696. Nntp-Posting-Host: watsun.cc.columbia.edu
  57697. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  57698.  
  57699. In article <3bgknu$1n3l@bigblue.oit.unc.edu>,
  57700. Lance Arnder <lla@med.unc.edu> wrote:
  57701. >Does anyone know where I might find a simple autodialing script for 
  57702. >C-Kermit?  I've written one myself that works using MS-DOS Kermit
  57703. >but doesn't work using C-Kermit on an RS6000.  The input command
  57704. >intercepts messages from the computer I'm dialing to but it 
  57705. >doesn't seem to intercept messages from the modem (like "call
  57706. >failed 'line BUSY'")
  57707. >
  57708. Here is a very simple one:
  57709.  
  57710.   define keep_on_dialing dial \%1, while fail { sleep 30, redial }
  57711.  
  57712. You should also be able to adapt MS-DOS Kermit dialing scripts very
  57713. easily.  If the INPUT command is not reading messages from the modem,
  57714. then maybe the modem is not issuing the messages.  For example, it
  57715. might be in "silent mode" or numeric-response mode.  Or maybe you
  57716. need to add the following command to your script program before
  57717. attempting to do i/o with the modem's command processor:
  57718.  
  57719.   SET CARRIER OFF
  57720.  
  57721. - Frank
  57722.  
  57723. From news@columbia.edu Thu Dec  1 14:34:07 1994
  57724. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24452
  57725.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 1 Dec 1994 09:34:16 -0500
  57726. Received: by apakabar.cc.columbia.edu id AA08363
  57727.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 1 Dec 1994 09:34:14 -0500
  57728. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  57729. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  57730. Newsgroups: comp.protocols.kermit.misc
  57731. Subject: Re: Discard Date Question.
  57732. Date: 1 Dec 1994 14:34:07 GMT
  57733. Organization: Columbia University
  57734. Lines: 18
  57735. Message-Id: <3bkmsv$857@apakabar.cc.columbia.edu>
  57736. References: <brad.5.001BC1B5@vaxxine.com>
  57737. Nntp-Posting-Host: watsun.cc.columbia.edu
  57738. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  57739.  
  57740. In article <brad.5.001BC1B5@vaxxine.com>, Brad Bell <brad@vaxxine.com> wrote:
  57741. >I am using Kermit to transfer files between from an MS-DOS machine to a VMS 
  57742. >VAX. I am using version 5A(189) on both ends.
  57743. >
  57744. The current version is 5A(190).
  57745.  
  57746. >When files are transferred, the date attached to the file on the PC is
  57747. >brought over to the VAX. I would like the date/time of transfer to be kept on
  57748. >the files (IE creation time on the VAX). Is there any way to do that?
  57749. >
  57750. If you don't want this to happen, then tell either one of the two Kermit
  57751. programs to:
  57752.  
  57753.   SET ATTRIBUTE DATE OFF
  57754.  
  57755. It's in the manuals (both of them).
  57756.  
  57757. - Frank
  57758.  
  57759. From news@columbia.edu Thu Dec  1 14:40:11 1994
  57760. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24789
  57761.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 1 Dec 1994 09:40:21 -0500
  57762. Received: by apakabar.cc.columbia.edu id AA09048
  57763.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 1 Dec 1994 09:40:17 -0500
  57764. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  57765. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  57766. Newsgroups: comp.protocols.kermit.misc
  57767. Subject: Re: Help with SmarTerm 2xx and C-Kermit
  57768. Date: 1 Dec 1994 14:40:11 GMT
  57769. Organization: Columbia University
  57770. Lines: 20
  57771. Message-Id: <3bkn8b$8qi@apakabar.cc.columbia.edu>
  57772. References: <3bie1h$1dp@alvin.ach.uams.edu>
  57773. Nntp-Posting-Host: watsun.cc.columbia.edu
  57774. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  57775.  
  57776. In article <3bie1h$1dp@alvin.ach.uams.edu>,
  57777. Bruce Hulsey <bruce@mail.uams.edu> wrote:
  57778. >... I can't find any mention of Kermit-32 in the listing of Kermit 
  57779. >software versions in the "Using C-Kermit" book.  Is Kermit-32 a 
  57780. >'legitimate' member of the Kermit family?
  57781. >
  57782. It used to be, but the people who wrote and maintained it -- Bob
  57783. McQueen and Nick Bush of Stevens Institutue of Technology -- disappeared
  57784. about eight years ago.  The program is not supported, it's written in
  57785. a language (Bliss-32) that nobody has and that even DEC has dropped
  57786. support for, etc.  So I'd say no, it is no longer recommended or
  57787. encouraged.  There is hardly anything it can do that C-Kermit for VMS
  57788. can't do, and C-Kermit can do thousands of things that Kermit-32 can't.
  57789. And C-Kermit is fully supported.  If you have some old commercial
  57790. software that does not implement the Kermit protocol correctly, you
  57791. probably won't get any sympathy from that quarter either -- they will
  57792. tell you, just like I will, to use the up-to-date versions that fix
  57793. older bugs and that are supported.
  57794.  
  57795. - Frank
  57796.  
  57797. From news@columbia.edu Thu Dec  1 14:46:41 1994
  57798. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25209
  57799.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 1 Dec 1994 09:46:45 -0500
  57800. Received: by apakabar.cc.columbia.edu id AA09478
  57801.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 1 Dec 1994 09:46:43 -0500
  57802. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  57803. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  57804. Newsgroups: comp.protocols.kermit.misc
  57805. Subject: Re: C-Kermit weirdness
  57806. Date: 1 Dec 1994 14:46:41 GMT
  57807. Organization: Columbia University
  57808. Lines: 31
  57809. Message-Id: <3bknkh$984@apakabar.cc.columbia.edu>
  57810. References: <D03rM7.37t@murdoch.acc.virginia.edu>
  57811. Nntp-Posting-Host: watsun.cc.columbia.edu
  57812. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  57813.  
  57814. In article <D03rM7.37t@murdoch.acc.virginia.edu>,
  57815. Erik Hatcher <esh6h@fulton.seas.Virginia.EDU> wrote:
  57816. >To make a long story short, he is trying to put things like
  57817. >":-(" in the subject and it is causing problems.  Below is
  57818. >a test I performed that gives me the same error.
  57819. >...
  57820. >arglist = echo 1=(\%1) 2=(\%2) 3=(\%3)
  57821. >C-Kermit>xif success {arglist {(},show macro arglist}
  57822. >?No keywords match - glist
  57823. >
  57824. >I realize that the "(" is potentially bad and that is exactly
  57825. >what is causing the problem.  What can I do to alleviate
  57826. >this weirdness?
  57827. >
  57828. Quote the parentheses by giving the ASCII character value:
  57829.  
  57830.   xif success {arglist {\40},show macro arglist}
  57831.  
  57832. - Frank
  57833.  
  57834. x
  57835. x
  57836. x
  57837. x
  57838. x
  57839. x
  57840. x
  57841. x
  57842. x
  57843. x
  57844. x
  57845.  
  57846. From news@columbia.edu Wed Nov 30 03:08:38 1994
  57847. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27714
  57848.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 1 Dec 1994 10:25:39 -0500
  57849. Received: by apakabar.cc.columbia.edu id AA13082
  57850.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 1 Dec 1994 10:25:38 -0500
  57851. Newsgroups: comp.protocols.kermit.misc
  57852. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!europa.eng.gtefsd.com!howland.reston.ans.net!pipex!uunet!hearst.acc.Virginia.EDU!murdoch!fulton.seas.Virginia.EDU!esh6h
  57853. From: esh6h@fulton.seas.Virginia.EDU (Erik Hatcher)
  57854. Subject: Remote (server) file renames
  57855. Message-Id: <D028qE.M3@murdoch.acc.Virginia.EDU>
  57856. Sender: usenet@murdoch.acc.Virginia.EDU
  57857. Organization: University of Virginia
  57858. Date: Wed, 30 Nov 1994 03:08:38 GMT
  57859. Lines: 27
  57860. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  57861.  
  57862.  
  57863. I'm working on an application that is sending from
  57864. VMS to VMS (either VAX or Alpha) C-Kermit (running
  57865. version 190).
  57866.  
  57867. I need to have the server side rename a file when
  57868. it receives it, but I want to be sure that this
  57869. operation is secure (meaning that a malicious
  57870. user could NOT send a SYSUAF.DAT and rename it
  57871. to the system one, etc).  I.e.  rename the file
  57872. in the same directory to which it was sent.
  57873.  
  57874. So I assume that enabling host is out.  Can
  57875. I disable "cd" and do a "remote kermit rename x y"?
  57876. Can I use APC from VMS to VMS? (I've only seen
  57877. it mentioned that APC is for MS-DOS Kermit).
  57878. What are some other options or things to consider
  57879. in this application?
  57880.  
  57881. Thanks for any and all help.
  57882.  
  57883.     Erik
  57884. --
  57885. Erik Hatcher                           + "But every now and then we just have
  57886. http://fulton.seas.virginia.edu/~esh6h |  to howl with the wolves." 
  57887.                                        |        - Werner Heisenberg
  57888. ---------------------------------------+-------------------------------------
  57889.  
  57890. From news@columbia.edu Wed Nov 30 23:26:48 1994
  57891. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03939
  57892.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 1 Dec 1994 11:53:55 -0500
  57893. Received: by apakabar.cc.columbia.edu id AA21575
  57894.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 1 Dec 1994 11:53:52 -0500
  57895. Path: news.columbia.edu!sol.ctr.columbia.edu!newsxfer.itd.umich.edu!gatech!howland.reston.ans.net!vixen.cso.uiuc.edu!ux2.cso.uiuc.edu!shair
  57896. From: shair@uiuc.edu (Bob Shair)
  57897. Newsgroups: comp.protocols.kermit.misc
  57898. Subject: Re: How do you redial in kermit?
  57899. Date: 30 Nov 1994 23:26:48 GMT
  57900. Organization: University of Illinois at Urbana
  57901. Lines: 10
  57902. Message-Id: <3bj1no$794@vixen.cso.uiuc.edu>
  57903. References: <3bdssv$qhb@mimsy.cs.umd.edu> <3bfcf9$eio@apakabar.cc.columbia.edu> <3bg7q1$6ae@mimsy.cs.umd.edu>
  57904. Nntp-Posting-Host: ux2.cso.uiuc.edu
  57905. Originator: shair@ux2.cso.uiuc.edu
  57906. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  57907.  
  57908. rgc@jujube.cs.umd.edu (Ross Garrett Cutler) writes:
  57909. >
  57910. >Actually, I use c-kermit.  Any scripts for that?  Thanks.
  57911. >
  57912. dial mary; while failure {dial mary}
  57913. -- 
  57914.  
  57915. Bob Shair                          Open Systems Consultant
  57916. 1018 W. Springfield Avenue         shair@uiuc.edu
  57917. Champaign, IL 61821           217/356-2684
  57918.  
  57919. From news@columbia.edu Thu Dec  1 17:13:29 1994
  57920. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25005
  57921.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 1 Dec 1994 16:47:19 -0500
  57922. Received: by apakabar.cc.columbia.edu id AA22606
  57923.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 1 Dec 1994 16:47:10 -0500
  57924. Path: news.columbia.edu!sol.ctr.columbia.edu!math.ohio-state.edu!uwm.edu!news.alpha.net!news.mathworks.com!uhog.mit.edu!bloom-beacon.mit.edu!gatech!newsxfer.itd.umich.edu!caen!news.tc.cornell.edu!travelers.mail.cornell.edu!newstand.syr.edu!cockpit.syr.edu!vefatica
  57925. From: vefatica@cockpit.syr.edu (Vincent Fatica)
  57926. Newsgroups: comp.protocols.kermit.misc
  57927. Subject: Fast file transfer
  57928. Date: 1 Dec 1994 17:13:29 GMT
  57929. Organization: none
  57930. Lines: 59
  57931. Message-Id: <3bl07p$e74@newstand.syr.edu>
  57932. Reply-To: vefatica@mailbox.syr.edu
  57933. Nntp-Posting-Host: sudial-147.syr.edu
  57934. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  57935.  
  57936. Those who are really serious about getting the very fastest file transfer
  57937. should have some standard by which to measure their own Kermit's performance
  57938. and compare it to others. By this I mean an utterly uncompressible file
  57939. of significant length. It's easy to make one: using your favorite language,
  57940. write characters in the range 0 to 255 AT RANDOM to a file. When you're
  57941. done, try zip or gzip on it ... it'll get bigger ... it's really
  57942. uncompressible. I keep a 100,000 byte such file (called "tight") around
  57943. for testing purposes.
  57944.  
  57945. I routinely achieve 1635 cps on a 14400 dialed connection and 1090 cps on
  57946. a 9600 dialed connection. I believe this is pretty darned close to optimum
  57947. for uncompressible data. How do you do it?
  57948.  
  57949. As has been said, long packets and sliding windows do a great deal in
  57950. speeding up file transfer, but you won't approach the speeds above with
  57951. long packets and sliding windows alone; the key to squeezing out that last
  57952. 20-25% of speed is CONTROL CHARACTER UNPREFIXING.
  57953.  
  57954. By default, Kermit "prefixes" (adds a byte to) a fairly large number of
  57955. characters; this is so intervening hardware and software won't misinterpret
  57956. them and do something undesirable. For example, if there is xon/xoff flow-
  57957. control in effect (anywhere along the way), an unprefixed ^S will be
  57958. interpreted as a "stop" (probably not as desired). In addition, the
  57959. characters which Kermit prefixes are among those which appear frequently
  57960. in compressed data. So by default, Kermit does it as safely as possible.
  57961.  
  57962. But in any given situation there's probably only a few characters which need
  57963. to be prefixed; so in general you want to tell the sending Kermit to:
  57964.  
  57965.     set control unprefixed all
  57966.     set control prefixed [only the necessary ones]
  57967.  
  57968. As Frank da Cruz has pointed out, precisely which ones are necessary is very
  57969. much connection-dependent, and so experimentation is the only way to find
  57970. out what you need. On a dialed connection where there's no xon/xoff
  57971. (anywhere) and where I know the dial-up server is in transparent mode, I
  57972. need only "set control prefixed 0 1 3". If there were xon/xoff in effect,
  57973. I'd add to the list 17 19 145 147 (^Q, ^S, and their 8-bit counterparts).
  57974. When I use Kermit to make a network connection, I add 13 141 255.
  57975. So ... experiment.
  57976.  
  57977. Upon first connecting to my dial-up server (a Cisco, I think) I have the
  57978. opportunity to issue commands (only a few) to it. I can say, for example,
  57979. "terminal download" which puts it in transparent mode, or
  57980. "terminal flow hardware in out" which I imagine does just what it says.
  57981. I don't pretend to be knowledgeable about such server issues, so if anyone
  57982. would care to elaborate, I would appreciate it.
  57983.  
  57984. Also by default, Kermit tries to do a little compressing of it's own by
  57985. simply replacing strings of repeated characters with something shorter.
  57986. This is probably futile for data that's already compressed. Even though
  57987. it's not clear that Kermit's actually wasting time trying to do this, I tell 
  57988. the sending Kermit to "set repeat count off" whenever I know the data is 
  57989. already compressed.
  57990.  
  57991. Respectfully,
  57992.  
  57993. Vincent Fatica
  57994.  
  57995.  
  57996. From news@columbia.edu Thu Dec  1 04:00:45 1994
  57997. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10965
  57998.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 1 Dec 1994 21:56:18 -0500
  57999. Received: by apakabar.cc.columbia.edu id AA05756
  58000.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 1 Dec 1994 21:56:17 -0500
  58001. Newsgroups: comp.protocols.kermit.misc
  58002. Path: news.columbia.edu!sol.ctr.columbia.edu!math.ohio-state.edu!caen!newsxfer.itd.umich.edu!gatech!howland.reston.ans.net!ix.netcom.com!netcom.com!jhurwit
  58003. From: jhurwit@netcom.com (Jeffrey Hurwit)
  58004. Subject: Alternative to ansi printing
  58005. Message-Id: <jhurwitD045t9.K2t@netcom.com>
  58006. Organization: Organization?  What organization?
  58007. X-Newsreader: TIN [version 1.2 PL1]
  58008. Date: Thu, 1 Dec 1994 04:00:45 GMT
  58009. Lines: 25
  58010. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  58011.  
  58012.     For whatever this is worth to anyone...  It'll probably work on
  58013.     other host systems, bus since Unix is what I'm familiar with...
  58014.     
  58015.     I got the idea while reading through some of the documentation for
  58016.     MS-Kermit 3.14 BETA that ansi printing does no packet checking, but
  58017.     simply switches output from your screen to your printer.  If you
  58018.     have a modern error-correcting modem, this is probably fine, but if
  58019.     your modem is old (like mine) and lacks that feature, there is the
  58020.     potential for characters to be lost, bursts of line noise showing
  58021.     up in your printout, etc.  If you're using MS-Kermit 3.13 or later
  58022.     as your comm program, you can use it with C-Kermit (preferably
  58023.     5A(190)) to print with full error correction.  Pipe whatever you
  58024.     want printed into this:
  58025.  
  58026. /usr/5bin/echo '\033_rec\033\\\c'; kermit -s - -a PRN
  58027.  
  58028.     The echo command simulates an apc command to MS-Kermit (kermit -C
  58029.     "apc rec" doesn't work; check your man page for echo to make sure
  58030.     it supports the special functions), which puts MSK into receive
  58031.     mode (be sure you have apc on-- SET TERM APC ON).  The options for
  58032.     C-Kermit tell it to send from the standard input (from a pipe), and
  58033.     send it as PRN.  MS-Kermit will accept PRN as a valid name; MS-DOS
  58034.     will send it to your printer.
  58035.  
  58036.                         Jeff
  58037.  
  58038. From news@columbia.edu Thu Dec  1 17:26:41 1994
  58039. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01261
  58040.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 2 Dec 1994 06:08:21 -0500
  58041. Received: by apakabar.cc.columbia.edu id AA06003
  58042.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 2 Dec 1994 06:08:19 -0500
  58043. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!gatech!newsfeed.pitt.edu!dsinc!netnews.upenn.edu!netnews.CC.Lehigh.EDU!CS1.CC.Lehigh.EDU!cdl0
  58044. From: cdl0@CS1.CC.Lehigh.EDU (CONRAD DANIEL LLOYD-KNIGHT)
  58045. Newsgroups: comp.protocols.kermit.misc
  58046. Subject: what are blocks?
  58047. Date: 1 Dec 1994 17:26:41 GMT
  58048. Lines: 15
  58049. Message-Id: <3bl10h$kdc@fidoii.cc.lehigh.edu>
  58050. Nntp-Posting-Host: cs1.cc.lehigh.edu
  58051. X-Newsreader: TIN [version 1.2 PL2]
  58052. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  58053.  
  58054. when i download using kermit, i set receive packet to 4096 for a faster 
  58055. transfer. i then get a message on the screen saying something like "remember 
  58056. to set BLOCKS 2 or 3 for longer packets". so i set them to 3. i have no idea 
  58057. what they are, though. should i use 2 or 3? does it really make a difference?
  58058. what are they blocks of?
  58059.  
  58060. any enlightenment would be greatly appreciated :)
  58061.  
  58062. B*B,
  58063. -Smoke.
  58064.  
  58065. -- bye!  :) -- pgp2 key available - just ask. or finger cdl0@cs1.cc.lehigh.edu
  58066.  
  58067. "Many people would rather die than think; in fact, most do."
  58068.         -- Bertrand Russell
  58069.  
  58070. From news@columbia.edu Fri Dec  2 04:56:25 1994
  58071. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20897
  58072.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 2 Dec 1994 06:53:13 -0500
  58073. Received: by apakabar.cc.columbia.edu id AA08040
  58074.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 2 Dec 1994 06:53:11 -0500
  58075. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!pipex!uunet!demos!dnews-server
  58076. From: mar@chermk.vologda.su (Reznikov Michael)
  58077. Newsgroups: comp.protocols.kermit.misc
  58078. Subject: [Q]How I may take kermit's files from KERMSRV(columbia). Empty.
  58079. Date: Fri,  2 Dec 94 07:56:25 +0300
  58080. Organization: Cherepovets Steel & Iron Plant
  58081. Lines: 2
  58082. Sender: news-server@news.demos.su
  58083. Distribution: z
  58084. Message-Id: <AAvZgtk4t7@chermk.vologda.su>
  58085. Reply-To: mar@chermk.vologda.su
  58086. Nntp-Posting-Host: news.demos.su
  58087. X-Mailer: BML [MS/DOS Beauty Mail v.1.27]
  58088. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  58089.  
  58090. How I may take kermit's files from kermit server ?
  58091.  
  58092.  
  58093. From news@columbia.edu Thu Dec  1 09:38:30 1994
  58094. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05219
  58095.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 2 Dec 1994 08:47:15 -0500
  58096. Received: by apakabar.cc.columbia.edu id AA14350
  58097.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 2 Dec 1994 08:47:13 -0500
  58098. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news.sprintlink.net!pipex!uunet!news.iij.ad.jp!wnoc-tyo-news!aist-nara!odins-suita!alice!taeko!ocuhep!apple!duan
  58099. From: duan@tama.info.osaka-cu.ac.jp
  58100. Newsgroups: comp.protocols.kermit.misc
  58101. Subject: test
  58102. Message-Id: <DUAN.94Dec1183830@katsuo.tama.info.osaka-cu.ac.jp>
  58103. Date: 1 Dec 94 09:38:30 GMT
  58104. Sender: news@apple.info.osaka-cu.ac.jp
  58105. Distribution: fj
  58106. Organization: Faculty of Engineering, Osaka-City Univ., Japan
  58107. Lines: 3
  58108. Nntp-Posting-Host: katsuo
  58109. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  58110.  
  58111.  
  58112. You are girl!
  58113.  
  58114.  
  58115. From news@columbia.edu Thu Dec  1 20:24:43 1994
  58116. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05921
  58117.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 2 Dec 1994 09:02:10 -0500
  58118. Received: by apakabar.cc.columbia.edu id AA15433
  58119.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 2 Dec 1994 09:02:09 -0500
  58120. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!hookup!swrinde!elroy.jpl.nasa.gov!delphi.cs.ucla.edu!twinsun!not-for-mail
  58121. From: eggert@twinsun.com (Paul Eggert)
  58122. Newsgroups: comp.protocols.kermit.misc
  58123. Subject: Re: Discard Date Question.
  58124. Date: 1 Dec 1994 12:24:43 -0800
  58125. Organization: Twin Sun Inc, El Segundo, CA, USA
  58126. Lines: 16
  58127. Message-Id: <3blbeb$cii@tattoo.twinsun.com>
  58128. References: <brad.5.001BC1B5@vaxxine.com> <3bkmsv$857@apakabar.cc.columbia.edu>
  58129. Nntp-Posting-Host: 192.54.239.40
  58130. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  58131.  
  58132. fdc@watsun.cc.columbia.edu (Frank da Cruz) writes:
  58133.  
  58134. >  SET ATTRIBUTE DATE OFF
  58135.  
  58136. This is an excellent command to put in your .kermrc if you transfer
  58137. data across time zone boundaries.  The current Kermit protocol does not
  58138. understand time zones, and it can munge dates by several hours when
  58139. transferring data from one time zone to another.  I've had this
  58140. problem, for example, when copying files between Unix hosts and then
  58141. using `make' -- the bogus timestamps screw up the build, sometimes in
  58142. subtle ways.
  58143.  
  58144. Perhaps a future Kermit protocol extension can address this issue,
  58145. so that time stamps are handled properly when both hosts know about
  58146. time zones (as is the case with Unix or, for that matter, any
  58147. Posix-compliant OS).
  58148.  
  58149. From news@columbia.edu Fri Dec  2 14:10:47 1994
  58150. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06342
  58151.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 2 Dec 1994 09:10:59 -0500
  58152. Received: by apakabar.cc.columbia.edu id AA16257
  58153.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 2 Dec 1994 09:10:53 -0500
  58154. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  58155. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  58156. Newsgroups: comp.protocols.kermit.misc
  58157. Subject: Re: what are blocks?
  58158. Date: 2 Dec 1994 14:10:47 GMT
  58159. Organization: Columbia University
  58160. Lines: 21
  58161. Message-Id: <3bn9t7$frg@apakabar.cc.columbia.edu>
  58162. References: <3bl10h$kdc@fidoii.cc.lehigh.edu>
  58163. Nntp-Posting-Host: watsun.cc.columbia.edu
  58164. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  58165.  
  58166. In article <3bl10h$kdc@fidoii.cc.lehigh.edu>,
  58167. CONRAD DANIEL LLOYD-KNIGHT <cdl0@CS1.CC.Lehigh.EDU> wrote:
  58168. >when i download using kermit, i set receive packet to 4096 for a faster 
  58169. >transfer. i then get a message on the screen saying something like "remember 
  58170. >to set BLOCKS 2 or 3 for longer packets". so i set them to 3. i have no idea 
  58171. >what they are, though. should i use 2 or 3? does it really make a difference?
  58172. >what are they blocks of?
  58173. >
  58174. >any enlightenment would be greatly appreciated :)
  58175.  
  58176. SET BLOCKS 1,2,or3 determine what kind of checking is used to determine that
  58177. packet that was received contains proper data.  On today's fast machines
  58178. Block Check 3 (16-bit CRC) should always be used.
  58179.  
  58180. Just place it in your INI file.  Also, it must be issued on both sides for it 
  58181. to be used.
  58182.  
  58183. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  58184. "C-Kermit: available on more platforms than any other communications software."
  58185. "Kermit FTP: sending files whenever and wherever they are needed."
  58186. *NEW* OS/2 version 5A(190): ftp kermit.columbia.edu /kermit/archives/ckoker.zip 
  58187.  
  58188. From news@columbia.edu Fri Dec  2 19:29:57 1994
  58189. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28493
  58190.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 2 Dec 1994 14:30:11 -0500
  58191. Received: by apakabar.cc.columbia.edu id AA18781
  58192.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 2 Dec 1994 14:30:08 -0500
  58193. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  58194. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  58195. Newsgroups: comp.protocols.kermit.misc
  58196. Subject: Re: Remote (server) file renames
  58197. Date: 2 Dec 1994 19:29:57 GMT
  58198. Organization: Columbia University
  58199. Lines: 37
  58200. Message-Id: <3bnsjl$i9p@apakabar.cc.columbia.edu>
  58201. References: <D028qE.M3@murdoch.acc.virginia.edu>
  58202. Nntp-Posting-Host: watsun.cc.columbia.edu
  58203. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  58204.  
  58205. In article <D028qE.M3@murdoch.acc.virginia.edu>,
  58206. Erik Hatcher <esh6h@fulton.seas.Virginia.EDU> wrote:
  58207. >I'm working on an application that is sending from
  58208. >VMS to VMS (either VAX or Alpha) C-Kermit (running
  58209. >version 190).
  58210. >I need to have the server side rename a file when
  58211. >it receives it, but I want to be sure that this
  58212. >operation is secure (meaning that a malicious
  58213. >user could NOT send a SYSUAF.DAT and rename it
  58214. >to the system one, etc).  I.e.  rename the file
  58215. >in the same directory to which it was sent.
  58216. >
  58217. >So I assume that enabling host is out.  Can
  58218. >I disable "cd" and do a "remote kermit rename x y"?
  58219. >
  58220. DISABLE CD and DISABLE HOST to the Kermit server
  58221. program, before putting it in server more, then the
  58222. client can REMOTE RENAME X Y (not REMOTE KERMIT...)
  58223.  
  58224. Please refer to Chapter 7 of "Using C-Kermit".
  58225. It's all in there.
  58226.  
  58227. >Can I use APC from VMS to VMS? (I've only seen
  58228. >it mentioned that APC is for MS-DOS Kermit).
  58229. >
  58230. MS-DOS Kermit as well as C-Kermit 5A(190) for VMS,
  58231. UNIX, and OS/2 all support APC, but this only is
  58232. effective during CONNECT mode.
  58233.  
  58234. - Frank
  58235. x
  58236. x
  58237. x
  58238. x
  58239. x
  58240. x
  58241. x
  58242.  
  58243. From news@columbia.edu Fri Dec  2 18:26:55 1994
  58244. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29432
  58245.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 2 Dec 1994 14:46:41 -0500
  58246. Received: by apakabar.cc.columbia.edu id AA20489
  58247.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 2 Dec 1994 14:46:38 -0500
  58248. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news.sprintlink.net!pipex!uunet!dziuxsolim.rutgers.edu!caip.rutgers.edu!not-for-mail
  58249. From: halasz@columbia.edu
  58250. Newsgroups: comp.protocols.kermit.misc
  58251. Subject: Re: Help with binary downloads
  58252. Date: 2 Dec 1994 13:26:55 -0500
  58253. Organization: caip.rutgers.edu
  58254. Lines: 10
  58255. Sender: halasz@caip.rutgers.edu
  58256. Distribution: world
  58257. Message-Id: <3bnotf$c4p@caip.rutgers.edu>
  58258. References: <3asuug$pij@apakabar.cc.columbia.edu> <1994Nov17.125037@clstac> <1994Nov21.194523.4841@apgea.army.mil>
  58259. Nntp-Posting-Host: caip.rutgers.edu
  58260. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  58261.  
  58262. From fdc@watsun.cc.columbia.edu (Frank da Cruz):
  58263. : But they can't detect "space" parity, which is indistinguishable
  58264. : from no parity at all, and which is increasingly common on terminal-server
  58265. : connections, etc.
  58266.  
  58267. Huh???  You mean "mark", no?  "Space" means that the word looks like an
  58268. eight-bit word with the highest bit alwais 0.
  58269.        -*-**-*-**-**-*-**-*-**-**-*-**-**-*-**-*-**-**-*-**-*-
  58270. Everything is controlled by a small evil group to which,
  58271. unfortunately, no one whom we know belongs
  58272.  
  58273. From news@columbia.edu Fri Dec  2 16:15:59 1994
  58274. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05634
  58275.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 2 Dec 1994 16:15:59 -0500
  58276. Received: by apakabar.cc.columbia.edu id AA29904
  58277.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 2 Dec 1994 16:15:51 -0500
  58278. From: Byron.Chandler@Microserve.com (Byron Chandler)
  58279. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news.sprintlink.net!nuclear.microserve.net!microserve.com!BYRON.CHANDLER
  58280. Newsgroups: comp.protocols.kermit.misc
  58281. Subject: Dial out problem with Solaris 2.3
  58282. Message-Id: <94120257161@microserve.com>
  58283. Date: Fri, 2 Dec 1994 15:52:41
  58284. Reply-To: Byron.Chandler@Microserve.com (Byron Chandler)
  58285. Organization: Microserve Information Systems (800)380-INET 
  58286. Lines: 23
  58287. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  58288.  
  58289. HELP!
  58290.  
  58291. I'm having a problem with kermit on a Sparcstation 2 with Solaris 2.3.  I have
  58292. a serial line set up with the admintool's serial port manager for a
  58293. bidirectional modem.  It works fine with dial ins.  By the way, the modem is a
  58294. Telebit T2500.)  Problems arise when I go to dial out.  Usually, it will not
  58295. let me set line.  SET LINE gives a "permission denied" or "access to device
  58296. denied" error with /dev/term/b, /dev/tty/b
  58297. , /dev/cua/b whether I am in as root or an ordinary user, with all the
  58298. permissions on the /device file and /dev links set to 777, it does it no matter
  58299. what.  Now tip does fine with dial outs.  But kermit won't do it.  This seems
  58300. so strange.  A user can call in and start a kermit server on the same line.
  58301. but no dice with the dial out.  It is maddening.
  58302.  
  58303. Has anyone else had similar problems?  Any suggestions, ideas, snyde remarks?
  58304. Any help will be most appreciated.
  58305.  
  58306. Byron.Chandler@microserve.com
  58307.  
  58308.  
  58309.  
  58310.  
  58311.  
  58312.  
  58313. From news@columbia.edu Fri Dec  2 21:03:38 1994
  58314. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06631
  58315.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 2 Dec 1994 16:26:31 -0500
  58316. Received: by apakabar.cc.columbia.edu id AA01266
  58317.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 2 Dec 1994 16:26:27 -0500
  58318. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!gatech!newsfeed.pitt.edu!hudson.lm.com!news.pop.psu.edu!news.cac.psu.edu!newsserver.jvnc.net!cmi.hahnemann.edu!news
  58319. From: BRENNAN@HAL.HAHNEMANN.EDU (A. Andrew Brennan)
  58320. Newsgroups: comp.protocols.kermit.misc
  58321. Subject: Kermit 'contrib' directory?
  58322. Date: 2 Dec 1994 21:03:38 GMT
  58323. Organization: Hahnemann University
  58324. Lines: 11
  58325. Distribution: world
  58326. Message-Id: <3bo23a$k7i@cmi.hahnemann.edu>
  58327. Nntp-Posting-Host: hal.hahnemann.edu
  58328. X-News-Reader: VMS NEWS v1.25
  58329. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  58330.  
  58331.    Perhaps this is crazy, but has anyone setup a contrib directory for 
  58332.    scripts, front-ends, etc?  We have the Kermit books here and I'll 
  58333.    admit I've only used them as reference resources, but I was curious
  58334.    if anyone had an archive of .INI scripts, interface programs, etc??
  58335.  
  58336.    If not ... I suppose I could offer to create one?  Unless I'm the
  58337.    only one in the world too lazy to sit down and write my own scripts
  58338.    from scratch?  :^)  I do like indexing archives - maybe it's the 
  58339.    librarian in me trying to creep out.
  58340.  
  58341.    andrew.  (brennan@hal.hahnemann.edu)
  58342.  
  58343. From news@columbia.edu Fri Dec  2 21:54:10 1994
  58344. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09161
  58345.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 2 Dec 1994 16:54:30 -0500
  58346. Received: by apakabar.cc.columbia.edu id AA04299
  58347.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 2 Dec 1994 16:54:22 -0500
  58348. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  58349. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  58350. Newsgroups: comp.protocols.kermit.misc
  58351. Subject: Re: Help with binary downloads
  58352. Date: 2 Dec 1994 21:54:10 GMT
  58353. Organization: Columbia University
  58354. Lines: 20
  58355. Message-Id: <3bo522$45t@apakabar.cc.columbia.edu>
  58356. References: <3asuug$pij@apakabar.cc.columbia.edu> <1994Nov17.125037@clstac> <1994Nov21.194523.4841@apgea.army.mil> <3bnotf$c4p@caip.rutgers.edu>
  58357. Nntp-Posting-Host: watsun.cc.columbia.edu
  58358. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  58359.  
  58360. In article <3bnotf$c4p@caip.rutgers.edu>,  <halasz> wrote:
  58361. >From fdc@watsun.cc.columbia.edu (Frank da Cruz):
  58362. >: But they can't detect "space" parity, which is indistinguishable
  58363. >: from no parity at all, and which is increasingly common on terminal-server
  58364. >: connections, etc.
  58365. >
  58366. >Huh???  You mean "mark", no?  "Space" means that the word looks like an
  58367. >eight-bit word with the highest bit alwais 0.
  58368.  
  58369.  
  58370. Frank means what he says.  Kermit can auto-detect mark, even and odd parity.  
  58371. But it is unable to detect space parity.
  58372.  
  58373.  
  58374.  
  58375.  
  58376. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  58377. "C-Kermit: available on more platforms than any other communications software."
  58378. "Kermit FTP: sending files whenever and wherever they are needed."
  58379. *NEW* OS/2 version 5A(190): ftp kermit.columbia.edu /kermit/archives/ckoker.zip 
  58380.  
  58381. From news@columbia.edu Thu Dec  1 08:08:33 1994
  58382. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11202
  58383.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 2 Dec 1994 17:24:27 -0500
  58384. Received: by apakabar.cc.columbia.edu id AA07787
  58385.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 2 Dec 1994 17:24:24 -0500
  58386. Newsgroups: comp.protocols.kermit.misc
  58387. Path: news.columbia.edu!sol.ctr.columbia.edu!ucsnews!newshub.sdsu.edu!nic-nac.CSU.net!usc!howland.reston.ans.net!ix.netcom.com!netcom.com!taliesin
  58388. From: taliesin@netcom.com (Glenn R. Stone)
  58389. Subject: Re: Speeding up file transfer with kermit
  58390. Message-Id: <taliesinD04HA9.HFq@netcom.com>
  58391. Organization: The Group W Bench
  58392. References: <D03Eqq.DJ5@cfanews.harvard.edu>
  58393. Date: Thu, 1 Dec 1994 08:08:33 GMT
  58394. Lines: 13
  58395. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  58396.  
  58397. In <D03Eqq.DJ5@cfanews.harvard.edu> cheimets@cfa.harvard.edu (Peter Cheimets) writes:
  58398.  
  58399. >I am trying to speed up kermit. I changed the packet length and that improved
  58400. >things greatly.  I don't have a benchmark though.  I was on a 9600baud line,
  58401. >and a packet length of 1000, I was getting a speed of around 620cps (15kB file
  58402. >in 28 seconds).  Is that fast?
  58403.  
  58404. You could probably tune it a bit... I usually end up with 720-730cps for
  58405. 9600 baud and a decent line... if you're getting retries, cut the
  58406. packetsize, otherwise up it a bit... I get good results with 1200 byte
  58407. packets on a clean line.... 
  58408.  
  58409. -- warp eight bot, kermit kinda guy
  58410.  
  58411. From news@columbia.edu Sat Dec  3 12:01:33 1994
  58412. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19929
  58413.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 3 Dec 1994 12:01:33 -0500
  58414. Received: by apakabar.cc.columbia.edu id AA28759
  58415.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 3 Dec 1994 12:01:32 -0500
  58416. From: Byron.Chandler@Microserve.com (Byron Chandler)
  58417. Path: news.columbia.edu!sol.ctr.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!news.mathworks.com!europa.eng.gtefsd.com!howland.reston.ans.net!news.sprintlink.net!nuclear.microserve.net!microserve.com!BYRON.CHANDLER
  58418. Newsgroups: comp.protocols.kermit.misc
  58419. Subject: Re: [Q]How I may take kermit's files from KERMSRV(columbia). Emp
  58420. Message-Id: <94120256676@microserve.com>
  58421. Date: Fri, 2 Dec 1994 15:44:36
  58422. Reply-To: Byron.Chandler@Microserve.com (Byron Chandler)
  58423. Organization: Microserve Information Systems (800)380-INET 
  58424. Lines: 22
  58425. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  58426.  
  58427.  
  58428. >Path: nuclear.microserve.net!news.sprintlink.net!pipex!uunet!demos!dnews-server
  58429. >From: mar@chermk.vologda.su (Reznikov Michael)
  58430. >Newsgroups: comp.protocols.kermit.misc
  58431. >Subject: [Q]How I may take kermit's files from KERMSRV(columbia). Empty.
  58432. >Date: Fri,  2 Dec 94 07:56:25 +0300
  58433. >Organization: Cherepovets Steel & Iron Plant
  58434. >Lines: 2
  58435. >Sender: news-server@news.demos.su
  58436. >Distribution: z
  58437. >Message-ID: <AAvZgtk4t7@chermk.vologda.su>
  58438. >Reply-To: mar@chermk.vologda.su
  58439. >NNTP-Posting-Host: news.demos.su
  58440. >X-mailer: BML [MS/DOS Beauty Mail v.1.27]
  58441. >
  58442. >How I may take kermit's files from kermit server ?
  58443. >
  58444.  
  58445.  
  58446.  
  58447.  
  58448.  
  58449.  
  58450. From news@columbia.edu Fri Dec  2 08:43:12 1994
  58451. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26665
  58452.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 3 Dec 1994 15:10:11 -0500
  58453. Received: by apakabar.cc.columbia.edu id AA13964
  58454.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 3 Dec 1994 15:10:10 -0500
  58455. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!hookup!usc!math.ohio-state.edu!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  58456. From: jrd@cc.usu.edu (Joe Doupnik)
  58457. Newsgroups: comp.protocols.kermit.misc
  58458. Subject: Re: Problems with Kermit VT220 emulation
  58459. Message-Id: <1994Dec2.144312.34369@cc.usu.edu>
  58460. Date: 2 Dec 94 14:43:12 MDT
  58461. References: <3bc2kv$8sc@highway.LeidenUniv.nl>
  58462. Organization: Utah State University
  58463. Lines: 26
  58464. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  58465.  
  58466. In article <3bc2kv$8sc@highway.LeidenUniv.nl>, vdk@rulxho (Peter - INL) writes:
  58467. > Hello Kermit people,
  58468. > I use Kermit to connect to my Internet service provider (a SUN machine). The
  58469. > terminal type is set to VT220. When I use programs as Pine, NN and Lynx, my
  58470. > screen becomes a mess. I think because they use reverse video codes. With
  58471.     What might you mean by "mess"?
  58472.  
  58473. > 'normal' screens everything is fine. Another guy on this group had the same
  58474. > kind of problem and he was advised to set flow control to rts/cts. I tried
  58475. > this too, but it didn't help. I tried a lot of other things like
  58476. > reliable link with compression, reliable link without compression, flow control
  58477. > none, flow control xon/xoff, flow control rts/cts, display 8-bit, set terminal
  58478. > to VT 100, but the problem still exists.
  58479. > The host sends sequences like <ESC>[7m, <ESC>[m and <ESC>[27m. Is there a
  58480. > way to let Kermit interpret these sequences correctly? What must be the
  58481. > settings of my modem and Kermit to let it talk to a Sun machine?
  58482.     These are fine. MSK supports all of them and far more.
  58483.     May I suggest you look at the Sun machine to understand what
  58484. terminal type it thinks it is using. Try a man page to see the visual
  58485. effects too (though most man pages make a hash of the visual part).
  58486.     Then I will repeat the often stated Requirement that flow control
  58487. be effective all the way through the comms chain. That means the host end
  58488. must support an effective flow control which its modem understands...
  58489. all the way to your desktop PC.
  58490.     Joe D.
  58491.  
  58492. From news@columbia.edu Sat Dec  3 20:37:30 1994
  58493. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02352
  58494.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 3 Dec 1994 17:48:13 -0500
  58495. Received: by apakabar.cc.columbia.edu id AA08188
  58496.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 3 Dec 1994 17:48:09 -0500
  58497. Newsgroups: comp.protocols.kermit.misc
  58498. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!Germany.EU.net!EU.net!sun4nl!news.nic.surfnet.nl!ruu.nl!jansen
  58499. From: jansen@surfnet.nl (Xander Jansen)
  58500. Subject: Re: Kermit 3.14 under Desqview and 4DOS
  58501. Message-Id: <1994Dec3.203730.5482@cc.ruu.nl>
  58502. Sender: usenet@cc.ruu.nl
  58503. Reply-To: Xander.Jansen@surfnet.nl
  58504. Organization: SURFnet bv
  58505. X-Newsreader: TIN [version 1.2 PL2]
  58506. References: <3bqd94$71b@yar.trincoll.edu>
  58507. Date: Sat, 3 Dec 1994 20:37:30 GMT
  58508. Lines: 28
  58509. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  58510.  
  58511. Norman Miller (nmiller@trincoll.edu) wrote:
  58512. : When I ran ms-kermit 3.13 under 4dos I had no trouble with zmodem.  Nor
  58513. : when under desqview with 4dos.com in charge.
  58514.  
  58515. : When I run ms-kermit 3.14 under 4dos I have no trouble with zmodem.  Only
  58516. : when I run under Desqview do I get an error message to the effect that
  58517. : the command processor is unavailable.
  58518.  
  58519. : That it's a 3.14 Desqview problem becomes more likely when one considers this:
  58520. : I can run ms-kermit 3.14 under Windows3 (still with 4dos) and zmodem works.
  58521.  
  58522. Which version of 3.14 do you use (the 'full' version or one of the
  58523. 'lite' versions) ? With my plain old MSDOS3.3 PC with various TSR's
  58524. loaded (and thus not much free memory) I cannot PUSH or RUN commands
  58525. from within the full version of kermit (KERMIT.EXE) giving more or
  58526. less the same error message you have. The medium one (KERMITE.EXE)
  58527. let's me go to whatever command processor I'm running (including 4dos). 
  58528.  
  58529. If you don't need the graphic or network capabilities of MSK you might
  58530. wanna try the medium version (KERMITE.EXE). If that works Desqview
  58531. probably doesn't leave enough free memory for your Kermit session to
  58532. run both the full version AND a spawned command processor.
  58533.  
  58534. Note that memory usage of 3.14 (full version) is a bit more than that of
  58535. 3.13.
  58536.  
  58537. --
  58538. Xander.
  58539.  
  58540. From news@columbia.edu Sat Dec  3 02:09:48 1994
  58541. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03039
  58542.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 3 Dec 1994 18:04:38 -0500
  58543. Received: by apakabar.cc.columbia.edu id AA09518
  58544.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 3 Dec 1994 18:04:36 -0500
  58545. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!gatech!udel!hopi.dtcc.edu!hobbes.dtcc.edu!bob
  58546. From: bob@hobbes.dtcc.edu (Bob Rahe)
  58547. Newsgroups: comp.protocols.kermit.misc
  58548. Subject: Re: Icon contest
  58549. Date: 3 Dec 1994 02:09:48 GMT
  58550. Organization: Delaware Technical & Community College
  58551. Lines: 17
  58552. Message-Id: <3bok1c$e9m@hopi.dtcc.edu>
  58553. References: <3b5u0p$c8v@apakabar.cc.columbia.edu>
  58554. Nntp-Posting-Host: hobbes.dtcc.edu
  58555. Keywords: MS-DOS Kermit, Icon, Windows
  58556. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  58557.  
  58558. In article <3b5u0p$c8v@apakabar.cc.columbia.edu>,
  58559. Frank da Cruz <fdc@watsun.cc.columbia.edu> wrote:
  58560.  
  58561. ...
  58562. >(*) There is no truth to the rumor that future releases of MS-DOS Kermit
  58563. >    will be be 3.141, 3.1415, 3.14159, 3.141592, 3.1415926, 3.14159263...
  58564.  
  58565.   Careful, I think that last one is one of the values that triggers the
  58566. Pentium bug.... ;-))
  58567.  
  58568.  
  58569. -- 
  58570. -------------------------------------------------------------------------
  58571. |Bob Rahe, Delaware Tech&Comm College | AIDS, Drugs, Abortion: -        |
  58572. |Computer Center, Dover, Delaware     |  - Don't liberals just kill you?|
  58573. |Internet: bob@hobbes.dtcc.edu        |Save whales; and kill babies?    |
  58574. -------------------------------------------------------------------------
  58575.  
  58576. From news@columbia.edu Sat Dec  3 22:17:04 1994
  58577. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04397
  58578.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 3 Dec 1994 18:39:03 -0500
  58579. Received: by apakabar.cc.columbia.edu id AA12159
  58580.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 3 Dec 1994 18:39:02 -0500
  58581. Newsgroups: comp.protocols.kermit.misc
  58582. Path: news.columbia.edu!panix!zip.eecs.umich.edu!caen!math.ohio-state.edu!sol.ctr.columbia.edu!news.kei.com!eff!news.umbc.edu!europa.eng.gtefsd.com!gatech!udel!news.sprintlink.net!pipex!uunet!hearst.acc.Virginia.EDU!murdoch!fulton.seas.Virginia.EDU!esh6h
  58583. From: esh6h@fulton.seas.Virginia.EDU (Erik Hatcher)
  58584. Subject: Re: Remote (server) file renames
  58585. Message-Id: <D099wG.Kru@murdoch.acc.Virginia.EDU>
  58586. Sender: usenet@murdoch.acc.Virginia.EDU
  58587. Organization: University of Virginia
  58588. References: <D028qE.M3@murdoch.acc.virginia.edu> <3bnsjl$i9p@apakabar.cc.columbia.edu>
  58589. Date: Sat, 3 Dec 1994 22:17:04 GMT
  58590. Lines: 45
  58591. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  58592.  
  58593. In article <3bnsjl$i9p@apakabar.cc.columbia.edu>,
  58594. Frank da Cruz <fdc@watsun.cc.columbia.edu> wrote:
  58595.  
  58596. >>
  58597. >>So I assume that enabling host is out.  Can
  58598. >>I disable "cd" and do a "remote kermit rename x y"?
  58599. >>
  58600. >DISABLE CD and DISABLE HOST to the Kermit server
  58601. >program, before putting it in server more, then the
  58602. >client can REMOTE RENAME X Y (not REMOTE KERMIT...)
  58603. >
  58604. >Please refer to Chapter 7 of "Using C-Kermit".
  58605. >It's all in there.
  58606.  
  58607. There is absolutely NO reference to REMOTE RENAME
  58608. in the book I have (copyright 1993) and my version
  58609. of C-Kermit says I cannot do a REMOTE RENAME.
  58610.  
  58611. I'm running both an Alpha...
  58612. C-Kermit 5A(190) BETA.17, 8 Aug 94, for OpenVMS AXP
  58613. Type ? or HELP for help
  58614. C-Kermit>remote rename ?No keywords match - rename
  58615.  
  58616. And a VAX machine...
  58617. C-Kermit 5A(190), 4 Oct 94, for OpenVMS VAX
  58618.  Copyright (C) 1985, 1994,
  58619.   Trustees of Columbia University in the City of New York.
  58620. Type ? or HELP for help.
  58621. C-Kermit>remote rename ?No keywords match - rename
  58622.  
  58623. And neither allow REMOTE RENAME!
  58624.  
  58625. Will REMOTE KERMIT allow server side file renames
  58626. without allowing renames across directories, or
  58627. is there something missing in my version of
  58628. C-Kermit?!  What do I ENABLE to get REMOTE KERMIT
  58629. to work?  I want to enable as little as possible.
  58630.  
  58631. Thanks,
  58632.     Erik
  58633. --
  58634. Erik Hatcher                           + "But every now and then we just have
  58635. http://fulton.seas.virginia.edu/~esh6h |  to howl with the wolves." 
  58636.                                        |        - Werner Heisenberg
  58637. ---------------------------------------+-------------------------------------
  58638.  
  58639. From news@columbia.edu Sun Dec  4 00:24:09 1994
  58640. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25740
  58641.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 4 Dec 1994 04:27:38 -0500
  58642. Received: by apakabar.cc.columbia.edu id AA16251
  58643.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 4 Dec 1994 04:27:36 -0500
  58644. Newsgroups: comp.protocols.kermit.misc
  58645. Path: news.columbia.edu!sol.ctr.columbia.edu!newsxfer.itd.umich.edu!zip.eecs.umich.edu!caen!hearst.acc.Virginia.EDU!murdoch!fulton.seas.Virginia.EDU!esh6h
  58646. From: esh6h@fulton.seas.Virginia.EDU (Erik Hatcher)
  58647. Subject: "OPEN READ file" Problems
  58648. Message-Id: <D09Fs9.1n0@murdoch.acc.Virginia.EDU>
  58649. Sender: usenet@murdoch.acc.Virginia.EDU
  58650. Organization: University of Virginia
  58651. Date: Sun, 4 Dec 1994 00:24:09 GMT
  58652. Lines: 82
  58653. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  58654.  
  58655. Frank et al, I apologize that everything
  58656. I post to this newsgroup are problems I'm
  58657. experiencing with C-Kermit.  I truly love
  58658. the product and have little complaints!
  58659.  
  58660. Now to the problem...
  58661.  
  58662. I'm running...
  58663. C-Kermit 5A(190), 4 Oct 94, for OpenVMS VAX
  58664.  
  58665. And created a text file called param.dat
  58666. containing three small lines of text.
  58667.  
  58668. Then went into C-Kermit and did this...
  58669.  
  58670. C-Kermit>open read sys$login:param.dat
  58671. C-Kermit>read \%a
  58672. C-Kermit>echo \%a
  58673.  
  58674. C-Kermit>read \%a
  58675. ?Read file not open
  58676. C-Kermit>type sys$login:param.dat
  58677. username
  58678. password
  58679. e-mail@address
  58680. ---------------------------
  58681.  
  58682. I checked all the docs I have (THE book, the
  58683. beware file for VMS, etc).  I didn't find any
  58684. exceptions for READ for VMS.  The !READ works
  58685. fine when I do this...
  58686.  
  58687. C-Kermit>open !read type sys$login:param.dat
  58688. C-Kermit>read \%a
  58689. C-Kermit>echo \%a
  58690. username
  58691. C-Kermit>read \%a
  58692. C-Kermit>echo \%a
  58693. password
  58694. C-Kermit>read \%a
  58695. C-Kermit>echo \%a
  58696. e-mail@address
  58697. C-Kermit>read \%a
  58698. C-Kermit>echo \%a
  58699.  
  58700. C-Kermit>read \%a
  58701. ?Read file not open
  58702.  
  58703. -----------------------
  58704.  
  58705. So why won't READ work in this case?  Is it possible my
  58706. file attributes are what it needs to be for it to read
  58707. the file correctly?  They are...
  58708. MV80:[]$ dir /full sys$login:param.dat
  58709.  
  58710. Directory SYS$USERS:[HATCHER]
  58711.  
  58712. PARAM.DAT;1                   File ID:  (8847,19,0)
  58713. Size:            1/3          Owner:    [HATCHER]
  58714. Created:   3-DEC-1994 17:49:44.15
  58715. Revised:   3-DEC-1994 18:46:26.02 (2)
  58716. Expires:   <None specified>
  58717. Backup:    <No backup recorded>
  58718. File organization:  Sequential
  58719. File attributes:    Allocation: 3, Extend: 0, Global buffer count: 0, No version limit
  58720. Record format:      Variable length, maximum 14 bytes
  58721. Record attributes:  Carriage return carriage control
  58722. RMS attributes:     None
  58723. Journaling enabled: None
  58724. File protection:    System:RWED, Owner:RWED, Group:RWED, World:RWED
  58725. Access Cntrl List:  None
  58726.  
  58727. Total of 1 file, 1/3 blocks.
  58728.  
  58729. Thanks for the help.
  58730.  
  58731.     Erik
  58732. --
  58733. Erik Hatcher                           + "But every now and then we just have
  58734. http://fulton.seas.virginia.edu/~esh6h |  to howl with the wolves." 
  58735.                                        |        - Werner Heisenberg
  58736. ---------------------------------------+-------------------------------------
  58737.  
  58738. From news@columbia.edu Fri Dec  2 16:10:24 1994
  58739. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04980
  58740.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 4 Dec 1994 07:10:24 -0500
  58741. Received: by apakabar.cc.columbia.edu id AA22595
  58742.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 4 Dec 1994 07:10:22 -0500
  58743. Newsgroups: comp.protocols.kermit.misc
  58744. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!gatech!bloom-beacon.mit.edu!news.bu.edu!gw1.att.com!nntpa!not-for-mail
  58745. From: mrbaker@hodcs.ho.att.com (-M.BAKER)
  58746. Subject: Problem with File Xfer (Binary vs Text) ??
  58747. Message-Id: <D06y9C.8p9@nntpa.cb.att.com>
  58748. Sender: news@nntpa.cb.att.com (Netnews Administration)
  58749. Nntp-Posting-Host: hodcs.ho.att.com
  58750. Organization: AT&T
  58751. Date: Fri, 2 Dec 1994 16:10:24 GMT
  58752. Lines: 48
  58753. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  58754.  
  58755.  
  58756.  
  58757. Hi ---
  58758.  
  58759. I believe that I am having a problem with file transfer between my PC
  58760. and our UNIX system.  Here are the particulars:
  58761.  
  58762. PC running MS-Kermit 3.14/Beta 12 (14 Nov 94)
  58763. UNIX running C-Kermit 5A(190) for Solaris 2.x (4 Oct 94)
  58764.  
  58765. When I use pcsend to download files from UNIX to the PC, everything works
  58766. fine (Text xfers are text, and binary xfers are binary).
  58767.  
  58768. But when I use pcget to upload files from PC to UNIX, every file gets
  58769. transferred as "Binary" even if I want "Text" type transfer.
  58770.  
  58771. Here is the troubleshooting I tried to narrow it down....
  58772.  
  58773. Looked at "show file" on both sides...it says "Text"
  58774. Get the above result when I pcget from UNIX.
  58775. Tried set file type text explicitly on both ends before pcget.
  58776. Still get same result.
  58777. Wrote a little script to rule out error in pcget macro:
  58778.  
  58779. apc server
  58780. pause 2
  58781. remote set file type text
  58782. set file type text
  58783. get dosfile.txt
  58784. finish
  58785.  
  58786. Ran the script from UNIX side, and still the file was xferred as Binary
  58787. not Text! 
  58788.  
  58789. What am I missing here ?    
  58790.  
  58791. I would appreciate any suggestions, insights, criticism, etc.
  58792. As far as RTFB goes :-), I'm still working from .HLP/.UPD/.BWR
  58793. as my copy of the book hasn't arrived yet :-(
  58794.  
  58795. Thanks very much,
  58796. Maurice Baker
  58797. AT&T Bell Labs, Holmdel
  58798. mrbaker  at  hodcs.att.com
  58799. (email OK, followups OK too)
  58800. 908-949-4926
  58801.  
  58802.  
  58803.  
  58804. From news@columbia.edu Sat Dec  3 21:43:40 1994
  58805. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29549
  58806.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 4 Dec 1994 07:52:34 -0500
  58807. Received: by apakabar.cc.columbia.edu id AA24631
  58808.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 4 Dec 1994 07:52:32 -0500
  58809. Path: news.columbia.edu!sol.ctr.columbia.edu!newsxfer.itd.umich.edu!gumby!newspump.wustl.edu!bigfoot.wustl.edu!news.ecl.wustl.edu!jxh
  58810. From: jxh@pride.cs.wustl.edu (James C. Hu)
  58811. Newsgroups: comp.protocols.kermit.misc
  58812. Subject: TCP/IP, NE2000 and Kermit
  58813. Date: 03 Dec 1994 21:43:40 GMT
  58814. Organization: Washington University, St. Louis, MO
  58815. Lines: 24
  58816. Distribution: world
  58817. Message-Id: <JXH.94Dec3154340@pride.cs.wustl.edu>
  58818. Nntp-Posting-Host: pride.cs.wustl.edu
  58819. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  58820.  
  58821. I have been attempting to use Kermit 3.14 on my PC with an NE2000
  58822. network card.  I run the Crynwr packet driver, and the parameters
  58823. shown after execution are:
  58824.  
  58825.         packet-intr: 0x7e
  58826.         hardware intr: 9
  58827.         i/o address: 0x300
  58828.  
  58829. I configured the parameters correctly in mscustom.ini, and then
  58830. attempted to connect to a host.  Kermit claims it cannot reach the
  58831. gateway.
  58832.  
  58833. I had my network admin snoop the subnet for me, and I saw that my
  58834. requests to the gateway were reaching it, and that the gateway was
  58835. responding.  After a while, my PC would request a again, and the
  58836. gateway would again respond.  For whatever reason, my PC does not
  58837. seem to acknowledge the responses from the gateway.
  58838.  
  58839. Any hints, pointers to the porblem?  I had a theory that perhaps
  58840. Kermit was responding the hardware interrupt delivered by the network
  58841. card, but I think it more likely that the network card may not be
  58842. recognizing packets that are meant for itself.
  58843.  
  58844. -- James
  58845.  
  58846. From news@columbia.edu Sun Dec  4 14:22:26 1994
  58847. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03183
  58848.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 4 Dec 1994 09:30:58 -0500
  58849. Received: by apakabar.cc.columbia.edu id AA29404
  58850.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 4 Dec 1994 09:30:57 -0500
  58851. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!ub!csn!gfritz
  58852. From: gfritz@csn.net (Gary Fritz)
  58853. Newsgroups: comp.protocols.kermit.misc
  58854. Subject: Lockup problem
  58855. Date: 4 Dec 1994 14:22:26 GMT
  58856. Organization: Colorado Supernet
  58857. Lines: 19
  58858. Message-Id: <3bsjb2$1e1@news-2.csn.net>
  58859. Nntp-Posting-Host: 199.117.27.22
  58860. X-Newsreader: TIN [version 1.2 PL2]
  58861. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  58862.  
  58863. I just downloaded the latest/greatest Kermit (binaries for HP-UX/700)
  58864. from kermit.columbia.edu, but it still has the same problem my old
  58865. kermit did:  it locks up.
  58866.  
  58867. I recently tried to get Kermit running on my system.  At first it worked,
  58868. though not at all well, and it caused some strange problems with accessing
  58869. the modem line (sorry, though, I can't remember the specifics).  Then
  58870. it started locking up as soon as it tried to access the modem.  If I
  58871. started it with "kermit -l /dev/cul01" it would lock; if I started it
  58872. with "kermit" it would give me a prompt until  I said "set line /dev/cul01".
  58873. It never unhangs until I hit ^C.
  58874.  
  58875. I cleared the /usr/lib/uucp locks on the line, but that's not the problem.
  58876. What else would cause Kermit to lock?
  58877.  
  58878. Please **EMAIL** replies, as I will be offline for most of the next week.
  58879.  
  58880. Thanks!
  58881. Gary
  58882.  
  58883. From news@columbia.edu Sun Dec  4 16:48:31 1994
  58884. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07958
  58885.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 4 Dec 1994 12:04:26 -0500
  58886. Received: by apakabar.cc.columbia.edu id AA08460
  58887.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 4 Dec 1994 12:04:23 -0500
  58888. Path: news.columbia.edu!panix!news.mathworks.com!news.alpha.net!uwm.edu!vixen.cso.uiuc.edu!adam
  58889. From: adam@symcom.math.uiuc.edu (Adam H. Lewenberg)
  58890. Newsgroups: comp.protocols.kermit.misc
  58891. Subject: OS/2 Warp: Can Ckermit and TCPIP work together?
  58892. Date: 4 Dec 1994 16:48:31 GMT
  58893. Organization: University of Illinois at Urbana-Champaign Math department
  58894. Lines: 8
  58895. Distribution: usa
  58896. Message-Id: <3bsrsv$37b@vixen.cso.uiuc.edu>
  58897. Nntp-Posting-Host: orion.math.uiuc.edu
  58898. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  58899.  
  58900. I am trying to get CKermit for OS/2 to work with the TCPIP stuff
  58901. that comes in the OS/2 Warp Bonus Pack, but I have not been
  58902. successful. Is this at all possible? If anyone has done this, please
  58903. let me know how they did it. 
  58904. -- 
  58905. University of Illinois at Champaign-Urbana, Dept. Of Mathematics
  58906. INTERNET: adam@math.uiuc.edu   or    a-lewenberg@uiuc.edu
  58907.  
  58908.  
  58909. From news@columbia.edu Sun Dec  4 23:36:28 1994
  58910. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13609
  58911.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 5 Dec 1994 02:23:34 -0500
  58912. Received: by apakabar.cc.columbia.edu id AA24838
  58913.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 5 Dec 1994 02:23:32 -0500
  58914. Newsgroups: comp.protocols.kermit.misc
  58915. Path: news.columbia.edu!sol.ctr.columbia.edu!news.moneng.mei.com!uwm.edu!cs.utexas.edu!swrinde!pipex!uunet!spcuna!ritz!kudut
  58916. From: kudut@ritz.mordor.com (Ken)
  58917. Subject: Re: Kermit 3.14 under Desqview and 4DOS
  58918. References: <3bqd94$71b@yar.trincoll.edu> <1994Dec3.203730.5482@cc.ruu.nl>
  58919. Sender: kudut@ritz.mordor.com (Ken Udut)
  58920. Organization: SOUP Bayleaf off of ritz.mordor.com (Jersey City, NJ USA)
  58921. Date: Sun, 4 Dec 1994 23:36:28 GMT
  58922. Message-Id: <y9bukqo7IFDF071yn@ritz.mordor.com>
  58923. Lines: 49
  58924. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  58925.  
  58926. In article <1994Dec3.203730.5482@cc.ruu.nl>,
  58927. jansen@surfnet.nl (Xander Jansen) wrote:
  58928. > Norman Miller (nmiller@trincoll.edu) wrote:
  58929. > : When I ran ms-kermit 3.13 under 4dos I had no trouble with zmodem.  Nor
  58930. > : when under desqview with 4dos.com in charge.
  58931. > : When I run ms-kermit 3.14 under 4dos I have no trouble with zmodem.  Only
  58932. > : when I run under Desqview do I get an error message to the effect that
  58933. > : the command processor is unavailable.
  58934. > : That it's a 3.14 Desqview problem becomes more likely when one considers this:
  58935. > : I can run ms-kermit 3.14 under Windows3 (still with 4dos) and zmodem works.
  58936. > Which version of 3.14 do you use (the 'full' version or one of the
  58937. > 'lite' versions) ? With my plain old MSDOS3.3 PC with various TSR's
  58938. > loaded (and thus not much free memory) I cannot PUSH or RUN commands
  58939. > from within the full version of kermit (KERMIT.EXE) giving more or
  58940. > less the same error message you have. The medium one (KERMITE.EXE)
  58941. > let's me go to whatever command processor I'm running (including 4dos). 
  58942. > If you don't need the graphic or network capabilities of MSK you might
  58943. > wanna try the medium version (KERMITE.EXE). If that works Desqview
  58944. > probably doesn't leave enough free memory for your Kermit session to
  58945. > run both the full version AND a spawned command processor.
  58946. > Note that memory usage of 3.14 (full version) is a bit more than that of
  58947. > 3.13.
  58948. > --
  58949. > Xander.
  58950.  
  58951. To get more memory when shelling to MS-DOS, use a program called
  58952. "Shroom" - Short for "Shell Room".
  58953.  
  58954. Waffle BBS folks swear by it.
  58955.  
  58956. It shells the program you are using out to disk or memory, and gives
  58957. you the greatest possible memory in that situation.
  58958.  
  58959. Ask on comp.bbs.waffle for the place to find it.
  58960.  
  58961. (It also works great with programs like Deskmate, compilers, and
  58962. every other program that shells to DOS).
  58963.  
  58964.  
  58965.  
  58966. -- 
  58967. Kenneth Udut                                          kudut@ritz.mordor.com
  58968. Listowner of Y-RIGHTS@SJUVM.BITNET - discussion on the rights of kids/teens
  58969.  
  58970. From news@columbia.edu Sun Dec  4 18:45:22 1994
  58971. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26241
  58972.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 5 Dec 1994 09:10:04 -0500
  58973. Received: by apakabar.cc.columbia.edu id AA13521
  58974.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 5 Dec 1994 09:10:00 -0500
  58975. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!math.ohio-state.edu!scipio.cyberstore.ca!vanbc.wimsey.com!news.bc.net!infomatch.com!infomatch.com!not-for-mail
  58976. From: blaak@infomatch.com (Ray Blaak)
  58977. Newsgroups: comp.protocols.kermit.misc
  58978. Subject: Looking for a telnet kermit
  58979. Date: 4 Dec 1994 10:45:22 -0800
  58980. Organization: InfoMatch Information Services
  58981. Lines: 9
  58982. Message-Id: <3bt2o2$1s5@infomatch.com>
  58983. Summary: see subject
  58984. Keywords: telnet kermit
  58985. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  58986.  
  58987. I need a kermit which points to a telnet session for its remote ``line''
  58988. instead of a serial device.
  58989.  
  58990. Does such a things exist? I seem remember some threads about it before.
  58991. Could someone tell me where such a kermit is available?
  58992.  
  58993. Cheers,
  58994. Ray Blaak
  58995. blaak@infomatch.com
  58996.  
  58997. From news@columbia.edu Mon Dec  5 15:07:06 1994
  58998. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01647
  58999.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 5 Dec 1994 10:07:13 -0500
  59000. Received: by apakabar.cc.columbia.edu id AA18815
  59001.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 5 Dec 1994 10:07:11 -0500
  59002. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  59003. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  59004. Newsgroups: comp.protocols.kermit.misc
  59005. Subject: Re: Dial out problem with Solaris 2.3
  59006. Date: 5 Dec 1994 15:07:06 GMT
  59007. Organization: Columbia University
  59008. Lines: 27
  59009. Message-Id: <3bvaaq$ibl@apakabar.cc.columbia.edu>
  59010. References: <94120257161@microserve.com>
  59011. Nntp-Posting-Host: watsun.cc.columbia.edu
  59012. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  59013.  
  59014. In article <94120257161@microserve.com>,
  59015. Byron Chandler <Byron.Chandler@Microserve.com> wrote:
  59016.  
  59017. >I'm having a problem with kermit on a Sparcstation 2 with Solaris 2.3.  I
  59018. >have a serial line set up with the admintool's serial port manager for a
  59019. >bidirectional modem.  It works fine with dial ins.  By the way, the modem is
  59020. >a Telebit T2500.)  Problems arise when I go to dial out.
  59021. >
  59022. UNIX bidirectional ttys are a big problem for C-Kermit.  That's because
  59023. every version of UNIX, and every release of every version, handles this issue
  59024. differently.  It's no surprise that tip and/or cu on a particular UNIX
  59025. version, such as Solaris 2.3, handle bidirectional ttys OK, because these
  59026. are vendor-provided utilities.  They are probably also installed suid to
  59027. root or somesuch.
  59028.  
  59029. There is no way C-Kermit, which runs on over 400 different UNIX variations,
  59030. can account for bidirectional ttys on all of them (or for that matter, any
  59031. of them!) without introducing thousands of lines of code, security risks, and
  59032. insurmountable maintenance headaches.
  59033.  
  59034. The standard advice (found in all the relevant documentation) is: before
  59035. using C-Kermit to dial out on a bidirectional tty, use your system utilities
  59036. to make it non-bidirectional.  For example, make a shell script wrapper that
  59037. kills the getty and restarts init, or that runs admintool, or whatever, then
  59038. runs Kermit, and then when Kermit exits, puts the line back the way it was.
  59039.  
  59040. - Frank
  59041.  
  59042. From news@columbia.edu Mon Dec  5 15:21:08 1994
  59043. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04738
  59044.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 5 Dec 1994 10:21:19 -0500
  59045. Received: by apakabar.cc.columbia.edu id AA20183
  59046.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 5 Dec 1994 10:21:18 -0500
  59047. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  59048. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  59049. Newsgroups: comp.protocols.kermit.misc
  59050. Subject: Re: Problem with File Xfer (Binary vs Text) ??
  59051. Date: 5 Dec 1994 15:21:08 GMT
  59052. Organization: Columbia University
  59053. Lines: 25
  59054. Message-Id: <3bvb54$jmd@apakabar.cc.columbia.edu>
  59055. References: <D06y9C.8p9@nntpa.cb.att.com>
  59056. Nntp-Posting-Host: watsun.cc.columbia.edu
  59057. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  59058.  
  59059. In article <D06y9C.8p9@nntpa.cb.att.com>,
  59060. -M.BAKER <mrbaker@hodcs.ho.att.com> wrote:
  59061. >I believe that I am having a problem with file transfer between my PC
  59062. >and our UNIX system.  Here are the particulars:
  59063. >
  59064. >PC running MS-Kermit 3.14/Beta 12 (14 Nov 94)
  59065. >UNIX running C-Kermit 5A(190) for Solaris 2.x (4 Oct 94)
  59066. >
  59067. >When I use pcsend to download files from UNIX to the PC, everything works
  59068. >fine... But when I use pcget to upload files from PC to UNIX, every file 
  59069. >gets transferred as "Binary" even if I want "Text" type transfer.
  59070. >
  59071. This was a bug in Beta-12, which should be fixed in the current beta
  59072. release, Beta-14.
  59073.  
  59074. - Frank
  59075. x
  59076. x
  59077. x
  59078. x
  59079. x
  59080. x
  59081. x
  59082.  
  59083.  
  59084.  
  59085. From news@columbia.edu Mon Dec  5 15:28:13 1994
  59086. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05178
  59087.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 5 Dec 1994 10:28:25 -0500
  59088. Received: by apakabar.cc.columbia.edu id AA20888
  59089.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 5 Dec 1994 10:28:22 -0500
  59090. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  59091. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  59092. Newsgroups: comp.protocols.kermit.misc
  59093. Subject: Re: Remote (server) file renames
  59094. Date: 5 Dec 1994 15:28:13 GMT
  59095. Organization: Columbia University
  59096. Lines: 42
  59097. Message-Id: <3bvbid$kce@apakabar.cc.columbia.edu>
  59098. References: <D028qE.M3@murdoch.acc.virginia.edu> <3bnsjl$i9p@apakabar.cc.columbia.edu> <D099wG.Kru@murdoch.acc.virginia.edu>
  59099. Nntp-Posting-Host: watsun.cc.columbia.edu
  59100. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  59101.  
  59102. In article <D099wG.Kru@murdoch.acc.virginia.edu>,
  59103. Erik Hatcher <esh6h@fulton.seas.Virginia.EDU> wrote:
  59104. >In article <3bnsjl$i9p@apakabar.cc.columbia.edu>,
  59105. >Frank da Cruz <fdc@watsun.cc.columbia.edu> wrote:
  59106. >>DISABLE CD and DISABLE HOST to the Kermit server
  59107. >>program, before putting it in server more, then the
  59108. >>client can REMOTE RENAME X Y (not REMOTE KERMIT...)
  59109. >>
  59110. >>Please refer to Chapter 7 of "Using C-Kermit".
  59111. >>It's all in there.
  59112. >
  59113. >There is absolutely NO reference to REMOTE RENAME
  59114. >in the book I have (copyright 1993) and my version
  59115. >of C-Kermit says I cannot do a REMOTE RENAME.
  59116. >
  59117. Oops, sorry.  I should have looked before I leapt.
  59118. I really thought it was there!  Oh well, it will be
  59119. in the next release.
  59120.  
  59121. >Will REMOTE KERMIT allow server side file renames
  59122. >without allowing renames across directories...
  59123. >
  59124. The only Kermit server that supports REMOTE KERMIT
  59125. commands is Kermit-370 on IBM mainframes.  There are
  59126. no plans to add REMOTE KERMIT server-end support to
  59127. C-Kermit, even though the C-Kermit client can send
  59128. REMOTE KERMIT commands.  So for now the only way to
  59129. get a C-Kermit server to rename a file is to send it
  59130. a REMOTE HOST RENAME (or REMOTE HOST MV, or whatever,
  59131. depending on the operating system) command.
  59132.  
  59133. >What do I ENABLE to get REMOTE KERMIT
  59134. >to work?  I want to enable as little as possible.
  59135. >
  59136. Unfortunately, this requires that you ENABLE HOST,
  59137. which is what you were trying to avoid.  Of course,
  59138. there are other solutions, such as sending the file
  59139. with the desired name in the first place.  But if this
  59140. is to include a directory part, then you have to
  59141. ENABLE CD.
  59142.  
  59143. - Frank
  59144.  
  59145. From news@columbia.edu Mon Dec  5 15:37:30 1994
  59146. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05770
  59147.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 5 Dec 1994 10:37:49 -0500
  59148. Received: by apakabar.cc.columbia.edu id AA21809
  59149.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 5 Dec 1994 10:37:46 -0500
  59150. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  59151. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  59152. Newsgroups: comp.protocols.kermit.misc
  59153. Subject: Re: "OPEN READ file" Problems
  59154. Date: 5 Dec 1994 15:37:30 GMT
  59155. Organization: Columbia University
  59156. Lines: 33
  59157. Message-Id: <3bvc3q$l92@apakabar.cc.columbia.edu>
  59158. References: <D09Fs9.1n0@murdoch.acc.virginia.edu>
  59159. Nntp-Posting-Host: watsun.cc.columbia.edu
  59160. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  59161.  
  59162. In article <D09Fs9.1n0@murdoch.acc.virginia.edu>,
  59163. Erik Hatcher <esh6h@fulton.seas.Virginia.EDU> wrote:
  59164. >I'm running...
  59165. >C-Kermit 5A(190), 4 Oct 94, for OpenVMS VAX
  59166. >
  59167. >And created a text file called param.dat
  59168. >containing three small lines of text.
  59169. >
  59170. >Then went into C-Kermit and did this...
  59171. >
  59172. >C-Kermit>open read sys$login:param.dat
  59173. >C-Kermit>read \%a
  59174. >C-Kermit>echo \%a
  59175. >
  59176. >C-Kermit>read \%a
  59177. >?Read file not open
  59178. >
  59179. I dunno.  I tried this locally and it works fine, assuming
  59180. the file really exists and really has three lines in it,
  59181. and OPEN READ was given the correct file name.
  59182.  
  59183. The typescript above makes it look like your PARAM.DAT file
  59184. consisted of one empty line, and the second READ command
  59185. got an end-of-file.
  59186.  
  59187. - Frank
  59188. x
  59189. x
  59190. x
  59191. x
  59192. x
  59193. x
  59194. x
  59195.  
  59196. From news@columbia.edu Mon Dec  5 15:45:05 1994
  59197. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06253
  59198.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 5 Dec 1994 10:45:17 -0500
  59199. Received: by apakabar.cc.columbia.edu id AA22488
  59200.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 5 Dec 1994 10:45:14 -0500
  59201. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  59202. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  59203. Newsgroups: comp.protocols.kermit.misc
  59204. Subject: Re: Lockup problem
  59205. Date: 5 Dec 1994 15:45:05 GMT
  59206. Organization: Columbia University
  59207. Lines: 35
  59208. Message-Id: <3bvci1$lu8@apakabar.cc.columbia.edu>
  59209. References: <3bsjb2$1e1@news-2.csn.net>
  59210. Nntp-Posting-Host: watsun.cc.columbia.edu
  59211. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  59212.  
  59213. In article <3bsjb2$1e1@news-2.csn.net>, Gary Fritz <gfritz@csn.net> wrote:
  59214. >I just downloaded the latest/greatest Kermit (binaries for HP-UX/700)
  59215. >from kermit.columbia.edu, but it still has the same problem my old
  59216. >kermit did:  it locks up.
  59217. >
  59218. >I recently tried to get Kermit running on my system.  At first it worked,
  59219. >though not at all well, and it caused some strange problems with accessing
  59220. >the modem line (sorry, though, I can't remember the specifics).  Then
  59221. >it started locking up as soon as it tried to access the modem.  If I
  59222. >started it with "kermit -l /dev/cul01" it would lock; if I started it
  59223. >with "kermit" it would give me a prompt until  I said "set line /dev/cul01".
  59224. >It never unhangs until I hit ^C.
  59225. >
  59226. >I cleared the /usr/lib/uucp locks on the line, but that's not the problem.
  59227. >What else would cause Kermit to lock?
  59228. >
  59229. Did you read the HP-UX section of ckuker.bwr?  Quoting:
  59230.  
  59231. Before you can use serial ports on the HP-9000, you must configure them as
  59232. either "terminals" or "modems" with SAM ("peripheral devices"..."terminals and
  59233. modems"), as described in the HP manual, "Configuring HP-UX for Peripherals:
  59234. HP 9000".  If you attempt to use a serial device before it has been configured
  59235. this way, it will not work properly; typical symptoms are (a) no communication
  59236. at all; (b) nonfunctional modem signals; and/or (c) massive amounts of
  59237. character loss in both directions.
  59238.  
  59239. (end quote)
  59240.  
  59241. Other things to watch out for: bidirectional ttys (see earlier posting about
  59242. this), improperly configured modem (DSR or CTS signals missing, for example),
  59243. or perhaps commands in your .kermrc that might cause the open() to hang:
  59244. "set carrier on nnn", "set flow rts/cts" (when CTS is not being asserted),
  59245. etc.
  59246.  
  59247. - Frank
  59248.  
  59249. From news@columbia.edu Mon Dec  5 15:47:25 1994
  59250. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06389
  59251.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 5 Dec 1994 10:47:36 -0500
  59252. Received: by apakabar.cc.columbia.edu id AA22641
  59253.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 5 Dec 1994 10:47:34 -0500
  59254. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  59255. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  59256. Newsgroups: comp.protocols.kermit.misc
  59257. Subject: Re: Looking for a telnet kermit
  59258. Date: 5 Dec 1994 15:47:25 GMT
  59259. Organization: Columbia University
  59260. Lines: 14
  59261. Message-Id: <3bvcmd$m37@apakabar.cc.columbia.edu>
  59262. References: <3bt2o2$1s5@infomatch.com>
  59263. Nntp-Posting-Host: watsun.cc.columbia.edu
  59264. Keywords: telnet kermit
  59265. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  59266.  
  59267. In article <3bt2o2$1s5@infomatch.com>, Ray Blaak <blaak@infomatch.com> wrote:
  59268. >I need a kermit which points to a telnet session for its remote ``line''
  59269. >instead of a serial device.
  59270. >
  59271. The following Kermit programs can make TELNET connections:
  59272.  
  59273.   MS-DOS Kermit for DOS and Windows
  59274.   UNIX C-Kermit for most UNIX variations
  59275.   VMS C-Kermit
  59276.   OS/2 C-Kermit
  59277.   AOS/VS C-Kermit
  59278.   Stratus VOS C-Kermit
  59279.  
  59280. - Frank
  59281.  
  59282. From news@columbia.edu Mon Dec  5 16:54:24 1994
  59283. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25595
  59284.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 5 Dec 1994 14:49:40 -0500
  59285. Received: by apakabar.cc.columbia.edu id AA17094
  59286.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 5 Dec 1994 14:49:38 -0500
  59287. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news2.near.net!news.mathworks.com!news.alpha.net!pacifier!pacifier!not-for-mail
  59288. From: mikef@pacifier.com (Mike Freeman)
  59289. Newsgroups: comp.protocols.kermit.misc
  59290. Subject: Re: Remote (server) file renames
  59291. Date: 5 Dec 1994 08:54:24 -0800
  59292. Organization: none
  59293. Lines: 22
  59294. Message-Id: <3bvgk1$f7i@pacifier.com>
  59295. References: <D028qE.M3@murdoch.acc.virginia.edu> <3bnsjl$i9p@apakabar.cc.columbia.edu> <D099wG.Kru@murdoch.acc.virginia.edu>
  59296. Nntp-Posting-Host: pacifier.com
  59297. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  59298.  
  59299. In article <D099wG.Kru@murdoch.acc.virginia.edu>,
  59300. Erik Hatcher <esh6h@fulton.seas.Virginia.EDU> wrote:
  59301. >
  59302. >There is absolutely NO reference to REMOTE RENAME
  59303. >in the book I have (copyright 1993) and my version
  59304. >of C-Kermit says I cannot do a REMOTE RENAME.
  59305. >
  59306. C-Kermit hasn't implemented Remote Rename yet.  I called attention to
  59307. this many moons ago in a message to, I think, Terry Kennedy.
  59308. Here is one instance wherein old Bliss Kermit outshines C-Kermit;
  59309. Bliss Kermit implements Remote Rename.  Whether one can rename
  59310. across directories is a function of the privs allotted to the
  59311. account wherein the remote Kermit is run.
  59312.  
  59313. What Frank was saying, I think, was that you could rename the file(s)
  59314. locally before you sent them via Kermit.
  59315.  
  59316. Ciao!
  59317. -- 
  59318. Mike Freeman            |       Internet: mikef@pacifier.com
  59319. GEnie: M.FREEMAN11      |       Amateur Radio Callsign: K7UIJ
  59320. ... Virtue is its own punishment.
  59321.  
  59322. From news@columbia.edu Sun Dec  6 03:13:17 1994
  59323. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07804
  59324.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 6 Dec 1994 04:51:35 -0500
  59325. Received: by apakabar.cc.columbia.edu id AA10256
  59326.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 6 Dec 1994 04:51:34 -0500
  59327. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!gatech!udel!news.mathworks.com!panix!not-for-mail
  59328. From: ami@panix.com (Ami Bar-Yadin)
  59329. Newsgroups: comp.protocols.kermit.misc
  59330. Subject: Kermit 3.14-beta 14 and vt220 non-erasable characters
  59331. Date: 5 Dec 1994 22:13:17 -0500
  59332. Organization: United Fashions of Texas, Ltd.
  59333. Lines: 29
  59334. Message-Id: <V9zukSng1OX5073yn@panix.com>
  59335. Nntp-Posting-Host: panix.com
  59336. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  59337.  
  59338. There is a problem with the vt220 emulation of MS-DOS Kermit 3.14.
  59339. I downloaded the beta 14 version, specifically to test the feature
  59340. which DEC refers to as "non-erasable characters".
  59341.  
  59342. I prepared a small unix shell script to send the escape-sequences
  59343. and tested the response in Kermit and in Crosstalk mk4.
  59344.  
  59345. ---snip---
  59346. #!/usr/bin/ksh
  59347. fg="\033[2\"q"
  59348. bk="\033[1\"q"
  59349. cf="\033[?2J"
  59350. echo "${fg}foreground${bk}background${fg}foreground${bk}background${fg}${cf}"
  59351. ---snip---
  59352.  
  59353. The expected result, which Crosstalk did provide, is a blank screen
  59354. with the shell prompt toward the top, and the word "background" 
  59355. twice on some line of the screen.
  59356.  
  59357. Kermit however, responds with a blank screen with the shell prompt
  59358. towards the top.  The "background" words are erased as well, which
  59359. should not happen.
  59360.  
  59361. Kermit did respond correctly to a couple other small tests.
  59362.  
  59363. I hope this can be fixed for this version, it's the only
  59364. vt220 feature I need which Kermit does not support.  Yet :-).
  59365. --
  59366. Ami Bar-Yadin (ami@panix.com)
  59367.  
  59368. From news@columbia.edu Sun Dec  4 21:34:26 1994
  59369. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07995
  59370.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 6 Dec 1994 04:59:39 -0500
  59371. Received: by apakabar.cc.columbia.edu id AA10675
  59372.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 6 Dec 1994 04:59:37 -0500
  59373. Newsgroups: comp.protocols.kermit.misc
  59374. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!ix.netcom.com!netcom.com!jhurwit
  59375. From: jhurwit@netcom.com (Jeffrey Hurwit)
  59376. Subject: Re: Kermit 3.14 under Desqview and 4DOS
  59377. Message-Id: <jhurwitD0B2LE.B1B@netcom.com>
  59378. Organization: Organization?  What organization?
  59379. X-Newsreader: TIN [version 1.2 PL1]
  59380. References: <3bqd94$71b@yar.trincoll.edu> <1994Dec3.203730.5482@cc.ruu.nl>
  59381. Date: Sun, 4 Dec 1994 21:34:26 GMT
  59382. Lines: 13
  59383. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  59384.  
  59385. In article <1994Dec3.203730.5482@cc.ruu.nl>,
  59386. Xander Jansen (jansen@surfnet.nl) wrote:
  59387.  
  59388. >If you don't need the graphic or network capabilities of MSK you might
  59389. >wanna try the medium version (KERMITE.EXE). If that works Desqview
  59390. >probably doesn't leave enough free memory for your Kermit session to
  59391. >run both the full version AND a spawned command processor.
  59392.  
  59393.     If memory's a problem, another option is setting the screen
  59394.     rollback buffer smaller.  Setting it to 5 instead of the default 10
  59395.     would (according to the docs) save about 20K or more.
  59396.  
  59397.                                         Jeff
  59398.  
  59399. From news@columbia.edu Tue Dec  6 01:20:40 1994
  59400. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08706
  59401.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 6 Dec 1994 05:18:13 -0500
  59402. Received: by apakabar.cc.columbia.edu id AA11858
  59403.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 6 Dec 1994 05:18:12 -0500
  59404. Path: news.columbia.edu!sol.ctr.columbia.edu!news.moneng.mei.com!uwm.edu!msunews!harbinger.cc.monash.edu.au!news.cs.su.oz.au!news.adelaide.edu.au!yoyo.aarnet.edu.au!goliath.camtech.com.au!gateway.dircsa.org.au!gateway.dircsa.org.au!not-for-mail
  59405. From: arthur@gateway.dircsa.org.au (Arthur Marsh)
  59406. Newsgroups: comp.protocols.kermit.misc
  59407. Subject: Re: Looking for a telnet kermit
  59408. Date: 6 Dec 1994 11:50:40 +1030
  59409. Organization: DIRCSA - Disability Information and Resource Centre
  59410. Lines: 17
  59411. Message-Id: <3c0e98$5a4@gateway.dircsa.org.au>
  59412. References: <3bt2o2$1s5@infomatch.com>
  59413. Nntp-Posting-Host: gateway.dircsa.org.au
  59414. X-Newsreader: TIN [version 1.1 PL8]
  59415. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  59416.  
  59417. Ray Blaak (blaak@infomatch.com) wrote:
  59418. : I need a kermit which points to a telnet session for its remote ``line''
  59419. : instead of a serial device.
  59420.  
  59421. : Does such a things exist? I seem remember some threads about it before.
  59422. : Could someone tell me where such a kermit is available?
  59423.  
  59424. Yes. kermit.columbia.edu. I have used the telnet built into MS-Kermit,
  59425. C-Kermit for AIX, and C-Kermit for Unixware.
  59426.  
  59427. On newer kermits with TCP/IP, one can telnet from the kermit prompt or
  59428. a kermit script file.
  59429.  
  59430. -- 
  59431. Arthur Marsh, telephone +61-8-370-2365, fax +61-8-370-2133, +61-8-223-5082 
  59432.               arthur@gateway.dircsa.org.au, arthur@cswamp.apana.org.au
  59433. .endofsig
  59434.  
  59435. From news@columbia.edu Mon Dec  5 21:59:47 1994
  59436. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09546
  59437.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 6 Dec 1994 07:36:45 -0500
  59438. Received: by apakabar.cc.columbia.edu id AA18525
  59439.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 6 Dec 1994 07:36:43 -0500
  59440. Newsgroups: comp.protocols.kermit.misc
  59441. Path: news.columbia.edu!sol.ctr.columbia.edu!news.msfc.nasa.gov!news.larc.nasa.gov!lerc.nasa.gov!magnus.acs.ohio-state.edu!math.ohio-state.edu!caen!hearst.acc.Virginia.EDU!murdoch!fulton.seas.Virginia.EDU!esh6h
  59442. From: esh6h@fulton.seas.Virginia.EDU (Erik Hatcher)
  59443. Subject: Server side renames - still not solved!
  59444. Message-Id: <D0CyFn.4sv@murdoch.acc.Virginia.EDU>
  59445. Sender: usenet@murdoch.acc.Virginia.EDU
  59446. Organization: University of Virginia
  59447. Date: Mon, 5 Dec 1994 21:59:47 GMT
  59448. Lines: 17
  59449. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  59450.  
  59451. I still haven't found a way to do server side
  59452. renames of a file.  I send the file as one
  59453. name and want to rename it on the server side.
  59454.  
  59455. REMOTE RENAME was suggested but I have yet to
  59456. find this command in the book and it doesn't
  59457. work on my version.
  59458.  
  59459. Any help is greatly appreciated!
  59460.  
  59461. Thanks,
  59462.     Erik
  59463. --
  59464. Erik Hatcher                           + "But every now and then we just have
  59465. http://fulton.seas.virginia.edu/~esh6h |  to howl with the wolves." 
  59466.                                        |        - Werner Heisenberg
  59467. ---------------------------------------+-------------------------------------
  59468.  
  59469. From news@columbia.edu Tue Dec  6 12:15:00 1994
  59470. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14158
  59471.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 6 Dec 1994 08:55:05 -0500
  59472. Received: by apakabar.cc.columbia.edu id AA23522
  59473.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 6 Dec 1994 08:54:58 -0500
  59474. Path: news.columbia.edu!panix!news.mathworks.com!hookup!swrinde!pipex!warwick!bham!news!bam
  59475. From: B.A.McCauley@bham.ac.uk
  59476. Newsgroups: comp.protocols.kermit.misc
  59477. Subject: Re: Remote (server) file renames
  59478. Date: 06 Dec 1994 12:15:00 GMT
  59479. Organization: The University of Birmingham, UK.
  59480. Lines: 23
  59481. Message-Id: <BAM.94Dec6121500@wcl-l.bham.ac.uk>
  59482. References: <D028qE.M3@murdoch.acc.virginia.edu> <3bnsjl$i9p@apakabar.cc.columbia.edu>
  59483.     <D099wG.Kru@murdoch.acc.Virginia.EDU>
  59484. Nntp-Posting-Host: wcl-l.bham.ac.uk
  59485. In-Reply-To: esh6h@fulton.seas.Virginia.EDU's message of Sat, 3 Dec 1994 22:17:04 GMT
  59486. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  59487.  
  59488. In article <D099wG.Kru@murdoch.acc.Virginia.EDU> esh6h@fulton.seas.Virginia.EDU (Erik Hatcher) writes:
  59489. >In article <3bnsjl$i9p@apakabar.cc.columbia.edu>,
  59490. >Frank da Cruz <fdc@watsun.cc.columbia.edu> wrote:
  59491. >>
  59492. >>Please refer to Chapter 7 of "Using C-Kermit".
  59493. >>It's all in there.
  59494. >
  59495. >There is absolutely NO reference to REMOTE RENAME
  59496. >in the book I have (copyright 1993) and my version
  59497. >of C-Kermit says I cannot do a REMOTE RENAME.
  59498.  
  59499. This is really strange. I too have never seen REMOTE RENAME in any
  59500. kermit manuals or implemnataions and yet the "Kermit Protocol Manual
  59501. 6" (1986!) includes the underlying protocol support for this command.
  59502.  
  59503. What gives?
  59504. --
  59505.     \\   ( )   No Bullshit!   | Email: B.A.McCauley@bham.ac.uk
  59506.  .  _\\__[oo       from       | Phones: +44 121 471 3789 (home)
  59507. .__/  \\ /\@  /~)  /~[   /\/[ |  +44 121 627 2173 (voice) 2175 (fax)
  59508. .  l___\\    /~~) /~~[  /   [ | PGP-fp: D7 03 2A 4B D8 3A 05 37
  59509.  # ll  l\\  ~~~~ ~   ~ ~    ~ |         A1 93 FE EA BE E3 2A 91
  59510. ###LL  LL\\ (Brian McCauley)  | More: finger bam@wcl-rs.bham.ac.uk
  59511.  
  59512. From news@columbia.edu Tue Dec  6 16:05:20 1994
  59513. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22538
  59514.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 6 Dec 1994 11:05:26 -0500
  59515. Received: by apakabar.cc.columbia.edu id AA06100
  59516.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 6 Dec 1994 11:05:24 -0500
  59517. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  59518. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  59519. Newsgroups: comp.protocols.kermit.misc
  59520. Subject: Re: Server side renames - still not solved!
  59521. Date: 6 Dec 1994 16:05:20 GMT
  59522. Organization: Columbia University
  59523. Lines: 33
  59524. Message-Id: <3c2240$5uh@apakabar.cc.columbia.edu>
  59525. References: <D0CyFn.4sv@murdoch.acc.virginia.edu>
  59526. Nntp-Posting-Host: watsun.cc.columbia.edu
  59527. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  59528.  
  59529. In article <D0CyFn.4sv@murdoch.acc.virginia.edu>,
  59530. Erik Hatcher <esh6h@fulton.seas.Virginia.EDU> wrote:
  59531. >I still haven't found a way to do server side
  59532. >renames of a file.  I send the file as one
  59533. >name and want to rename it on the server side.
  59534. >
  59535. >REMOTE RENAME was suggested but I have yet to
  59536. >find this command in the book and it doesn't
  59537. >work on my version.
  59538. >
  59539.  
  59540. Erik:
  59541.  
  59542. The answer appears to be that at this time server side RENAME
  59543. is not possible unless you lower the security barriers a bit
  59544. which you do not want to do.
  59545.  
  59546. The only suggestion that I have for you is to perform the rename
  59547. on the client before you send the file.  Or just send the file
  59548. with the name is it supposed to the saved under from the very 
  59549. start.
  59550.  
  59551. SEND oldname newname
  59552.  
  59553. has exactly the same result as 
  59554.  
  59555. SEND oldname
  59556. REMOTE RENAME oldname newname
  59557.  
  59558. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  59559. "C-Kermit: available on more platforms than any other communications software."
  59560. "Kermit FTP: sending files whenever and wherever they are needed."
  59561. *NEW* OS/2 version 5A(190): ftp kermit.columbia.edu /kermit/archives/ckoker.zip 
  59562.  
  59563. From news@columbia.edu Tue Dec  6 17:26:23 1994
  59564. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02521
  59565.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 6 Dec 1994 13:29:03 -0500
  59566. Received: by apakabar.cc.columbia.edu id AA21886
  59567.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 6 Dec 1994 13:29:00 -0500
  59568. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!ddsw1!not-for-mail
  59569. From: les@MCS.COM (Leslie Mikesell)
  59570. Newsgroups: comp.protocols.kermit.misc
  59571. Subject: Re: Looking for a telnet kermit
  59572. Date: 6 Dec 1994 11:26:23 -0600
  59573. Organization: /usr/lib/news/organi[sz]ation
  59574. Lines: 19
  59575. Message-Id: <3c26rv$8jv@Mars.mcs.com>
  59576. References: <3bt2o2$1s5@infomatch.com> <3bvcmd$m37@apakabar.cc.columbia.edu>
  59577. Nntp-Posting-Host: mars.mcs.com
  59578. Keywords: telnet kermit
  59579. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  59580.  
  59581. In article <3bvcmd$m37@apakabar.cc.columbia.edu>,
  59582. Frank da Cruz <fdc@watsun.cc.columbia.edu> wrote:
  59583.  
  59584. >The following Kermit programs can make TELNET connections:
  59585. >
  59586. >  MS-DOS Kermit for DOS and Windows
  59587. >  UNIX C-Kermit for most UNIX variations
  59588. >  VMS C-Kermit
  59589. >  OS/2 C-Kermit
  59590. >  AOS/VS C-Kermit
  59591. >  Stratus VOS C-Kermit
  59592.  
  59593. Is it possible to use unix kermit to telnet into an OS/2 machine, start
  59594. up kermit there and transfer files over the connection?  I know you
  59595. can do the reverse, and you can do it to DOS machines if you leave
  59596. a kermit running in server mode.
  59597.  
  59598. Les Mikesell
  59599.   les@mcs.com
  59600.  
  59601. From news@columbia.edu Tue Dec  6 20:34:41 1994
  59602. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10624
  59603.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 6 Dec 1994 15:34:47 -0500
  59604. Received: by apakabar.cc.columbia.edu id AA05094
  59605.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 6 Dec 1994 15:34:45 -0500
  59606. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  59607. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  59608. Newsgroups: comp.protocols.kermit.misc
  59609. Subject: Re: Looking for a telnet kermit
  59610. Date: 6 Dec 1994 20:34:41 GMT
  59611. Organization: Columbia University
  59612. Lines: 19
  59613. Message-Id: <3c2ht1$4v2@apakabar.cc.columbia.edu>
  59614. References: <3bt2o2$1s5@infomatch.com> <3bvcmd$m37@apakabar.cc.columbia.edu> <3c26rv$8jv@mars.mcs.com>
  59615. Nntp-Posting-Host: watsun.cc.columbia.edu
  59616. Keywords: telnet kermit
  59617. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  59618.  
  59619. In article <3c26rv$8jv@mars.mcs.com>, Leslie Mikesell <les@MCS.COM> wrote:
  59620. >In article <3bvcmd$m37@apakabar.cc.columbia.edu>,
  59621.  
  59622. >Is it possible to use unix kermit to telnet into an OS/2 machine, start
  59623. >up kermit there and transfer files over the connection?  I know you
  59624. >can do the reverse, and you can do it to DOS machines if you leave
  59625. >a kermit running in server mode.
  59626. >
  59627.  
  59628. Not at the current time.  Its not a limitation of Kermit but of the telnet 
  59629. server software on OS/2.  I am attempting to work with IBM to address the 
  59630. issue.  It does require some significant code changes (and optimizations) 
  59631. to enable it to work.
  59632.  
  59633.  
  59634. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  59635. "C-Kermit: available on more platforms than any other communications software."
  59636. "Kermit FTP: sending files whenever and wherever they are needed."
  59637. *NEW* OS/2 version 5A(190): ftp kermit.columbia.edu /kermit/archives/ckoker.zip 
  59638.  
  59639. From news@columbia.edu Tue Dec  6 01:52:16 1994
  59640. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23854
  59641.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 6 Dec 1994 18:51:01 -0500
  59642. Received: by apakabar.cc.columbia.edu id AA08736
  59643.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 6 Dec 1994 18:50:59 -0500
  59644. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!hookup!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  59645. From: jrd@cc.usu.edu (Joe Doupnik)
  59646. Newsgroups: comp.protocols.kermit.misc
  59647. Subject: Re: Kermit 3.14-beta 14 and vt220 non-erasable characters
  59648. Message-Id: <1994Dec6.075216.34631@cc.usu.edu>
  59649. Date: 6 Dec 94 07:52:16 MDT
  59650. References: <V9zukSng1OX5073yn@panix.com>
  59651. Organization: Utah State University
  59652. Lines: 19
  59653. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  59654.  
  59655. In article <V9zukSng1OX5073yn@panix.com>, ami@panix.com (Ami Bar-Yadin) writes:
  59656. > There is a problem with the vt220 emulation of MS-DOS Kermit 3.14.
  59657. > I downloaded the beta 14 version, specifically to test the feature
  59658. > which DEC refers to as "non-erasable characters".
  59659. > I prepared a small unix shell script to send the escape-sequences
  59660. > and tested the response in Kermit and in Crosstalk mk4.
  59661. > ---snip---
  59662. > #!/usr/bin/ksh
  59663. > fg="\033[2\"q"
  59664. > bk="\033[1\"q"
  59665. > cf="\033[?2J"
  59666. > echo "${fg}foreground${bk}background${fg}foreground${bk}background${fg}${cf}"
  59667. ----------
  59668.     Correct. And it's fixed in beta-15. That beta is accumulating last
  59669. minute bug reports and will be issued shortly.
  59670.     Thanks,
  59671.     Joe D.
  59672.  
  59673. From news@columbia.edu Tue Dec  6 21:52:07 1994
  59674. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26390
  59675.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 6 Dec 1994 19:40:40 -0500
  59676. Received: by apakabar.cc.columbia.edu id AA13328
  59677.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 6 Dec 1994 19:40:39 -0500
  59678. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news.sprintlink.net!sundog.tiac.net!max.tiac.net!ciaraldi
  59679. From: ciaraldi@max.tiac.net (Michael Ciaraldi)
  59680. Newsgroups: comp.protocols.kermit.misc
  59681. Subject: Flow Control in MS-DOS Kermit 3.14
  59682. Date: 6 Dec 1994 21:52:07 GMT
  59683. Organization: The Internet Access Company
  59684. Lines: 60
  59685. Message-Id: <3c2me7$d29@sundog.tiac.net>
  59686. Nntp-Posting-Host: max.tiac.net
  59687. Summary: How does flow control work?
  59688. Keywords: MS-DOS Flow Control
  59689. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  59690.  
  59691. Could I get an explanation of how flow control works in MS-DOS Kermit 3.14?
  59692. I've read the MS-DOS Kermit book and the KERMIT.UPD file, but they
  59693. only tell you that you can set flow control to NONE, XON/XOFF, and RTS/CTS,
  59694. and that the XON/XOFF can be set separately for ingoing and outgoing data.
  59695. The documentation does not give any detail beyond that.
  59696.  
  59697. I'm especially interested in XON/XOFF.
  59698. Here are my questions:
  59699.  
  59700. 1) Does "ingoing" mean from the host into the serial port of the PC
  59701. and then into Kermit, and does "outgoing" mean from Kermit out
  59702. the serial port to the host?
  59703.  
  59704. 2) Is flow control in Kermit supposed to  work the same during
  59705. terminal emulation as during Kermit file transfer?
  59706. And is it the same during TRANSMIT?
  59707.  
  59708. 3) What is the correct setting to have Kermit pass any ^S and ^Q
  59709. characters on to the host, without further processing?
  59710. This would emulate a terminal that implements no flow control at all.
  59711.  
  59712. 4) What is the correct setting to have Kermit freeze the screen when
  59713. the user types ^S, and unfreeze it when the user types ^Q,
  59714. but not send the ^S and ^Q to the host?
  59715.  
  59716. 5) What is the correct setting to have Kermit freeze the screen when
  59717. the user types ^S, and unfreeze it when the user types ^Q,
  59718. but also send the ^S and ^Q to the host?
  59719. This would emulate a real VT-100, I think.
  59720.  
  59721. 6) What is the correct setting to have Kermit send a ^S to the host
  59722. if the host is sending data faster than Kermit can process it,
  59723. then send a ^Q when Kermit can again process new data?
  59724. This is also the way a real VT-100 works.
  59725. In this mode, what is the maximum number of characters the
  59726. host can send after Kermit sends the ^S, without Kermit losing any?
  59727.  
  59728. 7) What is the correct setting to have Kermit recognize a ^S sent from
  59729. the host, then not send any data to the host until the host 
  59730. sends a ~Q? In this mode, how many characters can the user
  59731. type without Kermit losing any?
  59732.  
  59733. 8) Suppose Kermit is doing a TRANSMIT without PROMPT, so that it is
  59734. just sending the contents of a file out the serial port.
  59735. What is the setting to have Kermit recognize a ^S from the host
  59736. as a signal to not send any more data, then resume sending
  59737. when the host sends a ^Q?
  59738.  
  59739. 9) Is all this documented somewhere? If so, I will certainly feel foolish
  59740. for having missed it.
  59741.  
  59742. 10) If I want to see how this is implemented, where is it handled
  59743. in the source code?
  59744.  
  59745. Thanks for your help in this matter.
  59746.  
  59747. --Mike Ciaraldi
  59748.  
  59749.  
  59750.  
  59751.  
  59752. From news@columbia.edu Wed Dec  7 03:45:17 1994
  59753. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05663
  59754.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 7 Dec 1994 06:44:33 -0500
  59755. Received: by apakabar.cc.columbia.edu id AA27012
  59756.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 7 Dec 1994 06:44:31 -0500
  59757. Newsgroups: comp.protocols.kermit.misc
  59758. Path: news.columbia.edu!sol.ctr.columbia.edu!news.moneng.mei.com!hookup!swrinde!gatech!nntp.msstate.edu!olivea!news.hal.COM!halsoft.com!netcomsv!torii!ibm.mtsac.edu!1CMC3466
  59759. From: 1CMC3466@ibm.mtsac.edu (Curtiss Cicco)
  59760. Subject: Kermit unable to work with COM4
  59761. Message-Id: <17084115D3.1CMC3466@ibm.mtsac.edu>
  59762. Sender: usenet@triple-i.com
  59763. Nntp-Posting-Host: 140.144.202.50
  59764. Organization: Mt. San Antonio College
  59765. X-Newsreader: NNR/VM S_1.3.2
  59766. Date: Wed, 7 Dec 1994 03:45:17 GMT
  59767. Lines: 10
  59768. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  59769.  
  59770. Kermit is unable to work with my new 14.4 modem, I have tracedthe
  59771. problemto the port my modem runs on. I changed the settings to re
  59772. flectthe com port I need to use, yet kermit still won't recognize
  59773. com4, I know the modem works properly because I was able to downl
  59774. oad using a different protocol. I download from a mainframe, so I
  59775. need to use kermit, currently I'm using 3.14 patch level 6, which
  59776. was working with my other modem at com1. Any ideas on how to fix
  59777. it to work with com4?
  59778.  
  59779. -CmC
  59780.  
  59781. From news@columbia.edu Wed Dec  7 15:02:12 1994
  59782. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01725
  59783.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 7 Dec 1994 10:02:16 -0500
  59784. Received: by apakabar.cc.columbia.edu id AA10739
  59785.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 7 Dec 1994 10:02:15 -0500
  59786. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  59787. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  59788. Newsgroups: comp.protocols.kermit.misc
  59789. Subject: Re: Kermit unable to work with COM4
  59790. Date: 7 Dec 1994 15:02:12 GMT
  59791. Organization: Columbia University
  59792. Lines: 14
  59793. Message-Id: <3c4ipk$afe@apakabar.cc.columbia.edu>
  59794. References: <17084115D3.1CMC3466@ibm.mtsac.edu>
  59795. Nntp-Posting-Host: watsun.cc.columbia.edu
  59796. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  59797.  
  59798. In article <17084115D3.1CMC3466@ibm.mtsac.edu>,
  59799. Curtiss Cicco <1CMC3466@ibm.mtsac.edu> wrote:
  59800. >Kermit is unable to work with my new 14.4 modem, I have tracedthe
  59801. >problemto the port my modem runs on. I changed the settings to re
  59802. >flectthe com port I need to use, yet kermit still won't recognize
  59803. >com4 ...
  59804. >
  59805. See the section "Nonstandard Communication Ports" in the user manual,
  59806. "Using MS-DOS Kermit", page 207.
  59807.  
  59808. For greater detail, read section 6 of the KERMIT.BWR file that comes
  59809. in the top-level directory of the ZIP file.
  59810.  
  59811. - Frank
  59812.  
  59813. From news@columbia.edu Tue Dec  6 22:22:14 1994
  59814. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09579
  59815.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 7 Dec 1994 12:03:31 -0500
  59816. Received: by apakabar.cc.columbia.edu id AA22188
  59817.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 7 Dec 1994 12:03:29 -0500
  59818. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!pipex!sunic!news.uni-c.dk!news.daimi.aau.dk!vki68!eks
  59819. From: eks@vki68.aar-vki.dk (Eigil Krogh Sorensen)
  59820. Newsgroups: comp.protocols.kermit.misc
  59821. Subject: [Q] X/Y/Z modem from kermit - Possible ?
  59822. Date: 6 Dec 1994 22:22:14 GMT
  59823. Organization: Water Quality Institute, Science Park Aarhus.
  59824. Lines: 25
  59825. Message-Id: <3c2o6m$j48@belfort.daimi.aau.dk>
  59826. Nntp-Posting-Host: vki68.aar-vki.dk
  59827. Summary: Is it possible to start X/Y/Z modem transfer from within kermit ?
  59828. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  59829.  
  59830. Here in Denmark BBSs very often don't have kermit comm. facility.
  59831. Normally they have the X/Y/Z modem "thing" only.
  59832.  
  59833. Is it possible to initiate a X/Y/Z modem transfer from within a
  59834. kermit "session" ? If so is there some special programmes I need
  59835. to install on the system ?
  59836.  
  59837. The system(s) we are using kermit on are:
  59838.  
  59839. SCO ODT 3.0, Motorola sys/V r36 (and dos/Windows).
  59840.  
  59841. Thanks in advance
  59842.  
  59843.  
  59844.  -- Eigil Krogh Sorensen
  59845.  
  59846. -------------------------------------------------------------------------
  59847. VKI                     !                                !
  59848. Water Quality Institute !Phone:                          !E-mail:
  59849. Science Park Aarhus     ! +45  86 20 20 00 or            !
  59850. 10, Gustav Wieds Vej    ! +45   86 20 20 11  local  2114 ! eks@aar-vki.dk
  59851. DK-8000 Aarhus C        !Fax:                            !
  59852. DENMARK.                ! +45   86 19 75 11              !
  59853. -------------------------------------------------------------------------
  59854.  
  59855.  
  59856. From news@columbia.edu Thu Dec  8 02:39:12 1994
  59857. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27601
  59858.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 8 Dec 1994 13:08:51 -0500
  59859. Received: by apakabar.cc.columbia.edu id AA28120
  59860.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 8 Dec 1994 13:08:49 -0500
  59861. Path: news.columbia.edu!panix!zip.eecs.umich.edu!newsxfer.itd.umich.edu!gatech!howland.reston.ans.net!agate!dog.ee.lbl.gov!news.cs.utah.edu!cc.usu.edu!jrd
  59862. From: jrd@cc.usu.edu (Joe Doupnik)
  59863. Newsgroups: comp.protocols.kermit.misc
  59864. Subject: Re: Divide Overflow
  59865. Message-Id: <1994Dec8.083912.34887@cc.usu.edu>
  59866. Date: 8 Dec 94 08:39:12 MDT
  59867. References: <3c5ea0$7fo@ccs-sparc2.queensu.ca>
  59868. Organization: Utah State University
  59869. Lines: 12
  59870. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  59871.  
  59872. In article <3c5ea0$7fo@ccs-sparc2.queensu.ca>, mike@post.queensu.ca (Mike Smith) writes:
  59873. > The February 1994 edition of mskerm.bwr includes some comments about 
  59874. > a divide overflow error when running under Windows.  These comments are
  59875. > omitted from the beware file in the Beta-14 distribution.  Is this
  59876. > because MSK3.14 is no longer susceptible to this problem?  I ask because
  59877. > I'm getting reports of the problem from a 3.13 user and it would be nice
  59878. > to give him the good news that the problem is fixed in the next release.
  59879. --------
  59880.     It's not a problem in MSK 3.14. But MSK 3.14 is not available for
  59881. general distribution yet; it is still in beta.
  59882.     Joe D.
  59883.  
  59884. From news@columbia.edu Thu Dec  8 20:21:05 1994
  59885. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02702
  59886.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 9 Dec 1994 11:52:16 -0500
  59887. Received: by apakabar.cc.columbia.edu id AA19679
  59888.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 9 Dec 1994 11:52:13 -0500
  59889. Newsgroups: comp.os.ms-windows.apps.comm,comp.os.ms-windows.programmer.misc,comp.os.ms-windows.programmer.controls,comp.protocols.kermit.misc,comp.lang.c++
  59890. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!pipex!uunet!world!progshop
  59891. From: progshop@world.std.com (Programmer Shop)
  59892. Subject: Re: Communication libraries for MS-Windows development?
  59893. Message-Id: <D0IDv5.B0J@world.std.com>
  59894. Keywords: MS-Windows Kermit C++
  59895. Organization: The World Public Access UNIX, Brookline, MA
  59896. References: <3c6kcf$254@peippo.cs.tut.fi>
  59897. Date: Thu, 8 Dec 1994 20:21:05 GMT
  59898. Lines: 39
  59899. Xref: news.columbia.edu comp.os.ms-windows.apps.comm:3799 comp.os.ms-windows.programmer.misc:52014 comp.os.ms-windows.programmer.controls:3724 comp.protocols.kermit.misc:1314 comp.lang.c++:96621
  59900. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  59901.  
  59902. t130313@cs.tut.fi (Tolonen Pasi) writes:
  59903.  
  59904.  
  59905. >Dear Sirs,
  59906.  
  59907. >I am looking for communications library for MS-Windows development.
  59908. >The Must for me is Kermit - the package I'm searching should fully
  59909. >(or as fully as possible) implement Kermit. So far I have found 
  59910. >Greenleaf Comm++ that implements only Kermit file transfer protocol.
  59911. >I am going to use Visual C++ for coding, so it should be supported
  59912. >by the package.
  59913.  
  59914. >If you have any suggestions, ideas, tests or anything concerning the
  59915. >following matters, please share them with me!
  59916.  
  59917. >- Kermit under MS-Windows
  59918. >- communication libraries for MS-Windows
  59919.  
  59920. Greenleaf is definately an option. CommLib (and Comm++) supports Kermit 
  59921. with compression and eigth bit prefixing. One of our developers have have 
  59922. been using CommLib for several version (since 4.0) and have had great 
  59923. success and good support. Other Comm libs that support Kermit that I know 
  59924. of are CrystalCOMM for Windows by Crystal Software and possibly MagnaCOMM 
  59925. by SofDesign. Sorry, no shareware.
  59926.  
  59927. -sk
  59928.  
  59929. >Sincerely,
  59930.  
  59931. >Pasi
  59932.  
  59933.  
  59934.  
  59935.  
  59936.  
  59937. >-- 
  59938. > Pasi Tolonen           Partolantie as.308   Tel: +358-(9)31-660003  
  59939. > t130313@cs.tut.fi      33950  PIRKKALA      Tel: +358-(9)49-675474  
  59940. > Tampere Un. of Tech.   FINLAND / EUROPE     Fax: +358-(9)31-660003  
  59941.  
  59942. From news@columbia.edu Thu Dec  8 20:44:22 1994
  59943. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06663
  59944.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 9 Dec 1994 12:46:05 -0500
  59945. Received: by apakabar.cc.columbia.edu id AA24902
  59946.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 9 Dec 1994 12:46:03 -0500
  59947. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!vixen.cso.uiuc.edu!newsrelay.iastate.edu!news.iastate.edu!collins
  59948. From: collins@iastate.edu (Gene Collins)
  59949. Newsgroups: comp.protocols.kermit.misc
  59950. Subject: Re: Problem with File Xfer (Binary vs Text) ??
  59951. Date: 8 Dec 1994 20:44:22 GMT
  59952. Organization: Iowa State University, Ames, IA
  59953. Lines: 28
  59954. Message-Id: <3c7r76$bn9@news.iastate.edu>
  59955. References: <D06y9C.8p9@nntpa.cb.att.com> <3bvb54$jmd@apakabar.cc.columbia.edu>
  59956. Nntp-Posting-Host: opus2.cc.iastate.edu
  59957. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  59958.  
  59959. In article <3bvb54$jmd@apakabar.cc.columbia.edu> fdc@watsun.cc.columbia.edu (Frank da Cruz) writes:
  59960. >In article <D06y9C.8p9@nntpa.cb.att.com>,
  59961. >-M.BAKER <mrbaker@hodcs.ho.att.com> wrote:
  59962. >>I believe that I am having a problem with file transfer between my PC
  59963. >>and our UNIX system.  Here are the particulars:
  59964. >>
  59965. >>PC running MS-Kermit 3.14/Beta 12 (14 Nov 94)
  59966. >>UNIX running C-Kermit 5A(190) for Solaris 2.x (4 Oct 94)
  59967. >>
  59968. >>When I use pcsend to download files from UNIX to the PC, everything works
  59969. >>fine... But when I use pcget to upload files from PC to UNIX, every file 
  59970. >>gets transferred as "Binary" even if I want "Text" type transfer.
  59971. >>
  59972. >This was a bug in Beta-12, which should be fixed in the current beta
  59973. >release, Beta-14.
  59974. >
  59975. >- Frank
  59976. Well, unfortunately, I seem to be having a similar problem
  59977. downloading zip files from a bbs, specifically a Wildcat bbs.  I
  59978. had set file type binary on the pc before starting the download. 
  59979. The transfer seemed to take place ok, no error messages etc. 
  59980. When I tried to unzip the files, I was told that the files were
  59981. damaged.  This is the same procedure I've used several times with
  59982. KERMIT 3.13.  I'm currently using beta 14 of 3.14.  Any
  59983. suggestions?  Thanks.
  59984.  
  59985. Gene Collins (collins@iastate.edu)
  59986.  
  59987.  
  59988. From news@columbia.edu Fri Dec  9 18:46:22 1994
  59989. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10796
  59990.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 9 Dec 1994 13:46:28 -0500
  59991. Received: by apakabar.cc.columbia.edu id AA01598
  59992.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 9 Dec 1994 13:46:26 -0500
  59993. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  59994. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  59995. Newsgroups: comp.protocols.kermit.misc
  59996. Subject: Re: Problem with File Xfer (Binary vs Text) ??
  59997. Date: 9 Dec 1994 18:46:22 GMT
  59998. Organization: Columbia University
  59999. Lines: 21
  60000. Message-Id: <3ca8lu$1hs@apakabar.cc.columbia.edu>
  60001. References: <D06y9C.8p9@nntpa.cb.att.com> <3bvb54$jmd@apakabar.cc.columbia.edu> <3c7r76$bn9@news.iastate.edu>
  60002. Nntp-Posting-Host: watsun.cc.columbia.edu
  60003. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  60004.  
  60005. In article <3c7r76$bn9@news.iastate.edu>,
  60006. Gene Collins <collins@iastate.edu> wrote:
  60007. >...I seem to be having a ... problem downloading zip files from a
  60008. >bbs, specifically a Wildcat bbs.  I had set file type binary on
  60009. >the pc before starting the download.  The transfer seemed to take
  60010. >place ok, no error messages etc.  When I tried to unzip the
  60011. >files, I was told that the files were damaged.  This is the same
  60012. >procedure I've used several times with KERMIT 3.13.  I'm
  60013. >currently using beta 14 of 3.14.  Any suggestions?  Thanks.
  60014. >
  60015. Only to make sure that the BBS Kermit software, whatever it is, has
  60016. also been told to send the file in binary mode.  In general, it is
  60017. the *file sender* that determines the transfer mode.  It sounds as
  60018. if, in this case, the BBS was sending the ZIP file in text mode.  A
  60019. good tipoff would be if the transferred file was bigger than the
  60020. original file, and every carriage return in the transferred file
  60021. was followed by a linefeed.
  60022.  
  60023. - Frank
  60024.  
  60025.  
  60026.  
  60027. From news@columbia.edu Thu Dec  8 19:17:39 1994
  60028. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20806
  60029.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 9 Dec 1994 16:02:14 -0500
  60030. Received: by apakabar.cc.columbia.edu id AA14811
  60031.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 9 Dec 1994 16:02:12 -0500
  60032. Path: news.columbia.edu!sol.ctr.columbia.edu!news.msfc.nasa.gov!cs.utk.edu!stc06.CTD.ORNL.GOV!fnnews.fnal.gov!uwm.edu!caen!msunews!harbinger.cc.monash.edu.au!yarrina.connect.com.au!adam.com.au!adam.com.au!not-for-mail
  60033. From: mnits@adam.com.au (Mayne Nickless)
  60034. Newsgroups: comp.protocols.kermit.misc
  60035. Subject: apology
  60036. Date: 9 Dec 1994 05:47:39 +1030
  60037. Organization: ADAM Pty Ltd.
  60038. Lines: 6
  60039. Message-Id: <3c7m4j$duk@adam.com.au>
  60040. Nntp-Posting-Host: eve.adam.com.au
  60041. X-Newsreader: TIN [version 1.2 PL2]
  60042. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  60043.  
  60044. sorry about an article apparently posted 3 times - we've had a news 
  60045. problem here
  60046.  
  60047. Andrew Dunstan
  60048. Mayne Nickless
  60049.  
  60050.  
  60051. From news@columbia.edu Fri Dec  9 16:05:03 1994
  60052. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27310
  60053.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 9 Dec 1994 17:54:08 -0500
  60054. Received: by apakabar.cc.columbia.edu id AA25528
  60055.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 9 Dec 1994 17:54:06 -0500
  60056. Newsgroups: comp.protocols.kermit.misc
  60057. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!ee.und.ac.za!psgrain!agora!agora.rdrop.com!tomg
  60058. From: tomg@agora.rdrop.com (Tom Glover)
  60059. Subject: Scripts via Telnet
  60060. X-Newsreader: NN version 6.5.0 #9 (NOV)
  60061. Sender: news@agora.rdrop.com (USENET News)
  60062. Nntp-Posting-Host: agora.rdrop.com
  60063. Organization: RainDrop Laboratories
  60064. Message-Id: <D0JwoF.LHL@agora.rdrop.com>
  60065. Date: Fri, 9 Dec 1994 16:05:03 GMT
  60066. Lines: 15
  60067. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  60068.  
  60069. I realize that this has probably been answered before but I am a novice with
  60070. kermit.
  60071.  
  60072. Is it possible to script via telnet (e.g. login, transfer file, logout). I have
  60073. had good success doing this via serial comm. lines but can get nowhere trying
  60074. to do it with a telnet session.
  60075.  
  60076. Using C-Kermit 5A for SunOS 4.1
  60077.  
  60078. Thanks in advance for any help
  60079.  
  60080.  
  60081. Email - tomg@boiled.egg.com
  60082.  
  60083.  
  60084.  
  60085. From news@columbia.edu Sat Dec 10 00:04:26 1994
  60086. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01089
  60087.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 9 Dec 1994 19:04:32 -0500
  60088. Received: by apakabar.cc.columbia.edu id AA00784
  60089.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 9 Dec 1994 19:04:29 -0500
  60090. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  60091. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  60092. Newsgroups: comp.protocols.kermit.misc
  60093. Subject: Re: Scripts via Telnet
  60094. Date: 10 Dec 1994 00:04:26 GMT
  60095. Organization: Columbia University
  60096. Lines: 24
  60097. Message-Id: <3caraa$oe@apakabar.cc.columbia.edu>
  60098. References: <D0JwoF.LHL@agora.rdrop.com>
  60099. Nntp-Posting-Host: watsun.cc.columbia.edu
  60100. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  60101.  
  60102. In article <D0JwoF.LHL@agora.rdrop.com>,
  60103. Tom Glover <tomg@agora.rdrop.com> wrote:
  60104. >I realize that this has probably been answered before but I am a novice with
  60105. >kermit.
  60106. >
  60107. >Is it possible to script via telnet (e.g. login, transfer file, logout). I have
  60108. >had good success doing this via serial comm. lines but can get nowhere trying
  60109. >to do it with a telnet session.
  60110.  
  60111.  
  60112. Of course it is.  Instead of using TELNET <host> in your script, use
  60113.  
  60114.     SET NETWORK TCP/IP
  60115.     SET HOST <host>
  60116.     whatever your login requires
  60117.     transfer files
  60118.     logout
  60119.     SET HOST
  60120.  
  60121. As long as you don't enter CONNECT mode, you can run scripts.
  60122. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  60123. "C-Kermit: available on more platforms than any other communications software."
  60124. "Kermit FTP: sending files whenever and wherever they are needed."
  60125. *NEW* OS/2 version 5A(190): ftp kermit.columbia.edu /kermit/archives/ckoker.zip 
  60126.  
  60127. From news@columbia.edu Fri Dec  9 05:26:23 1994
  60128. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03442
  60129.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 9 Dec 1994 20:04:35 -0500
  60130. Received: by apakabar.cc.columbia.edu id AA04799
  60131.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 9 Dec 1994 20:04:32 -0500
  60132. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!udel!gatech!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  60133. From: jrd@cc.usu.edu (Joe Doupnik)
  60134. Newsgroups: comp.protocols.kermit.misc
  60135. Subject: Re: Arcnet Packet Driver?
  60136. Message-Id: <1994Dec9.112623.34998@cc.usu.edu>
  60137. Date: 9 Dec 94 11:26:23 MDT
  60138. References: <3c96mj$bej@cello.gina.calstate.edu>
  60139. Organization: Utah State University
  60140. Lines: 18
  60141. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  60142.  
  60143. In article <3c96mj$bej@cello.gina.calstate.edu>, jpowell@cello.gina.calstate.edu (Larry Powell) writes:
  60144. >    Does MSkermit support the use of Arcnet packet drivers? 
  60145. >    The reason I ask is that the docs with the packet drivers say that
  60146. > to use arcnet, the client software must support it (arcnet) specifically.
  60147. > They make mention of KA9Q being the only known client to support it.
  60148. >    I use arcnet with Novell which works fine. I also tested kermit with
  60149. > the Netbios that comes with Novell (Lite) and it works also. I tried a
  60150. > brief test of the packet drivers ARCNET and ARCETHER and they both failed
  60151. > to initialize and/or self test.
  60152. >    Thanks,
  60153. > --Larry Powell   jpowell@cello.gina.calstate.edu, lpowell@eis.calstate.edu
  60154. ---------------
  60155.     As the documentation says, MSK supports Ethernet (DIX/Ethernet_II/
  60156. BlueBook) and SLIP Packet Drivers, as well as working directly over ODI
  60157. for these and other lan topologies. Be sure to use MSK 3.14 beta or later
  60158. (when there is a later) for TCP/IP over Arcnet ODI drivers due to an ODI
  60159. ambiguitity problem.
  60160.     Joe D.
  60161.  
  60162. From news@columbia.edu Thu Dec  8 23:16:28 1994
  60163. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04035
  60164.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 9 Dec 1994 20:17:34 -0500
  60165. Received: by apakabar.cc.columbia.edu id AA05767
  60166.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 9 Dec 1994 20:17:32 -0500
  60167. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!news.alpha.net!uwm.edu!vixen.cso.uiuc.edu!howland.reston.ans.net!pipex!uunet!ulowell.uml.edu!newshost.fiu.edu!not-for-mail
  60168. From: michaell@solix.fiu.edu (Mike R. Langevin)
  60169. Newsgroups: comp.protocols.kermit.misc
  60170. Organization: Florida International University
  60171. Message-Id: <-3c7fjm$4n9@newshost.fiu.edu>
  60172. Control: cancel <3c7fjm$4n9@newshost.fiu.edu>
  60173. X-Newsreader: TIN [version 1.2 PL2]
  60174. Subject: cmsg cancel <3c7fjm$4n9@newshost.fiu.edu>
  60175. Date: Thu, 8 Dec 1994 23:16:28 GMT
  60176. Approved: news@newshost.fiu.edu
  60177. Lines: 1
  60178. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  60179.  
  60180. cancel <3c7fjm$4n9@newshost.fiu.edu>
  60181.  
  60182. From news@columbia.edu Thu Dec  8 22:03:18 1994
  60183. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05058
  60184.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 9 Dec 1994 20:44:21 -0500
  60185. Received: by apakabar.cc.columbia.edu id AA07354
  60186.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 9 Dec 1994 20:44:20 -0500
  60187. Newsgroups: comp.os.ms-windows.apps.comm,comp.os.ms-windows.programmer.misc,comp.os.ms-windows.programmer.controls,comp.protocols.kermit.misc,comp.lang.c++
  60188. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!math.ohio-state.edu!caen!news.tc.cornell.edu!newsserver.sdsc.edu!nic-nac.CSU.net!charnel.ecst.csuchico.edu!csusac!csus.edu!netcom.com!jnavas
  60189. From: jnavas@netcom.com (John Navas)
  60190. Subject: Re: Communication libraries for MS-Windows development?
  60191. Message-Id: <jnavasD0IILI.LqL@netcom.com>
  60192. Followup-To: comp.os.ms-windows.apps.comm,comp.os.ms-windows.programmer.misc,comp.os.ms-windows.programmer.controls,comp.protocols.kermit.misc,comp.lang.c++
  60193. Organization: The Navas Group, Dublin, CA
  60194. X-Newsreader: TIN [version 1.2 PL2]
  60195. References: <3c6kcf$254@peippo.cs.tut.fi>
  60196. Date: Thu, 8 Dec 1994 22:03:18 GMT
  60197. Lines: 23
  60198. Xref: news.columbia.edu comp.os.ms-windows.apps.comm:3809 comp.os.ms-windows.programmer.misc:52063 comp.os.ms-windows.programmer.controls:3736 comp.protocols.kermit.misc:1321 comp.lang.c++:96686
  60199. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  60200.  
  60201. Tolonen Pasi (t130313@cs.tut.fi) wrote:
  60202.  
  60203. > Dear Sirs,
  60204.  
  60205. > I am looking for communications library for MS-Windows development.
  60206. > The Must for me is Kermit - the package I'm searching should fully
  60207. > (or as fully as possible) implement Kermit. So far I have found 
  60208. > Greenleaf Comm++ that implements only Kermit file transfer protocol.
  60209. > I am going to use Visual C++ for coding, so it should be supported
  60210. > by the package.
  60211.  
  60212. > If you have any suggestions, ideas, tests or anything concerning the
  60213. > following matters, please share them with me!
  60214.  
  60215. > - Kermit under MS-Windows
  60216. > - communication libraries for MS-Windows
  60217.  
  60218.  
  60219. Check ftp://rainbow.rmii.com/pub2/turbopower
  60220.  
  60221. --
  60222. Best regards,
  60223. John  <JNavas@Netcom.com>
  60224.  
  60225. From news@columbia.edu Tue Dec  6 08:03:08 1994
  60226. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08495
  60227.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 9 Dec 1994 22:21:42 -0500
  60228. Received: by apakabar.cc.columbia.edu id AA13522
  60229.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 9 Dec 1994 22:21:40 -0500
  60230. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!hookup!swrinde!howland.reston.ans.net!torn!news.ccs.queensu.ca!qucdn!smithm
  60231. Organization: Queen's University at Kingston
  60232. Date: Tue, 6 Dec 1994 13:03:08 EST
  60233. From: Mike Smith <SMITHM@QUCDN.QueensU.CA>
  60234. Message-Id: <94340.130308SMITHM@QUCDN.QueensU.CA>
  60235. Newsgroups: comp.protocols.kermit.misc
  60236. Subject: Intermittent Problem with Kermit Under Windows
  60237. Lines: 16
  60238. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  60239.  
  60240. I've got a user who complains that he gets the error
  60241.  
  60242.    ?Cannot use RTS/CTS on non-UART ports
  60243.  
  60244. when running Kermit under Windows.  The confusing thing is that when this
  60245. happens he typically quits Kermit and tries again with success.  Can anyone
  60246. suggest what it is I should be looking for in his Windows configuration?
  60247. Also, there are apparently times when the initial attempt succeeds if that
  60248. is important.
  60249.  
  60250.  Mike Smith                                  mike@ccs.queensu.ca
  60251.  Queen's University                          Michael.D.Smith@QueensU.CA
  60252.  Computing and Communications Services       (613) 545-2024
  60253.  
  60254.  
  60255.  
  60256.  
  60257. From news@columbia.edu Sat Dec 10 04:47:41 1994
  60258. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11829
  60259.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 9 Dec 1994 23:47:44 -0500
  60260. Received: by apakabar.cc.columbia.edu id AA19286
  60261.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 9 Dec 1994 23:47:43 -0500
  60262. Path: news.columbia.edu!jambo.cc.columbia.edu!jt50
  60263. From: jt50@columbia.edu (Jess  Ting)
  60264. Newsgroups: comp.protocols.kermit.misc
  60265. Subject: Re: Intermittent Problem with Kermit Under Windows
  60266. Date: 10 Dec 1994 04:47:41 GMT
  60267. Organization: Columbia University
  60268. Lines: 9
  60269. Message-Id: <3cbbtd$iqi@apakabar.cc.columbia.edu>
  60270. References: <94340.130308SMITHM@qucdn.queensu.ca>
  60271. Nntp-Posting-Host: jambo.cc.columbia.edu
  60272. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  60273.  
  60274.  
  60275. I've had exactly the same problem. What I've noticed is that when
  60276. the modem is on BEFORE I start Windows, Kermit loads ok, but when 
  60277. I turn on the modem only AFTER Windows has already started, I need
  60278. to quit Kermit and restart it.
  60279.  
  60280. In any event, the problem is merely a nuisance, as Kermit functions
  60281. perfectly well after it is restarted.
  60282.  
  60283.  
  60284. From news@columbia.edu Fri Dec  9 14:17:50 1994
  60285. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12039
  60286.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 9 Dec 1994 23:55:19 -0500
  60287. Received: by apakabar.cc.columbia.edu id AA19741
  60288.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 9 Dec 1994 23:55:17 -0500
  60289. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  60290. From: jrd@cc.usu.edu (Joe Doupnik)
  60291. Newsgroups: comp.protocols.kermit.misc
  60292. Subject: Re: Flow Control in MS-DOS Kermit 3.14
  60293. Message-Id: <1994Dec9.201750.35072@cc.usu.edu>
  60294. Date: 9 Dec 94 20:17:50 MDT
  60295. References: <3c2me7$d29@sundog.tiac.net> <1994Dec7.095922.34783@cc.usu.edu> <3c7enb$atf@sundog.tiac.net>
  60296. Organization: Utah State University
  60297. Lines: 53
  60298. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  60299.  
  60300. In article <3c7enb$atf@sundog.tiac.net>, ciaraldi@max.tiac.net (Michael Ciaraldi) writes:
  60301. > Dear Joe,
  60302. > These (4 and 5) are two different cases, and they are different from 3.
  60303. > Each may be appropriate in certain situations, and I wanted to find
  60304. > out if Kermit supported them.
  60305. > Consider a VAX with a serial card that has large output buffers, as many do.
  60306. > If a terminal (or Kermit emulating one) just passes through
  60307. > ^S and ^Q characters (case 3), what happens when the user hits a ^S (XOFF)?
  60308. > It gets sent to the host. The host CPU detects it and stops sending data.
  60309. > However, there may be several thousand characters still in the 
  60310. > output buffer of the serial card, and there is no mechanism for the
  60311. > host CPU to notify the card to stop sending. So, even though
  60312. > the user has hit ^S, several more pages of data appear on the screen
  60313. > and scroll off the top of the screen. I've seen this happen many times.
  60314. > Fortunately, MS-DOS Kermit has a screen scrollback buffer,
  60315. > but this is still a problem for most users
  60316. > (those who are not using Kermit, of course).
  60317. > In case 4 and 5, when the user hits ^S, Kermit would stop sending
  60318. > updates to the screen. It would just accumulate any incoming
  60319. > data from the host into a buffer, then send it to the screen later
  60320. > when the user hits ^Q.  The difference between 4 and 5 is that
  60321. > in 5 the host also gets notified, so there is a chance that the buffer 
  60322. > will not overflow.
  60323.  
  60324.     In the user's manual is the keyboard verb \kholdscrn. That is
  60325. equivalent to DEC's HoldScreen key.
  60326.     Accumulating into a buffer is what triggers almost all flow
  60327. control activity: it reaches a high or low water mark. For snappy
  60328. flow control response reduce the capacity of the comms channel. Too
  60329. much storage capacity will result in lost bytes, with no way to prevent
  60330. that from occuring (except buy a faster PC). 
  60331.      
  60332.  
  60333. > On case 8, I asked because I was doing some tests on Kermit
  60334. > last week and found what I thought was funny behavior.
  60335. > I wired my PC to a Unix machine's serial port and used
  60336. > another comm program on the Unix machine to talk to that port.
  60337. > The Unix machine was set for no flow control.
  60338. > I gave the command SET FLOW XON to the PC Kermit,
  60339. > then did a TRANSMIT. The contents of the file started
  60340. > appearing in the window on my Unix machine.
  60341. > Then I hit a ^S on the Unix machine. The PC kept sending the file.
  60342. > Shouldn't Kermit have stopped sending the file until
  60343. > it received a ^Q?
  60344.     I have no idea what the Unix machine actually sent, if anything.
  60345. Tell MS-DOS Kermit SET DEBUG ON and enter Connect mode to debug the
  60346. Unix side. MSK should respond to the XOFF, and when it has something
  60347. to send while blocked it will wait about 8-10 seconds before breaking
  60348. through and sending (a deadlock prevention mechanism).
  60349.     Joe D. 
  60350.  
  60351. From news@columbia.edu Wed Dec  7 14:04:55 1994
  60352. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12173
  60353.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 9 Dec 1994 23:58:43 -0500
  60354. Received: by apakabar.cc.columbia.edu id AA19901
  60355.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 9 Dec 1994 23:58:42 -0500
  60356. Newsgroups: comp.protocols.kermit.misc
  60357. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!usenet.eel.ufl.edu!usenet.cis.ufl.edu!caen!hearst.acc.Virginia.EDU!murdoch!fulton.seas.Virginia.EDU!esh6h
  60358. From: esh6h@fulton.seas.Virginia.EDU (Erik Hatcher)
  60359. Subject: Re: Server side renames - still not solved!
  60360. Message-Id: <D0G1s8.CBo@murdoch.acc.Virginia.EDU>
  60361. Sender: usenet@murdoch.acc.Virginia.EDU
  60362. Organization: University of Virginia
  60363. References: <D0CyFn.4sv@murdoch.acc.virginia.edu> <3c2240$5uh@apakabar.cc.columbia.edu>
  60364. Date: Wed, 7 Dec 1994 14:04:55 GMT
  60365. Lines: 48
  60366. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  60367.  
  60368. In article <3c2240$5uh@apakabar.cc.columbia.edu>,
  60369. Jeffrey Altman <jaltman@watsun.cc.columbia.edu> wrote:
  60370. >Erik:
  60371. >
  60372. >The answer appears to be that at this time server side RENAME
  60373. >is not possible unless you lower the security barriers a bit
  60374. >which you do not want to do.
  60375.  
  60376. No I'm not willing to compromise our system security to
  60377. rename a file!  :)
  60378.  
  60379. >The only suggestion that I have for you is to perform the rename
  60380. >on the client before you send the file.  Or just send the file
  60381. >with the name is it supposed to the saved under from the very 
  60382. >start.
  60383. >
  60384. >SEND oldname newname
  60385. >
  60386. >has exactly the same result as 
  60387. >
  60388. >SEND oldname
  60389. >REMOTE RENAME oldname newname
  60390.  
  60391. But it is not "exactly" the same result, is it?
  60392.  
  60393. One creates a file called "newname" from the start.
  60394. The other only creates "newname" after the entire
  60395. file is successfully sent (assuming that REMOTE RENAME
  60396. isn't done "if failure").
  60397.  
  60398. The reason I want/need REMOTE RENAME is so that my
  60399. automatic process to pick up received files on the
  60400. remote end, doesn't try to pick up a file being sent
  60401. or not successfully sent.  It only picks up files
  60402. with the name REC_*.* and they are sent as SENDING_*.*.
  60403.  
  60404. Frank mentioned that he'll put it in the next version,
  60405. so I'm fine with that!  Thanks a million Frank!
  60406.  
  60407. BTW, not being pushy, but how often do new versions
  60408. get released?
  60409.  
  60410.     Erik
  60411. --
  60412. Erik Hatcher                           + "But every now and then we just have
  60413. http://fulton.seas.virginia.edu/~esh6h |  to howl with the wolves." 
  60414.                                        |        - Werner Heisenberg
  60415. ---------------------------------------+-------------------------------------
  60416.  
  60417. From news@columbia.edu Wed Dec  7 07:32:12 1994
  60418. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12822
  60419.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 10 Dec 1994 00:06:43 -0500
  60420. Received: by apakabar.cc.columbia.edu id AA20617
  60421.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 10 Dec 1994 00:06:42 -0500
  60422. Path: news.columbia.edu!sol.ctr.columbia.edu!math.ohio-state.edu!uwm.edu!cs.utexas.edu!swrinde!gatech!newsxfer.itd.umich.edu!gumby!wmichgw!x93aroor
  60423. From: x93aroor@wmich.edu
  60424. Newsgroups: comp.protocols.kermit.misc
  60425. Subject: Where is Kermit?
  60426. Message-Id: <1994Dec7.113212.25023@wmichgw>
  60427. Date: 7 Dec 94 11:32:12 EDT
  60428. Organization: Western Michigan University
  60429. Lines: 9
  60430. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  60431.  
  60432. Hi All,
  60433.      Does anybody know from where I could download the latest version of
  60434. kermit for
  60435. 1) MS-Dos
  60436. 2) Windows
  60437. 3) Vax/Vms
  60438. Thanks in advance
  60439. -Chandru
  60440.  
  60441.  
  60442. From news@columbia.edu Thu Dec  8 03:14:41 1994
  60443. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15842
  60444.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 10 Dec 1994 00:56:08 -0500
  60445. Received: by apakabar.cc.columbia.edu id AA24248
  60446.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 10 Dec 1994 00:56:06 -0500
  60447. Path: news.columbia.edu!sol.ctr.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!world!decwrl!tribune.usask.ca!canopus.cc.umanitoba.ca!lippens
  60448. From: lippens@access.mbnet.mb.ca (Rick Lippens)
  60449. Newsgroups: comp.protocols.kermit.misc
  60450. Subject: Kermit and Miss Piggy!
  60451. Date: 8 Dec 1994 03:14:41 GMT
  60452. Organization: The University of Manitoba
  60453. Lines: 6
  60454. Message-Id: <3c5tn1$qcp@canopus.cc.umanitoba.ca>
  60455. Nntp-Posting-Host: access.mbnet.mb.ca
  60456. Summary: Kermit and Miss Piggy!
  60457. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  60458.  
  60459.  
  60460. So, are Kermit and Miss Piggy still going out or what?  Just curious....
  60461.  
  60462.  
  60463. Jim Kirk
  60464.  
  60465.  
  60466. From news@columbia.edu Sat Dec 10 04:59:58 1994
  60467. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16322
  60468.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 10 Dec 1994 01:04:51 -0500
  60469. Received: by apakabar.cc.columbia.edu id AA24766
  60470.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 10 Dec 1994 01:04:49 -0500
  60471. Newsgroups: comp.protocols.kermit.misc
  60472. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!swrinde!sgiblab!cs.uoregon.edu!reuter.cse.ogi.edu!henson!evelyn
  60473. From: evelyn@henson.cc.wwu.edu (Evelyn Albrecht)
  60474. Subject: pc freezing at end of file transfer
  60475. Message-Id: <1994Dec10.045958.2111@henson.cc.wwu.edu>
  60476. Organization: Western Washington University
  60477. Date: Sat, 10 Dec 1994 04:59:58 GMT
  60478. Lines: 18
  60479. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  60480.  
  60481.   Users' pc's are freezing at the end of file downloads.  When the p.c.'s are
  60482. rebooted the transfered files are indeed there.  The pc's are recently 
  60483. acquired Micron 486VL Magnum series JX30G computers.  The remote server 
  60484. is C-Kermit 5A(189), the client is Kermit 3.12.  The only difference between 
  60485. the previous era of successful downloads and the present one is the new 
  60486. p.c.'s.  
  60487.   Have others with these pc's encountered this problem?  Would it be solved
  60488. if we went to 5A(190) for the server or MS-Kermit 3.13?  Is more information
  60489. needed to answer the question, or where can I look for an answer.  
  60490.  
  60491.  
  60492.   Thank you,
  60493.              Evelyn
  60494. -- 
  60495. |Evelyn Albrecht                      Ph:  (206) 650-3239                 |
  60496. |Academic Computing Services          Internet: evelyn@henson.cc.wwu.edu  |
  60497. |Western Washington Univ.                                                 |
  60498. |Bellingham, WA  98225-9094                                               |
  60499.  
  60500. From news@columbia.edu Sat Dec 10 06:09:50 1994
  60501. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16506
  60502.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 10 Dec 1994 01:09:57 -0500
  60503. Received: by apakabar.cc.columbia.edu id AA24996
  60504.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 10 Dec 1994 01:09:54 -0500
  60505. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  60506. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  60507. Newsgroups: comp.protocols.kermit.misc
  60508. Subject: Re: Server side renames - still not solved!
  60509. Date: 10 Dec 1994 06:09:50 GMT
  60510. Organization: Columbia University
  60511. Lines: 31
  60512. Message-Id: <3cbgne$od2@apakabar.cc.columbia.edu>
  60513. References: <D0CyFn.4sv@murdoch.acc.virginia.edu> <3c2240$5uh@apakabar.cc.columbia.edu> <D0G1s8.CBo@murdoch.acc.virginia.edu>
  60514. Nntp-Posting-Host: watsun.cc.columbia.edu
  60515. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  60516.  
  60517. In article <D0G1s8.CBo@murdoch.acc.virginia.edu>,
  60518. Erik Hatcher <esh6h@fulton.seas.Virginia.EDU> wrote:
  60519. >The reason I want/need REMOTE RENAME is so that my
  60520. >automatic process to pick up received files on the
  60521. >remote end, doesn't try to pick up a file being sent
  60522. >or not successfully sent.  It only picks up files
  60523. >with the name REC_*.* and they are sent as SENDING_*.*.
  60524.  
  60525. Not to be obnoxious, but its about time you explained 
  60526. why you needed this.
  60527.  
  60528. >Frank mentioned that he'll put it in the next version,
  60529. >so I'm fine with that!  Thanks a million Frank!
  60530.  
  60531. >BTW, not being pushy, but how often do new versions
  60532. >get released?
  60533.  
  60534. It depends on how much time we have to program.
  60535. And how many additional features need to be added.
  60536. It was about 1.5 years between 5A(189) and 5A(190).
  60537. Its really hard to say.  
  60538.  
  60539. In the meantime, I suggest that you use the SEND oldname newname
  60540. mechanism with delete on failure.  And then, code your other task
  60541. to never copy a file unless it can open it with exclusive write 
  60542. access which should fail while the file transfer is occuring.
  60543.  
  60544. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  60545. "C-Kermit: available on more platforms than any other communications software."
  60546. "Kermit FTP: sending files whenever and wherever they are needed."
  60547. *NEW* OS/2 version 5A(190): ftp kermit.columbia.edu /kermit/archives/ckoker.zip 
  60548.  
  60549. From news@columbia.edu Fri Dec  9 16:59:15 1994
  60550. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20256
  60551.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 10 Dec 1994 03:12:31 -0500
  60552. Received: by apakabar.cc.columbia.edu id AA00275
  60553.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 10 Dec 1994 02:53:45 -0500
  60554. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  60555. From: jrd@cc.usu.edu (Joe Doupnik)
  60556. Newsgroups: comp.protocols.kermit.misc
  60557. Subject: Re: pc freezing at end of file transfer
  60558. Message-Id: <1994Dec9.225915.35079@cc.usu.edu>
  60559. Date: 9 Dec 94 22:59:15 MDT
  60560. References: <1994Dec10.045958.2111@henson.cc.wwu.edu>
  60561. Organization: Utah State University
  60562. Lines: 17
  60563. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  60564.  
  60565. In article <1994Dec10.045958.2111@henson.cc.wwu.edu>, evelyn@henson.cc.wwu.edu (Evelyn Albrecht) writes:
  60566. >   Users' pc's are freezing at the end of file downloads.  When the p.c.'s are
  60567. > rebooted the transfered files are indeed there.  The pc's are recently 
  60568. > acquired Micron 486VL Magnum series JX30G computers.  The remote server 
  60569. > is C-Kermit 5A(189), the client is Kermit 3.12.  The only difference between 
  60570. > the previous era of successful downloads and the present one is the new 
  60571. > p.c.'s.  
  60572. >   Have others with these pc's encountered this problem?  Would it be solved
  60573. > if we went to 5A(190) for the server or MS-Kermit 3.13?  Is more information
  60574. > needed to answer the question, or where can I look for an answer.  
  60575. -----------------
  60576.     Which communications pathway? Did you revise DOS memory management
  60577. for the new hardware? Patch level of MSK? Disk caching program really ok? 
  60578.     You might try logging the packets on both sides (LOG PACKET command
  60579. to see who said what to whom).
  60580.     Any other reasonble details.
  60581.         Joe D.
  60582.  
  60583. From news@columbia.edu Thu Dec  8 09:41:35 1994
  60584. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23777
  60585.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 11 Dec 1994 11:41:00 -0500
  60586. Received: by apakabar.cc.columbia.edu id AA28270
  60587.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 11 Dec 1994 11:40:59 -0500
  60588. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!pipex!sunic!news.funet.fi!news.cs.tut.fi!t130313
  60589. From: t130313@cs.tut.fi (Tolonen Pasi)
  60590. Newsgroups: comp.os.ms-windows.apps.comm,comp.os.ms-windows.programmer.misc,comp.os.ms-windows.programmer.controls,comp.protocols.kermit.misc,comp.lang.c++
  60591. Subject: Communication libraries for MS-Windows development?
  60592. Date: 8 Dec 1994 09:41:35 GMT
  60593. Organization: Tampere University of Technology
  60594. Lines: 29
  60595. Distribution: world
  60596. Message-Id: <3c6kcf$254@peippo.cs.tut.fi>
  60597. Nntp-Posting-Host: kaarne.cs.tut.fi
  60598. Nntp-Posting-User: t130313
  60599. Keywords: MS-Windows Kermit C++
  60600. Originator: t130313@kaarne.cs.tut.fi
  60601. Xref: news.columbia.edu comp.os.ms-windows.apps.comm:3822 comp.os.ms-windows.programmer.misc:52114 comp.os.ms-windows.programmer.controls:3743 comp.protocols.kermit.misc:1331 comp.lang.c++:96747
  60602. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  60603.  
  60604.  
  60605. Dear Sirs,
  60606.  
  60607. I am looking for communications library for MS-Windows development.
  60608. The Must for me is Kermit - the package I'm searching should fully
  60609. (or as fully as possible) implement Kermit. So far I have found 
  60610. Greenleaf Comm++ that implements only Kermit file transfer protocol.
  60611. I am going to use Visual C++ for coding, so it should be supported
  60612. by the package.
  60613.  
  60614. If you have any suggestions, ideas, tests or anything concerning the
  60615. following matters, please share them with me!
  60616.  
  60617. - Kermit under MS-Windows
  60618. - communication libraries for MS-Windows
  60619.  
  60620.  
  60621. Sincerely,
  60622.  
  60623. Pasi
  60624.  
  60625.  
  60626.  
  60627.  
  60628.  
  60629. -- 
  60630.  Pasi Tolonen           Partolantie as.308   Tel: +358-(9)31-660003  
  60631.  t130313@cs.tut.fi      33950  PIRKKALA      Tel: +358-(9)49-675474  
  60632.  Tampere Un. of Tech.   FINLAND / EUROPE     Fax: +358-(9)31-660003  
  60633.  
  60634. From news@columbia.edu Wed Dec  7 23:45:17 1994
  60635. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23892
  60636.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 11 Dec 1994 11:45:21 -0500
  60637. Received: by apakabar.cc.columbia.edu id AA28607
  60638.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 11 Dec 1994 11:45:19 -0500
  60639. Path: news.columbia.edu!sol.ctr.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!news.mathworks.com!usenet.eel.ufl.edu!usenet.fiu.edu!newshost.fiu.edu!solix!michaell
  60640. From: michaell@solix.fiu.edu (Mike R. Langevin)
  60641. Newsgroups: comp.protocols.kermit.misc
  60642. Subject: Kermit 3.14 Beta problem with ansi
  60643. Date: 7 Dec 1994 23:45:17 GMT
  60644. Organization: Florida International University
  60645. Lines: 31
  60646. Message-Id: <3c5hed$pkk@newshost.fiu.edu>
  60647. Nntp-Posting-Host: solix.fiu.edu
  60648. X-Newsreader: TIN [version 1.2 PL2]
  60649. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  60650.  
  60651.  
  60652.  
  60653.     I am trying out kermits new ansi support and am having a problem with 
  60654. it dropping characters, (the same ones each time) (usually spaces) I was 
  60655. wondering if anyone else has had this problem and fixed it or if anyone knows
  60656. if it will be corrected in the release version.   
  60657.  
  60658.  
  60659. Also, I am trying to get kermit to work with M. Dudley's Doorway program, thus
  60660. far I have been able to redefine the keys so those work, the only problem
  60661. i have now is the remote printing. Is there a way to get kermit to work with
  60662. it? I know that kermit does work with the VT102 transparernt printing, im 
  60663. wondering if a) Kermit can be setup to work with the doorway method :
  60664.     ie ( ESC[r;nnnP<String> )  
  60665.  
  60666.     where r is the Local LPT port (ie 0=LPT1, 1=LPT2, 2=LPT3)
  60667.     where nnn (or nn, or n) is the Length of <string> 
  60668.         (nnn must be between 1 and 255)
  60669.     where <String> is the text to be printed
  60670.  
  60671. If anyone has an answer or even a direction to look in please either reply or
  60672. email me at:
  60673.         mike@panther.fiu.edu
  60674. I would GREATLY GREATLY GREATLY appreciate it!!!! :)
  60675.  
  60676. Thanks
  60677.  
  60678.  
  60679. mike@panther.fiu.edu
  60680. Mike Langevin
  60681.  
  60682.  
  60683. From news@columbia.edu Sun Dec 11 04:40:27 1994
  60684. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26787
  60685.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 11 Dec 1994 13:02:08 -0500
  60686. Received: by apakabar.cc.columbia.edu id AA03825
  60687.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 11 Dec 1994 13:02:07 -0500
  60688. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  60689. From: jrd@cc.usu.edu (Joe Doupnik)
  60690. Newsgroups: comp.protocols.kermit.misc
  60691. Subject: Re: 3.14 beta 14 and PC/TCP
  60692. Message-Id: <1994Dec11.104027.35139@cc.usu.edu>
  60693. Date: 11 Dec 94 10:40:27 MDT
  60694. References: <D0n8CD.Gn8@adasoft.ch>
  60695. Organization: Utah State University
  60696. Lines: 36
  60697. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  60698.  
  60699. In article <D0n8CD.Gn8@adasoft.ch>, jw@adasoft.ch (Jamie Watson) writes:
  60700. > I must be doing something wrong, but I can't figure out what...
  60701. > I am trying to use 3.14 Beta-14 with FTP Software PC/TCP 3.0 to connect
  60702. > from my laptop to my Unix system.  The laptop is a Toshiba 1950CS, with
  60703. > a Xircom PCMCIA ethernet adapter.  The Unix system is a DECsystem 5000/50,
  60704. > running Ultrix 4.4.
  60705. > When I first start the system, I can reach the Ultrix system with all of
  60706. > the normal PC/TCP utilities (ping, tn, rlogin, etc).  I then start kermit,
  60707. > and give it what I think are the minimum configuration commands to get it
  60708. > working over TCP/IP:
  60709. >     set tcp addr 193.72.200.10
  60710. >     set tcp host 193.72.200.7
  60711. >     con
  60712. > It connects, and everything seems just fine.  But after I log out, and
  60713. > terminate kermit, none of the PC/TCP utilities work any more!  If I try
  60714. > to ping the Unix system, I get "ARP failed", and nothing I have tried can
  60715. > get this working again, short of rebooting the laptop.  But if I start
  60716. > kermit again, I can still connect to the Unix system!  I'm really very
  60717. > confused...
  60718. --------------
  60719.     The situation is easy to clarify. SET PORT TCP in Kermit means
  60720. to use Kermit's internal TCP/IP stack. That stack requires either a suitable
  60721. Packet Driver or ODI to talk to the lan adapter. FTP Inc's stack does more
  60722. or less the same thing. You loaded FTP Inc's stack and then told Kermit to
  60723. go to the same board and grab it; you are not running "over FTP Inc's stack."
  60724. I'm surprized that you we able to run Kermit over the board with FTP still
  60725. using all the TCP/IP material. 
  60726.     If you want FTP Inc's stack to remain resident and run Kermit
  60727. over the top of it you must use FTP's TNGLASS program, and tell Kermit
  60728. SET PORT BIOS1.
  60729.     Joe D.
  60730.  
  60731. From news@columbia.edu Sun Dec 11 13:12:56 1994
  60732. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26863
  60733.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 11 Dec 1994 13:04:26 -0500
  60734. Received: by apakabar.cc.columbia.edu id AA03942
  60735.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 11 Dec 1994 13:04:25 -0500
  60736. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!agate!news.ucdavis.edu!landau.ucdavis.edu!hchau
  60737. From: hchau@landau.ucdavis.edu (Hung Chau)
  60738. Newsgroups: comp.protocols.kermit.misc
  60739. Subject: How to Optimize MS-Kermit for Speed
  60740. Date: 11 Dec 1994 13:12:56 GMT
  60741. Organization: University of California, Davis
  60742. Lines: 14
  60743. Message-Id: <3cetso$2t8@mark.ucdavis.edu>
  60744. Nntp-Posting-Host: landau.ucdavis.edu
  60745. X-Newsreader: TIN [version 1.2 PL2]
  60746. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  60747.  
  60748. I was wondering what is the best setup that I can have to make
  60749. my kermit transfer between the Sun and the PC.  I have heard
  60750. using using long packet (9024) and setting RTS/CTS control,
  60751. but is there any other tricks that I can use to speed up
  60752. my transfer.
  60753.  
  60754. I have also heard about sliding windows and Control Character
  60755. unprefixing but so far sliding windows does nothing for me
  60756. and Control Character unprefixing only make thing worse. If someone
  60757. can explain to me what I am doing wrong or better what exactly
  60758. am I changing when I set sliding windows or Control Character
  60759. unprefixing.
  60760.  
  60761.                         Thank You
  60762.  
  60763. From news@columbia.edu Sat Dec 10 09:43:36 1994
  60764. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12627
  60765.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 11 Dec 1994 20:38:56 -0500
  60766. Received: by apakabar.cc.columbia.edu id AA05061
  60767.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 11 Dec 1994 20:38:55 -0500
  60768. Newsgroups: comp.protocols.kermit.misc,comp.protocols.ppp
  60769. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!pipex!news.sprintlink.net!news.indirect.com!monty
  60770. From: monty@indirect.com (Jim Monty)
  60771. Subject: [?] Merit PPP and MS-DOS Kermit 3.13 PL17
  60772. Message-Id: <D0L9oo.J6I@indirect.com>
  60773. Sender: usenet@indirect.com (System Operator)
  60774. Organization: Internet Direct, indirect.com
  60775. Date: Sat, 10 Dec 1994 09:43:36 GMT
  60776. X-Newsreader: TIN [version 1.2.1 [BP] PL2.1]
  60777. Lines: 58
  60778. Xref: news.columbia.edu comp.protocols.kermit.misc:1335 comp.protocols.ppp:7717
  60779. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  60780.  
  60781.  
  60782. Preface
  60783. -------
  60784.  
  60785. I've read comp.protocols.kermit.misc, comp.protocols.tcp-ip.ibmpc, and
  60786. comp.protocols.ppp for months.  I've read _Using MS-DOS Kermit:  
  60787. Connecting Your PC to the Electronic World_, 2nd Edition, by Christine M. 
  60788. Gianone.  I've read README files.  I've read "beware" files.  I've read 
  60789. 'til I've felt like I never wanted to turn on my PC again.
  60790.  
  60791. I've spoken to people who don't know what PPP is, but who, despite their
  60792. ignorance, have installed it, "configured" it, and run Mosaic, Netscape,
  60793. Trumpet, Eudora, POPMail, and numerous other TCP/IP applications for
  60794. Microsoft Windows with it.  I've been told, "I downloaded a file from
  60795. [name of Internet service provider deleted] and typed `INSTALL' at the Run
  60796. menu, then just started using it."  ("It" is a program that reads mail and
  60797. USENET news, allows you to connect to remote sites, provides a means of
  60798. transferring files from remote archives, browses the World Wide Web,
  60799. graphically and sonorously, tunnels through Gopher space, fingers other
  60800. people, pings other places, and does the dishes.)
  60801.  
  60802. I own a 20MHz, i80386SX PC with 2MB of RAM and a 40MB hard drive.  I
  60803. deleted Microsoft Windows 3.0 from my machine long ago. 
  60804.  
  60805. I've been present on the Internet for several years.  I was Assistant
  60806. Manager of the Internet SIG on DELPHI during its earliest days.  My
  60807. employer thinks I'm a computer programmer.  I got good grades in school. 
  60808. Most of the time, I don't _feel_ stupid. 
  60809.  
  60810. I admire the teachings of Joe Doupnik and marvel at his prolific 
  60811. contributions to these news groups.  I admit I've never understood 
  60812. anything he's written.
  60813.  
  60814. I don't know why, but I want to run MS-DOS Kermit 3.13 over a PPP
  60815. connection instead of using Telemate 4.12 to dial up my UNIX shell
  60816. account.  I guess I just don't want to feel left out. 
  60817.  
  60818.  
  60819. Question
  60820. --------
  60821.  
  60822. Can I run MS-DOS Kermit 3.13 over a PPP (specifically, Merit PPP) 
  60823. connection?  If so, how?  Exactly.
  60824.  
  60825.  
  60826. Acknowledgments
  60827. ---------------
  60828.  
  60829. Thank you all, in advance, for spending many hours of your valuable time 
  60830. helping to make my dream of a better life on the 'Net come true.
  60831.  
  60832.  
  60833. ---
  60834. Jim Monty                                          Home:  (602) 839-5421
  60835. monty@indirect.com                                 Work:  (602) 598-0183
  60836. jimmonty@delphi.com
  60837. monty@aztec.asu.edu
  60838. James_T_..Monty.andersen_wo@notes.compuserve.com
  60839.  
  60840. From news@columbia.edu Sun Dec 11 13:33:19 1994
  60841. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15088
  60842.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 11 Dec 1994 21:49:42 -0500
  60843. Received: by apakabar.cc.columbia.edu id AA10148
  60844.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 11 Dec 1994 21:49:41 -0500
  60845. Path: news.columbia.edu!sol.ctr.columbia.edu!newsxfer.itd.umich.edu!gatech!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  60846. From: jrd@cc.usu.edu (Joe Doupnik)
  60847. Newsgroups: comp.protocols.kermit.misc
  60848. Subject: MS-DOS Kermit 3.14 beta-15 available
  60849. Message-Id: <1994Dec11.193319.35169@cc.usu.edu>
  60850. Date: 11 Dec 94 19:33:19 MDT
  60851. Organization: Utah State University
  60852. Lines: 31
  60853. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  60854.  
  60855. MS-DOS Kermit 3.14 Beta-15 is available for anonymous ftp from
  60856. kermit.columbia.edu as of Sunday, 11 December 1994, 7:36pm Eastern USA time:
  60857.  
  60858.   kermit/test/bin/mstibm.zip  - Binary ZIP file
  60859.   kermit/test/text/mstibm.uue - Uuencoded ZIP file
  60860.   kermit/test/text/mstibm.boo - BOO-encoded ZIP file
  60861.  
  60862. The UUE and BOO files are also available on BITNET from KERMSRV at CUVMA.
  60863.  
  60864. Changes and fixes since Beta-14 include:
  60865.    
  60866.  . Fixed BIOS Int 14 redirection, which was broken a couple edits back.
  60867.  . Fixed VT220/320 Protected Fields again
  60868.  . 132-column scroll vs SET TERM VIDEO BIOS bug fixed.
  60869.  . Correct handling of TELNET Data Mark (IAC DM).
  60870.  . Fixed problem with SET TRANSLATION KEY {ON, OFF}.
  60871.  . Kanji bug with SET TERM VIDEO BIOS fixed.
  60872.  . New mappings for special keys of the Japanese DOS/V Kanji 106 keyboard.
  60873.  . Changed ? help message for internal DIAL command.
  60874.  . \freplace(...) function added (see KERMIT.UPD)
  60875.  . SET TERM GRAPHICS VESA (800x600) added (ditto)
  60876.  . Graphics-screen dump to TIFF lost some color info - shades of
  60877.    gray, etc -- now fixed.
  60878.  
  60879. As yet unresolved is a problem with apparent premature timeouts reading
  60880. packets under DDK conditions (regular length packets, printable start of
  60881. packet character, heavy echoing of what's sent, interspersal of cursor
  60882. commands and packets, etc).
  60883.  
  60884. Please continue to send reports by e-mail to kermit@columbia.edu.
  60885.  
  60886.  
  60887. From news@columbia.edu Sun Dec 11 15:18:29 1994
  60888. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20924
  60889.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 12 Dec 1994 00:08:19 -0500
  60890. Received: by apakabar.cc.columbia.edu id AA20129
  60891.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 12 Dec 1994 00:08:16 -0500
  60892. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  60893. From: jrd@cc.usu.edu (Joe Doupnik)
  60894. Newsgroups: comp.protocols.kermit.misc
  60895. Subject: Re: How to Optimize MS-Kermit for Speed
  60896. Message-Id: <1994Dec11.211829.35179@cc.usu.edu>
  60897. Date: 11 Dec 94 21:18:29 MDT
  60898. References: <3cetso$2t8@mark.ucdavis.edu>
  60899. Organization: Utah State University
  60900. Lines: 31
  60901. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  60902.  
  60903. In article <3cetso$2t8@mark.ucdavis.edu>, hchau@landau.ucdavis.edu (Hung Chau) writes:
  60904. > I was wondering what is the best setup that I can have to make
  60905. > my kermit transfer between the Sun and the PC.  I have heard
  60906. > using using long packet (9024) and setting RTS/CTS control,
  60907. > but is there any other tricks that I can use to speed up
  60908. > my transfer.
  60909. > I have also heard about sliding windows and Control Character
  60910. > unprefixing but so far sliding windows does nothing for me
  60911. > and Control Character unprefixing only make thing worse. If someone
  60912. > can explain to me what I am doing wrong or better what exactly
  60913. > am I changing when I set sliding windows or Control Character
  60914. > unprefixing.
  60915. ----------------
  60916.     It's a good question, and one asked (and answered) so frequently
  60917. that we really do need an FAQ.
  60918.     Here are two suggestions. First, read more about it in the MS-DOS
  60919. Kermit v3.14 beta docs, binary file mstibm.zip in directory kermit/test/bin
  60920. on kermit.columbia.edu.
  60921.     Second, long packets, plus a few sliding windows slots, brings you
  60922. very good performance. Be sure to use adequate flow control everywhere,
  60923. preferrably hardware RTS/CTS on the PC+modem. Not all hosts or comms 
  60924. channels can take lots of bytes in a row so back off if things fail.
  60925. For the utmost performance at high risk you may start unprefixing control
  60926. codes via the SET CONTROL UNPREFIX command; use only at your own risk.
  60927.     Remember that the other end has to play along. It may well be that
  60928. other end has neither long packet nor sliding windows capabilities. If
  60929. so this is an excellent time to upgrade the most likely ancient C Kermit
  60930. on the Sun to the modern C Kermit v5A(190). That has all the bells and
  60931. whistles. Ftp to kermit.columbia.edu, cd c-kermit, explore, raid&plunder.
  60932.     Joe D.
  60933.  
  60934. From news@columbia.edu Sun Dec 11 15:23:11 1994
  60935. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20929
  60936.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 12 Dec 1994 00:08:21 -0500
  60937. Received: by apakabar.cc.columbia.edu id AA20139
  60938.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 12 Dec 1994 00:08:19 -0500
  60939. Path: news.columbia.edu!sol.ctr.columbia.edu!news.moneng.mei.com!uwm.edu!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  60940. From: jrd@cc.usu.edu (Joe Doupnik)
  60941. Newsgroups: comp.protocols.kermit.misc
  60942. Subject: Re: Intermittent Problem with Kermit Under Windows
  60943. Message-Id: <1994Dec11.212311.35180@cc.usu.edu>
  60944. Date: 11 Dec 94 21:23:11 MDT
  60945. References: <94340.130308SMITHM@qucdn.queensu.ca> <3cbbtd$iqi@apakabar.cc.columbia.edu>
  60946. Organization: Utah State University
  60947. Lines: 15
  60948. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  60949.  
  60950. In article <3cbbtd$iqi@apakabar.cc.columbia.edu>, jt50@jambo.cc.columbia.edu (Jess  Ting) writes:
  60951. > I've had exactly the same problem. What I've noticed is that when
  60952. > the modem is on BEFORE I start Windows, Kermit loads ok, but when 
  60953. > I turn on the modem only AFTER Windows has already started, I need
  60954. > to quit Kermit and restart it.
  60955. > In any event, the problem is merely a nuisance, as Kermit functions
  60956. > perfectly well after it is restarted.
  60957. ----------
  60958.     Mr. Gate's outfit needs to address that one. Windows fakes the
  60959. real hardware to the DOS box, so Kermit sees what Windows wants it to
  60960. see and Windows itself deals with the actual hardware. That's what these
  60961. .386 VxD's are about (faking the machine, in lieu of a real kernel).
  60962.     Joe D.
  60963.  
  60964. From news@columbia.edu Mon Dec 12 04:51:44 1994
  60965. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21586
  60966.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 12 Dec 1994 00:21:44 -0500
  60967. Received: by apakabar.cc.columbia.edu id AA21258
  60968.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 12 Dec 1994 00:21:39 -0500
  60969. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!ub!ns1.potsdam.edu!news.potsdam.edu!nelson
  60970. From: nelson@crynwr.crynwr.com (Russell Nelson)
  60971. Newsgroups: comp.protocols.kermit.misc
  60972. Subject: Re: Arcnet Packet Driver?
  60973. Date: 12 Dec 1994 04:51:44 GMT
  60974. Organization: Crynwr Software
  60975. Lines: 16
  60976. Message-Id: <NELSON.94Dec11235144@crynwr.crynwr.com>
  60977. References: <3c96mj$bej@cello.gina.calstate.edu>
  60978. Nntp-Posting-Host: nh2.potsdam.edu
  60979. In-Reply-To: jpowell@cello.gina.calstate.edu's message of 9 Dec 1994 01:06:27 -0800
  60980. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  60981.  
  60982. In article <3c96mj$bej@cello.gina.calstate.edu> jpowell@cello.gina.calstate.edu (Larry Powell) writes:
  60983.  
  60984.       I use arcnet with Novell which works fine. I also tested kermit with
  60985.    the Netbios that comes with Novell (Lite) and it works also. I tried a
  60986.    brief test of the packet drivers ARCNET and ARCETHER and they both failed
  60987.    to initialize and/or self test.
  60988.  
  60989. ARCNET won't work with Kermit.  ARCETHER should.  If it doesn't
  60990. initialize, perhaps you used an incorrect command line?  What version
  60991. of ARCETHER and command line did you use?
  60992.  
  60993. --
  60994. -russ <nelson@crynwr.com>    http://www.crynwr.com/crynwr/nelson.html
  60995. Crynwr Software   | Crynwr Software sells packet driver support | ask4 PGP key
  60996. 11 Grant St.      | +1 315 268 1925 (9201 FAX)  | What is thee doing about it?
  60997. Potsdam, NY 13676 | What part of "Congress shall make no law" eludes Congress?
  60998.  
  60999. From news@columbia.edu Wed Dec  7 19:52:00 1994
  61000. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24593
  61001.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 12 Dec 1994 01:23:51 -0500
  61002. Received: by apakabar.cc.columbia.edu id AA24460
  61003.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 12 Dec 1994 01:23:49 -0500
  61004. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!zombie.ncsc.mil!paladin.american.edu!gatech!purdue!mozo.cc.purdue.edu!vic.cc.purdue.edu!abe
  61005. From: abe@vic.cc.purdue.edu (Vic Abell)
  61006. Newsgroups: comp.protocols.kermit.misc
  61007. Subject: Re: Where is Kermit?
  61008. Date: 7 Dec 1994 19:52:00 GMT
  61009. Organization: Purdue University
  61010. Lines: 11
  61011. Message-Id: <3c53p0$1av@mozo.cc.purdue.edu>
  61012. References: <1994Dec7.113212.25023@wmichgw>
  61013. Nntp-Posting-Host: vic.cc.purdue.edu
  61014. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  61015.  
  61016. In article <1994Dec7.113212.25023@wmichgw> x93aroor@wmich.edu writes:
  61017. >     Does anybody know from where I could download the latest version of
  61018. >kermit for
  61019. >1) MS-Dos
  61020. >2) Windows
  61021. >3) Vax/Vms
  61022.  
  61023. The best source for Kermit files is the "official" source,
  61024. kermit.columbia.edu.  It permits anonymous ftp access and
  61025. has copious README files to guide your journey through its
  61026. many files and directories.
  61027.  
  61028. From news@columbia.edu Mon Dec  5 09:04:30 1994
  61029. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29919
  61030.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 12 Dec 1994 04:10:05 -0500
  61031. Received: by apakabar.cc.columbia.edu id AA00385
  61032.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 12 Dec 1994 04:10:03 -0500
  61033. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!Germany.EU.net!news.dfn.de!zeus.rbi.informatik.uni-frankfurt.de!terra.wiwi.uni-frankfurt.de!news.th-darmstadt.de!fauern!news.unibw-muenchen.de!p41bsmk
  61034. From: p41bsmk@kommsrv.rz.unibw-muenchen.de (Peter Schmolck)
  61035. Newsgroups: comp.protocols.kermit.misc
  61036. Subject: term type in telnet-macro (Kermit 3.14)
  61037. Date: 5 Dec 1994 09:04:30 GMT
  61038. Organization: University of the Federal Armed Forces Munich
  61039. Lines: 35
  61040. Message-Id: <3bul2u$47d@infosrv.rz.unibw-muenchen.de>
  61041. Nntp-Posting-Host: kommsrv.rz.unibw-muenchen.de
  61042. X-Newsreader: NN version 6.5.0 #5 (NOV)
  61043. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  61044.  
  61045. I'm using MS-Kermit 3.14 Beta-14. My UNIX-hosts do not know what to do 
  61046. with "vt320", and when trying to adjust my mscustom.ini definitions I 
  61047. noted an inconsistency (or bug?).
  61048.  
  61049. The telnet macro in mskermit.ini:
  61050.  
  61051. define TELNET -
  61052.   set flow none,-
  61053.   set port tcp \%1 \%2,-
  61054.   pause 0, if fail end 1,-
  61055.   if def \%3 set term type \%3,-
  61056.   if succ c  
  61057.  
  61058. and accordingly the myhost define in mscustom.ini:
  61059.  
  61060.  define myhost -
  61061.    telnet myhost 23 vt320,-
  61062.    if success assign myhost telnet \v(session)
  61063.  
  61064. set the terminal type, and not only the TELNET-negotiated "telnet
  61065. term-type" (which I rather preferred the macro to do). When I changed the
  61066. myhost define from vt320 to vt220 the result was, that -- expectedly --
  61067. the status line entry changed to VT220, but --unexpectedly-- the remote
  61068. TELNET server still received a "VT320". (??)
  61069.  
  61070. BTW, mskermit.bwr says: "... to create an override string with command 
  61071.  SET TCP/IP TELNET-TERM-TYPE."
  61072.      ^^^^^^^^^^^^^^
  61073. Instead this should read either "set tcp/ip term-type" or "set telnet 
  61074. term-type".
  61075. --
  61076. Peter Schmolck                                p41bsmk@rz.unibw-muenchen.de
  61077. Department of Education                       Phone :     +49-89-6004-2056
  61078. Univ. of the Federal Armed Forces Munich      Fax   :     +49-89-6004-3968
  61079. 85577 NEUBIBERG, GERMANY    
  61080.  
  61081. From news@columbia.edu Mon Dec 12 14:08:33 1994
  61082. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09623
  61083.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 12 Dec 1994 09:08:41 -0500
  61084. Received: by apakabar.cc.columbia.edu id AA12966
  61085.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 12 Dec 1994 09:08:39 -0500
  61086. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  61087. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  61088. Newsgroups: comp.protocols.kermit.misc
  61089. Subject: Re: term type in telnet-macro (Kermit 3.14)
  61090. Date: 12 Dec 1994 14:08:33 GMT
  61091. Organization: Columbia University
  61092. Lines: 49
  61093. Message-Id: <3chlh1$cl0@apakabar.cc.columbia.edu>
  61094. References: <3bul2u$47d@infosrv.rz.unibw-muenchen.de>
  61095. Nntp-Posting-Host: watsun.cc.columbia.edu
  61096. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  61097.  
  61098. In article <3bul2u$47d@infosrv.rz.unibw-muenchen.de>,
  61099. Peter Schmolck <p41bsmk@kommsrv.rz.unibw-muenchen.de> wrote:
  61100. >I'm using MS-Kermit 3.14 Beta-14. My UNIX-hosts do not know what to do 
  61101. >with "vt320", and when trying to adjust my mscustom.ini definitions I 
  61102. >noted an inconsistency (or bug?). ... the myhost define in mscustom.ini:
  61103. >
  61104. > define myhost -
  61105. >   telnet myhost 23 vt320,-
  61106. >   if success assign myhost telnet \v(session)
  61107. >
  61108. >set the terminal type, and not only the TELNET-negotiated "telnet
  61109. >term-type" (which I rather preferred the macro to do).
  61110. >
  61111. Well, as the accompanying comment says, it's only a sample, which you should
  61112. adjust for the host(s) you are actually using, e.g.:
  61113.  
  61114.   set telnet term-type vt220,-
  61115.   telnet myhost,-
  61116.   if success assign myhost telnet \v(session)
  61117.  
  61118. Kermit sends its actual terminal type during TELNET negotiations UNLESS you
  61119. have given a SET TELNET TERM command, which overrides the actual terminal
  61120. type, but only for the purposes of telling the TELNET server what kind of
  61121. terminal type you have.  This is useful, for example, if Kermit's terminal
  61122. type is VT320, but the host knows the same terminal by a different name, such
  61123. as VT300, and does not recognize Kermit's terminal name.
  61124.  
  61125. >When I changed the myhost define from vt320 to vt220 the result was, that --
  61126. >expectedly -- the status line entry changed to VT220, but --unexpectedly--
  61127. >the remote TELNET server still received a "VT320". (??)
  61128. >
  61129. I checked this just now and it didn't happen to me.  Probably you just
  61130. continued the same session, and the terminal type was not renegotiated?
  61131.  
  61132. >BTW, mskermit.bwr says: "... to create an override string with command 
  61133. > SET TCP/IP TELNET-TERM-TYPE."
  61134. >Instead this should read either "set tcp/ip term-type" or "set telnet 
  61135. >term-type".
  61136. >
  61137. You're right, we'll fix it.  Thanks!
  61138.  
  61139. - Frank
  61140. x
  61141. x
  61142. x
  61143. x
  61144. x
  61145. x
  61146. x
  61147.  
  61148. From news@columbia.edu Mon Dec 12 14:48:20 1994
  61149. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12559
  61150.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 12 Dec 1994 09:48:27 -0500
  61151. Received: by apakabar.cc.columbia.edu id AA16901
  61152.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 12 Dec 1994 09:48:25 -0500
  61153. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  61154. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  61155. Newsgroups: comp.protocols.kermit.misc,comp.protocols.ppp
  61156. Subject: Re: [?] Merit PPP and MS-DOS Kermit 3.13 PL17
  61157. Date: 12 Dec 1994 14:48:20 GMT
  61158. Organization: Columbia University
  61159. Lines: 11
  61160. Message-Id: <3chnrk$gfs@apakabar.cc.columbia.edu>
  61161. References: <D0L9oo.J6I@indirect.com>
  61162. Nntp-Posting-Host: watsun.cc.columbia.edu
  61163. Xref: news.columbia.edu comp.protocols.kermit.misc:1343 comp.protocols.ppp:7728
  61164. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  61165.  
  61166. In article <D0L9oo.J6I@indirect.com>, Jim Monty <monty@indirect.com> wrote:
  61167. >Can I run MS-DOS Kermit 3.13 over a PPP (specifically, Merit PPP) 
  61168. >connection?  If so, how?  Exactly.
  61169. >
  61170. This question is asked a lot, and we don't yet have an answer.
  61171.  
  61172. I hope you get a definitive response, because until now all attempts
  61173. that I have heard about to do this have resulted in failure or
  61174. hung PCs.  
  61175.  
  61176. - Frank
  61177.  
  61178. From news@columbia.edu Mon Dec 12 14:52:59 1994
  61179. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13125
  61180.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 12 Dec 1994 09:53:08 -0500
  61181. Received: by apakabar.cc.columbia.edu id AA17376
  61182.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 12 Dec 1994 09:53:05 -0500
  61183. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  61184. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  61185. Newsgroups: comp.protocols.kermit.misc
  61186. Subject: Re: How to Optimize MS-Kermit for Speed
  61187. Date: 12 Dec 1994 14:52:59 GMT
  61188. Organization: Columbia University
  61189. Lines: 12
  61190. Message-Id: <3cho4b$guh@apakabar.cc.columbia.edu>
  61191. References: <3cetso$2t8@mark.ucdavis.edu>
  61192. Nntp-Posting-Host: watsun.cc.columbia.edu
  61193. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  61194.  
  61195. In article <3cetso$2t8@mark.ucdavis.edu>,
  61196. Hung Chau <hchau@landau.ucdavis.edu> wrote:
  61197. >I was wondering what is the best setup that I can have to make
  61198. >my kermit transfer between the Sun and the PC.  ...
  61199. >
  61200. Rather than repost the long tutorial on this subject (again), I have
  61201. put it as the first entry in a new Frequently Asked Questions file:
  61202.  
  61203. anonymous ftp to kermit.columbia.edu, directory kermit/e, text mode,
  61204. file faq.txt.
  61205.  
  61206. - Frank
  61207.  
  61208. From news@columbia.edu Wed Dec  7 03:59:22 1994
  61209. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21197
  61210.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 12 Dec 1994 11:40:57 -0500
  61211. Received: by apakabar.cc.columbia.edu id AA26598
  61212.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 12 Dec 1994 11:40:54 -0500
  61213. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!news.duke.edu!godot.cc.duq.edu!newsfeed.pitt.edu!gatech!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  61214. From: jrd@cc.usu.edu (Joe Doupnik)
  61215. Newsgroups: comp.protocols.kermit.misc
  61216. Subject: Re: Flow Control in MS-DOS Kermit 3.14
  61217. Message-Id: <1994Dec7.095922.34783@cc.usu.edu>
  61218. Date: 7 Dec 94 09:59:22 MDT
  61219. References: <3c2me7$d29@sundog.tiac.net>
  61220. Organization: Utah State University
  61221. Lines: 76
  61222. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  61223.  
  61224. In article <3c2me7$d29@sundog.tiac.net>, ciaraldi@max.tiac.net (Michael Ciaraldi) writes:
  61225. > Could I get an explanation of how flow control works in MS-DOS Kermit 3.14?
  61226. > I've read the MS-DOS Kermit book and the KERMIT.UPD file, but they
  61227. > only tell you that you can set flow control to NONE, XON/XOFF, and RTS/CTS,
  61228. > and that the XON/XOFF can be set separately for ingoing and outgoing data.
  61229. > The documentation does not give any detail beyond that.
  61230. > I'm especially interested in XON/XOFF.
  61231. > Here are my questions:
  61232. > 1) Does "ingoing" mean from the host into the serial port of the PC
  61233. > and then into Kermit, and does "outgoing" mean from Kermit out
  61234. > the serial port to the host?
  61235.     Yes. INCOMING means flow control bytes to/incoming Kermit on the PC,
  61236. OUTGOING means from/outgoing from the PC to the remote host, and XON/XOFF 
  61237. means in both directions.
  61238.  
  61239. > 2) Is flow control in Kermit supposed to  work the same during
  61240. > terminal emulation as during Kermit file transfer?
  61241. > And is it the same during TRANSMIT?
  61242.     Transport channels service all higher layers the same way.
  61243. Recall that flow control is a datalink affair, not high level operation.
  61244.  
  61245. > 3) What is the correct setting to have Kermit pass any ^S and ^Q
  61246. > characters on to the host, without further processing?
  61247. > This would emulate a terminal that implements no flow control at all.
  61248.     That's a host problem, yes?
  61249.  
  61250. > 4) What is the correct setting to have Kermit freeze the screen when
  61251. > the user types ^S, and unfreeze it when the user types ^Q,
  61252. > but not send the ^S and ^Q to the host?
  61253.     The host must stop sending, then the screen will have nothing
  61254. new to display.
  61255.  
  61256. > 5) What is the correct setting to have Kermit freeze the screen when
  61257. > the user types ^S, and unfreeze it when the user types ^Q,
  61258. > but also send the ^S and ^Q to the host?
  61259. > This would emulate a real VT-100, I think.
  61260.     See 4.
  61261.  
  61262. > 6) What is the correct setting to have Kermit send a ^S to the host
  61263. > if the host is sending data faster than Kermit can process it,
  61264. > then send a ^Q when Kermit can again process new data?
  61265. > This is also the way a real VT-100 works.
  61266. > In this mode, what is the maximum number of characters the
  61267. > host can send after Kermit sends the ^S, without Kermit losing any?
  61268.     That's the essence of flow control. OUTGOING or XON/XOFF does
  61269. exactly this. Kermit has a several hundred byte cushion, but modems and
  61270. host buffers and other comms storage may exceed that. Kermit does not
  61271. stop working when it sends and XOFF to the host, so overrun is a gradual
  61272. effect. A real VT100 is much slower than MSK and has only a few bytes of 
  61273. cushion.
  61274.  
  61275. > 7) What is the correct setting to have Kermit recognize a ^S sent from
  61276. > the host, then not send any data to the host until the host 
  61277. > sends a ~Q? In this mode, how many characters can the user
  61278. > type without Kermit losing any?
  61279. > 8) Suppose Kermit is doing a TRANSMIT without PROMPT, so that it is
  61280. > just sending the contents of a file out the serial port.
  61281. > What is the setting to have Kermit recognize a ^S from the host
  61282. > as a signal to not send any more data, then resume sending
  61283. > when the host sends a ^Q?
  61284.     Again, basic flow control. The host is sending the XON/XOFF
  61285. flow control bytes. Deduction: use SET FLOW INCOMING or XON/XOFF.
  61286.  
  61287. > 9) Is all this documented somewhere? If so, I will certainly feel foolish
  61288. > for having missed it.
  61289.     We don't offer a tutorial in basic datacomms so all these details
  61290. are not explained in the user's manual. The actions are, but not the way
  61291. you ask the questions.
  61292.  
  61293. > 10) If I want to see how this is implemented, where is it handled
  61294. > in the source code?
  61295.     Serial comms are in file msxibm.asm.
  61296.     Joe D.
  61297.  
  61298. From news@columbia.edu Wed Dec  7 04:04:50 1994
  61299. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21219
  61300.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 12 Dec 1994 11:41:08 -0500
  61301. Received: by apakabar.cc.columbia.edu id AA26631
  61302.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 12 Dec 1994 11:41:06 -0500
  61303. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!news.duke.edu!godot.cc.duq.edu!newsfeed.pitt.edu!gatech!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  61304. From: jrd@cc.usu.edu (Joe Doupnik)
  61305. Newsgroups: comp.protocols.kermit.misc
  61306. Subject: Re: Intermittent Problem with Kermit Under Windows
  61307. Message-Id: <1994Dec7.100450.34785@cc.usu.edu>
  61308. Date: 7 Dec 94 10:04:50 MDT
  61309. References: <94340.130308SMITHM@QUCDN.QueensU.CA>
  61310. Organization: Utah State University
  61311. Lines: 21
  61312. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  61313.  
  61314. In article <94340.130308SMITHM@QUCDN.QueensU.CA>, Mike Smith <SMITHM@QUCDN.QueensU.CA> writes:
  61315. > I've got a user who complains that he gets the error
  61316. >    ?Cannot use RTS/CTS on non-UART ports
  61317. > when running Kermit under Windows.  The confusing thing is that when this
  61318. > happens he typically quits Kermit and tries again with success.  Can anyone
  61319. > suggest what it is I should be looking for in his Windows configuration?
  61320. > Also, there are apparently times when the initial attempt succeeds if that
  61321. > is important.
  61322. ----------------
  61323.     SET FLOW RTS/CTS is rational only for the hardware serial ports,
  61324. COM1..4. If Windows messes up and Kermit can't verify the IRQ then Kermit
  61325. uses the Bios pathway, and that's not hardware.
  61326.     I wish there were one piece of advice we could offer on using any
  61327. serial comms program in Windows, but (aside from "please don't") there
  61328. isn't. Windows provides ample facilities to fail, both by overdriving
  61329. the lesser UART chips (8250 class) and by inadequate Windows serial drivers
  61330. as well as not giving enough service time to the real serial hardware.
  61331. I guess as close as we will come is if the port fails then slow down.
  61332.     Joe D.
  61333.  
  61334. From news@columbia.edu Tue Dec  6 01:46:26 1994
  61335. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10299
  61336.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 12 Dec 1994 23:06:07 -0500
  61337. Received: by apakabar.cc.columbia.edu id AA08516
  61338.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 12 Dec 1994 23:06:06 -0500
  61339. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.alpha.net!news.mathworks.com!zombie.ncsc.mil!paladin.american.edu!howland.reston.ans.net!vixen.cso.uiuc.edu!uwm.edu!msunews!harbinger.cc.monash.edu.au!yarrina.connect.com.au!adam.com.au!adam.com.au!not-for-mail
  61340. From: mnits@adam.com.au (Mayne Nickless)
  61341. Newsgroups: comp.protocols.kermit.misc
  61342. Subject: "Set incomplete discard" Problem
  61343. Date: 6 Dec 1994 12:16:26 +1030
  61344. Organization: ADAM Pty Ltd.
  61345. Lines: 12
  61346. Message-Id: <3c0fpi$126@adam.com.au>
  61347. X-Newsreader: TIN [version 1.2 PL2]
  61348. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  61349.  
  61350. We have come across a problem using C-Kermit(190) (and previous 
  61351. releases) 
  61352. running on Sunos 4.1.3 and Solaris 2.3. We run a c-kermit server using 
  61353. the "set incomplete discard" parameter. We send a file via our Cray 
  61354. network from MSdos kermit 3.13. When this file transfer is interupted for 
  61355. any reason (eg:hangup). The incomplete file is not discarded. We have 
  61356. traced the server process and it seem to die on receiving the hangup 
  61357. (HUP) signal.
  61358.  
  61359. Thanks,
  61360. Dave Pearse
  61361. Mayne Nickless ITS
  61362.  
  61363. From news@columbia.edu Tue Dec  6 06:05:31 1994
  61364. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10304
  61365.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 12 Dec 1994 23:06:09 -0500
  61366. Received: by apakabar.cc.columbia.edu id AA08520
  61367.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 12 Dec 1994 23:06:08 -0500
  61368. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!zombie.ncsc.mil!paladin.american.edu!howland.reston.ans.net!news.moneng.mei.com!uwm.edu!msunews!harbinger.cc.monash.edu.au!yarrina.connect.com.au!adam.com.au!adam.com.au!not-for-mail
  61369. From: mnits@adam.com.au (Mayne Nickless)
  61370. Newsgroups: comp.protocols.kermit.misc
  61371. Subject: problem with "set file incomplete discard"
  61372. Date: 6 Dec 1994 16:35:31 +1030
  61373. Organization: ADAM Pty Ltd.
  61374. Lines: 21
  61375. Message-Id: <3c0uvb$5di@adam.com.au>
  61376. X-Newsreader: TIN [version 1.2 PL2]
  61377. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  61378.  
  61379. We are having some problems with kermit 5a(190) running on both SunOs 
  61380. 4.1.3 and Solaris 2.3. Our users connect to a modem which is hanging on 
  61381. some DCX network equipment, and from there connecting to a Sun box, where 
  61382. kermit is run up in server mode, with "set file incomplete discard" set 
  61383. in the .kermrc. If the user disconnects (e.g. a modem hangup), an 
  61384. incompletely transferred file is _not_ discarded.
  61385.  
  61386. We have had the same problem with previous versions of c-kermit - it is 
  61387. not new in version 190.
  61388.  
  61389. When we traced the kermit server process, it appeared that it got the 
  61390. hangup and then just died.
  61391.  
  61392. Any help would be appreciated.
  61393.  
  61394. cheers
  61395.  
  61396. Andrew Dunstan
  61397. Systems Administrator
  61398. Mayne Nickless ITS
  61399.  
  61400.  
  61401. From news@columbia.edu Wed Dec  7 08:49:21 1994
  61402. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10311
  61403.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 12 Dec 1994 23:06:38 -0500
  61404. Received: by apakabar.cc.columbia.edu id AA08554
  61405.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 12 Dec 1994 23:06:37 -0500
  61406. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!zombie.ncsc.mil!paladin.american.edu!howland.reston.ans.net!news.moneng.mei.com!uwm.edu!msunews!harbinger.cc.monash.edu.au!yarrina.connect.com.au!adam.com.au!adam.com.au!not-for-mail
  61407. From: mnits@adam.com.au (Mayne Nickless)
  61408. Newsgroups: comp.protocols.kermit.misc
  61409. Subject: problem with "set file incomplete discard"
  61410. Date: 7 Dec 1994 19:19:21 +1030
  61411. Organization: ADAM Pty Ltd.
  61412. Lines: 21
  61413. Message-Id: <3c3suh$75t@adam.com.au>
  61414. X-Newsreader: TIN [version 1.2 PL2]
  61415. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  61416.  
  61417. We are having some problems with kermit 5a(190) running on both SunOs
  61418. 4.1.3 and Solaris 2.3. Our users connect to a modem which is hanging on
  61419. some DCX network equipment, and from there connecting to a Sun box, where    
  61420. kermit is run up in server mode, with "set file incomplete discard" set   
  61421. in the .kermrc. If the user disconnects (e.g. a modem hangup), an
  61422. incompletely transferred file is _not_ discarded.
  61423.  
  61424. We have had the same problem with previous versions of c-kermit - it is    
  61425. not new in version 190.
  61426.  
  61427. When we traced the kermit server process, it appeared that it got the
  61428. hangup and then just died.
  61429.  
  61430. Any help would be appreciated.
  61431.  
  61432. cheers
  61433.  
  61434. Andrew Dunstan
  61435. Systems Administrator
  61436. Mayne Nickless ITS
  61437.  
  61438.  
  61439. From news@columbia.edu Tue Dec 13 05:37:32 1994
  61440. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15344
  61441.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 13 Dec 1994 00:37:36 -0500
  61442. Received: by apakabar.cc.columbia.edu id AA17116
  61443.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 13 Dec 1994 00:37:34 -0500
  61444. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  61445. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  61446. Newsgroups: comp.protocols.kermit.misc
  61447. Subject: Re: "Set incomplete discard" Problem
  61448. Date: 13 Dec 1994 05:37:32 GMT
  61449. Organization: Columbia University
  61450. Lines: 20
  61451. Message-Id: <3cjbus$gmd@apakabar.cc.columbia.edu>
  61452. References: <3c0fpi$126@adam.com.au>
  61453. Nntp-Posting-Host: watsun.cc.columbia.edu
  61454. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  61455.  
  61456. In article <3c0fpi$126@adam.com.au>, Mayne Nickless <mnits@adam.com.au> wrote:
  61457. >We have come across a problem using C-Kermit(190) (and previous 
  61458. >releases) 
  61459. >running on Sunos 4.1.3 and Solaris 2.3. We run a c-kermit server using 
  61460. >the "set incomplete discard" parameter. We send a file via our Cray 
  61461. >network from MSdos kermit 3.13. When this file transfer is interupted for 
  61462. >any reason (eg:hangup). The incomplete file is not discarded. We have 
  61463. >traced the server process and it seem to die on receiving the hangup 
  61464. >(HUP) signal.
  61465. >
  61466.  
  61467. This is probably because most Unix systems automatically kill the shell
  61468. when the HUP signal is received.  Killing the shell kills all child
  61469. processing (ie, kermit).  
  61470.  
  61471.  
  61472. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  61473. "C-Kermit: available on more platforms than any other communications software."
  61474. "Kermit FTP: sending files whenever and wherever they are needed."
  61475. *NEW* OS/2 version 5A(190): ftp kermit.columbia.edu /kermit/archives/ckoker.zip 
  61476.  
  61477. From news@columbia.edu Thu Dec  8 01:00:18 1994
  61478. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19704
  61479.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 13 Dec 1994 02:24:43 -0500
  61480. Received: by apakabar.cc.columbia.edu id AA22876
  61481.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 13 Dec 1994 02:24:35 -0500
  61482. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!news.duke.edu!godot.cc.duq.edu!newsfeed.pitt.edu!gatech!howland.reston.ans.net!math.ohio-state.edu!magnus.acs.ohio-state.edu!csn!csnnews!gfritz
  61483. From: gfritz@csn.net (Gary Fritz)
  61484. Newsgroups: comp.protocols.kermit.misc
  61485. Subject: Re: Lockup problem
  61486. Date: 8 Dec 1994 01:00:18 GMT
  61487. Organization: Colorado Supernet
  61488. Lines: 29
  61489. Message-Id: <3c5lr2$1e7@news-2.csn.net>
  61490. References: <3bsjb2$1e1@news-2.csn.net> <3bvci1$lu8@apakabar.cc.columbia.edu>
  61491. Nntp-Posting-Host: 199.117.27.22
  61492. X-Newsreader: TIN [version 1.2 PL2]
  61493. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  61494.  
  61495. Frank da Cruz (fdc@watsun.cc.columbia.edu) wrote:
  61496. : Did you read the HP-UX section of ckuker.bwr?  Quoting:
  61497.  
  61498. No, I didn't (blush) but:
  61499.  
  61500. : Before you can use serial ports on the HP-9000, you must configure them as
  61501. : either "terminals" or "modems" with SAM ("peripheral devices"..."terminals and
  61502. : modems"), 
  61503.  
  61504. The line is configured as such, and works for cu and for dialin.
  61505.  
  61506. : Other things to watch out for: bidirectional ttys (see earlier posting about
  61507. : this), improperly configured modem (DSR or CTS signals missing, for example),
  61508. : or perhaps commands in your .kermrc that might cause the open() to hang:
  61509. : "set carrier on nnn", "set flow rts/cts" (when CTS is not being asserted),
  61510. : etc.
  61511.  
  61512. I don't have a .kermrc.  Can you give me a hint what would cause DSR and
  61513. CTS signals to be missing?
  61514.  
  61515. I'll look for the bidirectional discussion.  I have used this line
  61516. bidirectionally, so that may be a good lead.
  61517.  
  61518. What confuses me is that it *was* working (although VERY slowly) at one time,
  61519. and then *something* changed and now it doesn't.  I don't know what the
  61520. *something* is, but the fact that it used to work would seem to indicate
  61521. that it's not a version problem, or anything that hasn't changed in the
  61522. meantime.  I don't *think* it's the modem, because I've switched modems
  61523. since then and it didn't change anything.
  61524.  
  61525. From news@columbia.edu Wed Dec  7 22:51:44 1994
  61526. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26813
  61527.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 13 Dec 1994 06:02:08 -0500
  61528. Received: by apakabar.cc.columbia.edu id AA01578
  61529.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 13 Dec 1994 06:02:06 -0500
  61530. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!zombie.ncsc.mil!paladin.american.edu!gatech!howland.reston.ans.net!torn!news.ccs.queensu.ca!news.ccs.queensu.ca!not-for-mail
  61531. From: mike@knot.QueensU.CA (Mike Smith)
  61532. Newsgroups: comp.protocols.kermit.misc
  61533. Subject: Divide Overflow
  61534. Date: 7 Dec 1994 17:51:44 -0500
  61535. Organization: Queen's University, Kingston
  61536. Lines: 16
  61537. Message-Id: <3c5ea0$7fo@ccs-sparc2.queensu.ca>
  61538. Nntp-Posting-Host: ccs-sparc2.ccs
  61539. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  61540.  
  61541.  
  61542. The February 1994 edition of mskerm.bwr includes some comments about 
  61543. a divide overflow error when running under Windows.  These comments are
  61544. omitted from the beware file in the Beta-14 distribution.  Is this
  61545. because MSK3.14 is no longer susceptible to this problem?  I ask because
  61546. I'm getting reports of the problem from a 3.13 user and it would be nice
  61547. to give him the good news that the problem is fixed in the next release.
  61548.  
  61549.  Mike Smith                                  mike@ccs.queensu.ca
  61550.  Queen's University                          Michael.D.Smith@QueensU.CA
  61551.  Computing and Communications Services       (613) 545-2024
  61552. -- 
  61553.  
  61554.  Mike Smith                                  mike@ccs.queensu.ca
  61555.  Queen's University                          Michael.D.Smith@QueensU.CA
  61556.  Computing and Communications Services       (613) 545-2024
  61557.  
  61558. From news@columbia.edu Tue Dec 13 22:07:07 1994
  61559. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12960
  61560.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 13 Dec 1994 19:31:26 -0500
  61561. Received: by apakabar.cc.columbia.edu id AA22353
  61562.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 13 Dec 1994 19:31:23 -0500
  61563. Newsgroups: comp.protocols.kermit.misc
  61564. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!europa.eng.gtefsd.com!howland.reston.ans.net!news.sprintlink.net!EU.net!chsun!pan!jw
  61565. From: jw@adasoft.ch (Jamie Watson)
  61566. Subject: Re: 3.14 beta 14 and PC/TCP
  61567. Message-Id: <D0rs3v.L9K@adasoft.ch>
  61568. Reply-To: jw@adasoft.ch (Jamie Watson)
  61569. Organization: Adasoft AG, Switzerland
  61570. References: <D0n8CD.Gn8@adasoft.ch> <1994Dec11.104027.35139@cc.usu.edu>
  61571. Date: Tue, 13 Dec 1994 22:07:07 GMT
  61572. Expires: Mon, 12 Dec 1994 23:00:00 GMT
  61573. Lines: 41
  61574. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  61575.  
  61576. In article <1994Dec11.104027.35139@cc.usu.edu> jrd@cc.usu.edu (Joe Doupnik) writes:
  61577. >    The situation is easy to clarify. SET PORT TCP in Kermit means
  61578. >to use Kermit's internal TCP/IP stack. That stack requires either a suitable
  61579. >Packet Driver or ODI to talk to the lan adapter. FTP Inc's stack does more
  61580. >or less the same thing. You loaded FTP Inc's stack and then told Kermit to
  61581. >go to the same board and grab it; you are not running "over FTP Inc's stack."
  61582. >I'm surprized that you we able to run Kermit over the board with FTP still
  61583. >using all the TCP/IP material. 
  61584.  
  61585. Sigh.  I'm really sorry for having asked such a bonehead question.  I read
  61586. about this restriction in several different places, but I am obviously
  61587. not knowledgeable enough about DOS and networking to have understood what
  61588. it really meant.  I had assumed that it meant that I couldn't run kermit
  61589. and one of the PC/TCP utilities at the same time, but now that I stop to
  61590. think about that, it's a pretty silly idea under DOS; I guess it just
  61591. shows that my mind has frozen into Unix-based thought patterns.  Anyway,
  61592. I just tried unloading the PC/TCP stack (inet unload) before starting
  61593. kermit, and then reloading it (ethdrv) after terminating kermit, and it
  61594. works just fine.  Thanks for the help.
  61595.  
  61596. >    If you want FTP Inc's stack to remain resident and run Kermit
  61597. >over the top of it you must use FTP's TNGLASS program, and tell Kermit
  61598. >SET PORT BIOS1.
  61599.  
  61600. This still doesn't work for me, even with Beta-15 installed.  I first
  61601. tried just "tnglass pan", and it connects just fine.  I then tried the
  61602. command specified in networks/setup.doc, and found that I had to change
  61603. the argument format somewhat to even get it to accept the command, but
  61604. it still doesn't work.  The command I gave was:
  61605.  
  61606.     tnglass pan -c 0 -i -e kermit.exe set port bios1 , connect
  61607.  
  61608. This starts the tnglass program, and then starts kermit, but it immediately
  61609. says "Connection closed".  I have tried just starting kermit without the
  61610. commands on the command line, then given the bios1 and conect to kermit
  61611. myself, but I got the same result.  Am I still doing something wrong?  By
  61612. the way, I am using PC/TCP version 3.0, so that might explain at least the
  61613. difference in command line parsing; I assume that the setup.doc file was
  61614. written based on PC/TCP version 2.3 or earlier.
  61615.  
  61616. jw
  61617.  
  61618. From news@columbia.edu Sun Dec 14 00:12:30 1994
  61619. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16347
  61620.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 13 Dec 1994 20:52:07 -0500
  61621. Received: by apakabar.cc.columbia.edu id AA29329
  61622.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 13 Dec 1994 20:52:05 -0500
  61623. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!udel!gatech!swrinde!cs.utexas.edu!news.unt.edu!hermes.oc.com!convex!not-for-mail
  61624. From: hart@convex.com (Wesley Hart)
  61625. Newsgroups: comp.protocols.kermit.misc
  61626. Subject: Re: Highlighted subject line when reading news
  61627. Date: 13 Dec 1994 18:12:30 -0600
  61628. Organization: CONVEX News Network, Engineering (cnn.eng), Richardson, Tx USA
  61629. Lines: 15
  61630. Message-Id: <3cld9e$i93@bach.convex.com>
  61631. References: <3ckjds$ot6@bigboote.WPI.EDU>
  61632. Nntp-Posting-Host: bach.convex.com
  61633. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  61634.  
  61635. In <3ckjds$ot6@bigboote.WPI.EDU> eeyore@wpi.WPI.EDU ( Eeyore ) writes:
  61636.  
  61637. >    This very old AT&T monitor makes it very difficult to see the
  61638. >    words in the subject when they are highlighted.  Is there a
  61639. >    way to turn it off?
  61640. >                Thanks a lot.
  61641.  
  61642. I'd be very interested in seeing this as well.  Right now it looks like
  61643. kermit's displaying cyan text on a green background - nearly impossible
  61644. to read.
  61645. -- 
  61646. Wesley Hart                     "Optimism -- The belief that everything
  61647. Software Product Engineer        will work out well.  Irrational;
  61648. hart@bach.convex.com             bordering on insane"
  61649. Phone: (214)497-4501                                -- The Armageddon Factor
  61650.  
  61651. From news@columbia.edu Wed Dec 14 07:57:46 1994
  61652. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01395
  61653.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 14 Dec 1994 02:57:53 -0500
  61654. Received: by apakabar.cc.columbia.edu id AA23105
  61655.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 14 Dec 1994 02:57:51 -0500
  61656. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!europa.eng.gtefsd.com!news.mathworks.com!panix!not-for-mail
  61657. From: ami@panix.com (Ami Bar-Yadin)
  61658. Newsgroups: comp.protocols.kermit.misc
  61659. Subject: Protected fields in MS-DOS Kermit 3.14 beta-15
  61660. Date: 14 Dec 1994 02:57:46 -0500
  61661. Organization: Meemi Selfand Ink
  61662. Lines: 18
  61663. Message-Id: <D6LxkSng1Cy5075yn@panix.com>
  61664. References: <1994Dec11.193319.35169@cc.usu.edu>,<V9zukSng1OX5073yn@panix.com>
  61665. Nntp-Posting-Host: panix.com
  61666. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  61667.  
  61668. I tested protected fields in beta-15 and they still don't work.
  61669. I used the same unix shell script I showed in my previous post
  61670. (dated 5 Dec 1994):
  61671.  
  61672. ---snip---
  61673. #!/usr/bin/ksh
  61674. fg="\033[2\"q"
  61675. bk="\033[1\"q"
  61676. cf="\033[?2J"
  61677. echo "${fg}foreground${bk}background${fg}foreground${bk}background${fg}${cf}"
  61678. ---snip---
  61679.  
  61680. As before Kermit responds with a blank screen with the shell prompt
  61681. towards the top.  Both "foreground" and "background" words are
  61682. erased, which should not happen - the "background" words should not
  61683. be erased.
  61684. --
  61685. Ami Bar-Yadin (ami@panix.com)
  61686.  
  61687. From news@columbia.edu Wed Dec  7 21:44:02 1994
  61688. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02945
  61689.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 14 Dec 1994 03:48:06 -0500
  61690. Received: by apakabar.cc.columbia.edu id AA24824
  61691.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 14 Dec 1994 03:48:04 -0500
  61692. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!gatech!bloom-beacon.mit.edu!panix!cmcl2!yale.edu!yale!CCSUA.CTSTATEU.EDU!STAMANDP
  61693. From: stamandp@CCSUA.CTSTATEU.EDU (Paul St. Amand)
  61694. Newsgroups: comp.protocols.kermit.misc
  61695. Subject: C-Kermit 5A(190) log session file type?
  61696. Date: 7 Dec 1994 21:44:02 GMT
  61697. Organization: Central Connecticut State University, New Britian, CT
  61698. Lines: 36
  61699. Message-Id: <3c5ab2$69o@babyblue.cs.yale.edu>
  61700. Reply-To: stamandp@CCSUA.CTSTATEU.EDU
  61701. Nntp-Posting-Host: ccsua.ctstateu.edu
  61702. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  61703.  
  61704. Hello,
  61705.  
  61706. I've noticed that when I "log session this.txt" under edit 190 that the file
  61707. record format type under VMS has changed from
  61708.  
  61709. These are the file attributes from 5A(189)
  61710.  
  61711. OLD_FILE.PRN;1                            File ID:  (17226,34,0)       
  61712. Record format:      Stream_LF, maximum 82 bytes
  61713. Record attributes:  Carriage return carriage control
  61714.  
  61715.  
  61716. These are the file attributes from 5A(190)
  61717.  
  61718. NEW_FILE.PRN;1                            File ID:  (17500,18,0)       
  61719. Record format:      Stream, maximum 82 bytes
  61720. Record attributes:  Carriage return carriage control
  61721.  
  61722.  
  61723. All the log files have a <cr> at the start of the lines and the stream record
  61724. format causes and extra linefeed on the printed output.
  61725.  
  61726. What changed the record format from stream_lf to Stream and why?
  61727.  
  61728. Any easy way around this?
  61729.  
  61730. Thanks,
  61731. -Paul St. Amand
  61732. +----------------------------------------------------------------------------+
  61733.  Paul R. St. Amand                    | INTERNET stamandp@ccsu.ctstateu.edu
  61734.  ITT Hartford, Investment Div.        | DECNET(ctstateu) CCSU::STAMANDP
  61735.  Central Connecticut State University | (203)843-4117 (Business)
  61736.  UPE Beta Chapter of Connecticut, CCSU|
  61737.                                       | 
  61738.  
  61739.  Disclaimer: These comments are mine and do not reflect the administration
  61740.  
  61741. From news@columbia.edu Sat Dec 10 09:46:14 1994
  61742. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04858
  61743.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 14 Dec 1994 04:34:03 -0500
  61744. Received: by apakabar.cc.columbia.edu id AA26352
  61745.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 14 Dec 1994 04:34:01 -0500
  61746. Newsgroups: comp.protocols.kermit.misc
  61747. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!torn!newshub.ccs.yorku.ca!newshub.ariel.cs.yorku.ca!news
  61748. From: "Archimedes L. Trajano" <cs932070@red.ariel.cs.yorku.ca>
  61749. Subject: Script question
  61750. X-Sender: cs932070@blue
  61751. Content-Type: TEXT/PLAIN; charset=US-ASCII
  61752. Message-Id: <Pine.SUN.3.90.941210044443.15336A-100000@blue>
  61753. Sender: news@red.ariel.cs.yorku.ca
  61754. Organization: York University, Department of Computer Science
  61755. Mime-Version: 1.0
  61756. Date: Sat, 10 Dec 1994 09:46:14 GMT
  61757. Lines: 13
  61758. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  61759.  
  61760. I want to add a line in my macro definition that would go like this...
  61761.  
  61762.  
  61763. do
  61764.   <statements>
  61765. until input = string
  61766.  
  61767.  
  61768. Archimedes L. Trajano        _/_/_/ _/   _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
  61769. cs932070@ariel.cs.yorku.ca  _/  _/ _/     _/  York University
  61770. (IRC: Overdrive)           _/_/_/ _/     _/  Department of Computer Science
  61771. _/_/_/_/_/_/_/_/_/_/_/_/_/_/  _/ _/_/_/ _/  North York, Ontario, Canada
  61772.  
  61773.  
  61774. From news@columbia.edu Sat Dec 10 15:45:18 1994
  61775. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05089
  61776.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 14 Dec 1994 04:42:05 -0500
  61777. Received: by apakabar.cc.columbia.edu id AA26758
  61778.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 14 Dec 1994 04:42:04 -0500
  61779. Path: news.columbia.edu!sol.ctr.columbia.edu!math.ohio-state.edu!magnus.acs.ohio-state.edu!usenet.ins.cwru.edu!lerc.nasa.gov!purdue!mozo.cc.purdue.edu!coastal.ecn.purdue.edu!laird
  61780. From: laird@coastal.ecn.purdue.edu (Kyler Laird)
  61781. Newsgroups: comp.protocols.kermit.misc,comp.os.os2.networking.tcp-ip
  61782. Subject: Can CKermit for OS/2 and SLIP share?
  61783. Date: 10 Dec 1994 15:45:18 GMT
  61784. Organization: Purdue University
  61785. Lines: 16
  61786. Message-Id: <3cciee$luj@mozo.cc.purdue.edu>
  61787. Nntp-Posting-Host: coastal.ecn.purdue.edu
  61788. X-Newsreader: NN version 6.5.0 (NOV)
  61789. Xref: news.columbia.edu comp.protocols.kermit.misc:1358 comp.os.os2.networking.tcp-ip:9529
  61790. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  61791.  
  61792. I need to send a BREAK signal as part of my login and
  61793. the only way I know of to do this is with Kermit.
  61794. The problem I'm running into now is that I can't call
  61795. ckermit as my slip.exe -connect option, nor can I
  61796. execute slip.exe from ckermit.  Each time, I run into
  61797. a problem with both programs wanting complete control
  61798. of the port.
  61799.  
  61800. Is there a way to get either program to share the
  61801. port?  Ideally, I would get slip to look like an
  61802. external protocol, but at this point I'd be happy
  61803. with kermit acting as a slip dialer.
  61804.  
  61805. Thanks!
  61806.  
  61807. --kyler
  61808.  
  61809. From news@columbia.edu Sat Dec 10 03:01:45 1994
  61810. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05235
  61811.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 14 Dec 1994 04:46:19 -0500
  61812. Received: by apakabar.cc.columbia.edu id AA26912
  61813.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 14 Dec 1994 04:46:18 -0500
  61814. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  61815. From: jrd@cc.usu.edu (Joe Doupnik)
  61816. Newsgroups: comp.protocols.kermit.misc,comp.protocols.ppp
  61817. Subject: Re: [?] Merit PPP and MS-DOS Kermit 3.13 PL17
  61818. Message-Id: <1994Dec10.090145.35091@cc.usu.edu>
  61819. Date: 10 Dec 94 09:01:45 MDT
  61820. References: <D0L9oo.J6I@indirect.com>
  61821. Organization: Utah State University
  61822. Lines: 12
  61823. Xref: news.columbia.edu comp.protocols.kermit.misc:1359 comp.protocols.ppp:7770
  61824. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  61825.  
  61826. In article <D0L9oo.J6I@indirect.com>, monty@indirect.com (Jim Monty) writes:
  61827. > Can I run MS-DOS Kermit 3.13 over a PPP (specifically, Merit PPP) 
  61828. > connection?  If so, how?  Exactly.
  61829. -----------
  61830.     The indications are that "etherppp" provides an Ethernet Packet
  61831. Driver interface to applications. I phrase this as indications because
  61832. I've never been able to get etherppp to avoid hanging my PC as it installs
  61833. itself in memory. If you get it to install cleanly then treat it as an
  61834. Ethernet (which kind???, hopefully DIX/Ethernet_II/regular) Packet Driver.
  61835. By default Kermit will look for a Packet Driver when its internal TCP/IP
  61836. stack begins.
  61837.     Joe D.
  61838.  
  61839. From news@columbia.edu Sat Dec 10 16:14:11 1994
  61840. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05270
  61841.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 14 Dec 1994 04:47:02 -0500
  61842. Received: by apakabar.cc.columbia.edu id AA27041
  61843.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 14 Dec 1994 04:47:00 -0500
  61844. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!bloom-beacon.mit.edu!gatech!howland.reston.ans.net!news.sprintlink.net!sundog.tiac.net!max.tiac.net!ciaraldi
  61845. From: ciaraldi@max.tiac.net (Michael Ciaraldi)
  61846. Newsgroups: comp.protocols.kermit.misc
  61847. Subject: Re: Flow Control in MS-DOS Kermit 3.14
  61848. Date: 10 Dec 1994 16:14:11 GMT
  61849. Organization: The Internet Access Company
  61850. Lines: 34
  61851. Message-Id: <3cck4j$cbs@sundog.tiac.net>
  61852. References: <1994Dec7.095922.34783@cc.usu.edu> <3c7enb$atf@sundog.tiac.net> <1994Dec9.201750.35072@cc.usu.edu>
  61853. Nntp-Posting-Host: max.tiac.net
  61854. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  61855.  
  61856. In article <1994Dec9.201750.35072@cc.usu.edu> jrd@cc.usu.edu (Joe Doupnik) writes:
  61857. >In article <3c7enb$atf@sundog.tiac.net>, ciaraldi@max.tiac.net (Michael Ciaraldi) writes:
  61858.  
  61859. >    In the user's manual is the keyboard verb \kholdscrn. That is
  61860. >equivalent to DEC's HoldScreen key.
  61861.  
  61862. Great. This may be just what I need. I'll try binding it to
  61863. the appropriate key.
  61864.  
  61865. >> On case 8, I asked because I was doing some tests on Kermit
  61866. >> last week and found what I thought was funny behavior.
  61867. >> I wired my PC to a Unix machine's serial port and used
  61868. >> another comm program on the Unix machine to talk to that port.
  61869. >> The Unix machine was set for no flow control.
  61870. >> I gave the command SET FLOW XON to the PC Kermit,
  61871. >> then did a TRANSMIT. The contents of the file started
  61872. >> appearing in the window on my Unix machine.
  61873. >> Then I hit a ^S on the Unix machine. The PC kept sending the file.
  61874. >> Shouldn't Kermit have stopped sending the file until
  61875. >> it received a ^Q?
  61876. >    I have no idea what the Unix machine actually sent, if anything.
  61877. >Tell MS-DOS Kermit SET DEBUG ON and enter Connect mode to debug the
  61878. >Unix side. MSK should respond to the XOFF, and when it has something
  61879. >to send while blocked it will wait about 8-10 seconds before breaking
  61880. >through and sending (a deadlock prevention mechanism).
  61881.  
  61882. I'll try this and report back if there is a problem.
  61883. I have a tester on the serial line so I can tell if a character
  61884. got sent out the serial port or not.
  61885.  
  61886. Thanks for the details, Joe!
  61887.  
  61888. --Mike Ciaraldi
  61889.   (now an even-more-satisfied Kermit user)
  61890.  
  61891. From news@columbia.edu Fri Dec  9 10:06:56 1994
  61892. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09761
  61893.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 14 Dec 1994 06:25:12 -0500
  61894. Received: by apakabar.cc.columbia.edu id AA01137
  61895.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 14 Dec 1994 06:25:10 -0500
  61896. Newsgroups: comp.protocols.kermit.misc
  61897. Path: news.columbia.edu!sol.ctr.columbia.edu!caen!uwm.edu!vixen.cso.uiuc.edu!howland.reston.ans.net!agate!usenet.hana.nm.kr!sun330.snu.ac.kr!usenet
  61898. From: u3311007@power3.snu.ac.kr ()
  61899. Subject: Binary Transfer
  61900. Message-Id: <1994Dec9.100656.12550@news.snu.ac.kr>
  61901. Sender: usenet@sun330.snu.ac.kr (NEWS POSTER)
  61902. Nntp-Posting-Host: 147.46.10.27
  61903. Organization: SNU,KOREA
  61904. X-Newsreader: TIN [version 1.1 PL9]
  61905. Date: Fri, 9 Dec 94 10:06:56 GMT
  61906. Lines:       15
  61907. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  61908.  
  61909. Hello.
  61910.  
  61911. I'm using C-Kermit 5A.
  61912. But there some problem in transfering binary files.
  61913. When I transfer binary file from another internet site,
  61914. the size of the file becomes larger!
  61915. even if I set the parameters right.
  61916.  
  61917. > set file type binary
  61918.  
  61919. I don't know the version of the remote kermit.
  61920.  
  61921. please tell me what is the problem.
  61922.  
  61923.  
  61924. From news@columbia.edu Sat Dec 10 21:02:19 1994
  61925. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16265
  61926.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 14 Dec 1994 06:38:40 -0500
  61927. Received: by apakabar.cc.columbia.edu id AA01535
  61928.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 14 Dec 1994 06:38:39 -0500
  61929. Newsgroups: comp.protocols.kermit.misc
  61930. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!EU.net!sun4nl!josv
  61931. From: jos@xos.nl (Jos Vos)
  61932. Subject: VT220 DEC User Defined Keys supported in MS-Kermit?
  61933. Message-Id: <D0M53v.2Gq@inter.NL.net>
  61934. Sender: josv@inter.nl.net (Jos Vos)
  61935. Reply-To: josv@inter.nl.net (Jos Vos)
  61936. Organization: X/OS Experts in Open Systems, Amsterdam, The Netherlands
  61937. Date: Sat, 10 Dec 1994 21:02:19 GMT
  61938. Lines: 11
  61939. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  61940.  
  61941. One of my customers wants to use a MS-DOS or MS-Windows emulator
  61942. which is able to support the DECUDK (DEC User Defined Keys) feature
  61943. of VT220 terminals.
  61944.  
  61945. Does Kermit (either the MS-DOS or MS-Windows version) support this
  61946. feature?
  61947.  
  61948. -- 
  61949. --    Jos Vos <jos@xos.nl>
  61950. --    X/OS Experts in Open Systems   |   Telephone: +31 20 6420481
  61951. --    Amsterdam, The Netherlands     |   Facsimile: +31 20 6145474
  61952.  
  61953. From news@columbia.edu Wed Dec 14 14:36:46 1994
  61954. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15237
  61955.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 14 Dec 1994 09:36:50 -0500
  61956. Received: by apakabar.cc.columbia.edu id AA10785
  61957.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 14 Dec 1994 09:36:49 -0500
  61958. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  61959. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  61960. Newsgroups: comp.protocols.kermit.misc
  61961. Subject: Re: Binary Transfer
  61962. Date: 14 Dec 1994 14:36:46 GMT
  61963. Organization: Columbia University
  61964. Lines: 30
  61965. Message-Id: <3cmvtu$agt@apakabar.cc.columbia.edu>
  61966. References: <1994Dec9.100656.12550@news.snu.ac.kr>
  61967. Nntp-Posting-Host: watsun.cc.columbia.edu
  61968. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  61969.  
  61970. In article <1994Dec9.100656.12550@news.snu.ac.kr>,
  61971.  <u3311007@power3.snu.ac.kr> wrote:
  61972. >I'm using C-Kermit 5A.
  61973. >But there some problem in transfering binary files.
  61974. >When I transfer binary file from another internet site,
  61975. >the size of the file becomes larger!
  61976. >even if I set the parameters right.
  61977. >
  61978. >> set file type binary
  61979. >
  61980. >I don't know the version of the remote kermit.
  61981. >
  61982. >please tell me what is the problem.
  61983. >
  61984. It is hard to say without knowing which software is on
  61985. the other end.
  61986.  
  61987. The general rule for modern Kermit software is: give the
  61988. command SET FILE TYPE BINARY to the file sender and it
  61989. will automatically tell the file receiver that the transfer
  61990. mode is binary.
  61991.  
  61992. But since you do not know which software is on the other end,
  61993. it is possible that this software does not support the
  61994. transfer-mode notification feature.
  61995.  
  61996. Therefore, when in doubt, tell BOTH Kermit programs to
  61997. SET FILE TYPE BINARY.
  61998.  
  61999. - Frank
  62000.  
  62001. From news@columbia.edu Wed Dec 14 14:39:21 1994
  62002. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15423
  62003.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 14 Dec 1994 09:39:24 -0500
  62004. Received: by apakabar.cc.columbia.edu id AA10911
  62005.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 14 Dec 1994 09:39:23 -0500
  62006. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  62007. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  62008. Newsgroups: comp.protocols.kermit.misc
  62009. Subject: Re: Script question
  62010. Date: 14 Dec 1994 14:39:21 GMT
  62011. Organization: Columbia University
  62012. Lines: 16
  62013. Message-Id: <3cn02p$akt@apakabar.cc.columbia.edu>
  62014. References: <Pine.SUN.3.90.941210044443.15336A-100000@blue>
  62015. Nntp-Posting-Host: watsun.cc.columbia.edu
  62016. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  62017.  
  62018. In article <Pine.SUN.3.90.941210044443.15336A-100000@blue>,
  62019. Archimedes L. Trajano <cs932070@ariel.cs.yorku.ca> wrote:
  62020. >I want to add a line in my macro definition that would go like this...
  62021. >
  62022. >do
  62023. >  <statements>
  62024. >until input = string
  62025. >
  62026. It is relatively easy to "compile" constructions like this "by hand".
  62027.  
  62028. :LOOP
  62029.   <statements>
  62030.   INPUT <timeout> <string>
  62031.   IF FAIL GOTO LOOP
  62032.  
  62033. - Frank
  62034.  
  62035. From news@columbia.edu Wed Dec 14 14:42:49 1994
  62036. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15796
  62037.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 14 Dec 1994 09:42:54 -0500
  62038. Received: by apakabar.cc.columbia.edu id AA11252
  62039.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 14 Dec 1994 09:42:53 -0500
  62040. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  62041. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  62042. Newsgroups: comp.protocols.kermit.misc,comp.os.os2.networking.tcp-ip
  62043. Subject: Re: Can CKermit for OS/2 and SLIP share?
  62044. Date: 14 Dec 1994 14:42:49 GMT
  62045. Organization: Columbia University
  62046. Lines: 21
  62047. Message-Id: <3cn099$avf@apakabar.cc.columbia.edu>
  62048. References: <3cciee$luj@mozo.cc.purdue.edu>
  62049. Nntp-Posting-Host: watsun.cc.columbia.edu
  62050. Xref: news.columbia.edu comp.protocols.kermit.misc:1365 comp.os.os2.networking.tcp-ip:9590
  62051. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  62052.  
  62053. In article <3cciee$luj@mozo.cc.purdue.edu>,
  62054. Kyler Laird <laird@coastal.ecn.purdue.edu> wrote:
  62055. >I need to send a BREAK signal as part of my login and
  62056. >the only way I know of to do this is with Kermit.
  62057. >The problem I'm running into now is that I can't call
  62058. >ckermit as my slip.exe -connect option, nor can I
  62059. >execute slip.exe from ckermit.  Each time, I run into
  62060. >a problem with both programs wanting complete control
  62061. >of the port.
  62062. >
  62063. This will be possible in version 5A(191) of OS/2
  62064. C-Kermit, which should be available for testing fairly
  62065. soon.
  62066.  
  62067. Version 5A(191) is expected to contain only OS/2-specific
  62068. enhancements, and therefore will probably be released only
  62069. for OS/2.
  62070.  
  62071. Watch this newsgroup for announcements.
  62072.  
  62073. - Frank
  62074.  
  62075. From news@columbia.edu Wed Dec 14 14:46:16 1994
  62076. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16142
  62077.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 14 Dec 1994 09:46:21 -0500
  62078. Received: by apakabar.cc.columbia.edu id AA11462
  62079.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 14 Dec 1994 09:46:19 -0500
  62080. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  62081. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  62082. Newsgroups: comp.protocols.kermit.misc
  62083. Subject: Re: VT220 DEC User Defined Keys supported in MS-Kermit?
  62084. Date: 14 Dec 1994 14:46:16 GMT
  62085. Organization: Columbia University
  62086. Lines: 18
  62087. Message-Id: <3cn0fo$b62@apakabar.cc.columbia.edu>
  62088. References: <D0M53v.2Gq@inter.nl.net>
  62089. Nntp-Posting-Host: watsun.cc.columbia.edu
  62090. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  62091.  
  62092. In article <D0M53v.2Gq@inter.nl.net>, Jos Vos <josv@inter.NL.net> wrote:
  62093. >One of my customers wants to use a MS-DOS or MS-Windows emulator
  62094. >which is able to support the DECUDK (DEC User Defined Keys) feature
  62095. >of VT220 terminals.  Does Kermit (either the MS-DOS or MS-Windows version)
  62096. >support this feature?
  62097. >
  62098. MS-DOS Kermit, which is also the only Kermit program that we recommend
  62099. or support for Windows, does support this feature.  You should try
  62100. MS-DOS Kermit 3.14 Beta, since version 3.14 supports it better than did
  62101. previous releases, by addition of \Kverbs (\KudkF6..F20) specifically
  62102. for the UDKs, which you can assign to the keys or key-combos of your
  62103. choice.
  62104.  
  62105. Anonymous ftp to kermit.columbia.edu, directory kermit/test/bin, binary
  62106. mode, file mstibm.zip, unzip with "-d" switch, read top-level READ.ME
  62107. file to get started.
  62108.  
  62109. - Frank
  62110.  
  62111. From news@columbia.edu Wed Dec 14 14:53:34 1994
  62112. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16689
  62113.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 14 Dec 1994 09:53:43 -0500
  62114. Received: by apakabar.cc.columbia.edu id AA12098
  62115.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 14 Dec 1994 09:53:41 -0500
  62116. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  62117. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  62118. Newsgroups: comp.protocols.kermit.misc
  62119. Subject: Re: Highlighted subject line when reading news
  62120. Date: 14 Dec 1994 14:53:34 GMT
  62121. Organization: Columbia University
  62122. Lines: 27
  62123. Message-Id: <3cn0te$bpu@apakabar.cc.columbia.edu>
  62124. References: <3ckjds$ot6@bigboote.WPI.EDU> <3cld9e$i93@bach.convex.com>
  62125. Nntp-Posting-Host: watsun.cc.columbia.edu
  62126. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  62127.  
  62128. In article <3cld9e$i93@bach.convex.com>, Wesley Hart <hart@convex.com> wrote:
  62129. >In <3ckjds$ot6@bigboote.WPI.EDU> eeyore@wpi.WPI.EDU ( Eeyore ) writes:
  62130. >>    This very old AT&T monitor makes it very difficult to see the
  62131. >>    words in the subject when they are highlighted.  Is there a
  62132. >>    way to turn it off?
  62133. >
  62134. >I'd be very interested in seeing this as well.  Right now it looks like
  62135. >kermit's displaying cyan text on a green background - nearly impossible
  62136. >to read.
  62137. >
  62138. If your newsreader is like mine, it displays the subject not as
  62139. "highlighted" text, but rather as "underlined" text.
  62140.  
  62141. But color PC video adapters do not support an underlined attribute, so
  62142. MS-DOS Kermit displays underlined text in a distinct fore/background
  62143. color combination.  In version 3.13, it chose these colors automatically,
  62144. based on the regular fore/background colors.
  62145.  
  62146. In version 3.14 (still in Beta), we have a new command, SET TERMINAL
  62147. UNDERSCORE, to let you choose the underscore-simulation colors yourself.
  62148. The syntax is the same as with SET TERMINAL COLOR.
  62149.  
  62150. Anonymous ftp to kermit.columbia.edu, directory kermit/test/bin, binary
  62151. mode, file mstibm.zip, unzip with "-d" switch, read top-level READ.ME
  62152. to get started.
  62153.  
  62154. - Frank
  62155.  
  62156. From news@columbia.edu Wed Dec 14 03:04:08 1994
  62157. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26782
  62158.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 14 Dec 1994 12:01:49 -0500
  62159. Received: by apakabar.cc.columbia.edu id AA23494
  62160.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 14 Dec 1994 12:01:47 -0500
  62161. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  62162. From: jrd@cc.usu.edu (Joe Doupnik)
  62163. Newsgroups: comp.protocols.kermit.misc
  62164. Subject: Re: Protected fields in MS-DOS Kermit 3.14 beta-15
  62165. Message-Id: <1994Dec14.090409.35416@cc.usu.edu>
  62166. Date: 14 Dec 94 09:04:08 MDT
  62167. References: <1994Dec11.193319.35169@cc.usu.edu>,<V9zukSng1OX5073yn@panix.com> <D6LxkSng1Cy5075yn@panix.com>
  62168. Organization: Utah State University
  62169. Lines: 23
  62170. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  62171.  
  62172. In article <D6LxkSng1Cy5075yn@panix.com>, ami@panix.com (Ami Bar-Yadin) writes:
  62173. > I tested protected fields in beta-15 and they still don't work.
  62174. > I used the same unix shell script I showed in my previous post
  62175. > (dated 5 Dec 1994):
  62176. > ---snip---
  62177. > #!/usr/bin/ksh
  62178. > fg="\033[2\"q"
  62179. > bk="\033[1\"q"
  62180. > cf="\033[?2J"
  62181. > echo "${fg}foreground${bk}background${fg}foreground${bk}background${fg}${cf}"
  62182. > ---snip---
  62183. > As before Kermit responds with a blank screen with the shell prompt
  62184. > towards the top.  Both "foreground" and "background" words are
  62185. > erased, which should not happen - the "background" words should not
  62186. > be erased.
  62187. ------------
  62188.     That's odd, because this sequence works properly here using Beta-15.
  62189. The screen shows only the words "background" after erasure. Maybe you should
  62190. turn on debugging (SET DEBUG ON) to see what the host is actually sending.
  62191. Or make a short test file and REPLAY it locally.
  62192.     Joe D.
  62193.  
  62194. From news@columbia.edu Wed Dec 14 03:13:00 1994
  62195. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26792
  62196.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 14 Dec 1994 12:01:58 -0500
  62197. Received: by apakabar.cc.columbia.edu id AA23504
  62198.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 14 Dec 1994 12:01:51 -0500
  62199. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  62200. From: jrd@cc.usu.edu (Joe Doupnik)
  62201. Newsgroups: comp.protocols.kermit.misc
  62202. Subject: Re: Intermittent Problem with Kermit Under Windows
  62203. Message-Id: <1994Dec14.091300.35417@cc.usu.edu>
  62204. Date: 14 Dec 94 09:13:00 MDT
  62205. References: <94340.130308SMITHM@qucdn.queensu.ca> <3cbbtd$iqi@apakabar.cc.columbia.edu> <1994Dec11.212311.35180@cc.usu.edu> <3ckqjv$v74@quartz.ucs.ualberta.ca>
  62206. Organization: Utah State University
  62207. Lines: 30
  62208. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  62209.  
  62210. In article <3ckqjv$v74@quartz.ucs.ualberta.ca>, Ken.Crossman@ualberta.ca (ken crossman) writes:
  62211. > Hello Joe:
  62212. > Another window-ish question:
  62213. > Most of our Windows/TCPIP customers are using a Winsock stack, usually
  62214. > Novells.
  62215. > We have not been able to locate a Winsock Telnet client which
  62216. > can match the features provided by Mskermit. (diacritics, session logging).
  62217. > Do you know of any way to get Mskermit like quality from Telnet sessions 
  62218. > when using Winsock? 
  62219. --------------
  62220.     I'd like to say "there's only one" but that would not be entirely
  62221. fair. While at DOS level outside of Windows (not the DOS box) load Novell's
  62222. TELAPI after starting their TCP/IP stack. MS-DOS Kermit can use that while
  62223. in Windows, via SET PORT BIOSn, or SET PORT 3COM(BAPI), or SET PORT
  62224. NOVELL(NASI), or with a simple assistance of macro "telapi" such as
  62225.  
  62226. def telapi run tsu -o \%1 -p \%2 k1,run tsu -a k1 1,set port nov
  62227.  
  62228. (run as Kermit command telapi host.domain). 
  62229.     I think I need to remind readers that many "winsock" interfaces
  62230. are but a thin layer which reaches down to a TCP/IP stack loaded as a DOS
  62231. TSR. Not all, but many. So the attraction is more glitter (memory hogging,
  62232. more software to pass through for every byte) than one might suspect.
  62233.     Joe D.
  62234.  
  62235.  
  62236. From news@columbia.edu Wed Dec 14 19:00:00 1994
  62237. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05765
  62238.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 14 Dec 1994 14:18:43 -0500
  62239. Received: by apakabar.cc.columbia.edu id AA07157
  62240.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 14 Dec 1994 14:18:41 -0500
  62241. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!vixen.cso.uiuc.edu!rsm1.physics.uiuc.edu!lewart
  62242. From: d-lewart@uiuc.edu (Daniel S. Lewart)
  62243. Newsgroups: comp.protocols.kermit.misc
  62244. Subject: MS-Kermit 3.14 beta-15 command-line editing bug
  62245. Date: 14 Dec 94 19:00:00 GMT
  62246. Organization: DSL Consulting
  62247. Lines: 23
  62248. Message-Id: <lewart.787431308@rsm1.physics.uiuc.edu>
  62249. References: <1994Dec11.193319.35169@cc.usu.edu>
  62250. Reply-To: d-lewart@uiuc.edu (Daniel S. Lewart)
  62251. Nntp-Posting-Host: rsm1.physics.uiuc.edu
  62252. X-Newsreader: NN version 6.5.0 (NOV)
  62253. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  62254.  
  62255. jrd@cc.usu.edu (Joe Doupnik) writes:
  62256.  
  62257. >  . Fixed BIOS Int 14 redirection, which was broken a couple edits back.
  62258.  
  62259. Thanks!  Just like Int 14 redirection, the following bug really does occur.
  62260. Typing any of the following four couplets at the MS-Kermit command line
  62261. will generate an unexpected CRLF the second time:
  62262.     set duplex f<Esc><Enter>
  62263.     set duplex f<Esc>
  62264.  
  62265.     set duplex f<Esc><Enter>
  62266.     set duplex h<Esc>
  62267.  
  62268.     set duplex h<Esc><Enter>
  62269.     set duplex f<Esc>
  62270.  
  62271.     set duplex h<Esc><Enter>
  62272.     set duplex h<Esc>
  62273. where <Esc> means the Escape key and <Enter> means the Enter key.  Really.
  62274.  
  62275. Thanks again,
  62276. Daniel Lewart
  62277. d-lewart@uiuc.edu
  62278.  
  62279. From news@columbia.edu Wed Dec 14 19:27:43 1994
  62280. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06216
  62281.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 14 Dec 1994 14:27:46 -0500
  62282. Received: by apakabar.cc.columbia.edu id AA08028
  62283.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 14 Dec 1994 14:27:45 -0500
  62284. Path: news.columbia.edu!inibara.cc.columbia.edu!ycl6
  62285. From: ycl6@inibara.cc.columbia.edu (Yeechang Lee)
  62286. Newsgroups: comp.protocols.kermit.misc
  62287. Subject: Any way to get Commo-like screen updating speeds with MS-Kermit?
  62288. Date: 14 Dec 1994 19:27:43 GMT
  62289. Organization: Trilateral Commission, Columbia University student chapter
  62290. Lines: 21
  62291. Message-Id: <3cngvf$7qn@apakabar.cc.columbia.edu>
  62292. Reply-To: Yeechang Lee <ycl6@columbia.edu>
  62293. Nntp-Posting-Host: inibara-cddi.cc.columbia.edu
  62294. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  62295.  
  62296. I'm a big fan of Joe and Frank's work with MS-Kermit.  However, I am
  62297. typing this using Commo 6.0, because its screen updating speed is
  62298. magnitudes better than MS-Kermit 3.14 on my puny XT clone.  (I'm on a
  62299. 14.4k dialup connection to Columbia U.)  Previously I've written on how
  62300. Telix's screen updating is better than Kermit's as well, but Commo blows
  62301. them both out of the water!
  62302.  
  62303. I know Kermit's written with assembly, and I presume Commo is as well. 
  62304. Any hopes of speeding up the screen updates under Kermit in the future? 
  62305. And yes, I have SET TERM VIDEO-WRITING DIRECT (the default) on--it's
  62306. pretty painful if set to BIOS.
  62307.  
  62308. Pleaes note this is not a complaint in any way--Kermit's rock-solid
  62309. emulation and other features is a big, big plus.  Consider it more of a
  62310. wish for the future.
  62311.  
  62312. Thanks!
  62313. --   _____________________________________________________________________
  62314.      Yeechang Lee  (ycl6@columbia.edu)|Nevada Las Vegas Mission Jul'92-'94
  62315.      Columbia University/New York City|Celestial Kingdom through Taco Bell
  62316.      Still working on that juggling-while-I-play-the-harmonica trick . . .
  62317.  
  62318. From news@columbia.edu Mon Dec 12 19:23:01 1994
  62319. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10103
  62320.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 14 Dec 1994 15:35:01 -0500
  62321. Received: by apakabar.cc.columbia.edu id AA14420
  62322.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 14 Dec 1994 15:34:59 -0500
  62323. Newsgroups: comp.protocols.kermit.misc
  62324. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!gatech!udel!news.mathworks.com!usenet.eel.ufl.edu!usenet.cis.ufl.edu!caen!hearst.acc.Virginia.EDU!murdoch!fulton.seas.Virginia.EDU!esh6h
  62325. From: esh6h@fulton.seas.Virginia.EDU (Erik Hatcher)
  62326. Subject: SEND sending 0 byte file!
  62327. Message-Id: <D0ppuE.L0u@murdoch.acc.Virginia.EDU>
  62328. Sender: usenet@murdoch.acc.Virginia.EDU
  62329. Organization: University of Virginia
  62330. Date: Mon, 12 Dec 1994 19:23:01 GMT
  62331. Lines: 29
  62332. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  62333.  
  62334.  
  62335. I reported this problem earlier, but got no replies.
  62336. I'm running ...
  62337.  
  62338. C-Kermit 5A(190), 4 Oct 94, for OpenVMS VAX
  62339.  Copyright (C) 1985, 1994,
  62340.  
  62341.  
  62342. And have a macro to send a file like this...
  62343.  
  62344.         send \$(SENDFILE_LOCAL) \%a
  62345.  
  62346. There are some other commands in the macro besides
  62347. this, but the file pointed to by the logical SENDFILE_LOCAL
  62348. is about 700 blocks and this send is exiting in a split
  62349. second and saying that it worked fine!
  62350.  
  62351. I can follow the exact steps manually and the send works
  62352. fine.  Any advice?  What would cause the send to say
  62353. it finished successfully when in fact it didn't transmit
  62354. anything??
  62355.  
  62356. Thanks,
  62357.     Erik
  62358. --
  62359. Erik Hatcher                           + "But every now and then we just have
  62360. http://fulton.seas.virginia.edu/~esh6h |  to howl with the wolves." 
  62361.                                        |        - Werner Heisenberg
  62362. ---------------------------------------+-------------------------------------
  62363.  
  62364. From news@columbia.edu Wed Dec 14 21:22:55 1994
  62365. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14042
  62366.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 14 Dec 1994 16:22:59 -0500
  62367. Received: by apakabar.cc.columbia.edu id AA01167
  62368.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 14 Dec 1994 16:22:57 -0500
  62369. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  62370. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  62371. Newsgroups: comp.protocols.kermit.misc
  62372. Subject: Re: SEND sending 0 byte file!
  62373. Date: 14 Dec 1994 21:22:55 GMT
  62374. Organization: Columbia University
  62375. Lines: 26
  62376. Message-Id: <3cnnnf$14d@apakabar.cc.columbia.edu>
  62377. References: <D0ppuE.L0u@murdoch.acc.virginia.edu>
  62378. Nntp-Posting-Host: watsun.cc.columbia.edu
  62379. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  62380.  
  62381. In article <D0ppuE.L0u@murdoch.acc.virginia.edu>,
  62382. Erik Hatcher <esh6h@fulton.seas.Virginia.EDU> wrote:
  62383.  
  62384. >I can follow the exact steps manually and the send works
  62385. >fine.  Any advice?  What would cause the send to say
  62386. >it finished successfully when in fact it didn't transmit
  62387. >anything??
  62388.  
  62389. Sounds like a possible bug.   I would need more info, 
  62390. such as a DEBUG LOG file to be able to see what is 
  62391. happening.  
  62392.  
  62393. Create two log files:  
  62394.  
  62395. 1) done manually.
  62396.  
  62397. 2) done with the macro
  62398.  
  62399. and send them to me or kermit@columbia.edu
  62400.  
  62401. for examination.
  62402.  
  62403. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  62404. "C-Kermit: available on more platforms than any other communications software."
  62405. "Kermit FTP: sending files whenever and wherever they are needed."
  62406. *NEW* OS/2 version 5A(190): ftp kermit.columbia.edu /kermit/archives/ckoker.zip 
  62407.  
  62408. From news@columbia.edu Sun Dec 11 04:42:36 1994
  62409. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22245
  62410.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 14 Dec 1994 18:38:27 -0500
  62411. Received: by apakabar.cc.columbia.edu id AA13211
  62412.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 14 Dec 1994 18:38:26 -0500
  62413. Newsgroups: comp.protocols.kermit.misc
  62414. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!torn!newshub.ccs.yorku.ca!newshub.ariel.cs.yorku.ca!blue!cs932070
  62415. From: "Archimedes L. Trajano" <cs932070@red.ariel.cs.yorku.ca>
  62416. Subject: disable dial display
  62417. X-Sender: cs932070@blue
  62418. Content-Type: TEXT/PLAIN; charset=US-ASCII
  62419. Message-Id: <Pine.SUN.3.91.941210234040.15490A-100000@blue>
  62420. Sender: news@red.ariel.cs.yorku.ca
  62421. Organization: York University, Department of Computer Science
  62422. Mime-Version: 1.0
  62423. Date: Sun, 11 Dec 1994 04:42:36 GMT
  62424. Lines: 9
  62425. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  62426.  
  62427. How do I remove the dial progress dialog in C-Kermit?  SET DIAL DISPLAY OFF
  62428. removes the modem responses, but I want it so that nothing appears on the 
  62429. screen when I dial.
  62430.  
  62431. Archimedes L. Trajano        _/_/_/ _/   _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
  62432. cs932070@ariel.cs.yorku.ca  _/  _/ _/     _/  York University
  62433. (IRC: Overdrive)           _/_/_/ _/     _/  Department of Computer Science
  62434. _/_/_/_/_/_/_/_/_/_/_/_/_/_/  _/ _/_/_/ _/  North York, Ontario, Canada
  62435.  
  62436.  
  62437. From news@columbia.edu Sat Dec 10 16:38:45 1994
  62438. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22900
  62439.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 14 Dec 1994 18:52:33 -0500
  62440. Received: by apakabar.cc.columbia.edu id AA14256
  62441.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 14 Dec 1994 18:52:32 -0500
  62442. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!agate!dog.ee.lbl.gov!news.cs.utah.edu!cc.usu.edu!jrd
  62443. From: jrd@cc.usu.edu (Joe Doupnik)
  62444. Newsgroups: comp.protocols.kermit.misc
  62445. Subject: Re: VT220 DEC User Defined Keys supported in MS-Kermit?
  62446. Message-Id: <1994Dec10.223845.35130@cc.usu.edu>
  62447. Date: 10 Dec 94 22:38:45 MDT
  62448. References: <D0M53v.2Gq@inter.NL.net>
  62449. Organization: Utah State University
  62450. Lines: 15
  62451. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  62452.  
  62453. In article <D0M53v.2Gq@inter.NL.net>, jos@xos.nl (Jos Vos) writes:
  62454. > One of my customers wants to use a MS-DOS or MS-Windows emulator
  62455. > which is able to support the DECUDK (DEC User Defined Keys) feature
  62456. > of VT220 terminals.
  62457. > Does Kermit (either the MS-DOS or MS-Windows version) support this
  62458. > feature?
  62459. ---------------
  62460.     For a rather complete list of features and their explainations
  62461. may I direct you to the user's manual, the book "Using MS-DOS Kermit."
  62462. In there you will find that MS-DOS Kermit has supported DEC UDK's for
  62463. years. Full details of the book ident are given on screen two of the
  62464. Kermit HELP command. MS-DOS Kermit is a DOS program which runs fine
  62465. also in DOS boxes of Windows, NT and OS/2.
  62466.     Joe D.
  62467.  
  62468. From news@columbia.edu Wed Dec 14 21:30:18 1994
  62469. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23627
  62470.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 14 Dec 1994 19:05:40 -0500
  62471. Received: by apakabar.cc.columbia.edu id AA15334
  62472.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 14 Dec 1994 19:05:39 -0500
  62473. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!gatech!willis.cis.uab.edu!news.lsu.edu!unix1.sncc.lsu.edu!unix1.sncc.lsu.edu!not-for-mail
  62474. From: itspaul@unix1.sncc.lsu.edu (Paul Velardo)
  62475. Newsgroups: comp.protocols.kermit.misc
  62476. Subject: HELP! creating a delete key
  62477. Date: 14 Dec 1994 15:30:18 -0600
  62478. Organization: Louisiana State University
  62479. Lines: 8
  62480. Message-Id: <3cno5a$3ihv@unix1.sncc.lsu.edu>
  62481. Nntp-Posting-Host: unix1.sncc.lsu.edu
  62482. X-Newsreader: TIN [version 1.2 PL2]
  62483. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  62484.  
  62485. We are telling users to use the DECVT241 terminal emulator to connect to 
  62486. our system when using kermit 3.13. We have run into the problem of not 
  62487. having a destructive delete key and can't figure out how to map one onto 
  62488. the delete key itself. We have tried the SET KEY option with many 
  62489. different designations and nothing seems to work properly. All 
  62490. suggestions are welcome.
  62491.                               Thanks,
  62492.                                 PAUL 
  62493.  
  62494. From news@columbia.edu Thu Dec 15 00:52:03 1994
  62495. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26201
  62496.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 14 Dec 1994 19:52:09 -0500
  62497. Received: by apakabar.cc.columbia.edu id AA18860
  62498.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 14 Dec 1994 19:52:07 -0500
  62499. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  62500. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  62501. Newsgroups: comp.protocols.kermit.misc
  62502. Subject: Re: Any way to get Commo-like screen updating speeds with MS-Kermit?
  62503. Date: 15 Dec 1994 00:52:03 GMT
  62504. Organization: Columbia University
  62505. Lines: 29
  62506. Message-Id: <3co3vj$id9@apakabar.cc.columbia.edu>
  62507. References: <3cngvf$7qn@apakabar.cc.columbia.edu>
  62508. Nntp-Posting-Host: watsun.cc.columbia.edu
  62509. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  62510.  
  62511. In article <3cngvf$7qn@apakabar.cc.columbia.edu>,
  62512. Yeechang Lee <ycl6@columbia.edu> wrote:
  62513. >I know Kermit's written with assembly, and I presume Commo is as well. 
  62514. >Any hopes of speeding up the screen updates under Kermit in the future? 
  62515. >
  62516. I'll have to take your word that Commo updates your screen faster than
  62517. Kermit does, but on my own PC (on which I usually run MS-DOS Kermit
  62518. under plain DOS over an Ethernet connection), it's hard to imagine how
  62519. the screen updates could possibly be any faster.  If I (for example)
  62520. refresh the EMACS screen that I'm in right now by typing Ctrl-L, the
  62521. entire screen is painted instantaneously).  So I would say that the
  62522. screen-updating method is not a bottleneck.
  62523.  
  62524. On slow PCs, the CPU is a likely bottleneck.  In that case, you are
  62525. looking at tradeoffs.  Kermit's emulator does a lot more (I'm willing to
  62526. bet) than Commo's emulator.  A VT320 is an astoundingly complex terminal
  62527. compared to ANSI or VT100.
  62528.  
  62529. Also, I wonder if Commo runs in an MS-Windows window?  Kermit does, and
  62530. must take additional steps in order to do so.
  62531.  
  62532. Back in the old days, when XTs were current, MS-DOS Kermit was a lot
  62533. smaller and did less.  Like PCs and all the other software that runs on
  62534. them, it has grown with the times.
  62535.  
  62536. But at least it still runs on XTs, which is something you probably can't
  62537. say about most other popular PC software.
  62538.  
  62539. - Frank
  62540.  
  62541. From news@columbia.edu Thu Dec 15 01:02:07 1994
  62542. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26661
  62543.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 14 Dec 1994 20:02:11 -0500
  62544. Received: by apakabar.cc.columbia.edu id AA19724
  62545.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 14 Dec 1994 20:02:10 -0500
  62546. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  62547. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  62548. Newsgroups: comp.protocols.kermit.misc
  62549. Subject: Re: HELP! creating a delete key
  62550. Date: 15 Dec 1994 01:02:07 GMT
  62551. Organization: Columbia University
  62552. Lines: 29
  62553. Message-Id: <3co4if$j88@apakabar.cc.columbia.edu>
  62554. References: <3cno5a$3ihv@unix1.sncc.lsu.edu>
  62555. Nntp-Posting-Host: watsun.cc.columbia.edu
  62556. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  62557.  
  62558. In article <3cno5a$3ihv@unix1.sncc.lsu.edu>,
  62559. Paul Velardo <itspaul@unix1.sncc.lsu.edu> wrote:
  62560. >We are telling users to use the DECVT241 terminal emulator...
  62561. >
  62562. You mean VT220?
  62563.  
  62564. >to connect to our system when using kermit 3.13.
  62565. >We have run into the problem of not having a destructive delete
  62566. >key and can't figure out how to map one onto the delete key itself.
  62567. >
  62568. The Delete key sends the Delete character (\127) unless you tell it
  62569. otherwise.  The other common choice is Backspace (\8).  If neither
  62570. of these work for you, then you are probably facing a host or
  62571. application that wants something else.  Kermit does not know what
  62572. your application wants -- it is up to you to make them agree.
  62573.  
  62574. The trick is to either:
  62575.  
  62576.  (a) Find out what the application wants and then use SET KEY to
  62577.      assign the desired sequence to the desired key, or:
  62578.  
  62579.  (b) Reconfigure the application to accept a different character
  62580.      as a destructive backspace.
  62581.  
  62582. Some applications actually want you to send the following sequence
  62583. in order to do a destructive backspace: \8\32\8 - try that.  Or try
  62584. the arrow-key equivalent, \27OD\32\27OD, or \27[D\32\27[D.
  62585.  
  62586. - Frank
  62587.  
  62588. From news@columbia.edu Thu Dec 15 01:32:53 1994
  62589. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28369
  62590.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 14 Dec 1994 20:32:58 -0500
  62591. Received: by apakabar.cc.columbia.edu id AA22110
  62592.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 14 Dec 1994 20:32:56 -0500
  62593. Path: news.columbia.edu!namaste.cc.columbia.edu!ycl6
  62594. From: ycl6@columbia.edu (Yeechang Lee)
  62595. Newsgroups: comp.protocols.kermit.misc
  62596. Subject: Re: Any way to get Commo-like screen updating speeds with MS-Kermit?
  62597. Date: 15 Dec 1994 01:32:53 GMT
  62598. Organization: Trilateral Commission, Columbia University student chapter
  62599. Lines: 18
  62600. Message-Id: <3co6c5$lis@apakabar.cc.columbia.edu>
  62601. References: <3cngvf$7qn@apakabar.cc.columbia.edu> <3co3vj$id9@apakabar.cc.columbia.edu>
  62602. Reply-To: Yeechang Lee <ycl6@columbia.edu>
  62603. Nntp-Posting-Host: namaste-cddi.cc.columbia.edu
  62604. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  62605.  
  62606. In article <3co3vj$id9@apakabar.cc.columbia.edu>,
  62607. Frank da Cruz <fdc@watsun.cc.columbia.edu> wrote:
  62608. |Kermit's emulator does a lot more (I'm willing to
  62609. |bet) than Commo's emulator.
  62610.  
  62611. No disagreements here, though Commo's VT102 emulation is better than
  62612. most.
  62613.  
  62614. |A VT320 is an astoundingly complex terminal
  62615. |compared to ANSI or VT100.
  62616.  
  62617. I've tried SET TERM VT102, but it doesn't seem any faster than in VT320
  62618. mode . . .
  62619.  
  62620. --   _____________________________________________________________________
  62621.      Yeechang Lee  (ycl6@columbia.edu)|Nevada Las Vegas Mission Jul'92-'94
  62622.      Columbia University/New York City|Celestial Kingdom through Taco Bell
  62623.      Still working on that juggling-while-I-play-the-harmonica trick . . .
  62624.  
  62625. From news@columbia.edu Fri Dec  9 23:00:51 1994
  62626. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14174
  62627.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 15 Dec 1994 02:30:15 -0500
  62628. Received: by apakabar.cc.columbia.edu id AA02977
  62629.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 15 Dec 1994 02:30:13 -0500
  62630. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!swrinde!howland.reston.ans.net!vixen.cso.uiuc.edu!adam
  62631. From: adam@symcom.math.uiuc.edu (Adam H. Lewenberg)
  62632. Newsgroups: comp.protocols.kermit.misc
  62633. Subject: Ckermit OS/2 (190) and Ctrl-C
  62634. Date: 9 Dec 1994 23:00:51 GMT
  62635. Organization: University of Illinois at Urbana-Champaign Math department
  62636. Lines: 14
  62637. Distribution: usa
  62638. Message-Id: <3canj3$4rb@vixen.cso.uiuc.edu>
  62639. Nntp-Posting-Host: orion.math.uiuc.edu
  62640. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  62641.  
  62642. It seems that with the new version of OS/2 CKermit (190), almost anytime I
  62643. type Ctrl-C the entire program terminates. I don't think I ever had
  62644. this happen in the old version. For example, if I start CKermit from
  62645. the Presentation Manager and type Ctrl-C at the CKermit prompt, the
  62646. program promptly exits. Is this _supposed_ to happen? 
  62647.  
  62648.   Thanks, Adam H. Lewenberg    adam@math.uiuc.edu
  62649.  
  62650. P.S. To confuse matters, at the same time I switched to version 190 I
  62651. also replaced OS/2 2.11 with OS/2 Warp. 
  62652. -- 
  62653. University of Illinois at Champaign-Urbana, Dept. Of Mathematics
  62654. INTERNET: adam@math.uiuc.edu   or    a-lewenberg@uiuc.edu
  62655.  
  62656.  
  62657. From news@columbia.edu Thu Dec 15 02:57:35 1994
  62658. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14831
  62659.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 15 Dec 1994 02:51:23 -0500
  62660. Received: by apakabar.cc.columbia.edu id AA03876
  62661.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 15 Dec 1994 02:51:22 -0500
  62662. Path: news.columbia.edu!sol.ctr.columbia.edu!math.ohio-state.edu!uwm.edu!news.alpha.net!news.mathworks.com!bigboote.WPI.EDU!wpi.WPI.EDU!eeyore
  62663. From: eeyore@wpi.WPI.EDU ( Eeyore )
  62664. Newsgroups: comp.protocols.kermit.misc
  62665. Subject: Re: Highlighted subject line when reading news
  62666. Date: 15 Dec 1994 02:57:35 GMT
  62667. Organization: Worcester Polytechnic Institute
  62668. Lines: 19
  62669. Message-Id: <3cobav$7mm@bigboote.WPI.EDU>
  62670. References: <3ckjds$ot6@bigboote.WPI.EDU> <3cld9e$i93@bach.convex.com> <1994Dec14.083711.35412@cc.usu.edu>
  62671. Nntp-Posting-Host: wpi.wpi.edu
  62672. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  62673.  
  62674. In article <1994Dec14.083711.35412@cc.usu.edu> jrd@cc.usu.edu (Joe Doupnik) writes:
  62675. >In article <3cld9e$i93@bach.convex.com>, hart@convex.com (Wesley Hart) writes:
  62676. >> In <3ckjds$ot6@bigboote.WPI.EDU> eeyore@wpi.WPI.EDU ( Eeyore ) writes:
  62677. >> 
  62678. >>>    This very old AT&T monitor makes it very difficult to see the
  62679. >>>    words in the subject when they are highlighted.  Is there a
  62680. >>>    way to turn it off?
  62681. >>>                Thanks a lot.
  62682. >> 
  62683. >> I'd be very interested in seeing this as well.  Right now it looks like
  62684. >> kermit's displaying cyan text on a green background - nearly impossible
  62685. >> to read.
  62686. >---------
  62687. >    So use the SET TERMINAL COLOR command and choose colors which you
  62688. >prefer. Did I miss a point here?
  62689. >    Joe D.
  62690.  
  62691.     Maybe *I* missed something here.  I tried typing SET TERMINAL
  62692.     COLOR while in Kermit, and it didn't recognize it.
  62693.  
  62694. From news@columbia.edu Thu Dec 15 14:27:16 1994
  62695. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26067
  62696.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 15 Dec 1994 09:27:24 -0500
  62697. Received: by apakabar.cc.columbia.edu id AA20300
  62698.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 15 Dec 1994 09:27:23 -0500
  62699. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  62700. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  62701. Newsgroups: comp.protocols.kermit.misc
  62702. Subject: Re: Ckermit OS/2 (190) and Ctrl-C
  62703. Date: 15 Dec 1994 14:27:16 GMT
  62704. Organization: Columbia University
  62705. Lines: 26
  62706. Distribution: usa
  62707. Message-Id: <3cpjo4$jq4@apakabar.cc.columbia.edu>
  62708. References: <3canj3$4rb@vixen.cso.uiuc.edu>
  62709. Nntp-Posting-Host: watsun.cc.columbia.edu
  62710. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  62711.  
  62712. In article <3canj3$4rb@vixen.cso.uiuc.edu>,
  62713. Adam H. Lewenberg <adam@symcom.math.uiuc.edu> wrote:
  62714. >It seems that with the new version of OS/2 CKermit (190), almost anytime I
  62715. >type Ctrl-C the entire program terminates. I don't think I ever had
  62716. >this happen in the old version. For example, if I start CKermit from
  62717. >the Presentation Manager and type Ctrl-C at the CKermit prompt, the
  62718. >program promptly exits. Is this _supposed_ to happen? 
  62719. >
  62720. >  Thanks, Adam H. Lewenberg    adam@math.uiuc.edu
  62721. >
  62722. >P.S. To confuse matters, at the same time I switched to version 190 I
  62723. >also replaced OS/2 2.11 with OS/2 Warp. 
  62724.  
  62725.  
  62726. No, of course, it isn't supposed to happen.  But you are the first person
  62727. whom I am hearing it from.  I am running 190 on WARP without problems.
  62728. What are you doing when you type Ctrl-C?
  62729.  
  62730. And contact me off line about this because newsfeeds are just too slow.
  62731.  
  62732.  
  62733.  
  62734. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  62735. "C-Kermit: available on more platforms than any other communications software."
  62736. "Kermit FTP: sending files whenever and wherever they are needed."
  62737. *NEW* OS/2 version 5A(190): ftp kermit.columbia.edu /kermit/archives/ckoker.zip 
  62738.  
  62739. From news@columbia.edu Thu Dec 15 14:50:35 1994
  62740. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27692
  62741.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 15 Dec 1994 09:50:41 -0500
  62742. Received: by apakabar.cc.columbia.edu id AA21736
  62743.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 15 Dec 1994 09:50:39 -0500
  62744. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  62745. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  62746. Newsgroups: comp.protocols.kermit.misc
  62747. Subject: Re: Highlighted subject line when reading news
  62748. Date: 15 Dec 1994 14:50:35 GMT
  62749. Organization: Columbia University
  62750. Lines: 34
  62751. Message-Id: <3cpl3r$l74@apakabar.cc.columbia.edu>
  62752. References: <3ckjds$ot6@bigboote.WPI.EDU> <3cld9e$i93@bach.convex.com> <1994Dec14.083711.35412@cc.usu.edu> <3cobav$7mm@bigboote.wpi.edu>
  62753. Nntp-Posting-Host: watsun.cc.columbia.edu
  62754. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  62755.  
  62756. In article <3cobav$7mm@bigboote.wpi.edu>, Eeyore  <eeyore@wpi.WPI.EDU> wrote:
  62757. >In article <1994Dec14.083711.35412@cc.usu.edu> jrd@cc.usu.edu (Joe Doupnik) writes:
  62758. >>In article <3cld9e$i93@bach.convex.com>, hart@convex.com (Wesley Hart) writes:
  62759. >>> In <3ckjds$ot6@bigboote.WPI.EDU> eeyore@wpi.WPI.EDU ( Eeyore ) writes:
  62760. >>>>    This very old AT&T monitor makes it very difficult to see the
  62761. >>>>    words in the subject when they are highlighted.  Is there a
  62762. >>>>    way to turn it off?
  62763. >>> I'd be very interested in seeing this as well.  Right now it looks like
  62764. >>> kermit's displaying cyan text on a green background - nearly impossible
  62765. >>> to read.
  62766. >>So use the SET TERMINAL COLOR command and choose colors which you
  62767. >>prefer. Did I miss a point here?
  62768. >
  62769. >    Maybe *I* missed something here.  I tried typing SET TERMINAL
  62770. >    COLOR while in Kermit, and it didn't recognize it.
  62771. >
  62772. This kind of confusion comes up because of the delays inherent in news.
  62773. This question was already asked and answered, but you evidently did not see
  62774. the answer before posting the question, but by now you probably have seen
  62775. the answer, so I don't think I need to post it again.  Please wait a couple
  62776. days and if you still haven't seen it, send email to kermit@columbia.edu.
  62777.  
  62778. - Frank
  62779. x
  62780. x
  62781. x
  62782. x
  62783. x
  62784. x
  62785. x
  62786. x
  62787. x
  62788.  
  62789.  
  62790.  
  62791. From news@columbia.edu Thu Dec 15 08:00:10 1994
  62792. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24848
  62793.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 15 Dec 1994 16:44:44 -0500
  62794. Received: by apakabar.cc.columbia.edu id AA08903
  62795.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 15 Dec 1994 16:44:42 -0500
  62796. Path: news.columbia.edu!panix!news.mathworks.com!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  62797. From: jrd@cc.usu.edu (Joe Doupnik)
  62798. Newsgroups: comp.protocols.kermit.misc
  62799. Subject: Re: naive script writing question
  62800. Message-Id: <1994Dec15.140011.35538@cc.usu.edu>
  62801. Date: 15 Dec 94 14:00:10 MDT
  62802. References: <KSHAW.94Dec15093136@jobe.shell.portal.com>
  62803. Distribution: world
  62804. Organization: Utah State University
  62805. Lines: 19
  62806. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  62807.  
  62808. In article <KSHAW.94Dec15093136@jobe.shell.portal.com>, kshaw@jobe.shell.portal.com (kendall thomason shaw) writes:
  62809. > Hello, I've attempted to write a script to dial my service provider:
  62810. > def portal -
  62811. >   set flow rts/cts -
  62812. >   d {portal} -
  62813. >   if fail end 1 -
  62814. >   c -
  62815. >   pause 2 -
  62816. >   out \15 -
  62817. > etc.
  62818. > However the if fail etc. get's taken as arguments to the dial script.
  62819. > How do I delimit portal if that's my problem?
  62820. ----------
  62821.     Commas denote "end of line" in macros. It's in the fine manual, etc.
  62822.     Joe D.
  62823.  
  62824. From news@columbia.edu Thu Dec 15 08:10:30 1994
  62825. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24929
  62826.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 15 Dec 1994 16:45:20 -0500
  62827. Received: by apakabar.cc.columbia.edu id AA08981
  62828.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 15 Dec 1994 16:45:18 -0500
  62829. Path: news.columbia.edu!panix!news.mathworks.com!europa.eng.gtefsd.com!gatech!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  62830. From: jrd@cc.usu.edu (Joe Doupnik)
  62831. Newsgroups: comp.protocols.kermit.misc
  62832. Subject: Re: Status line
  62833. Message-Id: <1994Dec15.141031.35539@cc.usu.edu>
  62834. Date: 15 Dec 94 14:10:30 MDT
  62835. References: <KSHAW.94Dec8032548@jobe.shell.portal.com> <1994Dec8.220403.34973@cc.usu.edu><1994Dec12.010826.7025@ais.com> <KSHAW.94Dec15090759@jobe.shell.portal.com>
  62836. Distribution: world
  62837. Organization: Utah State University
  62838. Lines: 98
  62839. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  62840.  
  62841. In article <KSHAW.94Dec15090759@jobe.shell.portal.com>, 
  62842.  kshaw@jobe.shell.portal.com (kendall thomason shaw) writes:
  62843. >>>>>> "b" == bruce  <bruce@ais.com> writes:
  62844. >     b> In article <1994Dec8.220403.34973@cc.usu.edu>, jrd@cc.usu.edu
  62845. >     b> (Joe Doupnik) writes:
  62846. >     b> This is very dependent on which exact VT terminal you're
  62847. >     b> talking about.  For the VT300 series, there is no way to
  62848. >     b> incorporate the status line as part of the main screen,
  62849. > Okay, but I'm not trying to incorporate the status line as part of the
  62850. > main screen. For the last week or whatever I've been using kermit with
  62851. > terminfo and termcap entries for 80 columns and 49 lines, because this
  62852. > works and emacs, lynx, and everyone else puts a status line in the
  62853. > 49th line when they feel like it. My complaint is that removing
  62854. > kermit's status line (or rather the informative stuff about bps etc.)
  62855. > does not allow this line to be used by programs as an area in which to
  62856. > put a status line.
  62857.  
  62858.     Oh yes it does. See below for the DEC way of handling this.
  62859.  
  62860. >                    Programs will write there but it doesn't get erased
  62861. > or the screen then scrolls with 2 duplicate status lines left on the
  62862.  
  62863.     Huh? The status line does not scroll, as noted. Maybe your termcap/
  62864. terminfo structures need a little spiffing up.
  62865.  
  62866. > screen and lines getting written over by each other. If this status
  62867. > line is an integral part of vt-series terminals than it would be nice
  62868. > to have it used as such by programs expecting a vt-series terminal. If
  62869. > there's a way there's a will (mine). 
  62870. >     b> The VT420, on the other hand, actually does allow you to
  62871. >     b> combine the status line with the main screen so that you get
  62872. >     b> true 25x80 screen addressing but no status line.
  62873. > Um, any idea where I might find a terminal emulator which emulates
  62874. > vt420? 
  62875. > Also, pointers to reading material about vt series terminals would be
  62876. > thoroughly enjoyed. I have some notes about escape sequences mainly
  62877. > for vt100, but I still have trouble getting a sense of what
  62878. > functionality programs typically can use with a real vt series
  62879. > terminal and what keys typically send what keystroke (and what a
  62880. > reasonable analogy for these keys might be on my pc keyboard).
  62881. --------------
  62882.  
  62883.     Some reading material for you, as two excerpts.
  62884.  
  62885. From MS-DOS Kermit documentation file MSVIBM.VT -
  62886.  
  62887.  CSI Ps $ }    DECSASD        Select active status display
  62888.     Ps = 0 select main display
  62889.     Ps = 1 select status line
  62890.     Moves cursor to selected display area. This command will be ignored
  62891.     unless the status line has been enabled by CSI 2 $ ~. When the status
  62892.     line has been selected cursor remains there until the main display is
  62893.     reselected by CSI 0 $ }.
  62894.  
  62895.  CSI Ps $ ~    DECSSDT        Select Status Line Type
  62896.             Ps    meaning
  62897.             0     no status line (empty)
  62898.             1    indicator line (locally owned, Kermit default)
  62899.             2    host-writable line
  62900.  
  62901.  Other extensions:
  62902.  CSI 25; Pc f            VT320/VT102/H19 move cursor to 25th line.
  62903.  CSI 25; Pc H            VT320/VT102/H19 move cursor to 25th line.
  62904.                 Leave the same way as you went in.
  62905.                 (These will disable Kermit's own status line.)
  62906. ------------
  62907. From the top of file MS-DOS Kermit source code file MSZIBM.ASM -
  62908.  
  62909. ; References:
  62910. ;  "PT200 Programmers Reference Guide", 1984, Prime Computer # DOC 8621-001P
  62911. ;  "Video Terminal Model H19, Operation", 1979, Heath Company # 595-2284-05
  62912. ;  "VT100 User's Guide", 2nd ed., Jan 1979, DEC # EK-VT100-UG
  62913. ;  "Rainbow 100+/100B Terminal Emulation Manual", June 1984, DEC # QV069-GZ
  62914. ;  "Installing and Using The VT320 Video Terminal", June 1987,
  62915. ;    DEC # EK-VT320-UU-001
  62916. ;  "VT320 Programmer Reference Manual", July 1987, DEC # EK-VT320-RM-001
  62917. ;  "VT330/340 Programmer Ref Manual", 2nd ed, May 1988,
  62918. ;    Vol 1: Text programming DEC # EK-VT3XX-TP-002
  62919. ;    Vol 2: Graphics programming DEC # EK-VT3XX-GP-002
  62920. ;  "Programming the Display Terminal: Models D217, D413, and D463", Data
  62921. ;    General Corp, 014-00211-00, 1991.
  62922. ;  "Installing and Operating Your D216E+, D217, D413, and D463 Display
  62923. ;    Terminals", Data General Corp, 014-002057-01, 1991.
  62924. ;  "Dasher D470C Color Display Terminal, Programmer's Reference Manual",
  62925. ;    Data General Corp, 014-001015, 1984.
  62926. ;  "WY-50 Display Terminal Quick-Reference Guide", Wyse Technology,
  62927. ;    Wyse No. 88-021-01, 1983.
  62928.  
  62929. ----------------------------------
  62930.  
  62931.     I don't have a VT420, nor the documentation on it ($$$); it takes
  62932. both to emulate successfully.
  62933.     Joe D.
  62934.  
  62935. From news@columbia.edu Thu Dec 15 09:07:59 1994
  62936. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00372
  62937.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 15 Dec 1994 17:52:57 -0500
  62938. Received: by apakabar.cc.columbia.edu id AA15504
  62939.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 15 Dec 1994 17:52:56 -0500
  62940. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news.sprintlink.net!hookup!olivea!decwrl!svc.portal.com!shell.portal.com!news1.shell.portal.com!kshaw
  62941. From: kshaw@jobe.shell.portal.com (kendall thomason shaw)
  62942. Newsgroups: comp.protocols.kermit.misc
  62943. Subject: Re: Status line
  62944. Date: 15 Dec 1994 09:07:59 GMT
  62945. Organization: Porous Inc.
  62946. Lines: 42
  62947. Distribution: world
  62948. Message-Id: <KSHAW.94Dec15090759@jobe.shell.portal.com>
  62949. References: <KSHAW.94Dec8032548@jobe.shell.portal.com> <1994Dec8.220403.34973@cc.usu.edu>
  62950.     <1994Dec12.010826.7025@ais.com>
  62951. Nntp-Posting-Host: jobe.shell.portal.com
  62952. In-Reply-To: bruce@ais.com's message of 12 Dec 94 01:08:26 EST
  62953. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  62954.  
  62955. >>>>> "b" == bruce  <bruce@ais.com> writes:
  62956.  
  62957.     b> In article <1994Dec8.220403.34973@cc.usu.edu>, jrd@cc.usu.edu
  62958.     b> (Joe Doupnik) writes:
  62959.     b> This is very dependent on which exact VT terminal you're
  62960.     b> talking about.  For the VT300 series, there is no way to
  62961.     b> incorporate the status line as part of the main screen,
  62962.  
  62963. Okay, but I'm not trying to incorporate the status line as part of the
  62964. main screen. For the last week or whatever I've been using kermit with
  62965. terminfo and termcap entries for 80 columns and 49 lines, because this
  62966. works and emacs, lynx, and everyone else puts a status line in the
  62967. 49th line when they feel like it. My complaint is that removing
  62968. kermit's status line (or rather the informative stuff about bps etc.)
  62969. does not allow this line to be used by programs as an area in which to
  62970. put a status line. Programs will write there but it doesn't get erased
  62971. or the screen then scrolls with 2 duplicate status lines left on the
  62972. screen and lines getting written over by each other. If this status
  62973. line is an integral part of vt-series terminals than it would be nice
  62974. to have it used as such by programs expecting a vt-series terminal. If
  62975. there's a way there's a will (mine). 
  62976.  
  62977.     b> The VT420, on the other hand, actually does allow you to
  62978.     b> combine the status line with the main screen so that you get
  62979.     b> true 25x80 screen addressing but no status line.
  62980.  
  62981. Um, any idea where I might find a terminal emulator which emulates
  62982. vt420? 
  62983.  
  62984. Also, pointers to reading material about vt series terminals would be
  62985. thoroughly enjoyed. I have some notes about escape sequences mainly
  62986. for vt100, but I still have trouble getting a sense of what
  62987. functionality programs typically can use with a real vt series
  62988. terminal and what keys typically send what keystroke (and what a
  62989. reasonable analogy for these keys might be on my pc keyboard).
  62990.  
  62991. thanks
  62992. --
  62993.  
  62994. Kendall Shaw                        "Oops spoo."
  62995. (415)364-asdf                         
  62996. kshaw@shell.portal.com              
  62997.  
  62998. From news@columbia.edu Thu Dec 15 09:26:23 1994
  62999. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01234
  63000.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 15 Dec 1994 18:10:17 -0500
  63001. Received: by apakabar.cc.columbia.edu id AA17101
  63002.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 15 Dec 1994 18:10:14 -0500
  63003. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news.sprintlink.net!hookup!olivea!decwrl!svc.portal.com!shell.portal.com!news1.shell.portal.com!kshaw
  63004. From: kshaw@jobe.shell.portal.com (kendall thomason shaw)
  63005. Newsgroups: comp.protocols.kermit.misc
  63006. Subject: Displaying accented characters
  63007. Date: 15 Dec 1994 09:26:23 GMT
  63008. Organization: Porous Inc.
  63009. Lines: 12
  63010. Distribution: world
  63011. Message-Id: <KSHAW.94Dec15092623@jobe.shell.portal.com>
  63012. Nntp-Posting-Host: jobe.shell.portal.com
  63013. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  63014.  
  63015.  
  63016. Hi, I get mail from a listserv group which contains accented
  63017. characters (irish), and I see in emacs there are functions
  63018. standard-european-display, and iso-accent-mode. I've tried issuing set
  63019. transfer character-set latin1, but this does not change anything, I
  63020. still get escaped octal codes or whatever, e.g. \353. I'll read more,
  63021. but if someone can point me in the right direction I'd be grateful.
  63022. --
  63023.  
  63024. Kendall Shaw                        "Oops spoo."
  63025. (415)364-asdf                         
  63026. kshaw@shell.portal.com              
  63027.  
  63028. From news@columbia.edu Thu Dec 15 21:36:18 1994
  63029. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01330
  63030.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 15 Dec 1994 18:12:22 -0500
  63031. Received: by apakabar.cc.columbia.edu id AA17213
  63032.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 15 Dec 1994 18:12:20 -0500
  63033. Newsgroups: comp.protocols.kermit.misc
  63034. Path: news.columbia.edu!sol.ctr.columbia.edu!newsxfer.itd.umich.edu!commando!rja
  63035. From: rja@sispro.sis.rpslmc.edu (Roger J. Allen)
  63036. Subject: Re: Status line
  63037. Message-Id: <1994Dec15.213618.15190@rpslmc.edu>
  63038. Sender: news@rpslmc.edu
  63039. Nntp-Posting-Host: siss81.rpslmc.edu
  63040. Organization: Rush-Presbyterian-St. Luke's Medical Center
  63041. X-Newsreader: TIN [version 1.2 PL2]
  63042. References: <KSHAW.94Dec8032548@jobe.shell.portal.com>
  63043. Date: Thu, 15 Dec 1994 21:36:18 GMT
  63044. Lines: 106
  63045. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  63046.  
  63047. kendall thomason shaw (kshaw@jobe.shell.portal.com) wrote:
  63048. : Hello,
  63049. :     I've not figured out how to get rid of the status line in order to
  63050. : have all the lines writable by vi and what not. I can define a 80x49
  63051. : screen and toggle the status line, but I'd like to have an 80x50
  63052. : screen. If I define an 80x50 screen with vt320 emulation, lynx and vi
  63053. : will write to the status line but they don't then erase what they
  63054. : write there, and worse yet, lynx scrolls the screen up (down?) with
  63055. : the previous status line stuck in the 50th row, and puts a new status
  63056. : line in the 49th row. If someone could help me either with
  63057. : termcap/terminfo or getting kermit to skip the status line idea, I'd
  63058. : be pleased. Here's my termcap entry:
  63059.  
  63060. : de|vt320|vt320-am|dec vt320:\
  63061.      ^^^^^ ^^^^^^^^ ^^^^^^^^^
  63062. I use a different term type for Kermit and VT320 since kermit
  63063. is just an emulation.  I did not want to break the real vt320.
  63064. :     :co#80:li#50:\
  63065.                   ^^
  63066. Try 49 here.
  63067. :     :le=^H:\
  63068. :     :am:bs:\
  63069. :     :ke=\E[?1l\E>:ks=\E[?1h\E=:\
  63070. :     :kl=\EOD:kr=\EOC:kd=\EOB:ku=\EOA:\
  63071. :     :kb=^H:\
  63072. :     :ho=\E[H:\
  63073. :     :k4=\EOS:k3=\EOR:k2=\EOQ:k1=\EOP:\
  63074. Do you use the vt300.ini script?  You can define LOTS
  63075. of function keys that way.
  63076. :     :xn:vt#3:pt:\
  63077. :     :sc=\E7:\
  63078. :     :rc=\E8:\
  63079. :     :im=\E[4h:\
  63080. :     :ei=\E[4l:\
  63081. :     :mi:\
  63082. :     :dc=\E[P:\
  63083. :     :ed=:dm=:\
  63084. :     :al=\E[L:\
  63085. :     :dl=\E[M:\
  63086. :     :cs=\E[%i%d;%dr:\
  63087. :     :sf=\ED:\
  63088. :     :sr=\EM:\
  63089. :     :ce=\E[K:\
  63090. :     :cl=\E[H\E[J:\
  63091. :     :cd=\E[J:\
  63092. :     :cm=\E[%i%d;%dH:\
  63093. :     :nd=\E[C:\
  63094. :     :up=\E[A:\
  63095. :     :so=\E[7m:\
  63096. :     :se=\E[27m:\
  63097. :     :us=\E[4m:\
  63098. :     :ue=\E[24m:\
  63099. :     :md=\E[1m:\
  63100. :     :mr=\E[7m:\
  63101. :     :mb=\E[5m:\
  63102. :     :me=\E[m:\    
  63103. :     :is=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h\E[1;24r\E[24;1H:\
  63104.                                                   ^^    ^^
  63105. try a scrolling region of 49 here.
  63106. :     :rs=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h:\
  63107. :     :ds=\E[1$}\E[;H\E[K\E[0$:\
  63108. :     :fs=\E[0$}:\
  63109. :     :ts=\E[1$}\E[;H\E[k:\
  63110. :     :hs:es:\
  63111. :     :do=^J:
  63112.  
  63113. Here is what I have for the mode line stuff:
  63114.  
  63115.     :hs:ts=\E7\E[50;1H:fs=\E[K\E[H\E8:
  63116.  
  63117. This lets "statline" and other apps
  63118. access the mode line,
  63119. display text, erase to end of line,
  63120. and go back to where it came from.
  63121.  
  63122. I did not use "es" because I seem to remember
  63123. that it did not like some escape sequences
  63124. (or maybe it was tabs) in the
  63125. mode line, but I might have just copied a different
  63126. termcap entry and did not test if "es" would work.
  63127. I also left out the "ds".  I don't remember if I
  63128. did not need a "ds" or if I was not able to
  63129. find a way to disable the status line.
  63130.  
  63131. There are probably lots of other ways 
  63132. to do this.  For instance, you can change
  63133. the color if that suits you.
  63134.  
  63135. --
  63136. Roger J. Allen                Rush-Presbyterian-St. Luke's Medical Center
  63137. System Administrator                                   Chicago,  IL   USA 
  63138. Surgical Information Systems                       Voice:  (312)-942-4825
  63139. Internet: rja@sis.rpslmc.edu                         FAX:  (312)-942-3036
  63140.  
  63141.  
  63142. : --
  63143.  
  63144. : Kendall Shaw                        "!"
  63145. : (415)364-asdf
  63146. : kshaw@shell.portal.com              
  63147.  
  63148. --
  63149. Roger J. Allen                Rush-Presbyterian-St. Luke's Medical Center
  63150. System Administrator                                   Chicago,  IL   USA 
  63151. Surgical Information Systems                       Voice:  (312)-942-4825
  63152. Internet: rja@sis.rpslmc.edu                         FAX:  (312)-942-3036
  63153.  
  63154. From news@columbia.edu Thu Dec 15 09:31:36 1994
  63155. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01392
  63156.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 15 Dec 1994 18:13:54 -0500
  63157. Received: by apakabar.cc.columbia.edu id AA17289
  63158.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 15 Dec 1994 18:13:53 -0500
  63159. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!hookup!olivea!decwrl!svc.portal.com!shell.portal.com!news1.shell.portal.com!kshaw
  63160. From: kshaw@jobe.shell.portal.com (kendall thomason shaw)
  63161. Newsgroups: comp.protocols.kermit.misc
  63162. Subject: naive script writing question
  63163. Date: 15 Dec 1994 09:31:36 GMT
  63164. Organization: Porous Inc.
  63165. Lines: 24
  63166. Distribution: world
  63167. Message-Id: <KSHAW.94Dec15093136@jobe.shell.portal.com>
  63168. Nntp-Posting-Host: jobe.shell.portal.com
  63169. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  63170.  
  63171.  
  63172. Hello, I've attempted to write a script to dial my service provider:
  63173.  
  63174. def portal -
  63175.   set flow rts/cts -
  63176.   d {portal} -
  63177.   if fail end 1 -
  63178.   c -
  63179.   pause 2 -
  63180.   out \15 -
  63181. etc.
  63182.  
  63183. However the if fail etc. get's taken as arguments to the dial script.
  63184.  
  63185. How do I delimit portal if that's my problem?
  63186.  
  63187.  
  63188.  
  63189.  
  63190. --
  63191.  
  63192. Kendall Shaw                        "Oops spoo."
  63193. (415)364-asdf                         
  63194. kshaw@shell.portal.com              
  63195.  
  63196. From news@columbia.edu Thu Dec 15 08:24:34 1994
  63197. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03098
  63198.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 15 Dec 1994 18:49:51 -0500
  63199. Received: by apakabar.cc.columbia.edu id AA20231
  63200.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 15 Dec 1994 18:49:49 -0500
  63201. Path: news.columbia.edu!panix!news.mathworks.com!uhog.mit.edu!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  63202. From: jrd@cc.usu.edu (Joe Doupnik)
  63203. Newsgroups: comp.protocols.kermit.misc
  63204. Subject: Re: Displaying accented characters
  63205. Message-Id: <1994Dec15.142434.35541@cc.usu.edu>
  63206. Date: 15 Dec 94 14:24:34 MDT
  63207. References: <KSHAW.94Dec15092623@jobe.shell.portal.com>
  63208. Distribution: world
  63209. Organization: Utah State University
  63210. Lines: 25
  63211. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  63212.  
  63213. In article <KSHAW.94Dec15092623@jobe.shell.portal.com>, kshaw@jobe.shell.portal.com (kendall thomason shaw) writes:
  63214. > Hi, I get mail from a listserv group which contains accented
  63215. > characters (irish), and I see in emacs there are functions
  63216. > standard-european-display, and iso-accent-mode. I've tried issuing set
  63217. > transfer character-set latin1, but this does not change anything, I
  63218. > still get escaped octal codes or whatever, e.g. \353. I'll read more,
  63219. > but if someone can point me in the right direction I'd be grateful.
  63220. ---------------
  63221.     Ah yes. The writer is using a different display character set than
  63222. you are, and the transmission software had not a clue about how to deal
  63223. with character sets. 
  63224.     At the risk of preaching to the choir, Kermits know how to deal with 
  63225. this cleanly and effectively, for terminal emulation and file transfer.
  63226.     You did not indicate which platform you were using to read the
  63227. traffic so advice is a little limited here. May I suggest trying MSK
  63228. on a DOS machine, and change your DOS Code Page to match the other end
  63229. (try CP850 first, versus the default CP437). The finer points of character
  63230. sets and Kermits are explained at length in the user's manuals: "Using
  63231. MS-DOS Kermit" and "Using C Kermit." Worth reading more about it, as we
  63232. keep saying to people.
  63233.         Btw, the terms "standard-european-display" and "iso-accent-mode"
  63234. are extremely vague when referring to character sets. Please read our 
  63235. manuals to obtain a firmer grip than Emacs can exert.
  63236.         Joe D.
  63237.  
  63238. From news@columbia.edu Fri Dec 16 02:16:07 1994
  63239. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10170
  63240.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 15 Dec 1994 21:38:50 -0500
  63241. Received: by apakabar.cc.columbia.edu id AA02883
  63242.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 15 Dec 1994 21:38:49 -0500
  63243. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!europa.eng.gtefsd.com!news.mathworks.com!news.kei.com!ub!csn!tali.hsc.colorado.edu!boulder!csnews!alumni.cs.colorado.edu!wouk
  63244. From: wouk@alumni.cs.colorado.edu (Arthur Wouk)
  63245. Newsgroups: comp.protocols.kermit.misc
  63246. Subject: reverse video and c-kermit
  63247. Date: 16 Dec 1994 02:16:07 GMT
  63248. Organization: University of Colorado, Boulder
  63249. Lines: 15
  63250. Message-Id: <3cqt97$32i@csnews.cs.Colorado.EDU>
  63251. Nntp-Posting-Host: alumni.cs.colorado.edu
  63252. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  63253.  
  63254. i connect to the net by dial-up connection to a bsd machine, through
  63255. c-kermit 5A(190).
  63256.  
  63257. occasionally, i need to telnet to an SGI machine running irix4 (i
  63258. believe), and running as its newsreader nn. when i do so, if i invoke
  63259. the news reader, i am thrown into reverse video on my home machine.
  63260.  
  63261. is there any way, while in c-kermit, to issue a command that will
  63262. return me to reverse video, while still in nn remotely? or is is a
  63263. problem to be dealt with in the underlying machine softare, rather 
  63264. than thorugh c-kermit?
  63265. -- 
  63266. --
  63267. arthur wouk 
  63268. internet: wouk@cs.colorado.edu
  63269.  
  63270. From news@columbia.edu Fri Dec 16 05:42:22 1994
  63271. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23870
  63272.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 16 Dec 1994 03:05:40 -0500
  63273. Received: by apakabar.cc.columbia.edu id AA21647
  63274.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 16 Dec 1994 03:05:39 -0500
  63275. Newsgroups: comp.protocols.kermit.misc
  63276. Path: news.columbia.edu!sol.ctr.columbia.edu!news.msfc.nasa.gov!news.larc.nasa.gov!lll-winken.llnl.gov!uwm.edu!caen!hearst.acc.Virginia.EDU!murdoch!fulton.seas.Virginia.EDU!esh6h
  63277. From: esh6h@fulton.seas.Virginia.EDU (Erik Hatcher)
  63278. Subject: Re: VMS C-Kermit in batch mode?
  63279. Message-Id: <D0w2IM.JIw@murdoch.acc.Virginia.EDU>
  63280. Sender: usenet@murdoch.acc.Virginia.EDU
  63281. Organization: University of Virginia
  63282. References: <rjmaley.41.0060FF08@mcs.com>
  63283. Date: Fri, 16 Dec 1994 05:42:22 GMT
  63284. Lines: 29
  63285. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  63286.  
  63287. In article <rjmaley.41.0060FF08@mcs.com>,
  63288. Ryan J. Maley <rjmaley@mcs.com> wrote:
  63289. >Hi,
  63290. >
  63291. >I've written a Kermit script that sends text to an alphanumeric pager. It 
  63292. >works great, but I can't seem to run C-Kermit in batch mode. Every time I 
  63293. >launch Kermit (with or without my script) in a batch program, my batch aborts 
  63294. >and I get an error %CKERMIT-E-FATAL, Can't initialize! The batch program work 
  63295. >perfectly in interactive mode.
  63296. >
  63297. >I don't see a command line switch for batch operation. Basically, I'm stuck. 
  63298. >I'm using C-Ckermit 5A(190) (I've also experienced this under 189) and VMS for 
  63299. >AXP 6.1.
  63300. >
  63301. >Any suggestions?
  63302.  
  63303. I had this problem and I upgraded to the latest versions and it
  63304. went away.  I don't use the define/user sys$input sys$command and
  63305. it works fine.  I don't have the versions with me at this moment
  63306. but if you mail me I'll send them to you tomorrow.
  63307.  
  63308. I'm running on a VAX 3100 and an Alpha AXP.
  63309.  
  63310.     Erik
  63311. --
  63312. Erik Hatcher                           + "But every now and then we just have
  63313. http://fulton.seas.virginia.edu/~esh6h |  to howl with the wolves." 
  63314.                                        |        - Werner Heisenberg
  63315. ---------------------------------------+-------------------------------------
  63316.  
  63317. From news@columbia.edu Fri Dec 16 05:44:54 1994
  63318. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23876
  63319.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 16 Dec 1994 03:05:50 -0500
  63320. Received: by apakabar.cc.columbia.edu id AA21651
  63321.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 16 Dec 1994 03:05:50 -0500
  63322. Newsgroups: comp.protocols.kermit.misc
  63323. Path: news.columbia.edu!sol.ctr.columbia.edu!news.msfc.nasa.gov!news.larc.nasa.gov!lerc.nasa.gov!magnus.acs.ohio-state.edu!math.ohio-state.edu!uwm.edu!caen!hearst.acc.Virginia.EDU!murdoch!fulton.seas.Virginia.EDU!esh6h
  63324. From: esh6h@fulton.seas.Virginia.EDU (Erik Hatcher)
  63325. Subject: Re: SEND sending 0 byte file!
  63326. Message-Id: <D0w2Mv.JnG@murdoch.acc.Virginia.EDU>
  63327. Sender: usenet@murdoch.acc.Virginia.EDU
  63328. Organization: University of Virginia
  63329. References: <D0ppuE.L0u@murdoch.acc.Virginia.EDU> <3cpkvm$e1v@blackice.winternet.com>
  63330. Date: Fri, 16 Dec 1994 05:44:54 GMT
  63331. Lines: 30
  63332. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  63333.  
  63334. In article <3cpkvm$e1v@blackice.winternet.com>,
  63335. James Sturdevant <jamess@winternet.com> wrote:
  63336. >Erik Hatcher (esh6h@fulton.seas.Virginia.EDU) wrote:
  63337. >
  63338. >: ...
  63339. >: And have a macro to send a file like this...
  63340. >
  63341. >:         send \$(SENDFILE_LOCAL) \%a
  63342. >
  63343. >Try this:
  63344. >          asg \%f \$(SENDFILE_LOCAL)
  63345. >          send \%f \%a
  63346. >
  63347. >There are smoe command which don't like to parse the long type variable
  63348. >names in C-Kermit 5A.  (At least, there used to be...)
  63349. >
  63350.  
  63351. Can't do the "asg".  I'm running in batch mode.  That's not
  63352. the problem anyway.
  63353.  
  63354. Frank and I have discussed it and it turns out that "send"
  63355. gets confused if you have a "open !read" (maybe even just
  63356. "read") open.  If it's closed send works fine.
  63357.  
  63358.     Erik
  63359. --
  63360. Erik Hatcher                           + "But every now and then we just have
  63361. http://fulton.seas.virginia.edu/~esh6h |  to howl with the wolves." 
  63362.                                        |        - Werner Heisenberg
  63363. ---------------------------------------+-------------------------------------
  63364.  
  63365. From news@columbia.edu Fri Dec 16 15:59:32 1994
  63366. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11125
  63367.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 16 Dec 1994 10:59:35 -0500
  63368. Received: by apakabar.cc.columbia.edu id AA16841
  63369.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 16 Dec 1994 10:59:34 -0500
  63370. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  63371. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  63372. Newsgroups: comp.protocols.kermit.misc
  63373. Subject: Re: Displaying accented characters
  63374. Date: 16 Dec 1994 15:59:32 GMT
  63375. Organization: Columbia University
  63376. Lines: 40
  63377. Distribution: world
  63378. Message-Id: <3csdh4$ge5@apakabar.cc.columbia.edu>
  63379. References: <KSHAW.94Dec15092623@jobe.shell.portal.com>
  63380. Nntp-Posting-Host: watsun.cc.columbia.edu
  63381. Cc: 
  63382.  
  63383. In article <KSHAW.94Dec15092623@jobe.shell.portal.com>,
  63384. kendall thomason shaw <kshaw@jobe.shell.portal.com> wrote:
  63385. >
  63386. >Hi, I get mail from a listserv group which contains accented
  63387. >characters (irish)...
  63388. >
  63389. You do?  I though LISTSERV was strictly 7-bit.  Maybe you have a mail
  63390. agent that encodes and decodes 8-bit characters?
  63391.  
  63392. >...and I see in emacs there are functions
  63393. >standard-european-display, and iso-accent-mode. I've tried issuing set
  63394. >transfer character-set latin1...
  63395. >
  63396. That's for file transfer, not terminal emulation.  Please read the manual
  63397. (info below).
  63398.  
  63399. >...but this does not change anything, I
  63400. >still get escaped octal codes or whatever, e.g. \353. I'll read more,
  63401. >but if someone can point me in the right direction I'd be grateful.
  63402. >
  63403. In MS-DOS Kermit (3.00 or later):
  63404.  
  63405.   SET PARITY NONE
  63406.   SET TERMINAL BYTESIZE 8
  63407.   SET TERMINAL CHARACTER-SET NONE
  63408.  
  63409. In EMACS 19.xx (not 18.xx or earlier):
  63410.  
  63411. (require 'disp-table)
  63412. (standard-display-8bit 160 255)
  63413. (load "iso-syntax")
  63414. (load "iso-insert")
  63415. (set-input-mode (car (current-input-mode))
  63416.         (nth 1 (current-input-mode))
  63417.         0)
  63418.  
  63419.  
  63420. This assumes that the message really contains Latin-1 characters.
  63421.  
  63422. - Frank
  63423.  
  63424. From news@columbia.edu Fri Dec 16 12:11:22 1994
  63425. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15378
  63426.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 16 Dec 1994 12:11:22 -0500
  63427. Received: by apakabar.cc.columbia.edu id AA06048
  63428.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 16 Dec 1994 12:11:20 -0500
  63429. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!gatech!newsfeed.pitt.edu!hudson.lm.com!fs7.ece.cmu.edu!news.radian.com.!radian.com!Tim_Helmstetter
  63430. From: Tim_Helmstetter@radian.com
  63431. Newsgroups: comp.protocols.kermit.misc
  63432. Subject: APC Initiation
  63433. Date: Fri, 16 Dec 1994 10:11:11
  63434. Organization: Radian Corporation, Austin, TX, USA
  63435. Lines: 16
  63436. Message-Id: <Tim_Helmstetter.7.2EF1BC4F@radian.com>
  63437. Nntp-Posting-Host: 129.160.17.246
  63438. X-Newsreader: Trumpet for Windows [Version 1.0 Rev Final Beta #8]
  63439. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  63440.  
  63441. I am using KERMIT 3.13 to connect to a program called MAPPERC on a HP9000. 
  63442. Everything works great except I cannot initiate APC. ESC Z works, the old 
  63443. TERMINALR escape code works, so I know the software is outputting the escape 
  63444. sequence properly. I know APC is turned on because I can start APC from a UNIX 
  63445. script, just not from this MAPPERC software. Has anyone else had problems with 
  63446. APC?
  63447.  
  63448. Thanks
  63449.  
  63450.  
  63451.  |~~~~~\  /~~\  |~~~~~\ |~|  /~~\  |~\_|~|      Tim Helmstetter, Sys. Analyst
  63452.  |  ~  / / /\ \ | [<>] || | / /\ \ | \ \ |      Helmstetter_Tim@radian.com 
  63453.  |_|~|_\/_|~~|_\|_____/ |_|/_|~~|_\|_|\__|      Box 201088 Austin, TX 78720 
  63454.  C   O   R   P   O   R   A   T   I   O   N      All opinions are just that...
  63455.                                                         opinions!!!
  63456. --KAB26305.784571010/zippy.radian.com--
  63457.  
  63458. From news@columbia.edu Wed Dec 14 02:37:11 1994
  63459. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00957
  63460.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 16 Dec 1994 16:27:38 -0500
  63461. Received: by apakabar.cc.columbia.edu id AA03095
  63462.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 16 Dec 1994 16:27:35 -0500
  63463. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!udel!gatech!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  63464. From: jrd@cc.usu.edu (Joe Doupnik)
  63465. Newsgroups: comp.protocols.kermit.misc
  63466. Subject: Re: Highlighted subject line when reading news
  63467. Message-Id: <1994Dec14.083711.35412@cc.usu.edu>
  63468. Date: 14 Dec 94 08:37:11 MDT
  63469. References: <3ckjds$ot6@bigboote.WPI.EDU> <3cld9e$i93@bach.convex.com>
  63470. Organization: Utah State University
  63471. Lines: 15
  63472. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  63473.  
  63474. In article <3cld9e$i93@bach.convex.com>, hart@convex.com (Wesley Hart) writes:
  63475. > In <3ckjds$ot6@bigboote.WPI.EDU> eeyore@wpi.WPI.EDU ( Eeyore ) writes:
  63476. >>    This very old AT&T monitor makes it very difficult to see the
  63477. >>    words in the subject when they are highlighted.  Is there a
  63478. >>    way to turn it off?
  63479. >>                Thanks a lot.
  63480. > I'd be very interested in seeing this as well.  Right now it looks like
  63481. > kermit's displaying cyan text on a green background - nearly impossible
  63482. > to read.
  63483. ---------
  63484.     So use the SET TERMINAL COLOR command and choose colors which you
  63485. prefer. Did I miss a point here?
  63486.     Joe D.
  63487.  
  63488. From news@columbia.edu Fri Dec 16 23:42:58 1994
  63489. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15927
  63490.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 16 Dec 1994 19:32:35 -0500
  63491. Received: by apakabar.cc.columbia.edu id AA03943
  63492.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 16 Dec 1994 19:32:34 -0500
  63493. Newsgroups: comp.protocols.kermit.misc
  63494. Path: news.columbia.edu!sol.ctr.columbia.edu!math.ohio-state.edu!uwm.edu!news.alpha.net!news.mathworks.com!udel!gatech!howland.reston.ans.net!torn!nott!cunews!freenet.carleton.ca!FreeNet.Carleton.CA!be946
  63495. From: be946@FreeNet.Carleton.CA (Simon C.Hall)
  63496. Subject: kermit on a apple][+
  63497. Message-Id: <D0xGJM.MuE@freenet.carleton.ca>
  63498. Sender: be946@freenet3.carleton.ca (Simon C.Hall)
  63499. Reply-To: be946@FreeNet.Carleton.CA (Simon C.Hall)
  63500. Organization: The National Capital FreeNet
  63501. Date: Fri, 16 Dec 1994 23:42:58 GMT
  63502. Lines: 4
  63503. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  63504.  
  63505. anyone use kermit on an apple][+?
  63506. I'm looking for a new term pgm,let me know what you think of it.
  63507. thanks.
  63508.  
  63509.  
  63510. From news@columbia.edu Sat Dec 17 02:55:09 1994
  63511. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28869
  63512.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 16 Dec 1994 22:55:30 -0500
  63513. Received: by apakabar.cc.columbia.edu id AA16885
  63514.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 16 Dec 1994 22:55:29 -0500
  63515. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news.sprintlink.net!news.primenet.com!usenet
  63516. From: jbishop@primenet.com (Jeff Bishop)
  63517. Newsgroups: comp.protocols.kermit.misc
  63518. Subject: send-init packet
  63519. Date: Fri, 16 Dec 1994 19:55:09 -0700
  63520. Organization: Primenet
  63521. Lines: 8
  63522. Message-Id: <DCbykuqcZtZH075yn@primenet.com>
  63523. Nntp-Posting-Host: usr1.primenet.com
  63524. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  63525.  
  63526. Hello,
  63527.  
  63528. How does kermit no that the send-init packet is coming and what special
  63529. sequence starts it. I am wanting to use this string to stick in a term
  63530. program to call kerlite for automatic downloads. This allows me to not have
  63531. to rely on t he other end sending apc commands to my machine.
  63532.  
  63533. Jeff
  63534.  
  63535. From news@columbia.edu Fri Dec 16 13:48:52 1994
  63536. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01165
  63537.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 16 Dec 1994 23:30:21 -0500
  63538. Received: by apakabar.cc.columbia.edu id AA19182
  63539.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 16 Dec 1994 23:30:18 -0500
  63540. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  63541. From: jrd@cc.usu.edu (Joe Doupnik)
  63542. Newsgroups: comp.protocols.kermit.misc
  63543. Subject: Re: MS-Kermit running under Windows trbl
  63544. Message-Id: <1994Dec16.194852.35622@cc.usu.edu>
  63545. Date: 16 Dec 94 19:48:52 MDT
  63546. References: <D0wsAs.6vv@nntpa.cb.att.com>
  63547. Organization: Utah State University
  63548. Lines: 57
  63549. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  63550.  
  63551. In article <D0wsAs.6vv@nntpa.cb.att.com>, mrbaker@hodcs.ho.att.com (-M.BAKER) writes:
  63552. > Hi:
  63553. > We are currently using MS-Kermit (Beta 14) to communicate with a UNIX
  63554. > system, both directly from the DOS prompt as well as run from Windows.
  63555. > I have packet driver 3C5X9PD and shim WINPKT doing the networking
  63556. > honors.
  63557. > The problem is that when someone telnet's to the UNIX system from
  63558. > Windows (i.e., they have an icon for MS-KERMIT, using the .PIF
  63559. > distributed with MS-KERMIT) everything works fine until they minimize
  63560. > it and leave it alone for a while [still trying to measure exactly what
  63561. > "a while" is -- seems to be a half hour or hour or so].  Then when they
  63562. > return to MS-KERMIT, it is 'asleep'.  The TCP-IP connection no longer
  63563. > seems to be working (no response to the UNIX shell prompt, no response
  63564. > to the Telnet Are-You-There) yet the UNIX system still thinks the
  63565. > connection is up.  I've tried running with SET TELNET DEBUG-OPTIONS ON
  63566. > looking for clues, but no luck.
  63567. > The only mentions I could find in the documentation is in the .BWR file.
  63568. > Section 4 (Microsoft Windows) suggests changing the .PIF to raise
  63569. > Kermit's priority, lock it in memory (even though the WINPKT docs
  63570. > say this shouldn't be necessary), and make sure some background time
  63571. > is allocated.  I've played with these the best I could with no apparent
  63572. > luck.  It does have the caveat that Kermit is at the mercy of other
  63573. > apps. anyhow.
  63574. > When I run MS-Kermit right from DOS (no Windows), it works just fine
  63575. > even overnight so I'm pretty sure the indigestion is coming from Windows.
  63576. > Would appreciate hearing from others who have run into this, have ideas,
  63577. > etc. worth trying in order to minimize (if not eliminate) this problem.
  63578. > Private email to mrbaker @ hodcs.att.com, or postings to this group
  63579. > would be most welcome.
  63580. --------------
  63581.     Ok. I tried your situation here over the past 45 minutes. MSK 3.14
  63582. beta-15 running in Windows as an icon, using ODIPKT+WINPKT over the current
  63583. Novell ODI material. I logged onto my Unix machine with Kermit, shrunk MSK
  63584. to an icon, and went away to speak with WordPerfect/Windows for the duration.
  63585. After that 45 minute interval I enlarged the icon to a window and the
  63586. connection was just fine.
  63587.     A couple of guesses to make here. First, is your lan adapter's
  63588. shared memory protected against all memory managers (DOS and again in
  63589. Windows)? If not then Windows could be using that memory for other purposes
  63590. and the lan adapter can become wedged or worse. An intermediate test, after
  63591. you've exclude='d both sides, is to start another Telnet session with Kermit.
  63592. If a new session starts ok then local comms are in working order.
  63593.     Second, the lan adpater part of things may not be especially strong
  63594. to begin with, and when it's not serviced often packets overwhelm it and it
  63595. wedges. If there is an IRQ conflict (lan adapter sitting on IRQ 3 along with
  63596. serial port COM2, for example) then the adapter can be squashed by the
  63597. competing hardware and/or Window's drivers.
  63598.     The option to "fix task in memory" is needed if you are not using
  63599. winpkt with a Packet Driver. Go get mine, the two argument variety, from
  63600. netlab2.usu.edu, cd drivers, file winpkt.zip, and give it a try. I don't fix 
  63601. tasks in memory (absent minded Professor).
  63602.     Joe D.
  63603.  
  63604. From news@columbia.edu Fri Dec 16 14:59:16 1994
  63605. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02468
  63606.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 16 Dec 1994 23:50:12 -0500
  63607. Received: by apakabar.cc.columbia.edu id AA20374
  63608.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 16 Dec 1994 23:50:10 -0500
  63609. Newsgroups: comp.protocols.kermit.misc
  63610. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!hookup!news.moneng.mei.com!uwm.edu!lll-winken.llnl.gov!uop!pacbell.com!att-out!nntpa!not-for-mail
  63611. From: mrbaker@hodcs.ho.att.com (-M.BAKER)
  63612. Subject: MS-Kermit running under Windows trbl
  63613. Message-Id: <D0wsAs.6vv@nntpa.cb.att.com>
  63614. Sender: news@nntpa.cb.att.com (Netnews Administration)
  63615. Nntp-Posting-Host: hodcs.ho.att.com
  63616. Organization: AT&T
  63617. Date: Fri, 16 Dec 1994 14:59:16 GMT
  63618. Lines: 41
  63619. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  63620.  
  63621. Hi:
  63622.  
  63623. We are currently using MS-Kermit (Beta 14) to communicate with a UNIX
  63624. system, both directly from the DOS prompt as well as run from Windows.
  63625. I have packet driver 3C5X9PD and shim WINPKT doing the networking
  63626. honors.
  63627.  
  63628. The problem is that when someone telnet's to the UNIX system from
  63629. Windows (i.e., they have an icon for MS-KERMIT, using the .PIF
  63630. distributed with MS-KERMIT) everything works fine until they minimize
  63631. it and leave it alone for a while [still trying to measure exactly what
  63632. "a while" is -- seems to be a half hour or hour or so].  Then when they
  63633. return to MS-KERMIT, it is 'asleep'.  The TCP-IP connection no longer
  63634. seems to be working (no response to the UNIX shell prompt, no response
  63635. to the Telnet Are-You-There) yet the UNIX system still thinks the
  63636. connection is up.  I've tried running with SET TELNET DEBUG-OPTIONS ON
  63637. looking for clues, but no luck.
  63638.  
  63639. The only mentions I could find in the documentation is in the .BWR file.
  63640. Section 4 (Microsoft Windows) suggests changing the .PIF to raise
  63641. Kermit's priority, lock it in memory (even though the WINPKT docs
  63642. say this shouldn't be necessary), and make sure some background time
  63643. is allocated.  I've played with these the best I could with no apparent
  63644. luck.  It does have the caveat that Kermit is at the mercy of other
  63645. apps. anyhow.
  63646.  
  63647. When I run MS-Kermit right from DOS (no Windows), it works just fine
  63648. even overnight so I'm pretty sure the indigestion is coming from Windows.
  63649.  
  63650. Would appreciate hearing from others who have run into this, have ideas,
  63651. etc. worth trying in order to minimize (if not eliminate) this problem.
  63652. Private email to mrbaker @ hodcs.att.com, or postings to this group
  63653. would be most welcome.
  63654.  
  63655. Thanks in advance & Happy Holidays!
  63656.  
  63657. Maurice Baker
  63658. AT&T Bell Labs, Holmdel
  63659. mrbaker  @  hodcs.att.com
  63660.  
  63661.  
  63662.  
  63663. From news@columbia.edu Wed Dec 14 04:08:17 1994
  63664. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21682
  63665.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 17 Dec 1994 04:26:23 -0500
  63666. Received: by apakabar.cc.columbia.edu id AA02525
  63667.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 17 Dec 1994 04:26:21 -0500
  63668. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!europa.eng.gtefsd.com!gatech!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  63669. From: jrd@cc.usu.edu (Joe Doupnik)
  63670. Newsgroups: comp.protocols.kermit.misc
  63671. Subject: Re: 3.14 beta 14 and PC/TCP
  63672. Message-Id: <1994Dec14.100818.35424@cc.usu.edu>
  63673. Date: 14 Dec 94 10:08:17 MDT
  63674. References: <D0n8CD.Gn8@adasoft.ch> <1994Dec11.104027.35139@cc.usu.edu> <D0rs3v.L9K@adasoft.ch>
  63675. Organization: Utah State University
  63676. Lines: 53
  63677. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  63678.  
  63679. In article <D0rs3v.L9K@adasoft.ch>, jw@adasoft.ch (Jamie Watson) writes:
  63680. > In article <1994Dec11.104027.35139@cc.usu.edu> jrd@cc.usu.edu (Joe Doupnik) writes:
  63681. >>    The situation is easy to clarify. SET PORT TCP in Kermit means
  63682. >>to use Kermit's internal TCP/IP stack. That stack requires either a suitable
  63683. >>Packet Driver or ODI to talk to the lan adapter. FTP Inc's stack does more
  63684. >>or less the same thing. You loaded FTP Inc's stack and then told Kermit to
  63685. >>go to the same board and grab it; you are not running "over FTP Inc's stack."
  63686. >>I'm surprized that you we able to run Kermit over the board with FTP still
  63687. >>using all the TCP/IP material. 
  63688. > Sigh.  I'm really sorry for having asked such a bonehead question.  I read
  63689. > about this restriction in several different places, but I am obviously
  63690. > not knowledgeable enough about DOS and networking to have understood what
  63691. > it really meant.  I had assumed that it meant that I couldn't run kermit
  63692. > and one of the PC/TCP utilities at the same time, but now that I stop to
  63693. > think about that, it's a pretty silly idea under DOS; I guess it just
  63694. > shows that my mind has frozen into Unix-based thought patterns.  Anyway,
  63695. > I just tried unloading the PC/TCP stack (inet unload) before starting
  63696. > kermit, and then reloading it (ethdrv) after terminating kermit, and it
  63697. > works just fine.  Thanks for the help.
  63698. >>    If you want FTP Inc's stack to remain resident and run Kermit
  63699. >>over the top of it you must use FTP's TNGLASS program, and tell Kermit
  63700. >>SET PORT BIOS1.
  63701. > This still doesn't work for me, even with Beta-15 installed.  I first
  63702. > tried just "tnglass pan", and it connects just fine.  I then tried the
  63703. > command specified in networks/setup.doc, and found that I had to change
  63704. > the argument format somewhat to even get it to accept the command, but
  63705. > it still doesn't work.  The command I gave was:
  63706. >     tnglass pan -c 0 -i -e kermit.exe set port bios1 , connect
  63707. > This starts the tnglass program, and then starts kermit, but it immediately
  63708. > says "Connection closed".  I have tried just starting kermit without the
  63709. > commands on the command line, then given the bios1 and conect to kermit
  63710. > myself, but I got the same result.  Am I still doing something wrong?  By
  63711. > the way, I am using PC/TCP version 3.0, so that might explain at least the
  63712. > difference in command line parsing; I assume that the setup.doc file was
  63713. > written based on PC/TCP version 2.3 or earlier.
  63714. ---------------
  63715.     Works here, but without the "-i" option. That option is supposed
  63716. to keep the Telnet session open until the external terminal emulator loads
  63717. (which makes sense, but why would we need a option for something as necessary
  63718. as this?), and <something, antecedent unclear in the manual> sends an Int 14h
  63719. init command.
  63720.     If I include the -i option then the connection is closed by the
  63721. time the terminal emulation screen comes up, else it stays open. Go figure.
  63722.     The same thing happens with MSK 3.13.
  63723.     Please follow directions from the vendor of the product you are
  63724. using. For Tnglass follow those of FTP Software Inc for tnglass options
  63725. of the version you have.
  63726.     Joe D.
  63727.  
  63728. From news@columbia.edu Fri Dec 16 20:53:40 1994
  63729. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21708
  63730.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 17 Dec 1994 04:27:00 -0500
  63731. Received: by apakabar.cc.columbia.edu id AA02541
  63732.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 17 Dec 1994 04:26:58 -0500
  63733. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!usenet.eel.ufl.edu!usenet.cis.ufl.edu!caen!malgudi.oar.net!cmhcsys.cmhcsys.com!chuck
  63734. From: chuck@cmhcsys.com (Chuck Stickelman)
  63735. Newsgroups: comp.protocols.kermit.misc
  63736. Subject: MAC Kermit?
  63737. Date: 16 Dec 1994 20:53:40 GMT
  63738. Organization: CMHC Systems
  63739. Lines: 16
  63740. Message-Id: <3csuok$9h0@cmhcsys.cmhcsys.com>
  63741. Nntp-Posting-Host: news.cmhcsys.com
  63742. X-Newsreader: TIN [version 1.2 PL2]
  63743. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  63744.  
  63745.  
  63746. I'm sure this is a FAQ (or at least asked/answered 1K times!)
  63747. but I'm not able to get onto rtfm.mit.edu.
  63748. What is the status of Kermit on the Macintosh's?
  63749. Where is the latest version located, and old is it?
  63750.  
  63751. Thanks
  63752. Chuck
  63753.  
  63754. --
  63755. Charles A. Stickelman            <chuck@cmhcsys.com>
  63756. PC Sales Engineer            Home:    (419) 362-1716
  63757. CMHC Systems, Inc.            Work:    (614) 764-0143
  63758. 570 Metro Place North            Sales:    (800) 528-9025
  63759. Dublin, OH 43017 USA            FAX:    (614) 764-0439
  63760. -- 
  63761.  
  63762. From news@columbia.edu Wed Dec 14 17:51:16 1994
  63763. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22150
  63764.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 17 Dec 1994 04:32:51 -0500
  63765. Received: by apakabar.cc.columbia.edu id AA02735
  63766.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 17 Dec 1994 04:32:50 -0500
  63767. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!swiss.ans.net!emi.com!pauling.wadsworth.org!frank
  63768. From: frank@pauling.wadsworth.org (Franklin Hsia)
  63769. Newsgroups: comp.protocols.kermit.misc
  63770. Subject: Stripping ANSI escape sequence from log, how?
  63771. Date: 14 Dec 1994 17:51:16 GMT
  63772. Organization: Wadsworth Center, NY Health Dept.
  63773. Lines: 19
  63774. Message-Id: <3cnbak$8lc@pauling.wadsworth.org>
  63775. Nntp-Posting-Host: sirius.wadsworth.org
  63776. X-Newsreader: TIN [version 1.2 PL2]
  63777. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  63778.  
  63779. Working with MS-KERMIT and logging a VT220 session to a file.
  63780.  
  63781. Problem:  The file contains ANSI escape sequences which are extraneous for
  63782. my purposes.  I would like to only deal with the text portion.
  63783.  
  63784. Is there a utility out there that can strip away the ANSI stuff?  Or is there
  63785. a setting in KERMIT I can set to?
  63786.  
  63787. Frank 
  63788.  
  63789.  
  63790. --
  63791. _________________________________________________________________________
  63792.              Frank Hsia 
  63793.      __.     Sr. Computer Programmer/Analyst  phone: (518) 473-0773
  63794.   __/  |     Wadsworth Center, Room D-420     fax:   (518) 474-8590
  63795.  /___ *|     New York State Dept of Health    frank@wadsworth.ph.albany.edu  
  63796.      \_| _   P.O. Box 509                     Frank.Hsia@wadsworth.org   
  63797.        ~~    Albany, New York 12201-0509      
  63798.  
  63799. From news@columbia.edu Wed Dec 14 08:34:31 1994
  63800. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03511
  63801.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 17 Dec 1994 08:21:56 -0500
  63802. Received: by apakabar.cc.columbia.edu id AA08941
  63803.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 17 Dec 1994 08:21:54 -0500
  63804. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!udel!gatech!howland.reston.ans.net!news.cac.psu.edu!psuvm!hdk
  63805. Organization: Penn State University
  63806. Date: Wed, 14 Dec 1994 13:34:31 EST
  63807. From: H. D. Knoble <HDK@psuvm.psu.edu>
  63808. Message-Id: <94348.133431HDK@psuvm.psu.edu>
  63809. Newsgroups: comp.protocols.kermit.misc
  63810. Subject: Re: Stripping ANSI escape sequence from log, how?
  63811. References: <3cnbak$8lc@pauling.wadsworth.org>
  63812. Lines: 54
  63813. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  63814.  
  63815. In article <3cnbak$8lc@pauling.wadsworth.org>, frank@news.wadsworth.org
  63816. (Franklin Hsia) says:
  63817.  
  63818. >Working with MS-KERMIT and logging a VT220 session to a file.
  63819.  
  63820. >Problem:  The file contains ANSI escape sequences which are extraneous for
  63821. >my purposes.  I would like to only deal with the text portion.
  63822.  
  63823. >Is there a utility out there that can strip away the ANSI stuff?  Or is there
  63824. >a setting in KERMIT I can set to?
  63825.  
  63826. Try using DOS and MS-Kermit as shown in the following .BAT file to
  63827. to convert the DOS capture file capfile.vt to capfile.txt:
  63828.  
  63829. @Echo off
  63830. REM Filename: FIXVT.BAT
  63831. REM Purpose: DOS Batch code to remove escape sequences from VTxxx capture
  63832. REM          files using MS-Kermit as the working tool.
  63833. REM By: Skip Knoble, Penn State Center for Academic Computing
  63834. REM Input file: capfile.vt
  63835. REM Output file: capfile.txt
  63836. REM Platform: any PC and DOS that will run MS-Kermit 3.13 or 3.14
  63837. REM -------------------------------------------------------------------------
  63838.  
  63839. REM The character string, Esc OpenBracket ? 5 i  when prepended to
  63840. REM the VTxxx capture file is the code to "turn on" the PC Printer.
  63841. REM Usage Note:
  63842. REM You must replace the phrase "ESC OpenBracket " in the next echo
  63843. REM statement with two contiguous characters: ASCII 27 ASCII 91
  63844. REM before running this .BAT REM file on your PC. This is only to
  63845. REM allow this DOS algorithm to appear as NON-DOS printable prose.
  63846. REM (With DOS 5.x 6.x "ESC" can be entered via DOS EDIT by pressing:
  63847. REM Ctrl-P,Ctrl-OpenBracket. Before DOS 5.0 occurrences of "echo." can be
  63848. REM replaced by "echo LineFeed" where LineFeed is the ASCII 10 character.)
  63849. echo ESC OpenBracket ?5i > temp.txt
  63850. copy temp.txt /b + capfile.vt /b > nul
  63851.  
  63852. REM Append some linefeeds to the end to set up a message to end user.
  63853. echo. >> temp.txt
  63854. Echo ------- Text from CAPFILE.VT appears above this line ------- >> temp.txt
  63855. FOR %%v IN (1 2 3 4 5 6 7 8 9 * 1 2 3 4 5 ) DO echo. >> temp.txt
  63856. REM Append that message and LF's to roll rest of replayed session off screen.
  63857. echo Please press Alt-X now to return to DOS >> temp.txt
  63858. FOR %%v IN (1 2 3 4 5) DO echo. >> temp.txt
  63859.  
  63860. REM Invoke Kermit to convert the file temp.txt to capfile.txt
  63861. REM Setting port BIOSn will allow MS-Kermit to do its thing, even while
  63862. REM something else (e.g., SLIP driver)may be using COMn, without disturbing
  63863. REM this COM port session.
  63864. kermit -f nul, set port bios1, set print capfile.txt, replay temp.txt
  63865.  
  63866. erase temp.txt
  63867. if exist capfile.txt Echo Output file is capfile.txt.
  63868. REM ---End FIXVT.BAT ---
  63869.  
  63870. From news@columbia.edu Sat Dec 17 13:25:26 1994
  63871. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04291
  63872.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 17 Dec 1994 08:34:11 -0500
  63873. Received: by apakabar.cc.columbia.edu id AA09248
  63874.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 17 Dec 1994 08:34:09 -0500
  63875. Path: news.columbia.edu!panix!news.mathworks.com!europa.eng.gtefsd.com!library.ucla.edu!news.ucdavis.edu!landau.ucdavis.edu!hchau
  63876. From: hchau@landau.ucdavis.edu (Hung Chau)
  63877. Newsgroups: comp.protocols.kermit.misc
  63878. Subject: Re: How to Optimize MS-Kermit for Speed
  63879. Date: 17 Dec 1994 13:25:26 GMT
  63880. Organization: University of California, Davis
  63881. Lines: 21
  63882. Message-Id: <3cuos6$bkp@mark.ucdavis.edu>
  63883. References: <3cetso$2t8@mark.ucdavis.edu>
  63884. Nntp-Posting-Host: landau.ucdavis.edu
  63885. X-Newsreader: TIN [version 1.2 PL2]
  63886. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  63887.  
  63888. Hung Chau (hchau@landau.ucdavis.edu) wrote:
  63889.  
  63890. : I have also heard about sliding windows and Control Character
  63891. : unprefixing but so far sliding windows does nothing for me
  63892. : and Control Character unprefixing only make thing worse. If someone
  63893. : can explain to me what I am doing wrong or better what exactly
  63894. : am I changing when I set sliding windows or Control Character
  63895. : unprefixing.
  63896.  
  63897. :                         Thank You
  63898.  
  63899.  
  63900. Thank you to all those who send reply to me.   There was simply too many people for
  63901. me to write personal thank you note to.  I was very surprised and well pleased
  63902. that there were so many nice and wonderful people who went out of their way to
  63903. help me.  Again thank you very much everyone for you time and especially Frank
  63904. da Cruz for "inventing" Kermit and Joe R. Doupnik for making MS-Kermit
  63905. absolutely the best communication package in the PC world bar none.
  63906.  
  63907.  
  63908.                         Hung Chau
  63909.  
  63910. From news@columbia.edu Sat Dec 17 02:00:51 1994
  63911. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20485
  63912.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 17 Dec 1994 12:52:15 -0500
  63913. Received: by apakabar.cc.columbia.edu id AA22686
  63914.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 17 Dec 1994 12:52:14 -0500
  63915. Newsgroups: comp.protocols.kermit.misc
  63916. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!bloom-beacon.mit.edu!gatech!psuvax1!uwm.edu!reuter.cse.ogi.edu!netnews.nwnet.net!serval.net.wsu.edu!serval.net.wsu.edu.!chang
  63917. From: chang@theta.math.wsu.edu (Ching Mo Chang)
  63918. Subject: Could Ckermit(OS2) share(or release) com port to other program? 
  63919. Message-Id: <CHANG.94Dec16180052@theta.math.wsu.edu>
  63920. Sender: news@serval.net.wsu.edu (News)
  63921. Organization: Washington State University
  63922. Date: Sat, 17 Dec 1994 02:00:51 GMT
  63923. Lines: 8
  63924. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  63925.  
  63926. I need to view 8-bit Chinese Characters in a DOS Chinese system, so I hope
  63927. that I can switch to DOS com program when I want to see Chinese characters.
  63928. But when ckermit active, I can not open other com program and when I close
  63929. ckermit it will hang-up modem.
  63930.  
  63931. Any suggestion?
  63932.  
  63933. Ching-Mo
  63934.  
  63935. From news@columbia.edu Sat Dec 17 02:31:35 1994
  63936. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20491
  63937.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 17 Dec 1994 12:52:17 -0500
  63938. Received: by apakabar.cc.columbia.edu id AA22690
  63939.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 17 Dec 1994 12:52:16 -0500
  63940. Newsgroups: comp.protocols.kermit.misc
  63941. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!vixen.cso.uiuc.edu!uwm.edu!reuter.cse.ogi.edu!netnews.nwnet.net!serval.net.wsu.edu!serval.net.wsu.edu.!chang
  63942. From: chang@theta.math.wsu.edu (Ching Mo Chang)
  63943. Subject: Help! Strip high bit(MSKERMIT)
  63944. Message-Id: <CHANG.94Dec16183135@theta.math.wsu.edu>
  63945. Sender: news@serval.net.wsu.edu (News)
  63946. Organization: Washington State University
  63947. Date: Sat, 17 Dec 1994 02:31:35 GMT
  63948. Lines: 10
  63949. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  63950.  
  63951. Did MSKERMIT has the option to set "strip high bit" off?
  63952.  
  63953. To view chinese characters on line in an 8 bit chinese dos system, I can
  63954. use com program like Telix with the "strip high bit" off option, but in
  63955. MSKERMIT(3.14 b14), using the 8bit option defined in mskermit.ini, I just
  63956. got some strange characters (same as I use Telix with "strip high bit" on).
  63957.  
  63958. If someone can help, I'll be very appreciates.
  63959.  
  63960. Ching-Mo
  63961.  
  63962. From news@columbia.edu Mon Dec 12 01:23:07 1994
  63963. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20860
  63964.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 17 Dec 1994 12:59:38 -0500
  63965. Received: by apakabar.cc.columbia.edu id AA23232
  63966.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 17 Dec 1994 12:59:31 -0500
  63967. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  63968. From: jrd@cc.usu.edu (Joe Doupnik)
  63969. Newsgroups: comp.protocols.kermit.misc
  63970. Subject: Re: Arcnet Packet Driver?
  63971. Message-Id: <1994Dec12.072307.35190@cc.usu.edu>
  63972. Date: 12 Dec 94 07:23:07 MDT
  63973. References: <3c96mj$bej@cello.gina.calstate.edu> <NELSON.94Dec11235144@crynwr.crynwr.com>
  63974. Organization: Utah State University
  63975. Lines: 17
  63976. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  63977.  
  63978. In article <NELSON.94Dec11235144@crynwr.crynwr.com>, nelson@crynwr.crynwr.com (Russell Nelson) writes:
  63979. > In article <3c96mj$bej@cello.gina.calstate.edu> jpowell@cello.gina.calstate.edu (Larry Powell) writes:
  63980. >       I use arcnet with Novell which works fine. I also tested kermit with
  63981. >    the Netbios that comes with Novell (Lite) and it works also. I tried a
  63982. >    brief test of the packet drivers ARCNET and ARCETHER and they both failed
  63983. >    to initialize and/or self test.
  63984. > ARCNET won't work with Kermit.  ARCETHER should.  If it doesn't
  63985. > initialize, perhaps you used an incorrect command line?  What version
  63986. > of ARCETHER and command line did you use?
  63987. ---------------
  63988.     As Russ indicates, Kermit does not understand Arcnet per se. Thus
  63989. either run over an Arcnet to Ethernet Packet Driver, ARCETHER, or use
  63990. ODI. Since NetWare is involved you are probably better advised to use ODI
  63991. these days (and the VLMs etc of current shell technology).
  63992.     Joe D.
  63993.  
  63994. From news@columbia.edu Mon Dec 12 01:35:51 1994
  63995. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20867
  63996.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 17 Dec 1994 12:59:43 -0500
  63997. Received: by apakabar.cc.columbia.edu id AA23240
  63998.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 17 Dec 1994 12:59:42 -0500
  63999. Path: news.columbia.edu!panix!bloom-beacon.mit.edu!gatech!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  64000. From: jrd@cc.usu.edu (Joe Doupnik)
  64001. Newsgroups: comp.protocols.kermit.misc
  64002. Subject: Re: term type in telnet-macro (Kermit 3.14)
  64003. Message-Id: <1994Dec12.073551.35191@cc.usu.edu>
  64004. Date: 12 Dec 94 07:35:51 MDT
  64005. References: <3bul2u$47d@infosrv.rz.unibw-muenchen.de>
  64006. Organization: Utah State University
  64007. Lines: 48
  64008. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  64009.  
  64010. In article <3bul2u$47d@infosrv.rz.unibw-muenchen.de>, p41bsmk@kommsrv.rz.unibw-muenchen.de (Peter Schmolck) writes:
  64011. > I'm using MS-Kermit 3.14 Beta-14. My UNIX-hosts do not know what to do 
  64012. > with "vt320", and when trying to adjust my mscustom.ini definitions I 
  64013. > noted an inconsistency (or bug?).
  64014. > The telnet macro in mskermit.ini:
  64015. > define TELNET -
  64016. >   set flow none,-
  64017. >   set port tcp \%1 \%2,-
  64018. >   pause 0, if fail end 1,-
  64019. >   if def \%3 set term type \%3,-
  64020. >   if succ c  
  64021. > and accordingly the myhost define in mscustom.ini:
  64022. >  define myhost -
  64023. >    telnet myhost 23 vt320,-
  64024. >    if success assign myhost telnet \v(session)
  64025. > set the terminal type, and not only the TELNET-negotiated "telnet
  64026. > term-type" (which I rather preferred the macro to do). When I changed the
  64027. > myhost define from vt320 to vt220 the result was, that -- expectedly --
  64028. > the status line entry changed to VT220, but --unexpectedly-- the remote
  64029. > TELNET server still received a "VT320". (??)
  64030. > BTW, mskermit.bwr says: "... to create an override string with command 
  64031. >  SET TCP/IP TELNET-TERM-TYPE."
  64032. >      ^^^^^^^^^^^^^^
  64033. > Instead this should read either "set tcp/ip term-type" or "set telnet 
  64034. > term-type".
  64035. -----------
  64036.     It's not your fault, it's ours.
  64037.     In reality the MSK command SET PORT TCP/IP acquires just two
  64038. arguments: host and port number. It doesn't look for a terminal type.
  64039. The way to use a different terminal type is SET TERMINAL TYPE kind
  64040. or just SET TERMINAL kind. This will pass along to the host, upon
  64041. request, the same terminal type spelling we see in commands. Here is 
  64042. the canned list, lifted from the code:
  64043.     "UNKNOWN","H-19","VT52","VT100","VT102","VT220","VT320",
  64044.     "TEK4014","VIP7809","PT200","D463","D470","wyse50","ANSI"
  64045.  
  64046.     As you point out, the program uses SET TCP/IP TERM-TYPE ident
  64047. as the way to tell the host a different identication string than the 
  64048. default method. 
  64049.     The docs will be modified to be clear and correct on both items.
  64050.     Thanks,
  64051.     Joe D.
  64052.  
  64053. From news@columbia.edu Tue Dec 13 18:53:51 1994
  64054. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23499
  64055.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 17 Dec 1994 13:42:34 -0500
  64056. Received: by apakabar.cc.columbia.edu id AA26086
  64057.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 17 Dec 1994 13:42:32 -0500
  64058. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news.moneng.mei.com!uwm.edu!lll-winken.llnl.gov!enews.sgi.com!decwrl!tribune.usask.ca!quartz.ucs.ualberta.ca!news
  64059. From: Ken.Crossman@ualberta.ca (ken crossman)
  64060. Newsgroups: comp.protocols.kermit.misc
  64061. Subject: Re: Intermittent Problem with Kermit Under Windows
  64062. Date: 13 Dec 1994 18:53:51 GMT
  64063. Organization: University of Alberta
  64064. Lines: 15
  64065. Message-Id: <3ckqjv$v74@quartz.ucs.ualberta.ca>
  64066. References: <94340.130308SMITHM@qucdn.queensu.ca> <3cbbtd$iqi@apakabar.cc.columbia.edu> <1994Dec11.212311.35180@cc.usu.edu>
  64067. Reply-To: ken.crossman@ualberta.ca
  64068. Nntp-Posting-Host: snowbird.ucs.ualberta.ca
  64069. X-Newsreader: WinVN 0.92.6+
  64070. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  64071.  
  64072.  
  64073. Hello Joe:
  64074.  
  64075. Another window-ish question:
  64076.  
  64077. Most of our Windows/TCPIP customers are using a Winsock stack, usually
  64078. Novells.
  64079.  
  64080. We have not been able to locate a Winsock Telnet client which
  64081. can match the features provided by Mskermit. (diacritics, session logging).
  64082.  
  64083. Do you know of any way to get Mskermit like quality from Telnet sessions 
  64084. when using Winsock? 
  64085.  
  64086. Thanks.
  64087.  
  64088. From news@columbia.edu Sun Dec 11 20:08:26 1994
  64089. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25398
  64090.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 17 Dec 1994 14:11:24 -0500
  64091. Received: by apakabar.cc.columbia.edu id AA27947
  64092.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 17 Dec 1994 14:11:23 -0500
  64093. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!concert!ais.com!bruce
  64094. From: bruce@ais.com
  64095. Newsgroups: comp.protocols.kermit.misc
  64096. Subject: Re: Status line
  64097. Message-Id: <1994Dec12.010826.7025@ais.com>
  64098. Date: 12 Dec 94 01:08:26 EST
  64099. References: <KSHAW.94Dec8032548@jobe.shell.portal.com> <1994Dec8.220403.34973@cc.usu.edu>
  64100. Distribution: world
  64101. Organization: Applied Information Systems, Chapel Hill, NC
  64102. Lines: 45
  64103. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  64104.  
  64105. In article <1994Dec8.220403.34973@cc.usu.edu>, jrd@cc.usu.edu (Joe Doupnik) writes:
  64106. > In article <KSHAW.94Dec8032548@jobe.shell.portal.com>, kshaw@jobe.shell.portal.com (kendall thomason shaw) writes:
  64107. >> Hello,
  64108. >>     I've not figured out how to get rid of the status line in order to
  64109. >> have all the lines writable by vi and what not. I can define a 80x49
  64110. >> screen and toggle the status line, but I'd like to have an 80x50
  64111. >> screen. If I define an 80x50 screen with vt320 emulation, lynx and vi
  64112. >> will write to the status line but they don't then erase what they
  64113. >> write there, and worse yet, lynx scrolls the screen up (down?) with
  64114. >> the previous status line stuck in the 50th row, and puts a new status
  64115. >> line in the 49th row. If someone could help me either with
  64116. >> termcap/terminfo or getting kermit to skip the status line idea, I'd
  64117. >> be pleased. Here's my termcap entry:
  64118. > ------------
  64119. >     The last line, status, is an integral part of VT terminals. There
  64120. > is no way of making that part of the regular screen.
  64121. >     Joe D.
  64122.  
  64123. This is very dependent on which exact VT terminal you're talking about.
  64124. For the VT300 series, there is no way to incorporate the status line
  64125. as part of the main screen, although some implementations (eg, DECterm,
  64126. a VT320-level implementation on DEC workstations) allow you to select
  64127. the status line or not, and also allow you to set the size of the main
  64128. screen (up to perhaps 72x132 or so being reasonable if you have a
  64129. 1280x1024 screen), which gives you much the same capability that's being
  64130. asked for here.  However if the host software requests a status line, the
  64131. DECterm will helpfully create it for you (keeping your main window the
  64132. same size but possibly making the entire window too big to quite fit on
  64133. the screen if you've made it big).
  64134.  
  64135. The VT420, on the other hand, actually does allow you to combine the
  64136. status line with the main screen so that you get true 25x80 screen
  64137. addressing but no status line.  It also allows you to set the terminal
  64138. in 36 or 48-line modes, but I think those include a separate status
  64139. line.  I don't know offhand what the VT420 does with the "Select Status
  64140. Line" commands if it's in 25x80 mode;  the terminal I've usually
  64141. experimented with for such questions is on the other side of town, and
  64142. the documentation around here is vague on the subject.
  64143.  
  64144. The subject of compatibility with VT-series status lines is rather
  64145. subtle.  I have yet to see any terminal emulator, commercial or
  64146. otherwise (including Kermit and even DEC's Pathworks terminal
  64147. emulator, I might add) that quite gets it all right.
  64148.  
  64149. Bruce C. Wright
  64150.  
  64151. From news@columbia.edu Fri Dec 16 05:56:54 1994
  64152. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27031
  64153.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 17 Dec 1994 14:38:23 -0500
  64154. Received: by apakabar.cc.columbia.edu id AA29830
  64155.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 17 Dec 1994 14:38:22 -0500
  64156. Newsgroups: comp.protocols.kermit.misc
  64157. Path: news.columbia.edu!sol.ctr.columbia.edu!news.msfc.nasa.gov!news.larc.nasa.gov!lerc.nasa.gov!magnus.acs.ohio-state.edu!math.ohio-state.edu!usc!howland.reston.ans.net!gatech!newsxfer.itd.umich.edu!caen!hearst.acc.Virginia.EDU!murdoch!fulton.seas.Virginia.EDU!esh6h
  64158. From: esh6h@fulton.seas.Virginia.EDU (Erik Hatcher)
  64159. Subject: Re: SEND sending 0 byte file!
  64160. Message-Id: <D0w36u.KB4@murdoch.acc.Virginia.EDU>
  64161. Sender: usenet@murdoch.acc.Virginia.EDU
  64162. Organization: University of Virginia
  64163. References: <D0ppuE.L0u@murdoch.acc.Virginia.EDU> <3cpkvm$e1v@blackice.winternet.com> <D0w2Mv.JnG@murdoch.acc.Virginia.EDU>
  64164. Date: Fri, 16 Dec 1994 05:56:54 GMT
  64165. Lines: 23
  64166. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  64167.  
  64168. In article <D0w2Mv.JnG@murdoch.acc.Virginia.EDU>,
  64169. Erik Hatcher <esh6h@fulton.seas.Virginia.EDU> wrote:
  64170.  
  64171. >
  64172. >Can't do the "asg".  I'm running in batch mode.  That's not
  64173. >the problem anyway.
  64174.  
  64175. Oops!  :)  I spoke too quickly.  I misread the "asg" and
  64176. thought we were talking about an "askq"!  My apologies.
  64177. I most certainly could do that in batch mode.
  64178.  
  64179. But the below is still truth...
  64180.  
  64181. >
  64182. >Frank and I have discussed it and it turns out that "send"
  64183. >gets confused if you have a "open !read" (maybe even just
  64184. >"read") open.  If it's closed send works fine.
  64185. >
  64186. --
  64187. Erik Hatcher                           + "But every now and then we just have
  64188. http://fulton.seas.virginia.edu/~esh6h |  to howl with the wolves." 
  64189.                                        |        - Werner Heisenberg
  64190. ---------------------------------------+-------------------------------------
  64191.  
  64192. From news@columbia.edu Sat Dec 17 21:21:45 1994
  64193. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04070
  64194.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 17 Dec 1994 16:21:48 -0500
  64195. Received: by apakabar.cc.columbia.edu id AA18738
  64196.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 17 Dec 1994 16:21:47 -0500
  64197. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  64198. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  64199. Newsgroups: comp.protocols.kermit.misc
  64200. Subject: Re: Help! Strip high bit(MSKERMIT)
  64201. Date: 17 Dec 1994 21:21:45 GMT
  64202. Organization: Columbia University
  64203. Lines: 20
  64204. Message-Id: <3cvkpa$i9d@apakabar.cc.columbia.edu>
  64205. References: <CHANG.94Dec16183135@theta.math.wsu.edu>
  64206. Nntp-Posting-Host: watsun.cc.columbia.edu
  64207. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  64208.  
  64209. In article <CHANG.94Dec16183135@theta.math.wsu.edu>,
  64210. Ching Mo Chang <chang@theta.math.wsu.edu> wrote:
  64211. >Did MSKERMIT has the option to set "strip high bit" off?
  64212. >
  64213. >To view chinese characters on line in an 8 bit chinese dos system, I can
  64214. >use com program like Telix with the "strip high bit" off option, but in
  64215. >MSKERMIT(3.14 b14), using the 8bit option defined in mskermit.ini, I just
  64216. >got some strange characters (same as I use Telix with "strip high bit" on).
  64217. >
  64218. >If someone can help, I'll be very appreciates.
  64219. >
  64220. >Ching-Mo
  64221.  
  64222. The other program must be called from with C-kermit, and then it must
  64223. the ports file handle as a parameter.  It cannot try to open the port 
  64224. directly.
  64225. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  64226. "C-Kermit: available on more platforms than any other communications software."
  64227. "Kermit FTP: sending files whenever and wherever they are needed."
  64228. *NEW* OS/2 version 5A(190): ftp kermit.columbia.edu /kermit/archives/ckoker.zip 
  64229.  
  64230. From news@columbia.edu Mon Dec 12 15:37:54 1994
  64231. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15345
  64232.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 17 Dec 1994 19:16:35 -0500
  64233. Received: by apakabar.cc.columbia.edu id AA01700
  64234.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 17 Dec 1994 19:16:33 -0500
  64235. Path: news.columbia.edu!panix!news.mathworks.com!uhog.mit.edu!bloom-beacon.mit.edu!gatech!howland.reston.ans.net!pipex!uunet!news.cais.com!cais2.cais.com!duffy
  64236. From: duffy@cais2.cais.com (Duffy Men)
  64237. Newsgroups: comp.protocols.kermit.misc
  64238. Subject: HELP!! How to set DTR ignore in kermit
  64239. Date: 12 Dec 1994 15:37:54 GMT
  64240. Organization: Capital Area Internet Service
  64241. Lines: 6
  64242. Message-Id: <3chqoi$7nm@news.cais.com>
  64243. Nntp-Posting-Host: cais2.cais.com
  64244. X-Newsreader: TIN [version 1.2 PL2]
  64245. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  64246.  
  64247. I has a Hayes optima 288 modem connection to my IBM RS6000 AIX 3.2.5 
  64248. computer.  I setup my modem &D0 to ignore the DTR when exit (no hang 
  64249. up).  I can dial-out no problem, but if I exit kermit, the modem will 
  64250. hang up.  It is not what I want.  Can anyone tell me how to set Kermit 
  64251. DTR ignore?  Thank you for help.
  64252.  
  64253.  
  64254. From news@columbia.edu Mon Dec 12 15:27:12 1994
  64255. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15380
  64256.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 17 Dec 1994 19:17:09 -0500
  64257. Received: by apakabar.cc.columbia.edu id AA01727
  64258.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 17 Dec 1994 19:17:07 -0500
  64259. Path: news.columbia.edu!panix!news.mathworks.com!europa.eng.gtefsd.com!howland.reston.ans.net!pipex!uunet!news.cais.com!cais2.cais.com!duffy
  64260. From: duffy@cais2.cais.com (Duffy Men)
  64261. Newsgroups: comp.protocols.kermit.misc
  64262. Subject: hELP!! hoe to set DTR ignore on kermit
  64263. Date: 12 Dec 1994 15:27:12 GMT
  64264. Organization: Capital Area Internet Service
  64265. Lines: 5
  64266. Message-Id: <3chq4g$7bm@news.cais.com>
  64267. Nntp-Posting-Host: cais2.cais.com
  64268. X-Newsreader: TIN [version 1.2 PL2]
  64269. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  64270.  
  64271. I has a Hayes optima 288 modem connect to my IBM RS6000 AIX 3.2.5 
  64272. computer.  I setup my modem &D0 to ignore  DTR when exit (don't hnagup).  
  64273. In kermit, I have no problem to dial-out, if I exit from kermit.  My 
  64274. modem get hangup, that what I don't want (because I want use SLIP line).  
  64275. CAn anyone tell me how to do it?  Thank you.
  64276.  
  64277. From news@columbia.edu Sat Dec 17 13:32:07 1994
  64278. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02141
  64279.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 17 Dec 1994 23:36:34 -0500
  64280. Received: by apakabar.cc.columbia.edu id AA18184
  64281.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 17 Dec 1994 23:36:33 -0500
  64282. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!noc.near.net!eisner!burns
  64283. From: burns@eisner.decus.org (Scott Burns)
  64284. Newsgroups: comp.protocols.kermit.misc
  64285. Subject: Re: VMS C-Kermit in batch mode?
  64286. Message-Id: <1994Dec17.083207.8056@eisner>
  64287. Date: 17 Dec 94 08:32:07 -0500
  64288. Organization: DECUServe
  64289. Lines: 7
  64290. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  64291.  
  64292. It is a known problem with that release. Upgrade to 5A(190) from:
  64293.  
  64294. watsun.cc.columbia.edu
  64295.  
  64296. scott
  64297.  
  64298. burns@eisner.decus.org
  64299.  
  64300. From news@columbia.edu Tue Dec 13 16:51:08 1994
  64301. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10304
  64302.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 18 Dec 1994 10:09:19 -0500
  64303. Received: by apakabar.cc.columbia.edu id AA14276
  64304.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 18 Dec 1994 10:09:17 -0500
  64305. Path: news.columbia.edu!panix!news.mathworks.com!bigboote.WPI.EDU!wpi.WPI.EDU!eeyore
  64306. From: eeyore@wpi.WPI.EDU ( Eeyore )
  64307. Newsgroups: comp.protocols.kermit.misc
  64308. Subject: Highlighted subject line when reading news
  64309. Date: 13 Dec 1994 16:51:08 GMT
  64310. Organization: Worcester Polytechnic Institute
  64311. Lines: 4
  64312. Message-Id: <3ckjds$ot6@bigboote.WPI.EDU>
  64313. Nntp-Posting-Host: wpi.wpi.edu
  64314. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  64315.  
  64316.     This very old AT&T monitor makes it very difficult to see the
  64317.     words in the subject when they are highlighted.  Is there a
  64318.     way to turn it off?
  64319.                 Thanks a lot.
  64320.  
  64321. From news@columbia.edu Sun Dec 18 16:50:31 1994
  64322. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16909
  64323.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 18 Dec 1994 12:01:22 -0500
  64324. Received: by apakabar.cc.columbia.edu id AA19772
  64325.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 18 Dec 1994 12:01:20 -0500
  64326. Newsgroups: comp.protocols.kermit.misc
  64327. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!torn!blaze.trentu.ca!ccksb
  64328. From: ccksb@blaze.trentu.ca (Ken Brown)
  64329. Subject: MSK3.13 & MS TCP/IP-32 ?
  64330. Message-Id: <1994Dec18.165031.273@blaze.trentu.ca>
  64331. Organization: Trent University, Ontario
  64332. Date: Sun, 18 Dec 1994 16:50:31 GMT
  64333. Lines: 17
  64334. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  64335.  
  64336. A preliminary inquiry...
  64337.  
  64338. Can MS Kermit 3.13 run from MS Windows for Workgroups 3.11 in a window when
  64339. MS TCP/IP-32 is also selected as a protocol?  I'd be wanting to use IPXODI
  64340. (an I gather ODIPKT together with WINPKT).  I see from the docs that MSK
  64341. will run in a window over odi when odipkt and winpkt are run on top...but
  64342. with only one physical board it looks like MS TCP/IP-32 and MSK's internal
  64343. TCP stack equate to two tcp's, which is a no-no.
  64344.  
  64345. Comments, suggestions and pointers welcomed.
  64346.  
  64347. Thank you.
  64348.  
  64349. -- 
  64350. Ken Brown                                internet: kbrown@trentu.ca
  64351. Trent University Computing & Telecommunications  tel: (705)748-1540
  64352. Peterborough, Ontario, Canada, K9J 7B8           fax: (705)748-1635
  64353.  
  64354. From news@columbia.edu Sun Dec 18 13:24:47 1994
  64355. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27762
  64356.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 18 Dec 1994 21:37:03 -0500
  64357. Received: by apakabar.cc.columbia.edu id AA09640
  64358.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 18 Dec 1994 21:37:02 -0500
  64359. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  64360. From: jrd@cc.usu.edu (Joe Doupnik)
  64361. Newsgroups: comp.protocols.kermit.misc
  64362. Subject: Re: Help! Strip high bit(MSKERMIT)
  64363. Message-Id: <1994Dec18.192447.35700@cc.usu.edu>
  64364. Date: 18 Dec 94 19:24:47 MDT
  64365. References: <CHANG.94Dec16183135@theta.math.wsu.edu> <3cvkpa$i9d@apakabar.cc.columbia.edu>
  64366. Organization: Utah State University
  64367. Lines: 27
  64368. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  64369.  
  64370. In article <3cvkpa$i9d@apakabar.cc.columbia.edu>, jaltman@watsun.cc.columbia.edu (Jeffrey Altman) writes:
  64371. > In article <CHANG.94Dec16183135@theta.math.wsu.edu>,
  64372. > Ching Mo Chang <chang@theta.math.wsu.edu> wrote:
  64373. >>Did MSKERMIT has the option to set "strip high bit" off?
  64374. >>
  64375. >>To view chinese characters on line in an 8 bit chinese dos system, I can
  64376. >>use com program like Telix with the "strip high bit" off option, but in
  64377. >>MSKERMIT(3.14 b14), using the 8bit option defined in mskermit.ini, I just
  64378. >>got some strange characters (same as I use Telix with "strip high bit" on).
  64379. >>
  64380. >>If someone can help, I'll be very appreciates.
  64381. >>
  64382. >>Ching-Mo
  64383. > The other program must be called from with C-kermit, and then it must
  64384. > the ports file handle as a parameter.  It cannot try to open the port 
  64385. > directly.
  64386. ----------------
  64387.     In terminal emulation mode the MS-DOS Kermit command to change
  64388. the high bit of bytes displayed by 8-bit terminals (assuming a parity
  64389. of NONE) is
  64390.     SET TERM DISPLAY {7-BIT, 8-BIT}, or alternatively
  64391.     SET TERM BYTESIZE {same as above}, or alternatively
  64392.     SET DISPLAY {same as above, plus file transfer screen options}
  64393. These are aliases of the same command. Use SHOW TERMINAL to see the
  64394. active setting.
  64395.     Joe D.
  64396.  
  64397. From news@columbia.edu Sun Dec 18 22:32:57 1994
  64398. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01888
  64399.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 18 Dec 1994 22:32:57 -0500
  64400. Received: by apakabar.cc.columbia.edu id AA13296
  64401.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 18 Dec 1994 22:32:55 -0500
  64402. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!gatech!hubcap.clemson.edu!tooner!ncostes
  64403. From: ncostes@eng.clemson.edu (Nicolae P. Costescu)
  64404. Newsgroups: comp.protocols.kermit.misc
  64405. Subject: Where can I ftp mskermit?
  64406. Date: Sun, 18 Dec 1994 22:20:42
  64407. Organization: Clemson University/ECE Department
  64408. Lines: 8
  64409. Message-Id: <ncostes.1.001658FF@eng.clemson.edu>
  64410. Nntp-Posting-Host: tooner.eng.clemson.edu
  64411. X-Newsreader: Trumpet for Windows [Version 1.0 Rev A]
  64412. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  64413.  
  64414. Would someone please direct me to where I can ftp mskermit? Also, does
  64415. mskermit support large blocks (eg 1024 bytes)? This is the best way I've found
  64416. for speeding kermit file transfers. Linux and other unix kermits have no
  64417. problem w/this, but all kermit implementations I've tried for dos/windows
  64418. use 90 byte blocks. I obviously haven't tried mskermit, and am hoping it'll
  64419. do big blocks.
  64420.  
  64421. Thanks
  64422.  
  64423. From news@columbia.edu Mon Dec 19 13:59:51 1994
  64424. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12241
  64425.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 19 Dec 1994 09:17:18 -0500
  64426. Received: by apakabar.cc.columbia.edu id AA03406
  64427.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 19 Dec 1994 09:17:15 -0500
  64428. Newsgroups: comp.protocols.kermit.misc
  64429. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!vixen.cso.uiuc.edu!uwm.edu!fnnews.fnal.gov!gw1.att.com!nntpa!not-for-mail
  64430. From: mrbaker@hodcs.ho.att.com (-M.BAKER)
  64431. Subject: Re: MS-Kermit running under Windows trbl
  64432. Message-Id: <D129Jr.14q@nntpa.cb.att.com>
  64433. Sender: news@nntpa.cb.att.com (Netnews Administration)
  64434. Nntp-Posting-Host: hodcs.ho.att.com
  64435. Organization: AT&T
  64436. References: <D0wsAs.6vv@nntpa.cb.att.com> <1994Dec16.194852.35622@cc.usu.edu>
  64437. Date: Mon, 19 Dec 1994 13:59:51 GMT
  64438. Lines: 81
  64439. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  64440.  
  64441. In article <1994Dec16.194852.35622@cc.usu.edu>,
  64442. Joe Doupnik <jrd@cc.usu.edu> wrote:
  64443. >In article <D0wsAs.6vv@nntpa.cb.att.com>, mrbaker@hodcs.ho.att.com (-M.BAKER) writes:
  64444. >> Hi:
  64445. >> 
  64446. >> We are currently using MS-Kermit (Beta 14) to communicate with a UNIX
  64447. >> system, both directly from the DOS prompt as well as run from Windows.
  64448. >> I have packet driver 3C5X9PD and shim WINPKT doing the networking
  64449. >> honors.
  64450. >> 
  64451. >> The problem is that when someone telnet's to the UNIX system from
  64452. >> Windows (i.e., they have an icon for MS-KERMIT, using the .PIF
  64453. >> distributed with MS-KERMIT) everything works fine until they minimize
  64454. >> it and leave it alone for a while [still trying to measure exactly what
  64455. >> "a while" is -- seems to be a half hour or hour or so].  Then when they
  64456. >> return to MS-KERMIT, it is 'asleep'.  The TCP-IP connection no longer
  64457. >> seems to be working (no response to the UNIX shell prompt, no response
  64458. >> to the Telnet Are-You-There) yet the UNIX system still thinks the
  64459. >> connection is up.  I've tried running with SET TELNET DEBUG-OPTIONS ON
  64460. >> looking for clues, but no luck.
  64461. >> 
  64462. >> The only mentions I could find in the documentation is in the .BWR file.
  64463. >> Section 4 (Microsoft Windows) suggests changing the .PIF to raise
  64464. >> Kermit's priority, lock it in memory (even though the WINPKT docs
  64465. >> say this shouldn't be necessary), and make sure some background time
  64466. >> is allocated.  I've played with these the best I could with no apparent
  64467. >> luck.  It does have the caveat that Kermit is at the mercy of other
  64468. >> apps. anyhow.
  64469. >> 
  64470. >> When I run MS-Kermit right from DOS (no Windows), it works just fine
  64471. >> even overnight so I'm pretty sure the indigestion is coming from Windows.
  64472. >> 
  64473. >> Would appreciate hearing from others who have run into this, have ideas,
  64474. >> etc. worth trying in order to minimize (if not eliminate) this problem.
  64475. >> Private email to mrbaker @ hodcs.att.com, or postings to this group
  64476. >> would be most welcome.
  64477. >--------------
  64478. >    Ok. I tried your situation here over the past 45 minutes. MSK 3.14
  64479. >beta-15 running in Windows as an icon, using ODIPKT+WINPKT over the current
  64480. >Novell ODI material. I logged onto my Unix machine with Kermit, shrunk MSK
  64481. >to an icon, and went away to speak with WordPerfect/Windows for the duration.
  64482. >After that 45 minute interval I enlarged the icon to a window and the
  64483. >connection was just fine.
  64484. >    A couple of guesses to make here. First, is your lan adapter's
  64485. >shared memory protected against all memory managers (DOS and again in
  64486. >Windows)? If not then Windows could be using that memory for other purposes
  64487. >and the lan adapter can become wedged or worse. An intermediate test, after
  64488. >you've exclude='d both sides, is to start another Telnet session with Kermit.
  64489. >If a new session starts ok then local comms are in working order.
  64490. >    Second, the lan adpater part of things may not be especially strong
  64491. >to begin with, and when it's not serviced often packets overwhelm it and it
  64492. >wedges. If there is an IRQ conflict (lan adapter sitting on IRQ 3 along with
  64493. >serial port COM2, for example) then the adapter can be squashed by the
  64494. >competing hardware and/or Window's drivers.
  64495. >    The option to "fix task in memory" is needed if you are not using
  64496. >winpkt with a Packet Driver. Go get mine, the two argument variety, from
  64497. >netlab2.usu.edu, cd drivers, file winpkt.zip, and give it a try. I don't fix 
  64498. >tasks in memory (absent minded Professor).
  64499. >    Joe D.
  64500.  
  64501. Hi Joe:
  64502.  
  64503. Many thanks for your quick & thorough reply(ies) to my question(s).  I'm
  64504. posting this in the hopes that it may be of interest to others.
  64505.  
  64506. I have not tried your 2-argument packet driver yet (I will this morning).
  64507. I'll report back on the results.
  64508.  
  64509. Meanwhile, I had a chance to repeat the experiment.....running Kermit under
  64510. MS-Windows, but using Lan WorkPlace's TELAPI in lieu of the 3c5x9pd/winpkt
  64511. combination.  I started it on Saturday afternoon and minimized it along
  64512. with a bunch of other Windows tasks.  When I came in, I remaximized it
  64513. and it was still logged into the UNIX system fine.  So to me, this suggests
  64514. that you are on target about the packet driver or thereabouts.
  64515.  
  64516. Once again, thanks!
  64517.  
  64518. M. Baker
  64519. AT&T Bell Labs, Holmdel
  64520. mrbaker  @  hodcs.att.com
  64521.  
  64522.  
  64523. From news@columbia.edu Sun Dec 18 15:27:22 1994
  64524. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19657
  64525.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 19 Dec 1994 10:33:18 -0500
  64526. Received: by apakabar.cc.columbia.edu id AA09365
  64527.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 19 Dec 1994 10:33:15 -0500
  64528. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  64529. From: jrd@cc.usu.edu (Joe Doupnik)
  64530. Newsgroups: comp.protocols.kermit.misc
  64531. Subject: Re: Where can I ftp mskermit?
  64532. Message-Id: <1994Dec18.212722.35703@cc.usu.edu>
  64533. Date: 18 Dec 94 21:27:22 MDT
  64534. References: <ncostes.1.001658FF@eng.clemson.edu>
  64535. Organization: Utah State University
  64536. Lines: 20
  64537. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  64538.  
  64539. In article <ncostes.1.001658FF@eng.clemson.edu>, ncostes@eng.clemson.edu (Nicolae P. Costescu) writes:
  64540. > Would someone please direct me to where I can ftp mskermit? Also, does
  64541. > mskermit support large blocks (eg 1024 bytes)? This is the best way I've found
  64542. > for speeding kermit file transfers. Linux and other unix kermits have no
  64543. > problem w/this, but all kermit implementations I've tried for dos/windows
  64544. > use 90 byte blocks. I obviously haven't tried mskermit, and am hoping it'll
  64545. > do big blocks.
  64546. --------------
  64547.     You've come to the right place.
  64548.     Ftp to kermit.columbia.edu for all Columbia Kermits. The release
  64549. level MSK is v3.13 and it's in both kermit/bin (binary archive msvibm.zip)
  64550. and the full sources + docs in kermit/a. Beta-15 of MSK v3.14 (pretty solid
  64551. and almost ready for release) is in kermit/test/bin, archive file mstibm.zip.
  64552.     MS-DOS Kermit does it all, and usually a good deal better than the
  64553. non-Columbia editions. Long packets? Of course, 9KB, and up to 32 window
  64554. slots of them if you have the memory (though that's really gross overkill).
  64555. Sliding Windows? Definitely, 32 slots, not a mere 2 or 4. Unprefix control
  64556. codes IF your link tolerates it and you are willing to risk it? You bet.
  64557.     Time to go raid&plunder.
  64558.     Joe D.
  64559.  
  64560. From news@columbia.edu Mon Dec 19 16:01:43 1994
  64561. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25346
  64562.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 19 Dec 1994 11:30:04 -0500
  64563. Received: by apakabar.cc.columbia.edu id AA14189
  64564.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 19 Dec 1994 11:30:00 -0500
  64565. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!bloom-beacon.mit.edu!gatech!swrinde!cs.utexas.edu!not-for-mail
  64566. From: manutter@mozart.cc.iup.edu (Mark Nutter)
  64567. Newsgroups: comp.protocols.kermit.misc
  64568. Subject: Help!  Mac C-Kermit 0.991(190) won't run
  64569. Date: 19 Dec 1994 10:01:43 -0600
  64570. Organization: UTexas Mail-to-News Gateway
  64571. Lines: 26
  64572. Sender: nobody@cs.utexas.edu
  64573. Message-Id: <AB1B18AE@mozart.cc.iup.edu>
  64574. Nntp-Posting-Host: news.cs.utexas.edu
  64575. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  64576.  
  64577. I am providing Macintosh support for a fair-sized university (14,000 
  64578. students), and am trying to get people set up with a good, free terminal 
  64579. program.  All our DOS people are using the DOS version of C-Kermit, with a 
  64580. comprehensive set of macros written by our own Systems group, and it works 
  64581. quite well.
  64582.  
  64583. The Mac version, however, is a different story.  I had (189) running long 
  64584. enough to set up and test some basic log-in macros, but now suddenly I can 
  64585. no longer get either (189) or (190) to run (keeps crashing in an area that 
  64586. Macsbug identifies as "mberto+xxxx", where xxxx is some fairly large hex 
  64587. number).  Thinking that maybe this problem is local to my machine, I have 
  64588. given a number of people copies of (190), but now they are reporting that it 
  64589. crashes on their machine also.  Lots of PowerMac crashes, but I'm on a 
  64590. Quadra 660AV running System 7.1.
  64591.  
  64592. Is anyone else out there having problems like this with Mac Kermit?  Is 
  64593. anyone *NOT* having problems like this with Mac Kermit?  I'd like to compare 
  64594. notes with somebody before I file a formal bug report.  Or is there some 
  64595. known problems running Mac Kermit under System 7.1 and later?
  64596.  
  64597. Thanks.
  64598.  
  64599. Mark Nutter
  64600. Tech Support at Indiana Univ. of PA
  64601. manutter@grove.iup.edu
  64602.  
  64603.  
  64604. From news@columbia.edu Mon Dec 19 14:26:03 1994
  64605. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00658
  64606.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 19 Dec 1994 12:25:22 -0500
  64607. Received: by apakabar.cc.columbia.edu id AA19446
  64608.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 19 Dec 1994 12:25:20 -0500
  64609. Path: news.columbia.edu!sol.ctr.columbia.edu!caen!usenet.coe.montana.edu!netnews.nwnet.net!ns1.nodak.edu!heart.cas.und.nodak.edu!degregor
  64610. From: degregor@aero.und.nodak.edu (Brian Degregorio)
  64611. Newsgroups: comp.protocols.kermit.misc
  64612. Subject: Help adding zmodem to MSKermit.
  64613. Date: 19 Dec 1994 14:26:03 GMT
  64614. Organization: University of North Dakota; Grand Forks, ND
  64615. Lines: 18
  64616. Message-Id: <3d455r$1fd8@heart.cas.und.nodak.edu>
  64617. Nntp-Posting-Host: agassiz.cas.und.nodak.edu
  64618. X-Newsreader: TIN [version 1.2 PL2]
  64619. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  64620.  
  64621. I'm trying to add gsz to kermit running on a direct connection (null modem), 
  64622. but when I try to recieve something gsz doesn't accept the null modem signal.
  64623. Any help would be greatly appreciated. 
  64624.  
  64625.                     Thanks in advance,
  64626.                     Brian Degregorio
  64627.                     
  64628.  
  64629. *****************************************************************************
  64630. **                 Brian Degregorio                         **
  64631. **                 3504 11th ave N apt #16               **
  64632. **                 Grand Forks, ND  58203                   **
  64633. **        Email:  degregor@aero.cas.und.nodak.edu               **
  64634. **              Phone:  701-772-7856 or if busy 701-795-8620               **
  64635. Captain Penny's Law:
  64636.     You can fool all of the people some of the time, and some of
  64637.     the people all of the time, but you Can't Fool Mom. 
  64638. *****************************************************************************
  64639.  
  64640. From news@columbia.edu Mon Dec 19 18:27:11 1994
  64641. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16389
  64642.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 19 Dec 1994 15:22:47 -0500
  64643. Received: by apakabar.cc.columbia.edu id AA04807
  64644.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 19 Dec 1994 15:22:45 -0500
  64645. Path: news.columbia.edu!sol.ctr.columbia.edu!caen!zip.eecs.umich.edu!newsxfer.itd.umich.edu!gatech!howland.reston.ans.net!torn!hermes.acs.ryerson.ca!turing.acs.ryerson.ca!bhillick
  64646. From: bhillick@acs.ryerson.ca (Bernard Hillick - MHNG/W94)
  64647. Newsgroups: comp.protocols.kermit.misc
  64648. Subject: comp.protocols.kermit.misc
  64649. Date: 19 Dec 1994 18:27:11 GMT
  64650. Organization: Ryerson Polytechnic University
  64651. Lines: 1
  64652. Message-Id: <3d4j9v$1lvk@hermes.acs.ryerson.ca>
  64653. Nntp-Posting-Host: turing.acs.ryerson.ca
  64654. X-Newsreader: TIN [version 1.2 PL1]
  64655. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  64656.  
  64657.  
  64658.  
  64659. From news@columbia.edu Mon Dec 19 10:15:04 1994
  64660. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21858
  64661.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 19 Dec 1994 16:27:32 -0500
  64662. Received: by apakabar.cc.columbia.edu id AA10469
  64663.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 19 Dec 1994 16:27:28 -0500
  64664. Path: news.columbia.edu!sol.ctr.columbia.edu!math.ohio-state.edu!uwm.edu!lll-winken.llnl.gov!decwrl!svc.portal.com!shell.portal.com!news1.shell.portal.com!kshaw
  64665. From: kshaw@jobe.shell.portal.com (kendall thomason shaw)
  64666. Newsgroups: comp.protocols.kermit.misc
  64667. Subject: termcap kermit and vt320
  64668. Date: 19 Dec 1994 10:15:04 GMT
  64669. Organization: Snausages Ltd.
  64670. Lines: 101
  64671. Distribution: world
  64672. Message-Id: <KSHAW.94Dec19101504@jobe.shell.portal.com>
  64673. Nntp-Posting-Host: jobe.shell.portal.com
  64674. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  64675.  
  64676.  
  64677. I'm going to post this to comp.terminals for maximum annoyance potential:
  64678.  
  64679. Hello,
  64680.     Here I am trying to figure out how to write my termcap entry and
  64681. my terminal setup stuff for msdos kermit which I use to dial in to my
  64682. SunOS 4.1.3 shell account. I have a few questions. First, I'm not sure
  64683. that I am clear about how the dialogue takes place between kermit's
  64684. vt320 emulation, and my shell. My using msdos kermit book describes
  64685. terminal character sets:
  64686.  
  64687. C0 being 7 bit "ASCII" control characters, e.g. ^N, ^O, ^J etc.
  64688. C1 being 8 bit ISO-6249 control characters, e.g. \E[, \EH, etc.
  64689. G0 being a 94 character character set
  64690. G1 being a 94 (or 96?) character character set
  64691. G2 being a 94 or 96 character character set
  64692. G3 " 
  64693.  
  64694. And then there's GL and GR (Graphics Left and Right)
  64695.  
  64696. GL holds the selected character set for C0 from G0-3
  64697. GR holds the selected character set for C1 from G0-3
  64698.  
  64699. Actually it says GL indicates which set to use if a 7 bit graphic
  64700. character arrives, and GR for an 8 bit character.
  64701.  
  64702. A DECSCL (ESC[ Pl;Pc"p, or CSI Pl;Pc"p) can select the use of 8 or 7
  64703. bit controls.
  64704.  
  64705. Single shifts SS2 and SS3 (or ESC N and ESC O) shift a character set
  64706. into GL from G2 and G3 respectively for the following character.
  64707.  
  64708. Locking shifts ESC n and ESC o do the same until disabled.
  64709.  
  64710. Locking shifts ^N and ^O do the same from G1 and G0.
  64711.  
  64712. And locking shifts right 3, 2, and 1 (ESC |, ESC }, and ESC ~) modify
  64713. GR. 
  64714.  
  64715. SCS (various sequences) can be used to designate an identifed
  64716. character set to a umm character set e.g. ISO Latin-1 into G2.
  64717.  
  64718. The character set identifiers listed include those for various
  64719. languages, and some line drawing sets.
  64720.  
  64721. And kermit has a command SET TERMINAL CHARACTER-SET TRANSPARENT which
  64722. displays all 8 bit characters.
  64723.  
  64724. And then in my termcap manual there is a parameter ac in which to
  64725. specify pairs of characters to translate for line drawing. I assume
  64726. this is the same as for the terminfo parameter acsc, where various
  64727. "glyphs" are defined. So for example an upper left hand corner box
  64728. character is refered to by the letter l, so you put l with your
  64729. tranlation immediately after, all in a row.
  64730.  
  64731. There are also enacs and smacs (eA and 'as' in termcap), for
  64732. "enabling" and "starting" an alternate character set.
  64733.  
  64734. First of all, I am not sure what symbols the following glyphs refer
  64735. to: 
  64736.  
  64737. lantern symbol
  64738. board of squares
  64739. scan line 1, scan line 9, and horizontal line (top bottom and middle?)
  64740.  
  64741. Then, I'm confused. If I dial in with an 8 bit line, I can stick to 8
  64742. bit controls (as far as what I put in my termcap)? Can I put 8 bit
  64743. control sequences into my termcap files? And in the alternate
  64744. character set capabilites am I to put literally the graphic character
  64745. from the appropriate character set in the string? Ascii 4 is a diamond
  64746. shaped character (7 bits), where as the solid box character is 219 (8 bits)
  64747. in code page 850 and others. If there's only one capability string for
  64748. enabling an alternate character set does this mean that I can only
  64749. choose wether I want bullets and diamonds, or line drawing characters?
  64750.  
  64751. Also, the strings I put in the termcap are to tell the host what
  64752. strings to send, or are they what strings to expect? I guess they have
  64753. to be what to send, but does that mean that I can't send an escape
  64754. sequence, or is my typing an escape sequence only a dialogue between
  64755. my keyboard and my terminal emulator? I don't have clear categories in
  64756. my head.
  64757.  
  64758. And last, there's a capability string al1 (al in termcap), to add a
  64759. line below the current line, with scrolling. I don't see this in the
  64760. kermit manual if it is something other than CR. Does anyone know
  64761. differently?
  64762.  
  64763. thanks
  64764.  
  64765.  
  64766.  
  64767. -- 
  64768.  
  64769. Kendall Shaw                        "Grease 'n Seasonings!"
  64770. (415)364-asdf                         
  64771. kshaw@shell.portal.com              
  64772. --
  64773.  
  64774. Kendall Shaw                        "Grease 'n Seasonings!"
  64775. (415)364-asdf                         
  64776. kshaw@shell.portal.com              
  64777.  
  64778. From news@columbia.edu Mon Dec 19 10:23:42 1994
  64779. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24647
  64780.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 19 Dec 1994 16:54:39 -0500
  64781. Received: by apakabar.cc.columbia.edu id AA13217
  64782.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 19 Dec 1994 16:54:38 -0500
  64783. Path: news.columbia.edu!sol.ctr.columbia.edu!math.ohio-state.edu!uwm.edu!vixen.cso.uiuc.edu!howland.reston.ans.net!gatech!swiss.ans.net!cmcl2!newsserv.cs.sunysb.edu!adam.cc.sunysb.edu!gene
  64784. From: gene@insti.physics.sunysb.edu (Eugene Tyurin)
  64785. Newsgroups: comp.protocols.kermit.misc
  64786. Subject: [Q] Mac Kermit or C-Kermit for Mac?
  64787. Date: 19 Dec 1994 10:23:42 GMT
  64788. Organization: Institute for Theoretical Physics, Stony Brook University
  64789. Lines: 10
  64790. Message-Id: <3d3mve$g71@adam.cc.sunysb.edu>
  64791. Reply-To: gene@insti.physics.sunysb.edu
  64792. Nntp-Posting-Host: insti.physics.sunysb.edu
  64793. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  64794.  
  64795. I'm sorry if this is a stupid question, but what is the difference
  64796. between Mac Kermit 0.991 (190) and C-Kermit 0.99 (190)? For me,
  64797. the only difference is that I cannot make 0.991 run by clicking on
  64798. it's saved settings file. :^(
  64799.  
  64800. -- 
  64801. Eugene Tyurin, Inst. for Theoretical Physics  -  Stony Brook Univ.
  64802.             WWW: http://www.physics.sunysb.edu:80/~gene/plan.html
  64803.        Internet: gene@insti.physics.sunysb.edu
  64804. Those who don't understand Unix are doomed to reinvent it, poorly.
  64805.  
  64806. From news@columbia.edu Mon Dec 19 22:53:56 1994
  64807. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29983
  64808.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 19 Dec 1994 17:53:58 -0500
  64809. Received: by apakabar.cc.columbia.edu id AA17864
  64810.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 19 Dec 1994 17:53:57 -0500
  64811. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  64812. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  64813. Newsgroups: comp.protocols.kermit.misc
  64814. Subject: Re: hELP!! hoe to set DTR ignore on kermit
  64815. Date: 19 Dec 1994 22:53:56 GMT
  64816. Organization: Columbia University
  64817. Lines: 19
  64818. Message-Id: <3d52u4$he3@apakabar.cc.columbia.edu>
  64819. References: <3chq4g$7bm@news.cais.com>
  64820. Nntp-Posting-Host: watsun.cc.columbia.edu
  64821. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  64822.  
  64823. In article <3chq4g$7bm@news.cais.com>, Duffy Men <duffy@cais2.cais.com> wrote:
  64824. >I has a Hayes optima 288 modem connect to my IBM RS6000 AIX 3.2.5 
  64825. >computer.  I setup my modem &D0 to ignore  DTR when exit (don't hnagup).  
  64826. >In kermit, I have no problem to dial-out, if I exit from kermit.  My 
  64827. >modem get hangup, that what I don't want (because I want use SLIP line).  
  64828. >CAn anyone tell me how to do it?  Thank you.
  64829. >
  64830. &D0 should indeed make the modem ignore DTR.  Maybe you also have to make
  64831. the modem ignore other signals too.
  64832.  
  64833. Maybe the line is "bidirectional", in which case some kind of getty or
  64834. init or login process takes it over when Kermit closes it, and maybe this
  64835. other process is hanging it up?
  64836.  
  64837. You can, by the way, suspend C-Kermit rather than exiting from it.  This
  64838. will leave the connection open for other processes to use, as long as they
  64839. aren't bothered by C-Kermit's lockfile.
  64840.  
  64841. - Frank
  64842.  
  64843. From news@columbia.edu Mon Dec 19 22:58:21 1994
  64844. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00499
  64845.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 19 Dec 1994 17:58:25 -0500
  64846. Received: by apakabar.cc.columbia.edu id AA18314
  64847.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 19 Dec 1994 17:58:23 -0500
  64848. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  64849. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  64850. Newsgroups: comp.protocols.kermit.misc
  64851. Subject: Re: send-init packet
  64852. Date: 19 Dec 1994 22:58:21 GMT
  64853. Organization: Columbia University
  64854. Lines: 18
  64855. Message-Id: <3d536d$hs6@apakabar.cc.columbia.edu>
  64856. References: <DCbykuqcZtZH075yn@primenet.com>
  64857. Nntp-Posting-Host: watsun.cc.columbia.edu
  64858. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  64859.  
  64860. In article <DCbykuqcZtZH075yn@primenet.com>,
  64861. Jeff Bishop <jbishop@primenet.com> wrote:
  64862. >How does kermit no that the send-init packet is coming and what special
  64863. >sequence starts it. I am wanting to use this string to stick in a term
  64864. >program to call kerlite for automatic downloads. This allows me to not have
  64865. >to rely on t he other end sending apc commands to my machine.
  64866. >
  64867. If you look at the Kermit protocol specification, you can see that
  64868. the initial Kermit packet can contain almost any sequence of characters.
  64869. There is no way a terminal emulator can be expected to recognize a Kermit
  64870. packet.  You could say that Kermit packets start with Ctrl-A, but (a) they
  64871. do not necessarily start with Ctrl-A, and (b) Ctrl-A (or any other control
  64872. character) might be meaningful to the terminal emulator.  The only reliable
  64873. way to get a terminal emulator to switch into file transfer mode is to send
  64874. it an escape sequence that is meaningful to it, which is exactly what APC
  64875. is for.  
  64876.  
  64877. - Frank
  64878.  
  64879. From news@columbia.edu Mon Dec 19 21:14:18 1994
  64880. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01267
  64881.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 19 Dec 1994 18:05:55 -0500
  64882. Received: by apakabar.cc.columbia.edu id AA19006
  64883.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 19 Dec 1994 18:05:54 -0500
  64884. Newsgroups: comp.protocols.kermit.misc
  64885. Path: news.columbia.edu!panix!news.mathworks.com!uhog.mit.edu!bloom-beacon.mit.edu!gatech!newsxfer.itd.umich.edu!umcc.umich.edu!edcen!dexter!jsr
  64886. From: jsr@dexter.mi.org (Jay S. Rouman)
  64887. Subject: Re: Help!  Mac C-Kermit 0.991(190) won't run
  64888. Message-Id: <D12tnv.F5J@dexter.mi.org>
  64889. Organization: Private System
  64890. References: <AB1B18AE@mozart.cc.iup.edu>
  64891. Date: Mon, 19 Dec 1994 21:14:18 GMT
  64892. Lines: 12
  64893. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  64894.  
  64895. In article <AB1B18AE@mozart.cc.iup.edu>,
  64896. Mark Nutter <manutter@mozart.cc.iup.edu> wrote:
  64897. >Is anyone else out there having problems like this with Mac Kermit?  Is 
  64898. >anyone *NOT* having problems like this with Mac Kermit?  I'd like to compare 
  64899.  
  64900. We have quite a few copies of Mac Kermit 189 running on SLC's and
  64901. Powerbooks being operated by fairly novice users and I have not gotten
  64902. any reports of crashes.  According to Frank's notes, the state of the
  64903. Mac version of C-Kermit is far from what he would like, but I have
  64904. found it to be quite usable.
  64905. -- 
  64906. Jay Rouman  (jsr@dexter.mi.org  jsr@umcc.umich.edu  NIC Handle: JSR)
  64907.  
  64908. From news@columbia.edu Tue Dec 20 06:57:09 1994
  64909. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25184
  64910.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 20 Dec 1994 15:22:21 -0500
  64911. Received: by apakabar.cc.columbia.edu id AA27681
  64912.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 20 Dec 1994 15:22:19 -0500
  64913. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!udel!gatech!newsfeed.pitt.edu!uunet!psinntp!adam.cc.sunysb.edu!gene
  64914. From: gene@insti.physics.sunysb.edu (Eugene Tyurin)
  64915. Newsgroups: comp.protocols.kermit.misc
  64916. Subject: Re: Help!  Mac C-Kermit 0.991(190) won't run
  64917. Date: 20 Dec 1994 06:57:09 GMT
  64918. Organization: Institute for Theoretical Physics, Stony Brook University
  64919. Lines: 10
  64920. Message-Id: <3d5v85$rr@adam.cc.sunysb.edu>
  64921. References: <AB1B18AE@mozart.cc.iup.edu> <D12tnv.F5J@dexter.mi.org>
  64922. Reply-To: gene@insti.physics.sunysb.edu
  64923. Nntp-Posting-Host: insti.physics.sunysb.edu
  64924. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  64925.  
  64926. Well, for me the problem with Mac Kermit 0.991(190) as opposed to
  64927. 0.99(190) is simple (and I've posted it here several days ago): I
  64928. can create a settings file, but I cannot run 0.991 by clicking on
  64929. it. :^)
  64930.  
  64931. -- 
  64932. Eugene Tyurin, Inst. for Theoretical Physics  -  Stony Brook Univ.
  64933.             WWW: http://www.physics.sunysb.edu:80/~gene/plan.html
  64934.        Internet: gene@insti.physics.sunysb.edu
  64935. Those who don't understand Unix are doomed to reinvent it, poorly.
  64936.  
  64937. From news@columbia.edu Thu Dec 15 01:14:01 1994
  64938. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10489
  64939.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 20 Dec 1994 18:08:45 -0500
  64940. Received: by apakabar.cc.columbia.edu id AA11288
  64941.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 20 Dec 1994 18:08:44 -0500
  64942. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!hookup!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  64943. From: jrd@cc.usu.edu (Joe Doupnik)
  64944. Newsgroups: comp.protocols.kermit.misc
  64945. Subject: Re: MS-Kermit 3.14 beta-15 command-line editing bug
  64946. Message-Id: <1994Dec15.071401.35510@cc.usu.edu>
  64947. Date: 15 Dec 94 07:14:01 MDT
  64948. References: <1994Dec11.193319.35169@cc.usu.edu> <lewart.787431308@rsm1.physics.uiuc.edu>
  64949. Organization: Utah State University
  64950. Lines: 24
  64951. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  64952.  
  64953. In article <lewart.787431308@rsm1.physics.uiuc.edu>, d-lewart@uiuc.edu (Daniel S. Lewart) writes:
  64954. > jrd@cc.usu.edu (Joe Doupnik) writes:
  64955. >>  . Fixed BIOS Int 14 redirection, which was broken a couple edits back.
  64956. > Thanks!  Just like Int 14 redirection, the following bug really does occur.
  64957. > Typing any of the following four couplets at the MS-Kermit command line
  64958. > will generate an unexpected CRLF the second time:
  64959. >     set duplex f<Esc><Enter>
  64960. >     set duplex f<Esc>
  64961. >     set duplex f<Esc><Enter>
  64962. >     set duplex h<Esc>
  64963. >     set duplex h<Esc><Enter>
  64964. >     set duplex f<Esc>
  64965. >     set duplex h<Esc><Enter>
  64966. >     set duplex h<Esc>
  64967. > where <Esc> means the Escape key and <Enter> means the Enter key.  Really.
  64968. ---------
  64969.     Yup. Fixed now (post beta-15) here.
  64970.     Thanks,
  64971.     Joe D.
  64972.  
  64973. From news@columbia.edu Thu Dec 15 01:13:12 1994
  64974. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10486
  64975.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 20 Dec 1994 18:08:44 -0500
  64976. Received: by apakabar.cc.columbia.edu id AA11284
  64977.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 20 Dec 1994 18:08:42 -0500
  64978. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!hookup!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  64979. From: jrd@cc.usu.edu (Joe Doupnik)
  64980. Newsgroups: comp.protocols.kermit.misc
  64981. Subject: Re: Stripping ANSI escape sequence from log, how?
  64982. Message-Id: <1994Dec15.071312.35509@cc.usu.edu>
  64983. Date: 15 Dec 94 07:13:12 MDT
  64984. References: <3cnbak$8lc@pauling.wadsworth.org>
  64985. Organization: Utah State University
  64986. Lines: 16
  64987. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  64988.  
  64989. In article <3cnbak$8lc@pauling.wadsworth.org>, frank@news.wadsworth.org (Franklin Hsia) writes:
  64990. > Working with MS-KERMIT and logging a VT220 session to a file.
  64991. > Problem:  The file contains ANSI escape sequences which are extraneous for
  64992. > my purposes.  I would like to only deal with the text portion.
  64993. > Is there a utility out there that can strip away the ANSI stuff?  Or is there
  64994. > a setting in KERMIT I can set to?
  64995. -----------
  64996.     The next time "print to disk" and use the controller print option.
  64997. This means SET PRINTER filename, and rather than LOG SESSION press 
  64998. Control-Printscreen keys to start logging this way. Only completed lines
  64999. are logged, not how the lines are put together with cursor commands etc.
  65000. Control-Printscreen is a toggle, the ON state shows as "PRN" on the status
  65001. line.
  65002.     Joe D. 
  65003.  
  65004. From news@columbia.edu Thu Dec 15 14:48:22 1994
  65005. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13539
  65006.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 20 Dec 1994 18:50:11 -0500
  65007. Received: by apakabar.cc.columbia.edu id AA14196
  65008.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 20 Dec 1994 18:50:03 -0500
  65009. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!europa.eng.gtefsd.com!howland.reston.ans.net!math.ohio-state.edu!scipio.cyberstore.ca!skypoint.com!winternet.com!jamess
  65010. From: jamess@winternet.com (James Sturdevant)
  65011. Newsgroups: comp.protocols.kermit.misc
  65012. Subject: Re: SEND sending 0 byte file!
  65013. Date: 15 Dec 1994 14:48:22 GMT
  65014. Organization: StarNet Communications, Inc
  65015. Lines: 17
  65016. Message-Id: <3cpkvm$e1v@blackice.winternet.com>
  65017. References: <D0ppuE.L0u@murdoch.acc.Virginia.EDU>
  65018. Nntp-Posting-Host: subzero.winternet.com
  65019. X-Newsreader: TIN [version 1.2 PL2]
  65020. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  65021.  
  65022. Erik Hatcher (esh6h@fulton.seas.Virginia.EDU) wrote:
  65023.  
  65024. : ...
  65025. : And have a macro to send a file like this...
  65026.  
  65027. :         send \$(SENDFILE_LOCAL) \%a
  65028.  
  65029. Try this:
  65030.           asg \%f \$(SENDFILE_LOCAL)
  65031.           send \%f \%a
  65032.  
  65033. There are smoe command which don't like to parse the long type variable
  65034. names in C-Kermit 5A.  (At least, there used to be...)
  65035.  
  65036. JamesS
  65037.  
  65038.  
  65039.  
  65040. From news@columbia.edu Tue Dec 20 18:54:16 1994
  65041. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13820
  65042.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 20 Dec 1994 18:54:16 -0500
  65043. Received: by apakabar.cc.columbia.edu id AA14554
  65044.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 20 Dec 1994 18:54:15 -0500
  65045. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!news.kei.com!ddsw1!mcs.com!rjmaley
  65046. From: rjmaley@mcs.com (Ryan J. Maley)
  65047. Newsgroups: comp.protocols.kermit.misc
  65048. Subject: VMS C-Kermit in batch mode?
  65049. Date: Thu, 15 Dec 1994 09:12:34 LOCAL
  65050. Organization: MCSNet Services
  65051. Lines: 17
  65052. Message-Id: <rjmaley.41.0060FF08@mcs.com>
  65053. Nntp-Posting-Host: rjmaley.pr.mcs.net
  65054. X-Newsreader: Trumpet for Windows [Version 1.0 Rev B final beta #4]
  65055. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  65056.  
  65057. Hi,
  65058.  
  65059. I've written a Kermit script that sends text to an alphanumeric pager. It 
  65060. works great, but I can't seem to run C-Kermit in batch mode. Every time I 
  65061. launch Kermit (with or without my script) in a batch program, my batch aborts 
  65062. and I get an error %CKERMIT-E-FATAL, Can't initialize! The batch program work 
  65063. perfectly in interactive mode.
  65064.  
  65065. I don't see a command line switch for batch operation. Basically, I'm stuck. 
  65066. I'm using C-Ckermit 5A(190) (I've also experienced this under 189) and VMS for 
  65067. AXP 6.1.
  65068.  
  65069. Any suggestions?
  65070.  
  65071. -
  65072. Ryan J. Maley
  65073. rjmaley@mcs.com
  65074.  
  65075. From news@columbia.edu Thu Dec 15 15:27:46 1994
  65076. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16684
  65077.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 20 Dec 1994 19:35:27 -0500
  65078. Received: by apakabar.cc.columbia.edu id AA17420
  65079.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 20 Dec 1994 19:35:26 -0500
  65080. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!europa.eng.gtefsd.com!howland.reston.ans.net!news.sprintlink.net!dsm6.dsmnet.com!dsm1.dsmnet.com!RICH
  65081. From: rich@dsm1.dsmnet.com
  65082. Newsgroups: comp.protocols.kermit.misc
  65083. Subject: Re: VMS C-Kermit in batch mode?
  65084. Date: 15 Dec 1994 15:27:46 GMT
  65085. Organization: DES MOINES INTERNET, DES MOINES, IA
  65086. Lines: 29
  65087. Message-Id: <3cpn9i$5fh@dsm6.dsmnet.com>
  65088. References: <rjmaley.41.0060FF08@mcs.com>
  65089. Reply-To: rich@dsm1.dsmnet.com
  65090. Nntp-Posting-Host: dsm1.dsmnet.com
  65091. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  65092.  
  65093. In article <rjmaley.41.0060FF08@mcs.com>, rjmaley@mcs.com (Ryan J. Maley)
  65094. writes:
  65095. >Hi,
  65096. >
  65097. >I've written a Kermit script that sends text to an alphanumeric pager. It 
  65098. >works great, but I can't seem to run C-Kermit in batch mode. Every time I 
  65099. >launch Kermit (with or without my script) in a batch program, my batch aborts 
  65100. >and I get an error %CKERMIT-E-FATAL, Can't initialize! The batch program work 
  65101. >perfectly in interactive mode.
  65102. >
  65103. >I don't see a command line switch for batch operation. Basically, I'm stuck. 
  65104. >I'm using C-Ckermit 5A(190) (I've also experienced this under 189) and VMS for 
  65105. >AXP 6.1.
  65106. >
  65107. >Any suggestions?
  65108. >
  65109. >-
  65110. >Ryan J. Maley
  65111. >rjmaley@mcs.com
  65112.  
  65113. Try this command in your DCL program just before the run Kermit command:
  65114.  
  65115. $ define/user_mode sys$input sys$command
  65116.  
  65117.  
  65118.     Richard L. Philpott          |  E-MAIL:  rich@dsmnet.com
  65119.     Des Moines Internet          |  All opinions are just that, opinions!!
  65120.     5911 Meredith Drive, Suite B |  All opinions are mine only and not
  65121.     Urbandale, IA 50322          |  those of DES MOINES INTERNET
  65122.  
  65123. From news@columbia.edu Wed Dec 21 04:57:27 1994
  65124. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09972
  65125.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 21 Dec 1994 00:52:39 -0500
  65126. Received: by apakabar.cc.columbia.edu id AA08347
  65127.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 21 Dec 1994 00:52:38 -0500
  65128. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!europa.eng.gtefsd.com!howland.reston.ans.net!vixen.cso.uiuc.edu!adam
  65129. From: adam@symcom.math.uiuc.edu (Adam H. Lewenberg)
  65130. Newsgroups: comp.protocols.kermit.misc
  65131. Subject: OS/2 Ckermit, Ctrl-C and command-line arguments
  65132. Date: 21 Dec 1994 04:57:27 GMT
  65133. Organization: University of Illinois at Urbana-Champaign Math department
  65134. Lines: 19
  65135. Distribution: usa
  65136. Message-Id: <3d8cjn$p42@vixen.cso.uiuc.edu>
  65137. Nntp-Posting-Host: cygnus.math.uiuc.edu
  65138. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  65139.  
  65140. >It seems that with the new version of OS/2 CKermit (190), almost anytime I
  65141. >type Ctrl-C the entire program terminates. I don't think I ever had
  65142. >this happen in the old version. For example, if I start CKermit from
  65143. >the Presentation Manager and type Ctrl-C at the CKermit prompt, the
  65144. >program promptly exits. Is this _supposed_ to happen? 
  65145. >
  65146. >  Thanks, Adam H. Lewenberg    adam@math.uiuc.edu
  65147.  
  65148. I am fairly sure this happens because now I start ckermit with a
  65149. command line argument, namely "-y modem.ini" which loads a different
  65150. initialization file than the default. (Previously I used no command
  65151. line arguments.) I can understand that a Ctrl-C should terminate
  65152. kermit when it is started as a server, but to arbitrarily terminate
  65153. just because one uses a command-line argument seems overly rigid. 
  65154.            Adam Lewenberg   adam@math.uiuc.edu
  65155. -- 
  65156. University of Illinois at Champaign-Urbana, Dept. Of Mathematics
  65157. INTERNET: adam@math.uiuc.edu   or    a-lewenberg@uiuc.edu
  65158.  
  65159.  
  65160. From news@columbia.edu Thu Dec 15 18:03:34 1994
  65161. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11083
  65162.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 21 Dec 1994 01:04:12 -0500
  65163. Received: by apakabar.cc.columbia.edu id AA08836
  65164.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 21 Dec 1994 01:04:10 -0500
  65165. Path: news.columbia.edu!panix!news.mathworks.com!bigboote.WPI.EDU!wpi.WPI.EDU!eeyore
  65166. From: eeyore@wpi.WPI.EDU ( Eeyore )
  65167. Newsgroups: comp.protocols.kermit.misc
  65168. Subject: cmsg cancel <3cobav$7mm@bigboote.WPI.EDU>
  65169. Control: cancel <3cobav$7mm@bigboote.WPI.EDU>
  65170. Date: 15 Dec 1994 18:03:34 GMT
  65171. Organization: Worcester Polytechnic Institute
  65172. Lines: 1
  65173. Message-Id: <3cq0dm$bjs@bigboote.WPI.EDU>
  65174. References: <3cld9e$i93@bach.convex.com> <1994Dec14.083711.35412@cc.usu.edu> <3cobav$7mm@bigboote.WPI.EDU>
  65175. Nntp-Posting-Host: wpi.wpi.edu
  65176. Originator: eeyore@wpi.WPI.EDU
  65177. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  65178.  
  65179. <3cobav$7mm@bigboote.WPI.EDU> was cancelled from within rn.
  65180.  
  65181. From news@columbia.edu Wed Dec 21 07:15:37 1994
  65182. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15517
  65183.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 21 Dec 1994 02:15:43 -0500
  65184. Received: by apakabar.cc.columbia.edu id AA12445
  65185.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 21 Dec 1994 02:15:41 -0500
  65186. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  65187. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  65188. Newsgroups: comp.protocols.kermit.misc
  65189. Subject: Re: OS/2 Ckermit, Ctrl-C and command-line arguments
  65190. Date: 21 Dec 1994 07:15:37 GMT
  65191. Organization: Columbia University
  65192. Lines: 34
  65193. Distribution: usa
  65194. Message-Id: <3d8kmp$c4r@apakabar.cc.columbia.edu>
  65195. References: <3d8cjn$p42@vixen.cso.uiuc.edu>
  65196. Nntp-Posting-Host: watsun.cc.columbia.edu
  65197. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  65198.  
  65199. In article <3d8cjn$p42@vixen.cso.uiuc.edu>,
  65200. Adam H. Lewenberg <adam@symcom.math.uiuc.edu> wrote:
  65201.  
  65202. >I am fairly sure this happens because now I start ckermit with a
  65203. >command line argument, namely "-y modem.ini" which loads a different
  65204. >initialization file than the default. (Previously I used no command
  65205. >line arguments.) I can understand that a Ctrl-C should terminate
  65206. >kermit when it is started as a server, but to arbitrarily terminate
  65207. >just because one uses a command-line argument seems overly rigid. 
  65208. >           Adam Lewenberg   adam@math.uiuc.edu
  65209. >-- 
  65210.  
  65211. Adam:
  65212.  
  65213. I just tried this.  I copied my ckermod.ini file to a new name and then 
  65214. started ckermit with a -y parameter listing the new ini file.
  65215.  
  65216. Then typed ^C repeatedly.  Nothing happened.
  65217.  
  65218. the only place in the code where there is a problem handling ^C is
  65219. in the dial command.  If the dial command is interrupted with a ^C
  65220. from that point forward there can be problems.  (I'm working on it.)
  65221.  
  65222. Would you mind contacting me directly about this so that we can get
  65223. to the bottom of it quickly?  Net-news is so slow.
  65224.  
  65225. Send me a copy of your modem.ini file so that I can try to replicate 
  65226. the problem.
  65227.  
  65228.  
  65229. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  65230. "C-Kermit: available on more platforms than any other communications software."
  65231. "Kermit FTP: sending files whenever and wherever they are needed."
  65232. *NEW* OS/2 version 5A(190): ftp kermit.columbia.edu /kermit/archives/ckoker.zip 
  65233.  
  65234. From news@columbia.edu Mon Dec 19 20:18:05 1994
  65235. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15629
  65236.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 21 Dec 1994 02:17:25 -0500
  65237. Received: by apakabar.cc.columbia.edu id AA12592
  65238.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 21 Dec 1994 02:17:24 -0500
  65239. Newsgroups: comp.protocols.kermit.misc
  65240. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news.sprintlink.net!EU.net!sun4nl!echelon!kees
  65241. From: kees@echelon.nl (Kees Hendrikse)
  65242. Subject: Re: kermit on a apple][+
  65243. Organization: Echelon Consultancy, Enschede, The Netherlands
  65244. Date: Mon, 19 Dec 1994 20:18:05 GMT
  65245. Message-Id: <D12r26.C2F@echelon.nl>
  65246. References: <D0xGJM.MuE@freenet.carleton.ca>
  65247. Lines: 17
  65248. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  65249.  
  65250. In <D0xGJM.MuE@freenet.carleton.ca> Simon C.Hall writes:
  65251.  
  65252. > anyone use kermit on an apple][+?
  65253. > I'm looking for a new term pgm,let me know what you think of it.
  65254.  
  65255. Until I retired my Apple II systems two years ago, I used the Apple-II
  65256. version of Kermit as terminal emulator on them. Good vt100 emulation,
  65257. acceptable speed (about 6000bps) and a very stable binary (especially
  65258. the ProDOS version). The Apple-II kermit distribution also containes
  65259. a Unix 6502 cross-assembler, which I used quite a lot. I believe the
  65260. most current release is 3.87.
  65261.  
  65262. -- 
  65263. Kees Hendrikse                                | email:   kees@echelon.nl
  65264.                                               |
  65265. ECHELON consultancy and software development  | phone: +31 (0)53 836 585
  65266. PO Box 545, 7500AM Enschede, The Netherlands  | fax:   +31 (0)53 337 415
  65267.  
  65268. From news@columbia.edu Wed Dec 21 09:39:33 1994
  65269. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24194
  65270.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 21 Dec 1994 04:40:13 -0500
  65271. Received: by apakabar.cc.columbia.edu id AA17054
  65272.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 21 Dec 1994 04:40:11 -0500
  65273. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!pipex!sunsite.doc.ic.ac.uk!warwick!bham!wcl-rs!gio
  65274. From: gio@wcl-rs.bham.ac.uk (Giovanni Ciampa)
  65275. Newsgroups: comp.protocols.kermit.misc
  65276. Subject: DEC LAT multisession capabilities?
  65277. Date: 21 Dec 1994 09:39:33 GMT
  65278. Organization: The University of Birmingham, UK.
  65279. Lines: 6
  65280. Message-Id: <3d8t4l$osb@sun4.bham.ac.uk>
  65281. Reply-To: gio@wcl.bham.ac.uk
  65282. Nntp-Posting-Host: wcl-rs.bham.ac.uk
  65283. X-Newsreader: TIN [version 1.2 PL2]
  65284. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  65285.  
  65286. Subject sums it up really...
  65287.  
  65288. Is this currently possible with (MS-DOS) Kermit or if not, does
  65289. anyone know if it is likely to become a part of the package?
  65290.  
  65291.     Gio
  65292.  
  65293.  
  65294. From news@columbia.edu Wed Dec 21 14:15:15 1994
  65295. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17726
  65296.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 21 Dec 1994 10:29:46 -0500
  65297. Received: by apakabar.cc.columbia.edu id AA06255
  65298.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 21 Dec 1994 10:29:40 -0500
  65299. Path: news.columbia.edu!panix!news.mathworks.com!uhog.mit.edu!bloom-beacon.mit.edu!gatech!asuvax!names.maricopa.edu!news.primenet.com!usenet
  65300. From: jbishop@primenet.com (Jeff Bishop)
  65301. Newsgroups: comp.protocols.kermit.misc
  65302. Subject: a friend having a problem
  65303. Date: Wed, 21 Dec 1994 07:15:15 -0700
  65304. Organization: Primenet
  65305. Lines: 987
  65306. Message-Id: <pX3-kuqcZBFF075yn@primenet.com>
  65307. Nntp-Posting-Host: usr2.primenet.com
  65308. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  65309.  
  65310. Hello,
  65311.  
  65312.                         MS-Kermit Trouble Report
  65313.  
  65314. Date:  December 21, 1994
  65315. From:  cboldt@execpc.com
  65316.  
  65317. Description:  Computer locks up solid if "set receive packet-length 2000"
  65318.               is a parameter when calling Kermit from a {Commo} macro.
  65319.  
  65320. Harware:      See msd report
  65321. Software:     MS-DOS Version 5.00
  65322.               Desqview 2.4
  65323.               kermit.exe  3.14
  65324.                 228936    11-21-94  16:06    KERMIT.EXE
  65325.                 103994    11-21-94  16:06    KERLITE.EXE
  65326.  
  65327. Details:      {Commo} is a telecommunications terminal that provides
  65328.               a way to execute external protocols.  Commo ver 6.41
  65329.  
  65330.               This is done with a macro command called {EXECute }
  65331.  
  65332. {exec kermit.exe set file type binary, set port com1, cd d:\co\dl, receive}
  65333.  
  65334.               The example command line works fine.
  65335.  
  65336.               However, if the set receive packet-length parameter is
  65337.               specified from this context, the result is a locked
  65338.               machine with the line "Bad Command or File" on line 1.
  65339.               A cold boot is required to reset.
  65340.   
  65341. What's been tried:   Varying the position of the "set receive" parm
  65342.                      This results in a lock-up
  65343.  
  65344.                      Attempt with kerlite.exe
  65345.                      Results in a lock-up
  65346.  
  65347.                      Use the "-s" parm in {Commo}'s {exec } command.
  65348.                      This swaps Commo out of RAM to make more room
  65349.                      for other programs.  Locks-up.
  65350.  
  65351.                      set receive packet-length 2000 in mskermit.ini
  65352.                      This works and is in use
  65353.  
  65354.                      Setting receive packet-length from Kermit>
  65355.                      prompt also works, no trouble at all.
  65356.  
  65357.  
  65358.        Microsoft Diagnostics version 2.10   12/21/94    1:53am   Page  1
  65359.     ========================================================================
  65360.  
  65361.     -------------------- --- Customer Information
  65362.  
  65363.                                  Name: Chuck Seyboldt
  65364.  
  65365.     ------------------- ---- Summary Information
  65366.  
  65367.                       Computer: American Megatrend, 486DX
  65368.                         Memory: 621K, 7424K Ext, 7136K EMS, 736K XMS
  65369.                          Video: VGA, Video Seven, V-RAM
  65370.                        Network: No Network
  65371.                     OS Version: MS-DOS Version 5.00
  65372.                          Mouse: Logitech Serial Mouse
  65373.                 Other Adapters:
  65374.                    Disk Drives: A: B: C: D: E: F: G: H:
  65375.                      LPT Ports: 1
  65376.                      COM Ports: 2
  65377.            Windows Information: 3.10, Not Active
  65378.  
  65379.     -------- --------------------- Computer
  65380.  
  65381.                         Computer Name: American Megatrends
  65382.                     BIOS Manufacturer: American Megatrends
  65383.                          BIOS Version: RDV 1.20
  65384.                         BIOS Category: IBM PC/AT
  65385.                         BIOS ID Bytes: FC 01 00
  65386.                             BIOS Date: 07/07/91
  65387.                             Processor: 486DX
  65388.                      Math Coprocessor: Internal
  65389.                              Keyboard: Enhanced
  65390.                              Bus Type: ISA/AT/Classic Bus
  65391.                        DMA Controller: Yes
  65392.                         Cascaded IRQ2: Yes
  65393.                     BIOS Data Segment: None
  65394.  
  65395.  
  65396.        Microsoft Diagnostics version 2.10   12/21/94    1:53am   Page  2
  65397.     ========================================================================
  65398.  
  65399.     ------ ------------------------ Memory
  65400.  
  65401.      Legend:  Available "  "  RAM "##"  ROM "RR"  Possibly Available ".."
  65402.        EMS Page Frame "PP"  Used UMBs "UU"  Free UMBs "FF"
  65403.      1024K FC00 RRRRRRRRRRRRRRRR FFFF  Conventional Memory
  65404.            F800 RRRRRRRRRRRRRRRR FBFF                 Total: 621K
  65405.            F400 RRRRRRRRRRRRRRRR F7FF             Available: 443K
  65406.       960K F000 RRRRRRRRRRRRRRRR F3FF                        454352 bytes
  65407.            EC00 PPPPPPPPPPPPPPPP EFFF
  65408.            E800 PPPPPPPPPPPPPPPP EBFF  Extended Memory
  65409.            E400 PPPPPPPPPPPPPPPP E7FF                 Total: 7424K
  65410.       896K E000 PPPPPPPPPPPPPPPP E3FF
  65411.            DC00 ################ DFFF  Expanded Memory (EMS)
  65412.            D800 ################ DBFF           LIM Version: 4.00
  65413.            D400 ################ D7FF    Page Frame Address: E000H
  65414.       832K D000 ################ D3FF                 Total: 7136K
  65415.            CC00 ################ CFFF             Available: 736K
  65416.            C800 ################ CBFF
  65417.            C400 RRRRRRRR........ C7FF  XMS Information
  65418.       768K C000 RRRRRRRRRRRRRRRR C3FF           XMS Version: 3.00
  65419.            BC00 ################ BFFF        Driver Version: 6.00
  65420.            B800 ################ BBFF      A20 Address Line: Enabled
  65421.            B400                  B7FF      High Memory Area: In use
  65422.       704K B000                  B3FF             Available: 736K
  65423.            AC00                  AFFF    Largest Free Block: 736K
  65424.            A800                  ABFF        Available SXMS: 736K
  65425.            A400                  A7FF     Largest Free SXMS: 736K
  65426.       640K A000                  A3FF
  65427.                                        VCPI Information
  65428.                                               VCPI Detected: Yes
  65429.                                                     Version: 1.00
  65430.                                            Available Memory: 748K
  65431.  
  65432.     ----- ------------------------- Video
  65433.  
  65434.               Video Adapter Type: VGA
  65435.                     Manufacturer: Video Seven
  65436.                            Model: V-RAM
  65437.                     Display Type: VGA Color
  65438.                       Video Mode: 3
  65439.                Number of Columns: 80
  65440.                   Number of Rows: 25
  65441.               Video BIOS Version: Video Seven BIOS Code, Version 1.10
  65442.                  Video BIOS Date: 01/24/89
  65443.           VESA Support Installed: No
  65444.                Secondary Adapter: None
  65445.  
  65446.     ------- ---------------------- Network
  65447.  
  65448.                              Network Detected: No
  65449.  
  65450.  
  65451.        Microsoft Diagnostics version 2.10   12/21/94    1:53am   Page  3
  65452.     ========================================================================
  65453.  
  65454.     ---------- ------------------ OS Version
  65455.  
  65456.                        Operating System: MS-DOS 5.00
  65457.                       Internal Revision: 00
  65458.                       OEM Serial Number: FFH
  65459.                      User Serial Number: 000000H
  65460.                      OEM Version String: MS-DOS Version 5.00
  65461.                          DOS Located in: HMA
  65462.                              Boot Drive: C:
  65463.                         TopView Version: 1.10
  65464.                         Path to Program: D:\CO\dl\MSD.EXE
  65465.          
  65466.                               Environment Strings
  65467.          -------------------------------------------------------------
  65468.          TEMP=h:\scratch
  65469.          DSZLOG=d:\co\sav\commo.log
  65470.          FF=cdefh
  65471.          COMSPEC=i:\command.com
  65472.          EXTRA2=second_long_variable_to_sacrifice_if_required_later_on
  65473.          PATH=I:\;D:\UUPC\BIN;..;C:\UTIL;C:\DOS;C:\;G:\DV
  65474.          MJOG=FILE:d:\co\sav\calendar
  65475.          PROMPT=$e[1;31m[CO]$e[0m $p$g
  65476.  
  65477.     ----- ------------------------- Mouse
  65478.  
  65479.                          Mouse Hardware: Logitech Serial Mouse
  65480.                     Driver Manufacturer: No Mouse Driver
  65481.  
  65482.     -------------- ------------ Other Adapters
  65483.  
  65484.                           Game Adapter: Not Detected
  65485.  
  65486.  
  65487.        Microsoft Diagnostics version 2.10   12/21/94    1:53am   Page  4
  65488.     ========================================================================
  65489.  
  65490.     ----------- ---------------- Disk Drives
  65491.  
  65492.       Drive  Type                                  Free Space  Total Size
  65493.       -----  ------------------------------------  ----------  ----------
  65494.         A:   Floppy Drive, 5.25" 1.2M
  65495.                80 Cylinders, 2 Heads
  65496.                512 Bytes/Sector, 15 Sectors/Track
  65497.         B:   Floppy Drive, 3.5" 1.44M
  65498.                80 Cylinders, 2 Heads
  65499.                512 Bytes/Sector, 18 Sectors/Track
  65500.         C:   Fixed Disk, CMOS Type 47                    276K       5140K
  65501.                37 Cylinders, 8 Heads
  65502.                512 Bytes/Sector, 35 Sectors/Track
  65503.              CMOS Fixed Disk Parameters
  65504.                872 Cylinders, 8 Heads
  65505.                35 Sectors/Track
  65506.         D:   Fixed Disk, CMOS Type 0                     506K         20M
  65507.                147 Cylinders, 8 Heads
  65508.                512 Bytes/Sector, 35 Sectors/Track
  65509.              CMOS Fixed Disk Parameters
  65510.                306 Cylinders, 4 Heads
  65511.                17 Sectors/Track
  65512.         E:   Fixed Disk, CMOS Type 0                      15M         29M
  65513.                220 Cylinders, 8 Heads
  65514.                512 Bytes/Sector, 35 Sectors/Track
  65515.              CMOS Fixed Disk Parameters
  65516.                306 Cylinders, 4 Heads
  65517.                17 Sectors/Track
  65518.         F:   Fixed Disk, CMOS Type 0                      15M         20M
  65519.                147 Cylinders, 8 Heads
  65520.                512 Bytes/Sector, 35 Sectors/Track
  65521.              CMOS Fixed Disk Parameters
  65522.                306 Cylinders, 4 Heads
  65523.                17 Sectors/Track
  65524.         G:   Fixed Disk, CMOS Type 0                    1030K         20M
  65525.                147 Cylinders, 8 Heads
  65526.                512 Bytes/Sector, 35 Sectors/Track
  65527.              CMOS Fixed Disk Parameters
  65528.                306 Cylinders, 4 Heads
  65529.                17 Sectors/Track
  65530.         H:   Fixed Disk, CMOS Type 0                    5352K         23M
  65531.                173 Cylinders, 8 Heads
  65532.                512 Bytes/Sector, 35 Sectors/Track
  65533.              CMOS Fixed Disk Parameters
  65534.                306 Cylinders, 4 Heads
  65535.                17 Sectors/Track
  65536.         I:   RAM Disk                                   1313K       1529K
  65537.                512 Bytes/Sector
  65538.         J:   CD-ROM Drive
  65539.       MSCDEX Version 2.21 Installed
  65540.       LASTDRIVE=J:
  65541.  
  65542.  
  65543.        Microsoft Diagnostics version 2.10   12/21/94    1:53am   Page  5
  65544.     ========================================================================
  65545.  
  65546.     --------- ------------------- LPT Ports
  65547.  
  65548.                   Port     On     Paper    I/O    Time
  65549.          Port   Address   Line     Out    Error    Out    Busy     ACK
  65550.          -----  -------   ----    -----   -----   ----    ----     ---
  65551.          LPT1:   0378H     Yes     Yes     No      No      Yes     No
  65552.          LPT2:     -        -       -       -       -       -       -
  65553.          LPT3:     -        -       -       -       -       -       -
  65554.  
  65555.     --------- ------------------- COM Ports
  65556.  
  65557.                                   COM1:      COM2:      COM3:      COM4:
  65558.                                   -----      -----      -----      -----
  65559.        Port Address               03F8H      02F8H        N/A        N/A
  65560.        Baud Rate                  19200       1200
  65561.        Parity                      None       None
  65562.        Data Bits                      8          8
  65563.        Stop Bits                      1          1
  65564.        Carrier Detect (CD)           No         No
  65565.        Ring Indicator (RI)           No         No
  65566.        Data Set Ready (DSR)         Yes        Yes
  65567.        Clear To Send (CTS)          Yes        Yes
  65568.        UART Chip Used              8250       8250
  65569.  
  65570.     ------------------- ---- Windows Information
  65571.  
  65572.                       Windows version: 3.10
  65573.                          Windows mode: Not Active
  65574.                     Windows Directory: G:\WIN31
  65575.                      System Directory: G:\WIN31\SYSTEM
  65576.         
  65577.           Filename                          Size         Date     Time
  65578.         ----------------------------  ---------------  --------  -----
  65579.         VPASD.386                          18784        5/05/92  14:31
  65580.         MSCVMD.386                          9327        3/10/92   3:10
  65581.         LANMAN10.386                        8786        3/10/92   3:10
  65582.         V7VDD.386                          40385        3/10/92   3:10
  65583.         VTDAPI.386                          5245        3/10/92   3:10
  65584.  
  65585.  
  65586.        Microsoft Diagnostics version 2.10   12/21/94    1:53am   Page  6
  65587.     ========================================================================
  65588.  
  65589.     ---------- ------------------ IRQ Status
  65590.  
  65591.     IRQ  Address    Description       Detected            Handled By
  65592.     ---  ---------  ----------------  ------------------  ----------------
  65593.       0  0861:F437  Timer Click       Yes                 XDV.COM
  65594.       1  0861:7114  Keyboard          Yes                 XDV.COM
  65595.       2  F000:EA97  Second 8259A      Yes                 BIOS
  65596.       3  F000:EA97  COM2: COM4:       COM2:               BIOS
  65597.       4  2A06:1427  COM1: COM3:       COM1:               COMMO.EXE
  65598.       5  F000:EA97  LPT2:             No                  BIOS
  65599.       6  F000:EF57  Floppy Disk       Yes                 BIOS
  65600.       7  0070:06F4  LPT1:             Yes                 System Area
  65601.       8  F000:EA42  Real-Time Clock   Yes                 BIOS
  65602.       9  F000:EECF  Redirected IRQ2   Yes                 BIOS
  65603.      10  F000:EA97  (Reserved)                            BIOS
  65604.      11  F000:EA97  (Reserved)                            BIOS
  65605.      12  F000:EA97  (Reserved)                            BIOS
  65606.      13  F000:EED8  Math Coprocessor  Yes                 BIOS
  65607.      14  F000:E845  Fixed Disk        Yes                 BIOS
  65608.      15  F000:FF53  (Reserved)                            BIOS
  65609.  
  65610.  
  65611.        Microsoft Diagnostics version 2.10   12/21/94    1:53am   Page  7
  65612.     ========================================================================
  65613.  
  65614.     ------------ --------------- TSR Programs
  65615.  
  65616.      Program Name        Address   Size   Command Line Parameters
  65617.      ------------------  -------  ------  --------------------------------
  65618.      System Data           027C    20368
  65619.        QEMM386             027E     3072  EMMXXXX0
  65620.        LOADHI              033F      304  Block Device
  65621.        LOADHI              0353      256  SMARTAAR
  65622.        LOADHI              0364      256  CDROM
  65623.        MVSOUND             0375     9136  MVPROAS
  65624.        File Handles        05B1     5552
  65625.        FCBS                070D      256
  65626.        BUFFERS             071E      512
  65627.        Directories         073F      880
  65628.      System Code           0776       64
  65629.      COMMAND.COM           077B     2368   /hw:0e:L
  65630.      COMMAND.COM           0810       64   /hw:0e:L
  65631.      COMMAND.COM           0815      256   /hw:0e:L
  65632.      XDV.COM               0826      272   /hw:0e:L
  65633.      XDV.COM               0838      592   /hw:0e:L
  65634.      XDV.COM               085E   120752   /hw:0e:L
  65635.      ???                   25DA      304   /v4500 /mcs-commo.csm
  65636.      COMMAND.COM           25EE     2368   /v4500 /mcs-commo.csm
  65637.      ???                   2683      272   /v4500 /mcs-commo.csm
  65638.      ???                   2695       80   /v4500 /mcs-commo.csm
  65639.      CED.COM               269B      288   -b512,128,2048,128,128,128 -fg
  65640.      DNANSI                26AE     1744
  65641.      CED.COM               271C    11360   -b512,128,2048,128,128,128 -fg
  65642.      COMMO.EXE             29E3      272   /v4500 /mcs-commo.csm
  65643.      COMMO.EXE             29F5     6432   /v4500 /mcs-commo.csm
  65644.      ???                   2B88      272
  65645.      COMMAND.COM           2B9A     2368
  65646.      ???                   2C2F      256
  65647.      MSD.EXE               2C40      272
  65648.      MSD.EXE               2C52   345120
  65649.      MSD.EXE               8095     8192
  65650.      MSD.EXE               8296    10032
  65651.      MSD.EXE               850A     4048
  65652.      Free Memory           8608    87568
  65653.  
  65654.  
  65655.        Microsoft Diagnostics version 2.10   12/21/94    1:53am   Page  8
  65656.     ========================================================================
  65657.  
  65658.     -------------- ------------ Device Drivers
  65659.  
  65660.           Device        Filename  Units    Header      Attributes
  65661.           ------------  --------  -----  ---------  ----------------
  65662.           NUL                            0135:0048  1............1..
  65663.           MVPROAS       MVSOUND          0375:0000  1...............
  65664.           CDROM         LOADHI           0364:0000  11..1...........
  65665.           SMARTAAR      LOADHI           0353:0000  11..1...........
  65666.           Block Device  LOADHI      1    033F:0000  ....1...........
  65667.           QEMM386$                       027E:003F  11..............
  65668.           EMMXXXX0      QEMM386          027E:0000  11..............
  65669.           CON                            0070:0023  1..........1..11
  65670.           AUX                            0070:0035  1...............
  65671.           PRN                            0070:0047  1.1.....11......
  65672.           CLOCK$                         0070:0059  1...........1...
  65673.           Block Device              8    0070:006B  ....1...11....1.
  65674.           COM1                           0070:007B  1...............
  65675.           LPT1                           0070:008D  1.1.....11......
  65676.           LPT2                           0070:009F  1.1.....11......
  65677.           LPT3                           0070:00B8  1.1.....11......
  65678.           COM2                           0070:00CA  1...............
  65679.           COM3                           0070:00DC  1...............
  65680.           COM4                           0070:00EE  1...............
  65681.  
  65682.     ---------------- ROM BIOS              F000    65536
  65683.  
  65684.     F000:CE59 System Configuration (C) Copyright 1985-1991, American Megatre
  65685.               nds Inc.,
  65686.     F000:0000 0123AAAAMMMMIIII07/07/91(C)1990 American Megatrends Inc., All
  65687.               Rights Reserved
  65688.     F000:0050 (C)1990 American Megatrends Inc.,
  65689.     F000:0100 ROM BIOS (C)1990 American Megatrends Inc.,
  65690.     F000:8000 XXXX88886666----0123AAAAMMMMIIII Date:-07/07/91 (C)1985-1991,
  65691.               American Megatrends Inc. All Rights Reserved.
  65692.     F000:E0CA R(C)1985-1991,American Megatrends Inc.,All Rights Reserved.,13
  65693.               46 Oakbrook Dr.,#120,GA-30093,USA.(404)-263-8181.
  65694.     F000:6CC0 :DLTdD
  65695.     F000:E00E IBM COMPATIBLE IBM IS A TRADEMARK OF INTERNATIONAL BUSINESS MA
  65696.               CHINES CORP.
  65697.     F000:160E If BIOS shadow RAM is disabled,
  65698.     F000:2220 AUTO CONFIGURATION WITH BIOS DEFAULTS
  65699.     F000:2396 Load BIOS Setup Default Values for Advanced CMOS and Advanced
  65700.               CHIPSET Setup
  65701.     F000:24ED !AMI BIOS SETUP UTILITIES
  65702.     F000:2633 (ii)  Load BIOS Setup Defaults
  65703.     F000:26A0 BIOS SETUP PROGRAM -
  65704.     F000:26F8 F5:Old Values  F6:BIOS Setup Defaults   F7:Power-On Defaults
  65705.     F000:423D Load BIOS Setup Default Values from ROM Table (Y/N) ?
  65706.     F000:CF70 ROM-BIOS Date      :
  65707.     F000:FF59 (C)1990AMI,404-263-8181
  65708.  
  65709.  
  65710.        Microsoft Diagnostics version 2.10   12/21/94    1:53am   Page  9
  65711.     ========================================================================
  65712.  
  65713.     ---------------- Video ROM BIOS        C000    24576
  65714.  
  65715.       C000:002A Video Seven BIOS Code, Version 1.10
  65716.       C000:00A2 (C) Copyright 1987 Video Seven Inc., All Rights Reserved.
  65717.  
  65718.     --------------- ---------- C:\AUTOEXEC.BAT
  65719.  
  65720.     @echo off
  65721.     ctty nul
  65722.     ::cd \dos
  65723.     ::g:\dv\loadhi /r:1 ced -b1024,128,2048,128,128,128 -fsynon.fil
  65724.     ::mouse /C2/E
  65725.     ::loadhi setver.exe
  65726.     ::loadhi xeq colon
  65727.  
  65728.     ::g:\dv\loadhi c:\dos\mouse1 /2
  65729.  
  65730.     cd \util
  65731.     g:\dv\loadhi /r:2 pr256.exe
  65732.     g:\dv\loadhi /r:1 stackey
  65733.     ::stackey
  65734.  
  65735.     g:\dv\loadhi /r:1 c:\cd-rom\mscdex /d:CDROM /m:8 /e /l:j
  65736.     ::\cd-rom\mscdex /d:cdrom /m:8 /e
  65737.  
  65738.     md i:\hold
  65739.     copy \command.com i:\
  65740.     for %%x in (q.exe l.com \dc.*) do copy %%x i:
  65741.     ctty con
  65742.     set temp=h:\scratch
  65743.     set dszlog=d:\co\sav\commo.log
  65744.     set ff=cdefh
  65745.     set comspec=i:\command.com
  65746.     set extra=one_long_variable_to_sacrifice_if_required_later_on
  65747.     set extra2=second_long_variable_to_sacrifice_if_required_later_on
  65748.     prompt $p$g
  65749.     cls
  65750.  
  65751.     path i:\;d:\uupc\bin;..;c:\util;c:\dos;c:\
  65752.     ::path ..;c:\util;c:\dos;c:\
  65753.  
  65754.     ask&wait "Spacebar for DV or wait $s seconds" ! 10 [
  65755.     if errorlevel 37 goto dv
  65756.     goto end
  65757.  
  65758.     :dv
  65759.     g:
  65760.     cd \dv
  65761.     xdv /hw:0e:L
  65762.  
  65763.     ::Setting                       Default     Allowable               Swit
  65764.     ches
  65765.     ::
  65766.     ::Mouse Type                    none        SerialPort1,2,3,4       /Cn
  65767.  
  65768.        Microsoft Diagnostics version 2.10   12/21/94    1:53am   Page 10
  65769.     ========================================================================
  65770.     ::                                          PS/2                    /Z
  65771.     ::                                          InPort1,2,3,4           /In
  65772.     ::                                          Bus                     /B
  65773.     ::                                          MSX                     /X
  65774.     ::
  65775.     ::Language                      English     English                 /L
  65776.     ::                                          German                  /LD
  65777.     ::                                          Spanish                 /LE
  65778.     ::                                          French                  /LF
  65779.     ::                                          Italian                 /LI
  65780.     ::                                          Dutch                   /LNL
  65781.  
  65782.     ::                                          Portuguese              /LP
  65783.     ::                                          Swedish                 /LS
  65784.     ::                                          Finnish                 /LSF
  65785.  
  65786.     ::
  65787.     ::Memory
  65788.     :: Low Memory                   LowMem      LowMem                  -
  65789.     :: High Memory                              HiMem                   /U
  65790.     :: Extended Memory                          EMM                     /E
  65791.     ::
  65792.     ::Interrupt Rate                1           0,1,2,3,4               /Rn
  65793.     ::
  65794.     ::Sensitivity
  65795.     :: Horizontal Only              50          5-100                   /Hn
  65796.     :: Vertical Only                50          5-100                   /Vn
  65797.     :: Horizontal & Vertical        50          5-100                   /Vn
  65798.     ::
  65799.     ::Active Acceleration Profile   2           1,2,3,4                 /Pn
  65800.     ::
  65801.     ::Cursor Display
  65802.     :: CursorDisplayDelay           0           0-10                    /Nn
  65803.     :: ForceDefaultCursor           off         on/off                  /M
  65804.     ::
  65805.     ::Hardware Cursor Support       true        true/false              /Y
  65806.     ::
  65807.     ::Button Selection
  65808.     :: Primary                      1           1,2,3,4                 /KPn
  65809.     Sm
  65810.     :: Secondary                    3           1,2,3,4                 /KPn
  65811.     Sm
  65812.     ::set mouse=C:\DOS
  65813.     ::C:\DOS\mouse/c2/u/y
  65814.  
  65815.     :end
  65816.  
  65817.     ------------- ------------- C:\CONFIG.SYS
  65818.  
  65819.     DEVICE=g:\dv\QEMM386.SYS RAM X=B000-BFFF DMA=32
  65820.     dos=high
  65821.  
  65822.     rem DEVICE=c:\dos\ramdrive.sys 1536 /a
  65823.     DEVICE=g:\dv\loadhi.sys /r:2 c:\dos\ramdrive.sys 1536 /a
  65824.  
  65825.  
  65826.        Microsoft Diagnostics version 2.10   12/21/94    1:53am   Page 11
  65827.     ========================================================================
  65828.     rem DEVICE=c:\dos\smartdrv.sys 1920
  65829.     DEVICE=g:\dv\loadhi.sys /r:1 c:\dos\smartdrv.sys 1920
  65830.  
  65831.     lastdrive=j
  65832.  
  65833.     rem DEVICE=c:\cd-rom\chinon03.sys /D:cdrom /N:1 /A:300
  65834.     rem DEVICE=g:\dv\loadhi.sys /r:1 c:\cd-rom\chinon03.sys /D:cdrom /N:1 /A
  65835.     :300
  65836.  
  65837.     rem device=c:\cd-rom\tslcdr.sys /D:CDROM /R
  65838.     device=g:\dv\loadhi.sys /r:1 c:\cd-rom\tslcdr.sys /D:CDROM /R
  65839.     rem device=c:\cd-rom\tslcdr.sys /D:CDROM /L:j /N:1 /E
  65840.     rem device=g:\dv\loadhi.sys /r:1 c:\cd-rom\tslcdr.sys /D:cdrom /L:j /N:1
  65841.      /E
  65842.  
  65843.     device=c:\cd-rom\mvsound.sys D:3 Q:7
  65844.     rem device=g:\dv\loadhi.sys /r:1 c:\cd-rom\mvsound.sys D:3 Q:5
  65845.  
  65846.     files=99
  65847.     buffers=15
  65848.     STACKS=0,0
  65849.  
  65850.     ------------------- ---- G:\WIN31\SYSTEM.INI
  65851.  
  65852.     [boot]           
  65853.     mouse.drv=mscmouse.drv
  65854.     shell=progman.exe
  65855.     network.drv=
  65856.     language.dll=
  65857.     sound.drv=mmsound.drv
  65858.     comm.drv=comm.drv
  65859.     keyboard.drv=keyboard.drv
  65860.     system.drv=system.drv
  65861.     386grabber=V7VGA.3GR
  65862.     oemfonts.fon=vgaoem.fon
  65863.     286grabber=VGACOLOR.2GR
  65864.     fixedfon.fon=vgafix.fon
  65865.     fonts.fon=vgasys.fon
  65866.     display.drv=V7VGA.DRV
  65867.     drivers=mmsystem.dll
  65868.     SCRNSAVE.EXE=G:\WIN31\SSMYST.SCR
  65869.  
  65870.     [keyboard]
  65871.     subtype=
  65872.     type=4
  65873.     keyboard.dll=
  65874.     oemansi.bin=
  65875.  
  65876.     [boot.description]
  65877.     mouse.drv=Mouse Systems serial or bus mouse
  65878.     keyboard.typ=Enhanced 101 or 102 key US and Non US keyboards
  65879.     network.drv=No Network Installed
  65880.     language.dll=English (American)
  65881.     system.drv=MS-DOS System
  65882.     codepage=437
  65883.  
  65884.        Microsoft Diagnostics version 2.10   12/21/94    1:53am   Page 12
  65885.     ========================================================================
  65886.     woafont.fon=English (437)
  65887.     aspect=100,96,96
  65888.     display.drv=Video 7 512K, 720x512 256 colors
  65889.  
  65890.     [386Enh]
  65891.     device=vpasd.386
  65892.     SystemROMBreakPoint=false
  65893.     mouse=mscvmd.386
  65894.     32BitDiskAccess=on
  65895.     device=*int13
  65896.     device=*wdctrl
  65897.     device=lanman10.386
  65898.     network=*dosnet,*vnetbios
  65899.     ebios=*ebios
  65900.     woafont=dosapp.fon
  65901.     display=V7VDD.386
  65902.     EGA80WOA.FON=EGA80WOA.FON
  65903.     EGA40WOA.FON=EGA40WOA.FON
  65904.     CGA80WOA.FON=CGA80WOA.FON
  65905.     CGA40WOA.FON=CGA40WOA.FON
  65906.     keyboard=*vkd
  65907.     device=vtdapi.386
  65908.     device=*vpicd
  65909.     device=*vtd
  65910.     device=*reboot
  65911.     device=*vdmad
  65912.     device=*vsd
  65913.     device=*v86mmgr
  65914.     device=*pageswap
  65915.     device=*dosmgr
  65916.     device=*vmpoll
  65917.     device=*wshell
  65918.     device=*BLOCKDEV
  65919.     device=*PAGEFILE
  65920.     device=*vfd
  65921.     device=*parity
  65922.     device=*biosxlat
  65923.     device=*vcd
  65924.     device=*vmcpd
  65925.     device=*combuff
  65926.     device=*cdpscsi
  65927.     local=CON
  65928.     FileSysChange=off
  65929.     PagingFile=G:\WIN386.SWP
  65930.     MaxPagingFileSize=2998
  65931.     MinTimeslice=20
  65932.     WinTimeslice=100,50
  65933.     WinExclusive=0
  65934.     Com1AutoAssign=2
  65935.     Com2AutoAssign=2
  65936.  
  65937.     [standard]
  65938.  
  65939.     [NonWindowsApp]
  65940.     localtsrs=dosedit,ced
  65941.  
  65942.        Microsoft Diagnostics version 2.10   12/21/94    1:53am   Page 13
  65943.     ========================================================================
  65944.  
  65945.     [mci]
  65946.     WaveAudio=mciwave.drv 4
  65947.     Sequencer=mciseq.drv
  65948.     Mixer=mcimixer.drv
  65949.     CDAudio=mcicda.drv
  65950.  
  65951.     [drivers]
  65952.     timer=timer.drv
  65953.     midimapper=midimap.drv
  65954.     MIDI=opl3.drv
  65955.     MIDI1=mvproaud.drv
  65956.     Wave=mvproaud.drv
  65957.     Aux=mvproaud.drv
  65958.     Mixer=mvmixer.drv
  65959.  
  65960.     [v7vga.drv]
  65961.     WidthXHeight=720x512
  65962.     FontSize=small
  65963.  
  65964.     [Multimedia.Setup]
  65965.     audio=mvproaud.drv,0,0,0
  65966.  
  65967.     [mvproaud.drv]
  65968.     dma=3
  65969.     irq=7
  65970.  
  65971.     [mciseq.drv]
  65972.     disablewarning=false
  65973.  
  65974.     ---------------- --------- G:\WIN31\WIN.INI
  65975.  
  65976.     [windows]
  65977.     spooler=yes
  65978.     load=
  65979.     run=
  65980.     Beep=yes
  65981.     NullPort=None
  65982.     BorderWidth=3
  65983.     CursorBlinkRate=710
  65984.     DoubleClickSpeed=493
  65985.     Programs=com exe bat pif
  65986.     Documents=
  65987.     DeviceNotSelectedTimeout=15
  65988.     TransmissionRetryTimeout=45
  65989.     KeyboardDelay=1
  65990.     KeyboardSpeed=26
  65991.     ScreenSaveActive=1
  65992.     ScreenSaveTimeOut=60
  65993.     MouseThreshold1=4
  65994.     MouseThreshold2=12
  65995.     MouseSpeed=2
  65996.     CoolSwitch=1
  65997.     DosPrint=no
  65998.     device=Epson LQ-500,EPSON24,LPT1:
  65999.  
  66000.        Microsoft Diagnostics version 2.10   12/21/94    1:53am   Page 14
  66001.     ========================================================================
  66002.  
  66003.     [Desktop]
  66004.     Pattern=(None)
  66005.     Wallpaper=chitz.bmp
  66006.     GridGranularity=0
  66007.     IconSpacing=75
  66008.     TileWallPaper=1
  66009.  
  66010.     [Extensions]
  66011.     cal=calendar.exe ^.cal
  66012.     crd=cardfile.exe ^.crd
  66013.     trm=terminal.exe ^.trm
  66014.     txt=notepad.exe ^.txt
  66015.     ini=notepad.exe ^.ini
  66016.     pcx=pbrush.exe ^.pcx
  66017.     bmp=pbrush.exe ^.bmp
  66018.     wri=write.exe ^.wri
  66019.     rec=recorder.exe ^.rec
  66020.     hlp=winhelp.exe ^.hlp
  66021.     TBK=TBOOK.EXE ^.TBK
  66022.     wav=prec.exe ^.wav
  66023.  
  66024.     [intl]
  66025.     sLanguage=enu
  66026.     sCountry=United States
  66027.     iCountry=1
  66028.     iDate=0
  66029.     iTime=0
  66030.     iTLZero=0
  66031.     iCurrency=0
  66032.     iCurrDigits=2
  66033.     iNegCurr=0
  66034.     iLzero=1
  66035.     iDigits=2
  66036.     iMeasure=1
  66037.     s1159=AM
  66038.     s2359=PM
  66039.     sCurrency=$
  66040.     sThousand=,
  66041.     sDecimal=.
  66042.     sDate=/
  66043.     sTime=:
  66044.     sList=,
  66045.     sShortDate=M/d/yy
  66046.     sLongDate=dddd, MMMM dd, yyyy
  66047.  
  66048.     [ports]
  66049.     ; A line with [filename].PRN followed by an equal sign causes
  66050.     ; [filename] to appear in the Control Panel's Printer Configuration dial
  66051.     og
  66052.     ; box. A printer connected to [filename] directs its output into this fi
  66053.     le.
  66054.     LPT1:=
  66055.     LPT2:=
  66056.     LPT3:=
  66057.  
  66058.        Microsoft Diagnostics version 2.10   12/21/94    1:53am   Page 15
  66059.     ========================================================================
  66060.     COM1:=19200,n,8,1,p
  66061.     COM2:=9600,n,8,1,x
  66062.     COM3:=9600,n,8,1,x
  66063.     COM4:=9600,n,8,1,x
  66064.     EPT:=
  66065.     FILE:=
  66066.     LPT1.DOS=
  66067.     LPT2.DOS=
  66068.  
  66069.     [FontSubstitutes]
  66070.     Helv=MS Sans Serif
  66071.     Tms Rmn=MS Serif
  66072.     Times=Times New Roman
  66073.     Helvetica=Arial
  66074.  
  66075.     [TrueType]
  66076.  
  66077.     [mci extensions]
  66078.     wav=waveaudio
  66079.     mid=sequencer
  66080.     rmi=sequencer
  66081.  
  66082.     [Compatibility]
  66083.     NOTSHELL=0x0001
  66084.     WPWINFIL=0x0006
  66085.     CCMAIL=0x0008
  66086.     AMIPRO=0x0010
  66087.     REM=0x8022
  66088.     PIXIE=0x0040
  66089.     CP=0x0040
  66090.     JW=0x42080
  66091.     TME=0x0100
  66092.     VB=0x0200
  66093.     WIN2WRS=0x1210
  66094.     PACKRAT=0x0800
  66095.     VISION=0x0040
  66096.     MCOURIER=0x0800
  66097.     _BNOTES=0x24000
  66098.     MILESV3=0x1000
  66099.     PM4=0x2000
  66100.     DESIGNER=0x2000
  66101.     PLANNER=0x2000
  66102.     DRAW=0x2000
  66103.     WINSIM=0x2000
  66104.     CHARISMA=0x2000
  66105.     PR2=0x2000
  66106.     PLUS=0x1000
  66107.     ED=0x00010000
  66108.     APORIA=0x0100
  66109.     EXCEL=0x1000
  66110.     GUIDE=0x1000
  66111.     NETSET2=0x0100
  66112.     W4GL=0x4000
  66113.     W4GLR=0x4000
  66114.     TURBOTAX=0x00080000
  66115.  
  66116.        Microsoft Diagnostics version 2.10   12/21/94    1:53am   Page 16
  66117.     ========================================================================
  66118.  
  66119.     [Microsoft Word 2.0]
  66120.     HPDSKJET=+1
  66121.  
  66122.     [fonts]
  66123.     Arial (TrueType)=ARIAL.FOT
  66124.     Arial Bold (TrueType)=ARIALBD.FOT
  66125.     Arial Bold Italic (TrueType)=ARIALBI.FOT
  66126.     Arial Italic (TrueType)=ARIALI.FOT
  66127.     Courier New (TrueType)=COUR.FOT
  66128.     Courier New Bold (TrueType)=COURBD.FOT
  66129.     Courier New Italic (TrueType)=COURI.FOT
  66130.     Times New Roman (TrueType)=TIMES.FOT
  66131.     Times New Roman Bold (TrueType)=TIMESBD.FOT
  66132.     Times New Roman Bold Italic (TrueType)=TIMESBI.FOT
  66133.     Times New Roman Italic (TrueType)=TIMESI.FOT
  66134.     Courier New Bold Italic (TrueType)=COURBI.FOT
  66135.     WingDings (TrueType)=WINGDING.FOT
  66136.     MS Sans Serif 8,10,12,14,18,24 (VGA res)=SSERIFE.FON
  66137.     Courier 10,12,15 (VGA res)=COURE.FON
  66138.     MS Serif 8,10,12,14,18,24 (VGA res)=SERIFE.FON
  66139.     Symbol 8,10,12,14,18,24 (VGA res)=SYMBOLE.FON
  66140.     Roman (Plotter)=ROMAN.FON
  66141.     Script (Plotter)=SCRIPT.FON
  66142.     Modern (Plotter)=MODERN.FON
  66143.     Small Fonts (VGA res)=SMALLE.FON
  66144.     Symbol (TrueType)=SYMBOL.FOT
  66145.  
  66146.     [embedding]
  66147.     SoundRec=Sound,Sound,SoundRec.exe,picture
  66148.     Package=Package,Package,packager.exe,picture
  66149.     PBrush=Paintbrush Picture,Paintbrush Picture,pbrush.exe,picture
  66150.     PocketMix=Pocket Mixer Settings,Pocket Mixer Settings,G:\WIN31\PMIX.EXE,
  66151.     picture
  66152.     PocketRec=Pocket Recorder Wave,Pocket Recorder Wave,G:\WIN31\PREC.EXE,pi
  66153.     cture
  66154.  
  66155.     [colors]
  66156.     Background=255 251 240
  66157.     AppWorkspace=255 251 240
  66158.     Window=255 255 255
  66159.     WindowText=0 0 0
  66160.     Menu=255 255 255
  66161.     MenuText=0 0 0
  66162.     ActiveTitle=164 200 240
  66163.     InactiveTitle=255 255 255
  66164.     TitleText=0 0 0
  66165.     ActiveBorder=192 192 192
  66166.     InactiveBorder=192 192 192
  66167.     WindowFrame=0 0 0
  66168.     Scrollbar=192 192 192
  66169.     ButtonFace=192 192 192
  66170.     ButtonShadow=128 128 128
  66171.     ButtonText=0 0 0
  66172.     GrayText=192 192 192
  66173.  
  66174.        Microsoft Diagnostics version 2.10   12/21/94    1:53am   Page 17
  66175.     ========================================================================
  66176.     Hilight=164 200 240
  66177.     HilightText=0 0 0
  66178.     InactiveTitleText=0 0 0
  66179.     ButtonHilight=255 255 255
  66180.  
  66181.     [Terminal]
  66182.     Port=COM1
  66183.  
  66184.     [SciCalc]
  66185.     layout=0
  66186.  
  66187.     [Cardfile]
  66188.     ValidateFileWrite=1
  66189.  
  66190.     [Chomp]
  66191.     High=500
  66192.  
  66193.     [Windows Help]
  66194.     H_WindowPosition=[240,170,240,170,0]
  66195.  
  66196.     [MSCharMap]
  66197.     Font=Symbol
  66198.  
  66199.     [PrinterPorts]
  66200.     Epson LQ-500=EPSON24,LPT1:,15,45
  66201.  
  66202.     [devices]
  66203.     Epson LQ-500=EPSON24,LPT1:
  66204.  
  66205.     [Hop]
  66206.     UsageCount=1
  66207.  
  66208.     [Media Vision Pocket Mixer]
  66209.     ;a=; Mixer patching support:
  66210.     ;b=;    Set <fixed|unfixed> mixer control to <input|output>, line <n>.
  66211.     ;c=; The profile entries are generated as comments (remove semi-colons t
  66212.     o use).
  66213.     ;Monitor=fixed,input,1
  66214.     ;Synthesizer=unfixed,input,0
  66215.     ;Microphone=unfixed,input,4
  66216.     ;PCMWave=unfixed,input,5
  66217.     ;CDPlayer=unfixed,input,3
  66218.     ;PCSpeaker=unfixed,input,6
  66219.     ;Auxiliary=unfixed,input,2
  66220.     ;Master=fixed,output,0
  66221.  
  66222.     [Media Vision Device Specification]
  66223.     ;MixerDevice=Media Vision Mixer
  66224.     ;MixerDevMID=3
  66225.     ;MixerDevPID=0
  66226.     ;InputDevice=Media Vision Waveform Input
  66227.     ;InputDevMID=3
  66228.     ;InputDevPID=21
  66229.     ;OutputDevice=Media Vision Waveform Output
  66230.     ;OutputDevMID=3
  66231.  
  66232.        Microsoft Diagnostics version 2.10   12/21/94    1:53am   Page 18
  66233.     ========================================================================
  66234.     ;OutputDevPID=20
  66235.  
  66236.     [Media Vision Pocket Recorder]
  66237.     ;a=; Current user interface support allows for:
  66238.     ;b=;    one or two channels.
  66239.     ;c=;    variable sample rates between specified minimum and maximum.
  66240.     ;d=;    eight and/or sixteen bits per sample (commas between multiple va
  66241.     lues).
  66242.     ;e=;    file compaction by two and/or four (currently not supported).
  66243.     ;f=; Buffer Management:
  66244.     ;g=;    buffer size should be a power of two (default 32768).
  66245.     ;h=;    number of buffers for playback and record ahead (default 5, max 
  66246.     16).
  66247.     ;i=; Pitch/speed effect related parameters:
  66248.     ;j=;    shift fraction is the wave decimation size (default: 125th of a 
  66249.     second).
  66250.     ;k=;    fade divide is the shift portion to cross fade (default: 2, one 
  66251.     half).
  66252.     ;l=; The profile entries are generated as comments (remove semi-colons t
  66253.     o use).
  66254.     ;NumChannels=2
  66255.     ;MinSampRate=1
  66256.     ;MaxSampRate=44100
  66257.     ;BitsPerSamp=8,16
  66258.     ;Compression=2,4
  66259.     ;BufferSize=32768
  66260.     ;NumBuffers=5
  66261.     ;ShiftFract=125
  66262.     ;FadeDivide=2
  66263.  
  66264.     [mvmixer.drv]
  66265.     LineIn1=SYNTH     MUS]  PLAY     L= 53% R= 53%  @=0000
  66266.     LineIn2=MIXER     MIX]  PLAY     L= 56% R= 56%  @=0000
  66267.     LineIn3=AUX       AUX|  PLAY     L= 53% R= 60%  @=0000
  66268.     LineIn4=CD        CDA|  PLAY     L= 55% R= 55%  @=0000
  66269.     LineIn5=MIC       MIC|  PLAY     L= 48% R= 48%  @=0000
  66270.     LineIn6=WAVE      WAV]  PLAY     L= 74% R= 74%  @=0000
  66271.     LineIn7=SPKR      SPK]  RECORD   L= 53% R= 53%  @=0000
  66272.     LineIn8=BLSTR     WAV]  PLAY     L= 53% R= 53%  @=0000
  66273.     LineOut1=MASTER   AMP|  PLAY     L= 76% R= 76%  @=0000
  66274.     LineOut2=REC IN   WAV]  RECORD   L= 80% R= 80%  @=0000
  66275.     StereoEnhance=OFF
  66276.     Loudness=OFF
  66277.     Bass= 50
  66278.     Treble= 50
  66279.     SaveSettingsOnWindowsExit=YES
  66280.  
  66281.     [WinJack]
  66282.     Trial=2026
  66283.  
  66284.     [sounds]
  66285.     SystemAsterisk=chord.wav,Asterisk
  66286.     SystemHand=chord.wav,Critical Stop
  66287.     SystemDefault=ding.wav,Default Beep
  66288.     SystemExclamation=G:\WIN31\DING.WAV,Exclamation
  66289.  
  66290.        Microsoft Diagnostics version 2.10   12/21/94    1:53am   Page 19
  66291.     ========================================================================
  66292.     SystemQuestion=chord.wav,Question
  66293.     SystemExit=G:\WIN31\CHIMES.WAV,Windows Exit
  66294.     SystemStart=tada.wav,Windows Start
  66295.  
  66296.  
  66297.  
  66298. From news@columbia.edu Wed Dec 21 04:20:06 1994
  66299. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10060
  66300.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 21 Dec 1994 15:04:56 -0500
  66301. Received: by apakabar.cc.columbia.edu id AA28387
  66302.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 21 Dec 1994 15:04:53 -0500
  66303. Path: news.columbia.edu!panix!news.mathworks.com!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  66304. From: jrd@cc.usu.edu (Joe Doupnik)
  66305. Newsgroups: comp.protocols.kermit.misc
  66306. Subject: Re: a friend having a problem
  66307. Message-Id: <1994Dec21.102006.35857@cc.usu.edu>
  66308. Date: 21 Dec 94 10:20:06 MDT
  66309. References: <pX3-kuqcZBFF075yn@primenet.com>
  66310. Organization: Utah State University
  66311. Lines: 56
  66312. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  66313.  
  66314. In article <pX3-kuqcZBFF075yn@primenet.com>, jbishop@primenet.com (Jeff Bishop) writes:
  66315. > Hello,
  66316. >                         MS-Kermit Trouble Report
  66317. > Date:  December 21, 1994
  66318. > From:  cboldt@execpc.com
  66319. > Description:  Computer locks up solid if "set receive packet-length 2000"
  66320. >               is a parameter when calling Kermit from a {Commo} macro.
  66321. > Harware:      See msd report
  66322. > Software:     MS-DOS Version 5.00
  66323. >               Desqview 2.4
  66324. >               kermit.exe  3.14
  66325. >                 228936    11-21-94  16:06    KERMIT.EXE
  66326. >                 103994    11-21-94  16:06    KERLITE.EXE
  66327. > Details:      {Commo} is a telecommunications terminal that provides
  66328. >               a way to execute external protocols.  Commo ver 6.41
  66329. >               This is done with a macro command called {EXECute }
  66330. > {exec kermit.exe set file type binary, set port com1, cd d:\co\dl, receive}
  66331. >               The example command line works fine.
  66332. >               However, if the set receive packet-length parameter is
  66333. >               specified from this context, the result is a locked
  66334. >               machine with the line "Bad Command or File" on line 1.
  66335. >               A cold boot is required to reset.
  66336. >   
  66337. > What's been tried:   Varying the position of the "set receive" parm
  66338. >                      This results in a lock-up
  66339. >                      Attempt with kerlite.exe
  66340. >                      Results in a lock-up
  66341. >                      Use the "-s" parm in {Commo}'s {exec } command.
  66342. >                      This swaps Commo out of RAM to make more room
  66343. >                      for other programs.  Locks-up.
  66344. >                      set receive packet-length 2000 in mskermit.ini
  66345. >                      This works and is in use
  66346. >                      Setting receive packet-length from Kermit>
  66347. >                      prompt also works, no trouble at all.
  66348.     <lengthy MSD listings omitted>
  66349. ---------------
  66350.     Those omitted details show that program COMMO is attached to the
  66351. serial port hardware. That will be fatal if Kermit also uses the same
  66352. hardware. Thus I recommend you try without COMMO. I've never encountered
  66353. COMMO so I won't guess about it.
  66354.     Also please do watch out for Smartdrive eating up cpu cycles like
  66355. crazy when it flushes to real disk.
  66356.         Joe D.
  66357.  
  66358. From news@columbia.edu Wed Dec 21 22:18:49 1994
  66359. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22911
  66360.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 21 Dec 1994 17:19:01 -0500
  66361. Received: by apakabar.cc.columbia.edu id AA09411
  66362.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 21 Dec 1994 17:18:59 -0500
  66363. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  66364. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  66365. Newsgroups: comp.protocols.kermit.misc
  66366. Subject: Re: Help! Strip high bit(MSKERMIT)
  66367. Date: 21 Dec 1994 22:18:49 GMT
  66368. Organization: Columbia University
  66369. Lines: 28
  66370. Message-Id: <3da9k9$95q@apakabar.cc.columbia.edu>
  66371. References: <CHANG.94Dec16183135@theta.math.wsu.edu>
  66372. Nntp-Posting-Host: watsun.cc.columbia.edu
  66373. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  66374.  
  66375. In article <CHANG.94Dec16183135@theta.math.wsu.edu>,
  66376. Ching Mo Chang <chang@theta.math.wsu.edu> wrote:
  66377. >Did MSKERMIT has the option to set "strip high bit" off?
  66378. >
  66379. >To view chinese characters on line in an 8 bit chinese dos system, I can
  66380. >use com program like Telix with the "strip high bit" off option, but in
  66381. >MSKERMIT(3.14 b14), using the 8bit option defined in mskermit.ini, I just
  66382. >got some strange characters (same as I use Telix with "strip high bit" on).
  66383. >
  66384. MS-DOS Kermit does not explicitly support Chinese characters, but it does
  66385. support Japanese Kanji.  Depending on the PC and host encodings for Chinese,
  66386. maybe the Japanese Kanji support might work for Chinese too.  The Japanese
  66387. Kanji support in MS-DOS Kermit 3.14 assumes Code Page 982 ("Shift-JIS") on
  66388. the PC, and different variations of JIS X 0208 on the host.  JIS X 0208 is
  66389. similar to Chinese CAS GB 2312-80.
  66390.  
  66391. Your other alternative, if you are running CC-DOS (Chinese DOS) is a special
  66392. Chinese edition of an old version of MS-DOS Kermit, 2.32A, by Quanfang Zhang
  66393. of Zhejiang University in Hangzhou (see "Kermit in China", Kermit News #5,
  66394. July 1993).  You can find it on kermit.columbia.edu.  The text files are in
  66395. kermit/c/cc*.*, and binaries are in kermit/bin/cc*.exe.
  66396.  
  66397. Naturally, we would like to see true Chinese support integrated into the
  66398. new version MS-DOS Kermit; it should be fairly easy given the existing Kanji
  66399. support.  But it would require a DOS programmer with a knowledge of Chinese
  66400. writing and character sets, and access to Chinese-model PCs.
  66401.  
  66402. - Frank
  66403.  
  66404. From news@columbia.edu Wed Dec 21 22:32:02 1994
  66405. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24006
  66406.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 21 Dec 1994 17:32:05 -0500
  66407. Received: by apakabar.cc.columbia.edu id AA10500
  66408.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 21 Dec 1994 17:32:04 -0500
  66409. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  66410. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  66411. Newsgroups: comp.protocols.kermit.misc
  66412. Subject: Re: a friend having a problem
  66413. Date: 21 Dec 1994 22:32:02 GMT
  66414. Organization: Columbia University
  66415. Lines: 31
  66416. Message-Id: <3daad2$a80@apakabar.cc.columbia.edu>
  66417. References: <pX3-kuqcZBFF075yn@primenet.com> <1994Dec21.102006.35857@cc.usu.edu>
  66418. Nntp-Posting-Host: watsun.cc.columbia.edu
  66419. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  66420.  
  66421. In article <1994Dec21.102006.35857@cc.usu.edu>,
  66422. Joe Doupnik <jrd@cc.usu.edu> wrote:
  66423. >In article <pX3-kuqcZBFF075yn@primenet.com>,
  66424. >jbishop@primenet.com (Jeff Bishop) writes:
  66425. >> 
  66426. >> Description:  Computer locks up solid if "set receive packet-length 2000"
  66427. >>               is a parameter when calling Kermit from a {Commo} macro.
  66428. >> ...
  66429. >Those omitted details show that program COMMO is attached to the
  66430. >serial port hardware.  That will be fatal if Kermit also uses the same
  66431. >hardware.  Thus I recommend you try without COMMO.
  66432. >
  66433. On the other hand, MS-DOS Kermit 3.14 is specifically designed to be used
  66434. as an external protocol by other software, so if Commo leaves the port
  66435. alone while Kermit is using it, hopefully there will be no interference.
  66436.  
  66437. Two other possibilities spring to mind.  When you add this command, you
  66438. are doing two things: making the command line longer, and causing Kermit
  66439. to dynamically allocate memory for packet buffers.
  66440.  
  66441. If the command line is longer than DOS's buffer for command lines (if I
  66442. recall correctly), terrible things can happen.  It is better to use a
  66443. shorter command line which points Kermit at a file to execute additional
  66444. commands from.
  66445.  
  66446. If that's not the explanation, then look at your memory management setup
  66447. very carefully -- maybe more than one process is contending for the same
  66448. memory, or QEMM is misconfigured, or Commo is not respecting Kermit's
  66449. "space", or some other application, driver, or TSR is misbehaving.
  66450.  
  66451. - Frank
  66452.  
  66453. From news@columbia.edu Wed Dec 21 22:41:28 1994
  66454. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24661
  66455.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 21 Dec 1994 17:41:34 -0500
  66456. Received: by apakabar.cc.columbia.edu id AA11121
  66457.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 21 Dec 1994 17:41:31 -0500
  66458. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  66459. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  66460. Newsgroups: comp.protocols.kermit.misc
  66461. Subject: Re: APC Initiation
  66462. Date: 21 Dec 1994 22:41:28 GMT
  66463. Organization: Columbia University
  66464. Lines: 33
  66465. Message-Id: <3daauo$arf@apakabar.cc.columbia.edu>
  66466. References: <Tim_Helmstetter.7.2EF1BC4F@radian.com>
  66467. Nntp-Posting-Host: watsun.cc.columbia.edu
  66468. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  66469.  
  66470. In article <Tim_Helmstetter.7.2EF1BC4F@radian.com>,
  66471.  <Tim_Helmstetter@radian.com> wrote:
  66472. >I am using KERMIT 3.13 to connect to a program called MAPPERC on a
  66473. >HP9000.  Everything works great except I cannot initiate APC. ESC Z
  66474. >works, the old TERMINALR escape code works, so I know the software is
  66475. >outputting the escape sequence properly. I know APC is turned on because
  66476. >I can start APC from a UNIX script, just not from this MAPPERC
  66477. >software. Has anyone else had problems with APC?
  66478. >
  66479. Your problem report does not make sense.
  66480.  
  66481. APC is supported by the terminal emulator in MS-DOS Kermit 3.13 and
  66482. later, but TERMINALR/TERMINALS is not.
  66483.  
  66484. So if your software is sending the TERMINALR/TERMINALS escape sequences
  66485. and they work, you must not be running version 3.13, which would explain
  66486. why APC sequences do not work for you.
  66487.  
  66488. If you are running 3.13, then please read the update notes in the
  66489. KERMIT.UPD file that comes on the diskette, which explain in great detail
  66490. how to use the APC feature.
  66491.  
  66492. I don't know what your MAPPERC software does, but maybe it is not sending
  66493. the APC sequences correctly.  Tell MS-DOS Kermit to "set debug session"
  66494. so you can watch what MAPPERC is sending.  You should see:
  66495.  
  66496.   ^[_xxxxx^[\
  66497.  
  66498. where xxxxx is the text inside the APC sequence.  If you see that and it
  66499. still doesn't work, then please make sure you don't have "set terminal
  66500. apc off", etc.
  66501.  
  66502. - Frank
  66503.  
  66504. From news@columbia.edu Wed Dec 21 22:43:00 1994
  66505. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24859
  66506.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 21 Dec 1994 17:43:03 -0500
  66507. Received: by apakabar.cc.columbia.edu id AA11226
  66508.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 21 Dec 1994 17:43:02 -0500
  66509. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  66510. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  66511. Newsgroups: comp.protocols.kermit.misc
  66512. Subject: Re: MAC Kermit?
  66513. Date: 21 Dec 1994 22:43:00 GMT
  66514. Organization: Columbia University
  66515. Lines: 59
  66516. Message-Id: <3dab1k$aua@apakabar.cc.columbia.edu>
  66517. References: <3csuok$9h0@cmhcsys.cmhcsys.com>
  66518. Nntp-Posting-Host: watsun.cc.columbia.edu
  66519. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  66520.  
  66521. In article <3csuok$9h0@cmhcsys.cmhcsys.com>,
  66522. Chuck Stickelman <chuck@cmhcsys.com> wrote:
  66523. >
  66524. >I'm sure this is a FAQ (or at least asked/answered 1K times!)
  66525. >but I'm not able to get onto rtfm.mit.edu.
  66526. >What is the status of Kermit on the Macintosh's?
  66527. >Where is the latest version located, and old is it?
  66528. >
  66529. CURRENT STATE OF MACINTOSH KERMIT
  66530.  
  66531. As of: Sat Nov 12 11:00:53 1994
  66532.  
  66533. *** BULLETIN ***
  66534. Mac Kermit 0.991(190) dated 16 August 1994, or later, fixes the problem with
  66535. downloading under newer System releases (7.1.x).  Now files can be downloaded
  66536. on newer systems such as Centris 660 AV with OS 7.1, Power Mac 7100/66 with OS
  66537. 7.1.2, etc, without bombs or other nasty effects.  It should also fix certain
  66538. binary/text-mode confusion that seemed to result in corrupted files when
  66539. downloading in binary mode.
  66540. *****************
  66541.  
  66542. The last formal release of Mac Kermit was 0.9(40) in 1988.  Unfortunately, it
  66543. does not work very well on newer Macintoshes or Systems.  However, newer
  66544. versions are too big for 512K Macs or below, so you'll have to run 0.9(40) on
  66545. these old models.
  66546.  
  66547. A great deal of work has been done on the program since 1988, but the result
  66548. (so far) is still not of release quality, though it is quite suitable for most
  66549. purposes.
  66550.  
  66551. The current pre-pre-release of Mac Kermit (still far from a final release) is
  66552. 0.991(190), based on C-Kermit 5A(190).  It is available via anonymous FTP
  66553. from kermit.columbia.edu [128.59.39.2], directory kermit/f.
  66554.  
  66555. A comprehensive user manual will be published when the final 1.0 release is
  66556. complete.  Sorry, I can't give any reasonable estimate about when that will
  66557. be.  Watch the Kermit Digest (or comp.protocols.kermit, same thing) for
  66558. further announcements.  You can subscribe to the Kermit Digest by sending
  66559. email to LISTSERV@CUVMA.BITNET (or LISTSERV@CUVMA.CC.COLUMBIA.EDU) containing
  66560. the text:
  66561.  
  66562.   SUBSCRIBE I$KERMIT your-personal-name-here
  66563.  
  66564. Mac Kermit files, ftp from kermit.columbia.edu in text mode from the
  66565. kermit/f directory:
  66566.  
  66567.   ckm190.hqx -- current prerelease of Mac Kermit in BinHex 4.0 format
  66568.   ckmker.doc -- user documentation for 0.9(40), the previous release (1988)
  66569.   ckmker.ps  -- PostScript version of user documentation for 0.9(40)
  66570.   ckmker.bwr -- Notes about the current prerelease, FAQ's, etc
  66571.   ckmker.fon -- Notes about the new Mac Kermit terminal emulation font
  66572.  
  66573. and in the kermit/charsets directory:
  66574.  
  66575.   maclatin.* -- The new Mac Kermit font itself
  66576.  
  66577. Read the ckmker.bwr ("beware") file for further details.
  66578.  
  66579. (End of ckmaaa.hlp)
  66580.  
  66581. From news@columbia.edu Wed Dec 21 23:00:56 1994
  66582. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26278
  66583.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 21 Dec 1994 18:01:00 -0500
  66584. Received: by apakabar.cc.columbia.edu id AA12354
  66585.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 21 Dec 1994 18:00:58 -0500
  66586. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  66587. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  66588. Newsgroups: comp.protocols.kermit.misc
  66589. Subject: Re: [Q] Mac Kermit or C-Kermit for Mac?
  66590. Date: 21 Dec 1994 23:00:56 GMT
  66591. Organization: Columbia University
  66592. Lines: 45
  66593. Message-Id: <3dac38$c1v@apakabar.cc.columbia.edu>
  66594. References: <3d3mve$g71@adam.cc.sunysb.edu>
  66595. Nntp-Posting-Host: watsun.cc.columbia.edu
  66596. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  66597.  
  66598. In article <3d3mve$g71@adam.cc.sunysb.edu>,
  66599. Eugene Tyurin <gene@insti.physics.sunysb.edu> wrote:
  66600. >I'm sorry if this is a stupid question, but what is the difference
  66601. >between Mac Kermit 0.991 (190) and C-Kermit 0.99 (190)? For me,
  66602. >the only difference is that I cannot make 0.991 run by clicking on
  66603. >it's saved settings file. :^(
  66604. >
  66605. Macintosh Kermit is not one of our top Kermit programs.  It is basically
  66606. a combination of C-Kermit 5A with a Macintosh user and system interface.
  66607. C-Kermit 5A is mine, the Mac-specific part is nobody's.  Ten (yes, ten)
  66608. years ago, the original Mac Kermit was written by my group, but those
  66609. people are long gone.  I am not funded to replace them.  For some years,
  66610. we had some excellent volunteer Mac programmers who made terrific
  66611. progress, but they are now also long gone.
  66612.  
  66613. What is the difference between 0.991(190) and 0.99(190)?  It is that I
  66614. tracked down and fixed the problem that was causing 0.99(190) -- and all
  66615. earlier versions -- to crash when downloading files on Mac System 7.1
  66616. and later (the problem being that a system call that had worked for ten
  66617. years had suddenly stopped working).
  66618.  
  66619. I also fixed the READ command not to crash.  I also fixed the various LOG
  66620. commands, which never worked before.  I fixed the file transfer display,
  66621. which previously often did not know whether a file was being sent or
  66622. received, and added some additional info, like the current directory.  I
  66623. fixed some of the dialog boxes to show the current file-related settings
  66624. correctly, in case they had been set from the command window.
  66625.  
  66626. I removed the stupid alert boxes that kept coming up saying "Writing to
  66627. console not allowed".  I added a DIRECTORY command, and fixed various
  66628. other file-related commands.  etc etc.
  66629.  
  66630. And I guess I must also have broken something.  Sorry.  I'm not a
  66631. Macintosh programmer, and I am beginning to wonder if anybody is.
  66632.  
  66633. I am surprised that so many people use this program, and apparently so
  66634. many universities depend on it, but nobody is willing or able to
  66635. contribute to its development or support.  I would do it myself, but there
  66636. are simply not enough hours in a day.  If you are a skilled Macintosh
  66637. programmer, preferably in MPW C, and are interested in helping out, please
  66638. read the ckmker.bwr file, and then if you are still interested, contact me.
  66639.  
  66640. Thanks.
  66641.  
  66642. - Frank
  66643.  
  66644. From news@columbia.edu Thu Dec 22 21:53:18 1994
  66645. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03874
  66646.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 22 Dec 1994 16:53:25 -0500
  66647. Received: by apakabar.cc.columbia.edu id AA24595
  66648.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 22 Dec 1994 16:53:23 -0500
  66649. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  66650. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  66651. Newsgroups: comp.protocols.kermit.misc
  66652. Subject: MS-DOS Kermit 3.14 Beta-16 Ready for Testing
  66653. Date: 22 Dec 1994 21:53:18 GMT
  66654. Organization: Columbia University
  66655. Lines: 27
  66656. Message-Id: <3dcsge$num@apakabar.cc.columbia.edu>
  66657. Nntp-Posting-Host: watsun.cc.columbia.edu
  66658. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  66659.  
  66660.  
  66661. MS-DOS Kermit 3.14 Beta-16 is available for anonymous ftp from
  66662. kermit.columbia.edu as of Thu Dec 22, 1994, 16:47:31 Eastern USA time:
  66663.  
  66664.   kermit/test/bin/mstibm.zip  - Binary ZIP file
  66665.   kermit/test/text/mstibm.uue - Uuencoded ZIP file
  66666.   kermit/test/text/mstibm.boo - BOO-encoded ZIP file
  66667.  
  66668. The UUE and BOO files are also available on BITNET from KERMSRV at CUVMA.
  66669.  
  66670. Changes and fixes since Beta-15 include:
  66671.  
  66672.  . The SEND command now accepts an "indirect filename", starting with "@";
  66673.    the named file contains a list of files to be sent (see KERMIT.UPD).
  66674.  . TCP and IP now use less packets, good for SLIP.
  66675.  . Doomsday Kermit (DDK) protocol fixed, really this time.
  66676.  . SET TELNET TERM <name> no longer uppercases the name.
  66677.  . MAIL command fixed.
  66678.  . A bug with ESC completion fixed in command parser.
  66679.  . REMOTE ASG added as "special abbreviation" for REMOTE ASSIGN.
  66680.  . \v(inpath) now also works when file found in current directory.
  66681.  
  66682. Thanks to Joe Doupnik for all the above, and much else too!
  66683.  
  66684. Please continue to send reports by e-mail to kermit@columbia.edu.
  66685.  
  66686. - Frank
  66687.  
  66688. From news@columbia.edu Sun Dec 23 06:48:21 1994
  66689. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26832
  66690.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Dec 1994 07:52:10 -0500
  66691. Received: by apakabar.cc.columbia.edu id AA06892
  66692.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Dec 1994 07:52:08 -0500
  66693. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!udel!gatech!swrinde!elroy.jpl.nasa.gov!lll-winken.llnl.gov!fastrac.llnl.gov!usenet.ee.pdx.edu!not-for-mail
  66694. From: rkwee@ee.pdx.edu (Roland Kwee)
  66695. Newsgroups: comp.protocols.kermit.misc
  66696. Subject: HANGUP problem on FreeBSD
  66697. Date: 22 Dec 1994 22:48:21 -0800
  66698. Lines: 20
  66699. Message-Id: <3ddrrl$hc@cruella.ee.pdx.edu>
  66700. Nntp-Posting-Host: cruella.ee.pdx.edu
  66701. Summary: HANGUP on FreeBSD drops DTR longer than 0.5 second
  66702. Keywords: HANGUP timing FreeBSD DTR
  66703. X-Newsreader: NN version 6.4.19 #2
  66704. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  66705.  
  66706. Issuing the HANGUP command on my FreeBSD system drops the
  66707. DTR line forever, instead of just 0.5 second, as explained
  66708. in the C-Kermit book (page 45). I use the modem setting 'direct'.
  66709.  
  66710. On my Linux system, the command works according to the book.
  66711. It is a problem for me, because I try to connect both systems
  66712. with a direct line and SLIP, and the HANGUP command should
  66713. cause the other machine to logout. However, I found no way
  66714. to get the DTR on the FreeBSD box back to ON! (except SET LINE).
  66715.  
  66716. Can anyone tell me if this is supposed to depend on the OS?
  66717. If it may be a bug? How to turn DTR to ON?
  66718.  
  66719. In general, is there a way with Kermit to set ANY of the
  66720. handshake lines to arbitrary values? Would be neat for testing
  66721. all kinds of things.
  66722.  
  66723. Thanks for any info,
  66724.  
  66725. --Roland Kwee     email: rolandkwee@acm.org
  66726.  
  66727. From news@columbia.edu Fri Dec 23 06:52:15 1994
  66728. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00126
  66729.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Dec 1994 07:57:14 -0500
  66730. Received: by apakabar.cc.columbia.edu id AA07022
  66731.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Dec 1994 07:57:12 -0500
  66732. Path: news.columbia.edu!sol.ctr.columbia.edu!newsxfer.itd.umich.edu!gatech!news-feed-1.peachnet.edu!concert!balsam!handmade
  66733. From: handmade@cs.unca.edu (Hand Made in America)
  66734. Newsgroups: comp.protocols.kermit.misc
  66735. Subject: ?Improve 20% efficient Kermit xfers?
  66736. Date: 23 Dec 1994 06:52:15 GMT
  66737. Organization: University of North Carolina at Asheville
  66738. Lines: 29
  66739. Message-Id: <3dds2v$k4p@balsam.unca.edu>
  66740. Nntp-Posting-Host: tryon.cs.unca.edu
  66741. X-Newsreader: TIN [version 1.2 PL2]
  66742. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  66743.  
  66744. C-Kermit on the university end.  PC (old Compaq 386/16) running ProComm 
  66745. Plus, which includes something called "Super Kermit," on my off-campus 
  66746. end.  The modem is a Best Data Products "Smart One" 1442F internal Hayes 
  66747. clone faxmodem.
  66748.  
  66749. Both ends are set for 19200 baud, and that lie makes the theoretical
  66750. throughput at 14400 baud about 73% efficient.  I'm transferring compressed
  66751. binary files (*.exe, *.zip, &c.) from my campus home directory on a
  66752. lightly loaded machine to my PC hard disk, over a quiet phone line (0
  66753. packets resent).
  66754.  
  66755. Why am I getting only between 20% (with my modem compression enabled) and
  66756. 30% (disabled) efficiency.  I do understand why my efficiency improves
  66757. when I don't try to compress a compressed file -- I don't understand why
  66758. it is so low overall. 
  66759.  
  66760. The STATISTICS command shows that I'm passing back a 90-byte packet for 
  66761. each one I receive.  Is this the fastest way to do Kermit?
  66762.  
  66763. Given the primativeness of the "Super Kermit" on my end, what can anyone 
  66764. suggest to increase efficiency?
  66765.  
  66766. TIA.
  66767. --
  66768.  /s/   -=Chris=-     Christopher Karl Johansen   HandMade in America
  66769.                      vox: 704.252.0121           67 N. Market St. (NC 28801)
  66770.   opinions: mine!    fax: 704.252.0388           Post Office Box 2089
  66771. facts: everyone's.   net: handmade@unca.edu      Asheville, NC 28802-2089
  66772.  
  66773.  
  66774. From news@columbia.edu Fri Dec 23 14:06:43 1994
  66775. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05604
  66776.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Dec 1994 09:04:53 -0500
  66777. Received: by apakabar.cc.columbia.edu id AA10217
  66778.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Dec 1994 09:04:45 -0500
  66779. Path: news.columbia.edu!panix!bloom-beacon.mit.edu!gatech!news.Gsu.EDU!usenet
  66780. From: Tom Bowden <isgtmb@gsusgi2.gsu.edu>
  66781. Newsgroups: comp.protocols.kermit.misc
  66782. Subject: Re: ?Improve 20% efficient Kermit xfers?
  66783. Date: 23 Dec 1994 14:06:43 GMT
  66784. Organization: Georgia State University
  66785. Lines: 28
  66786. Message-Id: <3delhj$8e9@sphinx.Gsu.EDU>
  66787. References: <3dds2v$k4p@balsam.unca.edu>
  66788. Nntp-Posting-Host: isgtmb.gsu.edu
  66789. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  66790.  
  66791. handmade@cs.unca.edu (Hand Made in America) wrote:
  66792. >
  66793. > C-Kermit on the university end.  PC (old Compaq 386/16) running ProComm 
  66794. > Plus, which includes something called "Super Kermit," on my off-campus 
  66795. > end.  The modem is a Best Data Products "Smart One" 1442F internal Hayes 
  66796. > clone faxmodem.
  66797. [stuff deleted] 
  66798. > The STATISTICS command shows that I'm passing back a 90-byte packet for 
  66799. > each one I receive.  Is this the fastest way to do Kermit?
  66800. > Given the primativeness of the "Super Kermit" on my end, what can anyone 
  66801. > suggest to increase efficiency?
  66802. Use longer packets.  In PCPLUS, go into setup (alt-s), then Protocols,
  66803. then Kermit (this may vary depending on which version you have).
  66804. The default packet length is 94.  Change it to 1024.
  66805.  
  66806. At the unversity end, edit your .kermrc (or ckermit.ini) file so that
  66807. it includes the lines:
  66808.   set send packet-length 1024
  66809.   set receive packet-length 1024
  66810.   set window 3
  66811.  
  66812. Hope this helps.
  66813.  
  66814. Tom in Atlanta
  66815.  
  66816. From news@columbia.edu Fri Dec 23 15:59:54 1994
  66817. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14446
  66818.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Dec 1994 11:00:01 -0500
  66819. Received: by apakabar.cc.columbia.edu id AA17092
  66820.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Dec 1994 10:59:57 -0500
  66821. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  66822. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  66823. Newsgroups: comp.protocols.kermit.misc
  66824. Subject: Re: HANGUP problem on FreeBSD
  66825. Date: 23 Dec 1994 15:59:54 GMT
  66826. Organization: Columbia University
  66827. Lines: 72
  66828. Message-Id: <3des5q$gm2@apakabar.cc.columbia.edu>
  66829. References: <3ddrrl$hc@cruella.ee.pdx.edu>
  66830. Nntp-Posting-Host: watsun.cc.columbia.edu
  66831. Keywords: HANGUP timing FreeBSD DTR
  66832. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  66833.  
  66834. In article <3ddrrl$hc@cruella.ee.pdx.edu>,
  66835. Roland Kwee <rkwee@ee.pdx.edu> wrote:
  66836. >Issuing the HANGUP command on my FreeBSD system drops the
  66837. >DTR line forever, instead of just 0.5 second, as explained
  66838. >in the C-Kermit book (page 45). I use the modem setting 'direct'.
  66839. >
  66840. >On my Linux system, the command works according to the book.
  66841. >It is a problem for me, because I try to connect both systems
  66842. >with a direct line and SLIP, and the HANGUP command should
  66843. >cause the other machine to logout. However, I found no way
  66844. >to get the DTR on the FreeBSD box back to ON! (except SET LINE).
  66845. >
  66846. >Can anyone tell me if this is supposed to depend on the OS?
  66847. >If it may be a bug? How to turn DTR to ON?
  66848. >
  66849. It is supposed to work as described in the book.
  66850.  
  66851. During (and after) the development of C-Kermit 5A(190), FreeBSD kept
  66852. changing out from under me.  I received numerous "patches" from all over
  66853. the world, most of them mutually contradictory.
  66854.  
  66855. As you have probably seen by inspecting the tthang() routine in ckutio.c,
  66856. the simple act of dropping DTR for half a second is one of the hardest
  66857. things to do in non-vendor-specific UNIX communications software, since
  66858. there are so many different ways to do it -- each system has its own way.
  66859. tthang() presently takes up 405 lines of code, and still fails to work in
  66860. some cases, like yours.
  66861.  
  66862. The POSIX method is used In the FreeBSD case -- relatively straightforward
  66863. (get current speed, save it, set speed to 0, sleep half a second(*),
  66864. restore speed), so if it doesn't work, there is probably something wrong
  66865. underneath -- i.e. in FreeBSD or your serial port driver.
  66866.  
  66867. All I can say is, you are free to make changes to tthang() and send them
  66868. to me, but don't have any confidence that your changes will work for any
  66869. length of time, given FreeBSD's track record on stability so far (speaking
  66870. as an outsider, no offense intended).  I don't have access to any FreeBSD
  66871. systems to do this work myself.  Also, in my correspondence with other
  66872. FreeBSD users, nobody has reported a problem like this, so it's very
  66873. likely peculiar to a specific configuration (kernel edit, driver edit,
  66874. whatever).
  66875.  
  66876. >In general, is there a way with Kermit to set ANY of the handshake lines
  66877. >to arbitrary values? Would be neat for testing all kinds of things.
  66878. >
  66879. This would be a great feature, but no, there is no standard or portable
  66880. way (not even several standard ways) to set arbitrary modem signals.
  66881. C-Kermit does have a "show modem" command, which works on the (few) UNIX
  66882. variations that allow modem signals to be tested.  HP-UX probably has the
  66883. best serial i/o interface I've seen; very few others even approach it.
  66884.  
  66885. UNIX "standards bodies" have vigorously avoided the area of serial
  66886. communications, which, even in this age of low-cost, high-speed modems and
  66887. the worldwide public stampede to the "on-ramp" of the "information
  66888. superhighway" -- a time when serial communications is becoming more
  66889. important than ever before.
  66890.  
  66891. POSIX made some progress, but it's only one of many APIs, and even the
  66892. POSIX.1 API is inadequate.  It does not address questions of exclusive
  66893. access (which leaves us, still, with the "UUCP lockfile" -- one of the
  66894. most atrocious ideas in software engineering ever to gain "de facto
  66895. standard" status, ranking right up there with cooperative multitasking,
  66896. with which it has more than a little in common), hardware flow control,
  66897. modem signals, nondestructive input-buffer peeking, or fine-grained (under
  66898. one second) sleeps, all of which are essential for serial communications.
  66899.  
  66900. (*) But since there is no way to sleep for half a second in POSIX,
  66901.     we have to use some kind of non-POSIX-compliant method, i.e.
  66902.     an "extension", and this might be a good place to start
  66903.     looking for the problem.  See the msleep() routine in ckutio.c.
  66904.  
  66905. - Frank
  66906.  
  66907. From news@columbia.edu Mon Dec 19 05:06:06 1994
  66908. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23229
  66909.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Dec 1994 12:45:29 -0500
  66910. Received: by apakabar.cc.columbia.edu id AA23922
  66911.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Dec 1994 12:45:27 -0500
  66912. Path: news.columbia.edu!panix!news.mathworks.com!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  66913. From: jrd@cc.usu.edu (Joe Doupnik)
  66914. Newsgroups: comp.protocols.kermit.misc
  66915. Subject: Re: Help!  Mac C-Kermit 0.991(190) won't run
  66916. Message-Id: <1994Dec19.110606.35728@cc.usu.edu>
  66917. Date: 19 Dec 94 11:06:06 MDT
  66918. References: <AB1B18AE@mozart.cc.iup.edu>
  66919. Organization: Utah State University
  66920. Lines: 8
  66921. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  66922.  
  66923. In article <AB1B18AE@mozart.cc.iup.edu>, manutter@mozart.cc.iup.edu (Mark Nutter) writes:
  66924. > I am providing Macintosh support for a fair-sized university (14,000 
  66925. > students), and am trying to get people set up with a good, free terminal 
  66926. > program.  All our DOS people are using the DOS version of C-Kermit, with a 
  66927.                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  66928.     There isn't such a thing. I believe you must mean MS-DOS Kermit,
  66929. no relation to C Kermit other than from the same project.
  66930.     Joe D.
  66931.  
  66932. From news@columbia.edu Mon Dec 19 19:58:35 1994
  66933. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27895
  66934.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Dec 1994 13:49:22 -0500
  66935. Received: by apakabar.cc.columbia.edu id AA27895
  66936.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Dec 1994 13:49:20 -0500
  66937. Path: news.columbia.edu!panix!news.mathworks.com!solaris.cc.vt.edu!insosf1.infonet.net!usenet.ee.pdx.edu!news.reed.edu!sun.lclark.edu!sun.lclark.edu!not-for-mail
  66938. From: miller@sun.lclark.edu (John Miller)
  66939. Newsgroups: pdx.computing,comp.protocols.kermit.misc
  66940. Subject: Kermit / xyz modem showdown results?
  66941. Date: 19 Dec 1994 11:58:35 -0800
  66942. Organization: Lewis and Clark College, Portland OR
  66943. Lines: 16
  66944. Distribution: or
  66945. Message-Id: <3d4olb$hju@sun.lclark.edu>
  66946. Nntp-Posting-Host: sun.lclark.edu
  66947. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  66948.  
  66949.  
  66950. Awhile back Chuck Forsberg announced such a showdown, and I saw a followup
  66951. article in the Oregonian.  The Oregonian's article was more entertaining
  66952. than informative, and Forsberg did not seem to publish any hard results
  66953. on the net.
  66954.  
  66955. Anyone have any comparative results between latest versions of these packages?
  66956. We are running the latest kermit on a DEC Alpha, but have the older versions
  66957. of sz, etc.
  66958.  
  66959. Thanks,
  66960.  
  66961. John Miller
  66962. -- 
  66963. "What's ahead?"
  66964.  
  66965.  
  66966. From news@columbia.edu Mon Dec 19 07:30:28 1994
  66967. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00936
  66968.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Dec 1994 14:24:42 -0500
  66969. Received: by apakabar.cc.columbia.edu id AA00260
  66970.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Dec 1994 14:24:39 -0500
  66971. Path: news.columbia.edu!panix!news.mathworks.com!europa.eng.gtefsd.com!howland.reston.ans.net!math.ohio-state.edu!news.acns.nwu.edu!uicvm.uic.edu!u54294
  66972. Organization: University of Illinois at Chicago, ADN Computer Center
  66973. Date: Mon, 19 Dec 1994 13:30:28 CST
  66974. From: <U54294@uicvm.uic.edu>
  66975. Message-Id: <94353.133028U54294@uicvm.uic.edu>
  66976. Newsgroups: comp.protocols.kermit.misc
  66977. Subject: Kermit-370 fix SC9131X still work?
  66978. Lines: 14
  66979. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  66980.  
  66981. Hi --
  66982. I've got Unix C-Kermits and MS-Kermit dialing up to MVS/ESA mainframes through
  66983. a Renex TMS-4 protocol converter. I put on SC9131X as a local update to Kermit-
  66984. 370 to get rid of the "IKT....Screen erasure caused by..." message, setting
  66985. &CONOPTS to 'STCNOS1' to force graphics controller (as recommended by the
  66986. beware file and ik0aaa). I still get the message (yeah, I checked the PROCLIB
  66987. and everything). Can anyone help me out? Many thanks...Nick G.
  66988. +------------------------------+----------------------------------------+
  66989. | "I would have preferred that | Nick Geovanis     U54294@uicvm.uic.edu |
  66990. |    you smell of garlic."     | Consultant                             |
  66991. |       Emperor Vespasian,     | Technical Support Group, Inc.          |
  66992. |          demoting a perfumed | 360 N. Michigan Ave, Suite 1005        |
  66993. |          officer, c. 70 AD.  | Chicago, IL.  60601  Tel: 312-704-5100 |
  66994. +-----------------------------------------------------------------------+
  66995.  
  66996. From news@columbia.edu Fri Dec 23 19:38:03 1994
  66997. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01994
  66998.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Dec 1994 14:38:08 -0500
  66999. Received: by apakabar.cc.columbia.edu id AA00983
  67000.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Dec 1994 14:38:06 -0500
  67001. Path: news.columbia.edu!merhaba.cc.columbia.edu!ycl6
  67002. From: ycl6@columbia.edu (Yeechang Lee)
  67003. Newsgroups: pdx.computing,comp.protocols.kermit.misc
  67004. Subject: Re: Kermit / xyz modem showdown results?
  67005. Date: 23 Dec 1994 19:38:03 GMT
  67006. Organization: Trilateral Commission, Columbia University student chapter
  67007. Lines: 18
  67008. Distribution: or
  67009. Message-Id: <3df8ur$uj@apakabar.cc.columbia.edu>
  67010. References: <3d4olb$hju@sun.lclark.edu>
  67011. Reply-To: Yeechang Lee <ycl6@columbia.edu>
  67012. Nntp-Posting-Host: merhaba-cddi.cc.columbia.edu
  67013. X-Disclaimer: I sure as heck don't speak for Columbia University.
  67014. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  67015.  
  67016. According to John Miller <miller@sun.lclark.edu>:
  67017. |Awhile back Chuck Forsberg announced such a showdown, and I saw a followup
  67018. |article in the Oregonian.  The Oregonian's article was more entertaining
  67019. |than informative, and Forsberg did not seem to publish any hard results
  67020. |on the net.
  67021.  
  67022. In my particular setup (dialup to Unix server at Columbia University),
  67023. even with long packets enabled, etc., DSZ has a speed edge over
  67024. MS-Kermit.
  67025.  
  67026. However, Kermit is totally free.  Moreover, Frank's crew writes
  67027. documentation 1000% better than Mr. Forsberg--the DSZ docs (and command
  67028. parameter interface) is as obscure and unintentionally hilarious as can
  67029. get.
  67030. --   _____________________________________________________________________
  67031.      Yeechang Lee  (ycl6@columbia.edu)|Nevada Las Vegas Mission Jul'92-'94
  67032.      Columbia University/New York City|Celestial Kingdom through Taco Bell
  67033.      Still working on my juggling-while-I-play-the-harmonica routine . . .
  67034.  
  67035. From news@columbia.edu Fri Dec 23 19:55:32 1994
  67036. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03330
  67037.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Dec 1994 14:55:42 -0500
  67038. Received: by apakabar.cc.columbia.edu id AA12095
  67039.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Dec 1994 14:55:39 -0500
  67040. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  67041. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  67042. Newsgroups: comp.protocols.kermit.misc
  67043. Subject: Re: ?Improve 20% efficient Kermit xfers?
  67044. Date: 23 Dec 1994 19:55:32 GMT
  67045. Organization: Columbia University
  67046. Lines: 49
  67047. Message-Id: <3df9vk$bp4@apakabar.cc.columbia.edu>
  67048. References: <3dds2v$k4p@balsam.unca.edu>
  67049. Nntp-Posting-Host: watsun.cc.columbia.edu
  67050. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  67051.  
  67052. In article <3dds2v$k4p@balsam.unca.edu>,
  67053. Hand Made in America <handmade@cs.unca.edu> wrote:
  67054. >C-Kermit on the university end.  PC (old Compaq 386/16) running ProComm 
  67055. >Plus, which includes something called "Super Kermit," on my off-campus 
  67056. >end.  The modem is a Best Data Products "Smart One" 1442F internal Hayes 
  67057. >clone faxmodem.
  67058. >
  67059. >Both ends are set for 19200 baud, and that lie makes the theoretical
  67060. >throughput at 14400 baud about 73% efficient.  I'm transferring compressed
  67061. >binary files (*.exe, *.zip, &c.) from my campus home directory on a
  67062. >lightly loaded machine to my PC hard disk, over a quiet phone line (0
  67063. >packets resent).
  67064. >
  67065. >Why am I getting only between 20% (with my modem compression enabled) and
  67066. >30% (disabled) efficiency.  I do understand why my efficiency improves
  67067. >when I don't try to compress a compressed file -- I don't understand why
  67068. >it is so low overall. 
  67069. >
  67070. >The STATISTICS command shows that I'm passing back a 90-byte packet for 
  67071. >each one I receive.  Is this the fastest way to do Kermit?
  67072. >
  67073. >Given the primativeness of the "Super Kermit" on my end, what can anyone 
  67074. >suggest to increase efficiency?
  67075. >
  67076. (a) Use MS-DOS Kermit instead of Procomm;
  67077.  
  67078. (b) Adjust the window size, packet size, and other parameters to achieve
  67079.     maximum efficiency.
  67080.  
  67081. This kind of question is posted every couple days, and rather than repost
  67082. the detailed answer each time, I've stored it on kermit.columbia.edu,
  67083. directory kermit/e, text mode, faq.txt.  Please read it.
  67084.  
  67085. I have seen certain newsgroups that seem to have a permanent greeting
  67086. message.  If I knew how to accomplish this, I could post pointers to FAQs,
  67087. etc, so everybody would see them when first accessing this group.
  67088.  
  67089. - Frank
  67090. x
  67091. x
  67092. x
  67093. x
  67094. x
  67095. x
  67096. x
  67097. x
  67098. x
  67099. x
  67100. x
  67101.  
  67102. From news@columbia.edu Sat Dec 24 00:29:59 1994
  67103. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23310
  67104.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Dec 1994 19:45:26 -0500
  67105. Received: by apakabar.cc.columbia.edu id AA29661
  67106.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Dec 1994 19:45:25 -0500
  67107. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!eff!news.duke.edu!concert!balsam!handmade
  67108. From: handmade@cs.unca.edu (Hand Made in America)
  67109. Newsgroups: comp.protocols.kermit.misc
  67110. Subject: Re: ?Improve 20% efficient Kermit xfers?
  67111. Date: 24 Dec 1994 00:29:59 GMT
  67112. Organization: University of North Carolina at Asheville
  67113. Lines: 33
  67114. Message-Id: <3dfq27$jn8@balsam.unca.edu>
  67115. References: <3dds2v$k4p@balsam.unca.edu> <3delhj$8e9@sphinx.Gsu.EDU>
  67116. Nntp-Posting-Host: tryon.cs.unca.edu
  67117. X-Newsreader: TIN [version 1.2 PL2]
  67118. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  67119.  
  67120. Tom Bowden (isgtmb@gsusgi2.gsu.edu) wrote:
  67121. ==> handmade@cs.unca.edu (Hand Made in America) wrote:
  67122. ==> [stuff deleted (by both of us!)] 
  67123. ==> Use longer packets.  [ . . . ]
  67124. ==> The default packet length is 94.  Change it to 1024.
  67125.  
  67126. My PC+ *max* length settable from the menu is 94!!!  I have to hexedit 
  67127. the file PCPLUS.PRM to get it to 255.  I can edit a two-byte value (1024 
  67128. = 0400h), but PC+ only looks at the low byte (apparently) when actually 
  67129. negotiating the link.
  67130.  
  67131. ==> At the university end, edit your .kermrc file so that
  67132. ==> it includes the lines:
  67133. ==>   set send packet-length 1024 ..... I set 255
  67134. ==>   set receive packet-length 1024 .. 255
  67135. ==>   set window 3 .................... 31 -- too much?
  67136.  
  67137. C-Kermit seems limited to 286 bytes at my u. site!  Does anyone know
  67138. about such strangeness? 
  67139.  
  67140. Now my efficiency is up to 71% which is close to the theoretical ratio of 
  67141. 14400/19200 = 75%.
  67142.  
  67143. ==> Hope this helps.
  67144.  
  67145. It *sure*does*!!!  Sent me in the right direction.  Thanks, Tom and all.
  67146.  
  67147. --
  67148.  /s/   -=Chris=-     Christopher Karl Johansen   HandMade in America
  67149.                      vox: 704.252.0121           67 N. Market St. (NC 28801)
  67150.   opinions: mine!    fax: 704.252.0388           Post Office Box 2089
  67151. facts: everyone's.   net: handmade@unca.edu      Asheville, NC 28802-2089
  67152.  
  67153.  
  67154. From news@columbia.edu Fri Dec 23 15:23:06 1994
  67155. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07940
  67156.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Dec 1994 23:48:58 -0500
  67157. Received: by apakabar.cc.columbia.edu id AA01455
  67158.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Dec 1994 23:48:57 -0500
  67159. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  67160. From: jrd@cc.usu.edu (Joe Doupnik)
  67161. Newsgroups: comp.protocols.kermit.misc
  67162. Subject: Re: MS-DOS Kermit 3.14 Beta-16 Ready for Testing
  67163. Message-Id: <1994Dec23.212306.35982@cc.usu.edu>
  67164. Date: 23 Dec 94 21:23:06 MDT
  67165. References: <3dcsge$num@apakabar.cc.columbia.edu>
  67166. Organization: Utah State University
  67167. Lines: 13
  67168. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  67169.  
  67170. In article <3dcsge$num@apakabar.cc.columbia.edu>, fdc@watsun.cc.columbia.edu (Frank da Cruz) writes:
  67171. > MS-DOS Kermit 3.14 Beta-16 is available for anonymous ftp from
  67172. > kermit.columbia.edu as of Thu Dec 22, 1994, 16:47:31 Eastern USA time:
  67173. ----------
  67174.     Just to forstall questions, this beta has one known problem:
  67175. saying  Kermit -f <filename in the current directory>  may fail if the
  67176. filename lacks a full path. It's fixed at my place already, but rather
  67177. than issuing a new beta after a day we felt it better to use these few
  67178. remaining days to discover any last bugs. Please, if you find them report
  67179. them immediately so we can make the formal release ASAP. Don't depend on
  67180. NEWS to be speedy; try my personal address, jrd@cc.usu.edu.
  67181.     Joe D.
  67182.  
  67183. 24 ..... I set 255
  67184. > ==>   set receive packet-length 1024 .. 255
  67185. > ==>   set window 3 .................... 31 -- too much?
  67186. > C-Kermit seems limited to 286 bytes at my u. site!  Does anyone know
  67187. > about such strangeness? 
  67188.     Oh, that's a signature of running over many PPP and some SLIP
  67189. links, but nothing to do with C Kermit itself. You can SET SEND (or RECEIVE)
  67190. PACKET <length of your choosing> at the C Kermit prompt if necessary to
  67191. overcome any system defaults the guys have created.
  67192.     The suggestion to at least try MS-DOS Kermit on the PC end is a
  67193. good one. About four window slots of 1-2KB packets is plenty on a local
  67194. link. No binary editing hackery required.
  67195.     Joe D.
  67196.  
  67197.  
  67198. From news@columbia.edu Sat Dec 24 17:51:05 1994
  67199. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22774
  67200.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 24 Dec 1994 12:52:37 -0500
  67201. Received: by apakabar.cc.columbia.edu id AA29052
  67202.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 24 Dec 1994 12:52:35 -0500
  67203. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!pipex!uunet!svc.portal.com!shell.portal.com!cliff
  67204. From: cliff@shell.portal.com (Seeker)
  67205. Newsgroups: comp.protocols.kermit.misc
  67206. Subject: Window resizes in OS/2
  67207. Date: 24 Dec 1994 17:51:05 GMT
  67208. Organization: Portal Communications Company -- 408/973-9111 (voice) 408/973-8091 (data)
  67209. Lines: 31
  67210. Distribution: na
  67211. Message-Id: <3dhn29$b2u@news1.shell>
  67212. Nntp-Posting-Host: jobe.shell.portal.com
  67213. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  67214.  
  67215. I run OS/2 ckermit(190) in a 33x80 window.  When I connect to VMS, I
  67216. execute the following command to get VMS to recognize the larger window:
  67217.  
  67218. $ set term/pag=32/wid=80
  67219.  
  67220. I include the width since the width is sometimes improperly set to 132 when
  67221. I access VMS from a Unix box via telnet rather than dialing directly.  This
  67222. works fine when entered manually, so I decided to write a simple script to
  67223. automate it.  In the script I have the following two lines:
  67224.  
  67225. output set term/pag=32/wid=80\13
  67226. in 5 $
  67227.  
  67228. Whenever I execute these two lines, the OS/2 window is resized to 25x80
  67229. with VMS now believing I have a 32x80 screen.  I can reproduce the problem
  67230. by executing those two lines directly from the command line.  I can fix the
  67231. window by adding a "!mode 80,33" command, but it is annoying to have to do
  67232. so.
  67233.  
  67234. Interestingly, if I omit the "/wid=80" in the output command, no resizing
  67235. occurs.
  67236.  
  67237. Is it supposed to work this way?
  67238.  
  67239. Cliff@shell.poratl.com
  67240.  
  67241. --
  67242. I said it in Hebrew--I said it in Dutch--       | Clifford L. Pelletier
  67243. I said it in Latin and Greek:                   | cliff@shell.portal.com
  67244. But I wholly forgot (and it vexes me much)      |
  67245. that English is what you speak!    --L. Carroll |
  67246.  
  67247. From news@columbia.edu Sat Dec 24 18:05:45 1994
  67248. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23596
  67249.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 24 Dec 1994 13:05:50 -0500
  67250. Received: by apakabar.cc.columbia.edu id AA29696
  67251.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 24 Dec 1994 13:05:48 -0500
  67252. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  67253. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  67254. Newsgroups: comp.protocols.kermit.misc
  67255. Subject: Re: Window resizes in OS/2
  67256. Date: 24 Dec 1994 18:05:45 GMT
  67257. Organization: Columbia University
  67258. Lines: 52
  67259. Distribution: na
  67260. Message-Id: <3dhntp$svt@apakabar.cc.columbia.edu>
  67261. References: <3dhn29$b2u@news1.shell>
  67262. Nntp-Posting-Host: watsun.cc.columbia.edu
  67263. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  67264.  
  67265. In article <3dhn29$b2u@news1.shell>, Seeker <cliff@shell.portal.com> wrote:
  67266. >I run OS/2 ckermit(190) in a 33x80 window.  When I connect to VMS, I
  67267. >execute the following command to get VMS to recognize the larger window:
  67268. >$ set term/pag=32/wid=80
  67269. >I include the width since the width is sometimes improperly set to 132
  67270. >when I access VMS from a Unix box via telnet rather than dialing
  67271. >directly.  This works fine when entered manually, so I decided to write a
  67272. >simple script to automate it.  In the script I have the following two
  67273. >lines:
  67274. >output set term/pag=32/wid=80\13
  67275. >in 5 $
  67276.  
  67277. >Whenever I execute these two lines, the OS/2 window is resized to 25x80
  67278. >with VMS now believing I have a 32x80 screen.  I can reproduce the
  67279. >problem by executing those two lines directly from the command line.  I
  67280. >can fix the window by adding a "!mode 80,33" command, but it is annoying
  67281. >to have to do so.  Interestingly, if I omit the "/wid=80" in the output
  67282. >command, no resizing occurs.  Is it supposed to work this way?
  67283. I am not totally sure this is the answer, but...
  67284.  
  67285. In version 5A(190) and earlier, the same screen size is used by both the
  67286. C-Kermit command parser and the terminal emulation window (in future
  67287. releases, the sizes will be independent).  When the command parser is
  67288. active, so is the ANSI console driver.
  67289.  
  67290. I suspect that when you tell VMS to:
  67291.  
  67292.   set term/pag=32/wid=80
  67293.  
  67294. this causes VMS to send an escape sequence to the terminal.  You can
  67295. confirm this via LOG SESSION or by putting C-Kermit's terminal emulator in
  67296. debug mode (with Alt-d).
  67297.  
  67298. If you have SET INPUT ECHO ON in C-Kermit, then your INPUT command:
  67299.  
  67300.   in 5 $
  67301.  
  67302. will read characters sent by the host and echo them to the screen, i.e. to
  67303. the ANSI console driver.  This means that any escape sequences sent by the
  67304. host are likely to have unexpected effects since ANSI != VTxxx.  In this
  67305. case, the console driver evidently recognized what it though was a video-
  67306. mode change command, and so changed its video mode, which affects both
  67307. the command screen and the terminal screen.
  67308.  
  67309. Solution:  Tell C-Kermit to SET INPUT ECHO OFF.
  67310.  
  67311. - Frank
  67312.  
  67313. From news@columbia.edu Wed Dec 21 02:24:25 1994
  67314. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04748
  67315.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 24 Dec 1994 16:19:01 -0500
  67316. Received: by apakabar.cc.columbia.edu id AA19807
  67317.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 24 Dec 1994 16:18:59 -0500
  67318. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!news.duke.edu!convex!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  67319. From: jrd@cc.usu.edu (Joe Doupnik)
  67320. Newsgroups: comp.protocols.kermit.misc
  67321. Subject: Re: DEC LAT multisession capabilities?
  67322. Message-Id: <1994Dec21.082425.35841@cc.usu.edu>
  67323. Date: 21 Dec 94 08:24:25 MDT
  67324. References: <3d8t4l$osb@sun4.bham.ac.uk>
  67325. Organization: Utah State University
  67326. Lines: 12
  67327. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  67328.  
  67329. In article <3d8t4l$osb@sun4.bham.ac.uk>, gio@wcl-rs.bham.ac.uk (Giovanni Ciampa) writes:
  67330. > Subject sums it up really...
  67331. > Is this currently possible with (MS-DOS) Kermit or if not, does
  67332. > anyone know if it is likely to become a part of the package?
  67333. ----------
  67334.     MS-DOS Kermit supports only one LAT session at a time. It's a bunch 
  67335. of work and memory to support multiple LAT sessions, and so far there has
  67336. been no demand for that capability. Only the internal Telnet stack supports 
  67337. multiple sessions at this time, and later we hope to add some other comms
  67338. channels to the session manager.
  67339.     Joe D.
  67340.  
  67341. From news@columbia.edu Sun Dec 25 07:30:39 1994
  67342. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20504
  67343.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 25 Dec 1994 04:45:22 -0500
  67344. Received: by apakabar.cc.columbia.edu id AA17822
  67345.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 25 Dec 1994 04:45:20 -0500
  67346. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!gatech!concert!balsam!handmade
  67347. From: handmade@cs.unca.edu (Hand Made in America)
  67348. Newsgroups: comp.protocols.kermit.misc
  67349. Subject: Re: ?Improve 20% efficient Kermit xfers?
  67350. Date: 25 Dec 1994 07:30:39 GMT
  67351. Organization: University of North Carolina at Asheville
  67352. Lines: 24
  67353. Message-Id: <3dj72v$b1e@balsam.unca.edu>
  67354. References: <3dds2v$k4p@balsam.unca.edu> <3delhj$8e9@sphinx.Gsu.EDU> <3dfq27$jn8@balsam.unca.edu> <1994Dec23.211814.35981@cc.usu.edu>
  67355. Nntp-Posting-Host: brevard.cs.unca.edu
  67356. X-Newsreader: TIN [version 1.2 PL2]
  67357. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  67358.  
  67359. Joe Doupnik (jrd@cc.usu.edu) and I wrote:
  67360.  
  67361. ==> > My PC+ *max* length settable from the menu is 94!!!  I have to hexedit 
  67362.  
  67363. i.e., my ProComm+ menu says "type a value between 20 and 94"
  67364.  
  67365. ==> > C-Kermit seems limited to 286 bytes at my u. site!
  67366.  
  67367. i.e., if I put a larger value in .kermrc, transfer a file, STAT reports 
  67368. 286 byte packet-length.  Do I talk to my local admin?
  67369.  
  67370. ==>     The suggestion to at least try MS-DOS Kermit on the PC end . . .
  67371.  
  67372. so maybe I can get a PCKermit to set up as an EXTERNal protocol with the 
  67373. hooks provided with ProComm+ ?
  67374.  
  67375. Thanks for all the hints!
  67376.  
  67377. --
  67378.  /s/   -=Chris=-     Christopher Karl Johansen   HandMade in America
  67379.                      vox: 704.252.0121           67 N. Market St. (NC 28801)
  67380.   opinions: mine!    fax: 704.252.0388           Post Office Box 2089
  67381. facts: everyone's.   net: handmade@unca.edu      Asheville, NC 28802-2089
  67382.  
  67383.  
  67384. From news@columbia.edu Sun Dec 25 04:03:21 1994
  67385. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23956
  67386.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 25 Dec 1994 05:40:28 -0500
  67387. Received: by apakabar.cc.columbia.edu id AA19926
  67388.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 25 Dec 1994 05:40:26 -0500
  67389. Newsgroups: comp.protocols.kermit.misc
  67390. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!agate!darkstar.UCSC.EDU!news.hal.COM!decwrl!netcomsv!netcomsv!lafn.org!lafn.org!ac388
  67391. From: ac388@lafn.org (Charles Lease)
  67392. Subject: Re: Help adding zmodem to MSKermit.
  67393. Message-Id: <1994Dec25.040321.22507@lafn.org>
  67394. Sender: news@lafn.org
  67395. Nntp-Posting-Host: lafn.org
  67396. Reply-To: ac388@lafn.org (Charles Lease)
  67397. Organization: The Los Angeles Free-Net
  67398. References: <3d455r$1fd8@heart.cas.und.nodak.edu>  
  67399. Date: Sun, 25 Dec 1994 04:03:21 GMT
  67400. Lines: 71
  67401. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  67402.  
  67403.  
  67404. In a previous article, degregor@aero.und.nodak.edu (Brian Degregorio) says:
  67405.  
  67406. >I'm trying to add gsz to kermit running on a direct connection (null modem), 
  67407. >but when I try to recieve something gsz doesn't accept the null modem signal.
  67408. >Any help would be greatly appreciated. 
  67409. >
  67410. >                    Thanks in advance,
  67411. >                    Brian Degregorio
  67412. >                    
  67413. >
  67414. >*****************************************************************************
  67415. >**                 Brian Degregorio                         **
  67416. >**                 3504 11th ave N apt #16               **
  67417. >**                 Grand Forks, ND  58203                   **
  67418. >**        Email:  degregor@aero.cas.und.nodak.edu               **
  67419. >**              Phone:  701-772-7856 or if busy 701-795-8620               **
  67420. >Captain Penny's Law:
  67421. >    You can fool all of the people some of the time, and some of
  67422. >    the people all of the time, but you Can't Fool Mom. 
  67423. >*****************************************************************************
  67424. >
  67425. I use DSZ, but GSZ should work the same way. Just make the appropriate
  67426. name change to the following macros.
  67427.  
  67428. I've forgotten which one of the DOCUMENTATION files I found this in, but
  67429. by adding the following macros to my MSCUSTOM.INI file I can call DSZ
  67430. as an external protocol from MSKermit.
  67431.  
  67432.  > ; Macros for transferring files via DSZ (Zmodem) ...
  67433.  > ;
  67434.  > define rz run dsz est 0 9600 F ha on port 1 G rz -r
  67435.  > define sz run dsz est 0 9600 F ha on port 1 G sz \%1 \%2 \%3 \%4 \%5
  67436.  > define t run dsz est 0 9600 F ha on port 1 G t -r
  67437.  
  67438. DSZ is installed in a directory in my path. I use Kermit's terminal emulation
  67439. for everything up to the point where I issue the:
  67440.  
  67441.    sz [filespec]
  67442.  
  67443. command on the remote system command line. I then use [Alt + X] to return to
  67444. the local Kermit command line, where I use:
  67445.  
  67446.    do rz
  67447.  
  67448. to initiate the Kermit "rz" macro defined above. This starts DSZ in the 
  67449. receive mode, which initiates the file transfer via Zmodem. When the transfer
  67450. is complete, DSZ exits and returns to the Kermit command line. I can then
  67451. "connect" again to get back to the remote command line. The:
  67452.  
  67453.    est 0 9600
  67454.  
  67455. passed to DSZ is supposed to cause the estimated transfer time to reflect
  67456. the correct 9600 baud rate of my V.32 modem, even though I use a DCE/DTE
  67457. rate of 19,200. This doesn't seem to work right, but I haven't yet tried to
  67458. determine why not. Also the "G" is supposed to be necessary to enable the
  67459. serial port, since when you run an external command, kermit is supposed to
  67460. shut off the serial port. It seems to work, so I haven't investigated if it
  67461. is really needed. Using "rz" on the remote system and "do sz" from the local
  67462. kermit command line initiates Zmodem "up-loads" in place of downloads. The
  67463. "t" macro is a special version of the download protocol, which I haven't
  67464. used yet. It is supposed to allow more automatic downloads to be performed.
  67465.  
  67466. I'm sure more automation could be included in the macros, but these work
  67467. quite well manually. Maybe someone else had improved on these macro's. With
  67468. MSKermit as the main comm. program and DSZ as an external protocol, I have
  67469. two of the most popular and reliable protocols available in an inexpensive
  67470. package.
  67471.  
  67472. -- 
  67473. cdl [ac388@lafn.org] ...
  67474.  
  67475. From news@columbia.edu Sun Dec 25 14:34:49 1994
  67476. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06398
  67477.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 25 Dec 1994 09:34:55 -0500
  67478. Received: by apakabar.cc.columbia.edu id AA28760
  67479.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 25 Dec 1994 09:34:53 -0500
  67480. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  67481. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  67482. Newsgroups: comp.protocols.kermit.misc
  67483. Subject: Re: ?Improve 20% efficient Kermit xfers?
  67484. Date: 25 Dec 1994 14:34:49 GMT
  67485. Organization: Columbia University
  67486. Lines: 33
  67487. Message-Id: <3djvu9$s2m@apakabar.cc.columbia.edu>
  67488. References: <3dds2v$k4p@balsam.unca.edu> <3dfq27$jn8@balsam.unca.edu> <1994Dec23.211814.35981@cc.usu.edu> <3dj72v$b1e@balsam.unca.edu>
  67489. Nntp-Posting-Host: watsun.cc.columbia.edu
  67490. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  67491.  
  67492. In article <3dj72v$b1e@balsam.unca.edu>,
  67493. Hand Made in America <handmade@cs.unca.edu> wrote:
  67494. >Joe Doupnik (jrd@cc.usu.edu) and I wrote:
  67495. >==> > My PC+ *max* length settable from the menu is 94!!!  I have to hexedit 
  67496. >...
  67497. >i.e., my ProComm+ menu says "type a value between 20 and 94"
  67498. >
  67499. We can't be responsible for the restrictions of Procomm.  MS-DOS Kermit
  67500. lets you choose any packet length up to the theoritical maximum of 9024.
  67501.  
  67502. >==> > C-Kermit seems limited to 286 bytes at my u. site!
  67503. >...
  67504. >i.e., if I put a larger value in .kermrc, transfer a file, STAT reports 
  67505. >286 byte packet-length.  Do I talk to my local admin?
  67506. >
  67507. The packet length is determined by the file receiver.  In other words,
  67508. the receiver gives the sender permission to send packets UP TO the given
  67509. length; the sender can choose to send less, but not more.  A real Kermit
  67510. program will normally use the length that you tell it.  If you were using
  67511. MS-DOS Kermit, the command would be:
  67512.  
  67513.   SET RECEIVE PACKET-LENGTH 2000
  67514.  
  67515. or whatever.  Evidently your version of Procomm does not want to receive
  67516. long packets, no matter how you "hexedit" your Procomm configuration.
  67517. Maybe that's why it does not have a "command" or setting for this.
  67518.  
  67519. Give the same command to C-Kermit when uploading.  The current version of
  67520. C-Kermit is 5A(190) and, like MS-DOS Kermit 3.xx, it is a full
  67521. implementation of the protocol: long packets, sliding windows,
  67522. compression, locking shifts, etc etc.
  67523.  
  67524. - Frank
  67525.  
  67526. From news@columbia.edu Sat Dec 24 12:47:12 1994
  67527. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06573
  67528.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 25 Dec 1994 18:31:04 -0500
  67529. Received: by apakabar.cc.columbia.edu id AA01631
  67530.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 25 Dec 1994 18:31:03 -0500
  67531. Newsgroups: comp.protocols.kermit.misc
  67532. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!vixen.cso.uiuc.edu!news.uoregon.edu!netnews.nwnet.net!serval.net.wsu.edu!serval.net.wsu.edu.!chang
  67533. From: chang@theta.math.wsu.edu (Ching Mo Chang)
  67534. Subject: Re: Help! Strip high bit(MSKERMIT)
  67535. In-Reply-To: jrd@cc.usu.edu's message of 18 Dec 94 19:24:47 MDT
  67536. Message-Id: <CHANG.94Dec24044712@theta.math.wsu.edu>
  67537. Sender: news@serval.net.wsu.edu (News)
  67538. Organization: Washington State University
  67539. References: <CHANG.94Dec16183135@theta.math.wsu.edu> <3cvkpa$i9d@apakabar.cc.columbia.edu>
  67540.     <1994Dec18.192447.35700@cc.usu.edu>
  67541. Date: Sat, 24 Dec 1994 12:47:12 GMT
  67542. Lines: 33
  67543. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  67544.  
  67545. Thanks for the Joe and Frank's replies to
  67546.     my previous posting: Help! Strip high bit(MSKERMIT).
  67547.  
  67548. After the hints, I find out that using the following terminal setting, I can
  67549. view Chinese in Big5 code when runing MSKERMIT in a Chinese DOS system.
  67550.  
  67551. set parity none
  67552. set term bytesize 8
  67553. set terminal character transparent  
  67554.  
  67555. Ching-Mo
  67556.  
  67557. >>>>> "Joe" == Joe Doupnik <jrd@cc.usu.edu> writes:
  67558.  
  67559.     Joe> ---------------- In terminal emulation mode the MS-DOS Kermit
  67560.     Joe> command to change the high bit of bytes displayed by 8-bit
  67561.     Joe> terminals (assuming a parity of NONE) is SET TERM DISPLAY
  67562.     Joe> {7-BIT, 8-BIT}, or alternatively SET TERM BYTESIZE {same as
  67563.     Joe> above}, or alternatively SET DISPLAY {same as above, plus
  67564.     Joe> file transfer screen options} These are aliases of the same
  67565.     Joe> command. Use SHOW TERMINAL to see the active setting.  Joe D.
  67566.  
  67567. >>>>> "Frank" == Frank da Cruz <fdc@watsun.cc.columbia.edu> writes:
  67568.  
  67569.     Frank> MS-DOS Kermit does not explicitly support Chinese
  67570.     Frank> characters, but it does support Japanese Kanji.  Depending
  67571.     Frank> on the PC and host encodings for Chinese, maybe the
  67572.     Frank> Japanese Kanji support might work for Chinese too.  The
  67573.     Frank> Japanese Kanji support in MS-DOS Kermit 3.14 assumes Code
  67574.     Frank> Page 982 ("Shift-JIS") on the PC, and different variations
  67575.     Frank> of JIS X 0208 on the host.  JIS X 0208 is similar to
  67576.     Frank> Chinese CAS GB 2312-80.
  67577.  
  67578.  
  67579. From news@columbia.edu Mon Dec 26 02:08:44 1994
  67580. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15161
  67581.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 25 Dec 1994 21:08:49 -0500
  67582. Received: by apakabar.cc.columbia.edu id AA08012
  67583.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 25 Dec 1994 21:08:48 -0500
  67584. Path: news.columbia.edu!sol.ctr.columbia.edu!math.ohio-state.edu!uwm.edu!vixen.cso.uiuc.edu!prairienet.org!somebody
  67585. From: somebody@prairienet.org (Carlos Ramirez Pnet Admin)
  67586. Newsgroups: comp.protocols.kermit.misc
  67587. Subject: Help needed in slip setup!
  67588. Date: 26 Dec 1994 02:08:44 GMT
  67589. Organization: Prairienet, the East-Central Illinois Free-Net
  67590. Lines: 10
  67591. Message-Id: <3dl8jc$54f@vixen.cso.uiuc.edu>
  67592. Nntp-Posting-Host: firefly.prairienet.org
  67593. X-Newsreader: TIN [version 1.2 PL2]
  67594. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  67595.  
  67596.     Hello everyone after various attempts to setup config files for using 
  67597. slip especially with dns I have given up and decide to ask assistance. 
  67598. Thus can someone be so kind as to mail be a sample config files for using 
  67599. kermit with slip for dos. I currently and doing with a work around which is 
  67600. using ncsa telnet which was easy to setup. 
  67601.     On a side note I have beta 13 of kermit what new since then?
  67602.                         Thank you in advance
  67603.  
  67604.                         Carlos
  67605. ps.  happy new year!
  67606.  
  67607. From news@columbia.edu Sun Dec 25 18:24:56 1994
  67608. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15517
  67609.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 25 Dec 1994 21:15:14 -0500
  67610. Received: by apakabar.cc.columbia.edu id AA08200
  67611.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 25 Dec 1994 21:15:06 -0500
  67612. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news.sprintlink.net!news.primenet.com!usenet
  67613. From: jbishop@primenet.com (Jeff Bishop)
  67614. Newsgroups: comp.protocols.kermit.misc
  67615. Subject: testing
  67616. Date: Sun, 25 Dec 1994 11:24:56 -0700
  67617. Organization: Primenet
  67618. Lines: 1
  67619. Message-Id: <uZR$kuqcZ7WI075yn@primenet.com>
  67620. Nntp-Posting-Host: usr1.primenet.com
  67621. X-Signature: YES/286! - the Yarn Editor Shell, Version 0.11.B1218 - Freeware!
  67622. X-Newsreader: Yarn 0.75
  67623. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  67624.  
  67625. This is a test
  67626.  
  67627. From news@columbia.edu Sun Dec 25 14:30:48 1994
  67628. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20795
  67629.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 25 Dec 1994 22:48:56 -0500
  67630. Received: by apakabar.cc.columbia.edu id AA12157
  67631.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 25 Dec 1994 22:48:55 -0500
  67632. Path: news.columbia.edu!panix!news.mathworks.com!news.duke.edu!agate!dog.ee.lbl.gov!news.cs.utah.edu!cc.usu.edu!jrd
  67633. From: jrd@cc.usu.edu (Joe Doupnik)
  67634. Newsgroups: comp.protocols.kermit.misc
  67635. Subject: Re: Help needed in slip setup!
  67636. Message-Id: <1994Dec25.203048.36009@cc.usu.edu>
  67637. Date: 25 Dec 94 20:30:48 MDT
  67638. References: <3dl8jc$54f@vixen.cso.uiuc.edu>
  67639. Organization: Utah State University
  67640. Lines: 18
  67641. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  67642.  
  67643. In article <3dl8jc$54f@vixen.cso.uiuc.edu>, somebody@prairienet.org (Carlos Ramirez Pnet Admin) writes:
  67644. >     Hello everyone after various attempts to setup config files for using 
  67645. > slip especially with dns I have given up and decide to ask assistance. 
  67646. > Thus can someone be so kind as to mail be a sample config files for using 
  67647. > kermit with slip for dos. I currently and doing with a work around which is 
  67648. > using ncsa telnet which was easy to setup. 
  67649. >     On a side note I have beta 13 of kermit what new since then?
  67650. >                         Thank you in advance
  67651. --------------
  67652.     De-scoping the question: what did you do, and what happened?
  67653. Something to keep in mind with SLIP is there is only one "other end"
  67654. of the wire and that remote end's IP number is the gateway off the
  67655. wire, and consequently your PC and that other end are on the same
  67656. IP network number (host parts differ but not the network parts of
  67657. the IP addresses). I suggest you do a quick double check with your 
  67658. local IP responsible people about IP numbers and subnet masks etc to 
  67659. verify that you are using the correct values for your environment.
  67660.     Joe D.
  67661.  
  67662. From news@columbia.edu Mon Dec 26 09:50:50 1994
  67663. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13714
  67664.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Dec 1994 04:51:33 -0500
  67665. Received: by apakabar.cc.columbia.edu id AA23472
  67666.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Dec 1994 04:51:26 -0500
  67667. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!pipex!uunet!ulowell.uml.edu!primenet.com!not-for-mail
  67668. From: jbishop@primenet.com (Jeff Bishop)
  67669. Newsgroups: comp.protocols.kermit.misc
  67670. Organization: Primenet
  67671. Message-Id: <-uZR$kuqcZ7WI075yn@primenet.com>
  67672. Control: cancel <uZR$kuqcZ7WI075yn@primenet.com>
  67673. Subject: cmsg cancel <uZR$kuqcZ7WI075yn@primenet.com>
  67674. Date: Mon, 26 Dec 1994 09:50:50 GMT
  67675. Approved: news@primenet.com
  67676. Lines: 1
  67677. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  67678.  
  67679. cancel <uZR$kuqcZ7WI075yn@primenet.com>
  67680.  
  67681. From news@columbia.edu Mon Dec 26 17:19:49 1994
  67682. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07543
  67683.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Dec 1994 12:19:52 -0500
  67684. Received: by apakabar.cc.columbia.edu id AA21686
  67685.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Dec 1994 12:19:51 -0500
  67686. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  67687. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  67688. Newsgroups: comp.protocols.kermit.misc
  67689. Subject: Re: Help needed in slip setup!
  67690. Date: 26 Dec 1994 17:19:49 GMT
  67691. Organization: Columbia University
  67692. Lines: 60
  67693. Message-Id: <3dmtvl$l5k@apakabar.cc.columbia.edu>
  67694. References: <3dl8jc$54f@vixen.cso.uiuc.edu> <1994Dec25.203048.36009@cc.usu.edu>
  67695. Nntp-Posting-Host: watsun.cc.columbia.edu
  67696. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  67697.  
  67698. In article <3dl8jc$54f@vixen.cso.uiuc.edu>,
  67699.  somebody@prairienet.org (Carlos Ramirez Pnet Admin) writes:
  67700. > Hello everyone after various attempts to setup config files for using 
  67701. > slip especially with dns I have given up and decide to ask assistance. 
  67702. > Thus can someone be so kind as to mail be a sample config files for using 
  67703. > kermit with slip for dos.
  67704. >
  67705. Did you read the instructions?  This is from the file NETWORKS\SETUP.DOC
  67706. in the MS-DOS Kermit 3.14 Beta ZIP file:
  67707.  
  67708. MAKING SLIP CONNECTIONS
  67709.  
  67710. To make a SLIP (Serial Line IP) connection, follow these steps:
  67711.  
  67712. 1. SET PORT 1
  67713.    (or whichever serial port you will be using for the SLIP connection).
  67714.  
  67715. 2. SET SPEED 19200
  67716.    (or whatever speed you will be using)
  67717.  
  67718. 3. SET FLOW RTS/CTS (or NONE)
  67719.    Don't use Xon/Xoff flow control on a SLIP connection!  SLIP and Xon/Xoff
  67720.    are incompatible with each other.
  67721.  
  67722. 4. Establish a connection to the terminal server or other device that will be
  67723.    providing SLIP service.  Determine the IP address and other information
  67724.    (e.g. gateway address) that it has assigned to you.    Normally, these are
  67725.    displayed on your screen before the terminal server enters SLIP mode.
  67726.  
  67727. 5. Escape back to the MS-Kermit prompt and EXIT from MS-DOS Kermit.  The
  67728.    connection is left open.
  67729.  
  67730. 6. Start the SLIP8250 driver, telling it to use the same port (hex address and
  67731.    IRQ number must be supplied) and speed (decimal) used in (1) and (2) above,
  67732.    and to use hardware flow control (-h), for example:
  67733.  
  67734.       slip8250 0x60 -h slip 4 0x3f8 19200
  67735.  
  67736. 7. Start MS-DOS Kermit again.  Do NOT give it a SET PORT command for the
  67737.    serial port where SLIP is running.  Instead, give the SET TCP ADDRESS,
  67738.    SET TCP GATEWAY, and other necessary SET TCP commands.  Then, to make
  67739.    a connection, use SET PORT TCP <address>, where <address> is the IP
  67740.    hostname or address of the IP host you want to connect to.
  67741.  
  67742. Note: Even though you might think it's silly to exit from Kermit and then start
  67743. it again, when you could simply start the SLIP driver from the Kermit prompt,
  67744. there is a reason: starting a driver from inside an application results in
  67745. memory fragmentation.
  67746.  
  67747. Note 2: In version 3.13 and later, it is also possible to obtain BOOTP service
  67748. on a SLIP connection if your SLIP server is configured to provide it (for
  67749. example, Cisco terminal servers can do this).  Also, MS-DOS Kermit's SHOW
  67750. COMMUNICATIONS command will display the IP address of the BOOTP server.
  67751.  
  67752. > On a side note I have beta 13 of kermit what new since then?
  67753. >
  67754. Of interest to you would be an improvement in the efficiency of SLIP service,
  67755. which came in Beta 16 (the current Beta).
  67756.  
  67757. - Frank
  67758.  
  67759. From news@columbia.edu Mon Dec 26 18:18:28 1994
  67760. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13486
  67761.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Dec 1994 14:00:25 -0500
  67762. Received: by apakabar.cc.columbia.edu id AA26073
  67763.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Dec 1994 14:00:24 -0500
  67764. Newsgroups: comp.protocols.kermit.misc
  67765. Path: news.columbia.edu!sol.ctr.columbia.edu!newsxfer.itd.umich.edu!gatech!concert!mercury!hkennedy
  67766. From: hkennedy@mercury.ncat.edu
  67767. Subject: How to suspend or halt OS/2 Ckermit
  67768. Message-Id: <1994Dec26.181828.13664@mercury.ncat.edu>
  67769. Organization: North Carolina Agricultural and Technical State University
  67770. Date: Mon, 26 Dec 1994 18:18:28 GMT
  67771. Lines: 22
  67772. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  67773.  
  67774. Hi,
  67775.  
  67776. I'm trying to halt or suspend OS/2 ckermit, like you can do unix to run
  67777. another program to access the com port. I tried the run command but my
  67778. program says that the port is in use.
  67779.  
  67780. If I quite ckermit it drops the connection and this is not what I want. I
  67781. want the connection to remain open.
  67782.  
  67783. Anyway to tell ckermit to give up the port. Note I'm trying to make a slip
  67784. connection to local server with TIA, after logging in with ckermit. Slip
  67785. says the comm port is still in use if I use the run command. Exiting
  67786. ckermit just kills the connection.
  67787.  
  67788. Any ideals. I did look in the ckermit book and no tips there. It discussed
  67789. running external programs that access the port with the run command but it
  67790. appears that the program has to be written to work with ckermit.
  67791.  
  67792. Thanks,
  67793.  
  67794. Helen
  67795.  
  67796.  
  67797. From news@columbia.edu Mon Dec 26 22:01:16 1994
  67798. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23979
  67799.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Dec 1994 17:01:18 -0500
  67800. Received: by apakabar.cc.columbia.edu id AA04129
  67801.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Dec 1994 17:01:17 -0500
  67802. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  67803. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  67804. Newsgroups: comp.protocols.kermit.misc
  67805. Subject: Re: How to suspend or halt OS/2 Ckermit
  67806. Date: 26 Dec 1994 22:01:16 GMT
  67807. Organization: Columbia University
  67808. Lines: 49
  67809. Message-Id: <3dnefc$40v@apakabar.cc.columbia.edu>
  67810. References: <1994Dec26.181828.13664@mercury.ncat.edu>
  67811. Nntp-Posting-Host: watsun.cc.columbia.edu
  67812. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  67813.  
  67814. In article <1994Dec26.181828.13664@mercury.ncat.edu>,
  67815.  <hkennedy@mercury.ncat.edu> wrote:
  67816. >Hi,
  67817. >
  67818. >I'm trying to halt or suspend OS/2 ckermit, like you can do unix to run
  67819. >another program to access the com port. I tried the run command but my
  67820. >program says that the port is in use.
  67821.  
  67822. OS/2 C-Kermit locks the port when it is in use so that other applications
  67823. cannot interfere with it.
  67824.  
  67825. >If I quite ckermit it drops the connection and this is not what I want. I
  67826. >want the connection to remain open.
  67827.  
  67828. Correct.  OS/2 doesn't allow files to remain open past the end of an 
  67829. application.  It automatically closes all open files.
  67830.  
  67831. >Anyway to tell ckermit to give up the port. Note I'm trying to make a slip
  67832. >connection to local server with TIA, after logging in with ckermit. Slip
  67833. >says the comm port is still in use if I use the run command. Exiting
  67834. >ckermit just kills the connection.
  67835.  
  67836. In the next version of C-Kermit for OS/2 [5A(191)], there is now SLIPTERM
  67837. support which allows C-Kermit to grab control of the COM port from the 
  67838. SLIP driver.  This way you can start a slip session, and use C-Kermit 
  67839. as your terminal emulation and scripting package.
  67840.  
  67841. >Any ideals. I did look in the ckermit book and no tips there. It discussed
  67842. >running external programs that access the port with the run command but it
  67843. >appears that the program has to be written to work with ckermit.
  67844.  
  67845. The program needs to be written so that it can accept a file handle instead
  67846. of a port name.  This way the program can be started as a child process of
  67847. C-Kermit and inherit the open comm port.
  67848.  
  67849. >Thanks,
  67850. >
  67851. >Helen
  67852. >
  67853.  
  67854. If you are interested in joining the test group for OS/2 C-Kermit, send
  67855. me mail directly.
  67856.  
  67857.  
  67858.  
  67859. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  67860. "C-Kermit: available on more platforms than any other communications software."
  67861. "Kermit FTP: sending files whenever and wherever they are needed."
  67862. *NEW* OS/2 version 5A(190): ftp kermit.columbia.edu /kermit/archives/ckoker.zip 
  67863.  
  67864. From news@columbia.edu Tue Dec 27 20:24:32 1994
  67865. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14857
  67866.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Dec 1994 15:42:39 -0500
  67867. Received: by apakabar.cc.columbia.edu id AA11304
  67868.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Dec 1994 15:42:38 -0500
  67869. Newsgroups: pdx.computing,comp.protocols.kermit.misc
  67870. Path: news.columbia.edu!panix!news.mathworks.com!hookup!swrinde!howland.reston.ans.net!ix.netcom.com!netcom.com!kientzle
  67871. From: kientzle@netcom.com
  67872. Subject: Re: Kermit / xyz modem showdown results?
  67873. Message-Id: <kientzleD1HKox.Ktw@netcom.com>
  67874. Organization: NETCOM On-line Communication Services (408 261-4700 guest)
  67875. References: <3d4olb$hju@sun.lclark.edu>
  67876. Distribution: or
  67877. Date: Tue, 27 Dec 1994 20:24:32 GMT
  67878. Lines: 46
  67879. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  67880.  
  67881. In article <3d4olb$hju@sun.lclark.edu>,
  67882. John Miller <miller@sun.lclark.edu> wrote:
  67883. >Awhile back Chuck Forsberg announced such a showdown, and I saw a followup
  67884. >article in the Oregonian.  The Oregonian's article was more entertaining
  67885. >than informative, and Forsberg did not seem to publish any hard results
  67886. >on the net.
  67887.         Chuck does have a gift for generating publicity, doesn't he?
  67888. ;-) Unfortunately, I've never seen a `showdown' that produced any
  67889. really useful information.  As Mark Twain said: there's lies, damned
  67890. lies, and statistics.
  67891.  
  67892.         If you read between the lines of the glossy graphs and charts
  67893. used to support the `my protocol is better than yours' wars, you can
  67894. get some real laughs.  For example, one chart I saw proclaimed one
  67895. protocol `best' due to an advantage over a competitor of only .3%!
  67896. Another chose a very particular file that had certain properties that
  67897. caused it to transfer unusually quickly under one particular protocol
  67898. (but not a competitor's, of course).  Both of these comparisons were
  67899. done by generally well-respected individuals.
  67900.  
  67901. >Anyone have any comparative results between latest versions of these packages?
  67902. >We are running the latest kermit on a DEC Alpha, but have the older versions
  67903. >of sz, etc.
  67904.  
  67905.         Latest versions of which packages?  I've seen 10-20 percent
  67906. variations in speed between different implementations of the same
  67907. protocol on the same equipment transferring the same file.  (In one
  67908. case, a data scope was used to verify that the implementations were
  67909. functioning identically.  Apparently, one was just 10% less efficient
  67910. at managing the serial and disk I/O on that hardware.)  If that kind
  67911. of difference is important to you, then simply specifying which
  67912. _protocol_ to compare is pointless.
  67913.  
  67914.         My two cents: Kermit and ZModem are sufficiently close in
  67915. speed (given good implementations of each) that ease of use and
  67916. reliability are THE most important issues.  Speed is no longer a major
  67917. consideration.  If you want faster transfers, buy a faster modem and
  67918. a faster computer.  Still not fast enough?  Rent a T1 line.
  67919.  
  67920.         In fact, I regularly use a protocol that's much slower than
  67921. either Kermit or ZModem simply because I have an implementation that's
  67922. extremely easy to use.  The minutes I save not having to remember
  67923. which settings to fiddle more than make up for the seconds of extra
  67924. transfer time.
  67925.  
  67926.                                 - Tim Kientzle
  67927.  
  67928. From news@columbia.edu Wed Dec 28 05:58:13 1994
  67929. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22134
  67930.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 28 Dec 1994 01:12:53 -0500
  67931. Received: by apakabar.cc.columbia.edu id AA09087
  67932.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 28 Dec 1994 01:12:52 -0500
  67933. Newsgroups: comp.protocols.kermit.misc
  67934. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!ix.netcom.com!netcom.com!lachman
  67935. From: lachman@netcom.com (Hans Lachman)
  67936. Subject: Kermit on WindowsNT (using TCP)?
  67937. Message-Id: <lachmanD1IB92.A9F@netcom.com>
  67938. Organization: Netcom, Silicon Valley
  67939. Distribution: na
  67940. Date: Wed, 28 Dec 1994 05:58:13 GMT
  67941. Lines: 19
  67942. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  67943.  
  67944. I'm trying to use Kermit in TCP/IP mode on a PC running WindowsNT.
  67945. I got MSVIBM.ZIP (MS-Kermit 3.13) and unpacked it, and it runs.
  67946. I did "set tcp host" (followed by remote host address), "set
  67947. port tcp", then "connect", and I got:
  67948.  
  67949.    Cannot attach to an Ethernet Packet Driver or a Novell ODI driver.
  67950.    Unable to initialize TCP/IP system, quitting.
  67951.    ?Cannot start the connection.
  67952.  
  67953. Just to eliminate obvious problems, I then tried setting appropriate
  67954. values for "address", "domain", "gateway", and "primary-nameserver".
  67955. "Packet-driver-interrupt" is set to 0 (meaning "search for it")
  67956. by default.  Anyway, I get the same error message no matter what.
  67957.  
  67958. I was hoping this would work, since NT comes with TCP/IP built in.
  67959. Anyone know of a tweak that can make Kermit run using TCP on NT?
  67960.  
  67961. Hans Lachman  <lachman@netcom.com>
  67962. "You are lost in a maze of twisty little passages, all alike."
  67963.  
  67964. From news@columbia.edu Wed Dec 28 15:35:19 1994
  67965. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26793
  67966.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 28 Dec 1994 10:43:56 -0500
  67967. Received: by apakabar.cc.columbia.edu id AA14159
  67968.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 28 Dec 1994 10:43:54 -0500
  67969. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!pipex!uunet!newsflash.concordia.ca!nstn.ns.ca!news.cs.indiana.edu!mozo.cc.purdue.edu!extra.cc.purdue.edu!cjdc
  67970. From: cjdc@extra.cc.purdue.edu (Chris Christian)
  67971. Newsgroups: comp.protocols.kermit.misc
  67972. Subject: scripting in kermit
  67973. Date: 28 Dec 1994 15:35:19 GMT
  67974. Organization: Purdue University
  67975. Lines: 13
  67976. Message-Id: <3ds0jn$pnl@mozo.cc.purdue.edu>
  67977. Nntp-Posting-Host: extra.cc.purdue.edu
  67978. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  67979.  
  67980. I'd like to write a script to login from a remote unix box without
  67981. net access via a phone line to an account with internet access all
  67982. with the script. The end result would be to download mail, files, etc
  67983. all with a one or two line command, and let it run for the desired time,
  67984. however, the problem Ihave is, all the documentation says kermit
  67985. scripts can be run, but nowhere have I seen any examples, documentation
  67986. on scripting in kermit, etc. Would people either be able to let me
  67987. have a copy of a similar script, or point me in the proper direction
  67988. when I can pick up some FREE information on how to write kermit scripts?
  67989.  
  67990. Chris
  67991. -- 
  67992. PGP PUBLIC KEY available upon request
  67993.  
  67994. From news@columbia.edu Wed Dec 28 15:44:32 1994
  67995. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26877
  67996.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 28 Dec 1994 10:44:37 -0500
  67997. Received: by apakabar.cc.columbia.edu id AA14201
  67998.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 28 Dec 1994 10:44:36 -0500
  67999. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  68000. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  68001. Newsgroups: comp.protocols.kermit.misc
  68002. Subject: Re: Kermit on WindowsNT (using TCP)?
  68003. Date: 28 Dec 1994 15:44:32 GMT
  68004. Organization: Columbia University
  68005. Lines: 38
  68006. Distribution: na
  68007. Message-Id: <3ds150$drn@apakabar.cc.columbia.edu>
  68008. References: <lachmanD1IB92.A9F@netcom.com>
  68009. Nntp-Posting-Host: watsun.cc.columbia.edu
  68010. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  68011.  
  68012. In article <lachmanD1IB92.A9F@netcom.com>,
  68013. Hans Lachman <lachman@netcom.com> wrote:
  68014. >I'm trying to use Kermit in TCP/IP mode on a PC running WindowsNT.
  68015. >I got MSVIBM.ZIP (MS-Kermit 3.13) and unpacked it, and it runs.
  68016. >I did "set tcp host" (followed by remote host address), "set
  68017. >port tcp", then "connect", and I got:
  68018. >
  68019. >   Cannot attach to an Ethernet Packet Driver or a Novell ODI driver.
  68020. >   Unable to initialize TCP/IP system, quitting.
  68021. >   ?Cannot start the connection.
  68022. >
  68023. >Just to eliminate obvious problems, I then tried setting appropriate
  68024. >values for "address", "domain", "gateway", and "primary-nameserver".
  68025. >"Packet-driver-interrupt" is set to 0 (meaning "search for it")
  68026. >by default.  Anyway, I get the same error message no matter what.
  68027. >
  68028. >I was hoping this would work, since NT comes with TCP/IP built in.
  68029. >Anyone know of a tweak that can make Kermit run using TCP on NT?
  68030. >
  68031. No.  MS-DOS Kermit is not a native NT application and can't use NT's
  68032. TCP/IP protocol.  Kermit executes its own built-in TCP/IP protocol
  68033. code, which runs on top of either a packet driver or an ODI driver.
  68034.  
  68035. I don't know enough about NT to say whether it is possible to run
  68036. a "DOS virtual machine" under NT which includes a packet driver or ODI
  68037. driver for your network board (this is possible under OS/2), but if so,
  68038. then you make TCP/IP connections with MS-DOS Kermit this way, but it
  68039. would probably require shutting down TCP/IP on NT.
  68040.  
  68041. In the future, we hope to have a native TCP/IP-capable Kermit version
  68042. for NT, but I can't give an estimate yet as to when it might be ready.
  68043.  
  68044. - Frank
  68045. x
  68046. x
  68047. x
  68048. x
  68049.  
  68050.  
  68051. From news@columbia.edu Wed Dec 28 15:52:19 1994
  68052. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27495
  68053.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 28 Dec 1994 10:52:22 -0500
  68054. Received: by apakabar.cc.columbia.edu id AA14669
  68055.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 28 Dec 1994 10:52:20 -0500
  68056. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  68057. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  68058. Newsgroups: comp.protocols.kermit.misc
  68059. Subject: Re: scripting in kermit
  68060. Date: 28 Dec 1994 15:52:19 GMT
  68061. Organization: Columbia University
  68062. Lines: 26
  68063. Message-Id: <3ds1jj$eab@apakabar.cc.columbia.edu>
  68064. References: <3ds0jn$pnl@mozo.cc.purdue.edu>
  68065. Nntp-Posting-Host: watsun.cc.columbia.edu
  68066. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  68067.  
  68068. In article <3ds0jn$pnl@mozo.cc.purdue.edu>,
  68069. Chris Christian <cjdc@extra.cc.purdue.edu> wrote:
  68070. >I'd like to write a script to login from a remote unix box without
  68071. >net access via a phone line to an account with internet access all
  68072. >with the script. The end result would be to download mail, files, etc
  68073. >all with a one or two line command, and let it run for the desired time,
  68074. >
  68075. All of this is quite possible.
  68076.  
  68077. >however, the problem Ihave is, all the documentation says kermit
  68078. >scripts can be run, but nowhere have I seen any examples, documentation
  68079. >on scripting in kermit, etc. Would people either be able to let me
  68080. >have a copy of a similar script, or point me in the proper direction
  68081. >when I can pick up some FREE information on how to write kermit scripts?
  68082. >
  68083. Why does it have to be free?
  68084.  
  68085. The Kermit effort is entirely self supporting, depending on income
  68086. from software distribution fees (dwindling in this era of burgeoning
  68087. Internet access) and book sales for its continued existence.
  68088.  
  68089. Since we have gone to the trouble of writing and publishing manuals that
  68090. document the script programming language clearly and with numerous examples,
  68091. why not simply "hit the books"?
  68092.  
  68093. - Frank
  68094.  
  68095. From news@columbia.edu Wed Dec 28 14:38:35 1994
  68096. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02945
  68097.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 28 Dec 1994 12:02:29 -0500
  68098. Received: by apakabar.cc.columbia.edu id AA18726
  68099.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 28 Dec 1994 12:02:28 -0500
  68100. Path: news.columbia.edu!panix!news.mathworks.com!uhog.mit.edu!europa.eng.gtefsd.com!howland.reston.ans.net!pipex!uunet!psinntp!kgb!kevin.barkes
  68101. From: kevin.barkes@kgb.com (Kevin Barkes)
  68102. Newsgroups: comp.protocols.kermit.misc
  68103. Subject: Re: Kermit / xyz modem sh
  68104. Date: Wed, 28 Dec 1994 14:38:35 GMT
  68105. Message-Id: <941228104235598@kgb.com>
  68106. Organization: Kevin G. Barkes Consulting Services (SYS$OUTPUT BBS 412-854-0511)
  68107. Distribution: world
  68108. Lines: 15   
  68109. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  68110.  
  68111. -> As Mark Twain said: there's lies, damned
  68112. -> lies, and statistics.
  68113.  
  68114.  
  68115. Actually, Benjamin Disraeli said that.
  68116.  
  68117. Regards,
  68118.  
  68119. KGB
  68120.  
  68121. * Kevin G. Barkes  *  Kevin G. Barkes Consulting Services  * kgb@kgb.com *
  68122. * SYS$OUTPUT BBS: 412-854-0511 * Voice: 412-854-2550 * Fax: 412-854-4707 *
  68123. *       1512 Annette Avenue . Library, Pennsylvania, USA 15129-9735      *
  68124. *                 OpenVMS Editor, DEC Professional Magazine              *
  68125. *          Member, Editorial Review Board, Digital Systems Journal       *
  68126.  
  68127. From news@columbia.edu Wed Dec 28 20:40:14 1994
  68128. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20435
  68129.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 28 Dec 1994 15:48:15 -0500
  68130. Received: by apakabar.cc.columbia.edu id AA01464
  68131.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 28 Dec 1994 15:48:13 -0500
  68132. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news.sprintlink.net!pipex!uunet!dgis.dtic.dla.mil!! ()
  68133. From: ()
  68134. Newsgroups: comp.protocols.kermit.misc
  68135. Subject: Binary Uploads going through a comm server
  68136. Date: 28 Dec 1994 20:40:14 GMT
  68137. Organization: Defense Technical Information Center (DTIC), Alexandria, VA
  68138. Lines: 13
  68139. Distribution: world
  68140. Message-Id: <3dsife$ekq@dgis.dtic.dla.mil>
  68141. Nntp-Posting-Host: sys_736.dtic.dla.mil
  68142. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  68143.  
  68144.   
  68145.  
  68146.   I cannot upload binary files through a Penril communications server using 4E 
  68147. C-Kermit.  The same  file can be uploaded when I use a port on the back of my 
  68148. SUN (SUN OS 4.1.3) machine directly -- but when I try to go through the comm 
  68149. server it does not work. Does anybody have any clues???? (file type is set for 
  68150. binary).
  68151.  
  68152.                                                                                 
  68153.           Martin B. Isaksen
  68154. misaksen@asc.dtic.dla.mil
  68155.  
  68156.  
  68157.  
  68158. From news@columbia.edu Wed Dec 28 21:00:14 1994
  68159. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21514
  68160.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 28 Dec 1994 16:00:17 -0500
  68161. Received: by apakabar.cc.columbia.edu id AA02154
  68162.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 28 Dec 1994 16:00:15 -0500
  68163. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  68164. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  68165. Newsgroups: comp.protocols.kermit.misc
  68166. Subject: Re: Binary Uploads going through a comm server
  68167. Date: 28 Dec 1994 21:00:14 GMT
  68168. Organization: Columbia University
  68169. Lines: 28
  68170. Message-Id: <3dsjku$238@apakabar.cc.columbia.edu>
  68171. References: <3dsife$ekq@dgis.dtic.dla.mil>
  68172. Nntp-Posting-Host: watsun.cc.columbia.edu
  68173. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  68174.  
  68175. In article <3dsife$ekq@dgis.dtic.dla.mil>, <Martin B. Isaksen> wrote:
  68176. >I cannot upload binary files through a Penril communications server using 4E 
  68177. >C-Kermit.  The same  file can be uploaded when I use a port on the back of my 
  68178. >SUN (SUN OS 4.1.3) machine directly -- but when I try to go through the comm 
  68179. >server it does not work. Does anybody have any clues???? (file type is set
  68180. >for binary).
  68181. >
  68182. It probably does not affect this problem, but the current version of C-Kermit
  68183. is 5A(190).
  68184.  
  68185. The most common reason for failed uploads is inadequate buffer capacity on the
  68186. receiving end, probably the Penril device in this case, coupled with the lack
  68187. of an effective means of flow control.
  68188.  
  68189. Solution: reconfigure the communications server to have big buffers in the
  68190. receiving direction as well as in the sending direction, and enable the
  68191. most effective possible means of flow control (preferably RTS/CTS) between
  68192. this device and the one it is most immediately connected to (presumably a
  68193. modem).  Same deal on the calling end.
  68194.  
  68195. If the Penril and/or modem are unfixable, then use end-to-end Xon/Xoff flow
  68196. control, which is less satisfactory as it is subject to latency and loss,
  68197. and reduce Kermit's packet size until transfers start to work.
  68198.  
  68199. If that's not it, then maybe we have a transparency problem, but let's try
  68200. this approach first.
  68201.  
  68202. - Frank
  68203.  
  68204. From news@columbia.edu Wed Dec 28 16:20:29 1994
  68205. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23121
  68206.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 28 Dec 1994 16:20:29 -0500
  68207. Received: by apakabar.cc.columbia.edu id AA03545
  68208.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 28 Dec 1994 16:20:27 -0500
  68209. Path: news.columbia.edu!panix!bloom-beacon.mit.edu!news2.near.net!info-server.bbn.com!news.bbn.com!clj
  68210. From: clj@bbn.com (Chris Jones)
  68211. Newsgroups: comp.protocols.kermit.misc
  68212. Subject: META key in MSKermit
  68213. Date: 28 Dec 94 16:14:03
  68214. Organization: Bolt, Beranek and Newman Inc.
  68215. Lines: 13
  68216. Distribution: world
  68217. Message-Id: <CLJ.94Dec28161403@unicorn.bbn.com>
  68218. Nntp-Posting-Host: unicorn.bbn.com
  68219. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  68220.  
  68221. I've been looking for an easy way to use my PC's ALT key as a Unix META key,
  68222. and I haven't found it.  I own, and have looked through, the MSDOS Kermit book,
  68223. as well as the documentation that I got from Columbia when I downloaded
  68224. MSKermit 3.13, but I haven't seen an easy way to accomplish what I want to do.
  68225.  
  68226. A META key is a shift key which sets the 8th bit of a character.  My fingers
  68227. are so trained by this time that trying to use Emacs without one is
  68228. frustrating.  I know how to tell Unix that my terminal has the capability, and
  68229. I can get Kermit to send 8 bit characters, but it looks like I'm going to have
  68230. to do 128 "set key"s to teach Kermit what I mean when I type ALT-anything.
  68231. Have I missed something, or is this the prescribed solution?
  68232.  
  68233.  
  68234.  
  68235. From news@columbia.edu Wed Dec 28 22:00:28 1994
  68236. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26203
  68237.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 28 Dec 1994 17:05:07 -0500
  68238. Received: by apakabar.cc.columbia.edu id AA06010
  68239.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 28 Dec 1994 17:05:05 -0500
  68240. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news.sprintlink.net!news.primenet.com!usenet
  68241. From: jbishop@primenet.com (Jeff Bishop)
  68242. Newsgroups: comp.protocols.kermit.misc
  68243. Subject: kerlite 3.14 beta 16 problem
  68244. Date: Wed, 28 Dec 1994 15:00:28 -0700
  68245. Organization: primenet, Tucson, AZ
  68246. Lines: 13
  68247. Message-Id: <y$T0luqcZZCS075yn@primenet.com>
  68248. Reply-To: jbishop@primenet.com
  68249. Nntp-Posting-Host: usr1.primenet.com
  68250. X-Newsreader: Yarn 0.75 with YES/286 v.0.12.B1225
  68251. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  68252.  
  68253. Hi fellow Kermitters,
  68254.  
  68255. I have a situation where both people are running kermit 3.14 beta 16. One
  68256. persion starts the transfer on his/her side and the other decides not to
  68257. transfer the file. A series of control-c's are sent with no prevail of
  68258. working at all <GRIN>. The person has to enter kermit and start receiving,
  68259. then cancel using C, why? Are we doing something wrong?
  68260.  
  68261. Now, ckermit 190 does cancel with a series of control-c's. Why is msdos
  68262. acting different, or should it not be???
  68263.  
  68264. Jeff
  68265.  
  68266.  
  68267. From news@columbia.edu Wed Dec 28 22:17:03 1994
  68268. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27430
  68269.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 28 Dec 1994 17:18:34 -0500
  68270. Received: by apakabar.cc.columbia.edu id AA06943
  68271.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 28 Dec 1994 17:18:32 -0500
  68272. Path: news.columbia.edu!sol.ctr.columbia.edu!usc!howland.reston.ans.net!news.sprintlink.net!pipex!uunet!svc.portal.com!shell.portal.com!news1.shell.portal.com!kshaw
  68273. From: kshaw@jobe.shell.portal.com (kendall thomason shaw)
  68274. Newsgroups: comp.protocols.kermit.misc
  68275. Subject: Increasing file transfer through put
  68276. Date: 28 Dec 1994 22:17:03 GMT
  68277. Organization: Incredible Employees Assoc.
  68278. Lines: 20
  68279. Distribution: world
  68280. Message-Id: <KSHAW.94Dec28221703@jobe.shell.portal.com>
  68281. Nntp-Posting-Host: jobe.shell.portal.com
  68282. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  68283.  
  68284.  
  68285. Hi,
  68286.     Transfering uncompressed text I get about 2800cps over my 14.4
  68287. modem.  Transferring zipped files I get about 1200cps. This seems to be
  68288. roughly the same for window sizes above 1000. At one point I thought
  68289. that there was some optimum window size and number. Now I'm not
  68290. sure. Why wouldn't 31 windows of 9024 bytes each be way over kill but
  68291. optimum in all cases? Is there a formula or a procedure for
  68292. determining this other than trial and error? Also is there a way to
  68293. take better advantage of V42 in my modem. Better in the sense of
  68294. increasing throughput of correct data. I'm basicly content but just
  68295. thought I'd ask. My computer is a 486-33 and I dial into a rather
  68296. speedy Sun4m architecture machine.
  68297.  
  68298. thanks
  68299. --
  68300.  
  68301. Kendall Shaw                        "!"
  68302. (415)364-1343                         -- me
  68303. kshaw@shell.portal.com              
  68304.  
  68305. From news@columbia.edu Thu Dec 29 00:05:53 1994
  68306. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06008
  68307.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 28 Dec 1994 19:05:56 -0500
  68308. Received: by apakabar.cc.columbia.edu id AA12003
  68309.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 28 Dec 1994 19:05:55 -0500
  68310. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  68311. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  68312. Newsgroups: comp.protocols.kermit.misc
  68313. Subject: Re: META key in MSKermit
  68314. Date: 29 Dec 1994 00:05:53 GMT
  68315. Organization: Columbia University
  68316. Lines: 27
  68317. Message-Id: <3dsuh1$bn1@apakabar.cc.columbia.edu>
  68318. References: <CLJ.94Dec28161403@unicorn.bbn.com>
  68319. Nntp-Posting-Host: watsun.cc.columbia.edu
  68320. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  68321.  
  68322. In article <CLJ.94Dec28161403@unicorn.bbn.com>,
  68323. Chris Jones <clj@bbn.com> wrote:
  68324.  
  68325. >I've been looking for an easy way to use my PC's ALT key as a Unix META key,
  68326. >and I haven't found it.  I own, and have looked through, the MSDOS Kermit
  68327. >book, as well as the documentation that I got from Columbia when I downloaded
  68328. >MSKermit 3.13, but I haven't seen an easy way to accomplish what I want to do.
  68329. >
  68330. >A META key is a shift key which sets the 8th bit of a character.  My fingers
  68331. >are so trained by this time that trying to use Emacs without one is
  68332. >frustrating.  I know how to tell Unix that my terminal has the capability, and
  68333. >I can get Kermit to send 8 bit characters, but it looks like I'm going to have
  68334. >to do 128 "set key"s to teach Kermit what I mean when I type ALT-anything.
  68335. >Have I missed something, or is this the prescribed solution?
  68336. >
  68337. I agree it would be nice to be able to assign arbitrary modifier functions
  68338. (like Meta) to arbitrary keys (like Alt), but MS-DOS Kermit presently lacks
  68339. this capability.
  68340.  
  68341. But no, you don't have to write 128 SET KEYs because we've already done it
  68342. for you in the EMACS.INI file that comes with version 3.14 of MS-DOS Kermit,
  68343. currently in Beta.
  68344.  
  68345. Anonymous ftp to kermit.columbia.edu, directory kermit/test/bin, binary mode,
  68346. file mstibm.zip.  Unzip with "-d" switch.  Look in KEYBOARD subdirectory.
  68347.  
  68348. - Frank
  68349.  
  68350. From news@columbia.edu Thu Dec 29 00:12:35 1994
  68351. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06466
  68352.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 28 Dec 1994 19:12:37 -0500
  68353. Received: by apakabar.cc.columbia.edu id AA12352
  68354.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 28 Dec 1994 19:12:36 -0500
  68355. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  68356. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  68357. Newsgroups: comp.protocols.kermit.misc
  68358. Subject: Re: kerlite 3.14 beta 16 problem
  68359. Date: 29 Dec 1994 00:12:35 GMT
  68360. Organization: Columbia University
  68361. Lines: 36
  68362. Message-Id: <3dsutj$c1u@apakabar.cc.columbia.edu>
  68363. References: <y$T0luqcZZCS075yn@primenet.com>
  68364. Nntp-Posting-Host: watsun.cc.columbia.edu
  68365. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  68366.  
  68367. In article <y$T0luqcZZCS075yn@primenet.com>,
  68368. Jeff Bishop <jbishop@primenet.com> wrote:
  68369. >I have a situation where both people are running kermit 3.14 beta 16. One
  68370. >persion starts the transfer on his/her side and the other decides not to
  68371. >transfer the file. A series of control-c's are sent with no prevail of
  68372. >working at all <GRIN>. The person has to enter kermit and start receiving,
  68373. >then cancel using C, why? Are we doing something wrong?
  68374. >
  68375. No.
  68376.  
  68377. >Now, ckermit 190 does cancel with a series of control-c's. Why is msdos
  68378. >acting different, or should it not be???
  68379. >
  68380. It isn't acting different.
  68381.  
  68382. A Kermit program can be in either "remote mode" or "local mode".  The Local
  68383. Kermit is the one that initiated the connection, and the remote one is
  68384. the "called" one.  The distinction is important because of what happens
  68385. with the keyboard and the screen during file transfer.  When in local mode,
  68386. a Kermit program has access to the keyboard and screen IN ADDITION TO the
  68387. communication channel, whereis in remote mode, the "keyboard and screen"
  68388. IS the communication channel.
  68389.  
  68390. When the remote Kermit is in packet mode, there needs to be a way for the
  68391. local user to get it back to command mode "by hand".  C-Kermit lets you
  68392. do this by typing three consecutive Ctrl-C characters, but only when it is
  68393. in remote mode.  If it is in local mode, then it has thrown a file transfer
  68394. display up on the screen and is sampling the keyboard for special commands.
  68395.  
  68396. Well, you get the idea.  In the case you describe, BOTH Kermit programs are
  68397. in local mode.  Neither one is in remote mode, and so neither one is
  68398. sensitive to "bare" Control-C characters.  Which is as it should be, since
  68399. oversensitivity in this area could cause unwanted transfer failures when
  68400. there was a lot of noise on the line, etc.
  68401.  
  68402. - Frank
  68403.  
  68404. From news@columbia.edu Thu Dec 29 00:26:37 1994
  68405. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07487
  68406.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 28 Dec 1994 19:26:40 -0500
  68407. Received: by apakabar.cc.columbia.edu id AA13171
  68408.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 28 Dec 1994 19:26:39 -0500
  68409. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  68410. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  68411. Newsgroups: comp.protocols.kermit.misc
  68412. Subject: Re: Increasing file transfer through put
  68413. Date: 29 Dec 1994 00:26:37 GMT
  68414. Organization: Columbia University
  68415. Lines: 66
  68416. Message-Id: <3dsvnt$crh@apakabar.cc.columbia.edu>
  68417. References: <KSHAW.94Dec28221703@jobe.shell.portal.com>
  68418. Nntp-Posting-Host: watsun.cc.columbia.edu
  68419. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  68420.  
  68421. In article <KSHAW.94Dec28221703@jobe.shell.portal.com>,
  68422. kendall thomason shaw <kshaw@jobe.shell.portal.com> wrote:
  68423. >Transfering uncompressed text I get about 2800cps over my 14.4
  68424. >modem.  Transferring zipped files I get about 1200cps. This seems to be
  68425. >roughly the same for window sizes above 1000. At one point I thought
  68426. >that there was some optimum window size and number.
  68427. >
  68428. If there was, we would make it the default for everybody.
  68429.  
  68430. >Now I'm not sure. Why wouldn't 31 windows of 9024 bytes each be way
  68431. >over kill but optimum in all cases?
  68432. >
  68433. Because this can cause buffer overflows, network packet loss, etc.
  68434.  
  68435.   EVERY CONNECTION IS DIFFERENT!
  68436.  
  68437. Even the same connection can be different from one moment to the next.
  68438.  
  68439. >Is there a formula or a procedure for determining this other than trial
  68440. >and error?
  68441. >
  68442. There is no formula.  Each connection, each kind of box, each piece of
  68443. wire, each kind of computer, each kind of modem, each operating system,
  68444. each version of each of the preceding, etc etc, has its own peculiar
  68445. characteristics.  Bigger is not always better -- the curve tends to be
  68446. bell-shaped, but on each connection the bell is a different shape.
  68447.  
  68448. The best way to get your throughput up is probably to crank the window
  68449. and packet sizes back down to conservative levels, say 4x1000 or so, and
  68450. then read about control-character unprefixing in the documentation for
  68451. the recent Kermit releases.  That should get your ZIP file transfers
  68452. over V.32bis/V.42/V.42bis connections up to about 1600 cps.
  68453.  
  68454. >Also is there a way to take better advantage of V42 in my modem. Better
  68455. >in the sense of increasing throughput of correct data.
  68456. >
  68457. V.42 is an error-correction protocol.  It has little direct bearing on
  68458. throughput -- you sort of have to view it as a block box.  Whatever
  68459. comes in one end is more-or-less-sort-of guaranteed to come out the
  68460. other end, but it might take longer than you expect (due to
  68461. retransmissions, retaining, etc, between the two modems).
  68462.  
  68463. You probably mean V.42bis, which is a data compression protocol that
  68464. rides over V.42 (or other reliable link layer).  You are wondering: If
  68465. my data file is already compressed, then aren't I making my modem work
  68466. harder -- and therefore slowing it down -- if I ask it to compress the
  68467. uncompressible?  The answer is yes, but probably not very much --
  68468. probably less than 1%.  Not enough to make it worth the time it takes
  68469. for you to turn the feature off and on.  Ditto for Kermit's own
  68470. compression.  Measurements show no significant difference in throughput
  68471. with these features turned on and turned off.
  68472.  
  68473. >I'm basicly content but just thought I'd ask. My computer is a 486-33
  68474. >and I dial into a rather speedy Sun4m architecture machine.
  68475. >
  68476. How?  Through a terminal server?  You also might need to take a look at
  68477. the terminal server's configuration.  Make sure it has bidirectional
  68478. RTS/CTS flow control enabled between itself and the modem.  Turn off its
  68479. Xon/Xoff flow control and all other kinds of per-character processing;
  68480. some terminal servers have a command for this, such as Cisco's "terminal
  68481. download".
  68482.  
  68483. By the same token, make sure you have RTS/CTS flow control enabled
  68484. between your PC and the modem is directly connected to.
  68485.  
  68486. - Frank
  68487.  
  68488. From news@columbia.edu Thu Dec 29 02:31:54 1994
  68489. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15586
  68490.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 28 Dec 1994 21:40:13 -0500
  68491. Received: by apakabar.cc.columbia.edu id AA19603
  68492.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 28 Dec 1994 21:40:12 -0500
  68493. Path: news.columbia.edu!sol.ctr.columbia.edu!news.moneng.mei.com!uwm.edu!cs.utexas.edu!news.sprintlink.net!news.primenet.com!usenet
  68494. From: jbishop@primenet.com (Jeff Bishop)
  68495. Newsgroups: comp.protocols.kermit.misc
  68496. Subject: Re: kerlite 3.14 beta 16 problem
  68497. Date: Wed, 28 Dec 1994 19:31:54 -0700
  68498. Organization: primenet, Tucson, AZ
  68499. Lines: 45
  68500. Message-Id: <Q-X0luqcZpAQ075yn@primenet.com>
  68501. References: <y$T0luqcZZCS075yn@primenet.com>
  68502.  <3dsutj$c1u@apakabar.cc.columbia.edu>
  68503. Reply-To: jbishop@primenet.com
  68504. Nntp-Posting-Host: usr2.primenet.com
  68505. X-Newsreader: Yarn 0.75 with YES/286 v.0.12.B1225
  68506. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  68507.  
  68508. In article <3dsutj$c1u@apakabar.cc.columbia.edu>,
  68509. fdc@watsun.cc.columbia.edu (Frank da Cruz) wrote:
  68510. > A Kermit program can be in either "remote mode" or "local mode".  The Local
  68511. > Kermit is the one that initiated the connection, and the remote one is
  68512. > the "called" one.
  68513.  
  68514. So let us assume you were on a bbs and initiated a kermit transfer. Which
  68515. would be the remote then?
  68516.  
  68517. >  The distinction is important because of what happens
  68518. > with the keyboard and the screen during file transfer.  When in local mode,
  68519. > a Kermit program has access to the keyboard and screen IN ADDITION TO the
  68520. > communication channel, whereis in remote mode, the "keyboard and screen"
  68521. > IS the communication channel.
  68522.  
  68523. OK, sounds fine. I can see how that would make much since, but then the user
  68524. can not cancel unless sitting at the hostterminal, right???
  68525.  
  68526. > When the remote Kermit is in packet mode, there needs to be a way for the
  68527. > local user to get it back to command mode "by hand".  C-Kermit lets you
  68528. > do this by typing three consecutive Ctrl-C characters, but only when it is
  68529. > in remote mode.  If it is in local mode, then it has thrown a file transfer
  68530. > display up on the screen and is sampling the keyboard for special commands.
  68531.  
  68532. Ok, how do you insure that the control-c's will work like c-kermit (remote
  68533. mode)?
  68534.  
  68535. > Well, you get the idea.  In the case you describe, BOTH Kermit programs are
  68536. > in local mode.  Neither one is in remote mode, and so neither one is
  68537. > sensitive to "bare" Control-C characters.  Which is as it should be, since
  68538. > oversensitivity in this area could cause unwanted transfer failures when
  68539. > there was a lot of noise on the line, etc.
  68540.  
  68541. Let us assume I was on a BBS and initiaed a download of a file using kermit
  68542. (all running msdos kermit, not ckermit). I just relized that I have the file
  68543. already and do not need to download the file. Now, how do I cancel the
  68544. sending end without loading kermit since kerlite is being used?
  68545.  
  68546. Sorry if this is not clear, just trying to understand so I can communicate
  68547. this to another person.
  68548.  
  68549. > - Frank
  68550.  
  68551. Jeff Bishop
  68552.  
  68553. From news@columbia.edu Wed Dec 28 14:35:56 1994
  68554. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19690
  68555.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 28 Dec 1994 22:49:32 -0500
  68556. Received: by apakabar.cc.columbia.edu id AA23054
  68557.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 28 Dec 1994 22:49:31 -0500
  68558. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  68559. From: jrd@cc.usu.edu (Joe Doupnik)
  68560. Newsgroups: comp.protocols.kermit.misc
  68561. Subject: Re: kerlite 3.14 beta 16 problem
  68562. Message-Id: <1994Dec28.203557.36129@cc.usu.edu>
  68563. Date: 28 Dec 94 20:35:56 MDT
  68564. References: <y$T0luqcZZCS075yn@primenet.com><3dsutj$c1u@apakabar.cc.columbia.edu> <Q-X0luqcZpAQ075yn@primenet.com>
  68565. Organization: Utah State University
  68566. Lines: 33
  68567. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  68568.  
  68569. In article <Q-X0luqcZpAQ075yn@primenet.com>, jbishop@primenet.com (Jeff Bishop) writes:
  68570. > In article <3dsutj$c1u@apakabar.cc.columbia.edu>,
  68571. > fdc@watsun.cc.columbia.edu (Frank da Cruz) wrote:
  68572. >> A Kermit program can be in either "remote mode" or "local mode".  The Local
  68573. >> Kermit is the one that initiated the connection, and the remote one is
  68574. >> the "called" one.
  68575. > So let us assume you were on a bbs and initiated a kermit transfer. Which
  68576. > would be the remote then?
  68577.     Your PC is in local mode. The BBS owner very definitely does NOT
  68578. want you to break protocol mode and change states to something unknown.
  68579.  
  68580. >>  The distinction is important because of what happens
  68581. >> with the keyboard and the screen during file transfer.  When in local mode,
  68582. >> a Kermit program has access to the keyboard and screen IN ADDITION TO the
  68583. >> communication channel, whereis in remote mode, the "keyboard and screen"
  68584. >> IS the communication channel 
  68585.     <uncluttering...>
  68586. > Let us assume I was on a BBS and initiaed a download of a file using kermit
  68587. > (all running msdos kermit, not ckermit). I just relized that I have the file
  68588. > already and do not need to download the file. Now, how do I cancel the
  68589. > sending end without loading kermit since kerlite is being used?
  68590. > Sorry if this is not clear, just trying to understand so I can communicate
  68591. > this to another person.
  68592.  
  68593.     Sure. READ THE SCREEN, if you are visually able to do so. Or get
  68594. a friend to speak it. On the status line of the MS-DOS Kermit file transfer
  68595. display screen, and discussed in the user's manual, is a legend explaining
  68596. which keys to press to do a formal (nice, clean) protocol termination of
  68597. just this file (X) or all files in this operation (Z) or stop the world
  68598. abruptly (C) or more gently (E). Try it. 
  68599.     Joe D. 
  68600.  
  68601. From news@columbia.edu Thu Dec 29 07:35:17 1994
  68602. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05715
  68603.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 29 Dec 1994 02:51:32 -0500
  68604. Received: by apakabar.cc.columbia.edu id AA03089
  68605.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 29 Dec 1994 02:51:31 -0500
  68606. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news.sprintlink.net!malgudi.oar.net!kira.cc.uakron.edu!neoucom.edu!news.ysu.edu!yfn.ysu.edu!am856
  68607. From: am856@yfn.ysu.edu (Michael DeCosta III)
  68608. Newsgroups: comp.protocols.kermit.misc
  68609. Subject: Commodore C128 and Kermit
  68610. Date: 29 Dec 1994 07:35:17 GMT
  68611. Organization: St. Elizabeth Hospital, Youngstown, OH
  68612. Lines: 8
  68613. Message-Id: <3dtorl$13f@news.ysu.edu>
  68614. Reply-To: am856@yfn.ysu.edu (Michael DeCosta III)
  68615. Nntp-Posting-Host: yfn2.ysu.edu
  68616. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  68617.  
  68618.  
  68619. I am interested in recommendations from C128 users as to which
  68620. version of Kermit they find best.
  68621.  
  68622. 1. CP/M Z80 Kermit
  68623. 2. C64 Kermit
  68624. 3. C128 Kermit
  68625. 4. CKermit (Yes there is UNIX for the C128)
  68626.  
  68627. From news@columbia.edu Thu Dec 29 12:53:21 1994
  68628. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21992
  68629.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 29 Dec 1994 08:03:11 -0500
  68630. Received: by apakabar.cc.columbia.edu id AA14055
  68631.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 29 Dec 1994 08:03:10 -0500
  68632. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!pipex!sunsite.doc.ic.ac.uk!nntp0.brunel.ac.uk!usenet
  68633. From: cspgrgr@brunel.ac.uk (R Ghosh-Roy)
  68634. Newsgroups: comp.protocols.kermit.misc
  68635. Subject: Kermit / SLIP / PPP
  68636. Date: 29 Dec 1994 12:53:21 GMT
  68637. Organization: Brunel University, Uxbridge, UK
  68638. Lines: 14
  68639. Distribution: world
  68640. Message-Id: <3dubg1$7gm@izar.brunel.ac.uk>
  68641. Reply-To: cspgrgr@brunel.ac.uk
  68642. Nntp-Posting-Host: saturn.brunel.ac.uk
  68643. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  68644.  
  68645.  
  68646. May be its a naive question but I would like to know which of the following three
  68647. is best for my PCs talking to a SUN?
  68648.  
  68649. 1. Kermit (whatever the latest version is)
  68650. 2. SLIP
  68651. 3. PPP
  68652. 4. other
  68653.  
  68654. Thanks,
  68655. Rana
  68656.  
  68657. PS: In future, I would also like to run X applications on my PC.
  68658.  
  68659.  
  68660. From news@columbia.edu Thu Dec 29 15:19:23 1994
  68661. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02267
  68662.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 29 Dec 1994 10:33:12 -0500
  68663. Received: by apakabar.cc.columbia.edu id AA04061
  68664.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 29 Dec 1994 10:33:11 -0500
  68665. Path: news.columbia.edu!sol.ctr.columbia.edu!newsxfer.itd.umich.edu!zip.eecs.umich.edu!umn.edu!lynx.unm.edu!news.cs.indiana.edu!mozo.cc.purdue.edu!vic.cc.purdue.edu!abe
  68666. From: abe@vic.cc.purdue.edu (Vic Abell)
  68667. Newsgroups: comp.protocols.kermit.misc
  68668. Subject: COM3/COM4
  68669. Date: 29 Dec 1994 15:19:23 GMT
  68670. Organization: Purdue University
  68671. Lines: 11
  68672. Message-Id: <3duk1r$j5a@mozo.cc.purdue.edu>
  68673. Nntp-Posting-Host: vic.cc.purdue.edu
  68674. Keywords: thanks
  68675. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  68676.  
  68677. I want to end 1994 by complimenting Frank da Cruze and Joe Doupnik
  68678. for the section on COM3/COM4 support in the MS-Kermit kermit.bwr
  68679. file.  It is the clearest, most cogent statement about an incredibly
  68680. difficult subject that I have yet encountered.  When I had the
  68681. occasion to add COM3/COM4 support to some software I freely distribute
  68682. (a blood glucose testing meter interface) I included kermit.bwr and
  68683. recommended that prospective COM3/COM4 users of my software read it.
  68684.  
  68685. Thanks, guys!
  68686.  
  68687. Vic Abell
  68688.  
  68689. From news@columbia.edu Fri Dec 30 19:16:03 1994
  68690. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25748
  68691.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Dec 1994 14:16:06 -0500
  68692. Received: by apakabar.cc.columbia.edu id AA15424
  68693.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Dec 1994 14:16:05 -0500
  68694. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  68695. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  68696. Newsgroups: comp.protocols.kermit.misc
  68697. Subject: MS-DOS Kermit 3.14 Beta-17 Ready for Testing
  68698. Date: 30 Dec 1994 19:16:03 GMT
  68699. Organization: Columbia University
  68700. Lines: 33
  68701. Message-Id: <3e1m9j$f1q@apakabar.cc.columbia.edu>
  68702. Nntp-Posting-Host: watsun.cc.columbia.edu
  68703. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  68704.  
  68705.  
  68706. MS-DOS Kermit 3.14 Beta-17 is available for anonymous ftp from
  68707. kermit.columbia.edu as of Fri Dec 30, 1994, 16:20 Eastern USA time:
  68708.  
  68709.   kermit/test/bin/mstibm.zip  - Binary ZIP file
  68710.   kermit/test/text/mstibm.uue - Uuencoded ZIP file
  68711.   kermit/test/text/mstibm.boo - BOO-encoded ZIP file
  68712.  
  68713. The UUE and BOO files are also available on BITNET from KERMSRV at CUVMA.
  68714.  
  68715. Changes and fixes since Beta-16 include:
  68716.  
  68717.  . Fix command-line "-f filename" and related items.
  68718.  
  68719.  . More refinements to TCP/IP internals to better balance performance
  68720.    against impact on network, and to improve performance of SLIP and
  68721.    long-haul TCP/IP connections.
  68722.  
  68723.  . Allow passing of null strings to macros as {}.
  68724.  
  68725.  . Add Microcom QX/4232hs dialing script from Kevin Brott.
  68726.  
  68727.  . Fix \v(cps) to be usable as a variable in commands.
  68728.  
  68729.  . Add CPxxx.F08 fonts for use with longer screens.
  68730.  
  68731.  . Fix Hankaku-Katakana input (needed for Nikkei Telecom database).
  68732.  
  68733.  . Add documentation for Chinese to KERMIT.UPD.
  68734.  
  68735. Please continue to send reports by e-mail to kermit@columbia.edu.
  68736.  
  68737. - Frank
  68738.  
  68739. From news@columbia.edu Fri Dec 30 21:33:19 1994
  68740. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04872
  68741.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Dec 1994 16:33:29 -0500
  68742. Received: by apakabar.cc.columbia.edu id AA22546
  68743.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Dec 1994 16:33:28 -0500
  68744. Path: news.columbia.edu!panix!bloom-beacon.mit.edu!gatech!swiss.ans.net!solaris.cc.vt.edu!news.alpha.net!pacifier!pacifier!not-for-mail
  68745. From: mikef@pacifier.com (Mike Freeman)
  68746. Newsgroups: comp.protocols.kermit.misc
  68747. Subject: Re: kerlite 3.14 beta 16 problem
  68748. Date: 30 Dec 1994 13:33:19 -0800
  68749. Organization: none
  68750. Lines: 16
  68751. Message-Id: <3e1ub0$92h@pacifier.com>
  68752. References: <y$T0luqcZZCS075yn@primenet.com> <3dsutj$c1u@apakabar.cc.columbia.edu> <Q-X0luqcZpAQ075yn@primenet.com>
  68753. Nntp-Posting-Host: pacifier.com
  68754. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  68755.  
  68756. In article <Q-X0luqcZpAQ075yn@primenet.com>,
  68757. Jeff Bishop <jbishop@primenet.com> wrote:
  68758. >
  68759. >sending end without loading kermit since kerlite is being used?
  68760. >
  68761.  
  68762.  
  68763. Uh, what's "Kerlite"?
  68764.  
  68765.  
  68766.  
  68767.  
  68768. -- 
  68769. Mike Freeman            |       Internet: mikef@pacifier.com
  68770. GEnie: M.FREEMAN11      |       Amateur Radio Callsign: K7UIJ
  68771. ... Virtue is its own punishment.
  68772.  
  68773. From news@columbia.edu Sat Dec 31 04:30:47 1994
  68774. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01062
  68775.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Dec 1994 23:41:06 -0500
  68776. Received: by apakabar.cc.columbia.edu id AA14263
  68777.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Dec 1994 23:41:05 -0500
  68778. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news.sprintlink.net!malgudi.oar.net!infinet!mfoley
  68779. From: mfoley@infinet.com (Mark Foley)
  68780. Newsgroups: comp.protocols.kermit.misc
  68781. Subject: CARRIER PROBLEM ON CKERMIT OS/2
  68782. Date: 31 Dec 1994 04:30:47 GMT
  68783. Organization: InfiNet - Internet Access (614/224-3410)
  68784. Lines: 24
  68785. Message-Id: <3e2mpn$c1o@rigel.infinet.com>
  68786. Nntp-Posting-Host: rigel.infinet.com
  68787. X-Newsreader: TIN [version 1.2 PL2]
  68788. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  68789.  
  68790. I have been using KERMIT for years and years and am a fan.  I have
  68791. bought the book and everything (I don't have it now though).  Anyway the
  68792. minor problem I have is this: I have been using c-kermit 5A(189) for
  68793. OS/2 for quite awhile now.  Appearently, the modem I was using raised
  68794. the carrier signal because it worked just fine.  I just bought a new US
  68795. Robotics 14400 external modem today and hooked it up to my OS/2 machine. 
  68796. Now, when I attempt to connect, I get a message "No Carrier" (or
  68797. something to that effect), and I can't connect to the modem.  I have
  68798. done 'set ?' and various other commands looking for a fix - 'set carrier
  68799. on' doesn't do it. 
  68800.  
  68801. I know I can just flip the modem dip switch to make carrier always on,
  68802. but this seems wrong. I have extensive experience in RS-232
  68803. communications and carrier is, in fact, suppose to be related to the
  68804. actual carrier signal between the connected modems. Why is kermit
  68805. looking for carrier before I've even dialed? Doesn't make sense! If
  68806. kermit wants to look for the presence of a DCE device, it should look at
  68807. Data Set Ready (DSR), not a signal which shouldn't be present until
  68808. connection. Any comments from anyone?
  68809.  
  68810. BTW - I am sending this message by flipping to a DOS window and dialing
  68811. out using MSKERMIT 3.01. This kermit doesn't get hung up on carrier :-)
  68812. (excuse the pun).
  68813.  
  68814.  
  68815. From news@columbia.edu Sat Dec 31 13:47:59 1994
  68816. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03923
  68817.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 31 Dec 1994 09:01:43 -0500
  68818. Received: by apakabar.cc.columbia.edu id AA17156
  68819.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 31 Dec 1994 09:01:42 -0500
  68820. Path: news.columbia.edu!panix!cmcl2!cmcl2.nyu.edu!oconnort
  68821. From: oconnort@acf2.nyu.edu (Tim O'Connor)
  68822. Newsgroups: comp.protocols.kermit.misc
  68823. Subject: Re: CARRIER PROBLEM ON CKERMIT OS/2
  68824. Date: 31 Dec 1994 13:47:59 GMT
  68825. Organization: New York University
  68826. Lines: 10
  68827. Message-Id: <3e3nef$ld2@cmcl2.NYU.EDU>
  68828. References: <3e2mpn$c1o@rigel.infinet.com>
  68829. Nntp-Posting-Host: acf2.nyu.edu
  68830. X-Newsreader: TIN [version 1.2 PL2]
  68831. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  68832.  
  68833. Mark Foley (mfoley@infinet.com) wrote:
  68834.  
  68835. > Now, when I attempt to connect, I get a message "No Carrier" (or
  68836. > something to that effect), and I can't connect to the modem.  
  68837.  
  68838. Try "set carrier off" in your ckermod.ini file, in the OS/2 section.
  68839. Worked great for me!
  68840.  
  68841. --tim o'connor
  68842.  
  68843.  
  68844. From news@columbia.edu Sat Dec 31 14:26:58 1994
  68845. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05257
  68846.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 31 Dec 1994 09:27:14 -0500
  68847. Received: by apakabar.cc.columbia.edu id AA18244
  68848.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 31 Dec 1994 09:27:13 -0500
  68849. Path: news.columbia.edu!sol.ctr.columbia.edu!math.ohio-state.edu!jussieu.fr!pasteur.fr!pasteur.fr!not-for-mail
  68850. From: dan@pasteur.fr (Daniel Azuelos)
  68851. Newsgroups: comp.protocols.kermit.misc
  68852. Subject: Where's the last version ?
  68853. Date: 31 Dec 1994 15:26:58 +0100
  68854. Organization: Institut Pasteur, Paris, France
  68855. Lines: 8
  68856. Message-Id: <3e3pniINNped@mendel.sis.pasteur.fr>
  68857. Nntp-Posting-Host: mendel.sis.pasteur.fr
  68858. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  68859.  
  68860. Please, where's the last working version of Kermit for Mac ?
  68861. I gave a look at a lot of README files on columbia.edu and they
  68862. are all talking of Mac version but apparently none is anymore
  68863. available there.
  68864.  
  68865. Thank you for your help.
  68866. -- 
  68867. dan                 ``Et pourtant ga tourne....''
  68868.  
  68869. From news@columbia.edu Sat Dec 31 08:46:06 1994
  68870. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24770
  68871.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 31 Dec 1994 15:07:39 -0500
  68872. Received: by apakabar.cc.columbia.edu id AA02789
  68873.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 31 Dec 1994 15:07:38 -0500
  68874. Path: news.columbia.edu!panix!bloom-beacon.mit.edu!news.starnet.net!wupost!psuvax1!news.pop.psu.edu!news.cac.psu.edu!psuvm!hdk
  68875. Organization: Penn State University
  68876. Date: Sat, 31 Dec 1994 13:46:06 EST
  68877. From: H. D. Knoble <HDK@psuvm.psu.edu>
  68878. Message-Id: <94365.134606HDK@psuvm.psu.edu>
  68879. Newsgroups: comp.protocols.kermit.misc
  68880. Subject: MS-Kermit 3.14 Beta 15 thru 17
  68881. Lines: 20
  68882. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  68883.  
  68884. After installing the mstibm.zip file to a DOS subdirectory (and children
  68885. subdirectories), changing to that subdirectory, and issuing: KERMIT
  68886. the following displays (questionable message underlined below; this happens
  68887.                                              ----------
  68888. for all three MS-Kermit .exe files, and the MSR314 PATCH files, while having
  68889. only comments in them, do not seem to have a "version mismatch"):
  68890.  
  68891. IBM-PC MS-DOS Kermit: 3.14/Beta-17 29 Dec 1994
  68892. Copyright (C) Trustees of Columbia University 1982, 1994.
  68893. Type ? or HELP for help
  68894. Executing D:\NEWKERM\MSKERMIT.INI...
  68895. Installing patches...
  68896.  
  68897. Ignoring patch file. Version number mismatch.
  68898. ---------------------------------------------
  68899.  
  68900. This is a dummy patch file for use only with the beta test
  68901. MS-DOS Kermit 3.14 Initialization File...
  68902. Executing SAMPLE MS-DOS Kermit customization file, D:\NEWKERM\MSCUSTOM.INI...
  68903. ...
  68904.  
  68905. From news@columbia.edu Sat Dec 31 09:10:33 1994
  68906. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02835
  68907.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 31 Dec 1994 17:25:10 -0500
  68908. Received: by apakabar.cc.columbia.edu id AA08801
  68909.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 31 Dec 1994 17:25:09 -0500
  68910. Path: news.columbia.edu!panix!bloom-beacon.mit.edu!usc!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  68911. From: jrd@cc.usu.edu (Joe Doupnik)
  68912. Newsgroups: comp.protocols.kermit.misc
  68913. Subject: Re: MS-Kermit 3.14 Beta 15 thru 17
  68914. Message-Id: <1994Dec31.151033.36262@cc.usu.edu>
  68915. Date: 31 Dec 94 15:10:33 MDT
  68916. References: <94365.134606HDK@psuvm.psu.edu>
  68917. Organization: Utah State University
  68918. Lines: 25
  68919. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  68920.  
  68921. In article <94365.134606HDK@psuvm.psu.edu>, H. D. Knoble <HDK@psuvm.psu.edu> writes:
  68922. > After installing the mstibm.zip file to a DOS subdirectory (and children
  68923. > subdirectories), changing to that subdirectory, and issuing: KERMIT
  68924. > the following displays (questionable message underlined below; this happens
  68925. >                                              ----------
  68926. > for all three MS-Kermit .exe files, and the MSR314 PATCH files, while having
  68927. > only comments in them, do not seem to have a "version mismatch"):
  68928. > IBM-PC MS-DOS Kermit: 3.14/Beta-17 29 Dec 1994
  68929. > Copyright (C) Trustees of Columbia University 1982, 1994.
  68930. > Type ? or HELP for help
  68931. > Executing D:\NEWKERM\MSKERMIT.INI...
  68932. > Installing patches...
  68933. > Ignoring patch file. Version number mismatch.
  68934. > ---------------------------------------------
  68935. > This is a dummy patch file for use only with the beta test
  68936. > MS-DOS Kermit 3.14 Initialization File...
  68937. > Executing SAMPLE MS-DOS Kermit customization file, D:\NEWKERM\MSCUSTOM.INI...
  68938. -------------
  68939.     Just ignore the message. Betas change, preparing a legit Patch file
  68940. is a lot of work, specific to that particular .exe file, and I'd rather
  68941. spend time on other matters until we release the product.
  68942.     Joe D.
  68943.  
  68944. From news@columbia.edu Sun Jan  1 01:46:42 1995
  68945. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14380
  68946.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 31 Dec 1994 20:45:43 -0500
  68947. Received: by apakabar.cc.columbia.edu id AA17398
  68948.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 31 Dec 1994 20:45:42 -0500
  68949. Path: news.columbia.edu!panix!bloom-beacon.mit.edu!gatech!swrinde!ihnp4.ucsd.edu!library.ucla.edu!psgrain!charnel.ecst.csuchico.edu!csusac!taylorj
  68950. From: taylorj@ecs.ecs.csus.edu (Jon M. Taylor)
  68951. Newsgroups: comp.protocols.kermit.misc
  68952. Subject: File transfers are too slow
  68953. Date: 1 Jan 1995 01:46:42 GMT
  68954. Organization: California State University, Sacramento
  68955. Lines: 59
  68956. Message-Id: <3e51i2$jka@csusac.ecs.csus.edu>
  68957. Nntp-Posting-Host: gaia.ecs.csus.edu
  68958. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  68959.  
  68960.  
  68961.     I know this is a FAQ, but I've already read the FAQ, all the help 
  68962. files, and played around a lot and I still have speed problems. Soooo....
  68963.  
  68964.     Situation:  I am connecting from my home computer (486/33, 
  68965. v.32bis modem, latest beta DOS kermit 3.14) to the university computer 
  68966. (HP 9000/715, OS 9.x)  Via a Xyplex terminal server that is set to 
  68967. swallow XON/XOFF chars and cannot |-< be changed (idiot admins...).  
  68968. This, BTW, is why I *HAVE* to use Kermit.  I used to be able to change 
  68969. the XON/XOFF passthru, but I now cannot and as a result Zmodem just 
  68970. refuses to work at all.  Yaaay Kermit!  I switched out of desperation, 
  68971. but I am now a convert.
  68972.     Anyway, I have compiled 5A(190) for HPUX, and it seems to work
  68973. correctly (so far, anyway).  I get maximal throughput with packet length
  68974. set to 2000 (more works OK, but doesn't seem to make a difference in
  68975. throughtput), all the control characters from the FAST macro enabled, and
  68976. windows set to 1.  My modem DTR is locked at 38400, compression and error
  68977. correction enabled, and it connects to the Xyplex at 14.4k with
  68978. compression and EC on.  With this setup, I get ~1150 CPS. 
  68979.     Here's the rub:  Things start breaking down with any other window
  68980. setting than 1.  The symptoms are: About 5 or so (it varies a bit) blocks
  68981. will transfer OK, during which the window setting stays at "1 of
  68982. [maxwin]".  Then, the transfer will halt temporarily (but no retries
  68983. occur), and then the next block will transfer at half the original cps and
  68984. one more window.  Halt, transfer one more block at half the cps and one
  68985. more window, and repeat until max windows are reached, at which point the
  68986. number of windows returns to 1, the cps maxes out again, and we repeat the
  68987. whole cycle.  With max windows set to 2, this cycles often, with 32 the
  68988. cps drops to about 16(!!!) at about 10 windows and stays there until 32,
  68989. when it cycles back to one again.
  68990.  
  68991.     Some other misc. info:
  68992.  
  68993. - stty shows 9600; I changed it to 19200 with indeterminate results.  The 
  68994. Xyplex DTR is set to 19200, I think.
  68995.  
  68996. - c-kermit on the HP initially uses XON/XOFF.  I'm not sure whether to 
  68997. change this or not - would the Xyplex need it?  I *think* the xyplex uses 
  68998. XON/XOFF to talk to the HP and DSR/DTR to talk to my modem....
  68999.  
  69000. - I use doublespace with a large disk cache.
  69001.  
  69002.     Also, while I'm here, I want to say thanks to Joe Doupnik (I used
  69003. to go to school at USU!) and Frank da Cruz for MS-Kermit and C-Kermit. 
  69004. NOTHING but Kermit will work over this damn Xyplex, and I'm really glad
  69005. it's out there.  A couple suggestions:  Have the percentage efficiency and
  69006. CPS rating be updated in realtime during the transfer, like most other
  69007. common protocols do.  I currently have to stop the transfer to see these. 
  69008. Given that most folx need to play with the settings, this would be a nice
  69009. touch.  Also, since you seem to be aiming for maximum configurablility, 
  69010. how about an option to completely turn off ALL error checking in the 
  69011. protocol (like Ymodem-G)?  It would add another little speed boost to 
  69012. those who have EC modems.
  69013.     I'll live with ~1150 cps if I *have* to, but I see no reason why 
  69014. I couldn't come close to 1600, *if* Windows worked.  Any help is appreciated.
  69015.  
  69016.     -Jon
  69017.     
  69018.  
  69019.  
  69020. From news@columbia.edu Sun Jan  1 03:22:16 1995
  69021. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20788
  69022.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 31 Dec 1994 22:34:47 -0500
  69023. Received: by apakabar.cc.columbia.edu id AA22590
  69024.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 31 Dec 1994 22:34:47 -0500
  69025. Newsgroups: comp.protocols.kermit.misc
  69026. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!agate!library.ucla.edu!psgrain!charnel.ecst.csuchico.edu!csusac!csus.edu!netcom.com!wpfulmor
  69027. From: wpfulmor@netcom.com (william p fulmor)
  69028. Subject: Kermit & the strange DOS machine
  69029. Message-Id: <wpfulmorD1pIp4.Aon@netcom.com>
  69030. Organization: NETCOM On-line Communication Services (408 261-4700 guest)
  69031. X-Newsreader: TIN [version 1.2 PL1]
  69032. Date: Sun, 1 Jan 1995 03:22:16 GMT
  69033. Lines: 42
  69034. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  69035.  
  69036. I have a single board 8 mhz 8088 MSDOS computer which is an expansion 
  69037. board to a unix based computer.  COM1 is irrevocably tied to a 
  69038. non-standard on-board-modem.  COM2 is said to be a standard PC serial 
  69039. port, which *was* driven by an NS 8250.   COM2 is *now* driven by an NS 
  69040. 16550.   \|^)
  69041.  
  69042. After starting Kermit (3.13 patch 20) in the usual fashion, if I 'set port 2'
  69043. Kermit finds and acknowleges the existance of the 16550 in response to
  69044. either 'sho comm' or 'sho mod'.  If I start Kermit with 'set port 2' in
  69045. the command line, it does *not* acknowlege the existance of the 16550.  I 
  69046. don't know if Kermit finds the 16550 under that circumstance (I have 
  69047. commented out 'set port 1' in mscustom.ini).
  69048.  
  69049. If I 'dial nnnnnnn', Kermit initializes the modem (Dataport 14400) at
  69050. 57600, dials the number and connects at 14400.  With very little tuning, I
  69051. transferred a text file at 2600~2700cps apparently error free from the
  69052. remote Kermit 5A(189) putting out allegedly at 38400. 
  69053.  
  69054. So why am I using this bandwidth?
  69055.  
  69056. 1. Kermit takes 13 minutes from pressing <return> following the dial 
  69057. command to actually dialing the number.  It frequently takes so long to 
  69058. return to the prompt after connection is made that the connection drops 
  69059. before I can get the remote's attention.  "output atdtnnnnnnn\13' is a 
  69060. crude work-around.
  69061.  
  69062. 2. Escaping from connect to local is prompt, but connecting back to 
  69063. remote takes a *long* time.
  69064.  
  69065. 3. In interactive operation as a vt100 and with 'set flo rts/cts' a 
  69066. very few characters are dropped, not enough to cause problems - but - The 
  69067. screen is written only a few lines at a time with long pauses in 
  69068. between.  I suspect the remote gets bored with the constant hardware halts & 
  69069. looses interest.  If I 'set flo none' the screen is uninteligible.  
  69070.  
  69071. I suspect that this behavior is caused by Kermit's finding the 
  69072. non-standard modem at COM1 and using BIOS thereafter.  Can anyone verify 
  69073. my suspicions?  Is there a way to fool Kermit or to cause it to find COM2 
  69074. only?  Do any other non-standard hardware features cause Kermit to slow 
  69075. down in this fashion?
  69076.  
  69077. Thanks for your help.
  69078.  
  69079. From news@columbia.edu Sat Dec 31 14:22:38 1994
  69080. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22473
  69081.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 31 Dec 1994 23:03:00 -0500
  69082. Received: by apakabar.cc.columbia.edu id AA23691
  69083.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 31 Dec 1994 23:02:59 -0500
  69084. Path: news.columbia.edu!panix!bloom-beacon.mit.edu!gatech!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  69085. From: jrd@cc.usu.edu (Joe Doupnik)
  69086. Newsgroups: comp.protocols.kermit.misc
  69087. Subject: Re: File transfers are too slow
  69088. Message-Id: <1994Dec31.202238.36269@cc.usu.edu>
  69089. Date: 31 Dec 94 20:22:38 MDT
  69090. References: <3e51i2$jka@csusac.ecs.csus.edu>
  69091. Organization: Utah State University
  69092. Lines: 86
  69093. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  69094.  
  69095. In article <3e51i2$jka@csusac.ecs.csus.edu>, taylorj@ecs.ecs.csus.edu (Jon M. Taylor) writes:
  69096. >     I know this is a FAQ, but I've already read the FAQ, all the help 
  69097. > files, and played around a lot and I still have speed problems. Soooo....
  69098. >     Situation:  I am connecting from my home computer (486/33, 
  69099. > v.32bis modem, latest beta DOS kermit 3.14) to the university computer 
  69100. > (HP 9000/715, OS 9.x)  Via a Xyplex terminal server that is set to 
  69101. > swallow XON/XOFF chars and cannot |-< be changed (idiot admins...).  
  69102. > This, BTW, is why I *HAVE* to use Kermit.  I used to be able to change 
  69103. > the XON/XOFF passthru, but I now cannot and as a result Zmodem just 
  69104. > refuses to work at all.  Yaaay Kermit!  I switched out of desperation, 
  69105. > but I am now a convert.
  69106. >     Anyway, I have compiled 5A(190) for HPUX, and it seems to work
  69107. > correctly (so far, anyway).  I get maximal throughput with packet length
  69108. > set to 2000 (more works OK, but doesn't seem to make a difference in
  69109. > throughtput), all the control characters from the FAST macro enabled, and
  69110. > windows set to 1.  My modem DTR is locked at 38400, compression and error
  69111. > correction enabled, and it connects to the Xyplex at 14.4k with
  69112. > compression and EC on.  With this setup, I get ~1150 CPS. 
  69113. >     Here's the rub:  Things start breaking down with any other window
  69114. > setting than 1.  The symptoms are: About 5 or so (it varies a bit) blocks
  69115. > will transfer OK, during which the window setting stays at "1 of
  69116. > [maxwin]".  Then, the transfer will halt temporarily (but no retries
  69117. > occur), and then the next block will transfer at half the original cps and
  69118. > one more window.  Halt, transfer one more block at half the cps and one
  69119. > more window, and repeat until max windows are reached, at which point the
  69120. > number of windows returns to 1, the cps maxes out again, and we repeat the
  69121. > whole cycle.  With max windows set to 2, this cycles often, with 32 the
  69122. > cps drops to about 16(!!!) at about 10 windows and stays there until 32,
  69123. > when it cycles back to one again.
  69124. >     Some other misc. info:
  69125. > - stty shows 9600; I changed it to 19200 with indeterminate results.  The 
  69126. > Xyplex DTR is set to 19200, I think.
  69127. > - c-kermit on the HP initially uses XON/XOFF.  I'm not sure whether to 
  69128. > change this or not - would the Xyplex need it?  I *think* the xyplex uses 
  69129. > XON/XOFF to talk to the HP and DSR/DTR to talk to my modem....
  69130. > - I use doublespace with a large disk cache.
  69131. >     Also, while I'm here, I want to say thanks to Joe Doupnik (I used
  69132. > to go to school at USU!) and Frank da Cruz for MS-Kermit and C-Kermit. 
  69133. > NOTHING but Kermit will work over this damn Xyplex, and I'm really glad
  69134. > it's out there.  A couple suggestions:  Have the percentage efficiency and
  69135. > CPS rating be updated in realtime during the transfer, like most other
  69136. > common protocols do.  I currently have to stop the transfer to see these. 
  69137. > Given that most folx need to play with the settings, this would be a nice
  69138. > touch.  Also, since you seem to be aiming for maximum configurablility, 
  69139. > how about an option to completely turn off ALL error checking in the 
  69140. > protocol (like Ymodem-G)?  It would add another little speed boost to 
  69141. > those who have EC modems.
  69142. >     I'll live with ~1150 cps if I *have* to, but I see no reason why 
  69143. > I couldn't come close to 1600, *if* Windows worked.  Any help is appreciated.
  69144. >     -Jon
  69145. -----------------
  69146.     You have two knobs to twist: "how much/packet length" and "time/window
  69147. slots". Window slots cover up for delays of transmission and analysis time,
  69148. by allowing the transmitter to continue sending before the receiver's ACKs 
  69149. arrive. Simply lengthening packets tries to cover up trasmission delays and
  69150. analysis time by having fewer intervals between packets, and of course fewer 
  69151. header bytes to be exchanged too. But longer packets mean real buffering 
  69152. problems along the route, as you seem to have discovered.
  69153.     I suggest backing down some. Use smaller packets and at least two
  69154. window slots. The product can be a few K bytes or less, depending on your
  69155. particular site. Then that nasty flow control problem needs some probing,
  69156. if possible.
  69157.  
  69158.     Your suggestions. Per packet window decorations cost performance,
  69159. and "efficiency" figures apply only to serial port comms (and not very
  69160. well to them these days with higher speeds on the DTE-DCE path than on the
  69161. telco wires). We won't even consider turning off error detection: not only
  69162. are modems not always error correcting, and never perfectly so even then,
  69163. but there are a host of other causes of trouble, and you are assuming that
  69164. checking is a serious performance penalty. Y-modem is hardly a protocol at 
  69165. all: it's a send & pray scheme. 
  69166.     Speaking in harsh terms it is my feeling that secure file transfers 
  69167. are more important by far than either visual entertainment or games about the
  69168. last bit/second; after all, within reason what is being transfered ought to be
  69169. more important than the act of transferral.
  69170.  
  69171.     I hope you can sort out that horrid Xyplex terminal server problem.
  69172.     Joe D.
  69173.  
  69174. From news@columbia.edu Sun Jan  1 07:04:59 1995
  69175. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18395
  69176.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 1 Jan 1995 15:25:00 -0500
  69177. Received: by apakabar.cc.columbia.edu id AA13451
  69178.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 1 Jan 1995 15:24:59 -0500
  69179. Path: news.columbia.edu!panix!news.mathworks.com!news2.near.net!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  69180. From: jrd@cc.usu.edu (Joe Doupnik)
  69181. Newsgroups: comp.protocols.kermit.misc
  69182. Subject: Re: Kermit & the strange DOS machine
  69183. Message-Id: <1995Jan1.130459.36285@cc.usu.edu>
  69184. Date: 1 Jan 95 13:04:59 MDT
  69185. References: <wpfulmorD1pIp4.Aon@netcom.com>
  69186. Organization: Utah State University
  69187. Lines: 65
  69188. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  69189.  
  69190. In article <wpfulmorD1pIp4.Aon@netcom.com>, wpfulmor@netcom.com (william p fulmor) writes:
  69191. > I have a single board 8 mhz 8088 MSDOS computer which is an expansion 
  69192. > board to a unix based computer.  COM1 is irrevocably tied to a 
  69193. > non-standard on-board-modem.  COM2 is said to be a standard PC serial 
  69194. > port, which *was* driven by an NS 8250.   COM2 is *now* driven by an NS 
  69195. > 16550.   \|^)
  69196. > After starting Kermit (3.13 patch 20) in the usual fashion, if I 'set port 2'
  69197. > Kermit finds and acknowleges the existance of the 16550 in response to
  69198. > either 'sho comm' or 'sho mod'.  If I start Kermit with 'set port 2' in
  69199. > the command line, it does *not* acknowlege the existance of the 16550.  I 
  69200. > don't know if Kermit finds the 16550 under that circumstance (I have 
  69201. > commented out 'set port 1' in mscustom.ini).
  69202. > If I 'dial nnnnnnn', Kermit initializes the modem (Dataport 14400) at
  69203. > 57600, dials the number and connects at 14400.  With very little tuning, I
  69204. > transferred a text file at 2600~2700cps apparently error free from the
  69205. > remote Kermit 5A(189) putting out allegedly at 38400. 
  69206. > So why am I using this bandwidth?
  69207.  
  69208.     I don't quite understand this last question. Your telco line is 
  69209. limited to 14,400 bps plus whatever compression can do (in Kermit, in the
  69210. modem). 2600 cps is about 26,000 bps equivalent and that implies a
  69211. compression of 2:1 (rather better than average).
  69212.  
  69213. > 1. Kermit takes 13 minutes from pressing <return> following the dial 
  69214. > command to actually dialing the number.  It frequently takes so long to 
  69215. > return to the prompt after connection is made that the connection drops 
  69216. > before I can get the remote's attention.  "output atdtnnnnnnn\13' is a 
  69217. > crude work-around.
  69218.  
  69219.     That's a sure sign of hardware troubles (interrupts are lost, 
  69220. horribly for example).
  69221.  
  69222. > 2. Escaping from connect to local is prompt, but connecting back to 
  69223. > remote takes a *long* time.
  69224.     Ditto.
  69225.  
  69226. > 3. In interactive operation as a vt100 and with 'set flo rts/cts' a 
  69227. > very few characters are dropped, not enough to cause problems - but - The 
  69228. > screen is written only a few lines at a time with long pauses in 
  69229. > between.  I suspect the remote gets bored with the constant hardware halts & 
  69230. > looses interest.  If I 'set flo none' the screen is uninteligible.  
  69231.  
  69232.     Flow control is the likely suspect and the other end thinks
  69233. you have stopped the flow. Again, serious hardware problems can mess up
  69234. serial port handshaking.
  69235.  
  69236. > I suspect that this behavior is caused by Kermit's finding the 
  69237. > non-standard modem at COM1 and using BIOS thereafter.  Can anyone verify 
  69238. > my suspicions?  Is there a way to fool Kermit or to cause it to find COM2 
  69239. > only?  Do any other non-standard hardware features cause Kermit to slow 
  69240. > down in this fashion?
  69241.  
  69242.     Kermit will tell your about BIOSn. Just use SHOW COM to see it.
  69243. SET PORT COM2 tells Kermit to use that port, and be sure there are no
  69244. port-sensing commands before it (SHOW COM is a sensing command) so that
  69245. the default COM1 is not touched by them. Try placing SET PORT COM2 near
  69246. the top of file mskermit.ini to ensure that's the default port when the
  69247. scripts run.
  69248.     "Non-standard hardware features" covers rather much territory and I
  69249. hesitate to begin speculating what your computer really looks like at the
  69250. hardware level.
  69251.     Joe D.
  69252.  
  69253. From news@columbia.edu Mon Jan  2 04:48:00 1995
  69254. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19573
  69255.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 2 Jan 1995 00:00:33 -0500
  69256. Received: by apakabar.cc.columbia.edu id AA07412
  69257.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 2 Jan 1995 00:00:32 -0500
  69258. Newsgroups: comp.protocols.kermit.misc
  69259. Path: news.columbia.edu!panix!news.mathworks.com!hookup!swrinde!pipex!bnr.co.uk!bcarh8ac.bnr.ca!bcarh189.bnr.ca!nott!cunews!freenet.carleton.ca!FreeNet.Carleton.CA!be946
  69260. From: be946@FreeNet.Carleton.CA (Simon C.Hall)
  69261. Subject: smartcomm script! wanted
  69262. Message-Id: <D1rHC0.Gs8@freenet.carleton.ca>
  69263. Sender: be946@freenet3.carleton.ca (Simon C.Hall)
  69264. Reply-To: be946@FreeNet.Carleton.CA (Simon C.Hall)
  69265. Organization: The National Capital FreeNet
  69266. Date: Mon, 2 Jan 1995 04:48:00 GMT
  69267. Lines: 6
  69268. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  69269.  
  69270. Hi can you help me eith getting a hayes smartcom 14400 card to work under
  69271. kermit?
  69272. I tried a few scripts from the beta 17 but could not get the card to
  69273. acknowledge kermit 
  69274. Thanks in advance.
  69275.  
  69276.  
  69277. From news@columbia.edu Mon Jan  2 10:46:46 1995
  69278. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11942
  69279.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 2 Jan 1995 05:50:24 -0500
  69280. Received: by apakabar.cc.columbia.edu id AA20010
  69281.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 2 Jan 1995 05:50:23 -0500
  69282. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!agate!boulder!ucsub.Colorado.EDU!glaserd
  69283. From: glaserd@ucsub.Colorado.EDU (Endo the river rat)
  69284. Newsgroups: comp.protocols.kermit.misc
  69285. Subject: Kermit is eating binaries *help plz*
  69286. Date: 2 Jan 95 10:46:46 GMT
  69287. Organization: University of Colorado at Boulder
  69288. Lines: 11
  69289. Message-Id: <glaserd.789043606@ucsub.Colorado.EDU>
  69290. Nntp-Posting-Host: ucsub.colorado.edu
  69291. X-Newsreader: NN version 6.5.0 #12 (NOV)
  69292. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  69293.  
  69294. The University does not support sz So I ahve switched to Kermit, bu I am 
  69295. having major problems with binary files (zip,jpg,gif....) I have no 
  69296. problems with .hqx or text files.  I am new to kermit and I have read the 
  69297. help a number of times but it seems to be to no avail, my speed is fine 
  69298. but all binaries are thrashed after the transfer. If you need more infor 
  69299. from me please write and I'll tell you what I can.
  69300.  
  69301. Thanx,
  69302.  
  69303. Dave
  69304.  
  69305.  
  69306. From news@columbia.edu Mon Jan  2 16:35:39 1995
  69307. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00634
  69308.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 2 Jan 1995 11:35:41 -0500
  69309. Received: by apakabar.cc.columbia.edu id AA16236
  69310.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 2 Jan 1995 11:35:40 -0500
  69311. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  69312. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  69313. Newsgroups: comp.protocols.kermit.misc
  69314. Subject: Re: kerlite 3.14 beta 16 problem
  69315. Date: 2 Jan 1995 16:35:39 GMT
  69316. Organization: Columbia University
  69317. Lines: 13
  69318. Message-Id: <3e9a0r$fra@apakabar.cc.columbia.edu>
  69319. References: <y$T0luqcZZCS075yn@primenet.com> <3dsutj$c1u@apakabar.cc.columbia.edu> <Q-X0luqcZpAQ075yn@primenet.com> <3e1ub0$92h@pacifier.com>
  69320. Nntp-Posting-Host: watsun.cc.columbia.edu
  69321. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  69322.  
  69323. In article <3e1ub0$92h@pacifier.com>, Mike Freeman <mikef@pacifier.com> wrote:
  69324. >Uh, what's "Kerlite"?
  69325. >
  69326. KERLITE.EXE is a small-size edition of MS-DOS Kermit 3.14.  It has no
  69327. CONNECT command and no network support.  It is designed to be used as an
  69328. external Kermit protocol and/or script execution engine in BBS and other
  69329. embedded applications.
  69330.  
  69331. There is also a medium-sized edition called KERMITE.EXE, which includes
  69332. text terminal emulation, but lacks graphics terminal emulation and network
  69333. support.
  69334.  
  69335. - Frank
  69336.  
  69337. From news@columbia.edu Mon Jan  2 16:37:53 1995
  69338. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00906
  69339.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 2 Jan 1995 11:37:55 -0500
  69340. Received: by apakabar.cc.columbia.edu id AA16297
  69341.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 2 Jan 1995 11:37:53 -0500
  69342. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  69343. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  69344. Newsgroups: comp.protocols.kermit.misc
  69345. Subject: Re: Where's the last version ?
  69346. Date: 2 Jan 1995 16:37:53 GMT
  69347. Organization: Columbia University
  69348. Lines: 58
  69349. Message-Id: <3e9a51$ft7@apakabar.cc.columbia.edu>
  69350. References: <3e3pniINNped@mendel.sis.pasteur.fr>
  69351. Nntp-Posting-Host: watsun.cc.columbia.edu
  69352. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  69353.  
  69354. In article <3e3pniINNped@mendel.sis.pasteur.fr>,
  69355. Daniel Azuelos <dan@pasteur.fr> wrote:
  69356. >Please, where's the last working version of Kermit for Mac ?
  69357. >
  69358. CURRENT STATE OF MACINTOSH KERMIT
  69359.  
  69360. As of: Sat Nov 12 11:00:53 1994
  69361.  
  69362. *** BULLETIN ***
  69363. Mac Kermit 0.991(190) dated 16 August 1994, or later, fixes the problem with
  69364. downloading under newer System releases (7.1.x).  Now files can be downloaded
  69365. on newer systems such as Centris 660 AV with OS 7.1, Power Mac 7100/66 with OS
  69366. 7.1.2, etc, without bombs or other nasty effects.  It should also fix certain
  69367. binary/text-mode confusion that seemed to result in corrupted files when
  69368. downloading in binary mode.
  69369. *****************
  69370.  
  69371. The last formal release of Mac Kermit was 0.9(40) in 1988.  Unfortunately, it
  69372. does not work very well on newer Macintoshes or Systems.  However, newer
  69373. versions are too big for 512K Macs or below, so you'll have to run 0.9(40) on
  69374. these old models.
  69375.  
  69376. A great deal of work has been done on the program since 1988, but the result
  69377. (so far) is still not of release quality, though it is quite suitable for most
  69378. purposes.
  69379.  
  69380. The current pre-pre-release of Mac Kermit (still far from a final release) is
  69381. 0.991(190), based on C-Kermit 5A(190).  It is available via anonymous FTP
  69382. from kermit.columbia.edu [128.59.39.2], directory kermit/f.
  69383.  
  69384. A comprehensive user manual will be published when the final 1.0 release is
  69385. complete.  Sorry, I can't give any reasonable estimate about when that will
  69386. be.  Watch the Kermit Digest (or comp.protocols.kermit, same thing) for
  69387. further announcements.  You can subscribe to the Kermit Digest by sending
  69388. email to LISTSERV@CUVMA.BITNET (or LISTSERV@CUVMA.CC.COLUMBIA.EDU) containing
  69389. the text:
  69390.  
  69391.   SUBSCRIBE I$KERMIT your-personal-name-here
  69392.  
  69393. Mac Kermit files, ftp from kermit.columbia.edu in text mode from the
  69394. kermit/f directory:
  69395.  
  69396.   ckm190.hqx -- current prerelease of Mac Kermit in BinHex 4.0 format
  69397.   ckmker.doc -- user documentation for 0.9(40), the previous release (1988)
  69398.   ckmker.ps  -- PostScript version of user documentation for 0.9(40)
  69399.   ckmker.bwr -- Notes about the current prerelease, FAQ's, etc
  69400.   ckmker.fon -- Notes about the new Mac Kermit terminal emulation font
  69401.  
  69402. and in the kermit/charsets directory:
  69403.  
  69404.   maclatin.* -- The new Mac Kermit font itself
  69405.  
  69406. Read the ckmker.bwr ("beware") file for further details.
  69407.  
  69408. (End of ckmaaa.hlp)
  69409.  
  69410.  
  69411.  
  69412.  
  69413. From news@columbia.edu Mon Jan  2 17:08:45 1995
  69414. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02805
  69415.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 2 Jan 1995 12:08:47 -0500
  69416. Received: by apakabar.cc.columbia.edu id AA17616
  69417.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 2 Jan 1995 12:08:46 -0500
  69418. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  69419. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  69420. Newsgroups: comp.protocols.kermit.misc
  69421. Subject: Re: smartcomm script! wanted
  69422. Date: 2 Jan 1995 17:08:45 GMT
  69423. Organization: Columbia University
  69424. Lines: 22
  69425. Message-Id: <3e9but$h6e@apakabar.cc.columbia.edu>
  69426. References: <D1rHC0.Gs8@freenet.carleton.ca>
  69427. Nntp-Posting-Host: watsun.cc.columbia.edu
  69428. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  69429.  
  69430. In article <D1rHC0.Gs8@freenet.carleton.ca>,
  69431. Simon C.Hall <be946@FreeNet.Carleton.CA> wrote:
  69432. >Hi can you help me eith getting a hayes smartcom 14400 card to work under
  69433. >kermit?
  69434. >I tried a few scripts from the beta 17 but could not get the card to
  69435. >acknowledge kermit 
  69436. >
  69437. Did you try ULTRA144.SCR?  That one is for Hayes Ultra 14400 bps modems,
  69438. tested successfully on external models.  Evidently you have an internal
  69439. modem.  First you have to give a SET PORT command to tell Kermit which
  69440. port it's on, in case it is not on COM1.  If you did that and it still
  69441. doesn't work, then all the cautions about address and interrupt conflicts
  69442. apply.
  69443.  
  69444. Please read Section 6, "Troubleshooting MS-DOS Kermit Serial Port and Modem
  69445. Problems", in the KERMIT.BWR file.
  69446.  
  69447. By the way, an easy way to debug dialing troubles is to simply CONNECT to
  69448. the port and type AT commands to the modem yourself.  You don't *have* to
  69449. use dialing scripts to dial.
  69450.  
  69451. - Frank
  69452.  
  69453. From news@columbia.edu Mon Jan  2 17:12:19 1995
  69454. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03072
  69455.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 2 Jan 1995 12:12:21 -0500
  69456. Received: by apakabar.cc.columbia.edu id AA17736
  69457.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 2 Jan 1995 12:12:20 -0500
  69458. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  69459. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  69460. Newsgroups: comp.protocols.kermit.misc
  69461. Subject: Re: Kermit is eating binaries *help plz*
  69462. Date: 2 Jan 1995 17:12:19 GMT
  69463. Organization: Columbia University
  69464. Lines: 25
  69465. Message-Id: <3e9c5j$ha5@apakabar.cc.columbia.edu>
  69466. References: <glaserd.789043606@ucsub.colorado.edu>
  69467. Nntp-Posting-Host: watsun.cc.columbia.edu
  69468. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  69469.  
  69470. In article <glaserd.789043606@ucsub.colorado.edu>,
  69471. Endo the river rat <glaserd@ucsub.Colorado.EDU> wrote:
  69472. >The University does not support sz So I ahve switched to Kermit, bu I am 
  69473. >having major problems with binary files (zip,jpg,gif....) I have no 
  69474. >problems with .hqx or text files.  I am new to kermit and I have read the 
  69475. >help a number of times but it seems to be to no avail, my speed is fine 
  69476. >but all binaries are thrashed after the transfer. If you need more infor 
  69477. >from me please write and I'll tell you what I can.
  69478. >
  69479. Which Kermit programs are you using, and which version of each one?  On
  69480. what kind of computer?  Using what connection method?  etc etc.  It's
  69481. always a good idea to include a few relevant facts in trouble reports --
  69482. remember, there are hundreds of different Kermit programs running on
  69483. probably thousands of different machine/OS/OS-version combinations.
  69484.  
  69485. Anyway, the most likely explanation of the problem is that you failed to
  69486. tell Kermit to transfer the files in binary mode.  Kermit (unlike sz)
  69487. uses text mode by default.  Just tell (at least) the file sender to:
  69488.  
  69489.   SET FILE TYPE BINARY
  69490.  
  69491. For safety (since you did not say what Kermit software you are using),
  69492. give this command to both Kermit programs before starting the transfer.
  69493.  
  69494. - Frank
  69495.  
  69496. From news@columbia.edu Mon Jan  2 17:00:37 1995
  69497. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03098
  69498.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 2 Jan 1995 12:12:47 -0500
  69499. Received: by apakabar.cc.columbia.edu id AA17746
  69500.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 2 Jan 1995 12:12:46 -0500
  69501. Newsgroups: comp.protocols.kermit.misc
  69502. Path: news.columbia.edu!panix!news.mathworks.com!news2.near.net!howland.reston.ans.net!ix.netcom.com!netcom.com!taliesin
  69503. From: taliesin@netcom.com (Glenn R. Stone)
  69504. Subject: Re: Kermit is eating binaries *help plz*
  69505. Message-Id: <taliesinD1sF91.633@netcom.com>
  69506. Organization: The Group W Bench
  69507. References: <glaserd.789043606@ucsub.Colorado.EDU>
  69508. Date: Mon, 2 Jan 1995 17:00:37 GMT
  69509. Lines: 23
  69510. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  69511.  
  69512. In <glaserd.789043606@ucsub.Colorado.EDU> glaserd@ucsub.Colorado.EDU (Endo the river rat) writes:
  69513.  
  69514. >The University does not support sz So I ahve switched to Kermit, bu I am 
  69515. >having major problems with binary files (zip,jpg,gif....) I have no 
  69516. >problems with .hqx or text files.  I am new to kermit and I have read the 
  69517. >help a number of times but it seems to be to no avail, my speed is fine 
  69518. >but all binaries are thrashed after the transfer. If you need more infor 
  69519. >from me please write and I'll tell you what I can.
  69520.  
  69521. You have to tell both sides that the file is binary.  On the unix side, add
  69522. a -i flag to your kermit command line (or if you're talking to the C-Kermit>
  69523. prompt, tell it "set file type binary" before "send" or "server"); on the
  69524. Mac side (obviously what you're using) look under one of the menus for file
  69525. transfer options and set the binary mode.  (It's been a LONG time since I've
  69526. used MacKermit...)  (for those who use DOS, SET FILE TYPE BINARY at the
  69527. MS-Kermit> prompt.... and for those as have the beta release, doing it on
  69528. the DOS side automagically does it on the Unix side, too... I don't know if
  69529. this requires 5A(190) or not...) 
  69530.  
  69531. Kermit won't eat your binaries if you tell it not to... GIGO, however..
  69532.  
  69533. warp eight bot, little froggy type dude
  69534. Kermit.  It's not just a file transfer anymore.
  69535.  
  69536. From news@columbia.edu Mon Jan  2 17:18:58 1995
  69537. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03561
  69538.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 2 Jan 1995 12:19:01 -0500
  69539. Received: by apakabar.cc.columbia.edu id AA18298
  69540.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 2 Jan 1995 12:19:00 -0500
  69541. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  69542. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  69543. Newsgroups: comp.protocols.kermit.misc
  69544. Subject: Re: CARRIER PROBLEM ON CKERMIT OS/2
  69545. Date: 2 Jan 1995 17:18:58 GMT
  69546. Organization: Columbia University
  69547. Lines: 41
  69548. Message-Id: <3e9ci2$hro@apakabar.cc.columbia.edu>
  69549. References: <3e2mpn$c1o@rigel.infinet.com>
  69550. Nntp-Posting-Host: watsun.cc.columbia.edu
  69551. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  69552.  
  69553. In article <3e2mpn$c1o@rigel.infinet.com>,
  69554. Mark Foley <mfoley@infinet.com> wrote:
  69555. >I have been using KERMIT for years and years and am a fan.  I have
  69556. >bought the book and everything (I don't have it now though).  Anyway the
  69557. >minor problem I have is this: I have been using c-kermit 5A(189) for
  69558. >OS/2 for quite awhile now.  Appearently, the modem I was using raised
  69559. >the carrier signal because it worked just fine.  I just bought a new US
  69560. >Robotics 14400 external modem today and hooked it up to my OS/2 machine. 
  69561. >Now, when I attempt to connect, I get a message "No Carrier" (or
  69562. >something to that effect), and I can't connect to the modem.  I have
  69563. >done 'set ?' and various other commands looking for a fix - 'set carrier
  69564. >on' doesn't do it. 
  69565. >
  69566. Please read about the SET CARRIER command.  It lets you adjust Kermit to
  69567. the behavior of your modem.  The default is SET CARRIER AUTO, which means
  69568. to NOT require carrier during DIAL operation, but to require it during
  69569. CONNECT mode.  SET CARRIER ON means to require it at all times, so of
  69570. course that doesn't work if your modem is following RS-232.  SET CARRIER
  69571. OFF means to ignore carrier.
  69572.  
  69573. >I know I can just flip the modem dip switch to make carrier always on,
  69574. >but this seems wrong. I have extensive experience in RS-232
  69575. >communications and carrier is, in fact, suppose to be related to the
  69576. >actual carrier signal between the connected modems. Why is kermit
  69577. >looking for carrier before I've even dialed? Doesn't make sense!
  69578. >
  69579. It won't do that unless you told it to.  Look in your CKERMIT.INI or
  69580. CKERMOD.INI file for "set carrier on".  You probably put this command
  69581. in there a while back and forgot about it.
  69582.  
  69583. Also, I'd recommend you upgrade to version 5A(190), which is light-years
  69584. ahead of 5A(189) in its capabilities.
  69585.  
  69586. - Frank
  69587.  
  69588. x
  69589. x
  69590. x
  69591. x
  69592. x
  69593. x
  69594.  
  69595. From news@columbia.edu Mon Jan  2 17:36:32 1995
  69596. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04717
  69597.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 2 Jan 1995 12:36:34 -0500
  69598. Received: by apakabar.cc.columbia.edu id AA18952
  69599.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 2 Jan 1995 12:36:33 -0500
  69600. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  69601. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  69602. Newsgroups: comp.protocols.kermit.misc
  69603. Subject: Re: File transfers are too slow
  69604. Date: 2 Jan 1995 17:36:32 GMT
  69605. Organization: Columbia University
  69606. Lines: 77
  69607. Message-Id: <3e9dj0$ig6@apakabar.cc.columbia.edu>
  69608. References: <3e51i2$jka@csusac.ecs.csus.edu>
  69609. Nntp-Posting-Host: watsun.cc.columbia.edu
  69610. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  69611.  
  69612. In article <3e51i2$jka@csusac.ecs.csus.edu>,
  69613. Jon M. Taylor <taylorj@ecs.ecs.csus.edu> wrote:
  69614. >Situation:  I am connecting from my home computer (486/33, 
  69615. >v.32bis modem, latest beta DOS kermit 3.14) to the university computer 
  69616. >(HP 9000/715, OS 9.x)  Via a Xyplex terminal server ...
  69617. >    Anyway, I have compiled 5A(190) for HPUX, and it seems to work
  69618. >correctly (so far, anyway).  I get maximal throughput with packet length
  69619. >set to 2000 (more works OK, but doesn't seem to make a difference in
  69620. >throughtput), all the control characters from the FAST macro enabled, and
  69621. >windows set to 1.  My modem DTR is locked at 38400, compression and error
  69622. >correction enabled, and it connects to the Xyplex at 14.4k with
  69623. >compression and EC on.  With this setup, I get ~1150 CPS. 
  69624. >    Here's the rub:  Things start breaking down with any other window
  69625. >setting than 1.
  69626. >...
  69627. >- c-kermit on the HP initially uses XON/XOFF.  I'm not sure whether to 
  69628. >change this or not - would the Xyplex need it?  I *think* the xyplex uses 
  69629. >XON/XOFF to talk to the HP and DSR/DTR to talk to my modem....
  69630. >
  69631. Like it says in the documentation...  tell C-Kermit on the host to
  69632. "set flow none".  It has a TCP/IP connection (TELNET or RLOGIN) to the
  69633. terminal server, and the network protocol itself provides the flow control.
  69634. Disabling Xon/Xoff in this situation should perk things up quite a bit.
  69635.  
  69636. Second, make sure you have RTS/CTS enabled in MS-DOS Kermit on your PC
  69637. *and* on your modem.  Most of our high-speed dialing scripts take care
  69638. of this automatically.
  69639.  
  69640. I don't know a huge amount about Annexes, but I'll speculate that you
  69641. are uploading.  Many kinds of terminal servers were designed to have
  69642. big buffers in the host-to-terminal direction and small ones in the
  69643. opposite direction.  This is bad for uploading files.  At the very least,
  69644. the system/network administrators must ensure an extremely effective
  69645. and responsive method of flow control between the terminal server and the
  69646. answering modem (preferably RTS/CTS).  Better still, perhaps they can
  69647. reconfigure the terminal servers to allocate buffer space more equitably.
  69648.  
  69649. Or maybe the Annex has some kind of command that you can give at its
  69650. prompt that will condition it for file transfers, similar to the Cisco
  69651. terminal server's "terminal download" command.
  69652.  
  69653. Finally, about the window size -- please read in the documentation about
  69654. sliding windows.  The file receiver will never use a window size greater
  69655. than 1, even if a larger size has been SET and successfully negotiated,
  69656. unless packets are lost or damaged.  That's because normally packets
  69657. arrive in their correct order and therefore each one is disposed of
  69658. promptly as it arrives.
  69659.  
  69660. >    Also, while I'm here, I want to say thanks to Joe Doupnik (I used
  69661. >to go to school at USU!) and Frank da Cruz for MS-Kermit and C-Kermit. 
  69662. >NOTHING but Kermit will work over this damn Xyplex, and I'm really glad
  69663. >it's out there.
  69664. >
  69665. Thanks.
  69666.  
  69667. >A couple suggestions:  Have the percentage efficiency and
  69668. >CPS rating be updated in realtime during the transfer, like most other
  69669. >common protocols do.
  69670. >
  69671. C-Kermit does this (when you use SET FILE DISPLAY FULLSCREEN), but
  69672. generally speaking, size and efficiency are a bigger issue for MS-DOS
  69673. Kermit, which must still run on 4.77MHz 8088s.  Maybe some day this could
  69674. be added as an option, but not in version 3.14.
  69675.  
  69676. >Also, since you seem to be aiming for maximum configurablility, 
  69677. >how about an option to completely turn off ALL error checking in the 
  69678. >protocol (like Ymodem-G)?  It would add another little speed boost to 
  69679. >those who have EC modems.
  69680. >
  69681. As Joe says, and has been explained repeatedly on many newsgroups,
  69682. most recently on comp.dcom.modems, this would be a false economy.  Even
  69683. if modem connections could be regarded as 100% reliable and error-free,
  69684. there are end-to-end issues of flow and error control, not to mention
  69685. presentation issues, etc, that are beyond the modems' sphere of
  69686. influence.
  69687.  
  69688. - Frank
  69689.  
  69690. From news@columbia.edu Mon Jan  2 17:43:03 1995
  69691. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05115
  69692.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 2 Jan 1995 12:43:04 -0500
  69693. Received: by apakabar.cc.columbia.edu id AA19352
  69694.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 2 Jan 1995 12:43:03 -0500
  69695. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  69696. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  69697. Newsgroups: comp.protocols.kermit.misc
  69698. Subject: Re: Kermit & the strange DOS machine
  69699. Date: 2 Jan 1995 17:43:03 GMT
  69700. Organization: Columbia University
  69701. Lines: 49
  69702. Message-Id: <3e9dv7$isl@apakabar.cc.columbia.edu>
  69703. References: <wpfulmorD1pIp4.Aon@netcom.com>
  69704. Nntp-Posting-Host: watsun.cc.columbia.edu
  69705. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  69706.  
  69707. In article <wpfulmorD1pIp4.Aon@netcom.com>,
  69708. william p fulmor <wpfulmor@netcom.com> wrote:
  69709. >I have a single board 8 mhz 8088 MSDOS computer which is an expansion 
  69710. >board to a unix based computer.  COM1 is irrevocably tied to a 
  69711. >non-standard on-board-modem.  COM2 is said to be a standard PC serial 
  69712. >port, which *was* driven by an NS 8250.   COM2 is *now* driven by an NS 
  69713. >16550.   \|^)
  69714. >
  69715. >After starting Kermit (3.13 patch 20) in the usual fashion, ...
  69716. >
  69717. Please try 3.14 Beta.  There have been many improvements in the RS-232
  69718. (dealing with modem signals) area, which might affect your situation.
  69719.  
  69720. Anonymous ftp to kermit.columbia.edu, directory kermit/test/bin, binary
  69721. mode, file mstibm.zip.  Unzip with "-d" switch.  Read top-level READ.ME
  69722. to get started.
  69723.  
  69724. >...
  69725. >1. Kermit takes 13 minutes from pressing <return> following the dial 
  69726. >command to actually dialing the number.
  69727. >
  69728. This sounds like repeated flow-control failures and long timeout waits
  69729. (about 15 seconds each).  This probably means that Kermit has been told
  69730. to SET FLOW RTS/CTS prior to dialing, but that the modem has not been
  69731. configured for RTS/CTS, or does not use it properly while in command mode.
  69732.  
  69733. Try SET FLOW NONE during dialing, and then (if it works) change to SET
  69734. FLOW RTS/CTS after dialing is complete.
  69735.  
  69736. >2. Escaping from connect to local is prompt, but connecting back to 
  69737. >remote takes a *long* time.
  69738. >
  69739. Again, it sounds like your modem is not asserting CTS at the time when
  69740. CONNECT.  Make sure Kermit and the modem are *both* set for RTS/CTS
  69741. flow control.  If that doesn't help, I'd say the modem is probably not
  69742. working right -- or your cable does not connect the RTS and CTS terminals
  69743. on each side to their counterparts on the other.
  69744.  
  69745. >3. In interactive operation as a vt100 and with 'set flo rts/cts' a 
  69746. >very few characters are dropped, not enough to cause problems - but - The 
  69747. >screen is written only a few lines at a time with long pauses in 
  69748. >between.
  69749. >
  69750. Same deal, again.
  69751.  
  69752. - Frank
  69753.  
  69754. x
  69755. x
  69756.  
  69757. From news@columbia.edu Mon Jan  2 17:57:52 1995
  69758. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06970
  69759.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 2 Jan 1995 13:10:10 -0500
  69760. Received: by apakabar.cc.columbia.edu id AA20648
  69761.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 2 Jan 1995 13:10:09 -0500
  69762. Path: news.columbia.edu!panix!news.mathworks.com!news2.near.net!howland.reston.ans.net!news.sprintlink.net!news.primenet.com!usenet
  69763. From: jbishop@primenet.com (Jeff Bishop)
  69764. Newsgroups: comp.protocols.kermit.misc
  69765. Subject: APC on kermit for oS/2 help needed???
  69766. Date: Mon, 02 Jan 1995 10:57:52 -0700
  69767. Organization: primenet, Tucson, AZ
  69768. Lines: 32
  69769. Message-Id: <Ww32luqcZpaS075yn@primenet.com>
  69770. Reply-To: jbishop@primenet.com
  69771. Nntp-Posting-Host: usr1.primenet.com
  69772. X-Newsreader: Yarn 0.75 with YES/286 v.0.12.B1225
  69773. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  69774.  
  69775. I have been trying to get apc to work on ckermit 190 for OS/2. I am running
  69776. ckermit 190 for os/2 using its network features, which are fantastic (thanks
  69777. a lot for that). Here are the two unix scripts I use to try and do this:
  69778.  
  69779. echo '<ESC>_set file type binary, receive <ESC>\'
  69780. $HOME/bin/kermit -y $HOME/bin/kermit.ini -i -s $1
  69781.  
  69782. and
  69783.  
  69784. echo '<ESC>_set file type text, receive <ESC>\'
  69785. $HOME/bin/kermit -y $HOME/bin/kermit.ini -i -s $1
  69786.  
  69787. Now, the kermit.ini is like this:
  69788.  
  69789. set delay 1
  69790. set window 4
  69791. set block 3
  69792. set receive packet-length 9024
  69793. SET RECEIVE PATH OFF
  69794. set send packet-length 9024
  69795. set terminal apc on
  69796. SET FILE COLL OVERWRITE
  69797. SET FILE DISPLAY QUIET
  69798.  
  69799. OK, ckermit 190 for OS/2 is in VT220 mode with APC turned on. If I run the
  69800. script for the first time it simply returns me to the ckermit> prompt. I
  69801. then have to connect and control-c out of ckermit on the unix box. I can
  69802. then re-run the script the exact same way, and it works <GRIN>. Now, why is
  69803. this? Keep in mind, both kermits are 190 level. I compiled the unix one just
  69804. recently from the source on kermit.columbia.edu.
  69805.  
  69806. Jeff
  69807.  
  69808. From news@columbia.edu Mon Jan  2 09:11:00 1995
  69809. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11373
  69810.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 2 Jan 1995 14:18:37 -0500
  69811. Received: by apakabar.cc.columbia.edu id AA24131
  69812.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 2 Jan 1995 14:18:35 -0500
  69813. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!pipex!uunet!mozz.unh.edu!unhf.unh.edu!jf_adams
  69814. From: jf_adams@unhf.unh.edu (I've never met a Lasanga I didn't like - GARFIELD)
  69815. Newsgroups: comp.protocols.kermit.misc
  69816. Subject: where find FAQ, com3, packet size
  69817. Date: 2 Jan 1995 14:11 EST
  69818. Organization: Comp. & Info. Services, University of New Hampshire
  69819. Lines: 19
  69820. Distribution: world
  69821. Message-Id: <2JAN199514111085@unhf.unh.edu>
  69822. Nntp-Posting-Host: unhf.unh.edu
  69823. News-Software: VAX/VMS VNEWS 1.50    
  69824. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  69825.  
  69826. Hi,
  69827.  
  69828. Could someone tell me where I can locate the KERMIT FAQ?  Also any suggestions
  69829. for some books on KERMIT?
  69830.  
  69831. I have some things I would liek to fix.  I got a new pc  with a built in modem
  69832. on COM 3.  Kermit doesn't seem to reconize it.  I have a basic understanding of
  69833. computers and use them a lot at work, but am not to familiar with kermit other
  69834. then the basic aspect of transferring files and using it to make my a pc a
  69835. dummy terminal for work (its a NEC pentium 66 mhz connecting to a VAX/VMS
  69836. system at work).  
  69837.  
  69838. I wanted to know how to change packet size's and window sizes to speed up
  69839. transfers (at the moment I am using my older pc for kermiting on COM2, but
  69840. would like to use my bulit in one if I can figure out how to get it to work!)
  69841.  
  69842. Any tips/ideas/suggestions would be mucho apprecieated,
  69843. Thanks
  69844. Jonathan  jf_adams@unhf.unh.edu
  69845.  
  69846. From news@columbia.edu Mon Jan  2 08:29:44 1995
  69847. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22965
  69848.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 2 Jan 1995 17:25:39 -0500
  69849. Received: by apakabar.cc.columbia.edu id AA04269
  69850.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 2 Jan 1995 17:25:37 -0500
  69851. Path: news.columbia.edu!panix!bloom-beacon.mit.edu!gatech!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  69852. From: jrd@cc.usu.edu (Joe Doupnik)
  69853. Newsgroups: comp.protocols.kermit.misc
  69854. Subject: Re: kermit auto DL/UL!
  69855. Message-Id: <1995Jan2.142944.36328@cc.usu.edu>
  69856. Date: 2 Jan 95 14:29:44 MDT
  69857. References: <lk32luqcZ$jG075yn@primenet.com>
  69858. Organization: Utah State University
  69859. Lines: 23
  69860. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  69861.  
  69862. In article <lk32luqcZ$jG075yn@primenet.com>, jbishop@primenet.com (Jeff Bishop) writes:
  69863. > After examining kermit packets closely a friend has determined two strings
  69864. > that can be used to start kermit transfers automatically from {COMMO} (any
  69865. > other term program for that matter). This is not using the APC logic described
  69866. > in kermit.upd though.
  69867. > The two strings are:
  69868. > For upload I am using   "^a# N3" download              "^a5 S~".
  69869. > I have tested this and it works using msdos kermit on both sides.
  69870. -----------
  69871.     Only if
  69872.     a) Control-A is used as the start of packet character, and
  69873.        the checksum is correct
  69874.     b) this pattern can never exist in real data
  69875.     c) the other end is willing to send idle NAKs
  69876.     The S packet material is vital, is not nearly so short as you
  69877. have describe, and must not be broken into pieces.
  69878.     Unfortunately, none of a..c is a requirement. Maybe your friend should 
  69879. also examine the protocol specs carefully to see the variations. In general, 
  69880. there is no safe pattern.
  69881.         Joe D.
  69882.  
  69883. From news@columbia.edu Mon Jan  2 20:51:02 1995
  69884. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26304
  69885.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 2 Jan 1995 18:23:12 -0500
  69886. Received: by apakabar.cc.columbia.edu id AA07000
  69887.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 2 Jan 1995 18:23:11 -0500
  69888. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news.sprintlink.net!hookup!news.mathworks.com!panix!cmcl2!thecourier.cims.nyu.edu!thecourier.cims.nyu.edu!nobody
  69889. From: tick@cs.nyu.edu (Leo J. Tick)
  69890. Newsgroups: comp.protocols.kermit.misc
  69891. Subject: Re: Kermit is eating binaries *help plz*
  69892. Date: 2 Jan 1995 15:51:02 -0500
  69893. Organization: Courant Institute, New York University
  69894. Lines: 4
  69895. Message-Id: <3e9ovm$9e0@murray.cs.nyu.edu>
  69896. References: <glaserd.789043606@ucsub.colorado.edu> <3e9c5j$ha5@apakabar.cc.columbia.edu>
  69897. Nntp-Posting-Host: murray.cs.nyu.edu
  69898. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  69899.  
  69900. I was getting ready to raise theis point. v 190 macch unix-pc. I set
  69901. the file type binary on local. The transfer screen says text. As
  69902. F. de C. says you have to tell both sides. However this was not the case
  69903. in 189. Is this a global change or is it a bad build in the unic-pc.
  69904.  
  69905. From news@columbia.edu Tue Jan  3 00:52:24 1995
  69906. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02400
  69907.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 2 Jan 1995 19:52:27 -0500
  69908. Received: by apakabar.cc.columbia.edu id AA11501
  69909.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 2 Jan 1995 19:52:25 -0500
  69910. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  69911. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  69912. Newsgroups: comp.protocols.kermit.misc
  69913. Subject: Re: where find FAQ, com3, packet size
  69914. Date: 3 Jan 1995 00:52:24 GMT
  69915. Organization: Columbia University
  69916. Lines: 177
  69917. Message-Id: <3ea748$b7b@apakabar.cc.columbia.edu>
  69918. References: <2JAN199514111085@unhf.unh.edu>
  69919. Nntp-Posting-Host: watsun.cc.columbia.edu
  69920. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  69921.  
  69922. In article <2JAN199514111085@unhf.unh.edu>,
  69923. <jf_adams@unhf.unh.edu> wrote:
  69924. >Could someone tell me where I can locate the KERMIT FAQ?
  69925. >
  69926. Anonymous ftp to kermit.columbia.edu, directory kermit/e, file faq.txt.
  69927.  
  69928. >Also any suggestions for some books on KERMIT?
  69929. >
  69930. Listed below.
  69931.  
  69932. >I have some things I would liek to fix.  I got a new pc with a built in modem
  69933. >on COM 3.  Kermit doesn't seem to reconize it.
  69934. >
  69935. Please read the KERMIT.BWR that comes on your MS-DOS Kermit diskette,
  69936. the section about PC serial ports and internal modems.  It will tell what
  69937. you need to know.
  69938.  
  69939. >I wanted to know how to change packet size's and window sizes to speed up
  69940. >transfers (at the moment I am using my older pc for kermiting on COM2, but
  69941. >would like to use my bulit in one if I can figure out how to get it to work!)
  69942. >
  69943. If it doesn't use a nonstandard address or IRQ, and if there is no IRQ
  69944. conflict, just tell Kermit to "set port com3".  If that doesn't do it, then
  69945. please read the aforementioned file.
  69946.  
  69947. For increasing packet sizes and other methods of making file transfers go
  69948. faster, please read the aforementioned FAQ.
  69949.  
  69950.                            KERMIT BOOK LIST
  69951.  
  69952. -----------------------------------------------------------------------
  69953.  
  69954. MS-DOS Kermit, full-featured communications software for IBM and
  69955. compatible PCs with DOS or Windows, is documented in:
  69956.  
  69957.     Christine M. Gianone, Using MS-DOS Kermit, Second Edition, Digital
  69958.     Press / Butterworth-Heinemann, Woburn, MA, 1992, 345 pages, ISBN
  69959.     1-55558-082-3.  Packaged with version 3.13 of MS-DOS Kermit for the
  69960.     IBM PC, PS/2, and compatibles on a 3.5-inch diskette.  In computer
  69961.     and book stores, or order direct from Columbia University or from
  69962.     Digital Press.
  69963.  
  69964. A German-language edition is also available:
  69965.  
  69966.     Christine M. Gianone, MS-DOS Kermit, das universelle
  69967.     Kommunikationsprogramm, Verlag Heinz Heise, Hannover, Germany
  69968.     (1991), 414 pages.  Packaged with version 3.12 of MS-DOS Kermit for
  69969.     the IBM PC, PS/2, and compatibles on a 5.25-inch diskette,
  69970.     including German- language help files.  Deutsch von Gisbert W.
  69971.     Selke.  ISBN 3-88229-006-4.
  69972.  
  69973. And a French-language edition:
  69974.  
  69975.     Christine M. Gianone, Kermit MS-DOS mode d'emploi, Deuxieme
  69976.     edition, Heinz Schiefer & Cie., Versailles (1993), 406 pages.
  69977.     Packaged with version 3.11 of MS-DOS Kermit for the IBM PC, PS/2,
  69978.     and compatibles on a 5.25-inch diskette.  Adaption francaise: Jean
  69979.     Dutertre.  ISBN 2-901143-20-2.
  69980.  
  69981. There is also a Japanese book about MS-DOS Kermit, concentrating on the
  69982. NEC PC9801:
  69983.  
  69984.     Hirofumi Fujii and Fukuko Yuasa, MS-Kermit Nyumon, Computer Today
  69985.     Library 6, Saiensu-Sha Co., Ltd., publishers (1993), 160 pages.
  69986.     ISBN 4-7819-0669-9 C3355 P1854E.
  69987.  
  69988. -----------------------------------------------------------------------
  69989.  
  69990. C-Kermit 5A, full-function communication software for UNIX, VMS, OS/2,
  69991. AOS/VS, OS-9, Apollo Aegis, the Commodore Amiga, and the Atari ST is
  69992. documented in:
  69993.  
  69994.     Frank da Cruz and Christine M. Gianone, "Using C-Kermit", Digital
  69995.     Press / Butterworth-Heinemann, Woburn, MA, 1993, 514 pages, ISBN
  69996.     1-55558-108-0.  In computer and book stores, or order direct from
  69997.     Columbia University or from Digital Press.
  69998.  
  69999. A German-language edition is also available:
  70000.  
  70001.     Frank da Cruz und Christine M. Gianone, C-Kermit--Einfuhrung und
  70002.     Referenz, Verlag Heinz Heise, Hannover, Germany (1994).  ISBN
  70003.     3-88229-023-4.  Deutsch von Gisbert W. Selke.
  70004.  
  70005. -----------------------------------------------------------------------
  70006.  
  70007. The Kermit File transfer protocol is specified in the following book,
  70008. which also includes tutorials on computers, file systems, data
  70009. communications, and using Kermit:
  70010.  
  70011.     Frank da Cruz, Kermit, A File Transfer Protocol, Digital Press /
  70012.     Butterworth-Heinemann, Worburn, MA, 1987, 379 pages, ISBN
  70013.     0-932376-88-6.  In computer and book stores, or order direct from
  70014.     Columbia University or from Digital Press.
  70015.  
  70016. -----------------------------------------------------------------------
  70017.  
  70018. Kermit software for more than 400 different computers and operating
  70019. systems is available from Columbia University.  Contact Columbia for a
  70020. free Kermit software catalog.
  70021.  
  70022.  
  70023. -----------------------------------------------------------------------
  70024.  
  70025.                                  HOW TO ORDER
  70026.  
  70027. -----------------------------------------------------------------------
  70028.  
  70029. ENGLISH-LANGUAGE KERMIT BOOKS:
  70030.  
  70031.    1. In computer and book stores, or order direct from the publisher,
  70032.       Digital Press / Butterworth-Heinemann with MasterCard, Visa, or
  70033.       American Express:
  70034.  
  70035.           +1 800 366-2665     (Woburn, MA office for USA & Canada)
  70036.           +44 993 58521       (Rushden, England office for Europe)
  70037.           +61 2 372-5511      (Chatswood, NSW office for Australia & NZ)
  70038.           +65 220-3684        (Singapore office for Asia)
  70039.  
  70040.    2. From Columbia University:
  70041.  
  70042.           Kermit Development and Distribution
  70043.           Columbia University Academic Information Systems
  70044.           612 West 115th Street
  70045.           New York, NY  10025  USA
  70046.           Tel.  +1 212 854-3703
  70047.           Fax.  +1 212 663-8202
  70048.           E-Mail: kermit@columbia.edu
  70049.  
  70050.       Domestic and overseas orders accepted.  Add $5 US for shipping
  70051.       outside of North America.  Orders may be paid by MasterCard or
  70052.       Visa, or prepaid by check in US dollars.  Add $35 bank fee for
  70053.       checks not drawn on a US bank.  Price includes shipping.  Do not
  70054.       include sales tax.  Quantity discounts are available.
  70055.       Single-copy US prices (in US dollars):
  70056.  
  70057.           Using MS-DOS Kermit  . . . . . . . . . . . . . . . . .$ 34.95
  70058.           Using C-Kermit . . . . . . . . . . . . . . . . . . . .$ 34.95
  70059.           Kermit, A File Transfer Protocol . . . . . . . . . . .$ 29.95
  70060.           All three  . . . . . . . . . . . . . . . . . . . . . .$ 79.95
  70061.  
  70062. -----------------------------------------------------------------------
  70063.  
  70064. GERMAN-LANGUAGE KERMIT BOOKS:
  70065.  
  70066.         MS-DOS Kermit, das universelle Kommunikationsprogramm: DM 69,00
  70067.         C-Kermit--Einfuhrung und Referenz: . . . . . . . . . . DM 90,00
  70068.  
  70069.         Verlag Heinz Heise GmbH & Co. KG
  70070.         Helstorfer Strasse 7
  70071.         D-30625 Hannover, GERMANY
  70072.         Tel.  +49 (05 11) 53 52-0
  70073.         Fax.  +49 (05 11) 53 53-1 29
  70074.  
  70075. -----------------------------------------------------------------------
  70076.  
  70077. FRENCH:  Kermit MS-DOS Mode d'Emploi:  . . . . . . . . . . .  FF 495,00
  70078.  
  70079.         Heinz Schiefer & Cie.
  70080.         45 rue Henri de Regnier
  70081.         F-78000 Versailles, FRANCE
  70082.         Tel.  +33 39 53 95 26
  70083.         Fax.  +33 39 02 39 71
  70084.  
  70085. -----------------------------------------------------------------------
  70086.  
  70087. JAPANESE:  MS-Kermit Nyumon: . . . . . . . . . . . . . . . . .  1,800 Y
  70088.  
  70089.         Saiensu-Sha Co., Ltd.
  70090.         Abe-toku Building
  70091.         2-4 Kanda-suda cho, Chiyoda-ku
  70092.         Tokyo 101, JAPAN
  70093.         Tel.  +81-3-3256-1091
  70094.  
  70095. -----------------------------------------------------------------------
  70096.  
  70097.  
  70098. - Frank
  70099.  
  70100. From news@columbia.edu Tue Jan  3 00:56:44 1995
  70101. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02683
  70102.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 2 Jan 1995 19:56:45 -0500
  70103. Received: by apakabar.cc.columbia.edu id AA11625
  70104.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 2 Jan 1995 19:56:45 -0500
  70105. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  70106. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  70107. Newsgroups: comp.protocols.kermit.misc
  70108. Subject: Re: Kermit is eating binaries *help plz*
  70109. Date: 3 Jan 1995 00:56:44 GMT
  70110. Organization: Columbia University
  70111. Lines: 32
  70112. Message-Id: <3ea7cc$bb6@apakabar.cc.columbia.edu>
  70113. References: <glaserd.789043606@ucsub.colorado.edu> <3e9c5j$ha5@apakabar.cc.columbia.edu> <3e9ovm$9e0@murray.cs.nyu.edu>
  70114. Nntp-Posting-Host: watsun.cc.columbia.edu
  70115. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  70116.  
  70117. In article <3e9ovm$9e0@murray.cs.nyu.edu>, Leo J. Tick <tick@cs.nyu.edu> wrote:
  70118. >I was getting ready to raise theis point. v 190 macch unix-pc. I set
  70119. >the file type binary on local. The transfer screen says text. As
  70120. >F. de C. says you have to tell both sides. However this was not the case
  70121. >in 189. Is this a global change or is it a bad build in the unic-pc.
  70122. >
  70123. Prior to C-Kermit 5A(190), MS-DOS Kermit 3.14, and IBM Mainframe Kermit
  70124. 4.3.1, the file transfer mode, text or binary, was ALWAYS governed by the
  70125. file sender (as long as both Kermits supported and had successfully
  70126. negotiated the use of File Attribute packets and the "file type"
  70127. attribute).  The file sender tells the file receiver the transfer mode,
  70128. and the file receiver switches accordingly, automatically.
  70129.  
  70130. In the new versions, but only when the two Kermit programs have a
  70131. client/server relationship, it is the *client* that determines the
  70132. transfer mode, no matter whether it is sending or receiving.  This change
  70133. was made by popular demand, to address the following scenario:
  70134.  
  70135.  1. User starts remote Kermit, puts it in server mode.
  70136.  
  70137.  2. User escapes back to local Kermit and tells it to:
  70138.  
  70139.       SET FILE TYPE BINARY
  70140.       GET OOFA.ZIP
  70141.  
  70142. Previously, OOFA.ZIP would arrive in text mode.  Now it arrives in
  70143. binary mode.
  70144.  
  70145. Please read the KERMIT.UPD (MS-DOS Kermit 3.14) or ckcker.upd (C-Kermit
  70146. 5A(190)) for a fuller explanation.
  70147.  
  70148. - Frank
  70149.  
  70150. From news@columbia.edu Tue Jan  3 23:55:33 1995
  70151. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22926
  70152.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 3 Jan 1995 18:55:45 -0500
  70153. Received: by apakabar.cc.columbia.edu id AA04618
  70154.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 3 Jan 1995 18:55:44 -0500
  70155. Path: news.columbia.edu!panix!news.mathworks.com!news.alpha.net!pacifier!pacifier!not-for-mail
  70156. From: mikef@pacifier.com (Mike Freeman)
  70157. Newsgroups: comp.protocols.kermit.misc
  70158. Subject: Re: Kermit is eating binaries *help plz*
  70159. Date: 3 Jan 1995 15:55:33 -0800
  70160. Organization: none
  70161. Lines: 18
  70162. Message-Id: <3eco5l$bbu@pacifier.com>
  70163. References: <glaserd.789043606@ucsub.Colorado.EDU> <taliesinD1sF91.633@netcom.com>
  70164. Nntp-Posting-Host: pacifier.com
  70165. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  70166.  
  70167. In article <taliesinD1sF91.633@netcom.com>,
  70168. Glenn R. Stone <taliesin@netcom.com> wrote:
  70169. >
  70170. >used MacKermit...)  (for those who use DOS, SET FILE TYPE BINARY at the
  70171. >MS-Kermit> prompt.... and for those as have the beta release, doing it on
  70172. >the DOS side automagically does it on the Unix side, too... I don't know if
  70173. >this requires 5A(190) or not...) 
  70174. >
  70175. It does.
  70176.  
  70177.  
  70178.  
  70179.  
  70180.  
  70181. -- 
  70182. Mike Freeman            |       Internet: mikef@pacifier.com
  70183. GEnie: M.FREEMAN11      |       Amateur Radio Callsign: K7UIJ
  70184. ... Virtue is its own punishment.
  70185.  
  70186. From news@columbia.edu Wed Jan  4 00:30:51 1995
  70187. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27504
  70188.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 3 Jan 1995 19:59:57 -0500
  70189. Received: by apakabar.cc.columbia.edu id AA08593
  70190.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 3 Jan 1995 19:59:56 -0500
  70191. Path: news.columbia.edu!panix!news.mathworks.com!noc.near.net!netnews.whoi.edu!whsun1!dhiltz
  70192. From: dhiltz@whsun1.whoi.edu (David Hiltz)
  70193. Newsgroups: comp.protocols.kermit.misc
  70194. Subject: Re: Simple Unix Menu Driven Interface
  70195. Date: 4 Jan 1995 00:30:51 GMT
  70196. Organization: Woods Hole Oceanographic Institution
  70197. Lines: 17
  70198. Message-Id: <3ecq7r$do@pearl.whoi.edu>
  70199. References: <3ec4vk$8ru@cnj.digex.net>
  70200. Nntp-Posting-Host: whsun1.wh.whoi.edu
  70201. X-Newsreader: TIN [version 1.2 PL2]
  70202. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  70203.  
  70204. David A. Berk (dab@cnj.digex.net) wrote:
  70205.  
  70206. : I'm looking for a menu driven interface that I could set up on a Unix account
  70207. : and specify an incoming and outgoing directory that Procomm users could
  70208. : upload and download to.  Any help appreciated.
  70209.  
  70210.   MenuPerl gives you simple menuing capability.  You are going to have your
  70211.   Procomm users log onto a Unix host and run a menu program?  If so,
  70212.   menuperl will do the job.
  70213.  
  70214.    -----------
  70215.    David Hiltz
  70216.    dhiltz@whsun1.wh.whoi.edu
  70217.    Network System Administrator
  70218.    Northeast Fisheries Science Center
  70219.    ######&@&######
  70220.  
  70221.  
  70222. From news@columbia.edu Wed Jan  4 02:16:29 1995
  70223. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07514
  70224.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 3 Jan 1995 22:28:37 -0500
  70225. Received: by apakabar.cc.columbia.edu id AA16496
  70226.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 3 Jan 1995 22:28:36 -0500
  70227. Path: news.columbia.edu!panix!news.mathworks.com!europa.eng.gtefsd.com!howland.reston.ans.net!news.sprintlink.net!malgudi.oar.net!infinet!mfoley
  70228. From: mfoley@infinet.com (Mark Foley)
  70229. Newsgroups: comp.protocols.kermit.misc
  70230. Subject: Re: CARRIER PROBLEM ON CKERMIT OS/2
  70231. Date: 4 Jan 1995 02:16:29 GMT
  70232. Organization: InfiNet - Internet Access (614/224-3410)
  70233. Lines: 31
  70234. Message-Id: <3ed0dt$d5g@rigel.infinet.com>
  70235. References: <3e2mpn$c1o@rigel.infinet.com> <3e9ci2$hro@apakabar.cc.columbia.edu>
  70236. Nntp-Posting-Host: rigel.infinet.com
  70237. X-Newsreader: TIN [version 1.2 PL2]
  70238. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  70239.  
  70240. Frank da Cruz (fdc@watsun.cc.columbia.edu) wrote:
  70241. : In article <3e2mpn$c1o@rigel.infinet.com>,
  70242. : Mark Foley <mfoley@infinet.com> wrote:
  70243. : > (stuff deleted)
  70244. : >Now, when I attempt to connect, I get a message "No Carrier" (or
  70245. : >something to that effect), and I can't connect to the modem.  I have
  70246. : >done 'set ?' and various other commands looking for a fix - 'set carrier
  70247. : >on' doesn't do it. 
  70248. : >
  70249. : Please read about the SET CARRIER command.  It lets you adjust Kermit to
  70250. : the behavior of your modem.  The default is SET CARRIER AUTO, which means
  70251. : to NOT require carrier during DIAL operation, but to require it during
  70252. : CONNECT mode.  SET CARRIER ON means to require it at all times, so of
  70253. : course that doesn't work if your modem is following RS-232.  SET CARRIER
  70254. : OFF means to ignore carrier.
  70255.  
  70256. : It won't do that unless you told it to.  Look in your CKERMIT.INI or
  70257. : CKERMOD.INI file for "set carrier on".  You probably put this command
  70258. : in there a while back and forgot about it.
  70259.  
  70260. : Also, I'd recommend you upgrade to version 5A(190), which is light-years
  70261. : ahead of 5A(189) in its capabilities.
  70262.  
  70263. : - Frank
  70264.  
  70265. Thanks for the tips. I was confused about the ON/OFF meaning in SET
  70266. CARRIER. I though SET CARRIER ON meant SET the CARRIER ON (or act like
  70267. is set on, anyway). There is no SET CARRIER ... in either CKERMIT.INI
  70268. or CKERMOD.INI. SET CARRIER AUTO still gave me the same problem.
  70269. However, SET CARRIER OFF works just fine. I am writing this via OS/2
  70270. Kermit. I will get version 5A(190) ASAP.
  70271.  
  70272. From news@columbia.edu Wed Jan  4 02:54:01 1995
  70273. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10298
  70274.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 3 Jan 1995 23:10:57 -0500
  70275. Received: by apakabar.cc.columbia.edu id AA18728
  70276.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 3 Jan 1995 23:10:56 -0500
  70277. Path: news.columbia.edu!panix!bloom-beacon.mit.edu!usc!howland.reston.ans.net!Germany.EU.net!EU.net!i2unix!news
  70278. From: Gianluca Attura <mc8114@mclink.it>
  70279. Newsgroups: comp.protocols.kermit.misc
  70280. Subject: new kermit docs
  70281. Date: 4 Jan 1995 02:54:01 GMT
  70282. Lines: 10
  70283. Message-Id: <3ed2k9$52i@sgi.iunet.it>
  70284. Nntp-Posting-Host: ax433.mclink.it
  70285. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  70286.  
  70287. I wish to know if, in any form, I can find the docs about the new 
  70288. Kermit structure, the long packets and the APC capabilities.
  70289.  
  70290. Regargs
  70291.  
  70292.  
  70293. Luca
  70294.  
  70295.  
  70296.  
  70297.  
  70298. From news@columbia.edu Tue Jan  3 18:28:04 1995
  70299. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15387
  70300.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 4 Jan 1995 00:16:32 -0500
  70301. Received: by apakabar.cc.columbia.edu id AA23356
  70302.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 4 Jan 1995 00:16:28 -0500
  70303. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news1.digex.net!cnj.digex.net!cnj.digex.net!not-for-mail
  70304. From: dab@cnj.digex.net (David A. Berk)
  70305. Newsgroups: comp.protocols.kermit.misc
  70306. Subject: Simple Unix Menu Driven Interface
  70307. Date: 3 Jan 1995 13:28:04 -0500
  70308. Organization: Express Access Online Communications, Greenbelt, MD USA
  70309. Lines: 10
  70310. Message-Id: <3ec4vk$8ru@cnj.digex.net>
  70311. Nntp-Posting-Host: cnj.digex.net
  70312. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  70313.  
  70314.  
  70315. I'm looking for a menu driven interface that I could set up on a Unix account
  70316. and specify an incoming and outgoing directory that Procomm users could
  70317. upload and download to.  Any help appreciated.
  70318.  
  70319. thanks;
  70320. -- 
  70321.  
  70322. David Barak
  70323. dab@cnj.digex.com
  70324.  
  70325. From news@columbia.edu Wed Jan  4 04:44:34 1995
  70326. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18450
  70327.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 4 Jan 1995 00:53:06 -0500
  70328. Received: by apakabar.cc.columbia.edu id AA25665
  70329.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 4 Jan 1995 00:53:01 -0500
  70330. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news.sprintlink.net!news.cloud9.net!cloud9.net!leftwich
  70331. From: James Leftwich <leftwich@cloud9.net>
  70332. Newsgroups: comp.protocols.kermit.misc
  70333. Subject: Kermit newbie
  70334. Date: Tue, 3 Jan 1995 23:44:34 -0500
  70335. Organization: Cloud 9 Internet + White Plains, New York, USA
  70336. Lines: 22
  70337. Message-Id: <Pine.SUN.3.91.950103233928.7771A-100000@cloud9.net>
  70338. Nntp-Posting-Host: cloud9.net
  70339. Mime-Version: 1.0
  70340. Content-Type: TEXT/PLAIN; charset=US-ASCII
  70341. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  70342.  
  70343. Please bear with my ignorance...
  70344.  
  70345. I want to download files from my UNIX account to DOS.  I have been using
  70346. a dated modem program (CrossTalk).  I know a little ProComm too.
  70347.  
  70348. When I invoke Kermit once in my UNIX shell it comes up C-Kermit>.  I
  70349. enter 'receive <file name>'.  After a long delay I get a 'too many 
  70350. retries' message.
  70351.  
  70352. Can someone help or recommend a *brief* guide to Kermit (I ftp'ed an
  70353. enormous MSKermit.doc and the faq file wasn't terribly helpful).
  70354.  
  70355. Thanks for your time and patience
  70356.  
  70357. private e-mail preferred
  70358.  
  70359. Jim Leftwich
  70360. leftwich@cloud9.net
  70361. "I'm on Cloud9!" :)
  70362.  
  70363.  
  70364.  
  70365.  
  70366. From news@columbia.edu Tue Jan  3 19:10:48 1995
  70367. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26289
  70368.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 4 Jan 1995 03:01:18 -0500
  70369. Received: by apakabar.cc.columbia.edu id AA01478
  70370.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 4 Jan 1995 03:01:17 -0500
  70371. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!swiss.ans.net!newsgate.watson.ibm.com!watnews.watson.ibm.com!mhvnews.kgn.ibm.com!clnt8kgn.kgn.ibm.com!shapiro
  70372. From: shapiro@minnie.nic.kingston.ibm.com
  70373. Newsgroups: comp.software.testing,comp.protocols.kermit.misc
  70374. Subject: testing with kermit
  70375. Followup-To: comp.software.testing
  70376. Date: 3 Jan 1995 19:10:48 GMT
  70377. Organization: IBM Corporation, Kingston NY
  70378. Lines: 39
  70379. Message-Id: <3ec7fo$9ol@mhvnews.kgn.ibm.com>
  70380. Reply-To: shapiro@minnie.nic.kingston.ibm.com
  70381. Nntp-Posting-Host: clnt8kgn.kgn.ibm.com
  70382. Keywords: kermit testing
  70383. Originator: shapiro@clnt8kgn.kgn.ibm.com
  70384. Xref: news.columbia.edu comp.software.testing:2977 comp.protocols.kermit.misc:1527
  70385. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  70386.  
  70387. To handle repetitive tasks I've resorted to the public domain package
  70388. known as kermit. Even though I'm on a full blown TCPIP network
  70389. with telnet and rsh available everywhere Kermit is convenient
  70390. to "automate" tasks.
  70391.  
  70392. Works rather well, 
  70393. Commands that complete quickly work great.
  70394. Commands that take a long time, timeout , prematuring terminating the process.
  70395. I've discovered that
  70396. REMOTE SET SERVER TIMEOUT 0
  70397. will make the timeout value infinite, but
  70398. I still timeout with:
  70399. "Sent too many NAKs"
  70400.  
  70401. Its especially attrocious when I want to mix a workload of
  70402. quick executing commands and long executing commands.
  70403.  
  70404. All my scripts are short, and are basically single script commands
  70405. with lots of continuation. This is probably why I can't mix.
  70406.  
  70407. small sample of a test script:
  70408.  
  70409. ; SET NETWORK TCP/IP
  70410. LOG SESSION output.out
  70411. SET HOST node
  70412. script gin:--gin:--gin: root word: passwd ]> who ]> date ]> \
  70413. who~sam~si~s& ]> \
  70414. jobs~s~-l ]> \
  70415. who~sam~si ]> quit
  70416. ; SET HOST
  70417.  
  70418. Anybody got any bright ideas?
  70419.  
  70420. David Shapiro
  70421. shapiro@minnie.nic.kingston.ibm.com
  70422.  
  70423. PPS
  70424. IBM Corp
  70425. (914) 432-8018
  70426.  
  70427. From news@columbia.edu Tue Jan  3 16:01:45 1995
  70428. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28720
  70429.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 4 Jan 1995 03:42:10 -0500
  70430. Received: by apakabar.cc.columbia.edu id AA03143
  70431.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 4 Jan 1995 03:42:08 -0500
  70432. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!europa.eng.gtefsd.com!howland.reston.ans.net!Germany.EU.net!netmbx.de!zrz.TU-Berlin.DE!math.fu-berlin.de!zib-berlin.de!irz401!not-for-mail
  70433. From: ss5@irz301.inf.tu-dresden.de (Steffen Schwigon)
  70434. Newsgroups: comp.protocols.kermit.misc
  70435. Subject: How to continue a broken `get'?  &&  Where is the FAQ?
  70436. Date: 3 Jan 1995 17:01:45 +0100
  70437. Organization: Dept. of Computer Science, TU Dresden, Germany
  70438. Lines: 21
  70439. Distribution: world
  70440. Message-Id: <3ebsd9$3k6@irz404.inf.tu-dresden.de>
  70441. Reply-To: schwigon@freia.inf.tu-dresden.de
  70442. Nntp-Posting-Host: irz404.inf.tu-dresden.de
  70443. Mime-Version: 1.0
  70444. Content-Type: text/plain; charset=ISO-8859-1
  70445. Content-Transfer-Encoding: 8bit
  70446. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  70447.  
  70448.  
  70449. Hi!
  70450.  
  70451. I'm using C-Kermit under Linux and Ultrix to get files from the 
  70452. Ultrix machine to my Linux box over a modem connection. Sometimes 
  70453. the connection goes down. Is there any chance to continue the 
  70454. `get' command on a file?
  70455.  
  70456. (Actually I split the file into a lot of small parts and use
  70457. `set file collision discard'. But I still have to delete the last 
  70458. broken file.)
  70459.  
  70460. Maybe this is a FAQ, so please write where I can find the FAQ.
  70461.  
  70462. (Greeti+Tha)nX
  70463. Steffen
  70464. -- 
  70465. Steffen Schwigon                   schwigon@freia.inf.tu-dresden.de
  70466. WWW:                              http://www.inf.tu-dresden.de/~ss5
  70467. fingerprint:       AB FD 87 DF 3F 84 F0 3A  E4 8B EB 09 CF 4B E3 94
  70468. PGP-public-key:   mail me with `Subject: SEND-PGP-KEY' or finger me
  70469.  
  70470. From news@columbia.edu Wed Jan  4 14:09:59 1995
  70471. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17564
  70472.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 4 Jan 1995 09:10:15 -0500
  70473. Received: by apakabar.cc.columbia.edu id AA17515
  70474.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 4 Jan 1995 09:10:13 -0500
  70475. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  70476. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  70477. Newsgroups: comp.protocols.kermit.misc
  70478. Subject: Re: How to continue a broken `get'?  &&  Where is the FAQ?
  70479. Date: 4 Jan 1995 14:09:59 GMT
  70480. Organization: Columbia University
  70481. Lines: 18
  70482. Message-Id: <3eea7n$h22@apakabar.cc.columbia.edu>
  70483. References: <3ebsd9$3k6@irz404.inf.tu-dresden.de>
  70484. Nntp-Posting-Host: watsun.cc.columbia.edu
  70485. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  70486.  
  70487. In article <3ebsd9$3k6@irz404.inf.tu-dresden.de>,
  70488. Steffen Schwigon <schwigon@freia.inf.tu-dresden.de> wrote:
  70489. >I'm using C-Kermit under Linux and Ultrix to get files from the 
  70490. >Ultrix machine to my Linux box over a modem connection. Sometimes 
  70491. >the connection goes down. Is there any chance to continue the 
  70492. >`get' command on a file?
  70493. >
  70494. Yes.
  70495.  
  70496. The new releases of Kermit software (some of them still in Beta) --
  70497. C-Kermit 5A(190), MS-DOS Kermit 3.14 (Beta), and IBM Mainframe Kermit
  70498. 4.3.1 (Beta) -- allow a binary-mode file transfer to be resumed from the
  70499. point of failure.  Simply RESEND the file.
  70500.  
  70501. See the appropriate update notices for details: KERMIT.UPD for MS-DOS
  70502. Kermit 3.14, ckcker.upd for C-Kermit, etc.
  70503.  
  70504. - Frank
  70505.  
  70506. From news@columbia.edu Wed Jan  4 14:28:49 1995
  70507. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19211
  70508.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 4 Jan 1995 09:28:56 -0500
  70509. Received: by apakabar.cc.columbia.edu id AA18959
  70510.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 4 Jan 1995 09:28:54 -0500
  70511. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  70512. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  70513. Newsgroups: comp.software.testing,comp.protocols.kermit.misc
  70514. Subject: Re: testing with kermit
  70515. Date: 4 Jan 1995 14:28:49 GMT
  70516. Organization: Columbia University
  70517. Lines: 129
  70518. Message-Id: <3eebb1$igb@apakabar.cc.columbia.edu>
  70519. References: <3ec7fo$9ol@mhvnews.kgn.ibm.com>
  70520. Nntp-Posting-Host: watsun.cc.columbia.edu
  70521. Keywords: kermit testing
  70522. Xref: news.columbia.edu comp.software.testing:2980 comp.protocols.kermit.misc:1530
  70523. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  70524.  
  70525. In article <3ec7fo$9ol@mhvnews.kgn.ibm.com>,
  70526.  <shapiro@minnie.nic.kingston.ibm.com> wrote:
  70527. >To handle repetitive tasks I've resorted to the public domain package
  70528. >known as kermit.
  70529. >
  70530. It's not public domain.  Read the copyright notice.
  70531.  
  70532. >Even though I'm on a full blown TCPIP network
  70533. >with telnet and rsh available everywhere Kermit is convenient
  70534. >to "automate" tasks.
  70535. >
  70536. >Works rather well, 
  70537. >Commands that complete quickly work great.
  70538. >Commands that take a long time, timeout , prematuring terminating the 
  70539. >process.  I've discovered that
  70540. >REMOTE SET SERVER TIMEOUT 0
  70541. >will make the timeout value infinite, but I still timeout with:
  70542. >"Sent too many NAKs"
  70543. >
  70544. This type of message appears when a file transfer fails.  A NAK (Negative
  70545. Acknowledgement) occurs when an expected packet does not arrive within the
  70546. specified (or default) timeout interval, or when it arrives in damaged
  70547. condition (e.g. back checksum).
  70548.  
  70549. The only "commands" that time out are file transfers and other protocol-
  70550. driven operations (client/server stuff) and script programming commands
  70551. that expect certain inputs within a specified or default amount of time.
  70552.  
  70553. You can control protocol-related timeouts with the SET { SEND, RECEIVE }
  70554. TIMEOUT command.  { REMOTE } SET SERVER TIMEOUT controls only one thing:
  70555. whether Kermit, when in server mode, sends periodic NAKs while waiting
  70556. for commands, i.e. when it is doing nothing.  These NAKs are normally not
  70557. needed, but if the Kermit program on the other end is not capable of
  70558. timing out (e.g. early versions, circa 1981, of CP/M Kermit), then this
  70559. would be the only way to break the deadlock that would occur if a
  70560. server command packet sent by a non-timing-out client were to be lost
  70561. in transit.
  70562.  
  70563. >Its especially attrocious when I want to mix a workload of
  70564. >quick executing commands and long executing commands.
  70565. >All my scripts are short, and are basically single script commands
  70566. >with lots of continuation. This is probably why I can't mix.
  70567. >
  70568. All you have to do is read the manual.
  70569.  
  70570. >small sample of a test script:
  70571. >
  70572. >; SET NETWORK TCP/IP
  70573. >LOG SESSION output.out
  70574. >SET HOST node
  70575. >script gin:--gin:--gin: root word: passwd ]> who ]> date ]> \
  70576. >who~sam~si~s& ]> \
  70577. >jobs~s~-l ]> \
  70578. >who~sam~si ]> quit
  70579. >
  70580. In this example, you are using the old uucp-style SCRIPT command,
  70581. which is not the best way to write scripts because it is cryptic,
  70582. limited, and inflexible.  There is a much more readable, powerful,
  70583. and flexible script programming language that is documented in
  70584. chapters 11-13 of the manual (see below).  It lets you (for example)
  70585. specify an explicit timeout on each item.  Your example above might
  70586. be recoded as something like this:
  70587.  
  70588.   LOG SESSION output.out
  70589.   SET HOST node
  70590.   SET INPUT ECHO ON ; (or OFF, as you wish)
  70591.   INPUT 20 gin:
  70592.   IF FAIL STOP 1 {Failure to get Login prompt}
  70593.   OUTPUT root\13
  70594.   INPUT 5 word:
  70595.   IF FAIL STOP 1 {Failure to get password prompt}
  70596.   SET INPUT TIMEOUT QUIT
  70597.   INPUT 30 ]>
  70598.   OUTPUT who\13
  70599.   INPUT 10 ]>
  70600.   OUTPUT date\13
  70601.   INPUT 10 ]>
  70602.   OUTPUT who am i\13
  70603.   INPUT 10 ]>
  70604.   OUTPUT jobs -l\13
  70605.  
  70606. >Anybody got any bright ideas?
  70607. >
  70608. Read the manual?
  70609.  
  70610.   Frank da Cruz and Christine M. Gianone, "Using C-Kermit", Digital Press /
  70611.   Butterworth-Heinemann, Woburn, MA, 1993, 514 pages, ISBN 1-55558-108-0
  70612.  
  70613.   US single-copy price: $34.95; quantity discounts available.  Available in
  70614.   computer bookstores or directly from Columbia University:
  70615.  
  70616.     Kermit Development and Distribution
  70617.     Columbia University Academic Information Systems
  70618.     612 West 115th Street
  70619.     New York, NY  10025  USA
  70620.     Telephone: (USA) 212 854-3703
  70621.  
  70622.   Domestic and overseas orders accepted.  Price: $34.95 (US, Canada, and
  70623.   Mexico), $45 elsewhere.  Orders may be paid by MasterCard or Visa, or
  70624.   prepaid by check in US dollars.  Add $35 bank fee for checks not drawn on
  70625.   a US bank.  Price includes shipping.  Do not include sales tax.
  70626.   Inquire about quantity discounts.
  70627.  
  70628.   You can also order by phone from the publisher, Digital Press /
  70629.   Butterworth-Heinemann, with MasterCard, Visa, or American Express:
  70630.  
  70631.     +1 800 366-2665 (Woburn, Massachusetts office for USA & Canada)
  70632.     +1 800 665-1148 (Logan Bros, Winnepeg, Manitoba office for Canada)
  70633.     +44 993 58521   (Rushden, England office for Europe)
  70634.     +61 2 372-5511  (Chatswood, NSW office for Australia & New Zealand)
  70635.     +65 220-3684    (Singapore office for Asia)
  70636.  
  70637.   A German-language edition is also available:
  70638.  
  70639.     Frank da Cruz and Christine M. Gianone, "C-Kermit - Einfuehrung und
  70640.     Referenz", Verlag Heinz Heise, Hannover, Germany (1994).
  70641.     ISBN 3-88229-023-4.  Deutsch von Gisbert W. Selke.  Price: DM 90,00.  
  70642.     Verlag Heinz Heise GmbH & Co. KG, Helstorfer Strasse 7, D-30625 Hannover.
  70643.     Tel. +49 (05 11) 53 52-0, Fax. +49 (05 11) 53 53-1 29.
  70644.  
  70645. - Frank
  70646.  
  70647. P.S. I sympathize with people who don't like the SCRIPT command.  Once the
  70648. INPUT/OUTPUT/IF/GOTO/FOR/WHILE/etc style of script programming was added to
  70649. C-Kermit in version 5A, I was tempted to yank it out, but of course I could
  70650. not because many people depended on it.  People who want to write new
  70651. scripts, however, are encouraged to use the new features rather than the
  70652. old SCRIPT command unless they are totally comfortable with the SCRIPT
  70653. command and its limitations.
  70654.  
  70655. From news@columbia.edu Wed Jan  4 14:35:25 1995
  70656. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19837
  70657.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 4 Jan 1995 09:35:28 -0500
  70658. Received: by apakabar.cc.columbia.edu id AA19448
  70659.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 4 Jan 1995 09:35:27 -0500
  70660. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  70661. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  70662. Newsgroups: comp.protocols.kermit.misc
  70663. Subject: Re: new kermit docs
  70664. Date: 4 Jan 1995 14:35:25 GMT
  70665. Organization: Columbia University
  70666. Lines: 20
  70667. Message-Id: <3eebnd$ivm@apakabar.cc.columbia.edu>
  70668. References: <3ed2k9$52i@sgi.iunet.it>
  70669. Nntp-Posting-Host: watsun.cc.columbia.edu
  70670. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  70671.  
  70672. In article <3ed2k9$52i@sgi.iunet.it>,
  70673. Gianluca Attura  <mc8114@mclink.it> wrote:
  70674. >I wish to know if, in any form, I can find the docs about the new 
  70675. >Kermit structure, the long packets and the APC capabilities.
  70676. >
  70677. Long packets are not new.  They are documented in the Kermit protocol
  70678. specification:
  70679.  
  70680.   Frank da Cruz, "Kermit, A File Transfer Protocol", Digital Press,
  70681.   Bedford, MA, 1987, 379 pages, ISBN 0-932376-88-6.
  70682.  
  70683. The *use* of long packets is documented in the user manuals for each
  70684. Kermit program, such as "Using MS-DOS Kermit", "Using C-Kermit".
  70685.  
  70686. APC capabilities are relatively recent.  They are documented in the
  70687. update notes that come with MS-DOS Kermit 3.13 or later (KERMIT.UPD),
  70688. C-Kermit 5A(190) or later (CKERMIT.INF for OS/2, ckcker.upd for UNIX,
  70689. VMS, etc).
  70690.  
  70691. - Frank
  70692.  
  70693. From news@columbia.edu Wed Jan  4 14:39:32 1995
  70694. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20168
  70695.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 4 Jan 1995 09:39:34 -0500
  70696. Received: by apakabar.cc.columbia.edu id AA19633
  70697.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 4 Jan 1995 09:39:33 -0500
  70698. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  70699. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  70700. Newsgroups: comp.protocols.kermit.misc
  70701. Subject: Re: Kermit newbie
  70702. Date: 4 Jan 1995 14:39:32 GMT
  70703. Organization: Columbia University
  70704. Lines: 33
  70705. Message-Id: <3eebv4$j5f@apakabar.cc.columbia.edu>
  70706. References: <Pine.SUN.3.91.950103233928.7771A-100000@cloud9.net>
  70707. Nntp-Posting-Host: watsun.cc.columbia.edu
  70708. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  70709.  
  70710. In article <Pine.SUN.3.91.950103233928.7771A-100000@cloud9.net>,
  70711. James Leftwich  <leftwich@cloud9.net> wrote:
  70712. >I want to download files from my UNIX account to DOS.  I have been using
  70713. >a dated modem program (CrossTalk).  I know a little ProComm too.
  70714. >
  70715. >When I invoke Kermit once in my UNIX shell it comes up C-Kermit>.  I
  70716. >enter 'receive <file name>'.  After a long delay I get a 'too many 
  70717. >retries' message.
  70718. >
  70719. >Can someone help or recommend a *brief* guide to Kermit (I ftp'ed an
  70720. >enormous MSKermit.doc and the faq file wasn't terribly helpful).
  70721. >
  70722. When the "UNIX shell comes up C-Kermit>", that's called a prompt.
  70723. Just above the prompt it said:
  70724.  
  70725.   Type ? or HELP for help
  70726.  
  70727. Did you try that?
  70728.  
  70729. In any case, if you think about it for a second, if you want to download
  70730. a file, you have to tell the software the name of the file to be downloaded.
  70731. So, for example, if the file's name was "oofa.txt", you would type, in
  70732. response to the C-Kermit> prompt:
  70733.  
  70734.   send oofa.txt
  70735.  
  70736. Then you would instruct your terminal program to receive the file.
  70737. Obviously (I hope), you must also instruct your terminal program to use
  70738. Kermit protocol.
  70739.  
  70740. For further information, please read the pertinent manuals.
  70741.  
  70742. - Frank
  70743.  
  70744. From news@columbia.edu Wed Jan  4 15:35:11 1995
  70745. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28711
  70746.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 4 Jan 1995 11:06:21 -0500
  70747. Received: by apakabar.cc.columbia.edu id AA25918
  70748.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 4 Jan 1995 11:06:19 -0500
  70749. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news2.near.net!satisfied.elf.com!rpi!luy
  70750. From: luy@cayley.math.rpi.edu (Ya Yan Lu ~{B=QEQT~})
  70751. Newsgroups: comp.protocols.kermit.misc
  70752. Subject: PPP support?
  70753. Date: 4 Jan 1995 15:35:11 GMT
  70754. Organization: Rensselaer Polytechnic Institute, Troy NY, USA
  70755. Lines: 29
  70756. Distribution: world
  70757. Message-Id: <3eef7f$39a@usenet.rpi.edu>
  70758. Nntp-Posting-Host: cayley.math.rpi.edu
  70759. Keywords: PPP, Kermit, TCP/IP
  70760. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  70761.  
  70762. I have been using mskermit (version 3.13 and 3.14) to connect to the
  70763. UNIX account through a modem from my PC at home. The Xyplex terminal
  70764. server for the UNIX account supports SLIP, CSLIP, PPP. Using the
  70765. packet drivers slipper.exe, cslipper.exe, I have succesfully made the
  70766. connection though the internel TCP/IP support of mskermit. It works
  70767. great.
  70768.  
  70769. However, it seems that mskermit does not work with PPP. I am using the
  70770. Merit packet driver ppp.exe (from EtherPPP.zip). The parameters that I
  70771. set for the TCP connection must be right, since the same parameters 
  70772. (IP addresses, gateway, nameservers, etc) work well with NCSA telnet,
  70773. CUTCP, WATTCP. Going through the documents of kermit, I only find that
  70774. mskermit supports Telbits(spelling?) PPP. Am I still doing something
  70775. wrong? 
  70776.  
  70777. BTW, using my 1.44k (V.32bis) modem (with V.42 error correction,
  70778. V.42bis data compression enabled), I can still only get ~1.2kbytes/s
  70779. for down loading (in CSLIP) for pre-compressed files (zip files). I
  70780. have tried everything: (a) set the modem right (b) set receive
  70781. packet-length, window, (c) control unprefixed (except for 0, 1, 155).
  70782. On the same line, with ftp from NCSA or CUTCP, 1.7kb/s can be achived.
  70783.  
  70784.  
  70785.  
  70786. -- 
  70787. *--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*
  70788. _Y_a _Y_a_n _L_u   Phone:(518)276-2677   Fax:(518)276-4824   E-mail:luy@rpi.edu
  70789. ~{B=QEQT~}  Dept of Mathematical Sciences,  Rensselaer Polytechnic Institute
  70790. *--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*
  70791.  
  70792. From news@columbia.edu Wed Jan  4 16:42:01 1995
  70793. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08748
  70794.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 4 Jan 1995 12:38:46 -0500
  70795. Received: by apakabar.cc.columbia.edu id AA03100
  70796.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 4 Jan 1995 12:38:45 -0500
  70797. Path: news.columbia.edu!panix!bloom-beacon.mit.edu!gatech!howland.reston.ans.net!news.moneng.mei.com!uwm.edu!caen!night.primate.wisc.edu!kbad.eglin.af.mil!rpi!luy
  70798. From: luy@cayley.math.rpi.edu (Ya Yan Lu ~{B=QEQT~})
  70799. Newsgroups: comp.protocols.kermit.misc
  70800. Subject: cmsg cancel <3eef7f$39a@usenet.rpi.edu>
  70801. Control: cancel <3eef7f$39a@usenet.rpi.edu>
  70802. Date: 4 Jan 1995 16:42:01 GMT
  70803. Organization: Rensselaer Polytechnic Institute, Troy NY, USA
  70804. Lines: 6
  70805. Message-Id: <3eej4p$5i6@usenet.rpi.edu>
  70806. Nntp-Posting-Host: cayley.math.rpi.edu
  70807. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  70808.  
  70809. cancel <3eef7f$39a@usenet.rpi.edu> in newsgroup comp.protocols.kermit.misc
  70810. -- 
  70811. *--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*
  70812. _Y_a _Y_a_n _L_u   Phone:(518)276-2677   Fax:(518)276-4824   E-mail:luy@rpi.edu
  70813. ~{B=QEQT~}  Dept of Mathematical Sciences,  Rensselaer Polytechnic Institute
  70814. *--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*
  70815.  
  70816. From news@columbia.edu Wed Jan  4 16:47:11 1995
  70817. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23095
  70818.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 4 Jan 1995 15:22:40 -0500
  70819. Received: by apakabar.cc.columbia.edu id AA26485
  70820.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 4 Jan 1995 15:22:38 -0500
  70821. Path: news.columbia.edu!panix!news.mathworks.com!hookup!swrinde!howland.reston.ans.net!newsserver.jvnc.net!cmi.hahnemann.edu!news
  70822. From: BRENNAN@HAL.HAHNEMANN.EDU (A. Andrew Brennan)
  70823. Newsgroups: comp.protocols.kermit.misc
  70824. Subject: ESC[0m ???
  70825. Date: 4 Jan 1995 16:47:11 GMT
  70826. Organization: Hahnemann University
  70827. Lines: 17
  70828. Distribution: world
  70829. Message-Id: <3eejef$3vs@cmi.hahnemann.edu>
  70830. Nntp-Posting-Host: hal.hahnemann.edu
  70831. X-News-Reader: VMS NEWS v1.25
  70832. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  70833.  
  70834.    Ok, I've not played with ANSI sequences much - but dug out the trusty 
  70835.    "Using MS-DOS Kermit" text (both for the sequences and the ASCII tables) 
  70836.    to tackle today's problem.
  70837.  
  70838.    I'm adding a "diskquota display" to our menu system and would like to 
  70839.    have the "you're over your quota, delete files now" message come up in
  70840.    red.  No problem - "ESC[0;31m DELETE FILES ESC[0m", right?  Now, on the
  70841.    DECterm I use it's a RED DELETE and back to normal colors.  Kermit (in
  70842.    both 3.13 and 3.14) doesn't reset to the original colors with that ANSI
  70843.    sequence, although the text appears to indicate that it will.
  70844.  
  70845.    Any idea on this one?  Is it a Kermit problem or simply my own bit of
  70846.    ANSI newbie-dom showing (in which case there's a better sequence for 
  70847.    resetting colors, right?  :^)
  70848.  
  70849.    andrew.  (brennan@hal.hahnemann.edu)
  70850.  
  70851.  
  70852. From news@columbia.edu Wed Jan  4 22:43:37 1995
  70853. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07968
  70854.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 4 Jan 1995 17:43:43 -0500
  70855. Received: by apakabar.cc.columbia.edu id AA07214
  70856.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 4 Jan 1995 17:43:39 -0500
  70857. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  70858. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  70859. Newsgroups: comp.protocols.kermit.misc
  70860. Subject: Re: ESC[0m ???
  70861. Date: 4 Jan 1995 22:43:37 GMT
  70862. Organization: Columbia University
  70863. Lines: 30
  70864. Message-Id: <3ef8ap$71c@apakabar.cc.columbia.edu>
  70865. References: <3eejef$3vs@cmi.hahnemann.edu>
  70866. Nntp-Posting-Host: watsun.cc.columbia.edu
  70867. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  70868.  
  70869. In article <3eejef$3vs@cmi.hahnemann.edu>,
  70870. A. Andrew Brennan <BRENNAN@HAL.HAHNEMANN.EDU> wrote:
  70871. >   I'm adding a "diskquota display" to our menu system and would like to 
  70872. >   have the "you're over your quota, delete files now" message come up in
  70873. >   red.  No problem - "ESC[0;31m DELETE FILES ESC[0m", right?  Now, on the
  70874. >   DECterm I use it's a RED DELETE and back to normal colors.  Kermit (in
  70875. >   both 3.13 and 3.14) doesn't reset to the original colors with that ANSI
  70876. >   sequence, although the text appears to indicate that it will.
  70877. >
  70878. >   Any idea on this one?  Is it a Kermit problem or simply my own bit of
  70879. >   ANSI newbie-dom showing (in which case there's a better sequence for 
  70880. >   resetting colors, right?  :^)
  70881. >
  70882. From the KERMIT.UPD for version 3.14:
  70883.  
  70884. SET TERMINAL COLOR 20
  70885.   If Kermit receives a "reset visual attributes" escape sequence (CSI 0 m)
  70886.   from the host, this does not affect the screen coloration.  However, some
  70887.   applications expect it to restore the default fore- and background colors.
  70888.   SET TERMINAL COLOR 20 tells Kermit to do this.  v3.14.
  70889.  
  70890. By the way, if you have any official DEC documentation that says this should
  70891. be the default behavior, we'd like to see it.  Our DEC VT manuals list the
  70892. actions to be taken on CSI 0 m very explicitly, and none of them affect the
  70893. coloration.
  70894.  
  70895. - Frank
  70896.  
  70897. x
  70898. x
  70899.  
  70900. From news@columbia.edu Wed Jan  4 23:25:24 1995
  70901. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21973
  70902.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 4 Jan 1995 20:57:47 -0500
  70903. Received: by apakabar.cc.columbia.edu id AA18531
  70904.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 4 Jan 1995 20:57:46 -0500
  70905. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!noc.near.net!eisner!burns
  70906. From: burns@eisner.decus.org (Scott Burns)
  70907. Newsgroups: comp.protocols.kermit.misc
  70908. Subject: C-Kermit OS/2 (16Bit) Under WinNT V3.5
  70909. Message-Id: <1995Jan4.182524.8447@eisner>
  70910. Date: 4 Jan 95 18:25:24 -0500
  70911. Organization: DECUServe
  70912. Lines: 11
  70913. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  70914.  
  70915. While awaiting C-Kermit for Win-NT someone said to try the 16bit
  70916. C-Kermit for OS/2. In trying to run the CKOKER16.EXE file I get the error:
  70917.  
  70918. Error ordinal not found CKOKER16->OS2SM.10
  70919.  
  70920. Anyone know if this will work or what this error means ? I tried copying all
  70921. DLL's to the Os2LibPath directory but this did not work either and I think
  70922. those are only for TCP/IP anyway ?
  70923.  
  70924. scott
  70925. burns@eisner.decus.org
  70926.  
  70927. From news@columbia.edu Thu Jan  5 02:58:42 1995
  70928. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25902
  70929.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 4 Jan 1995 21:58:45 -0500
  70930. Received: by apakabar.cc.columbia.edu id AA21886
  70931.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 4 Jan 1995 21:58:43 -0500
  70932. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  70933. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  70934. Newsgroups: comp.protocols.kermit.misc
  70935. Subject: Re: C-Kermit OS/2 (16Bit) Under WinNT V3.5
  70936. Date: 5 Jan 1995 02:58:42 GMT
  70937. Organization: Columbia University
  70938. Lines: 22
  70939. Message-Id: <3efn92$lbs@apakabar.cc.columbia.edu>
  70940. References: <1995Jan4.182524.8447@eisner>
  70941. Nntp-Posting-Host: watsun.cc.columbia.edu
  70942. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  70943.  
  70944. In article <1995Jan4.182524.8447@eisner>,
  70945. Scott Burns <burns@eisner.decus.org> wrote:
  70946. >While awaiting C-Kermit for Win-NT someone said to try the 16bit
  70947. >C-Kermit for OS/2. In trying to run the CKOKER16.EXE file I get the error:
  70948. >
  70949. >Error ordinal not found CKOKER16->OS2SM.10
  70950. >
  70951. >Anyone know if this will work or what this error means ? I tried copying all
  70952. >DLL's to the Os2LibPath directory but this did not work either and I think
  70953. >those are only for TCP/IP anyway ?
  70954. >
  70955. >scott
  70956. >burns@eisner.decus.org
  70957.  
  70958. OS2SM is a library that WinNT 3.5 does not provide.  Therefore, C-Kermit 
  70959. will not work on Windows NT.
  70960.  
  70961. Unfortunately, you will have to wait for an NT specific version.
  70962. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  70963. "C-Kermit: available on more platforms than any other communications software."
  70964. "Kermit FTP: sending files whenever and wherever they are needed."
  70965.   OS/2 version 5A(190): ftp://kermit.columbia.edu/kermit/archives/cko190.zip 
  70966.  
  70967. From news@columbia.edu Thu Jan  5 12:25:15 1995
  70968. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13999
  70969.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 5 Jan 1995 07:30:38 -0500
  70970. Received: by apakabar.cc.columbia.edu id AA17386
  70971.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 5 Jan 1995 07:30:37 -0500
  70972. Path: news.columbia.edu!sol.ctr.columbia.edu!newsxfer.itd.umich.edu!gatech!swrinde!pipex!uunet!hearye.mlb.semi.harris.com!hawk.csd.harris.com!amber!tom
  70973. From: tom@ssd.csd.harris.com (Tom Horsley)
  70974. Newsgroups: comp.protocols.kermit.misc
  70975. Subject: Re: C-Kermit OS/2 (16Bit) Under WinNT V3.5
  70976. Date: 05 Jan 1995 12:25:15 GMT
  70977. Organization: Harris Computer Systems Corporation
  70978. Lines: 12
  70979. Message-Id: <TOM.95Jan5072515@amber.ssd.csd.harris.com>
  70980. References: <1995Jan4.182524.8447@eisner> <3efn92$lbs@apakabar.cc.columbia.edu>
  70981. Reply-To: Tom.Horsley@mail.csd.harris.com
  70982. Nntp-Posting-Host: amber.ssd.csd.harris.com
  70983. In-Reply-To: jaltman@watsun.cc.columbia.edu's message of 5 Jan 1995 02:58:42 GMT
  70984. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  70985.  
  70986. I have been using the regular MSDOS kermit under Windows NT, and if you don't
  70987. try to push it too hard it works fine (I notice a tendency of it to drop
  70988. characters if I try any speed faster than 19.2K). Presumably a native version
  70989. for NT would have less emulation overhead and could run at much higher speeds,
  70990. but the DOS version is fine for me.
  70991. --
  70992. --
  70993. Tom.Horsley@mail.csd.harris.com
  70994. Home: 511 Kingbird Circle Delray Beach FL  33444
  70995. Work: Harris Computers, 2101 W. Cypress Creek Rd. Ft. Lauderdale FL  33309
  70996. Support Project Vote Smart! They need your support in non-election years too!
  70997. (email pvs@neu.edu, 1-800-622-SMART, gopher://chaos.dac.neu.edu:1112/00/pvs.txt)
  70998.  
  70999. From news@columbia.edu Thu Jan  5 15:12:14 1995
  71000. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01031
  71001.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 5 Jan 1995 13:19:39 -0500
  71002. Received: by apakabar.cc.columbia.edu id AA20780
  71003.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 5 Jan 1995 13:19:37 -0500
  71004. Path: news.columbia.edu!panix!bloom-beacon.mit.edu!news.starnet.net!wupost!psuvax1!news.cc.swarthmore.edu!netnews.upenn.edu!netnews.CC.Lehigh.EDU!ns1.CC.Lehigh.EDU!not-for-mail
  71005. From: jl0h@ns1.CC.Lehigh.EDU (JOHN DONALD LAESSIG)
  71006. Newsgroups: comp.protocols.kermit.misc
  71007. Subject: File transfer between two+ PCs using TCP/IP?
  71008. Date: 5 Jan 1995 10:12:14 -0500
  71009. Organization: Lehigh University
  71010. Lines: 10
  71011. Message-Id: <3eh28e$2q85@ns1.CC.Lehigh.EDU>
  71012. Nntp-Posting-Host: ns1.cc.lehigh.edu
  71013. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  71014.  
  71015. Can Kermit be used simply to transfer files between two or more PCs with
  71016. ethernet boards using TCP/IP?  What is the simplest method, and what is
  71017. needed?
  71018.  
  71019. Thanks for any help.
  71020. .---John D. Laessig-------.-------------------------------------------.
  71021. |   Physics Building #16  |    Email Address: jl0h@lehigh.edu         |
  71022. |   Lehigh University     |                                           |
  71023. `---Bethlehem, PA 18015---^-------------------------------------------'
  71024.  
  71025.  
  71026. From news@columbia.edu Thu Jan  5 18:47:16 1995
  71027. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07348
  71028.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 5 Jan 1995 14:36:49 -0500
  71029. Received: by apakabar.cc.columbia.edu id AA26469
  71030.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 5 Jan 1995 14:36:47 -0500
  71031. Path: news.columbia.edu!panix!news.mathworks.com!hookup!swrinde!howland.reston.ans.net!math.ohio-state.edu!jussieu.fr!univ-lyon1.fr!swidir.switch.ch!scsing.switch.ch!news.dfn.de!zeus.rbi.informatik.uni-frankfurt.de!terra.wiwi.uni-frankfurt.de!news.th-darmstadt.de!zib-berlin.de!informatik.tu-muenchen.de!brs
  71032. From: brs@regent.e-technik.tu-muenchen.de (Bernd Seitter)
  71033. Newsgroups: comp.protocols.kermit.misc
  71034. Subject: MacKermit problems
  71035. Date: 5 Jan 1995 18:47:16 GMT
  71036. Organization: Technische Universitaet Muenchen, Germany
  71037. Lines: 41
  71038. Distribution: world
  71039. Message-Id: <3eherk$c32@hpsystem1.informatik.tu-muenchen.de>
  71040. Nntp-Posting-Host: reggae.regent.e-technik.tu-muenchen.de
  71041. Keywords: MacKermit
  71042. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  71043.  
  71044. hoi !
  71045.  
  71046. i have problems with running a script with MacKermit.
  71047.  
  71048. the script looks like this :
  71049.     open read foo.bar
  71050.     read \%a
  71051.     echo \%a
  71052.  
  71053. the file exists and contains 2 lines, like this
  71054.  
  71055.     this is test
  71056.     end of test
  71057.  
  71058. MacKermit 0.99(190) 11/26/93 16:12 behaves like this :
  71059.  
  71060. when running the script :
  71061.     Unknown IO error : -51
  71062.     zclose(): i dont know what kind of file this is : 9
  71063.  
  71064.  
  71065. MacKermit 0.991(190) 08/19/94 10:01 behaves like this :
  71066.  
  71067. when running the script :
  71068.     i'm transfered to MacBugs : mberto+00A2
  71069.  
  71070.     (by the way : this happens everytime i try to run a script, even
  71071.     the script contains only a comment ...)
  71072.  
  71073. on the command line everything works fine with this version of
  71074. kermit (0.991(190)).
  71075.  
  71076. any ideas or help out there ?
  71077.  
  71078. thank you very much !!
  71079. -- 
  71080. /* Bernd Seitter,  :-) Hey, you caught me in a coma (slash/rose)            */
  71081. /* brs@regent.e-technik.tu-muenchen.de,  Technische Universitaet Muenchen   */
  71082. --
  71083. /* Bernd Seitter,  :-) Hey, you caught me in a coma (slash/rose)            */
  71084. /* brs@regent.e-technik.tu-muenchen.de,  Technische Universitaet Muenchen   */
  71085.  
  71086. From news@columbia.edu Thu Jan  5 21:23:00 1995
  71087. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23215
  71088.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 5 Jan 1995 17:44:34 -0500
  71089. Received: by apakabar.cc.columbia.edu id AA12028
  71090.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 5 Jan 1995 17:44:33 -0500
  71091. Newsgroups: comp.protocols.kermit.misc
  71092. Path: news.columbia.edu!sol.ctr.columbia.edu!news.moneng.mei.com!hookup!swrinde!gatech!newsfeed.pitt.edu!uunet!hearst.acc.Virginia.EDU!murdoch!fulton.seas.Virginia.EDU!esh6h
  71093. From: esh6h@fulton.seas.Virginia.EDU (Erik Hatcher)
  71094. Subject: Re: MacKermit problems
  71095. Message-Id: <D1yBEC.3q1@murdoch.acc.Virginia.EDU>
  71096. Keywords: MacKermit
  71097. Sender: usenet@murdoch.acc.Virginia.EDU
  71098. Organization: University of Virginia
  71099. References: <3eherk$c32@hpsystem1.informatik.tu-muenchen.de>
  71100. Date: Thu, 5 Jan 1995 21:23:00 GMT
  71101. Lines: 31
  71102. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  71103.  
  71104. In article <3eherk$c32@hpsystem1.informatik.tu-muenchen.de>,
  71105. Bernd Seitter <brs@regent.e-technik.tu-muenchen.de> wrote:
  71106. >hoi !
  71107. >
  71108. >i have problems with running a script with MacKermit.
  71109. >
  71110. >the script looks like this :
  71111. >    open read foo.bar
  71112. >    read \%a
  71113. >    echo \%a
  71114. >
  71115. >the file exists and contains 2 lines, like this
  71116. >
  71117. >    this is test
  71118. >    end of test
  71119. >
  71120.  
  71121. I had similar problems with OpenVMS Kermit and the
  71122. problem was resolved by doing a...
  71123.  
  71124. set file type text
  71125.  
  71126. before opening the file.  It may or may not be
  71127. the same problem.
  71128.  
  71129.     Erik
  71130. --
  71131. Erik Hatcher                           + "But every now and then we just have
  71132. http://fulton.seas.virginia.edu/~esh6h |  to howl with the wolves." 
  71133.                                        |        - Werner Heisenberg
  71134. ---------------------------------------+-------------------------------------
  71135.  
  71136. From news@columbia.edu Thu Jan  5 23:29:31 1995
  71137. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26619
  71138.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 5 Jan 1995 18:29:37 -0500
  71139. Received: by apakabar.cc.columbia.edu id AA15739
  71140.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 5 Jan 1995 18:29:35 -0500
  71141. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  71142. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  71143. Newsgroups: comp.protocols.kermit.misc
  71144. Subject: Re: File transfer between two+ PCs using TCP/IP?
  71145. Date: 5 Jan 1995 23:29:31 GMT
  71146. Organization: Columbia University
  71147. Lines: 25
  71148. Message-Id: <3ehvcr$fbo@apakabar.cc.columbia.edu>
  71149. References: <3eh28e$2q85@ns1.cc.lehigh.edu>
  71150. Nntp-Posting-Host: watsun.cc.columbia.edu
  71151. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  71152.  
  71153. In article <3eh28e$2q85@ns1.cc.lehigh.edu>,
  71154. JOHN DONALD LAESSIG <jl0h@ns1.CC.Lehigh.EDU> wrote:
  71155. >Can Kermit be used simply to transfer files between two or more PCs with
  71156. >ethernet boards using TCP/IP?  What is the simplest method, and what is
  71157. >needed?
  71158. >
  71159. Configure each PC's Kermit program for TCP/IP according to the instructions
  71160. in the manual, "Using MS-DOS Kermit", Chapter 17.
  71161.  
  71162. On one PC, tell Kermit to "set port tcp *", which means wait for an
  71163. incoming TCP/IP connection, and then "server" to put it in Kermit
  71164. server mode.
  71165.  
  71166. Then on the other PC, tell Kermit to "set port tcp xxxx", where xxxx is the
  71167. IP address of the first PC, and then just give it SEND, GET, REMOTE
  71168. DIRECTORY, and similar commands.
  71169.  
  71170. You can even transfer entire directory trees from one PC to another in
  71171. this way.  Use the XSEND utility that is supplied with MS-DOS Kermit
  71172. (or at least it will be supplied with version 3.14 -- in earlier versions
  71173. it was on a separate "utilities" diskette).  You can ftp the XSEND
  71174. utility from kermit.columbia.edu, directory kermit/a, files msixse.*.
  71175. The binary is in kermit/bin/msixse.exe.
  71176.  
  71177. - Frank
  71178.  
  71179. From news@columbia.edu Thu Jan  5 04:21:40 1995
  71180. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14037
  71181.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 6 Jan 1995 13:01:21 -0500
  71182. Received: by apakabar.cc.columbia.edu id AA18635
  71183.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 6 Jan 1995 13:01:19 -0500
  71184. Path: news.columbia.edu!panix!news.mathworks.com!uhog.mit.edu!news.mtholyoke.edu!nntp.et.byu.edu!news.provo.novell.com!news.cs.utah.edu!cc.usu.edu!jrd
  71185. From: jrd@cc.usu.edu (Joe Doupnik)
  71186. Newsgroups: comp.protocols.kermit.misc
  71187. Subject: Re: File transfer between two+ PCs using TCP/IP?
  71188. Message-Id: <1995Jan5.102140.36604@cc.usu.edu>
  71189. Date: 5 Jan 95 10:21:40 MDT
  71190. References: <3eh28e$2q85@ns1.CC.Lehigh.EDU>
  71191. Organization: Utah State University
  71192. Lines: 13
  71193. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  71194.  
  71195. In article <3eh28e$2q85@ns1.CC.Lehigh.EDU>, jl0h@ns1.CC.Lehigh.EDU (JOHN DONALD LAESSIG) writes:
  71196. > Can Kermit be used simply to transfer files between two or more PCs with
  71197. > ethernet boards using TCP/IP?  What is the simplest method, and what is
  71198. > needed?
  71199. ------------
  71200.     Yes, and not only using TCP/IP but also NetBIOS and some other
  71201. networking channels. One is placed in Telnet listen mode, SET PORT TCP *,
  71202. the other is a regular client. For file transfer put the listener in
  71203. Kermit SERVER mode. It's in the manuals and release notes. Try the 3.14
  71204. beta; it's really fast between PCs this way (I clock about 70KB/sec between
  71205. 486's).
  71206.     Joe D.
  71207.  
  71208.  
  71209. From news@columbia.edu Wed Jan  4 07:29:32 1995
  71210. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16098
  71211.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 6 Jan 1995 13:28:53 -0500
  71212. Received: by apakabar.cc.columbia.edu id AA20231
  71213.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 6 Jan 1995 13:28:51 -0500
  71214. Path: news.columbia.edu!panix!news.mathworks.com!uhog.mit.edu!news.mtholyoke.edu!nntp.et.byu.edu!news.provo.novell.com!news.cs.utah.edu!cc.usu.edu!jrd
  71215. From: jrd@cc.usu.edu (Joe Doupnik)
  71216. Newsgroups: comp.protocols.kermit.misc
  71217. Subject: Re: ESC[0m ???
  71218. Message-Id: <1995Jan4.132932.36513@cc.usu.edu>
  71219. Date: 4 Jan 95 13:29:32 MDT
  71220. References: <3eejef$3vs@cmi.hahnemann.edu>
  71221. Distribution: world
  71222. Organization: Utah State University
  71223. Lines: 24
  71224. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  71225.  
  71226. In article <3eejef$3vs@cmi.hahnemann.edu>, BRENNAN@HAL.HAHNEMANN.EDU (A. Andrew Brennan) writes:
  71227. >    Ok, I've not played with ANSI sequences much - but dug out the trusty 
  71228. >    "Using MS-DOS Kermit" text (both for the sequences and the ASCII tables) 
  71229. >    to tackle today's problem.
  71230. >    I'm adding a "diskquota display" to our menu system and would like to 
  71231. >    have the "you're over your quota, delete files now" message come up in
  71232. >    red.  No problem - "ESC[0;31m DELETE FILES ESC[0m", right?  Now, on the
  71233. >    DECterm I use it's a RED DELETE and back to normal colors.  Kermit (in
  71234. >    both 3.13 and 3.14) doesn't reset to the original colors with that ANSI
  71235. >    sequence, although the text appears to indicate that it will.
  71236. >    Any idea on this one?  Is it a Kermit problem or simply my own bit of
  71237. >    ANSI newbie-dom showing (in which case there's a better sequence for 
  71238. >    resetting colors, right?  :^)
  71239. -----------
  71240.     Display attributes, the CSI Pn; Pn..; Pn m command, lacks color
  71241. information. Read what attributes are being controlled and the matter
  71242. should be clearer. The ANSI.SYS TSR for DOS has little relationship with
  71243. the comms world. But many of us have used it for color information in lieu
  71244. of an acceptable substitute. MS-DOS Kermit v3.14 beta has a command to zap
  71245. colors to defaults upon a CSI m; use SET TERM COLOR ? to see, or read the
  71246. docs in the beta archive file.
  71247.     Joe D.
  71248.  
  71249. From news@columbia.edu Wed Jan  4 05:00:17 1995
  71250. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16132
  71251.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 6 Jan 1995 13:29:14 -0500
  71252. Received: by apakabar.cc.columbia.edu id AA20276
  71253.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 6 Jan 1995 13:29:13 -0500
  71254. Path: news.columbia.edu!panix!news.mathworks.com!uhog.mit.edu!news.mtholyoke.edu!nntp.et.byu.edu!news.provo.novell.com!news.cs.utah.edu!cc.usu.edu!jrd
  71255. From: jrd@cc.usu.edu (Joe Doupnik)
  71256. Newsgroups: comp.protocols.kermit.misc
  71257. Subject: Re: PPP support?
  71258. Message-Id: <1995Jan4.110017.36484@cc.usu.edu>
  71259. Date: 4 Jan 95 11:00:17 MDT
  71260. References: <3eef7f$39a@usenet.rpi.edu>
  71261. Distribution: world
  71262. Organization: Utah State University
  71263. Lines: 45
  71264. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  71265.  
  71266. In article <3eef7f$39a@usenet.rpi.edu>, luy@cayley.math.rpi.edu (Ya Yan Lu ~{B=QEQT~}) writes:
  71267. > I have been using mskermit (version 3.13 and 3.14) to connect to the
  71268. > UNIX account through a modem from my PC at home. The Xyplex terminal
  71269. > server for the UNIX account supports SLIP, CSLIP, PPP. Using the
  71270. > packet drivers slipper.exe, cslipper.exe, I have succesfully made the
  71271. > connection though the internel TCP/IP support of mskermit. It works
  71272. > great.
  71273. > However, it seems that mskermit does not work with PPP. I am using the
  71274. > Merit packet driver ppp.exe (from EtherPPP.zip). The parameters that I
  71275. > set for the TCP connection must be right, since the same parameters 
  71276. > (IP addresses, gateway, nameservers, etc) work well with NCSA telnet,
  71277. > CUTCP, WATTCP. Going through the documents of kermit, I only find that
  71278. > mskermit supports Telbits(spelling?) PPP. Am I still doing something
  71279. > wrong? 
  71280. > BTW, using my 1.44k (V.32bis) modem (with V.42 error correction,
  71281. > V.42bis data compression enabled), I can still only get ~1.2kbytes/s
  71282. > for down loading (in CSLIP) for pre-compressed files (zip files). I
  71283. > have tried everything: (a) set the modem right (b) set receive
  71284. > packet-length, window, (c) control unprefixed (except for 0, 1, 155).
  71285. > On the same line, with ftp from NCSA or CUTCP, 1.7kb/s can be achived.
  71286. --------------
  71287.     As we've mentioned a number of times here and in the docs, MS-DOS
  71288. Kermit's internal TCP/IP stack works with
  71289.     a) Packet Drivers which present either an Ethernet (DIX flavor) or
  71290.        SLIP interface,
  71291.     b) Novell ODI drivers, including SLIP_PPP,
  71292.     c) Telebit's PPP drivers (Packet Driver flavor and ODI flavor).
  71293.  
  71294.     There is no such thing as a standardized top level interface for
  71295. PPP drivers. Every one is vastly different, and almost completely undoc'd.
  71296.     I wish I could say something nice about Merit's Etherppp package,
  71297. but to be honest it has never ever run here. It hangs my PC every time as
  71298. it initializes, well before Kermit enters the picture, and I do know what 
  71299. I'm about in PCs.
  71300.     I think you will find the next beta has better SLIP performance,
  71301. but it's rather awkward for me to explore this locally. A lot, and that
  71302. does mean a lot, of work has been done to minimize the number of packets
  71303. appearing on the wires so that SLIP and PPP may work well. There is a
  71304. tradeoff between fewest packets and greatest throughput in the face of
  71305. packet losses, yet SLIP/PPP wants both. There are no canned cures for these 
  71306. conflicting requirements. And that means I won't entertain any silly bits/sec
  71307. contest such as we see with straight serial comms; it's just not that simple.
  71308.     Joe D.
  71309.  
  71310. From news@columbia.edu Tue Jan  3 15:57:03 1995
  71311. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16304
  71312.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 6 Jan 1995 13:30:30 -0500
  71313. Received: by apakabar.cc.columbia.edu id AA20412
  71314.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 6 Jan 1995 13:30:28 -0500
  71315. Path: news.columbia.edu!panix!news.mathworks.com!uhog.mit.edu!news.mtholyoke.edu!nntp.et.byu.edu!news.provo.novell.com!news.cs.utah.edu!cc.usu.edu!jrd
  71316. From: jrd@cc.usu.edu (Joe Doupnik)
  71317. Newsgroups: comp.protocols.kermit.misc
  71318. Subject: Re: new kermit docs
  71319. Message-Id: <1995Jan3.215703.36452@cc.usu.edu>
  71320. Date: 3 Jan 95 21:57:03 MDT
  71321. References: <3ed2k9$52i@sgi.iunet.it>
  71322. Organization: Utah State University
  71323. Lines: 10
  71324. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  71325.  
  71326. In article <3ed2k9$52i@sgi.iunet.it>, Gianluca Attura <mc8114@mclink.it> writes:
  71327. > I wish to know if, in any form, I can find the docs about the new 
  71328. > Kermit structure, the long packets and the APC capabilities.
  71329. ---------------
  71330.     APC is fully documented in the release notes accompanying MSK.
  71331. Long packets aren't new at all unless if one counts a decade ago as
  71332. new. The protocol details are spelled out in the definitive rule book:
  71333. the book "Kermit, a file transfer protocol" by Frank da Cruz. Referenced
  71334. in the official User's Manuals, amongst other places.
  71335.     Joe D.
  71336.  
  71337. From news@columbia.edu Fri Jan  6 20:50:40 1995
  71338. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28166
  71339.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 6 Jan 1995 15:52:18 -0500
  71340. Received: by apakabar.cc.columbia.edu id AA29803
  71341.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 6 Jan 1995 15:52:16 -0500
  71342. Path: news.columbia.edu!panix!news.mathworks.com!news.alpha.net!solaris.cc.vt.edu!swiss.ans.net!gatech!udel!stimpy.eecis.udel.edu!alexandr
  71343. From: alexandr@stimpy.eecis.udel.edu (Jerry Alexandratos)
  71344. Newsgroups: comp.protocols.kermit.misc
  71345. Subject: Help With Server & Con Redirection
  71346. Date: 6 Jan 1995 20:50:40 GMT
  71347. Organization: Mos Eisley Candy Store
  71348. Lines: 24
  71349. Message-Id: <3ekaf0$563@louie.udel.edu>
  71350. Nntp-Posting-Host: stimpy-fddi.udel.edu
  71351. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  71352.  
  71353.  
  71354. Okay, I want to log into a computer that has kermit running in server
  71355. mode.  Now, I want to do the unthinkable 8) and redirect the console. 
  71356. However, I'm not sure if this is possible with the setup that I have. 
  71357. Here's the lowdown:  one 386 running Linux, one running MS-DOS v5.0. 
  71358. On the dos machine I have it setup in server mode.  I'm coming in from
  71359. the Linux box.  The connection is being made over a tcpip connection. 
  71360. Here's where my problem is.  Since I have set port tcp *, it's not
  71361. really going through any serial port.  Thus, I can't use ctty to
  71362. redirct the output since this only works for serial ports.
  71363.  
  71364. Am I missing something?  Is there a way to do this?  Do I need a ctty
  71365. clone or something?  Does such a beast exist?  Am I the only one who's
  71366. ever thought of doing this?  Am I boring you with all of these
  71367. questions?
  71368.  
  71369. As always, all help is appreciated and thanks in advance...
  71370.  
  71371.         --Jerry
  71372.  
  71373. -- 
  71374. |>  Jerry Alexandratos             **  "vengo de la tierra del    <|
  71375. |>  alexandr@louie.udel.edu        **   fuego ten cuidado cuando  <|
  71376. |>  darkstar@chopin.udel.edu       **   llamas mi nombre..."      <|
  71377.  
  71378. From news@columbia.edu Fri Jan  6 18:24:36 1995
  71379. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29074
  71380.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 6 Jan 1995 16:02:43 -0500
  71381. Received: by apakabar.cc.columbia.edu id AA00522
  71382.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 6 Jan 1995 16:02:42 -0500
  71383. Path: news.columbia.edu!panix!news.mathworks.com!uhog.mit.edu!bloom-beacon.mit.edu!gatech!howland.reston.ans.net!news.sprintlink.net!uunet!hearst.acc.Virginia.EDU!gems.vcu.edu!agnew
  71384. From: agnew@gems.vcu.edu (Brainwave Surfer)
  71385. Newsgroups: comp.protocols.kermit.misc
  71386. Subject: 50 rows x 132 cols problem
  71387. Message-Id: <1995Jan6.142436.175@gems.vcu.edu>
  71388. Date: 6 Jan 95 14:24:36 -0400
  71389. Organization: Medical College of Virginia
  71390. Lines: 20
  71391. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  71392.  
  71393. Dear Fellow Kermitalolics,
  71394.  
  71395. I use 
  71396.  
  71397. RUN MODE 80,50
  71398.  
  71399. to make kermit give me 80 cols by 50 rows.  then I use set terminal/page=49
  71400. to preserve the 50 status line.
  71401.  
  71402. when the kermit goes to 132 cols, i go to 25 rows.  then it goes back
  71403. to 80 cols.  it stays 25 rows.  is there a way to force it back to 
  71404. 50 rows?
  71405.  
  71406. Jim
  71407.  
  71408.          /^^^\   \ /   Jim Agnew         | AGNEW@RUBY.VCU.EDU  (Internet)
  71409.         /      >  ||   Neurosurgery,     | AGNEW@VCUVAX        (Bitnet)
  71410.    /\_/     '   \  /   MCV-VCU           | This disc will self destruct in
  71411.  /________________>    Richmond, VA, USA | five seconds.  Good luck, Jim..."
  71412.  
  71413.  
  71414. From news@columbia.edu Fri Jan  6 19:48:52 1995
  71415. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05907
  71416.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 6 Jan 1995 17:21:48 -0500
  71417. Received: by apakabar.cc.columbia.edu id AA05196
  71418.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 6 Jan 1995 17:21:43 -0500
  71419. Newsgroups: comp.protocols.kermit.misc
  71420. Path: news.columbia.edu!panix!news.mathworks.com!uhog.mit.edu!bloom-beacon.mit.edu!gatech!howland.reston.ans.net!news.sprintlink.net!news.indirect.com!monty
  71421. From: monty@indirect.com (Jim Monty)
  71422. Subject: [?] Backspace key says, "^?"
  71423. Message-Id: <D201pG.DMB@indirect.com>
  71424. Sender: usenet@indirect.com (Internet Direct Admin)
  71425. Organization: Internet Direct, indirect.com
  71426. Date: Fri, 6 Jan 1995 19:48:52 GMT
  71427. X-Newsreader: TIN [version 1.2.1 [BP] PL2.1]
  71428. Lines: 31
  71429. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  71430.  
  71431. DISCLAIMER:  I've looked for the answer to the following question in
  71432.              _Using MS-DOS Kermit_ and in the documentation included
  71433.              with MS-DOS Kermit 3.13.  I either couldn't find the
  71434.              answer or didn't understand it if I did.
  71435.  
  71436. I'm using MS-DOS Kermit 3.13 on an i80386SX machine running MS-DOS 6.0, 
  71437. using a 14,400 bps Zoom VFP V.32bis modem.  Kermit is set for VT220 
  71438. terminal emulation and is using the Latin1 character set and code page 
  71439. CP437.  I've not mucked with much in the initialization files, so you may 
  71440. assume that any other parameters are still set to the "factory" defaults.
  71441.  
  71442. Alas, the question:  In some online environments, my backspace key behaves
  71443. as one would expect it to.  In others, hitting the backspace key results
  71444. in either (1) nothing happening, or (2) the characters "^?"  appearing on
  71445. the screen.  I can, however, use Ctrl-H in these situations.  In these
  71446. exact same online environments (e.g., vi insert mode when connected to my
  71447. dial-up UNIX shell account) under analagous circumstances, the other
  71448. terminal emulator that I use, Telemate Version 3.12, does not behave this
  71449. way.  The backspace key functions as a destructive backspace. 
  71450.  
  71451. I presume that the change I need to make to my MS-DOS Kermit 
  71452. configuration is a simple one, but I can't figure it out.  And I've never 
  71453. really wanted to bother to spend a lot of time trying to figure it out 
  71454. myself.  (I want the magic straight from the wizards' minds.)  Thanks, in 
  71455. advance, for taking the time to help me.
  71456.  
  71457.  
  71458. ---
  71459. Jim Monty, Kermit Cheerleader at Arthur Andersen LLP
  71460. monty@indirect.com
  71461. James_T.._Monty.ANDERSEN_WO@notes.compuserve.com
  71462.  
  71463. From news@columbia.edu Fri Jan  6 22:38:05 1995
  71464. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23313
  71465.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 6 Jan 1995 21:19:38 -0500
  71466. Received: by apakabar.cc.columbia.edu id AA28407
  71467.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 6 Jan 1995 21:19:36 -0500
  71468. Path: news.columbia.edu!sol.ctr.columbia.edu!news.mtu.edu!msunews!uwm.edu!cs.utexas.edu!swrinde!hookup!news.kei.com!travelers.mail.cornell.edu!newstand.syr.edu!newstand.syr.edu!jeanlaur
  71469. From: jeanlaur@cat.syr.EDU (Pierre Jean-Laurent)
  71470. Newsgroups: comp.protocols.kermit.misc
  71471. Subject: !!! Help Kermit vs Gateway 2000 !!!
  71472. Followup-To: comp.protocols.kermit.misc
  71473. Date: 06 Jan 1995 22:38:05 GMT
  71474. Organization: Syracuse University, Syracuse NY, USA
  71475. Lines: 13
  71476. Distribution: world
  71477. Message-Id: <JEANLAUR.95Jan6173805@lynx.cat.syr.edu>
  71478. Nntp-Posting-Host: cat.syr.edu
  71479. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  71480.  
  71481. Hi,
  71482.  
  71483. I have just acquired a Gateway2000 colorbook and I am trying run ms-kermit
  71484. on it. I am unable to see what is being typed once I issue a connect
  71485. command. Still the modem is able to recognize the commands that follow
  71486. (just no echo). I have used the same setting with a ps/2 and kermit works
  71487. fine. Any help on that would be appreciated. Please contact me (if
  71488. possible) via e-mail.
  71489.  
  71490. Thank you,
  71491.  
  71492. Pierre Jean-Laurent
  71493. jeanlaur@mailbox.syr.edu
  71494.  
  71495. From news@columbia.edu Sat Jan  7 21:26:44 1995
  71496. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08027
  71497.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 7 Jan 1995 16:26:48 -0500
  71498. Received: by apakabar.cc.columbia.edu id AA22407
  71499.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 7 Jan 1995 16:26:47 -0500
  71500. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  71501. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  71502. Newsgroups: comp.protocols.kermit.misc
  71503. Subject: Re: [?] Backspace key says, "^?"
  71504. Date: 7 Jan 1995 21:26:44 GMT
  71505. Organization: Columbia University
  71506. Lines: 122
  71507. Message-Id: <3en0uk$ls5@apakabar.cc.columbia.edu>
  71508. References: <D201pG.DMB@indirect.com>
  71509. Nntp-Posting-Host: watsun.cc.columbia.edu
  71510. Cc: 
  71511.  
  71512. In article <D201pG.DMB@indirect.com>, Jim Monty <monty@indirect.com> wrote:
  71513. >DISCLAIMER:  I've looked for the answer to the following question in
  71514. >             _Using MS-DOS Kermit_ and in the documentation included
  71515. >             with MS-DOS Kermit 3.13.  I either couldn't find the
  71516. >             answer or didn't understand it if I did.
  71517. >
  71518. Thank you for consulting the documentation.
  71519.  
  71520. >I'm using MS-DOS Kermit 3.13 on an i80386SX machine running MS-DOS 6.0, 
  71521. >using a 14,400 bps Zoom VFP V.32bis modem.  Kermit is set for VT220 
  71522. >terminal emulation and is using the Latin1 character set and code page 
  71523. >CP437.  I've not mucked with much in the initialization files, so you may 
  71524. >assume that any other parameters are still set to the "factory" defaults.
  71525. >
  71526. >Alas, the question:  In some online environments, my backspace key behaves
  71527. >as one would expect it to.  In others, hitting the backspace key results
  71528. >in either (1) nothing happening, or (2) the characters "^?"  appearing on
  71529. >the screen.  I can, however, use Ctrl-H in these situations.  In these
  71530. >exact same online environments (e.g., vi insert mode when connected to my
  71531. >dial-up UNIX shell account) under analagous circumstances, the other
  71532. >terminal emulator that I use, Telemate Version 3.12, does not behave this
  71533. >way.  The backspace key functions as a destructive backspace. 
  71534. >
  71535. >I presume that the change I need to make to my MS-DOS Kermit 
  71536. >configuration is a simple one, but I can't figure it out.  And I've never 
  71537. >really wanted to bother to spend a lot of time trying to figure it out 
  71538. >myself.  (I want the magic straight from the wizards' minds.)  Thanks, in 
  71539. >advance, for taking the time to help me.
  71540. >
  71541. >Jim Monty, Kermit Cheerleader at Arthur Andersen LLP
  71542. >
  71543. Well, Jim, I think it's finally time to classify this as a Frequently
  71544. Asked Question and add it to the FAQ (kermit.columbia.edu:kermit/FAQ.TXT).
  71545.  
  71546. As you have discovered, different hosts and applications use different
  71547. characters (or sequences) for destructive backspace.  The terminal
  71548. emulator, Kermit or otherwise (including Telemate -- if its backspace key
  71549. works for you in all circumstances, I think that's just a stroke of luck),
  71550. has no way of knowing what host or application you are using, and
  71551. therefore no way of knowing what to send when you press the Backspace key.
  71552.  
  71553. Of course, Kermit's Backspace key must send *something* "out of the box",
  71554. so it uses one of the several most likely destructive backspace values,
  71555. and in fact the one that is defined in ASCII to be destructive backspace,
  71556. namely Rubout, also known as Delete or DEL, character number 127, which
  71557. sometimes is displayed as "^?".  Lest anyone believe this is a frivolous
  71558. choice, I quote from American National Standard X3.4-1977, Section 5.1,
  71559. Control Characters:
  71560.  
  71561.   0/8 BS (Backspace).  A one-active-position format effector that moves
  71562.   the position backward on the same line.
  71563.  
  71564.   7/15 (DEL). A character used primarily to erase or obliterate an
  71565.   erroneous or unwanted character...
  71566.  
  71567. In cases where the default does not work, Kermit lets you redefine the
  71568. Backspace key (or any other key) to send whatever you want it to send (or
  71569. to take any other actions) with the SET KEY command.
  71570.  
  71571. The SET KEY command has two operands: a unique identifier for a key or key
  71572. combination, called a scan code, and the value or action to be assigned to
  71573. the key.  Scan codes are written with a preceding backslash (\).  The scan
  71574. code for the Backspace key is \270.  The default definition for this key
  71575. is \127, meaning the character whose numeric value is 127, i.e. DEL.
  71576.  
  71577. You can find out a key's scan code by consulting Table I-9 in the manual
  71578. (pages 285-288), or by giving the SHOW KEY command to Kermit and then
  71579. pressing the desired key or key combination.
  71580.  
  71581. Now, as you have discovered, some applications use Ctrl-H -- ASCII BS
  71582. (Backspace) -- for destructive backspace.  Consulting the ASCII table on
  71583. page 275, you see that the ASCII code for BS is 8.  So to make PC's
  71584. Backspace key send BS instead of DEL, give this command:
  71585.  
  71586.   SET KEY \270 \8
  71587.  
  71588. If you use Kermit only to connect to hosts and services that use BS for
  71589. destructive backspace, then you can put this command in your MSCUSTOM.INI
  71590. file, and it will take effect automatically every time you start Kermit.
  71591.  
  71592. But some people (like yourself) switch between different hosts and/or
  71593. services that expect different characters or sequences for destructive
  71594. backspace.  You can, of course, give Kermit the appropriate command
  71595. every time you switch from one to another:
  71596.  
  71597.   SET KEY \270 \8    ; Backspace sends BS
  71598.  
  71599. or:
  71600.  
  71601.   SET KEY \270 \127  ; Backspace sends DEL
  71602.  
  71603. or you can use the macros that are already defined in MSKERMIT.INI for
  71604. this.  In version 3.14, for example, we have macros with names like
  71605. VAX and IBM.  The VAX macro sets things up (including the Backspace key)
  71606. for communicating with VAXes and VAX-like systems, and that means, among
  71607. other things, setting the Backspace key to send DEL.  The IBM macro, on
  71608. the other hand, is used for communicating with IBM mainframes in linemode,
  71609. where BS is used.
  71610.  
  71611. You can use these macros as they are, or you can write your own macros
  71612. based upon them and add them to your MSCUSTOM.INI file.  To use a macro,
  71613. just type its name at the MS-Kermit> prompt.
  71614.  
  71615. Suppose, for example, you normally access two different systems: a BBS
  71616. (which uses 8-bit characters, ANSI terminal emulation, and BS) and a UNIX
  71617. system (which uses 7-bit characters, VT220 emulation, and DEL), and these
  71618. items need to be changed when you switch between the two.  You could write
  71619. two macros such as these:
  71620.  
  71621.   define bbs set term byte 8, set term type ANSI, set key \270 \8
  71622.   define unix set term byte 7, set term type vt220, set key \270 \127
  71623.  
  71624. And then each time you want to use the BBS, you just type "bbs" at the
  71625. MS-Kermit> prompt, and each time you want to access the UNIX system,
  71626. you type "unix".
  71627.  
  71628. Of course, you could take this process even further, and turn the BBS and
  71629. UNIX macros into complete connection-establishment and login scripts,
  71630. following the directions in Chapter 14 of the manual, on script
  71631. programming.
  71632.  
  71633. - Frank
  71634.  
  71635. From news@columbia.edu Sat Jan  7 22:32:27 1995
  71636. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12717
  71637.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 7 Jan 1995 17:32:32 -0500
  71638. Received: by apakabar.cc.columbia.edu id AA24823
  71639.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 7 Jan 1995 17:32:31 -0500
  71640. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  71641. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  71642. Newsgroups: comp.protocols.kermit.misc
  71643. Subject: Re: !!! Help Kermit vs Gateway 2000 !!!
  71644. Date: 7 Jan 1995 22:32:27 GMT
  71645. Organization: Columbia University
  71646. Lines: 22
  71647. Distribution: world
  71648. Message-Id: <3en4pr$o7l@apakabar.cc.columbia.edu>
  71649. References: <JEANLAUR.95Jan6173805@lynx.cat.syr.edu>
  71650. Nntp-Posting-Host: watsun.cc.columbia.edu
  71651. X-Original-Newsgroups: comp.protocols.kermit.misc
  71652. Cc: 
  71653.  
  71654. In article <JEANLAUR.95Jan6173805@lynx.cat.syr.edu>,
  71655. Pierre Jean-Laurent <jeanlaur@lynx.cat.syr.edu> wrote:
  71656. >I have just acquired a Gateway2000 colorbook and I am trying run ms-kermit
  71657. >on it. I am unable to see what is being typed once I issue a connect
  71658. >command. Still the modem is able to recognize the commands that follow
  71659. >(just no echo). I have used the same setting with a ps/2 and kermit works
  71660. >fine. Any help on that would be appreciated. Please contact me (if
  71661. >possible) via e-mail.
  71662. >
  71663. Please read the KERMIT.BWR file that comes with MS-DOS Kermit, version
  71664. 3.13 or later.  There is a big section on this.  You have to make sure
  71665. you are telling Kermit to use the right COM port, and that, if it is not
  71666. COM1 or COM2, what its address and interrupt are, and that there are no
  71667. interrupt conflicts.
  71668.  
  71669. - Frank
  71670.  
  71671. x
  71672. x
  71673. x
  71674.  
  71675.  
  71676.  
  71677. From news@columbia.edu Fri Jan  6 06:04:39 1995
  71678. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14742
  71679.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 7 Jan 1995 18:06:16 -0500
  71680. Received: by apakabar.cc.columbia.edu id AA26082
  71681.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 7 Jan 1995 18:06:15 -0500
  71682. Newsgroups: comp.protocols.kermit.misc
  71683. Path: news.columbia.edu!panix!bloom-beacon.mit.edu!world!jeffb
  71684. From: jeffb@world.std.com (Jeffrey T Berntsen)
  71685. Subject: Re: new kermit docs
  71686. Message-Id: <D1yzJr.LL7@world.std.com>
  71687. Organization: The World @ Software Tool & Die
  71688. References: <3ed2k9$52i@sgi.iunet.it> <1995Jan3.215703.36452@cc.usu.edu>
  71689. Date: Fri, 6 Jan 1995 06:04:39 GMT
  71690. Lines: 18
  71691. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  71692.  
  71693. jrd@cc.usu.edu (Joe Doupnik) writes:
  71694.  
  71695. >In article <3ed2k9$52i@sgi.iunet.it>, Gianluca Attura <mc8114@mclink.it> writes:
  71696. >> I wish to know if, in any form, I can find the docs about the new 
  71697. >> Kermit structure, the long packets and the APC capabilities.
  71698. >---------------
  71699. >    APC is fully documented in the release notes accompanying MSK.
  71700. >Long packets aren't new at all unless if one counts a decade ago as
  71701. >new. The protocol details are spelled out in the definitive rule book:
  71702. >the book "Kermit, a file transfer protocol" by Frank da Cruz. Referenced
  71703. >in the official User's Manuals, amongst other places.
  71704. >    Joe D.
  71705.  
  71706. Are the protocol extensions related to resuming partial transfers and the 
  71707. 'RESEND' command documented anywhere.  If not, will they be?
  71708.  
  71709. Jeff Berntsen
  71710. jeffb@world.std.com
  71711.  
  71712. From news@columbia.edu Sat Jan  7 10:31:18 1995
  71713. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18961
  71714.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 7 Jan 1995 19:14:39 -0500
  71715. Received: by apakabar.cc.columbia.edu id AA28247
  71716.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 7 Jan 1995 19:14:37 -0500
  71717. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  71718. From: jrd@cc.usu.edu (Joe Doupnik)
  71719. Newsgroups: comp.protocols.kermit.misc
  71720. Subject: Re: Help With Server & Con Redirection
  71721. Message-Id: <1995Jan7.163118.36910@cc.usu.edu>
  71722. Date: 7 Jan 95 16:31:18 MDT
  71723. References: <3ekaf0$563@louie.udel.edu> <1995Jan6.163640.36826@cc.usu.edu> <1995Jan7.121109.82047@kuhub.cc.ukans.edu>
  71724. Organization: Utah State University
  71725. Lines: 45
  71726. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  71727.  
  71728. In article <1995Jan7.121109.82047@kuhub.cc.ukans.edu>, tdsmith@kuhub.cc.ukans.edu writes:
  71729. > In article <1995Jan6.163640.36826@cc.usu.edu>, jrd@cc.usu.edu (Joe Doupnik) writes:
  71730. >> In article <3ekaf0$563@louie.udel.edu>, alexandr@stimpy.eecis.udel.edu (Jerry Alexandratos) writes:
  71731. >>> 
  71732. >>> Okay, I want to log into a computer that has kermit running in server
  71733. >>> mode.
  71734. >   
  71735. > [snip]
  71736. >>     It's not quite clear exactly what you want where, and what you
  71737. >> hope to get from it, but I'll try to decode.
  71738. >>     I presume you want to make the DOS prompt visible across the
  71739. >> net to the Linux machine, by something along the lines of CTTY <network>.
  71740. >> If so then it won't work. And if so what you are trying to do is run
  71741. >> DOS remotely via Kermit, as a Telnet daemon. That won't work either.
  71742. >> CTTY is less than inadequate.
  71743. >>     Put simply, DOS is not designed to be run from a terminal. There
  71744. >> are some remote screen capture/keyboard stuffing programs around, such
  71745. >> as Carbon Copy, PC Anywhere, etc which do that job reasonably well. Running
  71746. >> in their cases means running on the DOS PC and the comms programs dig deeply
  71747. >> into the machine to capture/stuff changes to the machine. MS-DOS Kermit is
  71748. >> not such a program and we don't want to enter that nitch.
  71749. >>     If I'm off base please give us some additional hints.
  71750. >>         Joe D.
  71751. > I'm not going to be of any help here.  In fact, I have a similar question.
  71752. > All I want to do is transfer files between two PCs over a modem.  Is there 
  71753. > any way to do this using kermit?  There are people available on both ends, 
  71754. > so if a command needs to be entered on each end it is no problem.  I 
  71755. > suppose I can purchase a commercial app if that's what it takes, but I 
  71756. > would like to get kermit to do this if it can.  
  71757. > I'm curious: my calculator (HP48 GX) can get an image of my DOS directory 
  71758. > and put/get files by using kermit (kermit in server mode on the PC).  Is 
  71759. > there something special in the version of kermit in my calculator's ROM 
  71760. > that allows this, or does it have something to do with using a direct 
  71761. > serial link instead of a modem?
  71762. -----------------
  71763.     It's called SERVER mode, a standard feature of Columbia Kermits
  71764. since day one. Rather than go though a long explaination of this may
  71765. I recommend reading about it in the user's manual, the "Using MS-DOS
  71766. Kermit" book. It is very simple to use: Kermit command SERVER, at the
  71767. minimum. Protection features are available too, via ENABLE/DISABLE,
  71768. and even a SET SERVER command to add a little more control.
  71769.     Joe D.
  71770.  
  71771. From news@columbia.edu Fri Jan  6 06:38:25 1995
  71772. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23325
  71773.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 7 Jan 1995 20:22:04 -0500
  71774. Received: by apakabar.cc.columbia.edu id AA00974
  71775.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 7 Jan 1995 20:22:02 -0500
  71776. Path: news.columbia.edu!panix!zip.eecs.umich.edu!newsxfer.itd.umich.edu!gatech!swrinde!sdd.hp.com!news.cs.indiana.edu!cica.cica.indiana.edu!usenet.ucs.indiana.edu!bronze.ucs.indiana.edu!jawarric
  71777. From: jawarric@ucs.indiana.edu (Jeff Warrick)
  71778. Newsgroups: comp.protocols.kermit.misc
  71779. Subject: BLOCKS & Error Checking?
  71780. Date: 6 Jan 1995 06:38:25 GMT
  71781. Organization: Indiana University
  71782. Lines: 18
  71783. Message-Id: <3eioh1$3at@usenet.ucs.indiana.edu>
  71784. Nntp-Posting-Host: silver.ucs.indiana.edu
  71785. X-Newsreader: TIN [version 1.2 PL2]
  71786. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  71787.  
  71788. I have a few questions.  checked the tiny FAQ with no luck...
  71789. SYSTEM:  I type Wermit to run kermit, so I guess that is the specific
  71790.                 kermit program on SCO Unix.
  71791.          I use Crosstalk for Windows over a 14.4 modem.
  71792.  
  71793. 1)  What are blocks?  As I set packet lengths to 4096 and higher, it 
  71794. reminds me to set block check to 2 or 3.  Can someone tell me what block 
  71795. check is?
  71796.  
  71797. 2)  My modem software has a Checksum setting - single, double, or CRC.  
  71798. My kermit program doesn't have a corresponding setting.  What's the deal?
  71799.  
  71800. 3)  Ever since I started playing with my settings to get *useable* 
  71801. results, my transfer quits after 1 error.  Is this because of the long 
  71802. packet lengths?
  71803.  
  71804. Thanks!
  71805.  
  71806.  
  71807. From news@columbia.edu Fri Jan  6 09:21:58 1995
  71808. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29532
  71809.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 7 Jan 1995 22:02:26 -0500
  71810. Received: by apakabar.cc.columbia.edu id AA04501
  71811.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 7 Jan 1995 22:02:25 -0500
  71812. Path: news.columbia.edu!panix!news.mathworks.com!hookup!olivea!uunet!ulowell.uml.edu!news.iastate.edu!not-for-mail
  71813. From: billmaly@iastate.edu (WhoWantsTaKnow)
  71814. Newsgroups: comp.protocols.kermit.misc
  71815. Organization: Iowa State University, Ames, Iowa (USA)
  71816. Message-Id: <-3eii12$q26@news.iastate.edu>
  71817. Control: cancel <3eii12$q26@news.iastate.edu>
  71818. Subject: cmsg cancel <3eii12$q26@news.iastate.edu>
  71819. Date: Fri, 6 Jan 1995 09:21:58 GMT
  71820. Approved: news@news.iastate.edu
  71821. Lines: 1
  71822. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  71823.  
  71824. cancel <3eii12$q26@news.iastate.edu>
  71825.  
  71826. From news@columbia.edu Fri Jan  6 16:56:49 1995
  71827. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29737
  71828.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 8 Jan 1995 05:52:27 -0500
  71829. Received: by apakabar.cc.columbia.edu id AA22893
  71830.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 8 Jan 1995 05:52:25 -0500
  71831. Path: news.columbia.edu!panix!news.mathworks.com!uhog.mit.edu!bloom-beacon.mit.edu!gatech!howland.reston.ans.net!vixen.cso.uiuc.edu!ux2.cso.uiuc.edu!shair
  71832. From: shair@uiuc.edu (Bob Shair)
  71833. Newsgroups: comp.protocols.kermit.misc
  71834. Subject: Re: BLOCKS & Error Checking?
  71835. Date: 6 Jan 1995 16:56:49 GMT
  71836. Organization: University of Illinois at Urbana
  71837. Lines: 40
  71838. Message-Id: <3ejsoh$phe@vixen.cso.uiuc.edu>
  71839. References: <3eioh1$3at@usenet.ucs.indiana.edu>
  71840. Nntp-Posting-Host: ux2.cso.uiuc.edu
  71841. Originator: shair@ux2.cso.uiuc.edu
  71842. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  71843.  
  71844. jawarric@ucs.indiana.edu (Jeff Warrick) writes:
  71845.  
  71846. >I have a few questions.  checked the tiny FAQ with no luck...
  71847. >SYSTEM:  I type Wermit to run kermit, so I guess that is the specific
  71848. >                kermit program on SCO Unix.
  71849. The provided makefile compiles Kermit source to "wermit", to give a test
  71850. version which won't overwrite the production "kermit".  The System Admin
  71851. is supposed to rename it to "kermit" when satisfied with it.
  71852. >         I use Crosstalk for Windows over a 14.4 modem.
  71853. >
  71854. >1)  What are blocks?  As I set packet lengths to 4096 and higher, it 
  71855. >reminds me to set block check to 2 or 3.  Can someone tell me what block 
  71856. >check is?
  71857. >
  71858. >2)  My modem software has a Checksum setting - single, double, or CRC.  
  71859. >My kermit program doesn't have a corresponding setting.  What's the deal?
  71860. Block check is the same as Checksum. 
  71861. Kermit        Crosstalk
  71862. set block 1    checksum single
  71863. set block 2    checksum double
  71864. set block 3    checksum CRC
  71865.  
  71866. If they don't match, you'll get:
  71867. >3)  Ever since I started playing with my settings to get *useable* 
  71868. >results, my transfer quits after 1 error.  Is this because of the long 
  71869. >packet lengths?
  71870.  
  71871. It could be, but non-matching Checksum parameters will cause it.  I don't
  71872. know what parts of the Kermit protocol Crosstalk implements.  When I used
  71873. to run Windows on my PC, I used MS-Kermit in a DOS Full-Screen session
  71874. as my terminal emulator.  It was very compatible with the C-Kermit on
  71875. the Unix boxes, and was free!  (Now running OS/2 so have C-Kermit at both
  71876. ends).
  71877.  
  71878. You'll have to check your Crosstalk documentation to see what it supports.
  71879. -- 
  71880.  
  71881. Bob Shair                          Open Systems Consultant
  71882. 1018 W. Springfield Avenue         shair@uiuc.edu
  71883. Champaign, IL 61821           217/356-2684
  71884.  
  71885. From news@columbia.edu Fri Jan  6 16:49:06 1995
  71886. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00112
  71887.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 8 Jan 1995 05:56:49 -0500
  71888. Received: by apakabar.cc.columbia.edu id AA23112
  71889.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 8 Jan 1995 05:56:48 -0500
  71890. Newsgroups: comp.protocols.kermit.misc
  71891. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!howland.reston.ans.net!ix.netcom.com!netcom.com!kientzle
  71892. From: kientzle@netcom.com
  71893. Subject: Re: BLOCKS & Error Checking?
  71894. Message-Id: <kientzleD1ztDu.HEB@netcom.com>
  71895. Organization: NETCOM On-line Communication Services (408 261-4700 guest)
  71896. References: <3eioh1$3at@usenet.ucs.indiana.edu>
  71897. Date: Fri, 6 Jan 1995 16:49:06 GMT
  71898. Lines: 28
  71899. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  71900.  
  71901. In article <3eioh1$3at@usenet.ucs.indiana.edu>,
  71902. Jeff Warrick <jawarric@ucs.indiana.edu> wrote:
  71903. >1)  What are blocks?  As I set packet lengths to 4096 and higher, it 
  71904. >reminds me to set block check to 2 or 3.  Can someone tell me what block 
  71905. >check is?
  71906. >
  71907. >2)  My modem software has a Checksum setting - single, double, or CRC.  
  71908. >My kermit program doesn't have a corresponding setting.  What's the deal?
  71909.    `Block' and `packet' are synonyms.  They're interchangable.
  71910. The `checksum' setting in your modem software is the same as the
  71911. `block check' setting in the Kermit program.  Here's the correspondence:
  71912.         single checksum  -> block check 1
  71913.         double checksum  -> block check 2
  71914.         CRC              -> block check 3
  71915. Generally, if you're playing with long packets, you should always
  71916. use CRC/block check 3.
  71917.  
  71918.  
  71919. >3)  Ever since I started playing with my settings to get *useable* 
  71920. >results, my transfer quits after 1 error.  Is this because of the long 
  71921. >packet lengths?
  71922.      If your software supports it (many don't), setting a window size
  71923. of 8 or 16 with 1k or 2k packets is typically faster than trying to
  71924. use very long packets.  Dunno why your transfer would quit after 1 error.
  71925. If you want good Kermit performance, you might consider getting a copy
  71926. of MS-Kermit for your PC.
  71927.                                 - Tim Kientzle
  71928.  
  71929.  
  71930. From news@columbia.edu Fri Jan  6 17:49:26 1995
  71931. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02860
  71932.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 8 Jan 1995 06:32:00 -0500
  71933. Received: by apakabar.cc.columbia.edu id AA24771
  71934.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 8 Jan 1995 06:31:55 -0500
  71935. Path: news.columbia.edu!panix!news.mathworks.com!uhog.mit.edu!bloom-beacon.mit.edu!gatech!howland.reston.ans.net!news.sprintlink.net!wanda.pond.com!wanda.pond.com!not-for-mail
  71936. From: getman@wanda.pond.com (Paul Getman)
  71937. Newsgroups: comp.protocols.kermit.misc
  71938. Subject: File Transfer Problem?
  71939. Date: 6 Jan 1995 12:49:26 -0500
  71940. Organization: FishNet
  71941. Lines: 18
  71942. Message-Id: <3ejvr6$hqs@wanda.pond.com>
  71943. Nntp-Posting-Host: wanda.pond.com
  71944. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  71945.  
  71946. Hello:
  71947.  
  71948. I am new to this so please forgive my ignorance.
  71949.  
  71950. I have MSDOS Kermit (3.13) and a Hayes 2400 baud modem. I successfully
  71951. connect and login but cannot download files.  I am trying to download a 
  71952. file from a Sun 1000 running Solaris 2.1 via a 9600 baud modem using
  71953. C-Kermit (5A(189)) in server mode.  The transfer fails after several 
  71954. retries.  My local Kermit settings are as follows: parity none, 
  71955. flow Xon/Xoff, speed 2400, handshake none, duplex full. I have tried
  71956. changing some or all of these parameters (i.e. altering the flow control
  71957. to RTS/CTS and none) but to no avail.  I have read MS-DOS Kermit DOC
  71958. regarding trouble with file transfers and have tried those suggestions: 
  71959. parity, duplex, handshake etc.
  71960.  
  71961. What am I doing wrong? Does anyone have any suggestions?
  71962.  
  71963. Thank You.
  71964.  
  71965. From news@columbia.edu Fri Jan  6 18:19:30 1995
  71966. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25556
  71967.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 8 Jan 1995 07:01:27 -0500
  71968. Received: by apakabar.cc.columbia.edu id AA26023
  71969.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 8 Jan 1995 07:01:25 -0500
  71970. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!swrinde!hopper.acm.org!ACM.ORG!JEY
  71971. From: jey@ACM.ORG (Justin E. York (ANT))
  71972. Newsgroups: comp.protocols.kermit.misc
  71973. Subject: need Zmodem for AXP/OpenVMS
  71974. Date: 6 Jan 1995 18:19:30 GMT
  71975. Organization: ACM Network Services
  71976. Lines: 18
  71977. Message-Id: <3ek1ji$rnv@hopper.acm.org>
  71978. Reply-To: jey@ACM.ORG
  71979. Nntp-Posting-Host: acm.org
  71980. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  71981.  
  71982. Hi,
  71983.  
  71984. I know that this is a kermit newsgroup, however I'm hoping that
  71985. some of the readers of this group will know where I can find
  71986. a commercial (or freebie) zmodem package.  
  71987.  
  71988. We run a DEC AXP with Open VMS 6.1.  Any tips or information
  71989. would be greatly appreciated.   
  71990.  
  71991. Please e-mail responses to "JEY@ACM.ORG".
  71992.  
  71993. Thanks in advance,
  71994. Justin York
  71995. __
  71996. +--------------------+--------------------------------------------+
  71997. |   Justin E. York   |    JEY@ACM.org     *     (817) 776-5695    |
  71998. |     (Guarants)     |        Applied Network Technologies        |
  71999. +--------------------+--------------------------------------------+
  72000.  
  72001. From news@columbia.edu Fri Jan  6 18:35:19 1995
  72002. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20169
  72003.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 8 Jan 1995 07:32:08 -0500
  72004. Received: by apakabar.cc.columbia.edu id AA27605
  72005.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 8 Jan 1995 07:32:07 -0500
  72006. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!hookup!swrinde!howland.reston.ans.net!news.sprintlink.net!nwnexus!news.halcyon.com!coho!ken
  72007. From: ken@coho.halcyon.com (Ken Pizzini)
  72008. Newsgroups: comp.protocols.kermit.misc
  72009. Subject: Re: BLOCKS & Error Checking?
  72010. Date: 6 Jan 1995 18:35:19 GMT
  72011. Organization: What, me?
  72012. Lines: 19
  72013. Message-Id: <3ek2h7$3df@news.halcyon.com>
  72014. References: <3eioh1$3at@usenet.ucs.indiana.edu>
  72015. Nntp-Posting-Host: coho.halcyon.com
  72016. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  72017.  
  72018. In article <3eioh1$3at@usenet.ucs.indiana.edu>,
  72019. Jeff Warrick <jawarric@ucs.indiana.edu> wrote:
  72020. >1)  What are blocks?  As I set packet lengths to 4096 and higher, it 
  72021. >reminds me to set block check to 2 or 3.  Can someone tell me what block 
  72022. >check is?
  72023. >
  72024. >2)  My modem software has a Checksum setting - single, double, or CRC.  
  72025. >My kermit program doesn't have a corresponding setting.  What's the deal?
  72026.  
  72027. These two items correspond to one another.  Your Crosstalk comm. software
  72028. refers to as "checksum" what kermit refers to as "block-check".
  72029.  
  72030.    Kermit                Crosstalk
  72031.    ------                -----
  72032.    set block-check 1     checksum single
  72033.    set block-check 2     checksum double
  72034.    set block-check 3     checksum CRC
  72035.  
  72036.         --Ken Pizzini
  72037.  
  72038. From news@columbia.edu Fri Jan  6 07:15:22 1995
  72039. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05453
  72040.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 8 Jan 1995 08:00:14 -0500
  72041. Received: by apakabar.cc.columbia.edu id AA29000
  72042.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 8 Jan 1995 08:00:13 -0500
  72043. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.alpha.net!mvb.saic.com!news.mathworks.com!uhog.mit.edu!bloom-beacon.mit.edu!gatech!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  72044. From: jrd@cc.usu.edu (Joe Doupnik)
  72045. Newsgroups: comp.protocols.kermit.misc
  72046. Subject: Re: File Transfer Problem?
  72047. Message-Id: <1995Jan6.131522.36806@cc.usu.edu>
  72048. Date: 6 Jan 95 13:15:22 MDT
  72049. References: <3ejvr6$hqs@wanda.pond.com>
  72050. Organization: Utah State University
  72051. Lines: 25
  72052. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  72053.  
  72054. In article <3ejvr6$hqs@wanda.pond.com>, getman@wanda.pond.com (Paul Getman) writes:
  72055. > Hello:
  72056. > I am new to this so please forgive my ignorance.
  72057. > I have MSDOS Kermit (3.13) and a Hayes 2400 baud modem. I successfully
  72058. > connect and login but cannot download files.  I am trying to download a 
  72059. > file from a Sun 1000 running Solaris 2.1 via a 9600 baud modem using
  72060. > C-Kermit (5A(189)) in server mode.  The transfer fails after several 
  72061. > retries.  My local Kermit settings are as follows: parity none, 
  72062. > flow Xon/Xoff, speed 2400, handshake none, duplex full. I have tried
  72063. > changing some or all of these parameters (i.e. altering the flow control
  72064. > to RTS/CTS and none) but to no avail.  I have read MS-DOS Kermit DOC
  72065. > regarding trouble with file transfers and have tried those suggestions: 
  72066. > parity, duplex, handshake etc.
  72067. > What am I doing wrong? Does anyone have any suggestions?
  72068. -------------
  72069.     Maybe the above isn't the problem. Could you relate what message
  72070. is displayed when MSK gives up, and more importantly what commands you
  72071. issued on both ends to accomplish the file transfer (which is where the
  72072. problem resides according to my crystal ball). Finally, the Sun end
  72073. needs adequate flow control too, or it can/will overrun it's attached
  72074. modem.
  72075.     Joe D.
  72076.  
  72077. From news@columbia.edu Fri Jan  6 10:24:50 1995
  72078. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09258
  72079.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 8 Jan 1995 09:08:33 -0500
  72080. Received: by apakabar.cc.columbia.edu id AA02353
  72081.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 8 Jan 1995 09:08:31 -0500
  72082. Path: news.columbia.edu!panix!news.mathworks.com!uhog.mit.edu!bloom-beacon.mit.edu!gatech!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  72083. From: jrd@cc.usu.edu (Joe Doupnik)
  72084. Newsgroups: comp.protocols.kermit.misc
  72085. Subject: Re: 50 rows x 132 cols problem
  72086. Message-Id: <1995Jan6.162450.36823@cc.usu.edu>
  72087. Date: 6 Jan 95 16:24:50 MDT
  72088. References: <1995Jan6.142436.175@gems.vcu.edu>
  72089. Organization: Utah State University
  72090. Lines: 20
  72091. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  72092.  
  72093. In article <1995Jan6.142436.175@gems.vcu.edu>, agnew@gems.vcu.edu (Brainwave Surfer) writes:
  72094. > Dear Fellow Kermitalolics,
  72095. > I use 
  72096. > RUN MODE 80,50
  72097. > to make kermit give me 80 cols by 50 rows.  then I use set terminal/page=49
  72098. > to preserve the 50 status line.
  72099. > when the kermit goes to 132 cols, i go to 25 rows.  then it goes back
  72100. > to 80 cols.  it stays 25 rows.  is there a way to force it back to 
  72101. > 50 rows?
  72102. ---------------------
  72103.     Because that's not a real video mode but rather a combination of
  72104. actions: change the fonts to 8x8 yet retain a video mode of 3 (normal
  72105. color 0x25) for video sync, change the Bios work area to say 50 lines. 
  72106. It's a hack. I don't know how your adapter got into such a state and 
  72107. thus I (MSK) can't return it to that state. 
  72108.     Joe D.
  72109.  
  72110. From news@columbia.edu Fri Jan  6 10:27:05 1995
  72111. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09260
  72112.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 8 Jan 1995 09:08:34 -0500
  72113. Received: by apakabar.cc.columbia.edu id AA02357
  72114.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 8 Jan 1995 09:08:33 -0500
  72115. Path: news.columbia.edu!panix!news.mathworks.com!uhog.mit.edu!bloom-beacon.mit.edu!gatech!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  72116. From: jrd@cc.usu.edu (Joe Doupnik)
  72117. Newsgroups: comp.protocols.kermit.misc
  72118. Subject: Re: [?] Backspace key says, "^?"
  72119. Message-Id: <1995Jan6.162705.36824@cc.usu.edu>
  72120. Date: 6 Jan 95 16:27:05 MDT
  72121. References: <D201pG.DMB@indirect.com>
  72122. Organization: Utah State University
  72123. Lines: 31
  72124. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  72125.  
  72126. In article <D201pG.DMB@indirect.com>, monty@indirect.com (Jim Monty) writes:
  72127. > DISCLAIMER:  I've looked for the answer to the following question in
  72128. >              _Using MS-DOS Kermit_ and in the documentation included
  72129. >              with MS-DOS Kermit 3.13.  I either couldn't find the
  72130. >              answer or didn't understand it if I did.
  72131. > I'm using MS-DOS Kermit 3.13 on an i80386SX machine running MS-DOS 6.0, 
  72132. > using a 14,400 bps Zoom VFP V.32bis modem.  Kermit is set for VT220 
  72133. > terminal emulation and is using the Latin1 character set and code page 
  72134. > CP437.  I've not mucked with much in the initialization files, so you may 
  72135. > assume that any other parameters are still set to the "factory" defaults.
  72136. > Alas, the question:  In some online environments, my backspace key behaves
  72137. > as one would expect it to.  In others, hitting the backspace key results
  72138. > in either (1) nothing happening, or (2) the characters "^?"  appearing on
  72139. > the screen.  I can, however, use Ctrl-H in these situations.  In these
  72140. > exact same online environments (e.g., vi insert mode when connected to my
  72141. > dial-up UNIX shell account) under analagous circumstances, the other
  72142. > terminal emulator that I use, Telemate Version 3.12, does not behave this
  72143. > way.  The backspace key functions as a destructive backspace. 
  72144. > I presume that the change I need to make to my MS-DOS Kermit 
  72145. > configuration is a simple one, but I can't figure it out.  And I've never 
  72146. > really wanted to bother to spend a lot of time trying to figure it out 
  72147. > myself.  (I want the magic straight from the wizards' minds.)  Thanks, in 
  72148. > advance, for taking the time to help me.
  72149. -----------
  72150.     SET KEY. Reread the manual on the matter. Define the Backspace
  72151. key to send whatever is needed by the remote host. Control-H is Backspace,
  72152. BS, decimal 8. DEL, Delete, is decimal 127.
  72153.     Joe D.
  72154.  
  72155. From news@columbia.edu Fri Jan  6 10:36:40 1995
  72156. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09264
  72157.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 8 Jan 1995 09:08:34 -0500
  72158. Received: by apakabar.cc.columbia.edu id AA02359
  72159.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 8 Jan 1995 09:08:34 -0500
  72160. Path: news.columbia.edu!panix!news.mathworks.com!uhog.mit.edu!bloom-beacon.mit.edu!gatech!swrinde!ihnp4.ucsd.edu!dog.ee.lbl.gov!news.cs.utah.edu!cc.usu.edu!jrd
  72161. From: jrd@cc.usu.edu (Joe Doupnik)
  72162. Newsgroups: comp.protocols.kermit.misc
  72163. Subject: Re: Help With Server & Con Redirection
  72164. Message-Id: <1995Jan6.163640.36826@cc.usu.edu>
  72165. Date: 6 Jan 95 16:36:40 MDT
  72166. References: <3ekaf0$563@louie.udel.edu>
  72167. Organization: Utah State University
  72168. Lines: 32
  72169. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  72170.  
  72171. In article <3ekaf0$563@louie.udel.edu>, alexandr@stimpy.eecis.udel.edu (Jerry Alexandratos) writes:
  72172. > Okay, I want to log into a computer that has kermit running in server
  72173. > mode.  Now, I want to do the unthinkable 8) and redirect the console. 
  72174. > However, I'm not sure if this is possible with the setup that I have. 
  72175. > Here's the lowdown:  one 386 running Linux, one running MS-DOS v5.0. 
  72176. > On the dos machine I have it setup in server mode.  I'm coming in from
  72177. > the Linux box.  The connection is being made over a tcpip connection. 
  72178. > Here's where my problem is.  Since I have set port tcp *, it's not
  72179. > really going through any serial port.  Thus, I can't use ctty to
  72180. > redirct the output since this only works for serial ports.
  72181. > Am I missing something?  Is there a way to do this?  Do I need a ctty
  72182. > clone or something?  Does such a beast exist?  Am I the only one who's
  72183. > ever thought of doing this?  Am I boring you with all of these
  72184. > questions?
  72185. -------------
  72186.     It's not quite clear exactly what you want where, and what you
  72187. hope to get from it, but I'll try to decode.
  72188.     I presume you want to make the DOS prompt visible across the
  72189. net to the Linux machine, by something along the lines of CTTY <network>.
  72190. If so then it won't work. And if so what you are trying to do is run
  72191. DOS remotely via Kermit, as a Telnet daemon. That won't work either.
  72192. CTTY is less than inadequate.
  72193.     Put simply, DOS is not designed to be run from a terminal. There
  72194. are some remote screen capture/keyboard stuffing programs around, such
  72195. as Carbon Copy, PC Anywhere, etc which do that job reasonably well. Running
  72196. in their cases means running on the DOS PC and the comms programs dig deeply
  72197. into the machine to capture/stuff changes to the machine. MS-DOS Kermit is
  72198. not such a program and we don't want to enter that nitch.
  72199.     If I'm off base please give us some additional hints.
  72200.         Joe D.
  72201.  
  72202. From news@columbia.edu Fri Jan  6 17:25:17 1995
  72203. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15983
  72204.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 8 Jan 1995 11:07:09 -0500
  72205. Received: by apakabar.cc.columbia.edu id AA09016
  72206.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 8 Jan 1995 11:07:07 -0500
  72207. Path: news.columbia.edu!panix!news.mathworks.com!hookup!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  72208. From: jrd@cc.usu.edu (Joe Doupnik)
  72209. Newsgroups: comp.protocols.kermit.misc
  72210. Subject: Re: !!! Help Kermit vs Gateway 2000 !!!
  72211. Message-Id: <1995Jan6.232517.36863@cc.usu.edu>
  72212. Date: 6 Jan 95 23:25:17 MDT
  72213. References: <JEANLAUR.95Jan6173805@lynx.cat.syr.edu>
  72214. Followup-To: comp.protocols.kermit.misc
  72215. Distribution: world
  72216. Organization: Utah State University
  72217. Lines: 16
  72218. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  72219.  
  72220. In article <JEANLAUR.95Jan6173805@lynx.cat.syr.edu>, jeanlaur@lynx.cat.syr.edu (Pierre Jean-Laurent) writes:
  72221. > Hi,
  72222. > I have just acquired a Gateway2000 colorbook and I am trying run ms-kermit
  72223. > on it. I am unable to see what is being typed once I issue a connect
  72224. > command. Still the modem is able to recognize the commands that follow
  72225. > (just no echo). I have used the same setting with a ps/2 and kermit works
  72226. > fine. Any help on that would be appreciated. Please contact me (if
  72227. > possible) via e-mail.
  72228. ---------------
  72229.     It's a "talk but not listen" situation, which is described at length
  72230. in the release notes. In short, your machine's configuration is in need of
  72231. adjustment. Please get the MS*.BWR and MS*.UPD text files from dir kermit/a
  72232. on kermit.columbia.edu. Don't let the machine win the war just because it's
  72233. won this particular battle.
  72234.     Joe D.
  72235.  
  72236. From news@columbia.edu Sun Jan  8 17:14:00 1995
  72237. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20147
  72238.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 8 Jan 1995 12:14:03 -0500
  72239. Received: by apakabar.cc.columbia.edu id AA24529
  72240.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 8 Jan 1995 12:14:02 -0500
  72241. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  72242. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  72243. Newsgroups: comp.protocols.kermit.misc
  72244. Subject: Re: new kermit docs
  72245. Date: 8 Jan 1995 17:14:00 GMT
  72246. Organization: Columbia University
  72247. Lines: 17
  72248. Message-Id: <3ep6go$nue@apakabar.cc.columbia.edu>
  72249. References: <3ed2k9$52i@sgi.iunet.it> <1995Jan3.215703.36452@cc.usu.edu> <D1yzJr.LL7@world.std.com>
  72250. Nntp-Posting-Host: watsun.cc.columbia.edu
  72251. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  72252.  
  72253. In article <D1yzJr.LL7@world.std.com>,
  72254. Jeffrey T Berntsen <jeffb@world.std.com> wrote:
  72255. >Are the protocol extensions related to resuming partial transfers and the 
  72256. >'RESEND' command documented anywhere.  If not, will they be?
  72257. >
  72258. Eventually.  Along with 50,000 other things, this is on our list.  Between
  72259. designing, writing, and documenting the software, handling untold numbers
  72260. of tech-support requests each day, trying to keep this newsgroup going as
  72261. a useful and informative forum, RAISING FUNDS (hint hint), and generally
  72262. doing our best to keep the ship afloat and on course, a lot of things take
  72263. more time than we'd like them to.  There are only a few of us doing all
  72264. this work.  Right now we're trying to get the new releases of MS-DOS
  72265. Kermit, OS/2 C-Kermit, and IBM Mainframe Kermit finished.  We try to focus
  72266. on those items that benefit the most people, and simultaneously promote
  72267. the continued health of the Kermit effort itself.
  72268.  
  72269. - Frank
  72270.  
  72271. From news@columbia.edu Sun Jan  8 17:22:29 1995
  72272. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22158
  72273.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 8 Jan 1995 12:46:33 -0500
  72274. Received: by apakabar.cc.columbia.edu id AA26537
  72275.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 8 Jan 1995 12:46:30 -0500
  72276. Newsgroups: comp.protocols.kermit.misc
  72277. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!Germany.EU.net!EU.net!chsun!olsen.ch!lichtin
  72278. From: lichtin@olsen.ch (Martin Lichtin)
  72279. Subject: Can spawn'ed programs access the open connection?
  72280. Message-Id: <D23K9H.Ext@olsen.ch>
  72281. Sender: news@olsen.ch
  72282. Organization: Olsen & Associates AG, Zurich, Switzerland
  72283. Date: Sun, 8 Jan 1995 17:22:29 GMT
  72284. Lines: 7
  72285. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  72286.  
  72287. How can I run a communications application after having used kermit to
  72288. open and prepare the device?  Is there a way to pass the UNIX file
  72289. handle on? Can the RUN command be used for this?
  72290.  
  72291. Thanks for more information. I'm running C-Kermit 5A(188) under UNIX.
  72292.  
  72293. Martin
  72294.  
  72295. From news@columbia.edu Sat Jan  7 14:34:38 1995
  72296. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23088
  72297.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 8 Jan 1995 13:01:56 -0500
  72298. Received: by apakabar.cc.columbia.edu id AA27356
  72299.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 8 Jan 1995 13:01:55 -0500
  72300. Newsgroups: comp.protocols.kermit.misc
  72301. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!news2.near.net!howland.reston.ans.net!cs.utexas.edu!uunet!hearst.acc.Virginia.EDU!murdoch!fulton.seas.Virginia.EDU!esh6h
  72302. From: esh6h@fulton.seas.Virginia.EDU (Erik Hatcher)
  72303. Subject: Grabbing text from a remote session
  72304. Message-Id: <D21Htq.161@murdoch.acc.Virginia.EDU>
  72305. Sender: usenet@murdoch.acc.Virginia.EDU
  72306. Organization: University of Virginia
  72307. Date: Sat, 7 Jan 1995 14:34:38 GMT
  72308. Lines: 23
  72309. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  72310.  
  72311. I want to have C-Kermit on a VAX dial up a remote computer
  72312. and enter in a Support call for processing by our company.
  72313. The process of entering the support call generates a sequence
  72314. number for that call that needs to be given back to
  72315. our client for future reference.  This sequence number just appears
  72316. on the screen when the information is being entered.
  72317.  
  72318. Is there a way that I can grab this ever-changing value off the
  72319. screen some how?  I was thinking that I could possibly log the
  72320. session to a file and then read it back from that file, but
  72321. I won't be in "connect" mode so "log session" would not grab
  72322. it.  Is there an appropriate "log" command that I could use
  72323. to file away the remotes responses??
  72324.  
  72325. Are there any other suggestions on how this could be accomplished?
  72326.  
  72327. Thanks,
  72328.     Erik
  72329. --
  72330. Erik Hatcher                           + "But every now and then we just have
  72331. http://fulton.seas.virginia.edu/~esh6h |  to howl with the wolves." 
  72332.                                        |        - Werner Heisenberg
  72333. ---------------------------------------+-------------------------------------
  72334.  
  72335. From news@columbia.edu Thu Jan  5 20:26:11 1995
  72336. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25072
  72337.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 8 Jan 1995 13:32:52 -0500
  72338. Received: by apakabar.cc.columbia.edu id AA29196
  72339.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 8 Jan 1995 13:32:51 -0500
  72340. Path: news.columbia.edu!spcuna!eisner!burns
  72341. From: burns@eisner.decus.org (Scott Burns)
  72342. Newsgroups: comp.protocols.kermit.misc
  72343. Subject: Re: C-Kermit OS/2 (16Bit) Under WinNT
  72344. Message-Id: <1995Jan5.152611.8468@eisner>
  72345. Date: 5 Jan 95 15:26:11 -0500
  72346. Organization: DECUServe
  72347. Lines: 3
  72348. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  72349.  
  72350. Unfortunately I require C-Kermit. Does anyone know who has dibs on trying to get
  72351. C-Kermit working under NT ? Last I heard someone had reserved the ck? letter
  72352. for NT.
  72353.  
  72354. From news@columbia.edu Sun Jan  8 19:16:08 1995
  72355. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27826
  72356.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 8 Jan 1995 14:16:12 -0500
  72357. Received: by apakabar.cc.columbia.edu id AA02148
  72358.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 8 Jan 1995 14:16:11 -0500
  72359. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  72360. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  72361. Newsgroups: comp.protocols.kermit.misc
  72362. Subject: Re: Grabbing text from a remote session
  72363. Date: 8 Jan 1995 19:16:08 GMT
  72364. Organization: Columbia University
  72365. Lines: 33
  72366. Message-Id: <3epdlo$232@apakabar.cc.columbia.edu>
  72367. References: <D21Htq.161@murdoch.acc.virginia.edu>
  72368. Nntp-Posting-Host: watsun.cc.columbia.edu
  72369. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  72370.  
  72371. In article <D21Htq.161@murdoch.acc.virginia.edu>,
  72372. Erik Hatcher <esh6h@fulton.seas.Virginia.EDU> wrote:
  72373. >I want to have C-Kermit on a VAX dial up a remote computer
  72374. >and enter in a Support call for processing by our company.
  72375. >The process of entering the support call generates a sequence
  72376. >number for that call that needs to be given back to
  72377. >our client for future reference.  This sequence number just appears
  72378. >on the screen when the information is being entered.
  72379. >
  72380. >Is there a way that I can grab this ever-changing value off the
  72381. >screen some how?  I was thinking that I could possibly log the
  72382. >session to a file and then read it back from that file, but
  72383. >I won't be in "connect" mode so "log session" would not grab
  72384. >it.  Is there an appropriate "log" command that I could use
  72385. >to file away the remotes responses??
  72386. >
  72387. There are numerous approaches, none of them pretty.  You are deeply
  72388. into the area we know as "screen scraping".
  72389.  
  72390. First of all, LOG SESSION should, indeed, work during script
  72391. execution, as well as in CONNECT mode.  So the brute-force approach
  72392. is to LOG SESSION and then grovel through the session-log file
  72393. afterwards to find the sacred number, either by hand or by program.
  72394.  
  72395. Well, if it can be done by program, that means there is some pattern
  72396. that allows you to locate the number.  If that is true, then you can
  72397. also use INPUT or MINPUT commands in your Kermit script to locate
  72398. (say) the thing that comes just before or just after the number, and
  72399. then you can pull the number out of the \v(input) buffer by using
  72400. string functions such as \findex(), \fsubstring(), etc, in a Kermit
  72401. script program.
  72402.  
  72403. - Frank
  72404.  
  72405. From news@columbia.edu Sun Jan  8 19:23:03 1995
  72406. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28353
  72407.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 8 Jan 1995 14:23:09 -0500
  72408. Received: by apakabar.cc.columbia.edu id AA02649
  72409.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 8 Jan 1995 14:23:07 -0500
  72410. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  72411. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  72412. Newsgroups: comp.protocols.kermit.misc
  72413. Subject: Re: Can spawn'ed programs access the open connection?
  72414. Date: 8 Jan 1995 19:23:03 GMT
  72415. Organization: Columbia University
  72416. Lines: 21
  72417. Message-Id: <3epe2n$2in@apakabar.cc.columbia.edu>
  72418. References: <D23K9H.Ext@olsen.ch>
  72419. Nntp-Posting-Host: watsun.cc.columbia.edu
  72420. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  72421.  
  72422. In article <D23K9H.Ext@olsen.ch>, Martin Lichtin <lichtin@olsen.ch> wrote:
  72423. >How can I run a communications application after having used kermit to
  72424. >open and prepare the device?  Is there a way to pass the UNIX file
  72425. >handle on? Can the RUN command be used for this?
  72426. >Thanks for more information. I'm running C-Kermit 5A(188) under UNIX.
  72427. >
  72428. As described in the manual, "Using C-Kermit", page 232, the variable
  72429. \v(ttyfd) contains the open file descriptor of the communication channel,
  72430. which can be either a serial device or a TCP/IP connection (or, in the
  72431. case of SunLink X.25, an X.25 connection).
  72432.  
  72433. If your communication application accepts an arbitrary file descriptor,
  72434. then you can pass it via this variable.  Otherwise, you can use the
  72435. redirection capabilities of certain shells, notably ksh, to redirect the
  72436. fd to your communication program's stdin/stdout.
  72437.  
  72438. Version 5A(190), the current release of C-Kermit, includes a new REDIRECT
  72439. command that starts a given program with its stdin/stdout redirected to
  72440. C-Kermit's open communications channel.
  72441.  
  72442. - Frank
  72443.  
  72444. From news@columbia.edu Sat Jan  7 06:11:09 1995
  72445. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00475
  72446.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 8 Jan 1995 14:51:19 -0500
  72447. Received: by apakabar.cc.columbia.edu id AA04180
  72448.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 8 Jan 1995 14:51:17 -0500
  72449. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!uhog.mit.edu!bloom-beacon.mit.edu!news.starnet.net!wupost!kuhub.cc.ukans.edu!tdsmith
  72450. From: tdsmith@kuhub.cc.ukans.edu
  72451. Newsgroups: comp.protocols.kermit.misc
  72452. Subject: Re: Help With Server & Con Redirection
  72453. Message-Id: <1995Jan7.121109.82047@kuhub.cc.ukans.edu>
  72454. Date: 7 Jan 95 12:11:09 CST
  72455. References: <3ekaf0$563@louie.udel.edu> <1995Jan6.163640.36826@cc.usu.edu>
  72456. Organization: University of Kansas Academic Computing Services
  72457. Lines: 40
  72458. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  72459.  
  72460. In article <1995Jan6.163640.36826@cc.usu.edu>, jrd@cc.usu.edu (Joe Doupnik) writes:
  72461. > In article <3ekaf0$563@louie.udel.edu>, alexandr@stimpy.eecis.udel.edu (Jerry Alexandratos) writes:
  72462. >> 
  72463. >> Okay, I want to log into a computer that has kermit running in server
  72464. >> mode.
  72465.   
  72466. [snip]
  72467.  
  72468. >     It's not quite clear exactly what you want where, and what you
  72469. > hope to get from it, but I'll try to decode.
  72470. >     I presume you want to make the DOS prompt visible across the
  72471. > net to the Linux machine, by something along the lines of CTTY <network>.
  72472. > If so then it won't work. And if so what you are trying to do is run
  72473. > DOS remotely via Kermit, as a Telnet daemon. That won't work either.
  72474. > CTTY is less than inadequate.
  72475. >     Put simply, DOS is not designed to be run from a terminal. There
  72476. > are some remote screen capture/keyboard stuffing programs around, such
  72477. > as Carbon Copy, PC Anywhere, etc which do that job reasonably well. Running
  72478. > in their cases means running on the DOS PC and the comms programs dig deeply
  72479. > into the machine to capture/stuff changes to the machine. MS-DOS Kermit is
  72480. > not such a program and we don't want to enter that nitch.
  72481. >     If I'm off base please give us some additional hints.
  72482. >         Joe D.
  72483.  
  72484. I'm not going to be of any help here.  In fact, I have a similar question.
  72485. All I want to do is transfer files between two PCs over a modem.  Is there 
  72486. any way to do this using kermit?  There are people available on both ends, 
  72487. so if a command needs to be entered on each end it is no problem.  I 
  72488. suppose I can purchase a commercial app if that's what it takes, but I 
  72489. would like to get kermit to do this if it can.  
  72490.  
  72491. I'm curious: my calculator (HP48 GX) can get an image of my DOS directory 
  72492. and put/get files by using kermit (kermit in server mode on the PC).  Is 
  72493. there something special in the version of kermit in my calculator's ROM 
  72494. that allows this, or does it have something to do with using a direct 
  72495. serial link instead of a modem?
  72496.  
  72497. Thanks for any replies,
  72498.  
  72499. Troy Smith
  72500.  
  72501. From news@columbia.edu Sat Jan  7 20:23:29 1995
  72502. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02067
  72503.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 8 Jan 1995 15:12:22 -0500
  72504. Received: by apakabar.cc.columbia.edu id AA05351
  72505.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 8 Jan 1995 15:12:21 -0500
  72506. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.alpha.net!news.mathworks.com!hookup!swrinde!howland.reston.ans.net!news1.digex.net!access4.digex.net!cmilton
  72507. From: Chris Milton <cmilton@access4.digex.net>
  72508. Newsgroups: comp.protocols.kermit.misc
  72509. Subject: Q: Avatex 2400E modem info
  72510. Date: Sat, 7 Jan 1995 15:23:29 -0500
  72511. Organization: Express Access Online Communications, USA
  72512. Lines: 21
  72513. Message-Id: <Pine.SUN.3.91.950107151345.15431A-100000@access4.digex.net>
  72514. Nntp-Posting-Host: access4.digex.net
  72515. Mime-Version: 1.0
  72516. Content-Type: TEXT/PLAIN; charset=US-ASCII
  72517. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  72518.  
  72519.  
  72520. My library received an Avatex 2400E modem as a gift
  72521. with no documentation.
  72522.  
  72523. We haven't found an address or phone number
  72524. for Avatex.  We need at least some idea what
  72525. the dialing codes are for this thing.
  72526. Any help would be appreciated.
  72527.  
  72528. All the info I have:
  72529. uses RJ11C outlet and DB-25 RS-232-C female port
  72530. indicator lights Power TR SD RD HS CD OH AA
  72531. Communications Canada # 875 3075 A
  72532. Ringer Equiv 0.7B  DOC load # 6
  72533. Serial Number 1310065
  72534. Made in Thailand
  72535.  
  72536. ---
  72537. Christopher M Milton  cmilton@access.digex.net
  72538. Arlington (VA) Central Library  (703) 358-5945
  72539.  
  72540.  
  72541. From news@columbia.edu Sun Jan  8 22:59:41 1995
  72542. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12552
  72543.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 8 Jan 1995 18:03:42 -0500
  72544. Received: by apakabar.cc.columbia.edu id AA16243
  72545.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 8 Jan 1995 18:03:40 -0500
  72546. Path: news.columbia.edu!panix!news.mathworks.com!europa.eng.gtefsd.com!news.umbc.edu!eff!usenet.ins.cwru.edu!magnus.acs.ohio-state.edu!math.ohio-state.edu!cs.utexas.edu!swrinde!pipex!sunic!news.kth.se!usenet
  72547. From: kubat@polymer.kth.se (Micke)
  72548. Newsgroups: comp.protocols.kermit.misc
  72549. Subject: Exit on NO CARRIER
  72550. Date: 8 Jan 1995 22:59:41 GMT
  72551. Organization: KTH
  72552. Lines: 7
  72553. Message-Id: <3epqot$cra@news.kth.se>
  72554. Nntp-Posting-Host: kubat.physchem.kth.se
  72555. Mime-Version: 1.0
  72556. Content-Type: text/plain; charset=iso-8859-1
  72557. Content-Transfer-Encoding: 8bit
  72558. X-Newsreader: WinVN 0.90.4
  72559. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  72560.  
  72561. Dear Friends,
  72562. Is there anyone who can tell me how to get a Kermit script to exit Kermit
  72563. when NO CARRIER. 
  72564.  
  72565. I have a script that automatically dials selected numbers
  72566. and connect with password and everything, but when the connection is
  72567. over I have to press ALT-X.
  72568.  
  72569. From news@columbia.edu Sun Jan  8 23:01:03 1995
  72570. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15946
  72571.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 8 Jan 1995 19:03:14 -0500
  72572. Received: by apakabar.cc.columbia.edu id AA19581
  72573.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 8 Jan 1995 19:03:13 -0500
  72574. Path: news.columbia.edu!panix!bloom-beacon.mit.edu!news2.near.net!howland.reston.ans.net!pipex!sunic!news.kth.se!news.ifm.liu.se!news.lysator.liu.se!pi92mti
  72575. From: pi92mti@jupiter.pt.hk-r.se (Magnus Timmerby)
  72576. Newsgroups: comp.protocols.kermit.misc
  72577. Subject: long block protocol
  72578. Date: 08 Jan 1995 23:01:03 GMT
  72579. Organization: Dept. of Comp. Sci. Soft Center, Ronneby
  72580. Lines: 5
  72581. Distribution: world
  72582. Message-Id: <PI92MTI.95Jan9000103@jupiter.pt.hk-r.se>
  72583. Nntp-Posting-Host: jupiter.pt.hk-r.se
  72584. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  72585.  
  72586. What is "Kermit Long Block Protocol"?
  72587. Where can I get information on it?
  72588.  
  72589. --
  72590. Magnus Timmerby  pi92mti@pt.hk-r.se
  72591.  
  72592. From news@columbia.edu Sun Jan  8 12:46:29 1995
  72593. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23379
  72594.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 8 Jan 1995 21:03:19 -0500
  72595. Received: by apakabar.cc.columbia.edu id AA26902
  72596.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 8 Jan 1995 21:03:18 -0500
  72597. Path: news.columbia.edu!panix!bloom-beacon.mit.edu!gatech!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  72598. From: jrd@cc.usu.edu (Joe Doupnik)
  72599. Newsgroups: comp.protocols.kermit.misc
  72600. Subject: Re: long block protocol
  72601. Message-Id: <1995Jan8.184629.37000@cc.usu.edu>
  72602. Date: 8 Jan 95 18:46:29 MDT
  72603. References: <PI92MTI.95Jan9000103@jupiter.pt.hk-r.se>
  72604. Distribution: world
  72605. Organization: Utah State University
  72606. Lines: 15
  72607. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  72608.  
  72609. In article <PI92MTI.95Jan9000103@jupiter.pt.hk-r.se>, pi92mti@jupiter.pt.hk-r.se (Magnus Timmerby) writes:
  72610. > What is "Kermit Long Block Protocol"?
  72611. > Where can I get information on it?
  72612. > --
  72613. > Magnus Timmerby  pi92mti@pt.hk-r.se
  72614. -----------
  72615.     I think you mean long packets, since in Kermit-speak "block"
  72616. refers to the kind of checksum. Long packets are a standard part of
  72617. the Kermit protocol, have been since goodness knows when (going on
  72618. a decade, +/- 5%). It's not a protocol b
  72619. t a feature of the Kermit
  72620. protocol. For the rules on the matter please see the official reference:
  72621. the book "Kermit, a file transfer protocol" by Frank da Cruz, 1987,
  72622. ISBN 0-932376-88-6.
  72623.     Joe D.
  72624.  
  72625. From news@columbia.edu Mon Jan  9 02:57:16 1995
  72626. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27013
  72627.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 8 Jan 1995 21:57:19 -0500
  72628. Received: by apakabar.cc.columbia.edu id AA00518
  72629.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 8 Jan 1995 21:57:17 -0500
  72630. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  72631. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  72632. Newsgroups: comp.protocols.kermit.misc
  72633. Subject: MS-DOS Kermit 3.14 Beta-18 Ready for Testing
  72634. Date: 9 Jan 1995 02:57:16 GMT
  72635. Organization: Columbia University
  72636. Lines: 37
  72637. Message-Id: <3eq8mc$g4@apakabar.cc.columbia.edu>
  72638. Nntp-Posting-Host: watsun.cc.columbia.edu
  72639. Keywords: MS-DOS, Kermit
  72640. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  72641.  
  72642.  
  72643. MS-DOS Kermit 3.14 Beta-18 is available for anonymous ftp from
  72644. kermit.columbia.edu as of Sunday, Jan 8, 1995, 9:50pm Eastern USA time:
  72645.  
  72646.   kermit/test/bin/mstibm.zip  - Binary ZIP file
  72647.   kermit/test/text/mstibm.uue - Uuencoded ZIP file
  72648.   kermit/test/text/mstibm.boo - BOO-encoded ZIP file
  72649.  
  72650. The UUE and BOO files are also available on BITNET from KERMSRV at CUVMA.
  72651.  
  72652. Changes and fixes since Beta-17 include:
  72653.  
  72654.  . A macro which is invoked with no arguments now (once again)
  72655.    sees its argc value as 1, rather than 10.
  72656.  
  72657.  . SET STOP-BITS { 1, 2 } added to accommodate devices that really
  72658.    do need 2 stop bits.  Yes, there really is at least one (it's a lathe).
  72659.  
  72660.  . SET FOSSIL DISABLE-ON-CLOSE { OFF, ON } allows control of whether
  72661.    fossil driver is "deinitialized" by Kermit upon close or exit.  See
  72662.    KERMIT.UPD for details.
  72663.  
  72664.  . Dialing script added for MegaHertz/Telepath PCMCIA V.32bis data/fax modem.
  72665.  
  72666.  . More TCP/IP performance tweaks.
  72667.  
  72668.  . A Telnet options negotiation bug that was introduced in Beta-17 is fixed.
  72669.  
  72670.  . A problem with the TAKE command finding files when full path not given,
  72671.    fixed.
  72672.  
  72673.  . Minor bug with TAKE files whose last line is not properly terminated,
  72674.    fixed.
  72675.  
  72676. Please continue to send reports by e-mail to kermit@columbia.edu.
  72677.  
  72678. - Frank
  72679.  
  72680. From news@columbia.edu Mon Jan  9 06:05:57 1995
  72681. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12840
  72682.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 9 Jan 1995 01:30:50 -0500
  72683. Received: by apakabar.cc.columbia.edu id AA12831
  72684.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 9 Jan 1995 01:30:49 -0500
  72685. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news2.near.net!news.mathworks.com!news.kei.com!ub!newserve!br00031
  72686. From: br00031@bingsuns.cc.binghamton.edu ()
  72687. Newsgroups: comp.protocols.kermit.misc
  72688. Subject: 2 questions
  72689. Date: 9 Jan 1995 06:05:57 GMT
  72690. Organization: Binghamton University, Binghamton, NY
  72691. Lines: 19
  72692. Message-Id: <3eqjo6$p9k@bingnet1.cc.binghamton.edu>
  72693. Nntp-Posting-Host: 128.226.1.2
  72694. X-Newsreader: TIN [version 1.2 PL2]
  72695. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  72696.  
  72697. I use ms Kermit to connect via telephone modem to my university Suns.
  72698.   The suns uses
  72699. c-kermit (about 2 versions back I think).
  72700. 1.  Every time I do file transfers I must reset several variables in
  72701. c-kermit; flow control, windows, blocks etc..  Is it possible for me
  72702. to have these commands as a script or macro in my home directory. How
  72703. would I tell c-kermit to use that script.?
  72704.  
  72705. 2.  It has been suggested in the past that the telnet capabilites of
  72706. kermit are superior to the normal telnet.  Is it possible to use those
  72707. telnet capabilties with my modem connection. I mean can I put c-kermit
  72708. into Server mode and use its telnet.   Is there any possible benifit
  72709. to gained by doing this over the normal telnet capabilites that are on
  72710. the Unix system?
  72711.  
  72712. Sorry if I have not used the right tech terms
  72713.  
  72714. By the way, thankyou for fixing the mail command in mskermit.  I think
  72715. that I one of the few people on earth who uses that function. 
  72716.  
  72717. From news@columbia.edu Mon Jan  9 13:55:38 1995
  72718. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07527
  72719.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 9 Jan 1995 08:55:44 -0500
  72720. Received: by apakabar.cc.columbia.edu id AA01914
  72721.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 9 Jan 1995 08:55:42 -0500
  72722. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  72723. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  72724. Newsgroups: comp.protocols.kermit.misc
  72725. Subject: Re: 2 questions
  72726. Date: 9 Jan 1995 13:55:38 GMT
  72727. Organization: Columbia University
  72728. Lines: 74
  72729. Message-Id: <3erf8q$1rl@apakabar.cc.columbia.edu>
  72730. References: <3eqjo6$p9k@bingnet1.cc.binghamton.edu>
  72731. Nntp-Posting-Host: watsun.cc.columbia.edu
  72732. Keywords: Initialization, Telnet
  72733. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  72734.  
  72735. In article <3eqjo6$p9k@bingnet1.cc.binghamton.edu>,
  72736.  <br00031@bingsuns.cc.binghamton.edu> wrote:
  72737. >I use ms Kermit to connect via telephone modem to my university Suns.
  72738. >  The suns uses
  72739. >c-kermit (about 2 versions back I think).
  72740. >1.  Every time I do file transfers I must reset several variables in
  72741. >c-kermit; flow control, windows, blocks etc..  Is it possible for me
  72742. >to have these commands as a script or macro in my home directory.
  72743. >
  72744. Yes, all of the above, as explained in the manual, "Using C-Kermit".
  72745. The recommended method is to install the standard C-Kermit initialization
  72746. file, .kermrc, in your home directory, and then create a .mykermrc
  72747. file, also in your home directory, containing the desired customization
  72748. commands.  For those who don't like the standard .kermrc file (which
  72749. sets up such items as your services directory, dialing directory, etc),
  72750. just make a .kermrc file.
  72751.  
  72752. >How would I tell c-kermit to use that script.?
  72753. >
  72754. See above.  You can also tell C-Kermit to use any file at all as its
  72755. initialization file, using the -y command-line option:
  72756.  
  72757.   kermit -y filename
  72758.  
  72759. And at any time C-Kermit is showing its prompt, you can tell it to execute
  72760. commands from a file:
  72761.  
  72762.   C-Kermit> take filename
  72763.  
  72764. And you can define macros and execute them like so:
  72765.  
  72766.   C-Kermit> define fast set rec packet-length 2000, set window 4
  72767.   C-Kermit> fast
  72768.   
  72769. And you can put the macro definitions in your initialization file or
  72770. any other file that you can "take".
  72771.  
  72772. All of this is explained in the manual.
  72773.  
  72774. >2.  It has been suggested in the past that the telnet capabilites of
  72775. >kermit are superior to the normal telnet.  Is it possible to use those
  72776. >telnet capabilties with my modem connection. I mean can I put c-kermit
  72777. >into Server mode and use its telnet.   Is there any possible benifit
  72778. >to gained by doing this over the normal telnet capabilites that are on
  72779. >the Unix system?
  72780. >
  72781. You mean, after dialing up to your Unix system, you want to know why you
  72782. might want to use C-Kermit instead of telnet to connect to another system
  72783. on the Internet?  The advantages include:
  72784.  
  72785.  . Kermit is more user-friendly ("help", "?", command and filename
  72786.    completion, etc).
  72787.  
  72788.  . The telnet implementation works in some cases where regular
  72789.    telnet does not.
  72790.  
  72791.  . Kermit has scripting (automation) capability; telnet does not.
  72792.  
  72793.  . Kermit has (in the UNIX version, a limited form of) key mapping;
  72794.    telnet doesn't.
  72795.  
  72796.  . Kermit can convert among many different character sets, telnet can't.
  72797.  
  72798.  . Kermit has session logging, telnet doesn't.
  72799.  
  72800.  . Kermit can make 8-bit telnet connections; some telnet clients can't.
  72801.  
  72802.  . Kermit can transfer files over a telnet connection, telnet can't.
  72803.  
  72804. The last point is important in the increasing number of cases where the
  72805. telnetted-to host or service does not provide ftp; e.g. Internet BBSs,
  72806. or Internet versions of commercial dialup services.
  72807.  
  72808. - Frank
  72809.  
  72810. From news@columbia.edu Mon Jan  9 23:21:10 1995
  72811. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05409
  72812.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 9 Jan 1995 20:04:27 -0500
  72813. Received: by apakabar.cc.columbia.edu id AA08250
  72814.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 9 Jan 1995 20:04:26 -0500
  72815. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!pipex!news.oleane.net!oleane!jussieu.fr!univ-lyon1.fr!pasteur.fr!pasteur.fr!not-for-mail
  72816. From: dan@pasteur.fr (Daniel Azuelos)
  72817. Newsgroups: comp.protocols.kermit.misc
  72818. Subject: Mac Kermit .991(190) 8bits ?
  72819. Date: 10 Jan 1995 00:21:10 +0100
  72820. Organization: Institut Pasteur, Paris, France
  72821. Lines: 13
  72822. Message-Id: <3esgd6INN4dm@mendel.sis.pasteur.fr>
  72823. Nntp-Posting-Host: mendel.sis.pasteur.fr
  72824. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  72825.  
  72826. When using Mac Kermit .991(190) I'd like to be able to type
  72827. 8bits character, much the same way we (on this side of the planet)
  72828. are used to do it on any Mac.
  72829.  
  72830. As an example, 'Alt-e e' should give an 'e acute' both on the
  72831. screen and on the host computer to which I'm connected:
  72832. displayed as i, and sent to the computer as 0xe9.
  72833.  
  72834. Is this possible ? What should I do ? May I do (write, program) it ?
  72835.  
  72836. Thanx for any hint.
  72837. -- 
  72838. dan                 ``Et pourtant ga tourne....''
  72839.  
  72840. From news@columbia.edu Tue Jan 10 05:08:23 1995
  72841. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00881
  72842.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 10 Jan 1995 02:05:00 -0500
  72843. Received: by apakabar.cc.columbia.edu id AA29846
  72844.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 10 Jan 1995 02:02:23 -0500
  72845. Path: news.columbia.edu!sol.ctr.columbia.edu!news.cs.columbia.edu!news.pipeline.com!swiss.ans.net!solaris.cc.vt.edu!news.mathworks.com!europa.eng.gtefsd.com!howland.reston.ans.net!vixen.cso.uiuc.edu!newsrelay.iastate.edu!news.iastate.edu!billmaly
  72846. From: billmaly@iastate.edu (WhoWantsTaKnow)
  72847. Newsgroups: comp.protocols.kermit.misc
  72848. Subject: Latest KERMIT for DOS to UNIX transfers
  72849. Date: 10 Jan 1995 05:08:23 GMT
  72850. Organization: Iowa State University, Ames, Iowa (USA)
  72851. Lines: 14
  72852. Message-Id: <3et4o7$9hl@news.iastate.edu>
  72853. Nntp-Posting-Host: des1.iastate.edu
  72854. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  72855.  
  72856. I want to download files(quickly if possible) from my UNIX account to my
  72857. DOS PC at home. What is the best version of KERMIT for this and where
  72858. might I find it? Any help is appreciated.
  72859.  
  72860.  
  72861. -- 
  72862. Bill Maly
  72863. billmaly@iastate.edu
  72864.  
  72865.  
  72866.  
  72867.  
  72868.  
  72869.  
  72870.  
  72871. From news@columbia.edu Tue Jan 10 05:48:20 1995
  72872. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01778
  72873.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 10 Jan 1995 02:21:06 -0500
  72874. Received: by apakabar.cc.columbia.edu id AA00626
  72875.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 10 Jan 1995 02:21:00 -0500
  72876. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!ub!newserve!br00031
  72877. From: br00031@bingsuns.cc.binghamton.edu ()
  72878. Newsgroups: comp.protocols.kermit.misc
  72879. Subject: Re: Latest KERMIT for DOS to UNIX transfers
  72880. Date: 10 Jan 1995 05:48:20 GMT
  72881. Organization: Binghamton University, Binghamton, NY
  72882. Lines: 24
  72883. Message-Id: <3et734$jg8@bingnet1.cc.binghamton.edu>
  72884. References: <3et4o7$9hl@news.iastate.edu>
  72885. Nntp-Posting-Host: 128.226.1.2
  72886. X-Newsreader: TIN [version 1.2 PL2]
  72887. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  72888.  
  72889. WhoWantsTaKnow (billmaly@iastate.edu) wrote:
  72890. : I want to download files(quickly if possible) from my UNIX account to my
  72891. : DOS PC at home. What is the best version of KERMIT for this and where
  72892. : might I find it? Any help is appreciated.
  72893.  
  72894.  
  72895. : -- 
  72896. : Bill Maly
  72897. : billmaly@iastate.edu
  72898.  
  72899.  ftp to  kermit.columbia.edu
  72900.   in directory /kermit/test/bin
  72901.     get the file mstibm.zip   This is the latest beta version.  I
  72902. also suggest that you get the manual "Using Ms-Dos Kermit" 2nd edition
  72903. by Christine M. Gianone   Digital press $34.95 isbn 1-55558-082-3
  72904.  
  72905. You may also want the Manual for Unix it is "Kermit: a file transfer
  72906. protocol" by Frank da Cruz  $29.95
  72907.  
  72908. To order these directly from the publisher dial 1 800 344 4825
  72909.  
  72910.  
  72911.  
  72912.  
  72913.  
  72914. From news@columbia.edu Tue Jan 10 14:00:57 1995
  72915. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24473
  72916.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 10 Jan 1995 09:01:01 -0500
  72917. Received: by apakabar.cc.columbia.edu id AA14629
  72918.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 10 Jan 1995 09:01:00 -0500
  72919. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  72920. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  72921. Newsgroups: comp.protocols.kermit.misc
  72922. Subject: Re: Mac Kermit .991(190) 8bits ?
  72923. Date: 10 Jan 1995 14:00:57 GMT
  72924. Organization: Columbia University
  72925. Lines: 30
  72926. Message-Id: <3eu3up$e8p@apakabar.cc.columbia.edu>
  72927. References: <3esgd6INN4dm@mendel.sis.pasteur.fr>
  72928. Nntp-Posting-Host: watsun.cc.columbia.edu
  72929. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  72930.  
  72931. In article <3esgd6INN4dm@mendel.sis.pasteur.fr>,
  72932. Daniel Azuelos <dan@pasteur.fr> wrote:
  72933. >When using Mac Kermit .991(190) I'd like to be able to type
  72934. >8bits character, much the same way we (on this side of the planet)
  72935. >are used to do it on any Mac.
  72936. >
  72937. >As an example, 'Alt-e e' should give an 'e acute' both on the
  72938. >screen and on the host computer to which I'm connected:
  72939. >displayed as i, and sent to the computer as 0xe9.
  72940. >
  72941. You should be able to do it.  Please read the ckmker.bwr
  72942. file that accompanies Mac Kermit 0.991(190).  You will see
  72943. there are many shortcomings in the international character-set
  72944. support, but it still can be done.
  72945.  
  72946. You have to tell Kermit (in the Terminal settings) to allow
  72947. 8-bit characters, and you have to select Latin-1 as the
  72948. character-set.
  72949.  
  72950. The big problem is with entering 8-bit characters.  Since
  72951. Mac Kermit's font is not a regular system font, but rather
  72952. a built-in one, you can't use Keycaps in the normal way, which
  72953. is frustrating.
  72954.  
  72955. Nevertheless, you should be able to enter 8-bit characters in
  72956. the normal way, provided you have not done anything to the
  72957. Alt (Option?) key in the Modifiers dialog of the Key Settings
  72958. menu.
  72959.  
  72960. - Frank
  72961.  
  72962. From news@columbia.edu Tue Jan 10 18:54:40 1995
  72963. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10814
  72964.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 10 Jan 1995 17:49:00 -0500
  72965. Received: by apakabar.cc.columbia.edu id AA12627
  72966.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 10 Jan 1995 17:48:59 -0500
  72967. Newsgroups: comp.protocols.kermit.misc
  72968. Path: news.columbia.edu!sol.ctr.columbia.edu!news.cs.columbia.edu!news.pipeline.com!swiss.ans.net!europa.eng.gtefsd.com!portal.gmu.edu!hearst.acc.Virginia.EDU!murdoch!fulton.seas.Virginia.EDU!esh6h
  72969. From: esh6h@fulton.seas.Virginia.EDU (Erik Hatcher)
  72970. Subject: Strange characters
  72971. Message-Id: <D27Dv4.DM1@murdoch.acc.Virginia.EDU>
  72972. Sender: usenet@murdoch.acc.Virginia.EDU
  72973. Organization: University of Virginia
  72974. Date: Tue, 10 Jan 1995 18:54:40 GMT
  72975. Lines: 25
  72976. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  72977.  
  72978.  
  72979. I log into my account using C-Kermit for VAX (the latest version)
  72980. over a 14.4 modem into a Cisco terminal server and connect
  72981. to my an RS/6000 running AIX.
  72982.  
  72983. When I use the WWW via Lynx, sometimes the screen becomes
  72984. complete garbage, i.e.  all the characters that were once
  72985. normal, switch to bizarre characters.  I know this is a C-Kermit
  72986. caused phenomenon, as I've dialed using DTEPAD many many times
  72987. in the past with no ill effects.
  72988.  
  72989. What kind of "set"'s can I do before I dial, at the Cisco prompt,
  72990. or on my AIX machine that might alleviate this problem???
  72991.  
  72992. It appears to happen mostly when I'm "arrowing" around in Lynx,
  72993. and I suspect would happen on any other full screen application
  72994. that I ran.
  72995.  
  72996. Thanks,
  72997.     Erik
  72998. --
  72999. Erik Hatcher                           + "But every now and then we just have
  73000. http://fulton.seas.virginia.edu/~esh6h |  to howl with the wolves." 
  73001.                                        |        - Werner Heisenberg
  73002. ---------------------------------------+-------------------------------------
  73003.  
  73004. From news@columbia.edu Wed Jan 11 01:15:14 1995
  73005. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21945
  73006.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 10 Jan 1995 20:15:49 -0500
  73007. Received: by apakabar.cc.columbia.edu id AA24977
  73008.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 10 Jan 1995 20:15:47 -0500
  73009. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  73010. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  73011. Newsgroups: comp.protocols.kermit.misc
  73012. Subject: Re: Strange characters
  73013. Date: 11 Jan 1995 01:15:14 GMT
  73014. Organization: Columbia University
  73015. Lines: 47
  73016. Message-Id: <3evbf2$oc1@apakabar.cc.columbia.edu>
  73017. References: <D27Dv4.DM1@murdoch.acc.virginia.edu>
  73018. Nntp-Posting-Host: watsun.cc.columbia.edu
  73019. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  73020.  
  73021. In article <D27Dv4.DM1@murdoch.acc.virginia.edu>,
  73022. Erik Hatcher <esh6h@fulton.seas.Virginia.EDU> wrote:
  73023. >
  73024. >I log into my account using C-Kermit for VAX (the latest version)
  73025. >over a 14.4 modem into a Cisco terminal server and connect
  73026. >to my an RS/6000 running AIX.
  73027. >
  73028. Which version of AIX?
  73029.  
  73030. >When I use the WWW via Lynx, sometimes the screen becomes
  73031. >complete garbage, i.e.  all the characters that were once
  73032. >normal, switch to bizarre characters.  I know this is a C-Kermit
  73033. >caused phenomenon, as I've dialed using DTEPAD many many times
  73034. >in the past with no ill effects.
  73035. >
  73036. First you have to tell us what you are using for a terminal or
  73037. terminal emulator.  Then you would need to describe the garbage in
  73038. greater detail.  Is it a jumble of line- and box-drawing characters?
  73039. Or is it a lot of accented letters?
  73040.  
  73041. >What kind of "set"'s can I do before I dial, at the Cisco prompt,
  73042. >or on my AIX machine that might alleviate this problem???
  73043. >
  73044. >It appears to happen mostly when I'm "arrowing" around in Lynx,
  73045. >and I suspect would happen on any other full screen application
  73046. >that I ran.
  73047. >
  73048. First, carefully check your terminal type in AIX.  Be sure it is
  73049. not AIXTERM!  If it is, change it to vt-whatever (depending on your
  73050. terminal or emulator).
  73051.  
  73052. Next, be sure to tell C-Kermit to:
  73053.  
  73054.   set terminal bytesize 8
  73055.   set command bytesize 8
  73056.  
  73057. as described in the manual, for accessing an 8-bit application like Lynx
  73058. (or rn, or trn, etc).
  73059.  
  73060. Finally, depending on exactly what kind of text you are accessing with
  73061. Lynx, and what your terminal or emulator is, be sure to set either C-Kermit
  73062. or your terminal (emulator) for the proper character-set translations.
  73063.  
  73064. If this is not enough to get things working for you, send me e-mail with
  73065. the details and maybe a session log.
  73066.  
  73067. - Frank
  73068.  
  73069. From news@columbia.edu Wed Jan 11 12:38:13 1995
  73070. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07477
  73071.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 11 Jan 1995 08:02:07 -0500
  73072. Received: by apakabar.cc.columbia.edu id AA28948
  73073.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 11 Jan 1995 08:02:06 -0500
  73074. Newsgroups: comp.protocols.kermit.misc
  73075. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!howland.reston.ans.net!pipex!warwick!bsmail!zeus!glald
  73076. From: glald@zeus.bris.ac.uk (AL. Davies)
  73077. Subject: Is there an FAQ ?
  73078. Message-Id: <D28r3q.A00@info.bris.ac.uk>
  73079. Sender: usenet@ncs.bris.ac.uk (Usenet news owner)
  73080. Nntp-Posting-Host: zeus.bris.ac.uk
  73081. Organization: University of Bristol, England
  73082. X-Newsreader: TIN [version 1.2 PL2]
  73083. Date: Wed, 11 Jan 1995 12:38:13 GMT
  73084. Lines: 17
  73085. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  73086.  
  73087. Hi,
  73088.  
  73089. I can't find the FAQ for this newsgroup. Is there one ? I'd like
  73090. to see it, as I've just installed kermit on a PC with a modem,
  73091. and was wondering if kermit could be left (in some mode) to answer
  73092. the phone as a server, and dish out files to whoever calls in.
  73093.  
  73094. Any help greatly appreciated!
  73095.  
  73096. Cheers,
  73097.  
  73098. Alastair Davies
  73099. University of Bristol
  73100. U.K.
  73101.  
  73102.  
  73103. alastair.davies@bristol.ac.uk
  73104.  
  73105. From news@columbia.edu Wed Jan 11 13:47:50 1995
  73106. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12299
  73107.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 11 Jan 1995 09:13:59 -0500
  73108. Received: by apakabar.cc.columbia.edu id AA03806
  73109.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 11 Jan 1995 09:13:57 -0500
  73110. Path: news.columbia.edu!panix!news.mathworks.com!hookup!swrinde!news.dell.com!tadpole.com!uunet!senior.nectec.or.th!morakot!sompop
  73111. From: sompop@morakot.nectec.or.th (Sompop Kumnoonsate)
  73112. Newsgroups: comp.protocols.kermit.misc
  73113. Subject: Status line is overwritten
  73114. Date: 11 Jan 1995 13:47:50 GMT
  73115. Organization: National Electronics and Computer Technology Center, Bangkok
  73116. Lines: 12
  73117. Message-Id: <3f0ni6$fic@senior.nectec.or.th>
  73118. Nntp-Posting-Host: morakot.nectec.or.th
  73119. X-Newsreader: TIN [version 1.2 PL2]
  73120. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  73121.  
  73122. Is there a way to set kermit to display only 24 lines?
  73123. I use kermit 3.14 beta 8 to connect to DEC Alpha OSF 3.0.
  73124. The TERM environment is set to VT320.
  73125. DEC always sends <ESC>[25;1H when I use "more" and the next character
  73126. will display over status line.  If the screen is scrolled the first line
  73127. will show the last line of previous screen. But it will be disappeared
  73128. after redraw screen.
  73129.  
  73130. Thanks,
  73131. Sompop Kumnoonsate
  73132. sompop@morakot.nectec.or.th
  73133.  
  73134.  
  73135. From news@columbia.edu Wed Jan 11 14:20:34 1995
  73136. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12863
  73137.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 11 Jan 1995 09:20:52 -0500
  73138. Received: by apakabar.cc.columbia.edu id AA04468
  73139.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 11 Jan 1995 09:20:48 -0500
  73140. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  73141. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  73142. Newsgroups: comp.protocols.kermit.misc
  73143. Subject: Re: Is there an FAQ ?
  73144. Date: 11 Jan 1995 14:20:34 GMT
  73145. Organization: Columbia University
  73146. Lines: 62
  73147. Message-Id: <3f0pfi$4b7@apakabar.cc.columbia.edu>
  73148. References: <D28r3q.A00@info.bris.ac.uk>
  73149. Nntp-Posting-Host: watsun.cc.columbia.edu
  73150. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  73151.  
  73152. In article <D28r3q.A00@info.bris.ac.uk>,
  73153. AL. Davies <glald@zeus.bris.ac.uk> wrote:
  73154. >I can't find the FAQ for this newsgroup. Is there one ?
  73155. >
  73156. Yes.  Anonymous ftp to kermit.columbia.edu, directory kermit,
  73157. file FAQ.TXT.
  73158.  
  73159. >I'd like
  73160. >to see it, as I've just installed kermit on a PC with a modem,
  73161. >and was wondering if kermit could be left (in some mode) to answer
  73162. >the phone as a server, and dish out files to whoever calls in.
  73163. >
  73164. This is not covered in the FAQ because it is covered in the manual,
  73165. "Using MS-DOS Kermit", chapters 10 and 11:
  73166.  
  73167.   Christine M. Gianone, "Using MS-DOS Kermit", Second Edition, Digital
  73168.   Press / Butterworth-Heinemann, Woburn, MA, 1992, 345 pages, ISBN
  73169.   1-55558-082-3.  Packaged with version 3.13 of MS-DOS Kermit for the
  73170.   IBM PC, PS/2, and compatibles on a 3.5-inch diskette.
  73171.  
  73172.   US single-copy price: $34.95; quantity discounts available.  Available
  73173.   in computer bookstores or directly from:
  73174.  
  73175.     Kermit Development and Distribution
  73176.     Columbia University Academic Information Systems
  73177.     612 West 115th Street
  73178.     New York, NY  10025  USA
  73179.     Telephone: (USA) 212 854-3703
  73180.  
  73181.   Domestic and overseas orders accepted.  Price: $34.95 (US, Canada, and
  73182.   Mexico), $45 elsewhere.  Orders may be paid by MasterCard or Visa, or
  73183.   prepaid by check in US dollars.  Add $35 bank fee for checks not drawn
  73184.   on a US bank.  Price includes shipping.  Do not include sales tax.
  73185.  
  73186.   You can also order by phone from the publisher, Digital Press /
  73187.   Butterworth-Heinemann, with MasterCard, Visa, or American Express:
  73188.  
  73189.     +1 800 366-2665 (Woburn, Massachusetts office for USA and Canada)
  73190.     +1 800 665-1148 (Logan Bros, Winnepeg, Manitoba office for Canada)
  73191.     +44 993 58521   (Rushden, England office for Europe)
  73192.     +61 2 372-5511  (Chatswood, NSW office for Australia & New Zealand)
  73193.     +65 220-3684    (Singapore office for Asia)
  73194.  
  73195.   A German-language edition is also available:
  73196.  
  73197.     Christine M. Gianone, "MS-DOS Kermit, das universelle
  73198.     Kommunikationsprogramm", Verlag Heinz Heise, Hannover, Germany
  73199.     (1991), 414 pages.  Packaged with version 3.12 of MS-DOS Kermit for
  73200.     the IBM PC, PS/2, and compatibles on a 5.25-inch diskette, including
  73201.     German-language help files.  Deutsch von Gisbert W. Selke.  Price:
  73202.     DM 69,00.  ISBN 3-88229-006-4.  Verlag Heinz Heise GmbH & Co. KG,
  73203.     Helstorfer Strasse 7, D-30625 Hannover.  Tel. +49 (05 11) 53 52-0,
  73204.     Fax. +49 (05 11) 53 53-1 29.
  73205.  
  73206.   And a French-language edition:
  73207.  
  73208.     Christine M. Gianone, "Kermit MS-DOS mode d'emploi", Heinz Schiefer
  73209.     & Cie., Versailles (1993), 406 pages.  Packaged with version 3.11 of
  73210.     MS-DOS Kermit for the IBM PC, PS/2, and compatibles on a 5.25-inch
  73211.     diskette.  Adaption francaise: Jean Dutertre.  ISBN 2-901143-20-2.
  73212.     Heinz Schiefer & Cie., 45 rue Henri de Regnier, F-78000 Versailles.
  73213.     Tel. +33 39 53 95 26, Fax. +33 39 02 39 71.
  73214.  
  73215. From news@columbia.edu Wed Jan 11 14:43:05 1995
  73216. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14754
  73217.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 11 Jan 1995 09:43:10 -0500
  73218. Received: by apakabar.cc.columbia.edu id AA06272
  73219.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 11 Jan 1995 09:43:08 -0500
  73220. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  73221. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  73222. Newsgroups: comp.protocols.kermit.misc
  73223. Subject: Re: Status line is overwritten
  73224. Date: 11 Jan 1995 14:43:05 GMT
  73225. Organization: Columbia University
  73226. Lines: 54
  73227. Message-Id: <3f0qpq$63u@apakabar.cc.columbia.edu>
  73228. References: <3f0ni6$fic@senior.nectec.or.th>
  73229. Nntp-Posting-Host: watsun.cc.columbia.edu
  73230. Keywords: Status line
  73231. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  73232.  
  73233. In article <3f0ni6$fic@senior.nectec.or.th>,
  73234. Sompop Kumnoonsate <sompop@morakot.nectec.or.th> wrote:
  73235. >Is there a way to set kermit to display only 24 lines?
  73236. >
  73237. It is, by default.
  73238.  
  73239. >I use kermit 3.14 beta 8 to connect to DEC Alpha OSF 3.0.
  73240. >The TERM environment is set to VT320.
  73241. >DEC always sends <ESC>[25;1H when I use "more" and the next character
  73242. >will display over status line.  If the screen is scrolled the first
  73243. >line will show the last line of previous screen. But it will be
  73244. >disappeared after redraw screen.
  73245. >
  73246. The vt320 has 24 regular lines and one status line.  The status line
  73247. should not be addressed by regular cursor-positioning commands like
  73248. <ESC>[25;1H, but rather by:
  73249.  
  73250.  CSI Ps $ }    DECSASD        Select active status display
  73251.     Ps = 0 select main display
  73252.     Ps = 1 select status line
  73253.     Moves cursor to selected display area. This command will be
  73254.     ignored unless the status line has been enabled by CSI 2 $
  73255.     ~. When the status line has been selected cursor remains there
  73256.     until the main display is reselected by CSI 0 $ }.
  73257.  
  73258.  CSI Ps $ ~    DECSSDT        Select Status Line Type
  73259.             Ps    meaning
  73260.             0     no status line (empty)
  73261.             1    indicator line (locally owned, Kermit default)
  73262.             2    host-writable line
  73263.  
  73264. Check your vt320 termcap entry.  There are items such as "hs, "ds",
  73265. "es", "fs", "ts", and "ws" that are used to handle the status line.
  73266.  
  73267. Note that Kermit protects its status line from ordinary screen
  73268. operations.  It does not scroll, it does not disappear when the screen
  73269. is cleared, etc.  However, Kermit does allow the status line to be
  73270. addressed directly by the host via <ESC>[25;xH, because this is commonly
  73271. used by host applications like sysline, etc.
  73272.  
  73273. Some OTHER applications apparently rely on the fact that if you address
  73274. a line (row) number that is greater than the actual number of lines,
  73275. that the cursor will go to the last line.  (One program that absolutely
  73276. relies on this fact is "resize".)
  73277.  
  73278. The problem comes in when we address "last line plus one" -- the purpose
  73279. of this direct addressing is ambiguous.  So we have two classes of
  73280. applications whose use of <ESC>[25;xH are in direct conflict with each
  73281. other.
  73282.  
  73283. The solution, in UNIX at least, is to cook up separate termcap/terminfo
  73284. entries for the two variations.
  73285.  
  73286. - Frank
  73287.  
  73288. From news@columbia.edu Wed Jan 11 05:57:28 1995
  73289. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17396
  73290.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 11 Jan 1995 21:28:32 -0500
  73291. Received: by apakabar.cc.columbia.edu id AA17419
  73292.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 11 Jan 1995 21:28:31 -0500
  73293. Path: news.columbia.edu!sol.ctr.columbia.edu!hamblin.math.byu.edu!news.byu.edu!nntp.et.byu.edu!news.kei.com!news.mathworks.com!europa.eng.gtefsd.com!newsxfer.itd.umich.edu!gatech!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  73294. From: jrd@cc.usu.edu (Joe Doupnik)
  73295. Newsgroups: comp.protocols.kermit.misc
  73296. Subject: Re: Status line is overwritten
  73297. Message-Id: <1995Jan11.115728.37354@cc.usu.edu>
  73298. Date: 11 Jan 95 11:57:28 MDT
  73299. References: <3f0ni6$fic@senior.nectec.or.th>
  73300. Organization: Utah State University
  73301. Lines: 17
  73302. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  73303.  
  73304. In article <3f0ni6$fic@senior.nectec.or.th>, sompop@morakot.nectec.or.th (Sompop Kumnoonsate) writes:
  73305. > Is there a way to set kermit to display only 24 lines?
  73306.     It does.
  73307. > I use kermit 3.14 beta 8 to connect to DEC Alpha OSF 3.0.
  73308. > The TERM environment is set to VT320.
  73309. > DEC always sends <ESC>[25;1H when I use "more" and the next character
  73310. > will display over status line.  If the screen is scrolled the first line
  73311. > will show the last line of previous screen. But it will be disappeared
  73312. > after redraw screen.
  73313.     That's a mistake in OSF. Kermit has provided access to the status
  73314. line, for many many years, by allowing it to be targeted directly via 
  73315. such a cursor steering command. Real VT300's will put the cursor on line
  73316. 24 rather than 25 (or whatever the status line is in Kermit, depending
  73317. on screen length).
  73318.     I suggest having a look at the termcap/terminfo material on
  73319. your system and change the item which mistakenly references line 25.
  73320.         Joe D.
  73321.  
  73322. From news@columbia.edu Wed Jan 11 18:40:28 1995
  73323. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21921
  73324.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 11 Jan 1995 22:35:57 -0500
  73325. Received: by apakabar.cc.columbia.edu id AA21797
  73326.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 11 Jan 1995 22:35:55 -0500
  73327. Path: news.columbia.edu!panix!panix3.panix.com!mpollak
  73328. From: Michael Pollak <mpollak@panix.com>
  73329. Newsgroups: comp.protocols.kermit.misc
  73330. Subject: What is name of DOS initialization file?
  73331. Date: Wed, 11 Jan 1995 13:40:28 -0500
  73332. Organization: PANIX Public Access Internet and Unix, NYC
  73333. Lines: 7
  73334. Message-Id: <Pine.SUN.3.91.950111133859.15650A-100000@panix3.panix.com>
  73335. Nntp-Posting-Host: panix3.panix.com
  73336. Mime-Version: 1.0
  73337. Content-Type: TEXT/PLAIN; charset=US-ASCII
  73338. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  73339.  
  73340.  
  73341. I have things to put in it, but I don't know what it's called.  And does
  73342. anyone know where I can download the manual for Kermit for DOS? 
  73343.  
  73344. __________________________________________________________________________
  73345. Michael Pollak................New York City..............mpollak@panix.com
  73346.  
  73347.  
  73348. From news@columbia.edu Thu Jan 12 03:15:10 1995
  73349. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25958
  73350.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 11 Jan 1995 23:38:06 -0500
  73351. Received: by apakabar.cc.columbia.edu id AA25961
  73352.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 11 Jan 1995 23:38:05 -0500
  73353. Path: news.columbia.edu!panix!panix3.panix.com!mpollak
  73354. From: Michael Pollak <mpollak@panix.com>
  73355. Newsgroups: comp.protocols.kermit.misc
  73356. Subject: Bug in Kermit/Caucus interface: no backspace
  73357. Date: Wed, 11 Jan 1995 22:15:10 -0500
  73358. Organization: PANIX Public Access Internet and Unix, NYC
  73359. Lines: 8
  73360. Message-Id: <Pine.SUN.3.91.950111221330.12955A-100000@panix3.panix.com>
  73361. Nntp-Posting-Host: panix3.panix.com
  73362. Mime-Version: 1.0
  73363. Content-Type: TEXT/PLAIN; charset=US-ASCII
  73364. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  73365.  
  73366.  
  73367. I dialed into a BBS that uses Caucus (Echonyc).  Suddenly my backspace 
  73368. vanished -- it kept producing control-B characters.  Has anyone else had 
  73369. this problem in Caucus or elsewhere?  Any solutions?
  73370.  
  73371. __________________________________________________________________________
  73372. Michael Pollak................New York City..............mpollak@panix.com
  73373.  
  73374.  
  73375. From news@columbia.edu Wed Jan 11 17:31:36 1995
  73376. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28487
  73377.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 12 Jan 1995 00:06:45 -0500
  73378. Received: by apakabar.cc.columbia.edu id AA28033
  73379.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 12 Jan 1995 00:06:44 -0500
  73380. Path: news.columbia.edu!panix!news.mathworks.com!europa.eng.gtefsd.com!gatech!swrinde!sdd.hp.com!news.cs.indiana.edu!usenet.ucs.indiana.edu!indyvax.iupui.edu!indyunix.iupui.edu!rjfortho
  73381. Newsgroups: comp.protocols.kermit.misc
  73382. Subject: Re: Strange characters
  73383. Message-Id: <1995Jan11.123136.11637@ivax>
  73384. From: rjfortho@indyunix.iupui.edu ()
  73385. Date: 11 Jan 95 12:31:36 -0500
  73386. References: <3evbf2$oc1@apakabar.cc.columbia.edu>
  73387. Nntp-Posting-Host: indyunix.iupui.edu
  73388. X-Newsreader: Tin 1.1 PL4
  73389. Lines: 10
  73390. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  73391.  
  73392. I had a similar problem - whenever I got noise on the line the 
  73393. terminal would go to a graphics character set.  I circumvented
  73394. the problem by setting all the graphic character tables to the
  73395. same character set.  For example:
  73396.     set term char ascii g0 g1 g2 g3
  73397.  
  73398. I don't know if this is the same problem, but you might give it
  73399. a shot.  I'm sure Frank could give a more technical explanation.
  73400.  
  73401. Russ Forthofer
  73402.  
  73403. From news@columbia.edu Thu Jan 12 13:54:23 1995
  73404. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02107
  73405.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 12 Jan 1995 08:54:27 -0500
  73406. Received: by apakabar.cc.columbia.edu id AA04905
  73407.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 12 Jan 1995 08:54:26 -0500
  73408. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  73409. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  73410. Newsgroups: comp.protocols.kermit.misc
  73411. Subject: Re: What is name of DOS initialization file?
  73412. Date: 12 Jan 1995 13:54:23 GMT
  73413. Organization: Columbia University
  73414. Lines: 14
  73415. Message-Id: <3f3caf$4p4@apakabar.cc.columbia.edu>
  73416. References: <Pine.SUN.3.91.950111133859.15650A-100000@panix3.panix.com>
  73417. Nntp-Posting-Host: watsun.cc.columbia.edu
  73418. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  73419.  
  73420. In article <Pine.SUN.3.91.950111133859.15650A-100000@panix3.panix.com>,
  73421. Michael Pollak  <mpollak@panix.com> wrote:
  73422. >I have things to put in it, but I don't know what it's called.  And does
  73423. >anyone know where I can download the manual for Kermit for DOS? 
  73424. >
  73425. It's called MSKERMIT.INI.  You can download the manual from your local
  73426. bookstore:
  73427.  
  73428.   Christine M. Gianone, "Using MS-DOS Kermit", Second Edition, Digital
  73429.   Press / Butterworth-Heinemann, Woburn, MA, 1992, 345 pages, ISBN
  73430.   1-55558-082-3.  Packaged with version 3.13 of MS-DOS Kermit for the
  73431.   IBM PC, PS/2, and compatibles on a 3.5-inch diskette.
  73432.  
  73433. - Frank
  73434.  
  73435. From news@columbia.edu Thu Jan 12 13:55:57 1995
  73436. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02273
  73437.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 12 Jan 1995 08:55:59 -0500
  73438. Received: by apakabar.cc.columbia.edu id AA04981
  73439.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 12 Jan 1995 08:55:58 -0500
  73440. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  73441. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  73442. Newsgroups: comp.protocols.kermit.misc
  73443. Subject: Re: Bug in Kermit/Caucus interface: no backspace
  73444. Date: 12 Jan 1995 13:55:57 GMT
  73445. Organization: Columbia University
  73446. Lines: 11
  73447. Message-Id: <3f3cdd$4rj@apakabar.cc.columbia.edu>
  73448. References: <Pine.SUN.3.91.950111221330.12955A-100000@panix3.panix.com>
  73449. Nntp-Posting-Host: watsun.cc.columbia.edu
  73450. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  73451.  
  73452. In article <Pine.SUN.3.91.950111221330.12955A-100000@panix3.panix.com>,
  73453. Michael Pollak  <mpollak@panix.com> wrote:
  73454. >I dialed into a BBS that uses Caucus (Echonyc).  Suddenly my backspace 
  73455. >vanished -- it kept producing control-B characters.  Has anyone else had 
  73456. >this problem in Caucus or elsewhere?  Any solutions?
  73457. >
  73458. Please consult our new FAQ:
  73459.  
  73460.   anonymous ftp to kermit.columbia.edu, directory kermit, file FAQ.TXT.
  73461.  
  73462. - Frank
  73463.  
  73464. From news@columbia.edu Thu Jan 12 16:57:51 1995
  73465. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26129
  73466.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 12 Jan 1995 13:10:42 -0500
  73467. Received: by apakabar.cc.columbia.edu id AA23854
  73468.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 12 Jan 1995 13:10:40 -0500
  73469. Path: news.columbia.edu!sol.ctr.columbia.edu!news.moneng.mei.com!howland.reston.ans.net!pipex!dircon!news
  73470. From: edge@dircon.co.uk (Spencer Clay)
  73471. Newsgroups: comp.protocols.kermit.misc
  73472. Subject: RESET MODEM HELP !!!
  73473. Date: 12 Jan 1995 16:57:51 GMT
  73474. Organization: Edge & Ellison
  73475. Lines: 11
  73476. Message-Id: <3f3n2f$olt@newsgate.dircon.co.uk>
  73477. Nntp-Posting-Host: aa053.du.pipex.com
  73478. X-Newsreader: WinVN 0.92.6+
  73479. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  73480.  
  73481. Please can anyone help us to reset a modem,
  73482. By using a batch file for DOS,(possibly Kermit).
  73483. We know the AT commands to manually do this using Kermit,
  73484. they are:
  73485. AT&F8
  73486. AT&f0
  73487. AT&w0
  73488. ATZ
  73489. But we want to be able to send these commands directly
  73490. to our modem with a one liner.i.e from the Dos Command Line.
  73491. Please help us we are stupid!!!!!!!!
  73492.  
  73493. From news@columbia.edu Thu Jan 12 17:49:26 1995
  73494. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27315
  73495.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 12 Jan 1995 13:24:07 -0500
  73496. Received: by apakabar.cc.columbia.edu id AA24897
  73497.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 12 Jan 1995 13:24:05 -0500
  73498. Path: news.columbia.edu!panix!news.mathworks.com!europa.eng.gtefsd.com!howland.reston.ans.net!usc!nic-nac.CSU.net!tem
  73499. From: tem@scout.humboldt.edu (Tom Mendenhall)
  73500. Newsgroups: comp.protocols.kermit.misc
  73501. Subject: Wyse 60 emulation?
  73502. Date: 12 Jan 1995 17:49:26 GMT
  73503. Organization: HSU Library
  73504. Lines: 13
  73505. Message-Id: <3f3q36$bri@nic-nac.CSU.net>
  73506. Reply-To: tem@scout.humboldt.edu
  73507. Nntp-Posting-Host: scout.humboldt.edu
  73508. X-Newsreader: TIN [version 1.2 PL2]
  73509. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  73510.  
  73511. Does anyone know if the 3.14 version of Kermit will emulate a Wyse 60 
  73512. terminal?
  73513.  
  73514. Running Unixware with DOS Merge. A Wyse 60 terminal will send PC keyboard 
  73515. scancodes plus emulate a 25 line monochrome display. A vt100 terminal 
  73516. requires a bunch of set key definitions or the user must press esc 1 for 
  73517. F1, etc.
  73518.  
  73519. Thanks,
  73520. tom
  73521.  
  73522.  
  73523.  
  73524.  
  73525. From news@columbia.edu Thu Jan 12 18:28:45 1995
  73526. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05851
  73527.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 12 Jan 1995 14:58:44 -0500
  73528. Received: by apakabar.cc.columbia.edu id AA01936
  73529.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 12 Jan 1995 14:58:43 -0500
  73530. Path: news.columbia.edu!panix!news.mathworks.com!zombie.ncsc.mil!news.duke.edu!eff!news.umbc.edu!haven.umd.edu!nova.umd.edu!nova!rockwell
  73531. From: rockwell@nova.umd.edu (Raul Deluth Miller)
  73532. Newsgroups: comp.protocols.kermit.misc
  73533. Subject: Re: RESET MODEM HELP !!!
  73534. Date: 12 Jan 1995 13:28:45 -0500
  73535. Organization: University of Maryland University College
  73536. Lines: 25
  73537. Message-Id: <ROCKWELL.95Jan12132844@nova.umd.edu>
  73538. References: <3f3n2f$olt@newsgate.dircon.co.uk>
  73539. Nntp-Posting-Host: nova.umd.edu
  73540. In-Reply-To: edge@dircon.co.uk's message of 12 Jan 1995 16:57:51 GMT
  73541. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  73542.  
  73543. Spencer Clay:
  73544.    AT&F8
  73545.    AT&f0
  73546.    AT&w0
  73547.    ATZ
  73548.    But we want to be able to send these commands directly to our modem
  73549.    with a one liner.i.e from the Dos Command Line.
  73550.  
  73551. How about
  73552.  
  73553. kermit set port com2, set speed 9600, output AT&F8&f0&w0Z\13
  73554.    
  73555. ?
  73556.  
  73557. [omit the set port if you're on com 1], omit the set speed if it's
  73558. already set right.  Include the path to kermit if it's not already in
  73559. your path.  call kermit kermit.exe if there's a kermit.bat that
  73560. conflicts..  Newer versions of kermit may have a different command
  73561. line syntax?]
  73562.  
  73563. -- 
  73564. Raul D. Miller          N=:((*/pq)&|)@      NB. public e, y, n=:*/pq
  73565. <rockwell@nova.umd.edu> P=:*N/@:#        NB. */-.,e e.&factors t=:*/<:pq
  73566.                         1=t|e*d       NB. ((1&=@| 2&^@<:)*./@,(>&(2^1024)))pq
  73567. x-:d P,:y=:e P,:x                  NB. (d P,:y)-:D P*:N^:(i.#D)y [. D=:|.@#.d
  73568.  
  73569. From news@columbia.edu Thu Jan 12 15:51:07 1995
  73570. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20921
  73571.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 12 Jan 1995 17:03:16 -0500
  73572. Received: by apakabar.cc.columbia.edu id AA11379
  73573.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 12 Jan 1995 17:03:14 -0500
  73574. Newsgroups: comp.protocols.kermit.misc
  73575. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!howland.reston.ans.net!news.sprintlink.net!malgudi.oar.net!chemabs!usenet
  73576. From: Steve Layten <slayten@cas.org>
  73577. Subject: ms-kermit and PCTCP
  73578. Message-Id: <1995Jan12.155107.21458@chemabs.uucp>
  73579. Sender: usenet@chemabs.uucp
  73580. Organization: Chemical Abstracts Service
  73581. Date: Thu, 12 Jan 1995 15:51:07 GMT
  73582. Lines: 87
  73583. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  73584.  
  73585. I've just spent a frustrating few days trying to get ms-kermit set up on a
  73586. PC using FTP Software's PCTCP under Windows for Workgroups 3.11.  There
  73587. were several difficulties, but I now think I have a setup that works
  73588. (mostly).
  73589.  
  73590. I scoured the docs in the latest beta release of ms-kermit in the networks
  73591. directory.  I read the bwr file, the help file, etc., but still had
  73592. trouble.  Part of the trouble is a "user hostile" environment in my
  73593. organization -- We have a site license for FTP Software's PCTCP, and
  73594. limited copies of the documentation.  Our network folks are too busy
  73595. "solving real problems" to help internal users set up their machines in
  73596. any "non-standard" setup.  "Use what we give you -- it works for us." is
  73597. implicit, whether we like the setup or not.
  73598.  
  73599. First, I'd like to thank J. Doupnik for his good work.  I've been using
  73600. MS-Kermit for years to access my UNIX system at work from home.  What a
  73601. quality product!
  73602.  
  73603.  
  73604. Now, I'd like to correct an error in and expand upon Section 4.1 of the file
  73605. "setup.doc" in the networks directory.
  73606.  
  73607. ---- Begin corrected/updated section 4.1 of file networks/setup.doc ------
  73608.  
  73609. (4.1) FTP Software Inc. PC/TCP.
  73610.  
  73611. Use the FTP Telnet interface TNGLASS and run Kermit from it.
  73612.  
  73613.   tnglass host.domain <optional port> -c 0 -i -e kermit.exe
  73614.  
  73615.   (The spaces between "-c" and "0" and "-e" and "kermit.exe" are required.)
  73616.  
  73617. This example uses communication port 1 (-c0) so tell Kermit SET PORT BIOS1,
  73618. and the -i option says to keep the TCP connection alive until the terminal
  73619. emulator (Kermit) has started using the Int 14h communications pathway.
  73620.  
  73621. The TNGLASS interface causes the "ENTER" key to send <CR><LF> pairs, as
  73622. specified in the Telnet protocol specification.  This may cause some
  73623. problems in connecting to UNIX machines.  I found that using "stty igncr"
  73624. helped, along with "set key \284 \10" to re-map the "ENTER" key to send a
  73625. newline.  (Using "set term newline off" and/or "set tcp newline off"
  73626. didn't seem to help.)
  73627.  
  73628. My configuration: Gateway 2000 P90 machine
  73629.           3C5X9 network card? (I'm real fuzzy here.)
  73630.           MS-DOS 6.22
  73631.           Windows for Workgroups V3.11
  73632.           FTP Software's PCTCP software, with \pctcp\3c5x9pd.com
  73633.              and \pctcp\vxdinit.exe loaded in autoexec.bat  (I'm
  73634.              not sure what version of PCTCP, but TNGLASS reports
  73635.              V3.0.)
  73636.           My tnglass.pif has "hostname -c 3 -i -e kermit.exe"
  73637.              supplied as command-line arguments, and in my
  73638.              mscustom.ini, I've specified "Set port BIOS4"
  73639.  
  73640. Here's output from "stty -a" on a SunOS 4.1.X Sparcstation 2:
  73641.  
  73642.    speed 38400 baud, 24 rows, 80 columns
  73643.    parenb -parodd cs7 -cstopb -hupcl cread -clocal -crtscts 
  73644.    -ignbrk brkint ignpar -parmrk -inpck istrip -inlcr igncr -icrnl -iuclc 
  73645.    ixon -ixany -ixoff imaxbel 
  73646.    isig -iexten icanon -xcase echo echoe echok -echonl -noflsh -tostop 
  73647.    echoctl -echoprt echoke 
  73648.    opost -olcuc onlcr -ocrnl -onocr -onlret -ofill -ofdel 
  73649.    erase  kill   werase rprnt  flush  lnext  susp   intr   quit   stop   eof
  73650.    ^H     ^U     ^W     ^R     ^O     ^V     ^Z/^Y  ^?     ^\     ^S/^Q  ^D     
  73651.  
  73652. I hope this is helpful!
  73653.  
  73654. Steve Layten (slayten@cas.org)
  73655. ---- END    corrected/updated section 4.1 of file networks/setup.doc ------
  73656.  
  73657. I now seem to have just one more problem.  When using 'vi' on my UNIX
  73658. host, at times I get "beeps" in ms-kermit like it has lost characters. I
  73659. see it when 'vi' is "wrapping" a fairly large word (set wm=6, type a word
  73660. near the right margin, and 'vi' moves the word to the next line).  I also
  73661. seem to see it when I use the '^w' key in input mode to erase a word.  The
  73662. word is not completely erased, and the cursor is not in the right place.
  73663. I'm not sure what to change to prevent ms-kermit from losing the
  73664. characters.  Any insights would be appreciated.
  73665.  
  73666. Thanks again especially to J. Doupnik and Frank da Cruz for their support,
  73667. and Thanks in advance to any of you that can help.
  73668.  
  73669. Steve Layten
  73670.  
  73671.  
  73672.  
  73673. From news@columbia.edu Thu Jan 12 06:59:22 1995
  73674. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02985
  73675.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 12 Jan 1995 19:34:38 -0500
  73676. Received: by apakabar.cc.columbia.edu id AA21034
  73677.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 12 Jan 1995 19:34:36 -0500
  73678. Path: news.columbia.edu!panix!news.mathworks.com!hookup!swrinde!howland.reston.ans.net!vixen.cso.uiuc.edu!usenet.ucs.indiana.edu!bronze.ucs.indiana.edu!jawarric
  73679. From: jawarric@ucs.indiana.edu (Jeff Warrick)
  73680. Newsgroups: comp.protocols.kermit.misc
  73681. Subject: ** Kermit Quits after 1 Error: Why?
  73682. Date: 12 Jan 1995 06:59:22 GMT
  73683. Organization: Indiana University
  73684. Lines: 39
  73685. Message-Id: <3f2k0a$a8v@usenet.ucs.indiana.edu>
  73686. Nntp-Posting-Host: silver.ucs.indiana.edu
  73687. X-Newsreader: TIN [version 1.2 PL2]
  73688. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  73689.  
  73690. I have been playing around, and I still can't figure out why kermit quits 
  73691. after 1 error has occurred.  The error is usually a 'Bad Block'  (nothing 
  73692. important).  I would greatly appreciate any advice, since I can't even 
  73693. transfer big files because of this.  Here is the 'show' from my kermit:
  73694.  
  73695. C-Kermit 5A(189), 30 June 93, SCO ODT 3.0
  73696. Communications Parameters:
  73697.  Line: /dev/tty, speed: 0, mode: remote, modem: direct
  73698.  Parity: none, duplex: full, flow: xon/xoff, handshake: none
  73699.  
  73700. Protocol Parameters:   Send    Receive
  73701.  Timeout (used= 7):      7       10        Server Timeout:   0
  73702.  Padding:                0        0        Block Check:      3
  73703.  Pad Character:          0        0        Delay:            2
  73704.  Packet Start:           1        1        Max Retries:     10
  73705.  Packet End:            13       13
  73706.  Packet Length:        900      900     
  73707.  Maximum Length:      9024     9024        Window Size:     10 set, 0 used
  73708.  Buffer Size:         9065     9065        Locking-Shift:    enabled, not used
  73709.  
  73710. File parameters:        Attributes:       on
  73711.  Names:   literal       Debugging Log:    none
  73712.  Type:    binary        Packet Log:       none  Longest filename: 512
  73713.  Collide: rename        Session Log:      none  Longest pathname: 255
  73714.  Display: serial        Transaction Log:  none
  73715.  
  73716. File Byte Size: 8, Incomplete Files: discard, Init file: .kermrc
  73717.  
  73718. The packet-length, window size, block check are all the same on my 
  73719. computer and I get great transfer rate.  I'm using a GW2000 computer, 
  73720. Crosstalk for Windows, and a 14.4 modem.  The only other settings I can 
  73721. play with on Crosstalk are prefixes, and I don't want to play with them.
  73722.  
  73723. Any help would be greatly appreciated!
  73724. Thanks so much!
  73725.  
  73726.  
  73727.  
  73728.  
  73729.  
  73730. From news@columbia.edu Fri Jan 13 02:01:44 1995
  73731. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29044
  73732.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 13 Jan 1995 01:27:12 -0500
  73733. Received: by apakabar.cc.columbia.edu id AA10192
  73734.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 13 Jan 1995 01:27:10 -0500
  73735. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!torn!ccshst05.cs.uoguelph.ca!ccshst01.cs.uoguelph.ca!jmurphy
  73736. From: jmurphy@uoguelph.ca (Janice Murphy)
  73737. Newsgroups: comp.protocols.kermit.misc
  73738. Subject: DOS Kermit and Novell NASI
  73739. Date: 13 Jan 1995 02:01:44 GMT
  73740. Organization: University of Guelph
  73741. Lines: 20
  73742. Message-Id: <3f4mu8$mem@ccshst05.cs.uoguelph.ca>
  73743. Nntp-Posting-Host: ccshst01.cs.uoguelph.ca
  73744. X-Newsreader: TIN [version 1.2 PL2]
  73745. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  73746.  
  73747. I have been trying to automate a dialing script with the latest Kermit beta
  73748. to connect to a NASI server (Netware Connect on our Novell 3.12 
  73749. Fileserver) and can do it manually fine but not script wise. Any pointers 
  73750. from this group. The following is what I would like to happen:
  73751.  
  73752. c:\kermit\kermit
  73753. ...
  73754. ....   initialize the setup,keys, etc
  73755. def modem take sport.scr
  73756. set speed 19200
  73757. set port novell
  73758. out connect dialout \13
  73759. modem T555-1212
  73760. connect
  73761.  
  73762. What happens after the out connect dialout \13 is OK, but when I say 
  73763. modem T555-1212 I am back at the NASI 1:1> prompt. GO FIGURE :)
  73764.  
  73765. Any clues as how to get my script working automatically with Netware 
  73766. Conenct and NASI.  Thanks.
  73767.  
  73768. From news@columbia.edu Fri Jan 13 12:51:15 1995
  73769. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21412
  73770.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 13 Jan 1995 07:59:33 -0500
  73771. Received: by apakabar.cc.columbia.edu id AA22146
  73772.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 13 Jan 1995 07:59:31 -0500
  73773. Path: news.columbia.edu!panix!news.mathworks.com!hookup!swrinde!pipex!dircon!news
  73774. From: edge@dircon.co.uk (Spencer Clay)
  73775. Newsgroups: comp.protocols.kermit.misc
  73776. Subject: Re: RESET MODEM HELP !!!
  73777. Date: 13 Jan 1995 12:51:15 GMT
  73778. Organization: Edge & Ellison
  73779. Lines: 9
  73780. Message-Id: <3f5t03$jqf@newsgate.dircon.co.uk>
  73781. References: <3f3n2f$olt@newsgate.dircon.co.uk> <ROCKWELL.95Jan12132844@nova.umd.edu>
  73782. Nntp-Posting-Host: aa049.du.pipex.com
  73783. X-Newsreader: WinVN 0.92.6+
  73784. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  73785.  
  73786. In article <ROCKWELL.95Jan12132844@nova.umd.edu>, rockwell@nova.umd.edu (Raul Deluth Miller) says:
  73787.  
  73788. >kermit set port com2, set speed 9600, output AT&F8&f0&w0Z\13
  73789.  
  73790. THANKS !!!!
  73791.  
  73792. This solution worked perfectly
  73793.  
  73794. Spencer.
  73795.  
  73796. From news@columbia.edu Fri Jan 13 14:41:04 1995
  73797. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29259
  73798.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 13 Jan 1995 09:41:10 -0500
  73799. Received: by apakabar.cc.columbia.edu id AA27988
  73800.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 13 Jan 1995 09:41:09 -0500
  73801. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  73802. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  73803. Newsgroups: comp.protocols.kermit.misc
  73804. Subject: Re: ** Kermit Quits after 1 Error: Why?
  73805. Date: 13 Jan 1995 14:41:04 GMT
  73806. Organization: Columbia University
  73807. Lines: 27
  73808. Message-Id: <3f63e0$raa@apakabar.cc.columbia.edu>
  73809. References: <3f2k0a$a8v@usenet.ucs.indiana.edu>
  73810. Nntp-Posting-Host: watsun.cc.columbia.edu
  73811. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  73812.  
  73813. In article <3f2k0a$a8v@usenet.ucs.indiana.edu>,
  73814. Jeff Warrick <jawarric@ucs.indiana.edu> wrote:
  73815. >I have been playing around, and I still can't figure out why kermit quits 
  73816. >after 1 error has occurred.  The error is usually a 'Bad Block'  (nothing 
  73817. >important).  I would greatly appreciate any advice, since I can't even 
  73818. >transfer big files because of this.  Here is the 'show' from my kermit:
  73819. >
  73820. >C-Kermit 5A(189), 30 June 93, SCO ODT 3.0
  73821. >...
  73822. >The packet-length, window size, block check are all the same on my 
  73823. >computer and I get great transfer rate.  I'm using a GW2000 computer, 
  73824. >Crosstalk for Windows, and a 14.4 modem.  The only other settings I can 
  73825. >play with on Crosstalk are prefixes, and I don't want to play with them.
  73826. >
  73827. You'll have to ask the Crosstalk people about it.  C-Kermit 5A (current
  73828. version is 190) works fine with MS-DOS Kermit and gets terrific transfer
  73829. rates.
  73830.  
  73831. Try MS-DOS Kermit and see if the same thing happens to you.  If it does,
  73832. we'll be glad to help out by looking at packet logs, etc, but Crosstalk is
  73833. an unknown quantity to us, and is supported by the Crosstalk people.
  73834.  
  73835. MS-DOS Kermit: anonymous ftp to kermit.columbia.edu, directory
  73836. kermit/bin, file mstibm.zip.  Unzip with "-d" switch.  Read top-level
  73837. READ.ME to get started.
  73838.  
  73839. - Frank
  73840.  
  73841. From news@columbia.edu Fri Jan 13 14:49:15 1995
  73842. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00149
  73843.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 13 Jan 1995 09:49:22 -0500
  73844. Received: by apakabar.cc.columbia.edu id AA28522
  73845.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 13 Jan 1995 09:49:20 -0500
  73846. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  73847. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  73848. Newsgroups: comp.protocols.kermit.misc
  73849. Subject: Re: Wyse 60 emulation?
  73850. Date: 13 Jan 1995 14:49:15 GMT
  73851. Organization: Columbia University
  73852. Lines: 25
  73853. Message-Id: <3f63tb$rr7@apakabar.cc.columbia.edu>
  73854. References: <3f3q36$bri@nic-nac.csu.net>
  73855. Nntp-Posting-Host: watsun.cc.columbia.edu
  73856. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  73857.  
  73858. In article <3f3q36$bri@nic-nac.csu.net>,
  73859. Tom Mendenhall <tem@scout.humboldt.edu> wrote:
  73860. >Does anyone know if the 3.14 version of Kermit will emulate a Wyse 60 
  73861. >terminal?
  73862. >
  73863. It emulates a Wyse 50.  To the best of our knowledge, a Wyse 60 is just
  73864. a Wyse 50 with some emulations for other terminal types added.
  73865.  
  73866. >Running Unixware with DOS Merge. A Wyse 60 terminal will send PC keyboard 
  73867. >scancodes plus emulate a 25 line monochrome display. A vt100 terminal 
  73868. >requires a bunch of set key definitions or the user must press esc 1 for 
  73869. >F1, etc.
  73870. >
  73871. No, Kermit does not send scan codes, and does not allow the status line
  73872. to be used as a regular screen line.
  73873.  
  73874. Yes, you can map keys to send anything you want using SET KEY, and you
  73875. can use Kermit in most common video modes: 80x25, 80x43, 80x60, etc, but
  73876. the bottom line is always special.
  73877.  
  73878. When using Kermit to access your UnixWare system, you have a number of
  73879. emulations to choose from, but they all work more or less like real
  73880. terminals, not like system consoles.
  73881.  
  73882. - Frank
  73883.  
  73884. From news@columbia.edu Fri Jan 13 19:28:03 1995
  73885. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26267
  73886.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 13 Jan 1995 14:28:13 -0500
  73887. Received: by apakabar.cc.columbia.edu id AA18844
  73888.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 13 Jan 1995 14:28:09 -0500
  73889. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  73890. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  73891. Newsgroups: comp.protocols.kermit.misc
  73892. Subject: MS-DOS Kermit 3.14 is released
  73893. Date: 13 Jan 1995 19:28:03 GMT
  73894. Organization: Columbia University
  73895. Lines: 8
  73896. Message-Id: <3f6k83$icf@apakabar.cc.columbia.edu>
  73897. Nntp-Posting-Host: watsun.cc.columbia.edu
  73898. Keywords: MS-DOS Kermit
  73899. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  73900.  
  73901.  
  73902. MS-DOS Kermit 3.14 for the IBM PC and compatibles with DOS or Windows
  73903. was released on Thursday, January 12, 1995.  The Beta testing period
  73904. is over; thanks to all of you who participated!
  73905.  
  73906. For a more detailed announcement, see comp.protocols.kermit.announce.
  73907.  
  73908. - Frank
  73909.  
  73910. From news@columbia.edu Fri Jan 13 03:36:40 1995
  73911. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14756
  73912.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 13 Jan 1995 17:41:39 -0500
  73913. Received: by apakabar.cc.columbia.edu id AA03568
  73914.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 13 Jan 1995 17:41:37 -0500
  73915. Newsgroups: comp.protocols.kermit.misc
  73916. Path: news.columbia.edu!spcuna!ritz!kudut
  73917. From: kudut@ritz.mordor.com (Kenneth Udut)
  73918. Subject: Re: What is name of DOS initialization file?
  73919. X-Signature: YES! - the Yarn Editor Shell, Version 0.08.B1205
  73920. References: <Pine.SUN.3.91.950111133859.15650A-100000@panix3.panix.com>
  73921.  <3f3caf$4p4@apakabar.cc.columbia.edu>
  73922. Sender: kudut@ritz.mordor.com (Ken Udut)
  73923. Organization: SOUP Leaf off of ritz.mordor.com (Jersey City, NJ, USA)
  73924. Date: Fri, 13 Jan 1995 03:36:40 GMT
  73925. X-Newsreader: Yarn 0.75
  73926. Message-Id: <8LV5lqo7IRLL075yn@ritz.mordor.com>
  73927. Lines: 32
  73928. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  73929.  
  73930. kudut@ritz.mordor.com <Ken>
  73931. -----------------------------------------------------------------------
  73932.                                                             12.Jan.1995
  73933.  
  73934. In article <3f3caf$4p4@apakabar.cc.columbia.edu>,
  73935. fdc@watsun.cc.columbia.edu (Frank da Cruz) wrote:
  73936. > In article <Pine.SUN.3.91.950111133859.15650A-100000@panix3.panix.com>,
  73937. > Michael Pollak  <mpollak@panix.com> wrote:
  73938. > >I have things to put in it, but I don't know what it's called.  And does
  73939. > >anyone know where I can download the manual for Kermit for DOS? 
  73940. > >
  73941. > It's called MSKERMIT.INI.  You can download the manual from your local
  73942. > bookstore:
  73943. >   Christine M. Gianone, "Using MS-DOS Kermit", Second Edition, Digital
  73944. >   Press / Butterworth-Heinemann, Woburn, MA, 1992, 345 pages, ISBN
  73945. >   1-55558-082-3.  Packaged with version 3.13 of MS-DOS Kermit for the
  73946. >   IBM PC, PS/2, and compatibles on a 3.5-inch diskette.
  73947. > - Frank
  73948.  
  73949. ROFLMAO!!!  :-)  "You can download the manual from your local bookstore"
  73950. :->
  73951.  
  73952. Pardon my silliness, but I got a kick out of how you worded it, Frank :-)
  73953.  
  73954.  
  73955.  
  73956.  
  73957. --
  73958. Kenneth Udut                                          kudut@ritz.mordor.com
  73959. Listowner of Y-RIGHTS@SJUVM.BITNET - discussion on the rights of kids/teens
  73960.  
  73961. From news@columbia.edu Fri Jan 13 03:39:20 1995
  73962. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14760
  73963.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 13 Jan 1995 17:41:40 -0500
  73964. Received: by apakabar.cc.columbia.edu id AA03572
  73965.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 13 Jan 1995 17:41:38 -0500
  73966. Newsgroups: comp.protocols.kermit.misc
  73967. Path: news.columbia.edu!spcuna!ritz!kudut
  73968. From: kudut@ritz.mordor.com (Kenneth Udut)
  73969. Subject: Re: RESET MODEM HELP !!!
  73970. X-Signature: YES! - the Yarn Editor Shell, Version 0.08.B1205
  73971. References: <3f3n2f$olt@newsgate.dircon.co.uk>
  73972. Sender: kudut@ritz.mordor.com (Ken Udut)
  73973. Organization: SOUP Leaf off of ritz.mordor.com (Jersey City, NJ, USA)
  73974. Date: Fri, 13 Jan 1995 03:39:20 GMT
  73975. X-Newsreader: Yarn 0.75
  73976. Message-Id: <eNV5lqo7I3lU075yn@ritz.mordor.com>
  73977. Lines: 52
  73978. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  73979.  
  73980. kudut@ritz.mordor.com <Ken>
  73981. -----------------------------------------------------------------------
  73982.                                                             12.Jan.1995
  73983.                      [response e-mailed and posted]
  73984.  
  73985. In article <3f3n2f$olt@newsgate.dircon.co.uk>,
  73986. edge@dircon.co.uk (Spencer Clay) wrote:
  73987. > Please can anyone help us to reset a modem,
  73988. > By using a batch file for DOS,(possibly Kermit).
  73989. > We know the AT commands to manually do this using Kermit,
  73990. > they are:
  73991. > AT&F8
  73992. > AT&f0
  73993. > AT&w0
  73994. > ATZ
  73995. > But we want to be able to send these commands directly
  73996. > to our modem with a one liner.i.e from the Dos Command Line.
  73997. > Please help us we are stupid!!!!!!!!
  73998.  
  73999. It depends what communications port your modem uses.  Try the
  74000. following - one of which will probably work.
  74001.  
  74002. C:\> ECHO AT&F8 > COM1:
  74003. C:\> ECHO AT&f0 > COM1:
  74004. C:\> ECHO AT&w0 > COM1:
  74005. C:\> ECHO ATZ > COM1:
  74006.  
  74007. or
  74008.  
  74009. C:\> ECHO AT&F8 > COM2:
  74010. C:\> ECHO AT&f0 > COM2:
  74011. C:\> ECHO AT&w0 > COM2:
  74012. C:\> ECHO ATZ > COM2:
  74013.  
  74014.  
  74015. Most modems are set up at COM1: or COM2:.
  74016.  
  74017. From what I can gather with these commands, from this point onward, you
  74018. should be able to use your modem with programs like Kermit without
  74019. any further tinkering.
  74020.  
  74021. [but I don't remember my AT command set tonight, so I could be wrong -
  74022. I know AT&W generally writes the current settings of the modem
  74023. "permanently" in its NVRAM (non-volitile RAM - that means that it
  74024. doesn't disappear when you shut the modem off)
  74025.  
  74026. Hope this helps.  Perhaps others will give better suggestions.
  74027.  
  74028.  
  74029. --
  74030. Kenneth Udut                                          kudut@ritz.mordor.com
  74031. Listowner of Y-RIGHTS@SJUVM.BITNET - discussion on the rights of kids/teens
  74032.  
  74033. From news@columbia.edu Sat Jan 14 13:05:11 1995
  74034. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17102
  74035.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 14 Jan 1995 08:37:02 -0500
  74036. Received: by apakabar.cc.columbia.edu id AA08261
  74037.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 14 Jan 1995 08:36:59 -0500
  74038. Path: news.columbia.edu!panix!zip.eecs.umich.edu!newsxfer.itd.umich.edu!gatech!howland.reston.ans.net!news.sprintlink.net!pipex!sunic!ugle.unit.no!trane.uninett.no!eunet.no!nuug!telepost.no!oslonett.no!oslonett.no!not-for-mail
  74039. From: sven@oslonett.no (Sven Andreassen)
  74040. Newsgroups: comp.protocols.kermit.misc
  74041. Subject: Kermit and TCP/IP 32
  74042. Date: 14 Jan 1995 14:05:11 +0100
  74043. Organization: Oslonett public access
  74044. Lines: 19
  74045. Message-Id: <3f8i67$5bd@hasle.oslonett.no>
  74046. Nntp-Posting-Host: hasle.oslonett.no
  74047. Mime-Version: 1.0
  74048. Content-Type: text/plain; charset="iso-8859-1"
  74049. Content-Transfer-Encoding: 8bit
  74050. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  74051.  
  74052. Hi all.
  74053.  
  74054. Has anyone tried to make Kermit run over Windows for Workgroups
  74055. and TCP/IP 32?
  74056.  
  74057. In our company we have 3-400 users running Kermit over Lan manager and a 
  74058. Packet driver.  That works fine.  However some users need Windows for 
  74059. Workgroups, and then a packet driver will not work.
  74060.  
  74061. Could anyone please lead a novice to better understandig of Kermit??
  74062.  
  74063. Hope to hear from you.
  74064.  
  74065. sven@oslonett.no 
  74066. [Sven Andreassen]
  74067.  
  74068. ---
  74069.  7 WinQwk 2.0 a#0 7 Unregistered Evaluation Copy
  74070.                                          
  74071.  
  74072. From news@columbia.edu Sat Jan 14 20:15:49 1995
  74073. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05888
  74074.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 14 Jan 1995 21:14:47 -0500
  74075. Received: by apakabar.cc.columbia.edu id AA28672
  74076.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 14 Jan 1995 21:14:45 -0500
  74077. Newsgroups: comp.protocols.kermit.misc
  74078. Path: news.columbia.edu!panix!news.mathworks.com!hookup!swrinde!pipex!uunet!spcuna!ritz!kudut
  74079. From: kudut@ritz.mordor.com (Kenneth Udut)
  74080. Subject: Re: MS-DOS Kermit 3.14 is released
  74081. X-Signature: YES! - the Yarn Editor Shell, Version 0.08.B1205
  74082. References: <3f6k83$icf@apakabar.cc.columbia.edu>
  74083. Sender: kudut@ritz.mordor.com (Ken Udut)
  74084. Organization: SOUP Leaf off of ritz.mordor.com (Jersey City, NJ, USA)
  74085. Date: Sat, 14 Jan 1995 20:15:49 GMT
  74086. X-Newsreader: Yarn 0.75
  74087. Message-Id: <r336lqo7I7uR075yn@ritz.mordor.com>
  74088. Lines: 40
  74089. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  74090.  
  74091. kudut@ritz.mordor.com <Ken>
  74092. -----------------------------------------------------------------------
  74093.                                                             14.Jan.1995
  74094.  
  74095. In article <3f6k83$icf@apakabar.cc.columbia.edu>,
  74096. fdc@watsun.cc.columbia.edu (Frank da Cruz) wrote:
  74097. > MS-DOS Kermit 3.14 for the IBM PC and compatibles with DOS or Windows
  74098. > was released on Thursday, January 12, 1995.  The Beta testing period
  74099. > is over; thanks to all of you who participated!
  74100. > For a more detailed announcement, see comp.protocols.kermit.announce.
  74101. > - Frank
  74102.  
  74103. Wonderful!  :-)
  74104.  
  74105. I saved the announcement - when I get my first paycheck at this new job
  74106. next week, I'll be putting in my order for the manual.
  74107.  
  74108. [I know it's silly, but I waited to order the manual until version 3.14,
  74109. as I wanted an "official" 3.14 on diskette --- even though I'll be
  74110. downloading 3.14 from the ftp site now!]
  74111.  
  74112. Thanks for the great product, Frank and Joe and all folks who contributed
  74113. towards the Kermit effort!  This Kermit-fan isn't disappointed in
  74114. the least!
  74115.  
  74116. Ken
  74117. kudut@ritz.mordor.com
  74118.  
  74119. P.S. to Joe D. - what did you compile the source code for Kermit
  74120. under?  What directory is it available in - /kermit/a?
  74121.  
  74122. Ken
  74123.  
  74124.  
  74125. --
  74126. Kenneth Udut                                          kudut@ritz.mordor.com
  74127. Listowner of Y-RIGHTS@SJUVM.BITNET - discussion on the rights of kids/teens
  74128.  
  74129. From news@columbia.edu Sun Jan 15 02:36:11 1995
  74130. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17347
  74131.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 15 Jan 1995 08:01:45 -0500
  74132. Received: by apakabar.cc.columbia.edu id AA23185
  74133.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 15 Jan 1995 08:01:44 -0500
  74134. Path: news.columbia.edu!panix!bloom-beacon.mit.edu!gatech!news-feed-1.peachnet.edu!hobbes.cc.uga.edu!UGA.CC.UGA.EDU!BDESIMON
  74135. From: BDESIMON@UGA.CC.UGA.EDU (Bert DeSimone)
  74136. Newsgroups: comp.protocols.kermit.misc
  74137. Subject: Kermit File Transfer and tn3270
  74138. Date: Sun, 15 Jan 95 07:36:11 EST
  74139. Organization: University of Georgia
  74140. Lines: 17
  74141. Message-Id: <173276AEB.BDESIMON@UGA.CC.UGA.EDU>
  74142. Nntp-Posting-Host: uga.cc.uga.edu
  74143. X-Newsreader: NNR/VM S_1.3.2
  74144. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  74145.  
  74146. Gotta figure this has come up before.  We are evaluating a terminal server
  74147. that supports tn3270.  No problem using MS-Kermit to connect to the terminal
  74148. server and connect via tn3270 to an IBM mainframe.  However, file
  74149. transfers (either invoking server on the mainframe or not) always fail.
  74150. Connecting through this same terminal server to the same mainframe
  74151. through a 7171 presents *no* problem with file transfer.  (BTW: I don't
  74152. have to be using tn3270 on a terminal server; file transfers with Kermit
  74153. using tn3270 on a Unix host fail the same way).
  74154.  
  74155. I am speculating that the mainframe Kermit must send a transparent mode
  74156. sequence, ordinarily processed by the protocol converter, that is causing the
  74157. problem.
  74158.  
  74159. Soooo, if anybody using tn3270 has successfully transferred files from
  74160. an IBM mainframe using Kermit, I would appreciate any information.
  74161.  
  74162. Thanks in advance ...
  74163.  
  74164. From news@columbia.edu Sun Jan 15 16:26:57 1995
  74165. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00277
  74166.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 15 Jan 1995 11:43:04 -0500
  74167. Received: by apakabar.cc.columbia.edu id AA14658
  74168.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 15 Jan 1995 11:43:03 -0500
  74169. Newsgroups: comp.protocols.kermit.misc
  74170. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!ix.netcom.com!netcom.com!jzero
  74171. From: jzero@netcom.com (Jim Nakamura)
  74172. Subject: Communicating at 28.8 ?
  74173. Message-Id: <jzeroD2GGCx.7LM@netcom.com>
  74174. Organization: NETCOM On-line Communication Services (408 261-4700 guest)
  74175. Date: Sun, 15 Jan 1995 16:26:57 GMT
  74176. Lines: 7
  74177. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  74178.  
  74179.  
  74180. How does one communicate at 28.8 ?  I just bought a US Robotics
  74181. 28.8 Sportster.  I have C-Kermit 5A on a linux machine and as there
  74182. is no setting for USR, I have set the modem as "Hayes".  My line 
  74183. speed is set for 38400, the highest available.  What else need I do?  
  74184. -- 
  74185. jzero@netcom.com
  74186.  
  74187. From news@columbia.edu Sun Jan 15 03:44:08 1995
  74188. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02840
  74189.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 15 Jan 1995 12:24:55 -0500
  74190. Received: by apakabar.cc.columbia.edu id AA16690
  74191.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 15 Jan 1995 12:24:54 -0500
  74192. Path: news.columbia.edu!panix!bloom-beacon.mit.edu!gatech!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  74193. From: jrd@cc.usu.edu (Joe Doupnik)
  74194. Newsgroups: comp.protocols.kermit.misc
  74195. Subject: Re: MS-DOS Kermit 3.14 is released
  74196. Message-Id: <1995Jan15.094408.37889@cc.usu.edu>
  74197. Date: 15 Jan 95 09:44:08 MDT
  74198. References: <3f6k83$icf@apakabar.cc.columbia.edu> <r336lqo7I7uR075yn@ritz.mordor.com>
  74199. Organization: Utah State University
  74200. Lines: 19
  74201. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  74202.  
  74203. In article <r336lqo7I7uR075yn@ritz.mordor.com>, kudut@ritz.mordor.com (Kenneth Udut) writes:
  74204. > kudut@ritz.mordor.com <Ken>
  74205. > -----------------------------------------------------------------------
  74206. >                                                             14.Jan.1995
  74207. > In article <3f6k83$icf@apakabar.cc.columbia.edu>,
  74208. > fdc@watsun.cc.columbia.edu (Frank da Cruz) wrote:
  74209. >> 
  74210. >> MS-DOS Kermit 3.14 for the IBM PC and compatibles with DOS or Windows
  74211. >> was released on Thursday, January 12, 1995.  The Beta testing period
  74212. >> is over; thanks to all of you who participated!
  74213.     <omissions>
  74214. > P.S. to Joe D. - what did you compile the source code for Kermit
  74215. > under?  What directory is it available in - /kermit/a?
  74216. -----
  74217.     The makefile explains:
  74218.     MASM v6, Microsoft C v7. MSC v6 or MS Quick C will compile the C 
  74219. modules too. Sources are in directory kermit/a on kermit.columbia.edu.
  74220.     Joe D.
  74221.  
  74222. From news@columbia.edu Sun Jan 15 20:35:23 1995
  74223. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14394
  74224.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 15 Jan 1995 15:35:26 -0500
  74225. Received: by apakabar.cc.columbia.edu id AA27353
  74226.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 15 Jan 1995 15:35:25 -0500
  74227. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  74228. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  74229. Newsgroups: comp.protocols.kermit.misc
  74230. Subject: Re: Communicating at 28.8 ?
  74231. Date: 15 Jan 1995 20:35:23 GMT
  74232. Organization: Columbia University
  74233. Lines: 14
  74234. Message-Id: <3fc0ub$qmn@apakabar.cc.columbia.edu>
  74235. References: <jzeroD2GGCx.7LM@netcom.com>
  74236. Nntp-Posting-Host: watsun.cc.columbia.edu
  74237. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  74238.  
  74239. In article <jzeroD2GGCx.7LM@netcom.com>, Jim Nakamura <jzero@netcom.com> wrote:
  74240. >
  74241. >How does one communicate at 28.8 ?  I just bought a US Robotics
  74242. >28.8 Sportster.  I have C-Kermit 5A on a linux machine and as there
  74243. >is no setting for USR, I have set the modem as "Hayes".  My line 
  74244. >speed is set for 38400, the highest available.  What else need I do?  
  74245.  
  74246.  
  74247. You must turn off speed matching on both the modem and in C-Kermit.
  74248.  
  74249. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  74250. "C-Kermit: available on more platforms than any other communications software."
  74251. "Kermit FTP: sending files whenever and wherever they are needed."
  74252.   OS/2 version 5A(190): ftp://kermit.columbia.edu/kermit/archives/cko190.zip 
  74253.  
  74254. From news@columbia.edu Sun Jan 15 20:59:19 1995
  74255. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15864
  74256.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 15 Jan 1995 15:58:27 -0500
  74257. Received: by apakabar.cc.columbia.edu id AA28542
  74258.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 15 Jan 1995 15:58:26 -0500
  74259. Path: news.columbia.edu!panix!bloom-beacon.mit.edu!gatech!howland.reston.ans.net!vixen.cso.uiuc.edu!ux2.cso.uiuc.edu!shair
  74260. From: shair@uiuc.edu (Bob Shair)
  74261. Newsgroups: comp.protocols.kermit.misc
  74262. Subject: Re: Communicating at 28.8 ?
  74263. Date: 15 Jan 1995 20:59:19 GMT
  74264. Organization: University of Illinois at Urbana
  74265. Lines: 16
  74266. Message-Id: <3fc2b7$p9k@vixen.cso.uiuc.edu>
  74267. References: <jzeroD2GGCx.7LM@netcom.com>
  74268. Nntp-Posting-Host: ux2.cso.uiuc.edu
  74269. Originator: shair@ux2.cso.uiuc.edu
  74270. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  74271.  
  74272. jzero@netcom.com (Jim Nakamura) writes:
  74273.  
  74274. >How does one communicate at 28.8 ?  I just bought a US Robotics
  74275. >28.8 Sportster.  I have C-Kermit 5A on a linux machine and as there
  74276. >is no setting for USR, I have set the modem as "Hayes".  My line 
  74277. >speed is set for 38400, the highest available.  What else need I do?  
  74278.  
  74279. Get a newer version of C-Kermit, which will support 
  74280. set speed 115200
  74281.  
  74282. You are using a 16550x UART, aren't you?
  74283. -- 
  74284.  
  74285. Bob Shair                          Open Systems Consultant
  74286. 1018 W. Springfield Avenue         shair@uiuc.edu
  74287. Champaign, IL 61821           217/356-2684
  74288.  
  74289. From news@columbia.edu Sun Jan 15 08:34:46 1995
  74290. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06026
  74291.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 15 Jan 1995 21:14:28 -0500
  74292. Received: by apakabar.cc.columbia.edu id AA15841
  74293.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 15 Jan 1995 21:14:27 -0500
  74294. Newsgroups: comp.protocols.kermit.misc
  74295. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!pipex!uunet!spcuna!ritz!kudut
  74296. From: kudut@ritz.mordor.com (Kenneth Udut)
  74297. Subject: Re: MS-DOS Kermit 3.14 is released
  74298. X-Signature: YES! - the Yarn Editor Shell, Version 0.08.B1205
  74299. References: <3f6k83$icf@apakabar.cc.columbia.edu>
  74300.  <r336lqo7I7uR075yn@ritz.mordor.com> <1995Jan15.094408.37889@cc.usu.edu>
  74301. Sender: kudut@ritz.mordor.com (Ken Udut)
  74302. Organization: SOUP Leaf off of ritz.mordor.com (Jersey City, NJ, USA)
  74303. Date: Sun, 15 Jan 1995 08:34:46 GMT
  74304. X-Newsreader: Yarn 0.75
  74305. Message-Id: <cuD6lqo7IBs9075yn@ritz.mordor.com>
  74306. Lines: 30
  74307. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  74308.  
  74309. kudut@ritz.mordor.com <Ken>
  74310. -----------------------------------------------------------------------
  74311.                                                             15.Jan.1995
  74312.  
  74313. > >> MS-DOS Kermit 3.14 for the IBM PC and compatibles with DOS or Windows
  74314. > >> was released on Thursday, January 12, 1995.  The Beta testing period
  74315. > >> is over; thanks to all of you who participated!
  74316. >     <omissions>
  74317. > > P.S. to Joe D. - what did you compile the source code for Kermit
  74318. > > under?  What directory is it available in - /kermit/a?
  74319. > -----
  74320. >     The makefile explains:
  74321. >     MASM v6, Microsoft C v7. MSC v6 or MS Quick C will compile the C 
  74322. > modules too. Sources are in directory kermit/a on kermit.columbia.edu.
  74323. >     Joe D.
  74324.  
  74325. Thanks Joe!
  74326.  
  74327. I'm in the process of learning C [after being a longtime BASIC and Pascal
  74328. person], and want to "play".  There's another IBM-PC environment that I
  74329. want to port Kermit to, but my knowledge of C and ASM (and of
  74330. the pertinant software developer's kit) is *very* limited at the
  74331. moment to simple things - so I'm months from being ready to talk
  74332. to Frank about it.
  74333.  
  74334. Ken
  74335.  
  74336. --
  74337. Kenneth Udut                                          kudut@ritz.mordor.com
  74338. Listowner of Y-RIGHTS@SJUVM.BITNET - discussion on the rights of kids/teens
  74339.  
  74340. From news@columbia.edu Mon Jan 16 12:12:28 1995
  74341. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03582
  74342.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 16 Jan 1995 07:37:09 -0500
  74343. Received: by apakabar.cc.columbia.edu id AA12399
  74344.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 16 Jan 1995 07:37:08 -0500
  74345. Path: news.columbia.edu!panix!news.mathworks.com!udel!news.sprintlink.net!EU.net!sun4nl!news.nic.surfnet.nl!eur.nl!news.fgg.eur.nl!coh-236-236.pc.fgg.eur.nl!Clotsche
  74346. From: Clotsche@coh.fgg.eur.nl (P. CLOTSCHER @ COH)
  74347. Newsgroups: comp.protocols.kermit.misc
  74348. Subject: Disable internal commands?
  74349. Date: Mon, 16 Jan 1995 12:12:28 GMT
  74350. Organization: Erasmus University Rotterdam
  74351. Lines: 44
  74352. Distribution: everyone
  74353. Message-Id: <Clotsche.95.2F1A62AC@coh.fgg.eur.nl>
  74354. Nntp-Posting-Host: coh-236-236.pc.fgg.eur.nl
  74355. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  74356.  
  74357. Subject: Disable internal commands?
  74358. Reply-to: Clotscher@coh.fgg.eur.nl
  74359. Date:     Mon, 16 Jan 1995
  74360.  
  74361. Dear Kermit Users,
  74362.  
  74363. Is there a possibility to disable the (or some) internal Key-commands 
  74364. like Alt-X, Alt-=, Alt-Z, etc., while in connect mode (terminal 
  74365. emulation)? I could re-define the keys of course, but a command like 
  74366. 'disable ...' would be nicer (?). Also the normal escape character ^] 
  74367. is on our wishlist for disabling.
  74368. The reason:
  74369. We want to use MS-kermit 3.13 for making an automated script-directed 
  74370. TCP/IP connection to a HP9000/720 unix host, login, run a program on 
  74371. the host (only screen-info as output), logout, and return to DOS after 
  74372. quitting the unix-application. During the session the user may not be 
  74373. able to return to the KERMIT> prompt (Alt-X, or ^]C), may not access 
  74374. the escape-menu (^].... for sending breaks, toggle capturing, etc., 
  74375. etc.). However, all other ctrl- and alt-keys, and cursor controls 
  74376. must remain intact.
  74377.  
  74378. The script is running fine and everything that we want is working 
  74379. O.K. (we love Kermit's scripting facilities!!). The only wish now is 
  74380. to secure the procedure for the users to prevent unwanted effects 
  74381. caused by accidentally used keys.
  74382.  
  74383. Second question: Is it possible to use a DOS-environment variable in 
  74384. a script-file in the output command? We have a DOS-variable 'GROUP' 
  74385. which content we want to pass to the unix-host. I think we must use 
  74386. someting like "$GROUP". Is this correct?
  74387.  
  74388. Thank you for your help!
  74389. Sincerely,
  74390.  
  74391.  
  74392.  
  74393.  
  74394.  
  74395. Pim Clotscher
  74396. Erasmus University Rotterdam - NL
  74397. I&A - Computer Support Hoboken
  74398. Tel. +31-104087420 / Fax +31-104362719
  74399. E-mail (Internet): clotscher@coh.fgg.eur.nl
  74400.  
  74401.  
  74402. From news@columbia.edu Mon Jan 16 12:36:50 1995
  74403. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13060
  74404.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 16 Jan 1995 07:48:15 -0500
  74405. Received: by apakabar.cc.columbia.edu id AA12694
  74406.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 16 Jan 1995 07:48:13 -0500
  74407. Newsgroups: comp.protocols.kermit.misc
  74408. Path: news.columbia.edu!panix!zip.eecs.umich.edu!newsxfer.itd.umich.edu!agate!library.ucla.edu!csulb.edu!csus.edu!netcom.com!jzero
  74409. From: jzero@netcom.com (Jim Nakamura)
  74410. Subject: Re: Communicating at 28.8 ?
  74411. Message-Id: <jzeroD2I0DF.9Jn@netcom.com>
  74412. Organization: NETCOM On-line Communication Services (408 261-4700 guest)
  74413. References: <jzeroD2GGCx.7LM@netcom.com> <3fc0ub$qmn@apakabar.cc.columbia.edu>
  74414. Date: Mon, 16 Jan 1995 12:36:50 GMT
  74415. Lines: 19
  74416. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  74417.  
  74418. jaltman@watsun.cc.columbia.edu (Jeffrey Altman) writes:
  74419.  
  74420. | In article <jzeroD2GGCx.7LM@netcom.com>, Jim Nakamura <jzero@netcom.com> wrote:
  74421. | >
  74422. | >How does one communicate at 28.8 ?  I just bought a US Robotics
  74423. | >28.8 Sportster.  I have C-Kermit 5A on a linux machine and as there
  74424. | >is no setting for USR, I have set the modem as "Hayes".  My line 
  74425. | >speed is set for 38400, the highest available.  What else need I do?  
  74426.  
  74427.  
  74428. | You must turn off speed matching on both the modem and in C-Kermit.
  74429.  
  74430.  
  74431.     I'm afraid this answer went completely over my head.
  74432.     Could you give me an "idiot proof" response?  (-;
  74433.  
  74434.  
  74435. -- 
  74436. jzero@netcom.com
  74437.  
  74438. From news@columbia.edu Mon Jan 16 15:59:31 1995
  74439. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29832
  74440.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 16 Jan 1995 10:59:39 -0500
  74441. Received: by apakabar.cc.columbia.edu id AA22691
  74442.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 16 Jan 1995 10:59:37 -0500
  74443. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  74444. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  74445. Newsgroups: comp.protocols.kermit.misc
  74446. Subject: Re: Kermit and TCP/IP 32
  74447. Date: 16 Jan 1995 15:59:31 GMT
  74448. Organization: Columbia University
  74449. Lines: 20
  74450. Message-Id: <3fe553$m4m@apakabar.cc.columbia.edu>
  74451. References: <3f8i67$5bd@hasle.oslonett.no>
  74452. Nntp-Posting-Host: watsun.cc.columbia.edu
  74453. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  74454.  
  74455. In article <3f8i67$5bd@hasle.oslonett.no>,
  74456. Sven Andreassen <sven@oslonett.no> wrote:
  74457. >Has anyone tried to make Kermit run over Windows for Workgroups
  74458. >and TCP/IP 32?
  74459. >
  74460. Yes.
  74461.  
  74462. >In our company we have 3-400 users running Kermit over Lan manager and a 
  74463. >Packet driver.  That works fine.  However some users need Windows for 
  74464. >Workgroups, and then a packet driver will not work.
  74465. >
  74466. MS-DOS Kermit 3.14 comes with a file that includes an extensive
  74467. discussion of this problem.
  74468.  
  74469. Anonymous ftp to kermit.columbia.edu, directory kermit/archives, binary
  74470. mode, file msvibm.zip.  Unzip with "-d" switch.  Read top-level READ.ME
  74471. to get started.  Read the Windows for Workgroups of NETWORKS/SETUP.DOC
  74472. for the information you are asking for.
  74473.  
  74474. - Frank
  74475.  
  74476. From news@columbia.edu Mon Jan 16 16:46:18 1995
  74477. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03580
  74478.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 16 Jan 1995 11:46:24 -0500
  74479. Received: by apakabar.cc.columbia.edu id AA25613
  74480.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 16 Jan 1995 11:46:22 -0500
  74481. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  74482. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  74483. Newsgroups: comp.protocols.kermit.misc
  74484. Subject: Re: Kermit File Transfer and tn3270
  74485. Date: 16 Jan 1995 16:46:18 GMT
  74486. Organization: Columbia University
  74487. Lines: 169
  74488. Message-Id: <3fe7sq$p0a@apakabar.cc.columbia.edu>
  74489. References: <173276AEB.BDESIMON@uga.cc.uga.edu>
  74490. Nntp-Posting-Host: watsun.cc.columbia.edu
  74491. Keywords: Mainframe, 3270
  74492. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  74493.  
  74494. In article <173276AEB.BDESIMON@uga.cc.uga.edu>,
  74495. Bert DeSimone <BDESIMON@UGA.CC.UGA.EDU> wrote:
  74496. >Gotta figure this has come up before.  We are evaluating a terminal server
  74497. >that supports tn3270.  No problem using MS-Kermit to connect to the terminal
  74498. >server and connect via tn3270 to an IBM mainframe.  However, file
  74499. >transfers (either invoking server on the mainframe or not) always fail.
  74500. >Connecting through this same terminal server to the same mainframe
  74501. >through a 7171 presents *no* problem with file transfer.  (BTW: I don't
  74502. >have to be using tn3270 on a terminal server; file transfers with Kermit
  74503. >using tn3270 on a Unix host fail the same way).
  74504. >I am speculating that the mainframe Kermit must send a transparent mode
  74505. >sequence, ordinarily processed by the protocol converter, that is causing 
  74506. >the problem.
  74507. One of the major strengths of the Kermit protocol is its ability to
  74508. transfer files with IBM mainframes over a wide variety of connection
  74509. types, and there is an excellent Kermit software program for the IBM
  74510. mainframe, which is available for VM/CMS, MVS/TSO (and ROSCOE), CICS, and
  74511. MUSIC.  The current version is 4.3.0, with version 4.3.1 in beta test.
  74512.  
  74513. All of the Kermit books and manuals ("Kermit, A File Transfer Protocol",
  74514. "Using MS-DOS Kermit", "Using C-Kermit", and the IBM mainframe Kermit
  74515. online manuals) describe the process(es) in some detail.  Here is a brief
  74516. summary.
  74517.  
  74518. Half-duplex (local-echo), line-at-a-time connections are generally handled
  74519. by the "ibm" macro that is built in to MS-DOS Kermit and C-Kermit, which
  74520. performs the following protocol-related settings:
  74521.  
  74522.   set local-echo on
  74523.   set parity mark
  74524.   set flow none
  74525.   set handshake xon
  74526.  
  74527. Full-screen sessions go through a 3270 terminal emulator.  This can reside
  74528. anywhere between the client software (such as MS-DOS Kermit) and the
  74529. mainframe.  For the past 10 or 20 years, the most common place to find the
  74530. 3270 emulator was on a special purpose "protocol converter": a box that
  74531. has serial lines on one side and a connection to the mainframe on the
  74532. other.  This box generally works by tricking the mainframe into thinking
  74533. it is a "control unit" with multiple 3270 terminals attached, and at the
  74534. same time tricking the terminals into thinking they are communicating with
  74535. a "normal" ASCII character-at-a-time host.  The box converts between 3270
  74536. data streams and ASCII terminal (e.g. VT100) conventions.  This includes
  74537. ASCII/EBCDIC character-set conversion, cursor positioning and screen
  74538. painting, and keystroke interpretation.
  74539.  
  74540. As you can imagine, all of these conversions would normally have a
  74541. disastrous effect on Kermit protocol packets, and also upon any other type
  74542. of data that has to be transmitted "as is", without conversion, such as
  74543. graphics terminal directives.  Thus, many protocol converters support a
  74544. "transparent mode", that allows the mainframe host to command them to turn
  74545. off their conversion functions, and at a later time, turn them back on.
  74546.  
  74547. When everything works as planned, the only Kermit commands required for
  74548. going through the protocol converter are:
  74549.  
  74550.   set flow xon/xoff ; (usually)
  74551.   set parity even   ; (or other)
  74552.  
  74553. Everything else corresponds to the normal Kermit defaults (remote echo,
  74554. no "handshake", etc).
  74555.  
  74556. Unfortunately, the method for entering and leaving transparent mode
  74557. differs from one 3270 emulation product to another.  Ideally, there are
  74558. two components: (1) the identification phase, in which the mainframe
  74559. software issues a special instruction that causes the protcol converter to
  74560. respond in a unique (but harmless) way; and (2) the actual enter- and
  74561. exit-transparent-mode directives.
  74562.  
  74563. IBM Mainframe Kermit needs to know which kind of transparency, if any, is
  74564. used by the protocol converter so it can be put into transparent mode at
  74565. the beginning of packet protocol and taken out of it upon return to
  74566. interactive command mode.  There are several ways that mainframe Kermit
  74567. can go about this.  First, you can use the SET CONTROLLER command to tell
  74568. it which style of transparency is used by the protocol converter.  Second,
  74569. mainframe Kermit can be set up by the system administrator to always use a
  74570. particular style.  Third, it can attempt to "autodiscover" the controller
  74571. type by issuing various types of identification queries and checking the
  74572. results.  The third method is not very reliable, however, since many types
  74573. of protocol converters fail to respond to these queries even when they do
  74574. implement a particular style of transparency.
  74575.  
  74576. Nowadays, special-purpose protocol converters are giving way to general
  74577. purpose terminal and compute servers that include a "tn3270" function.
  74578. tn3270 is a special kind of TELNET program that also performs 3270
  74579. emulation, and requires that the mainframe be on TCP/IP network and have
  74580. a TN3270 server.  Here are two examples:
  74581.  
  74582.  1. UNIX tn3270.  Most UNIX systems come with a tn3270 program that lets
  74583.     you make a full-screen connection to an IBM mainframe.  Once you have
  74584.     made the connection, you should be able to start Kermit on the
  74585.     mainframe, give it a SEND, RECEIVE, or SERVER command, escape back to
  74586.     your terminal emulator (e.g. MS-DOS Kermit), and transfer files
  74587.     without any special settings.  If you have trouble with this, then:
  74588.  
  74589.      . Ask mainframe Kermit to "show controller".  If it doesn't say
  74590.        Series/1, then tell it to "set controller series1".
  74591.  
  74592.      . Try using shorter packets.  The maximum length that can pass
  74593.        through the protocol converter might be less than what you are
  74594.        trying to use.  A typical maximum value might be 1700.
  74595.  
  74596.      . Tell one or both Kermit programs to "set parity space".
  74597.  
  74598.  2. Cisco terminal server tn3270.  Current releases of Cisco terminal
  74599.     server software include a tn3270 feature that is supposed to permit
  74600.     Kermit transfers, but it has bugs.  Sometimes these bugs can be worked
  74601.     around by using the methods listed in (1) above and specifying VERY
  74602.     short packets, like 30 or 40 bytes.  Sometimes they can't be worked
  74603.     around at all.  A future release of Cisco software (probably 10.3)
  74604.     will include new tn3270 software that implements Series/1-style
  74605.     transparency correctly, and allows Kermit transfers of both text and
  74606.     binary files in both directions using packet lengths up to about 1900
  74607.     (or whatever the total screen size is).
  74608.  
  74609. If you try all of these workarounds with your terminal server and still
  74610. get failed transfers, make packet logs and/or debug logs in both Kermit
  74611. programs to find out what the terminal server is delivering to each Kermit
  74612. program, and report the misbehavior to your terminal server vendor.
  74613.  
  74614. For further information about specific protocol converters and how to
  74615. configure IBM Mainframe Kermit for them, please read the ik0aaa.hlp file
  74616. that comes with IBM Mainframe Kermit.
  74617.  
  74618. Finally, it is possible to transfer files through a 3270 fullscreen
  74619. connection even when 3270 emulator can't be put into transparent mode at
  74620. all.  You can read about this in the C-Kermit update notes file
  74621. (ckcker.upd) and the MS-DOS Kermit update notes files (KERMIT.UPD).
  74622. Quoting from the latter:
  74623.  
  74624. "Doomsday Kermit" (DDK) techniques allow file transfer with IBM mainframes
  74625. through 3270 protocol converters that do NOT support transparent mode, to be
  74626. used in conjunction with IBM Mainframe Kermit's SET CONTROLLER FULLSCREEN
  74627. command on VM/CMS, MVS/TSO, or CICS.  MS-DOS Kermit 3.13 or later and IBM
  74628. Mainframe Kermit 4.2.3 or later required.  Commands:
  74629.     
  74630.   SET PARITY EVEN     ; Or whatever
  74631.   SET FLOW XON/XOFF     ; Or whatever
  74632.   SET SEND START 62     ; Greater-than sign
  74633.   SET RECEIVE START 62     ; Ditto
  74634.   SET BLOCK BLANK-FREE-2 ; New block-check type
  74635.   SET HANDSHAKE NONE
  74636.  
  74637. BLANK-FREE-2 is a new block-check type, exactly like type 2, except encoded
  74638. to never contains blanks.  Give IBM Mainframe Kermit the following commands:
  74639.  
  74640.   SET CONTROLLER FULL
  74641.   SET SEND START 62
  74642.   SET RECEIVE START 62
  74643.   SET BLOCK BLANK-FREE-2
  74644.   SET HANDSHAKE 0
  74645.  
  74646. Doomsday Kermit file transfers are not as reliable as regular Kermit protocol
  74647. transfers, and they are much slower.  Use this method only as a last resort;
  74648. that is, only when you can't get a transparent-mode fullscreen connection or
  74649. a linemode connection to the mainframe.
  74650.  
  74651. (end quote)
  74652.  
  74653. And beyond finally: in the future, we expect to add 3270 emulation to the
  74654. Kermit software itself, so you will be able to make tn3270 connections
  74655. directly from Kermit to the mainframe without having to go through a
  74656. "black box" for the conversion.  Of course, Kermit software will handle
  74657. transparency correctly (and automatically).  (And no, I can't estimate
  74658. when built-in 3270 emulation will be available.)
  74659.  
  74660. - Frank
  74661.  
  74662. From news@columbia.edu Mon Jan 16 16:51:16 1995
  74663. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04015
  74664.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 16 Jan 1995 11:51:22 -0500
  74665. Received: by apakabar.cc.columbia.edu id AA25895
  74666.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 16 Jan 1995 11:51:20 -0500
  74667. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  74668. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  74669. Newsgroups: comp.protocols.kermit.misc
  74670. Subject: Re: Disable internal commands?
  74671. Date: 16 Jan 1995 16:51:16 GMT
  74672. Organization: Columbia University
  74673. Lines: 30
  74674. Distribution: everyone
  74675. Message-Id: <3fe864$p8v@apakabar.cc.columbia.edu>
  74676. References: <Clotsche.95.2F1A62AC@coh.fgg.eur.nl>
  74677. Nntp-Posting-Host: watsun.cc.columbia.edu
  74678. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  74679.  
  74680. In article <Clotsche.95.2F1A62AC@coh.fgg.eur.nl>,
  74681. P. CLOTSCHER @ COH <Clotsche@coh.fgg.eur.nl> wrote:
  74682. >Is there a possibility to disable the (or some) internal Key-commands 
  74683. >like Alt-X, Alt-=, Alt-Z, etc., while in connect mode (terminal 
  74684. >emulation)?
  74685. >
  74686. Yes: SET KEY <scan-code> \Kignore
  74687.  
  74688. >I could re-define the keys of course, but a command like 
  74689. >'disable ...' would be nicer.
  74690. >
  74691. Presently, there is no such command.
  74692.  
  74693. >Also the normal escape character ^] is on our wishlist for disabling.
  74694. >
  74695. You can change the escape character to any other (7-bit) control character,
  74696. but there is no way to disable it entirely.
  74697.  
  74698. >Second question: Is it possible to use a DOS-environment variable in 
  74699. >a script-file in the output command?
  74700. >
  74701. Yes, as explained in the manual, "Using MS-DOS Kermit":
  74702.  
  74703.  \$(name)
  74704.  
  74705. where "name" is the name of the desired environment variable, e.g.
  74706.  
  74707.   \$(GROUP)
  74708.  
  74709. - Frank
  74710.  
  74711. From news@columbia.edu Mon Jan 16 17:19:57 1995
  74712. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06088
  74713.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 16 Jan 1995 12:20:06 -0500
  74714. Received: by apakabar.cc.columbia.edu id AA27943
  74715.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 16 Jan 1995 12:20:03 -0500
  74716. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  74717. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  74718. Newsgroups: comp.protocols.kermit.misc
  74719. Subject: Re: Communicating at 28.8 ?
  74720. Date: 16 Jan 1995 17:19:57 GMT
  74721. Organization: Columbia University
  74722. Lines: 37
  74723. Message-Id: <3fe9rt$r93@apakabar.cc.columbia.edu>
  74724. References: <jzeroD2GGCx.7LM@netcom.com> <3fc0ub$qmn@apakabar.cc.columbia.edu> <jzeroD2I0DF.9Jn@netcom.com>
  74725. Nntp-Posting-Host: watsun.cc.columbia.edu
  74726. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  74727.  
  74728. In article <jzeroD2I0DF.9Jn@netcom.com>, Jim Nakamura <jzero@netcom.com> wrote:
  74729. >jaltman@watsun.cc.columbia.edu (Jeffrey Altman) writes:
  74730. >
  74731. >| In article <jzeroD2GGCx.7LM@netcom.com>, Jim Nakamura <jzero@netcom.com> wrote:
  74732. >| >
  74733. >| >How does one communicate at 28.8 ?  I just bought a US Robotics
  74734. >| >28.8 Sportster.  I have C-Kermit 5A on a linux machine and as there
  74735. >| >is no setting for USR, I have set the modem as "Hayes".  My line 
  74736. >| >speed is set for 38400, the highest available.  What else need I do?  
  74737. >
  74738. >
  74739. >| You must turn off speed matching on both the modem and in C-Kermit.
  74740. >
  74741. >
  74742. >    I'm afraid this answer went completely over my head.
  74743. >    Could you give me an "idiot proof" response?  (-;
  74744.  
  74745. Sorry I was short on time when I replied.  For answers to questions such 
  74746. as these you should refer to both your modem manual and the appropriate 
  74747. Kermit book, in this case "Using C-Kermit" as it will contain the answers
  74748. you need and quite a bit of background info.
  74749.  
  74750. When you set the speed with which you are communicating to your modem, 
  74751. you are only specifying the interface speed.  Not the speed at which your
  74752. modem will connect to the remote modem.  When a connection is made the
  74753. modem reports back the actual connect speed.  And depending on how it is 
  74754. configured it will change the interface speed between the computer and modem
  74755. to match.
  74756.  
  74757. This is SPEED-MATCHING.  Now both C-Kermit and the modem must be told to
  74758. do the same thing.  Either they both speed-match or they both don't.  But
  74759. if they do not agree, once a connection occurs you will get garbage.
  74760.  
  74761. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  74762. "C-Kermit: available on more platforms than any other communications software."
  74763. "Kermit FTP: sending files whenever and wherever they are needed."
  74764.   OS/2 version 5A(190): ftp://kermit.columbia.edu/kermit/archives/cko190.zip 
  74765.  
  74766. From news@columbia.edu Mon Jan 16 17:36:07 1995
  74767. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07757
  74768.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 16 Jan 1995 12:43:06 -0500
  74769. Received: by apakabar.cc.columbia.edu id AA29348
  74770.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 16 Jan 1995 12:43:05 -0500
  74771. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!howland.reston.ans.net!spool.mu.edu!uwm.edu!news.doit.wisc.edu!jong-min
  74772. From: jong-min@cae.wisc.edu (Jong-Min Park)
  74773. Newsgroups: comp.protocols.tcp-ip,comp.protocols.kermit.misc
  74774. Subject: xyz-modem through tcp-ip
  74775. Date: 16 Jan 1995 17:36:07 GMT
  74776. Organization: Division of Information Technology
  74777. Lines: 24
  74778. Message-Id: <3feaq7$4aa@news.doit.wisc.edu>
  74779. Nntp-Posting-Host: hp-55.cae.wisc.edu
  74780. X-Newsreader: TIN [version 1.2 PL2]
  74781. Xref: news.columbia.edu comp.protocols.tcp-ip:29191 comp.protocols.kermit.misc:1623
  74782. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  74783.  
  74784. Hello,
  74785.  
  74786. I am having trouble sending/receiving files using x/y/z-modem transfer
  74787. on tcp-ip. Here is my setup:
  74788.     kermit to connect to a tcp-ip host
  74789.     use sz/rz to send/receive files
  74790.  
  74791. The remote host doesn't have ftp, but allows kermit and x/y/z-modem
  74792. transfer. Kermit transfer is too slow (45 cps) on the tcp-ip.
  74793.  
  74794. When using x/y/z-modem transfer, errors such as CHKSUM/packet size/
  74795. bad header occurs. I assume x/y/z-modem was mainly created for
  74796. modem transfer, so may have problems sending using tcp-ip packets.
  74797.  
  74798. Has anyone succeeded in x/y/z-modem transfer using tcp-ip? Otherwise,
  74799. what would be the cause for the error? Any solution or hints would be
  74800. greatly appreciated.
  74801.  
  74802. Please reply to jong-min@engr.wisc.edu if possible. Thank you.
  74803.  
  74804. +-------- Jong-Min Park -=?B?EUC-KR?udrBvrnO?=-9ZA>9N-----------
  74805. | E-mail: jong-min@engr.wisc.edu
  74806. | Office: (608)-263-7784       266 ME Bldg
  74807. +-------- University of Wisconsin - Madison
  74808.  
  74809. From news@columbia.edu Mon Jan 16 19:41:54 1995
  74810. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18196
  74811.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 16 Jan 1995 14:42:01 -0500
  74812. Received: by apakabar.cc.columbia.edu id AA07579
  74813.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 16 Jan 1995 14:41:58 -0500
  74814. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  74815. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  74816. Newsgroups: comp.protocols.tcp-ip,comp.protocols.kermit.misc
  74817. Subject: Re: xyz-modem through tcp-ip
  74818. Date: 16 Jan 1995 19:41:54 GMT
  74819. Organization: Columbia University
  74820. Lines: 32
  74821. Message-Id: <3fei62$7cn@apakabar.cc.columbia.edu>
  74822. References: <3feaq7$4aa@news.doit.wisc.edu>
  74823. Nntp-Posting-Host: watsun.cc.columbia.edu
  74824. Xref: news.columbia.edu comp.protocols.tcp-ip:29197 comp.protocols.kermit.misc:1624
  74825. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  74826.  
  74827. In article <3feaq7$4aa@news.doit.wisc.edu>,
  74828. Jong-Min Park <jong-min@cae.wisc.edu> wrote:
  74829. >I am having trouble sending/receiving files using x/y/z-modem transfer
  74830. >on tcp-ip. Here is my setup:
  74831. >    kermit to connect to a tcp-ip host
  74832. >    use sz/rz to send/receive files
  74833. >
  74834. >The remote host doesn't have ftp, but allows kermit and x/y/z-modem
  74835. >transfer. Kermit transfer is too slow (45 cps) on the tcp-ip.
  74836. >
  74837. You have observed that Kermit works, but it is slow, whereas x/y/z-modem
  74838. do not work.  You conclude that if x/y/z-modem could be somehow taught
  74839. to work, they would be fast, while Kermit would remain slow.  
  74840.  
  74841. Kermit can be as fast as or faster than any of the other protocols when
  74842. tuned for speed.  This is explained at length in the appropriate manuals
  74843. ("Using MS-DOS Kermit", "Using C-Kermit", etc), and in our new FAQ, which
  74844. you can find at:
  74845.  
  74846.   ftp://kermit.columbia.edu/kermit/FAQ.TXT
  74847.  
  74848. Kermit's defaults are deliberately conservative to maximize the chance
  74849. that it will work on any given connection, even if it works slowly, as you
  74850. have seen.
  74851.  
  74852. The defaults of X/Y/Z-modem, on the other hand, are set for speed at the
  74853. expense of robustness, as you have also seen.
  74854.  
  74855. I'd recommend you spend a couple minutes reading up on how to make Kermit
  74856. transfers go fast.
  74857.  
  74858. - Frank
  74859.  
  74860. From news@columbia.edu Mon Jan 16 20:11:09 1995
  74861. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21733
  74862.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 16 Jan 1995 15:31:30 -0500
  74863. Received: by apakabar.cc.columbia.edu id AA11261
  74864.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 16 Jan 1995 15:31:28 -0500
  74865. Path: news.columbia.edu!panix!news.mathworks.com!hookup!news.moneng.mei.com!uwm.edu!news.doit.wisc.edu!jong-min
  74866. From: jong-min@cae.wisc.edu (Jong-Min Park)
  74867. Newsgroups: comp.protocols.tcp-ip,comp.protocols.kermit.misc
  74868. Subject: Re: xyz-modem through tcp-ip
  74869. Followup-To: comp.protocols.tcp-ip
  74870. Date: 16 Jan 1995 20:11:09 GMT
  74871. Organization: Division of Information Technology
  74872. Lines: 38
  74873. Message-Id: <3fejst$8vv@news.doit.wisc.edu>
  74874. References: <3feaq7$4aa@news.doit.wisc.edu>
  74875. Nntp-Posting-Host: hp-55.cae.wisc.edu
  74876. X-Newsreader: TIN [version 1.2 PL2]
  74877. Xref: news.columbia.edu comp.protocols.tcp-ip:29200 comp.protocols.kermit.misc:1625
  74878. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  74879.  
  74880. Sorry that I may have been a little unclear. Here is more info:
  74881.  
  74882. I am having trouble sending/receiving files using x/y/z-modem transfer
  74883. on tcp-ip. Here is my setup:
  74884.  
  74885.     kermit to connect to a tcp-ip host using telnet
  74886.     use sz/rz (v1.26 by Chuck Forsberg) to send/receive files
  74887.  
  74888. The remote host doesn't have ftp, but allows kermit and x/y/z-modem
  74889. transfer. Kermit transfer is too slow (45 cps) on the tcp-ip. And
  74890. since there is no way to fiddle with kermit configuration on the
  74891. remote host, I'm not sure I can speed up kermit transfer.
  74892.  
  74893. When using x/y/z-modem, 'subpacket too long' and 'bad CRC checksum' occurs.
  74894.  
  74895. I've succeeded in transferring ascii files between local machines just
  74896. to test it: 'sz -a -L 80 filename' and 'rz -a'. If I omit -L, 'subpacket
  74897. too long' error occurs. Although 'bad CRC' still occurs, it is only
  74898. intermittent. Now binary transfer completely fails (bad CRC), but again
  74899. 'subpacket long' disappears with -L option.
  74900.  
  74901. I think there are two problems: 8-bit control code is being translated
  74902. where it shouldn't be. And assembling of subpackets may be causing
  74903. problems with tcp-ip packet size limit.
  74904.  
  74905. I'm not too familiar with subpacket assembling or zmodem packets, nor
  74906. telnet negotiation.
  74907.  
  74908. Has anyone succeeded in x/y/z-modem transfer using tcp-ip? Otherwise,
  74909. what would be the cause for the error? Any solution or hints would be
  74910. greatly appreciated.
  74911.  
  74912. Please reply to jong-min@engr.wisc.edu if possible. Thank you.
  74913.  
  74914. +-------- Jong-Min Park -=?B?EUC-KR?udrBvrnO?=-9ZA>9N-----------
  74915. | E-mail: jong-min@engr.wisc.edu
  74916. | Office: (608)-263-7784       266 ME Bldg
  74917. +-------- University of Wisconsin - Madison
  74918.  
  74919. From news@columbia.edu Mon Jan 16 19:28:24 1995
  74920. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22494
  74921.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 16 Jan 1995 15:42:26 -0500
  74922. Received: by apakabar.cc.columbia.edu id AA12342
  74923.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 16 Jan 1995 15:42:24 -0500
  74924. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!ncar!newshost.lanl.gov!newshost!bill
  74925. From: bill@yossarian.lanl.gov (Bill Reynolds)
  74926. Newsgroups: comp.protocols.kermit.misc
  74927. Subject: MS Kermit 3.14 reports 231 rows when queried
  74928. Date: 16 Jan 1995 19:28:24 GMT
  74929. Organization: Complex Systems Group, Theoretical Division, LANL, Los Alamos, NM
  74930. Lines: 19
  74931. Distribution: world
  74932. Message-Id: <BILL.95Jan16122824@yossarian.lanl.gov>
  74933. Reply-To: bill@goshawk.lanl.gov
  74934. Nntp-Posting-Host: yossarian.lanl.gov
  74935. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  74936.  
  74937. This bug manifests itself when using the X11R6 ``resize'' command for
  74938. automatically setting the terminal parameters.  After typing resize,
  74939. one finds that the `rows' parameter has been set to 231. This bug can
  74940. be reproduced with the following Unix Bourne shell commands (while
  74941. logged in via kermit):
  74942.  
  74943. $ echo -e "\0337\033[r\033[999;999H\033[6n" ; cat - > foo
  74944. <Ctrl-D>
  74945. <Ctrl-D>
  74946. $ cat -v foo
  74947. ^[[231;80R
  74948.  
  74949. This was using kermit.exe from msvibm.zip downloaded from
  74950. watsun.cc.columbia.edu:/kermit/bin on Sunday, Jan 16, 1995.
  74951. --
  74952. Bill Reynolds bill@raptor.lanl.gov
  74953. _____________________________________________________________________________
  74954. "Our Yosemite turkeys live in the shade of beautiful oak trees"
  74955.     -Shelton's Free-Range Turkeys president Gary Flanagan
  74956.  
  74957. From news@columbia.edu Mon Jan 16 22:57:20 1995
  74958. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03200
  74959.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 16 Jan 1995 17:57:27 -0500
  74960. Received: by apakabar.cc.columbia.edu id AA21835
  74961.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 16 Jan 1995 17:57:24 -0500
  74962. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  74963. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  74964. Newsgroups: comp.protocols.kermit.misc
  74965. Subject: Re: MS Kermit 3.14 reports 231 rows when queried
  74966. Date: 16 Jan 1995 22:57:20 GMT
  74967. Organization: Columbia University
  74968. Lines: 33
  74969. Message-Id: <3fetkg$la7@apakabar.cc.columbia.edu>
  74970. References: <BILL.95Jan16122824@yossarian.lanl.gov>
  74971. Nntp-Posting-Host: watsun.cc.columbia.edu
  74972. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  74973.  
  74974. In article <BILL.95Jan16122824@yossarian.lanl.gov>,
  74975. Bill Reynolds <bill@goshawk.lanl.gov> wrote:
  74976. >This bug manifests itself when using the X11R6 ``resize'' command for
  74977. >automatically setting the terminal parameters.  After typing resize,
  74978. >one finds that the `rows' parameter has been set to 231. This bug can
  74979. >be reproduced with the following Unix Bourne shell commands (while
  74980. >logged in via kermit):
  74981. >
  74982. >$ echo -e "\0337\033[r\033[999;999H\033[6n" ; cat - > foo
  74983. ><Ctrl-D>
  74984. ><Ctrl-D>
  74985. >$ cat -v foo
  74986. >^[[231;80R
  74987. >
  74988. >This was using kermit.exe from msvibm.zip downloaded from
  74989. >watsun.cc.columbia.edu:/kermit/bin on Sunday, Jan 16, 1995.
  74990. >
  74991. You're right.  It's a bug.
  74992.  
  74993. We'll have to develop and issue a patch for it asap.
  74994.  
  74995. Thanks for pointing it out.
  74996.  
  74997. - Frank
  74998.  
  74999. x
  75000. x
  75001. x
  75002. x
  75003. x
  75004. x
  75005. x
  75006. x
  75007.  
  75008. From news@columbia.edu Tue Jan 17 04:40:54 1995
  75009. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26708
  75010.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 16 Jan 1995 23:39:35 -0500
  75011. Received: by apakabar.cc.columbia.edu id AA26218
  75012.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 16 Jan 1995 23:39:33 -0500
  75013. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!spool.mu.edu!uwm.edu!news.doit.wisc.edu!jong-min
  75014. From: jong-min@cae.wisc.edu (Jong-Min Park)
  75015. Newsgroups: comp.protocols.tcp-ip,comp.protocols.kermit.misc
  75016. Subject: Re: xyz-modem through tcp-ip
  75017. Date: 17 Jan 1995 04:40:54 GMT
  75018. Organization: Division of Information Technology
  75019. Lines: 49
  75020. Message-Id: <3ffhom$mb5@news.doit.wisc.edu>
  75021. References: <3feaq7$4aa@news.doit.wisc.edu> <3fejst$8vv@news.doit.wisc.edu>
  75022. Nntp-Posting-Host: hp-7.cae.wisc.edu
  75023. X-Newsreader: TIN [version 1.2 PL2]
  75024. Xref: news.columbia.edu comp.protocols.tcp-ip:29210 comp.protocols.kermit.misc:1628
  75025. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  75026.  
  75027. Thank you so much for all the feedback. I didn't have time to say thank
  75028. you to all who replied.
  75029.  
  75030. I have mustered enough hints and info to try out several configs and I
  75031. finally got some speed (500 to 1000 cps vs. original 49 or zero cps).
  75032. Sorry if this was an FAQ, but just so that someone could benefit from
  75033. this info, I'm posting my result.
  75034.  
  75035. Here is what I found when using kermit or zmodem transfer through
  75036. tcp-ip from my host to a remote site:
  75037.  
  75038.   In kermit, increasing the receiving packet size can speed up the
  75039.     transfer. But if the receiving end cannot be tweaked by the user,
  75040.     you are still out of luck (it still works, in contrast to zmodem).
  75041.  
  75042.   In zmodem, using a smaller packet size (about 100 bytes for me) and
  75043.     escaping control characters from the sending host will avoid
  75044.     'subpacket too long' error and 'CRC' error, respectively. Again,
  75045.     if you cannot change the configuration from the sending host,
  75046.     it just doesn't work.
  75047.  
  75048. In conclusion, I now do downloads through kermit transfer and uploads
  75049. through zmodem transfer, since the remote host doesn't allow changing
  75050. of configurations for both sending and receiving.
  75051.  
  75052. One strange thing I've noticed when using zmodem was that packet size
  75053. less than about 128 went okay, but anything above it somehow hangs at
  75054. the last 1024 bytes remaining (actually I can see that all data actually
  75055. were sent, but the remaining size to transfer suddenly rises from 0
  75056. to 1024, and then nothing happens).
  75057.  
  75058. Here is what I wrote:
  75059. > I am having trouble sending/receiving files using x/y/z-modem transfer
  75060. > on tcp-ip. Here is my setup:
  75061.  
  75062. >     kermit to connect to a tcp-ip host using telnet
  75063. >     use sz/rz (v1.26 by Chuck Forsberg) to send/receive files
  75064.  
  75065. > The remote host doesn't have ftp, but allows kermit and x/y/z-modem
  75066. > transfer. Kermit transfer is too slow (45 cps) on the tcp-ip. And
  75067. > since there is no way to fiddle with kermit configuration on the
  75068. > remote host, I'm not sure I can speed up kermit transfer.
  75069.  
  75070. > When using x/y/z-modem, 'subpacket too long' and 'bad CRC checksum' occurs.
  75071.  
  75072. +-------- Jong-Min Park -=?B?EUC-KR?udrBvrnO?=-9ZA>9N-----------
  75073. | E-mail: jong-min@engr.wisc.edu
  75074. | Office: (608)-263-7784       266 ME Bldg
  75075. +-------- University of Wisconsin - Madison
  75076.  
  75077. From news@columbia.edu Tue Jan 17 17:12:46 1995
  75078. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27237
  75079.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 17 Jan 1995 12:45:43 -0500
  75080. Received: by apakabar.cc.columbia.edu id AA08612
  75081.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 17 Jan 1995 12:45:40 -0500
  75082. Path: news.columbia.edu!panix!news.mathworks.com!hookup!olivea!charnel.ecst.csuchico.edu!xmission!xmission!not-for-mail
  75083. From: fozz@xmission.com (Fozziliny Moo)
  75084. Newsgroups: comp.protocols.kermit.misc
  75085. Subject: MS-Kermit and Novell v3.12
  75086. Date: 17 Jan 1995 10:12:46 -0700
  75087. Organization: XMission Public Access Internet (801 539 0900)
  75088. Lines: 18
  75089. Message-Id: <3fgtqe$i0l@xmission.xmission.com>
  75090. Nntp-Posting-Host: xmission
  75091. Summary: How do I run TCP/IP over Novell with MS-Kermit
  75092. Keywords: TCP/IP, Novell
  75093. X-Newsreader: NN version 6.5.0 #2 (NOV)
  75094. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  75095.  
  75096. I know there are a few different ways to do this, but I am curious about
  75097. what others have found is the best method of doing this.
  75098.  
  75099. I would like to run MS-DOS Kermit on a DOS workstation connected to a 
  75100. Novell Netware v3.12 network. Physically, the network cable is also 
  75101. connected to two IBM RS/6000 machines talking TCP/IP. What is the best way
  75102. to get MS-Kermit to talk to the RS/6000s while running a Netware client
  75103. shell? Should I look at a dual-stack solution? Or is there an easy way to 
  75104. encapsulate the TCP/IP packets in the IPX and then have the Netware server
  75105. break the TCP/IP packets out?
  75106.  
  75107. -Fozz
  75108.  
  75109. -- 
  75110. "This may seem a bit weird, but that's okay, because it is weird."
  75111.     -- The Perl v5.0 manual page.
  75112.  
  75113. Doran Barton / Fozziliny Moo (fozz@xmission.com or http://xmission.com/~fozz/ )
  75114.  
  75115. From news@columbia.edu Tue Jan 17 17:41:47 1995
  75116. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07172
  75117.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 17 Jan 1995 14:25:29 -0500
  75118. Received: by apakabar.cc.columbia.edu id AA17941
  75119.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 17 Jan 1995 14:25:28 -0500
  75120. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!bloom-beacon.mit.edu!newsserver.pixel.kodak.com!newsserver.rdcs.Kodak.COM!eastman!mmdm08!jgirtler
  75121. From: jgirtler@sector.kodak.com (Joe Girtler)
  75122. Newsgroups: comp.protocols.kermit.misc
  75123. Subject: Re: 2 questions
  75124. Message-Id: <15375@eastman.Kodak.Com>
  75125. Date: 17 Jan 95 17:41:47 GMT
  75126. References: <3eqjo6$p9k@bingnet1.cc.binghamton.edu>
  75127. Sender: usenet@eastman.kodak.com
  75128. Reply-To: jgirtler@sector.kodak.com
  75129. Organization: Eastman Kodak Company
  75130. Lines: 6
  75131. Nntp-Posting-Host: 150.102.41.141
  75132. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  75133.  
  75134. I am also interested in using Kermit's telnet ablilty, but have NO CLUE how.
  75135.  
  75136. I'm running SunOS.  I've tried the man pages but without success.
  75137.  
  75138. Can anybody help?
  75139.  
  75140.  
  75141. From news@columbia.edu Tue Jan 17 07:12:55 1995
  75142. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29062
  75143.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 17 Jan 1995 17:57:42 -0500
  75144. Received: by apakabar.cc.columbia.edu id AA08850
  75145.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 17 Jan 1995 17:57:38 -0500
  75146. Path: news.columbia.edu!sol.ctr.columbia.edu!news.cs.columbia.edu!news.pipeline.com!swiss.ans.net!gatech!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  75147. From: jrd@cc.usu.edu (Joe Doupnik)
  75148. Newsgroups: comp.protocols.kermit.misc
  75149. Subject: Re: MS-Kermit and Novell v3.12
  75150. Message-Id: <1995Jan17.131255.38178@cc.usu.edu>
  75151. Date: 17 Jan 95 13:12:55 MDT
  75152. References: <3fgtqe$i0l@xmission.xmission.com>
  75153. Organization: Utah State University
  75154. Lines: 24
  75155. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  75156.  
  75157. In article <3fgtqe$i0l@xmission.xmission.com>, fozz@xmission.com (Fozziliny Moo) writes:
  75158. > I know there are a few different ways to do this, but I am curious about
  75159. > what others have found is the best method of doing this.
  75160. > I would like to run MS-DOS Kermit on a DOS workstation connected to a 
  75161. > Novell Netware v3.12 network. Physically, the network cable is also 
  75162. > connected to two IBM RS/6000 machines talking TCP/IP. What is the best way
  75163. > to get MS-Kermit to talk to the RS/6000s while running a Netware client
  75164. > shell? Should I look at a dual-stack solution? Or is there an easy way to 
  75165. > encapsulate the TCP/IP packets in the IPX and then have the Netware server
  75166. > break the TCP/IP packets out?
  75167. --------------
  75168.     You don't have to do anything fancy at all. MS-DOS Kermit is
  75169. designed to run straight over ODI, as I thought you knew. The only time
  75170. shims (ODIPKT + WINPKT) are needed is when MSK runs in a Windows DOS box.
  75171. All NW 3 and 4 servers are shipped ready to route TCP/IP traffic at no
  75172. extra cost (just load the supplied TCPIP.NLM). Please see the docs in the
  75173. MSK 3.14 quick-start archive file kermit/bin/msvibm.zip on kermit.columbia.edu.
  75174.     Just as a historical reminder: MS-DOS Kermit was the first non-Novell
  75175. TCP/IP program to run over ODI native mode, and I made publically viewable my 
  75176. code to accomplish that task. Today a number of vendors offer native ODI 
  75177. capability, and that's a good thing. That's not a claim on those vendors, but
  75178. rather a longer term view of how these programs fit together.
  75179.         Joe D.
  75180.  
  75181. From news@columbia.edu Tue Jan 17 23:11:00 1995
  75182. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28393
  75183.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 18 Jan 1995 00:13:54 -0500
  75184. Received: by apakabar.cc.columbia.edu id AA20144
  75185.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 18 Jan 1995 00:13:53 -0500
  75186. Path: news.columbia.edu!panix!news.mathworks.com!usenet.eel.ufl.edu!usenet.fiu.edu!isis.fiu.edu!nomadd.fiu.edu!sul
  75187. From: sul@nomadd.fiu.edu (Sulaiman Paperwalla)
  75188. Newsgroups: comp.protocols.kermit.misc
  75189. Subject: Kermit 3.14 - Binary transfer
  75190. Date: 17 Jan 1995 23:11:00 GMT
  75191. Organization: Florida International University
  75192. Lines: 14
  75193. Message-Id: <3fhiq4$2hn@newshost.fiu.edu>
  75194. Nntp-Posting-Host: nomadd.fiu.edu
  75195. X-Newsreader: TIN [version 1.2 PL2]
  75196. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  75197.  
  75198. I've been repeatedly trying to upload binary files via
  75199. Kermit using TCP/IP.  Text files upload without failure
  75200. but binary files are causing the error: 'TOO MANY RETRIES'
  75201.  
  75202. Packed length are set to 94 at both ends.
  75203. I've tried other lengths, but no success.
  75204.  
  75205. Am I doing something that Kermit 3.14 does not like?
  75206.  
  75207. This is quite urgent, so I will truly appreciate your help.
  75208.  
  75209. thanks.
  75210.  
  75211. sul@fiu.edu
  75212.  
  75213. From news@columbia.edu Tue Jan 17 23:31:52 1995
  75214. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02965
  75215.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 18 Jan 1995 00:57:17 -0500
  75216. Received: by apakabar.cc.columbia.edu id AA22602
  75217.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 18 Jan 1995 00:57:15 -0500
  75218. Path: news.columbia.edu!panix!news.mathworks.com!usenet.eel.ufl.edu!usenet.fiu.edu!isis.fiu.edu!nomadd.fiu.edu!sul
  75219. From: sul@nomadd.fiu.edu (Sulaiman Paperwalla)
  75220. Newsgroups: comp.protocols.kermit.misc
  75221. Subject: Re: Kermit 3.14 - Binary transfer
  75222. Date: 17 Jan 1995 23:31:52 GMT
  75223. Organization: Florida International University
  75224. Lines: 23
  75225. Message-Id: <3fhk19$2vb@newshost.fiu.edu>
  75226. References: <3fhiq4$2hn@newshost.fiu.edu>
  75227. Nntp-Posting-Host: nomadd.fiu.edu
  75228. X-Newsreader: TIN [version 1.2 PL2]
  75229. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  75230.  
  75231. Sulaiman Paperwalla (sul@nomadd.fiu.edu) wrote:
  75232. : I've been repeatedly trying to upload binary files via
  75233. : Kermit using TCP/IP.  Text files upload without failure
  75234. : but binary files are causing the error: 'TOO MANY RETRIES'
  75235.  
  75236. : Packed length are set to 94 at both ends.
  75237. : I've tried other lengths, but no success.
  75238.  
  75239. : Am I doing something that Kermit 3.14 does not like?
  75240.  
  75241. : This is quite urgent, so I will truly appreciate your help.
  75242.  
  75243. : thanks.
  75244.  
  75245. : sul@fiu.edu
  75246.  
  75247.  
  75248. Never mind.... I was using 3.14 beta 17.  It works fine with the
  75249. new release.
  75250.  
  75251. Sorry for this post.
  75252.  
  75253. Sul.
  75254.  
  75255. From news@columbia.edu Wed Jan 18 05:16:01 1995
  75256. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16341
  75257.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 18 Jan 1995 11:11:25 -0500
  75258. Received: by apakabar.cc.columbia.edu id AA04323
  75259.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 18 Jan 1995 11:11:22 -0500
  75260. Path: news.columbia.edu!panix!news.mathworks.com!solaris.cc.vt.edu!news.alpha.net!uwm.edu!msunews!harbinger.cc.monash.edu.au!bunyip.cc.uq.oz.au!munnari.oz.au!yoyo.aarnet.edu.au!goliath.camtech.com.au!gateway.dircsa.org.au!gateway.dircsa.org.au!not-for-mail
  75261. From: arthur@gateway.dircsa.org.au (Arthur Marsh)
  75262. Newsgroups: comp.protocols.kermit.misc
  75263. Subject: Re: Wyse 60 emulation?
  75264. Date: 18 Jan 1995 15:46:01 +1030
  75265. Organization: DIRCSA - Disability Information and Resource Centre
  75266. Lines: 17
  75267. Message-Id: <3fi86h$ben@gateway.dircsa.org.au>
  75268. References: <3f3q36$bri@nic-nac.CSU.net>
  75269. Nntp-Posting-Host: gateway.dircsa.org.au
  75270. X-Newsreader: TIN [version 1.1 PL8]
  75271. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  75272.  
  75273. Tom Mendenhall (tem@scout.humboldt.edu) wrote:
  75274. : Does anyone know if the 3.14 version of Kermit will emulate a Wyse 60 
  75275. : terminal?
  75276.  
  75277. : Running Unixware with DOS Merge. A Wyse 60 terminal will send PC keyboard 
  75278. : scancodes plus emulate a 25 line monochrome display. A vt100 terminal 
  75279. : requires a bunch of set key definitions or the user must press esc 1 for 
  75280. : F1, etc.
  75281.  
  75282. I'd be interested in such a use also, but can only see WYSE50 in beta 17
  75283. of MS-Kermit 3.14. Joe Doupnik runs Unixware, so he may have some more 
  75284. information about this.
  75285.  
  75286. -- 
  75287. Arthur Marsh, telephone +61-8-370-2365, fax +61-8-370-2133, +61-8-223-5082 
  75288.               arthur@gateway.dircsa.org.au, arthur@cswamp.apana.org.au
  75289. .endofsig
  75290.  
  75291. From news@columbia.edu Wed Jan 18 05:13:12 1995
  75292. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20262
  75293.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 18 Jan 1995 11:52:35 -0500
  75294. Received: by apakabar.cc.columbia.edu id AA08031
  75295.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 18 Jan 1995 11:52:27 -0500
  75296. Path: news.columbia.edu!sol.ctr.columbia.edu!news.cs.columbia.edu!news.pipeline.com!news.intercon.com!udel!news.mathworks.com!news.alpha.net!uwm.edu!msunews!harbinger.cc.monash.edu.au!bunyip.cc.uq.oz.au!munnari.oz.au!yoyo.aarnet.edu.au!goliath.camtech.com.au!gateway.dircsa.org.au!gateway.dircsa.org.au!not-for-mail
  75297. From: arthur@gateway.dircsa.org.au (Arthur Marsh)
  75298. Newsgroups: comp.protocols.kermit.misc
  75299. Subject: Re: RESET MODEM HELP !!!
  75300. Date: 18 Jan 1995 15:43:12 +1030
  75301. Organization: DIRCSA - Disability Information and Resource Centre
  75302. Lines: 52
  75303. Message-Id: <3fi818$bei@gateway.dircsa.org.au>
  75304. References: <3f3n2f$olt@newsgate.dircon.co.uk>
  75305. Nntp-Posting-Host: gateway.dircsa.org.au
  75306. X-Newsreader: TIN [version 1.1 PL8]
  75307. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  75308.  
  75309. Spencer Clay (edge@dircon.co.uk) wrote:
  75310. : Please can anyone help us to reset a modem,
  75311. : By using a batch file for DOS,(possibly Kermit).
  75312. : We know the AT commands to manually do this using Kermit,
  75313. : they are:
  75314. : AT&F8
  75315. : AT&f0
  75316. : AT&w0
  75317. : ATZ
  75318. : But we want to be able to send these commands directly
  75319. : to our modem with a one liner.i.e from the Dos Command Line.
  75320. : Please help us we are stupid!!!!!!!!
  75321.  
  75322. I use the command:
  75323.  
  75324. kermit take atz.tak
  75325.  
  75326. MSKERMIT.INI:
  75327.  
  75328. set flow rts/cts
  75329. set block 3
  75330. set window 3
  75331. set send pack 4000
  75332. set receive pack 4000
  75333. set port 2
  75334. take vt300.ini
  75335. set term wrap on
  75336.  
  75337. ATZ.TAK:
  75338.  
  75339. set port 2
  75340. def \%a 0
  75341. :try
  75342. increment \%a
  75343. if > \%a 10 goto end
  75344. echo modem initialisation attempt \%a\13\10
  75345. output ATZ\13
  75346. input 4 OK
  75347. if success goto end
  75348. if > \%a 2 log session c:\ff\call.log
  75349. write session \v(date) \v(time) ATZ \%a FAILED\13\10
  75350. goto try
  75351. :end
  75352. quit
  75353.  
  75354. This is for "fixing" stubborn modems.
  75355.  
  75356. Does anyone do this kind of thing for modems on Unix machines?
  75357. -- 
  75358. Arthur Marsh, telephone +61-8-370-2365, fax +61-8-370-2133, +61-8-223-5082 
  75359.               arthur@gateway.dircsa.org.au, arthur@cswamp.apana.org.au
  75360. .endofsig
  75361.  
  75362. From news@columbia.edu Tue Jan 17 17:17:01 1995
  75363. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22536
  75364.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 18 Jan 1995 12:17:21 -0500
  75365. Received: by apakabar.cc.columbia.edu id AA10483
  75366.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 18 Jan 1995 12:17:20 -0500
  75367. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!swiss.ans.net!singapura.singnet.com.sg!merlion.singnet.com.sg!raffles.technet.sg!einstein.technet.sg!kheesoon
  75368. From: kheesoon@technet.sg (Ng Khee Soon)
  75369. Newsgroups: comp.protocols.kermit.misc
  75370. Subject: Help on Kermit
  75371. Date: 17 Jan 1995 17:17:01 GMT
  75372. Organization: Technet, Singapore
  75373. Lines: 1
  75374. Message-Id: <3fgu2d$iud@raffles.technet.sg>
  75375. Nntp-Posting-Host: einstein.technet.sg
  75376. X-Newsreader: TIN [version 1.2 PL2]
  75377. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  75378.  
  75379.  
  75380.  
  75381. From news@columbia.edu Wed Jan 18 16:47:19 1995
  75382. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29525
  75383.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 18 Jan 1995 13:33:33 -0500
  75384. Received: by apakabar.cc.columbia.edu id AA17537
  75385.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 18 Jan 1995 13:33:25 -0500
  75386. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!concert!lester.appstate.edu!usenet
  75387. From: JW2998@CONRAD.APPSTATE.EDU (Watson, John McClain          )
  75388. Newsgroups: comp.protocols.kermit.misc
  75389. Subject: Desperate Help Needed!
  75390. Date: 18 Jan 1995 16:47:19 GMT
  75391. Organization: APPALACHIAN STATE UNIVERSITY
  75392. Lines: 18
  75393. Distribution: world
  75394. Message-Id: <3fjgmn$6im@lester.appstate.edu>
  75395. Nntp-Posting-Host: mm.appstate.edu
  75396. X-News-Reader: VMS NEWS v1.25
  75397. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  75398.  
  75399.     Hello everyone.  I have nothing against Kermit, but it's just too
  75400. darn slow.  I have been told that I can use a program called sz.exe and use
  75401. zmodem from my vms account.  I have gotten this program but as have yet
  75402. been unable to get it to work.  Does anyone know of any instructions that I
  75403. can use with this particular program or prehaps a differrent utility that I
  75404. can use to make my dl's a little bit faster and more productive.  
  75405.     I have a 14.4 now but will soon be recieving a PPI 28.8 v.34 in the
  75406. mail (they are back-ordered now).  IS there anything that I can do that
  75407. will enable me to take full advantage of this increased speed?  BTW, I dial
  75408. in to a VAX and we do have a 28.8 modem pool.
  75409.  
  75410. Thanks a million!
  75411.  
  75412. McClain Watson
  75413. JW2998@conrad.appstate.edu
  75414. Appalachian State University
  75415. Boone, N.C. 28608
  75416.  
  75417.  
  75418. From news@columbia.edu Wed Jan 18 14:02:24 1995
  75419. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28296
  75420.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 18 Jan 1995 17:56:01 -0500
  75421. Received: by apakabar.cc.columbia.edu id AA11869
  75422.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 18 Jan 1995 17:55:59 -0500
  75423. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!gatech!udel!news.mathworks.com!uunet!zib-berlin.de!gs.dfn.de!zeus.rbi.informatik.uni-frankfurt.de!terra.wiwi.uni-frankfurt.de!news.th-darmstadt.de!News.Uni-Marburg.DE!news.belwue.de!news.uni-freiburg.de!sun2.ruf.uni-freiburg.de!kraeutle
  75424. From: kraeutle@sun2.ruf.uni-freiburg.de (Rainer Kraeutle)
  75425. Newsgroups: comp.protocols.kermit.misc
  75426. Subject: modem-modem connection
  75427. Date: 18 Jan 1995 14:02:24 GMT
  75428. Organization: Rechenzentrum der Universitaet Freiburg, Germany
  75429. Lines: 13
  75430. Message-Id: <3fj71g$m02@sun2.ruf.uni-freiburg.de>
  75431. Nntp-Posting-Host: sun2.ruf.uni-freiburg.de
  75432. X-Newsreader: TIN [version 1.2 PL2]
  75433. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  75434.  
  75435. Hi to All
  75436.  
  75437. I would like to know if there is any possibility to
  75438. connect two modems via phone line using kermit
  75439. protocoll.
  75440. I have no problems to connect to a unix host
  75441. but how can i manage file transfer to another pc
  75442.  
  75443. thanks in advance
  75444.  
  75445. --
  75446. Rainer Kraeutle,0761/203-(3056/3064) <kraeutle@psychologie.uni-freiburg.de>
  75447.  
  75448.  
  75449. From news@columbia.edu Thu Jan 19 00:12:12 1995
  75450. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15883
  75451.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 18 Jan 1995 21:39:15 -0500
  75452. Received: by apakabar.cc.columbia.edu id AA28797
  75453.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 18 Jan 1995 21:39:08 -0500
  75454. Newsgroups: comp.protocols.kermit.misc
  75455. Path: news.columbia.edu!sol.ctr.columbia.edu!news.ess.harris.com!jabba.ess.harris.com!darwin.sura.net!dcc.uchile.cl!anaraven
  75456. From: anaraven@dcc.uchile.cl (Andres Aravena)
  75457. Subject: problems in Solaris 2.3
  75458. Message-Id: <D2MLwC.21D@dcc.uchile.cl>
  75459. Sender: usenet@dcc.uchile.cl (News)
  75460. Organization: Universidad de Chile, Depto. de Ciencias de la Computacion
  75461. X-Newsreader: TIN [version 1.2 PL2]
  75462. Date: Thu, 19 Jan 1995 00:12:12 GMT
  75463. Lines: 12
  75464. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  75465.  
  75466. Hi
  75467.  
  75468. We have some problems with C-kermit 5.0 under solaris 2.3. After
  75469. choosing between -DSYSV and -DSUN it compiled, but only get
  75470. 'Operation would block' at any read or write.
  75471.  
  75472. Did someone have success with it?
  75473. thank you
  75474.  
  75475. --
  75476. Andres Aravena D.                 home:   andres@aravena.mic.cl
  75477.                                   Univ:      anaraven@dcc.uchile.cl
  75478.  
  75479. From news@columbia.edu Wed Jan 18 23:18:25 1995
  75480. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21101
  75481.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 18 Jan 1995 22:54:09 -0500
  75482. Received: by apakabar.cc.columbia.edu id AA04209
  75483.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 18 Jan 1995 22:54:08 -0500
  75484. Path: news.columbia.edu!panix!news.mathworks.com!usenet.eel.ufl.edu!usenet.fiu.edu!isis.fiu.edu!nomadd.fiu.edu!sul
  75485. From: sul@nomadd.fiu.edu (Sulaiman Paperwalla)
  75486. Newsgroups: comp.protocols.kermit.misc
  75487. Subject: Possible Problem in 3.14
  75488. Date: 18 Jan 1995 23:18:25 GMT
  75489. Organization: Florida International University
  75490. Lines: 6
  75491. Message-Id: <3fk7k2$q0a@newshost.fiu.edu>
  75492. Nntp-Posting-Host: nomadd.fiu.edu
  75493. X-Newsreader: TIN [version 1.2 PL2]
  75494. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  75495.  
  75496. Just got 3.14 and found out the the screen does not stop scrolling
  75497. when used with --more-- after 24 lines. (I'm using vt320).
  75498.  
  75499. Problem was not there in 3.14 Beta 17.
  75500.  
  75501. Has any one else encounter this?
  75502.  
  75503. From news@columbia.edu Wed Jan 18 15:02:20 1995
  75504. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17547
  75505.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 19 Jan 1995 04:55:37 -0500
  75506. Received: by apakabar.cc.columbia.edu id AA21020
  75507.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 19 Jan 1995 04:55:35 -0500
  75508. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  75509. From: jrd@cc.usu.edu (Joe Doupnik)
  75510. Newsgroups: comp.protocols.kermit.misc
  75511. Subject: Re: Possible Problem in 3.14
  75512. Message-Id: <1995Jan18.210220.38361@cc.usu.edu>
  75513. Date: 18 Jan 95 21:02:20 MDT
  75514. References: <3fk7k2$q0a@newshost.fiu.edu>
  75515. Organization: Utah State University
  75516. Lines: 12
  75517. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  75518.  
  75519. In article <3fk7k2$q0a@newshost.fiu.edu>, sul@nomadd.fiu.edu (Sulaiman Paperwalla) writes:
  75520. > Just got 3.14 and found out the the screen does not stop scrolling
  75521. > when used with --more-- after 24 lines. (I'm using vt320).
  75522. > Problem was not there in 3.14 Beta 17.
  75523. > Has any one else encounter this?
  75524. ------------
  75525.     We don't have enough information from you to begin an analysis,
  75526. but I can say that MSK 3.14 works fine to my UnixWare machine. Please
  75527. check the kind of terminal the host thinks it is talking to.
  75528.     Joe D.
  75529.  
  75530. From news@columbia.edu Thu Jan 19 09:01:30 1995
  75531. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20450
  75532.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 19 Jan 1995 05:45:27 -0500
  75533. Received: by apakabar.cc.columbia.edu id AA22331
  75534.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 19 Jan 1995 05:45:26 -0500
  75535. Path: news.columbia.edu!panix!news.mathworks.com!news.alpha.net!uwm.edu!vixen.cso.uiuc.edu!howland.reston.ans.net!ix.netcom.com!netcom.com!csus.edu!nic-nac.CSU.net!cello.gina.calstate.edu!cello.gina.calstate.edu!not-for-mail
  75536. From: jpowell@cello.gina.calstate.edu (Larry Powell)
  75537. Newsgroups: comp.protocols.kermit.misc
  75538. Subject: tcpip machine name
  75539. Date: 19 Jan 1995 01:01:30 -0800
  75540. Organization: GINA and CORE+ Services of The California State University
  75541. Lines: 11
  75542. Message-Id: <3fl9pa$quj@cello.gina.calstate.edu>
  75543. Nntp-Posting-Host: cello.gina.calstate.edu
  75544. X-Newsreader: TIN [version 1.2 PL2]
  75545. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  75546.  
  75547.   Is there a way in MSkermit to set a machine's full name? I know there
  75548. is the command to SET TCP/IP DOMAIN <domain-name>   but I thought this
  75549. was not for the full name. Essentially is it possible to set the full
  75550. name to match the <Ip-address> set by SET TCP/IP ADDRESS <Ip-address>?
  75551.   Or is this done somewhere else (like in the nameserver(s)? (Outside
  75552. of kermit's control)
  75553.   Thanks,
  75554.  
  75555. --
  75556. --Larry Powell   jpowell@cello.gina.calstate.edu
  75557.  
  75558.  
  75559. From news@columbia.edu Thu Jan 19 05:54:05 1995
  75560. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01782
  75561.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 19 Jan 1995 06:43:24 -0500
  75562. Received: by apakabar.cc.columbia.edu id AA23708
  75563.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 19 Jan 1995 06:43:23 -0500
  75564. Path: news.columbia.edu!panix!news.mathworks.com!news.alpha.net!uwm.edu!daffy!uwvax!homer.cs.wisc.edu!finton
  75565. From: finton@homer.cs.wisc.edu (David Finton)
  75566. Newsgroups: comp.protocols.kermit.misc
  75567. Subject: "Can't read character: I/O error"
  75568. Date: 19 Jan 1995 05:54:05 GMT
  75569. Organization: University of WI, Madison -- Computer Sciences Dept.
  75570. Lines: 52
  75571. Message-Id: <3fkupt$3t6@spool.cs.wisc.edu>
  75572. Nntp-Posting-Host: homer.cs.wisc.edu
  75573. X-Newsreader: NN version 6.5.0 #3 (NOV)
  75574. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  75575.  
  75576. I've built Kermit5a188 on my NeXTstation.  It seems to work okay,
  75577. but it seems to drop the connection often, after giving me the 
  75578. message
  75579.  
  75580. Can't read character: I/O error
  75581.                                Communications disconnect (Back at localhost)
  75582. C-Kermit>
  75583.  
  75584. What is the cause of this error?  Do I have some parameters set
  75585. wrong?  I've set flow to none, but was told that I should do this
  75586. because the NeXT does flow control with the port drivers, as long
  75587. as I'm using /dev/cufa, have flow control enabled on the modem, and
  75588. am using the NeXT modem cable (which I am).
  75589.  
  75590. What's wrong?  In case it's helpful, I'll include my settings below.
  75591. Thanks!
  75592.  
  75593. --David Finton
  75594.  
  75595. ------------------------
  75596.  
  75597.  
  75598. (Back at localhost)
  75599. C-Kermit>show
  75600.  
  75601. C-Kermit 5A(188), 23 Nov 92, NeXT
  75602. Communications Parameters:
  75603.  Line: /dev/cufa, speed: 38400, mode: local, modem: hayes
  75604.  Terminal bits: 7, parity: none, duplex: full, flow: none, handshake: none
  75605.  Carrier: auto, lockfile: /usr/spool/uucp/LCK/LCK..cufa
  75606.  Escape character: 29 (^])
  75607.  
  75608. Protocol Parameters:   Send    Receive
  75609.  Timeout (used= 7):      7       10        Server Timeout:   0
  75610.  Padding:                0        0        Block Check:      1
  75611.  Pad Character:          0        0        Delay:            5
  75612.  Packet Start:           1        1        Max Retries:     10
  75613.  Packet End:            13       13
  75614.  Packet Length:         90       90     
  75615.  Maximum Length:      9024     9024        Window Size:      1 set, 0 used
  75616.  Buffer Size:         9065     9065        Locking-Shift:    enabled, not used
  75617.  
  75618. File parameters:        Attributes:       on
  75619.  Names:   converted     Debugging Log:    none
  75620.  Type:    text          Packet Log:       none  Longest filename: 255
  75621.  Collide: backup        Session Log:      none  Longest pathname: 1024
  75622.  Display: serial        Transaction Log:  none
  75623.  File Character-Set: NeXT Multinational (8-bit)
  75624.  Transfer Character-Set: Transparent
  75625. File Byte Size: 8, Incomplete Files: discard, Init file: .kermrc
  75626. C-Kermit>
  75627.  
  75628.  
  75629. From news@columbia.edu Thu Jan 19 14:12:13 1995
  75630. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04606
  75631.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 19 Jan 1995 09:12:22 -0500
  75632. Received: by apakabar.cc.columbia.edu id AA12692
  75633.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 19 Jan 1995 09:12:19 -0500
  75634. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  75635. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  75636. Newsgroups: comp.protocols.kermit.misc
  75637. Subject: Re: modem-modem connection
  75638. Date: 19 Jan 1995 14:12:13 GMT
  75639. Organization: Columbia University
  75640. Lines: 64
  75641. Message-Id: <3flrvt$cce@apakabar.cc.columbia.edu>
  75642. References: <3fj71g$m02@sun2.ruf.uni-freiburg.de>
  75643. Nntp-Posting-Host: watsun.cc.columbia.edu
  75644. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  75645.  
  75646. In article <3fj71g$m02@sun2.ruf.uni-freiburg.de>,
  75647. Rainer Kraeutle <kraeutle@sun2.ruf.uni-freiburg.de> wrote:
  75648. >I would like to know if there is any possibility to
  75649. >connect two modems via phone line using kermit
  75650. >protocoll.
  75651. >
  75652. This is the subject of Chapter 11 of the manual, "Using
  75653. MS-DOS Kermit" (also available in German).  Very briefly:
  75654. One PC must make the call, the other must receive it.
  75655. The receiving PC's modem must be placed into "answer mode".
  75656. A Kermit program should be started on the receiving PC and
  75657. placed in server mode.
  75658.  
  75659. For additional details, please read chapters 10 and 11 of
  75660. the manual.
  75661.  
  75662.   Christine M. Gianone, "Using MS-DOS Kermit", Second Edition, Digital Press /
  75663.   Butterworth-Heinemann, Woburn, MA, 1992, 345 pages, ISBN 1-55558-082-3.
  75664.   Packaged with version 3.13 of MS-DOS Kermit for the IBM PC, PS/2, and
  75665.   compatibles on a 3.5-inch diskette.
  75666.  
  75667.   US single-copy price: $36.95; quantity discounts available.  Available in
  75668.   computer bookstores or directly from:
  75669.  
  75670.     Kermit Development and Distribution
  75671.     Columbia University Academic Information Systems
  75672.     612 West 115th Street
  75673.     New York, NY  10025  USA
  75674.     Telephone: (USA) 212 854-3703
  75675.  
  75676.   Domestic and overseas orders accepted.  Price: $36.95 (US, Canada, and
  75677.   Mexico), $47 elsewhere.  Orders may be paid by MasterCard or Visa, or
  75678.   prepaid by check in US dollars.  Add $35 bank fee for checks not drawn on a
  75679.   US bank.  Price includes shipping.  Do not include sales tax.
  75680.  
  75681.   You can also order by phone from the publisher, Digital Press /
  75682.   Butterworth-Heinemann, with MasterCard, Visa, or American Express:
  75683.  
  75684.     +1 800 366-2665 (Woburn, Massachusetts office for USA and Canada)
  75685.     +1 800 665-1148 (Logan Bros, Winnepeg, Manitoba office for Canada)
  75686.     +44 993 58521   (Rushden, England office for Europe)
  75687.     +61 2 372-5511  (Chatswood, NSW office for Australia & New Zealand)
  75688.     +65 220-3684    (Singapore office for Asia)
  75689.  
  75690.   A German-language edition is also available:
  75691.  
  75692.     Christine M. Gianone, "MS-DOS Kermit, das universelle
  75693.     Kommunikationsprogramm", Verlag Heinz Heise, Hannover, Germany (1991),
  75694.     414 pages.  Packaged with version 3.12 of MS-DOS Kermit for the IBM PC,
  75695.     PS/2, and compatibles on a 5.25-inch diskette, including German-language
  75696.     help files.  Deutsch von Gisbert W. Selke.  Price: DM 69,00.  ISBN
  75697.     3-88229-006-4.  Verlag Heinz Heise GmbH & Co. KG, Helstorfer Strasse 7,
  75698.     D-30625 Hannover.  Tel. +49 (05 11) 53 52-0, Fax. +49 (05 11) 53 53-1 29.
  75699.  
  75700.   And a French-language edition:
  75701.  
  75702.     Christine M. Gianone, "Kermit MS-DOS mode d'emploi", Heinz Schiefer & Cie.,
  75703.     Versailles (1993), 406 pages.  Packaged with version 3.11 of MS-DOS Kermit
  75704.     for the IBM PC, PS/2, and compatibles on a 5.25-inch diskette.  Adaption
  75705.     francaise: Jean Dutertre.  ISBN 2-901143-20-2.  Heinz Schiefer & Cie.,
  75706.     45 rue Henri de Regnier, F-78000 Versailles.  Tel. +33 39 53 95 26,
  75707.     Fax. +33 39 02 39 71.
  75708.  
  75709. - Frank
  75710.  
  75711. From news@columbia.edu Thu Jan 19 14:15:13 1995
  75712. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04874
  75713.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 19 Jan 1995 09:15:22 -0500
  75714. Received: by apakabar.cc.columbia.edu id AA12923
  75715.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 19 Jan 1995 09:15:20 -0500
  75716. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  75717. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  75718. Newsgroups: comp.protocols.kermit.misc
  75719. Subject: Re: Possible Problem in 3.14
  75720. Date: 19 Jan 1995 14:15:13 GMT
  75721. Organization: Columbia University
  75722. Lines: 13
  75723. Message-Id: <3fls5h$civ@apakabar.cc.columbia.edu>
  75724. References: <3fk7k2$q0a@newshost.fiu.edu>
  75725. Nntp-Posting-Host: watsun.cc.columbia.edu
  75726. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  75727.  
  75728. In article <3fk7k2$q0a@newshost.fiu.edu>,
  75729. Sulaiman Paperwalla <sul@nomadd.fiu.edu> wrote:
  75730. >Just got 3.14 and found out the the screen does not stop scrolling
  75731. >when used with --more-- after 24 lines. (I'm using vt320).
  75732. >
  75733. >Problem was not there in 3.14 Beta 17.
  75734. >
  75735. MS-DOS Kermit 3.14 (not Beta), released 12 January 1995 had a bug
  75736. in this area.  It was replaced yesterday, 18 January 1995, by a
  75737. version that contained a minor change to fix this bug.  I'll post
  75738. a more detailed announcement shortly.
  75739.  
  75740. - Frank
  75741.  
  75742. From news@columbia.edu Thu Jan 19 14:20:15 1995
  75743. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05260
  75744.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 19 Jan 1995 09:20:22 -0500
  75745. Received: by apakabar.cc.columbia.edu id AA13399
  75746.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 19 Jan 1995 09:20:20 -0500
  75747. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  75748. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  75749. Newsgroups: comp.protocols.kermit.misc
  75750. Subject: Re: problems in Solaris 2.3
  75751. Date: 19 Jan 1995 14:20:15 GMT
  75752. Organization: Columbia University
  75753. Lines: 23
  75754. Message-Id: <3flsev$d2g@apakabar.cc.columbia.edu>
  75755. References: <D2MLwC.21D@dcc.uchile.cl>
  75756. Nntp-Posting-Host: watsun.cc.columbia.edu
  75757. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  75758.  
  75759. In article <D2MLwC.21D@dcc.uchile.cl>,
  75760. Andres Aravena <anaraven@dcc.uchile.cl> wrote:
  75761. >We have some problems with C-kermit 5.0 under solaris 2.3. After
  75762. >choosing between -DSYSV and -DSUN it compiled, but only get
  75763. >'Operation would block' at any read or write.
  75764. >
  75765. Just follow the instructions.  There are specific makefile
  75766. entries for each machine / operating system / OS version
  75767. combination.  Just pick out the most appropriate of the
  75768. entries whose names start with "solaris":
  75769.  
  75770.   solaris2x    - Solaris 2.x, Sun compiler
  75771.   solaris2xg   - Solaris 2.x, GNU cc
  75772.   solaris2x25  - Solaris 2.x, Sun compiler and SunLink X.25
  75773.  
  75774. For additional details, read the instructions at the top of the
  75775. makefile, and in the file ckuins.doc (C-Kermit installation
  75776. instructions).
  75777.  
  75778. If you can't succeed in compiling the program, you can ftp a
  75779. precompiled Solaris 2.3 binary from kermit.columbia.edu.
  75780.  
  75781. - Frank
  75782.  
  75783. From news@columbia.edu Thu Jan 19 13:41:50 1995
  75784. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05626
  75785.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 19 Jan 1995 09:24:38 -0500
  75786. Received: by apakabar.cc.columbia.edu id AA13791
  75787.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 19 Jan 1995 09:24:36 -0500
  75788. Newsgroups: comp.protocols.kermit.misc
  75789. Path: news.columbia.edu!panix!news.mathworks.com!news.alpha.net!uwm.edu!vixen.cso.uiuc.edu!howland.reston.ans.net!ix.netcom.com!netcom.com!helios
  75790. From: helios@netcom.com (Thomas David Nichols)
  75791. Subject: Re: modem-modem connection
  75792. Message-Id: <heliosD2nnDr.CE6@netcom.com>
  75793. Organization: Heliotrope Quality Systems
  75794. X-Newsreader: TIN [version 1.2 PL1]
  75795. References: <3fj71g$m02@sun2.ruf.uni-freiburg.de>
  75796. Date: Thu, 19 Jan 1995 13:41:50 GMT
  75797. Lines: 13
  75798. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  75799.  
  75800. Rainer Kraeutle (kraeutle@sun2.ruf.uni-freiburg.de) wrote:
  75801. : I would like to know if there is any possibility to
  75802. : connect two modems via phone line using kermit
  75803. : protocoll.
  75804.  
  75805. There should be no problem so long as you can tell the called modem to 
  75806. answer, either automatically or manually.  The manual command is probably 
  75807. ATA.
  75808.  
  75809. (If someone has actually done this, please jump in!)
  75810.  
  75811. -- 
  75812. David Nichols  <helios@netcom.com>
  75813.  
  75814. From news@columbia.edu Thu Jan 19 14:36:12 1995
  75815. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06666
  75816.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 19 Jan 1995 09:36:16 -0500
  75817. Received: by apakabar.cc.columbia.edu id AA14690
  75818.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 19 Jan 1995 09:36:14 -0500
  75819. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  75820. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  75821. Newsgroups: comp.protocols.kermit.misc
  75822. Subject: Re: "Can't read character: I/O error"
  75823. Date: 19 Jan 1995 14:36:12 GMT
  75824. Organization: Columbia University
  75825. Lines: 55
  75826. Message-Id: <3fltcs$eb0@apakabar.cc.columbia.edu>
  75827. References: <3fkupt$3t6@spool.cs.wisc.edu>
  75828. Nntp-Posting-Host: watsun.cc.columbia.edu
  75829. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  75830.  
  75831. In article <3fkupt$3t6@spool.cs.wisc.edu>,
  75832. David Finton <finton@homer.cs.wisc.edu> wrote:
  75833. >I've built Kermit5a188 on my NeXTstation.  It seems to work okay,
  75834. >but it seems to drop the connection often, after giving me the 
  75835. >message
  75836. >
  75837. >Can't read character: I/O error
  75838. >                     Communications disconnect (Back at localhost)
  75839. >C-Kermit>
  75840. >
  75841. >What is the cause of this error?  Do I have some parameters set
  75842. >wrong?  I've set flow to none, but was told that I should do this
  75843. >because the NeXT does flow control with the port drivers, as long
  75844. >as I'm using /dev/cufa, have flow control enabled on the modem, and
  75845. >am using the NeXT modem cable (which I am).
  75846. >
  75847. The current version of C-Kermit is 5A(190), but that will not
  75848. necessarily affect this problem.  However, the release notes for
  75849. version 5A(190) contain more information and are organized better
  75850. than in previous releases.  In particular, the ckuker.bwr file
  75851. (C-Kermit, Unix version "beware" file) contains sections for each
  75852. platform.  Here are the pertinent excerpts from the section on the
  75853. NeXT:
  75854.  
  75855. (3.4) C-KERMIT AND NEXTSTEP
  75856.  
  75857. The SET CARRIER command has no effect on the NeXT -- this is a
  75858. limitation of the tty device drivers.
  75859.  
  75860. Hardware flow control on the NeXT is selected not by "set flow
  75861. rts/cts" in Kermit (since NeXTSTEP offers no API for this), but
  75862. rather, by using a specially-named driver for the serial device:
  75863. /dev/cufa instead /dev/cua; /dev/cufb instead of /dev/cub.  This is
  75864. available only on 68040-based NeXT models (the situation for Intel
  75865. NeXTSTEP implementations is unknown).
  75866.  
  75867. NeXT-built 68030 and 68040 models have different kinds of serial
  75868. interfaces; the 68030 has a Macintosh-like RS-422 interface, which
  75869. lacks RTS and CTS signals; the 68040 has an RS-423 (RS-232
  75870. compatible) interface, which supports the commonly-used modem
  75871. signals.  WARNING: the connectors look exactly the same, but the
  75872. pins are used in completely DIFFERENT ways -- different cables are
  75873. required for the two kinds of interfaces.
  75874.  
  75875.   IF YOU GET LOTS OF RETRANSMISSIONS during file transfer, even when
  75876.   using a /dev/cuf* device and the modem is correctly configured for
  75877.   RTS/CTS flow control, YOU PROBABLY HAVE THE WRONG KIND OF CABLE.
  75878.  
  75879. Does this help?
  75880.  
  75881. By the way, until it died recently, I had a NeXTstation on my desk,
  75882. so I can personally veryify that Kermit works fine on it with the
  75883. right kind of cable.
  75884.  
  75885. - Frank
  75886.  
  75887. From news@columbia.edu Thu Jan 19 14:48:28 1995
  75888. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07820
  75889.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 19 Jan 1995 09:48:50 -0500
  75890. Received: by apakabar.cc.columbia.edu id AA15725
  75891.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 19 Jan 1995 09:48:46 -0500
  75892. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  75893. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  75894. Newsgroups: comp.protocols.kermit.misc
  75895. Subject: Re: tcpip machine name
  75896. Date: 19 Jan 1995 14:48:28 GMT
  75897. Organization: Columbia University
  75898. Lines: 43
  75899. Message-Id: <3flu3s$fa6@apakabar.cc.columbia.edu>
  75900. References: <3fl9pa$quj@cello.gina.calstate.edu>
  75901. Nntp-Posting-Host: watsun.cc.columbia.edu
  75902. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  75903.  
  75904. In article <3fl9pa$quj@cello.gina.calstate.edu>,
  75905. Larry Powell <jpowell@cello.gina.calstate.edu> wrote:
  75906. >Is there a way in MSkermit to set a machine's full name? I know there
  75907. >is the command to SET TCP/IP DOMAIN <domain-name> but I thought this
  75908. >was not for the full name.  Essentially is it possible to set the full
  75909. >name to match the <Ip-address> set by SET TCP/IP ADDRESS <Ip-address>?
  75910. >
  75911. Yes.  You can use SET TCP/IP DOMAIN to set your PC's full name.
  75912. But the value of this setting is known only to Kermit itself, and it
  75913. is used for only one purpose: to turn "nicknames" into fully qualified
  75914. domain names (FQDN).  For example, if your network is called foo.bar.baz
  75915. and your PC is called oofa, then its FQDN is oofa.foo.bar.baz.
  75916.  
  75917. If you say "set port tcp blah", Kermit sends a query to your name server
  75918. for "blah".  If it doesn't get a satisfactory response, then it uses
  75919. your SET TCP DOMAIN value to try to make an FQDN.  Normally you would
  75920. have your TCP DOMAIN set to your network name rather than your PC's FQDN,
  75921. so Kermit would try:
  75922.  
  75923.   blah                  (no match)
  75924.   blah.foo.bar.baz      (works)
  75925.  
  75926. If you set your TCP DOMAIN to your PC's own FQDN, then Kermit tries:
  75927.  
  75928.   blah                  (no match)
  75929.   blah.oofa.foo.bar.baz (no match)
  75930.   blah.foo.bar.baz      (works)
  75931.  
  75932. Both ways work, but the second way takes a bit longer.
  75933.  
  75934. The best way to set your TCP/IP parameters is from an organizational
  75935. BOOTP server.  Then the only command that you (or anybody else) needs
  75936. for Kermit TCP/IP setup is SET TCP ADDRESS BOOTP.  The advantages of
  75937. this approach are so overwhelming that every site should read about
  75938. them and set up a centralized bootp database.  Maybe your site has one
  75939. already and you only need to be registered in it.
  75940.  
  75941. MS-DOS Kermit 3.13 and later support BOOTP at RFC 1395, which allows
  75942. the domain name to be downloaded to the PC from the BOOTP database.
  75943. The original BOOTP specification (and BOOTP servers and databases based
  75944. on it) did not include the domain name.
  75945.  
  75946. - Frank
  75947.  
  75948. From news@columbia.edu Thu Jan 19 10:54:23 1995
  75949. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13584
  75950.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 19 Jan 1995 10:54:23 -0500
  75951. Received: by apakabar.cc.columbia.edu id AA21045
  75952.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 19 Jan 1995 10:54:22 -0500
  75953. Path: news.columbia.edu!panix!news.mathworks.com!hookup!swrinde!howland.reston.ans.net!news.cac.psu.edu!news.pop.psu.edu!hudson.lm.com!fs7.ece.cmu.edu!news.radian.com.!radian.com!Tim_Helmstetter
  75954. From: Tim_Helmstetter@radian.com
  75955. Newsgroups: comp.protocols.kermit.misc
  75956. Subject: Multiple TCP/IP Sessions in MS-DOS KERMIT 3.13
  75957. Date: Thu, 19 Jan 1995 09:06:12
  75958. Organization: Radian Corporation, Austin, TX, USA
  75959. Lines: 20
  75960. Message-Id: <Tim_Helmstetter.9.2F1E7FF0@radian.com>
  75961. Nntp-Posting-Host: 129.160.17.246
  75962. X-Newsreader: Trumpet for Windows [Version 1.0 Rev Final Beta #8]
  75963. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  75964.  
  75965. I am using MS-DOS KERMIT 3.13 and have a script which connects two TCP/IP 
  75966. sessions. My problem is when I do the second SET PORT TCP command to connect 
  75967. the second session, a menu appears asking the user if they want to R - 
  75968. reconnect to current session, # - enter a specific session number, or N - 
  75969. connect a new session. I want to connect to a new session but I don't want the 
  75970. user to have to do anything. I have tried INPUT XX Choice>, OUTPUT N\13, but 
  75971. this doesn't work I have to physically hit the enter key on the keyboard. Is 
  75972. there a way I can turn this menu option off or am I doing something wrong in 
  75973. my OUTPUT command.
  75974.  
  75975.  
  75976. Thanks for yer help!
  75977.  
  75978.  
  75979.  |~~~~~\  /~~\  |~~~~~\ |~|  /~~\  |~\_|~|      Tim Helmstetter, Sys. Analyst
  75980.  |  ~  / / /\ \ | [<>] || | / /\ \ | \ \ |      Helmstetter_Tim@radian.com 
  75981.  |_|~|_\/_|~~|_\|_____/ |_|/_|~~|_\|_|\__|      Box 201088 Austin, TX 78720 
  75982.  C   O   R   P   O   R   A   T   I   O   N      All opinions are just that...
  75983.                                                         opinions!!!
  75984. --KAB26305.784571010/zippy.radian.com--
  75985.  
  75986. From news@columbia.edu Thu Jan 19 15:13:51 1995
  75987. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14021
  75988.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 19 Jan 1995 10:59:07 -0500
  75989. Received: by apakabar.cc.columbia.edu id AA21488
  75990.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 19 Jan 1995 10:59:05 -0500
  75991. Path: news.columbia.edu!panix!news.mathworks.com!hookup!swrinde!howland.reston.ans.net!vixen.cso.uiuc.edu!ux2.cso.uiuc.edu!shair
  75992. From: shair@uiuc.edu (Bob Shair)
  75993. Newsgroups: comp.protocols.kermit.misc
  75994. Subject: Can C-Kermit server answer the phone?
  75995. Date: 19 Jan 1995 15:13:51 GMT
  75996. Organization: University of Illinois at Urbana
  75997. Lines: 11
  75998. Message-Id: <3flvjf$msg@vixen.cso.uiuc.edu>
  75999. Nntp-Posting-Host: ux2.cso.uiuc.edu
  76000. Originator: shair@ux2.cso.uiuc.edu
  76001. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  76002.  
  76003. Can I use C-Kermit (OS2) to give me remote access to my PC via a
  76004. dial-up line?  I'm thinking of putting Kermit in server mode (as 
  76005. described in chapter 7 of Using C-Kermit) to give me remote access
  76006. from a laptop.  
  76007.  
  76008. There's a security issue here, too.
  76009. -- 
  76010.  
  76011. Bob Shair                          Open Systems Consultant
  76012. 1018 W. Springfield Avenue         shair@uiuc.edu
  76013. Champaign, IL 61821           217/356-2684
  76014.  
  76015. From news@columbia.edu Thu Jan 19 18:44:31 1995
  76016. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29312
  76017.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 19 Jan 1995 13:44:41 -0500
  76018. Received: by apakabar.cc.columbia.edu id AA06603
  76019.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 19 Jan 1995 13:44:38 -0500
  76020. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  76021. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  76022. Newsgroups: comp.protocols.kermit.announce,comp.protocols.kermit.misc
  76023. Subject: MS-DOS Kermit 3.14 Bug Fix and Replacement
  76024. Date: 19 Jan 1995 18:44:31 GMT
  76025. Organization: Columbia University
  76026. Lines: 42
  76027. Approved: fdc@columbia.edu
  76028. Message-Id: <3fmbuf$6e7@apakabar.cc.columbia.edu>
  76029. Nntp-Posting-Host: watsun.cc.columbia.edu
  76030. Xref: news.columbia.edu comp.protocols.kermit.announce:7 comp.protocols.kermit.misc:1652
  76031. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  76032.  
  76033.  
  76034. MS-DOS Kermit 3.14, as announced on January 12th, had a pair of bugs
  76035. that required a quick replacement.  Very briefly, the bugs were:
  76036.  
  76037.  1. Incorrect response to the cursor position report request escape
  76038.     sequence, such as the one issued by UNIX `eval resize`, or by
  76039.     the login procedure of VMS 6.x, or by recent releases of Pine,
  76040.     to determine the size of your physical screen.
  76041.  
  76042.  2. Memory corruption if the cursor was positioned off the physical
  76043.     screen.
  76044.  
  76045. Unfortunately, (2) was very likely to happen because of (1).  For
  76046. example, Pine might send the escape sequence from (1), Kermit might
  76047. mistakenly report that its screen had 231 lines, and then Pine would
  76048. try to write text to bottom of the screen, causing the memory corruption.
  76049. The memory corruption manifested itself in various ways: switching to
  76050. Tektronix mode, the disappearance of macro definitions, and/or the
  76051. inability to EXIT from Kermit.
  76052.  
  76053. These bugs are now fixed, thanks to the quick action of Joe Doupnik, and
  76054. a new replacement ZIP file is now available.  The Kermit program still
  76055. identifies itself as version 3.14, but the date is January 18, 1995,
  76056. rather than January 12, 1995.
  76057.  
  76058. The corrected version 3.14 is available via anonymous ftp from
  76059. kermit.columbia.edu as follows:
  76060.  
  76061.  DIRECTORY                    MODE     DESCRIPTION
  76062.  
  76063.   kermit/archives/msvibm.zip   binary   Distribution diskette ZIP file
  76064.   kermit/a/msvibmzip.boo       text     Ditto, BOO-encoded
  76065.   kermit/a/msvibmzip.uue       text     Ditto, uuencoded
  76066.  
  76067. The text-encoded ZIP files are also available on BITNET from KERMSRV@CUVMA
  76068. as MSVIBMZI.BOO and MSVIBMZI.UUE.
  76069.  
  76070. Please replace the January 12th version with the January 18th one.
  76071. Apologies for the inconvenience.  All further corrections will be issued
  76072. in the form of patches.
  76073.  
  76074. - Frank
  76075.  
  76076. From news@columbia.edu Thu Jan 19 19:16:52 1995
  76077. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03177
  76078.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 19 Jan 1995 14:27:07 -0500
  76079. Received: by apakabar.cc.columbia.edu id AA10723
  76080.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 19 Jan 1995 14:27:03 -0500
  76081. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  76082. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  76083. Newsgroups: comp.protocols.kermit.misc
  76084. Subject: Re: Can C-Kermit server answer the phone?
  76085. Date: 19 Jan 1995 19:16:52 GMT
  76086. Organization: Columbia University
  76087. Lines: 22
  76088. Message-Id: <3fmdr4$9ms@apakabar.cc.columbia.edu>
  76089. References: <3flvjf$msg@vixen.cso.uiuc.edu>
  76090. Nntp-Posting-Host: watsun.cc.columbia.edu
  76091. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  76092.  
  76093. In article <3flvjf$msg@vixen.cso.uiuc.edu>, Bob Shair <shair@uiuc.edu> wrote:
  76094. >Can I use C-Kermit (OS2) to give me remote access to my PC via a
  76095. >dial-up line?  I'm thinking of putting Kermit in server mode (as 
  76096. >described in chapter 7 of Using C-Kermit) to give me remote access
  76097. >from a laptop.  
  76098. >
  76099.  
  76100. Yes.  set port to  your modem and place it in auto answer mode.
  76101. Usually accomplished with ATS0=2\13.  Then just start the server.
  76102. it will wait for a connection.
  76103.  
  76104. >There's a security issue here, too.
  76105.  
  76106. There is no remote login capabilities at present.  However, you can limit
  76107. the ability to access directories other than the current and limit what
  76108. remote commands are enabled.  So the security breach is not too great.
  76109.  
  76110.  
  76111. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  76112. "C-Kermit: available on more platforms than any other communications software."
  76113. "Kermit FTP: sending files whenever and wherever they are needed."
  76114.   OS/2 version 5A(190): ftp://kermit.columbia.edu/kermit/archives/cko190.zip 
  76115.  
  76116. From news@columbia.edu Thu Jan 19 18:58:04 1995
  76117. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03178
  76118.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 19 Jan 1995 14:27:08 -0500
  76119. Received: by apakabar.cc.columbia.edu id AA10715
  76120.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 19 Jan 1995 14:27:03 -0500
  76121. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  76122. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  76123. Newsgroups: comp.protocols.kermit.misc
  76124. Subject: Re: Can C-Kermit server answer the phone?
  76125. Date: 19 Jan 1995 18:58:04 GMT
  76126. Organization: Columbia University
  76127. Lines: 20
  76128. Message-Id: <3fmcns$7oq@apakabar.cc.columbia.edu>
  76129. References: <3flvjf$msg@vixen.cso.uiuc.edu>
  76130. Nntp-Posting-Host: watsun.cc.columbia.edu
  76131. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  76132.  
  76133. In article <3flvjf$msg@vixen.cso.uiuc.edu>, Bob Shair <shair@uiuc.edu> wrote:
  76134. >Can I use C-Kermit (OS2) to give me remote access to my PC via a
  76135. >dial-up line?  I'm thinking of putting Kermit in server mode (as 
  76136. >described in chapter 7 of Using C-Kermit) to give me remote access
  76137. >from a laptop.  
  76138.  
  76139. Yes.  set port to  your modem and place it in auto answer mode.
  76140. Usually accomplished with ATS0=2\13.  Then just start the server.
  76141. it will wait for a connection.
  76142.  
  76143. >There's a security issue here, too.
  76144.  
  76145. There is no remote login capabilities at present.  However, you can limit 
  76146. the ability to access directories other than the current and limit what
  76147. remote commands are enabled.  So the security breach is not too great.
  76148.  
  76149. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  76150. "C-Kermit: available on more platforms than any other communications software."
  76151. "Kermit FTP: sending files whenever and wherever they are needed."
  76152.   OS/2 version 5A(190): ftp://kermit.columbia.edu/kermit/archives/cko190.zip 
  76153.  
  76154. From news@columbia.edu Thu Jan 19 16:00:06 1995
  76155. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24234
  76156.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 19 Jan 1995 17:31:46 -0500
  76157. Received: by apakabar.cc.columbia.edu id AA29446
  76158.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 19 Jan 1995 17:31:45 -0500
  76159. Newsgroups: comp.protocols.kermit.misc
  76160. Path: news.columbia.edu!panix!news.mathworks.com!news.alpha.net!uwm.edu!vixen.cso.uiuc.edu!howland.reston.ans.net!ix.netcom.com!netcom.com!wpfulmor
  76161. From: wpfulmor@netcom.com (william p fulmor)
  76162. Subject: Whoops-no RX!?!
  76163. Message-Id: <wpfulmorD2nts6.91L@netcom.com>
  76164. Organization: NETCOM On-line Communication Services (408 261-4700 guest)
  76165. X-Newsreader: TIN [version 1.2 PL1]
  76166. Date: Thu, 19 Jan 1995 16:00:06 GMT
  76167. Lines: 7
  76168. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  76169.  
  76170. I'm using 5A(190) to help test a 38k4 driver for the 3b1.  I sometimes 
  76171. get the subject message, with or without the line dropping.  It's not 
  76172. from the driver.  Is it from th' frog?  
  76173.  
  76174. Thank you.
  76175.  
  76176. Bill
  76177.  
  76178. From news@columbia.edu Thu Jan 19 16:30:14 1995
  76179. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27811
  76180.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 19 Jan 1995 18:08:27 -0500
  76181. Received: by apakabar.cc.columbia.edu id AA02601
  76182.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 19 Jan 1995 18:08:25 -0500
  76183. Path: news.columbia.edu!panix!news.mathworks.com!hookup!swrinde!howland.reston.ans.net!agate!library.ucla.edu!psgrain!charnel.ecst.csuchico.edu!xmission!xmission!not-for-mail
  76184. From: fozz@xmission.com (Fozziliny Moo)
  76185. Newsgroups: comp.protocols.kermit.misc
  76186. Subject: Re: Multiple TCP/IP Sessions in MS-DOS KERMIT 3.13
  76187. Date: 19 Jan 1995 09:30:14 -0700
  76188. Organization: XMission Public Access Internet (801 539 0900)
  76189. Lines: 31
  76190. Message-Id: <3fm42m$221@xmission.xmission.com>
  76191. References: <Tim_Helmstetter.9.2F1E7FF0@radian.com>
  76192. Nntp-Posting-Host: xmission
  76193. X-Newsreader: NN version 6.5.0 #2 (NOV)
  76194. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  76195.  
  76196. Tim_Helmstetter@radian.com writes:
  76197.  
  76198. >I am using MS-DOS KERMIT 3.13 and have a script which connects two TCP/IP 
  76199. >sessions. My problem is when I do the second SET PORT TCP command to connect 
  76200. >the second session, a menu appears asking the user if they want to R - 
  76201. >reconnect to current session, # - enter a specific session number, or N - 
  76202. >connect a new session. I want to connect to a new session but I don't want the 
  76203. >user to have to do anything. I have tried INPUT XX Choice>, OUTPUT N\13, but 
  76204. >this doesn't work I have to physically hit the enter key on the keyboard. Is 
  76205. >there a way I can turn this menu option off or am I doing something wrong in 
  76206. >my OUTPUT command.
  76207.  
  76208. I just learned how to to this this morning actually. I've been using MSK for
  76209. years and never really bothered to figure this goody out until now. Try:
  76210.  
  76211. SET PORT TCP/IP <host> NEW
  76212. CONNECT
  76213.  
  76214. This will automatically start a new Telnet session with the indicated 
  76215. host.
  76216.  
  76217. If you haven't gotten hold of v3.14 yet, do. The KERMIT.UPD file has a 
  76218. comprehensive explanation of these features and any others that have
  76219. been added in version 3.12, 3.13, and 3.14.
  76220.  
  76221. -Fozz
  76222.  
  76223. -- 
  76224. ----fozz@xmission.com---------In Real Life: Doran L. Barton-----------------
  76225. ``Praise to the man who has commuted with Jehovah.'' 
  76226.     -A common misconception in Christian theology.
  76227.  
  76228. From news@columbia.edu Fri Jan 20 00:09:51 1995
  76229. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03536
  76230.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 19 Jan 1995 19:09:56 -0500
  76231. Received: by apakabar.cc.columbia.edu id AA06628
  76232.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 19 Jan 1995 19:09:54 -0500
  76233. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  76234. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  76235. Newsgroups: comp.protocols.kermit.misc
  76236. Subject: Re: Whoops-no RX!?!
  76237. Date: 20 Jan 1995 00:09:51 GMT
  76238. Organization: Columbia University
  76239. Lines: 14
  76240. Message-Id: <3fmv0f$6f2@apakabar.cc.columbia.edu>
  76241. References: <wpfulmorD2nts6.91L@netcom.com>
  76242. Nntp-Posting-Host: watsun.cc.columbia.edu
  76243. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  76244.  
  76245. In article <wpfulmorD2nts6.91L@netcom.com>,
  76246. william p fulmor <wpfulmor@netcom.com> wrote:
  76247. >I'm using 5A(190) to help test a 38k4 driver for the 3b1.  I sometimes 
  76248. >get the subject message, with or without the line dropping.  It's not 
  76249. >from the driver.  Is it from th' frog?  
  76250. >
  76251. It is not from the C-Kermit source code (grep -i Whoops ck[cu]*.[ch]).
  76252. Maybe it's from some library that it is linked to on the 3b1.  Try:
  76253.  
  76254.   strings kermit | grep Whoops
  76255.  
  76256. If this comes up empty, then it ain't from the Kermit executable.
  76257.  
  76258. - Frank
  76259.  
  76260. From news@columbia.edu Thu Jan 19 18:15:31 1995
  76261. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05247
  76262.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 19 Jan 1995 19:32:09 -0500
  76263. Received: by apakabar.cc.columbia.edu id AA08269
  76264.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 19 Jan 1995 19:32:07 -0500
  76265. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!pipex!sunic!news.funet.fi!news.csc.fi!kronos.fmi.fi!dionysos.fmi.fi!hurtta
  76266. From: hurtta@dionysos.fmi.fi (Kari E. Hurtta)
  76267. Newsgroups: comp.protocols.kermit.misc
  76268. Subject: Kermit 3.14 and resize
  76269. Date: 19 Jan 1995 18:15:31 GMT
  76270. Organization: Finnish Meteorological Institute (FMI)
  76271. Lines: 18
  76272. Message-Id: <3fma83$hl4@kronos.fmi.fi>
  76273. Nntp-Posting-Host: dionysos.fmi.fi
  76274. X-Newsreader: NN version 6.5(beta3).0 #6 (NOV)
  76275. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  76276.  
  76277. I just notized that resize reports incorrect size with kermit 3.14:
  76278.  
  76279. set noglob;
  76280. setenv COLUMNS '80';
  76281. setenv LINES '231';
  76282. unset noglob;
  76283.  
  76284. Resize reports correct size with kermit 3.10:
  76285.  
  76286. set noglob;
  76287. setenv COLUMNS '80';
  76288. setenv LINES '24';
  76289. unset noglob;
  76290.  
  76291. --
  76292. - Kari E. Hurtta                             /  Eldmd on monimutkaista
  76293.   Kari.Hurtta@Fmi.FI                 puh. (90) 1929 658
  76294.   {hurtta,root,Postmaster}@dionysos.fmi.fi
  76295.  
  76296. From news@columbia.edu Thu Jan 19 23:20:04 1995
  76297. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07758
  76298.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 19 Jan 1995 20:04:39 -0500
  76299. Received: by apakabar.cc.columbia.edu id AA10639
  76300.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 19 Jan 1995 20:04:37 -0500
  76301. Newsgroups: comp.protocols.kermit.misc
  76302. Path: news.columbia.edu!panix!news.mathworks.com!news.alpha.net!uwm.edu!uwvax!uchinews!gsbux1!cal
  76303. From: cal@gsbux1.uchicago.edu (Cal Lott)
  76304. Subject: COM3 available in 3.14?
  76305. Message-Id: <1995Jan19.232004.8689@midway.uchicago.edu>
  76306. Sender: news@bluebird.uchicago.edu (News System)
  76307. Organization: University of Chicago -- Academic Information Technologies
  76308. Date: Thu, 19 Jan 1995 23:20:04 GMT
  76309. Lines: 15
  76310. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  76311.  
  76312. Hi!
  76313.  
  76314.     I was simply wondering if version 3.14 (or any earlier) could
  76315. address COM3 and above. 
  76316.  
  76317.     If not, is this a planned feature addition?
  76318.  
  76319.                     Regards,
  76320.  
  76321.                     -Cal
  76322. --
  76323. ----------------------------------------------------------------------
  76324. "From all us Slackers to all you Boomers ... HAHAHAHAHAHA! WE HAVE
  76325. SATELLITE MOUNTED RAIL-GUNS! HEH HEH. Who's laughing now?"-- S. Lang
  76326. ----------------------------------------------------------------------
  76327.  
  76328. From news@columbia.edu Thu Jan 19 17:39:49 1995
  76329. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13295
  76330.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 19 Jan 1995 21:05:15 -0500
  76331. Received: by apakabar.cc.columbia.edu id AA15300
  76332.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 19 Jan 1995 21:05:13 -0500
  76333. Path: news.columbia.edu!panix!news.mathworks.com!news.duke.edu!godot.cc.duq.edu!hudson.lm.com!news.pop.psu.edu!psuvax1!news.ecn.bgu.edu!newspump.wustl.edu!crcnis3.unl.edu!unlinfo.unl.edu!awhite
  76334. From: awhite@unlinfo.unl.edu (anne white)
  76335. Newsgroups: comp.protocols.kermit.misc
  76336. Subject: MS-Kermit 3.14 Connect Problem
  76337. Date: 19 Jan 1995 17:39:49 GMT
  76338. Organization: University of Nebraska--Lincoln    
  76339. Lines: 35
  76340. Message-Id: <3fm855$hri@crcnis3.unl.edu>
  76341. Nntp-Posting-Host: unlinfo2.unl.edu
  76342. Summary: Connect Problem
  76343. X-Newsreader: TIN [version 1.2 PL2]
  76344. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  76345.  
  76346. MS-Kermit 3.14 Won't Work Properly
  76347.  
  76348. 1. I recently upgraded to MS-Kermit V3.14 from V3.13, which I have used
  76349.    for months.  Although my hardware and operating system remain the 
  76350.    same, I cannot complete a dial up successfully.  The computer I am 
  76351.    using is an IBM PS/2 77 running OS/2 2.1.  I am also connected to a 
  76352.    local area network, just as before. 
  76353.     
  76354. 2. I devised the following test script, just to get to the bare bones
  76355.    of the symptoms. 
  76356.    ; Test Script
  76357.    set modem hayes
  76358.    ; dial compuserve
  76359.    dial T94749005
  76360.     
  76361. 3. I take this script file from the MS-Kermit prompt and this is what I
  76362.    get: 
  76363.      3.1. Dialing ...
  76364.      3.2. Connect 9600
  76365.      3.3. and then nothing, until the connection times out.  I can do
  76366.           absolutely nothing.  The cursor is frozen, Control-Break and
  76367.           Control-C do not work, nothing.  There is no MS-Kermit
  76368.           prompt, nothing.  When the prompt does appear, if you enter
  76369.           another command, it is executed with glacial slowness.  I
  76370.           even tried "set terminal timeslice-release disable", to no
  76371.           effect.
  76372.  
  76373. 4. I have C-Kermit 5A(190), and it executes just fine.
  76374.     
  76375. 5. Puzzled, and frustrated, in Lincoln, Nebraska, USA.
  76376. --
  76377. Anne L. White     "Media Specialist/Teacher/Librarian by training"
  76378. 402-479-4316           "Resources Center Manager by choice"
  76379. 402-479-3989 (Fax)      ^ "Stupidity Is It's Own Reward!" ^
  76380. NDOR Communications Div. 1500 NE HWY 2 PO BOX 94759 Lincoln NE 68509
  76381.  
  76382. From news@columbia.edu Fri Jan 20 04:21:48 1995
  76383. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24059
  76384.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 19 Jan 1995 23:21:59 -0500
  76385. Received: by apakabar.cc.columbia.edu id AA26841
  76386.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 19 Jan 1995 23:21:55 -0500
  76387. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  76388. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  76389. Newsgroups: comp.protocols.kermit.misc
  76390. Subject: Re: MS-Kermit 3.14 Connect Problem
  76391. Date: 20 Jan 1995 04:21:48 GMT
  76392. Organization: Columbia University
  76393. Lines: 24
  76394. Message-Id: <3fndos$q6h@apakabar.cc.columbia.edu>
  76395. References: <3fm855$hri@crcnis3.unl.edu>
  76396. Nntp-Posting-Host: watsun.cc.columbia.edu
  76397. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  76398.  
  76399. In article <3fm855$hri@crcnis3.unl.edu>,
  76400. anne white <awhite@unlinfo.unl.edu> wrote:
  76401. >MS-Kermit 3.14 Won't Work Properly
  76402. >1. I recently upgraded to MS-Kermit V3.14 from V3.13, which I have used
  76403. >   for months.  Although my hardware and operating system remain the 
  76404. >   same, I cannot complete a dial up successfully.  The computer I am 
  76405. >   using is an IBM PS/2 77 running OS/2 2.1.  I am also connected to a 
  76406. >   local area network, just as before. 
  76407.  
  76408. I am glad to hear that you use C-Kermit.
  76409.  
  76410. However, when you do use MS-DOS Kermit under OS/2 I would suggest that
  76411. you also use Ray Gwinn's SIO replacement comm drivers.  Ray has implemented
  76412. the Fossil standard as a Virtual Driver in OS/2's DOS Sessions.  
  76413.  
  76414. By using the Fossil support in 3.14 with Ray's VX00.SYS and SIO.SYS drivers
  76415. you will get performance under OS/2 that is as close as you can possibly
  76416. get to just having MS-DOS Kermit sitting on top of the actual hardware.
  76417.  
  76418. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  76419. "C-Kermit: available on more platforms than any other communications software."
  76420. "Kermit FTP: sending files whenever and wherever they are needed."
  76421.   OS/2 version 5A(190): ftp://kermit.columbia.edu/kermit/archives/cko190.zip 
  76422.  
  76423. From news@columbia.edu Fri Jan 20 02:25:43 1995
  76424. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24325
  76425.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 19 Jan 1995 23:25:18 -0500
  76426. Received: by apakabar.cc.columbia.edu id AA27090
  76427.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 19 Jan 1995 23:25:16 -0500
  76428. Path: news.columbia.edu!sol.ctr.columbia.edu!spool.mu.edu!uwm.edu!vixen.cso.uiuc.edu!howland.reston.ans.net!swrinde!elroy.jpl.nasa.gov!decwrl!tribune.usask.ca!quartz.ucs.ualberta.ca!gpu2!kiwayama
  76429. From: kiwayama@gpu2.srv.ualberta.ca (Keiko Iwayama)
  76430. Newsgroups: comp.protocols.kermit.misc
  76431. Subject: Need help with Kermit D/L!
  76432. Date: 20 Jan 1995 02:25:43 GMT
  76433. Organization: University of Alberta
  76434. Lines: 5
  76435. Message-Id: <3fn6v7$1ffj@quartz.ucs.ualberta.ca>
  76436. Nntp-Posting-Host: gpu2.srv.ualberta.ca
  76437. X-Newsreader: TIN [version 1.2 PL2]
  76438. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  76439.  
  76440. My University's zmodem protcol doesn't seem to work at all for uploads, so
  76441. I was wondering if anyone knows how to make a Kermit upload "nearly" as
  76442. fast as zmodem.  Right now, I can get zmodem to download .zip files at
  76443. about 1400 cps, while good-old Kermit does it at 500 cps (U/L and D/L). 
  76444. Please email me any help, and thanks in advance. 
  76445.  
  76446. From news@columbia.edu Fri Jan 20 08:13:12 1995
  76447. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13399
  76448.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 20 Jan 1995 03:35:33 -0500
  76449. Received: by apakabar.cc.columbia.edu id AA01346
  76450.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 20 Jan 1995 03:35:31 -0500
  76451. Path: news.columbia.edu!panix!news.mathworks.com!uhog.mit.edu!nntp.club.cc.cmu.edu!cantaloupe.srv.cs.cmu.edu!das-news2.harvard.edu!fas-news.harvard.edu!newspump.wustl.edu!bigfoot.wustl.edu!news.ecl.wustl.edu!jxh
  76452. From: jxh@pride.cs.wustl.edu (James C. Hu)
  76453. Newsgroups: comp.protocols.kermit.misc
  76454. Subject: Re: Desperate Help Needed!
  76455. Date: 20 Jan 1995 08:13:12 GMT
  76456. Organization: Washington University, St. Louis, MO
  76457. Lines: 13
  76458. Distribution: world
  76459. Message-Id: <JXH.95Jan20021312@pride.cs.wustl.edu>
  76460. References: <3fjgmn$6im@lester.appstate.edu>
  76461. Nntp-Posting-Host: pride.cs.wustl.edu
  76462. In-Reply-To: JW2998@CONRAD.APPSTATE.EDU's message of 18 Jan 1995 16:47:19 GMT
  76463. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  76464.  
  76465. >>>>> "W" == Watson, John McClain <JW2998@CONRAD.APPSTATE.EDU> writes:
  76466.  
  76467.     W>     Hello everyone.  I have nothing against Kermit, but it's just
  76468.     W> too darn slow.
  76469.  
  76470. You have been mis-informed.  I get transfer rates of 1,600+ cps
  76471. on a regular basis with kermit with my 14.4 Kbps modem, and it
  76472. only required some minor tweaking on my part.  Look through the
  76473. help files for the section on control prefixes, and set your
  76474. packet sizes to be at least 1000.  These transfer rates are at
  76475. least as good as the rates zmodem will get you.
  76476.  
  76477. -- James
  76478.  
  76479. From news@columbia.edu Fri Jan 20 07:00:15 1995
  76480. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14432
  76481.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 20 Jan 1995 03:53:14 -0500
  76482. Received: by apakabar.cc.columbia.edu id AA01935
  76483.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 20 Jan 1995 03:53:13 -0500
  76484. Path: news.columbia.edu!sol.ctr.columbia.edu!xlink.net!howland.reston.ans.net!pipex!sunic!news.tele.fi!news.csc.fi!kronos.fmi.fi!dionysos.fmi.fi!hurtta
  76485. From: hurtta@dionysos.fmi.fi (Kari E. Hurtta)
  76486. Newsgroups: comp.protocols.kermit.misc
  76487. Subject: Re: Kermit 3.14 and resize
  76488. Date: 20 Jan 1995 07:00:15 GMT
  76489. Organization: Finnish Meteorological Institute (FMI)
  76490. Lines: 13
  76491. Message-Id: <3fnn1v$cls@kronos.fmi.fi>
  76492. References: <3fma83$hl4@kronos.fmi.fi>
  76493. Nntp-Posting-Host: dionysos.fmi.fi
  76494. Mime-Version: 1.0
  76495. Content-Type: text/plain; charset=iso-8859-1
  76496. Content-Transfer-Encoding: 8bit
  76497. In-Reply-To: Article <3fma83$hl4@kronos.fmi.fi> of "Kari E. Hurtta"
  76498. X-Newsreader: NN version 6.5(beta3).0 #6 (NOV)
  76499. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  76500.  
  76501. hurtta@dionysos.fmi.fi (Kari E. Hurtta) writes:
  76502.  
  76503. ;I just notized that resize reports incorrect size with kermit 3.14:
  76504. <...>
  76505. ;Resize reports correct size with kermit 3.10:
  76506. <...>
  76507.  
  76508. I forgot to say that these are MS-DOS Kermit 3.14 and 3.10.
  76509.  
  76510. --
  76511. - Kari E. Hurtta                             /  Eldmd on monimutkaista
  76512.   Kari.Hurtta@Fmi.FI                 puh. (90) 1929 658
  76513.   {hurtta,root,Postmaster}@dionysos.fmi.fi
  76514.  
  76515. From news@columbia.edu Fri Jan 20 10:16:43 1995
  76516. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00384
  76517.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 20 Jan 1995 08:02:08 -0500
  76518. Received: by apakabar.cc.columbia.edu id AA23799
  76519.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 20 Jan 1995 08:02:06 -0500
  76520. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!howland.reston.ans.net!news.sprintlink.net!pipex!uunet!zib-berlin.de!fauern!news.unibw-muenchen.de!p41bsmk
  76521. From: p41bsmk@kommsrv.rz.unibw-muenchen.de (Peter Schmolck)
  76522. Newsgroups: comp.protocols.kermit.misc
  76523. Subject: MS-Kermit 3.14: Trailing comments
  76524. Date: 20 Jan 1995 10:16:43 GMT
  76525. Organization: University of the Federal Armed Forces Munich
  76526. Lines: 35
  76527. Message-Id: <3fo2ib$c19@infosrv.rz.unibw-muenchen.de>
  76528. Nntp-Posting-Host: kommsrv.rz.unibw-muenchen.de
  76529. X-Newsreader: NN version 6.5.0 #5 (NOV)
  76530. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  76531.  
  76532. In kermit.bwr it is said:
  76533.    Commands in command files can be continued by including "-" as the last
  76534.    character on the line, but NOT if the line ends with a trailing
  76535.    comment.  In other words, you can't have a trailing comment on a
  76536.    continued line.
  76537. Well, I did not know this, and I had the following macro within my
  76538. mscustom.ini:
  76539.  
  76540. define kommsrv -
  76541.   dial rz1,-
  76542.   input 30 Benutzernummer:,-                       ; Warte auf die Ausgabe.
  76543.   output p41bsmk\44PASSWD\13,-                      ; Account,Passwort
  76544.   input 10 >,-                                     ; Warte auf Prompt.
  76545.   output c\44komm\13,-                               ; Rufe kommsrv.
  76546.   connect
  76547.  
  76548. This macro worked alright on my laptop at home until I upgraded from
  76549. kermite.exe 3.14 beta 14 to the final version. Then, parts of that macro
  76550. got displayed at the MS-Kermit prompt when loading mscustom.ini.
  76551.  
  76552. This "error" had not occurred when I first tested the new (final 3.14)
  76553. Kermit release on my office PC. Trying out this and that (on the office
  76554. PC, again), I noticed that minor variations in the macro let it either
  76555. work or not work.
  76556.  
  76557. Just wondering. And, of course, it would be nice to be able to comment
  76558. single commands in macro definitions. Any leads?
  76559.  
  76560.  
  76561.  
  76562. --
  76563. Peter Schmolck                                p41bsmk@rz.unibw-muenchen.de
  76564. Department of Education                       Phone :     +49-89-6004-2056
  76565. Univ. of the Federal Armed Forces Munich      Fax   :     +49-89-6004-3968
  76566. 85577 NEUBIBERG, GERMANY    
  76567.  
  76568. From news@columbia.edu Thu Jan 19 23:39:16 1995
  76569. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01012
  76570.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 20 Jan 1995 08:11:27 -0500
  76571. Received: by apakabar.cc.columbia.edu id AA24243
  76572.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 20 Jan 1995 08:11:25 -0500
  76573. Newsgroups: comp.os.vms,vmsnet.networks.desktop.pathworks,comp.protocols.kermit.misc,comp.sys.dec
  76574. Path: news.columbia.edu!panix!news.mathworks.com!news.alpha.net!uwm.edu!msunews!harbinger.cc.monash.edu.au!news.cs.su.oz.au!metro!alf.chem.su.oz.au!dave
  76575. From: dave@alf.chem.su.oz.au (David Kelly)
  76576. Subject: Pathworks Kermit Problem
  76577. Message-Id: <D2oF1I.B6G@ucc.su.OZ.AU>
  76578. Sender: news@ucc.su.oz.au
  76579. Nntp-Posting-Host: alf.chem.su.oz.au
  76580. Organization: Information Services, Sydney University, Sydney, NSW, Australia
  76581. X-Newsreader: TIN [version 1.2 PL2]
  76582. Date: Thu, 19 Jan 1995 23:39:16 GMT
  76583. Lines: 54
  76584. Xref: news.columbia.edu comp.os.vms:92982 vmsnet.networks.desktop.pathworks:13100 comp.protocols.kermit.misc:1666 comp.sys.dec:27570
  76585. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  76586.  
  76587.  
  76588. Hi Guys,
  76589.  
  76590. We're having a problem sending files from Pathworks kermit Windows VT320 
  76591. terminal emulator to VAX VMS 5.5-2 kermit server. 
  76592. Sending files from Vax to PC works fine.
  76593.  
  76594. The process we're using is :
  76595.  
  76596. We login to  VAX 7000 using Pathworks V5.0 Windows 3.1 VT320 terminal 
  76597. emulator version 5.0.093. We start kermit on VMS 5.5-2, kermit version
  76598. 3.3.118 and put it in server mode. We then select kermit send file menu
  76599. on terminal emulator, select a file and start send process.
  76600.  
  76601. The send process starts fine and seems to go smoothly with no retries
  76602. until suddenly it stops with the following VT320 emulator error message :
  76603.   COULD NOT GET KERMIT STATUS INFORMATION,
  76604.   (NOT RUNNING KERMIT IN SERVER MODE ON REMOTE HOST?) 
  76605. This doesn't result in a connection loss to the vax, but the kermit transfer
  76606. stops. For a given file it will fail at the same place every time, but
  76607. different amounts of data are transferred before failure for different files.
  76608. Some small files will transfer OK and some won't. If the file is bigger than
  76609. approx 30k it will almost certainly fail. Failure doesn't seem dependent
  76610. on file type.
  76611.  
  76612. We've tried changing between LAT & CTERM connection with no change and I've
  76613. tried changing kermit protocol retry limit to maximum (though no retrys are
  76614. indicated) and I've changed TIMEOUT setting to maximum, all with no effect.
  76615. This process is consistent across all PCs we have and we have the same problem
  76616. with different model VAX servers. There are other kermit protocol and packet
  76617. settings in the terminal emulator I could try changing which are :
  76618. Block check sum currently set to 1 other option is 2
  76619. Send delay for first packet, currently set to 0,maximum is 63 seconds. 
  76620. Start of packet currently CTL-A
  76621. Padding count, currently set to 0 maximum is 60
  76622. Padding character currently CTL-@
  76623. Endof line character currently CTL-M
  76624. Quote character currently #
  76625. Packet size currently 94 other choice is 80
  76626.  
  76627. I haven't tried changing these as I have no idea what effect they will have.
  76628.  
  76629. Kermit transfer both ways to Pathworks VT320 DOS emulator (sethost) works
  76630. fine.
  76631.  
  76632. This problem has been reported to DIGITAL with no resolve as yet.
  76633.  
  76634. Anyone have any ideas ?
  76635. Any help greatly appreciated, this is causing us serious problems and is
  76636. urgent.
  76637.  
  76638. David Kelly,
  76639. Systems Specialist
  76640. Environment Protection Authority. 
  76641.  
  76642. From news@columbia.edu Fri Jan 20 15:48:20 1995
  76643. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15470
  76644.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 20 Jan 1995 10:48:26 -0500
  76645. Received: by apakabar.cc.columbia.edu id AA06583
  76646.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 20 Jan 1995 10:48:23 -0500
  76647. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  76648. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  76649. Newsgroups: comp.protocols.kermit.misc
  76650. Subject: Re: COM3 available in 3.14?
  76651. Date: 20 Jan 1995 15:48:20 GMT
  76652. Organization: Columbia University
  76653. Lines: 19
  76654. Message-Id: <3fom04$6dj@apakabar.cc.columbia.edu>
  76655. References: <1995Jan19.232004.8689@midway.uchicago.edu>
  76656. Nntp-Posting-Host: watsun.cc.columbia.edu
  76657. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  76658.  
  76659. In article <1995Jan19.232004.8689@midway.uchicago.edu>,
  76660. Cal Lott <cal@gsbux1.uchicago.edu> wrote:
  76661. >I was simply wondering if version 3.14 (or any earlier) could
  76662. >address COM3 and above. 
  76663. >
  76664. A frequently asked question.  The short answer: Yes.
  76665.  
  76666. The medium answer: COM3 and above have no standard address or IRQ,
  76667. hence communications software (Kermit or anything else) can't always
  76668. find them, in which case you have to specify the address and IRQ,
  76669. using a sequence like:
  76670.  
  76671.   SET COM3 \x3e8 5
  76672.   SET PORT COM3
  76673.  
  76674. The long answer: Read section 6 of the KERMIT.BWR file on your MS-DOS
  76675. Kermit 3.14 diskette.
  76676.  
  76677. - Frank
  76678.  
  76679. From news@columbia.edu Fri Jan 20 15:54:36 1995
  76680. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16539
  76681.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 20 Jan 1995 10:54:58 -0500
  76682. Received: by apakabar.cc.columbia.edu id AA07073
  76683.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 20 Jan 1995 10:54:55 -0500
  76684. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  76685. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  76686. Newsgroups: comp.os.vms,vmsnet.networks.desktop.pathworks,comp.protocols.kermit.misc,comp.sys.dec
  76687. Subject: Re: Pathworks Kermit Problem
  76688. Date: 20 Jan 1995 15:54:36 GMT
  76689. Organization: Columbia University
  76690. Lines: 32
  76691. Message-Id: <3fombs$6sh@apakabar.cc.columbia.edu>
  76692. References: <D2oF1I.B6G@ucc.su.oz.au>
  76693. Nntp-Posting-Host: watsun.cc.columbia.edu
  76694. Xref: news.columbia.edu comp.os.vms:92995 vmsnet.networks.desktop.pathworks:13106 comp.protocols.kermit.misc:1668 comp.sys.dec:27576
  76695. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  76696.  
  76697. In article <D2oF1I.B6G@ucc.su.oz.au>,
  76698. David Kelly <dave@alf.chem.su.oz.au> wrote:
  76699. >We're having a problem sending files from Pathworks kermit Windows VT320 
  76700. >terminal emulator to VAX VMS 5.5-2 kermit server. 
  76701. >Sending files from Vax to PC works fine.
  76702. >
  76703. >We login to  VAX 7000 using Pathworks V5.0 Windows 3.1 VT320 terminal 
  76704. >emulator version 5.0.093. We start kermit on VMS 5.5-2, kermit version
  76705. >3.3.118 and put it in server mode. We then select kermit send file menu
  76706. >on terminal emulator, select a file and start send process.
  76707. >
  76708. Can't help with this; your PC software is a DEC product, so you'll have
  76709. to get help from DEC.
  76710.  
  76711. However, you are more than welcome to use real Kermit software,
  76712. MS-DOS Kermit 3.14, on your PC in place of the DEC software.  It supports
  76713. PATHWORKS connections too, as well as VT320 emulation and (of course)
  76714. Kermit transfers.  If you have trouble with it, we can help.
  76715.  
  76716. You are also encouraged to install C-Kermit 5A(190) on your VAX.
  76717. Kermit-32 is no longer supported.
  76718.  
  76719. To learn more about Columbia University's Kermit software, point your
  76720. Web browser at URL:
  76721.  
  76722.   http://www.columbia.edu/kermit/
  76723.  
  76724. Or use anonymous ftp to kermit.columbia.edu and follow the signs.
  76725.  
  76726. Direct further questions to kermit@columbia.edu.
  76727.  
  76728. - Frank
  76729.  
  76730. From news@columbia.edu Fri Jan 20 15:57:41 1995
  76731. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16912
  76732.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 20 Jan 1995 10:57:50 -0500
  76733. Received: by apakabar.cc.columbia.edu id AA07305
  76734.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 20 Jan 1995 10:57:47 -0500
  76735. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  76736. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  76737. Newsgroups: comp.protocols.kermit.misc
  76738. Subject: Re: Need help with Kermit D/L!
  76739. Date: 20 Jan 1995 15:57:41 GMT
  76740. Organization: Columbia University
  76741. Lines: 17
  76742. Message-Id: <3fomhl$742@apakabar.cc.columbia.edu>
  76743. References: <3fn6v7$1ffj@quartz.ucs.ualberta.ca>
  76744. Nntp-Posting-Host: watsun.cc.columbia.edu
  76745. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  76746.  
  76747. In article <3fn6v7$1ffj@quartz.ucs.ualberta.ca>,
  76748. Keiko Iwayama <kiwayama@gpu2.srv.ualberta.ca> wrote:
  76749. >My University's zmodem protcol doesn't seem to work at all for uploads, so
  76750. >I was wondering if anyone knows how to make a Kermit upload "nearly" as
  76751. >fast as zmodem.  Right now, I can get zmodem to download .zip files at
  76752. >about 1400 cps, while good-old Kermit does it at 500 cps (U/L and D/L). 
  76753. >
  76754. Kermit can go just as fast, often faster.  Please read the FAQ:
  76755.  
  76756.   anonymous ftp to kermit.columbia.edu
  76757.  
  76758.   text mode
  76759.  
  76760.   file kermit/FAQ.TXT
  76761.  
  76762. - Frank
  76763.  
  76764.  
  76765. From news@columbia.edu Fri Jan 20 15:01:46 1995
  76766. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17095
  76767.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 20 Jan 1995 10:59:36 -0500
  76768. Received: by apakabar.cc.columbia.edu id AA07557
  76769.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 20 Jan 1995 10:59:35 -0500
  76770. Path: news.columbia.edu!sol.ctr.columbia.edu!spool.mu.edu!olivea!charnel.ecst.csuchico.edu!xmission!xmission!not-for-mail
  76771. From: fozz@xmission.com (Fozziliny Moo)
  76772. Newsgroups: comp.protocols.kermit.misc
  76773. Subject: Re: COM3 available in 3.14?
  76774. Date: 20 Jan 1995 08:01:46 -0700
  76775. Organization: XMission Public Access Internet (801 539 0900)
  76776. Lines: 22
  76777. Message-Id: <3foj8q$fo7@xmission.xmission.com>
  76778. References: <1995Jan19.232004.8689@midway.uchicago.edu>
  76779. Nntp-Posting-Host: xmission
  76780. X-Newsreader: NN version 6.5.0 #2 (NOV)
  76781. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  76782.  
  76783. cal@gsbux1.uchicago.edu (Cal Lott) writes:
  76784.  
  76785. >Hi!
  76786.  
  76787. >    I was simply wondering if version 3.14 (or any earlier) could
  76788. >address COM3 and above. 
  76789.  
  76790. Yes. MS-DOS Kermit has had support for COM3 and COM4 for quite a while now.
  76791. If you have non-standard I/O addresses and/or IRQs for those ports you can
  76792. override the standard (if there really is one) settings with the MS-Kermit
  76793. command:
  76794.  
  76795. SET COM3 \x02f8 \4
  76796.  
  76797. This specifies that COM3 is IRQ 4 at 0x2f8.
  76798.  
  76799. -Fozz
  76800.  
  76801. -- 
  76802. ================fozz@xmission.com==http://xmission.com/~fozz/==================
  76803. ==     ``Today could be a dream of tomorrow that you had last night. ''      ==
  76804. ======================Doran L. Barton | Fozziliny G. Moo=======================
  76805.  
  76806. From news@columbia.edu Fri Jan 20 16:28:15 1995
  76807. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19747
  76808.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 20 Jan 1995 11:28:22 -0500
  76809. Received: by apakabar.cc.columbia.edu id AA10538
  76810.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 20 Jan 1995 11:28:20 -0500
  76811. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  76812. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  76813. Newsgroups: comp.protocols.kermit.misc
  76814. Subject: Re: Kermit 3.14 and resize
  76815. Date: 20 Jan 1995 16:28:15 GMT
  76816. Organization: Columbia University
  76817. Lines: 28
  76818. Message-Id: <3fooav$a95@apakabar.cc.columbia.edu>
  76819. References: <3fma83$hl4@kronos.fmi.fi>
  76820. Nntp-Posting-Host: watsun.cc.columbia.edu
  76821. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  76822.  
  76823. In article <3fma83$hl4@kronos.fmi.fi>,
  76824. Kari E. Hurtta <hurtta@dionysos.fmi.fi> wrote:
  76825. >I just notized that resize reports incorrect size with kermit 3.14:
  76826. >
  76827. >set noglob;
  76828. >setenv COLUMNS '80';
  76829. >setenv LINES '231';
  76830. >unset noglob;
  76831. >
  76832. As announced in yesterday's posting, this was indeed a serious bug
  76833. in MS-DOS Kermit 3.14 dated 12 January 1995.  That version has been
  76834. replaced by a new one dated 18 January 1995, which fixes this bug.
  76835.  
  76836.   Anonymous ftp to kermit.columbia.edu,
  76837.   directory kermit/archives,
  76838.   binary mode,
  76839.   file msvibm.zip.
  76840.  
  76841. If you had a previous version of MS-DOS Kermit, and you
  76842. want to install the new version over it, first make safe copies of
  76843. your MSCUSTOM.INI and DIALUPS.TXT files, as well as any other
  76844. file you might have modified.
  76845.  
  76846. Then unzip (with PKUNZIP or equivalent) using the "-d" switch to
  76847. preserve the directory structure.  Then read the top-level READ.ME
  76848. file for further instructions.
  76849.  
  76850. - Frank
  76851.  
  76852. From news@columbia.edu Fri Jan 20 16:39:12 1995
  76853. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22603
  76854.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 20 Jan 1995 11:58:17 -0500
  76855. Received: by apakabar.cc.columbia.edu id AA13446
  76856.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 20 Jan 1995 11:58:15 -0500
  76857. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  76858. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  76859. Newsgroups: comp.protocols.kermit.misc
  76860. Subject: Re: MS-Kermit 3.14: Trailing comments
  76861. Date: 20 Jan 1995 16:39:12 GMT
  76862. Organization: Columbia University
  76863. Lines: 35
  76864. Message-Id: <3foovg$b7a@apakabar.cc.columbia.edu>
  76865. References: <3fo2ib$c19@infosrv.rz.unibw-muenchen.de>
  76866. Nntp-Posting-Host: watsun.cc.columbia.edu
  76867. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  76868.  
  76869. In article <3fo2ib$c19@infosrv.rz.unibw-muenchen.de>,
  76870. Peter Schmolck <p41bsmk@kommsrv.rz.unibw-muenchen.de> wrote:
  76871. >In kermit.bwr it is said:
  76872. >   Commands in command files can be continued by including "-" as the last
  76873. >   character on the line, but NOT if the line ends with a trailing
  76874. >   comment.  In other words, you can't have a trailing comment on a
  76875. >   continued line.
  76876. >...
  76877. >Just wondering. And, of course, it would be nice to be able to comment
  76878. >single commands in macro definitions. Any leads?
  76879. >
  76880. The ability to put trailing comments on the ends of continued lines is
  76881. not documented or supported in MS-DOS Kermit 3.14.
  76882.  
  76883. As you have observed, experimentation shows that it might work sometimes,
  76884. but you should not depend on it.
  76885.  
  76886. And speaking of trailing comments, lest anyone be prompted by this
  76887. posting to ask again:
  76888.  
  76889. There was a change in v3.14 from previous versions, in which a semicolon
  76890. (;), must be followed by at least one space or tab -- or else be the
  76891. first character on a line -- to be recognized as a comment introducer.
  76892. This is to allow semicolons to be used within commands like:
  76893.  
  76894.   get dua0:[.temp]oofa.txt;3
  76895.  
  76896. or:
  76897.  
  76898.   output \27[?62;1;2;4;8;9;15c\13
  76899.  
  76900. without any quoting.  Previously the first semicolon in each of these
  76901. commands would have started a comment.
  76902.  
  76903. - Frank
  76904.  
  76905. From news@columbia.edu Fri Jan 20 17:12:33 1995
  76906. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24225
  76907.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 20 Jan 1995 12:12:39 -0500
  76908. Received: by apakabar.cc.columbia.edu id AA15065
  76909.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 20 Jan 1995 12:12:38 -0500
  76910. Path: news.columbia.edu!watsun.cc.columbia.edu!jrd
  76911. From: jrd@watsun.cc.columbia.edu (Joe R. Doupnik)
  76912. Newsgroups: comp.protocols.kermit.misc
  76913. Subject: Re: Multiple TCP/IP Sessions in MS-DOS KERMIT 3.13
  76914. Date: 20 Jan 1995 17:12:33 GMT
  76915. Organization: Columbia University
  76916. Lines: 24
  76917. Message-Id: <3foqu1$emf@apakabar.cc.columbia.edu>
  76918. References: <Tim_Helmstetter.9.2F1E7FF0@radian.com>
  76919. Nntp-Posting-Host: watsun.cc.columbia.edu
  76920. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  76921.  
  76922. In article <Tim_Helmstetter.9.2F1E7FF0@radian.com>,
  76923.  <Tim_Helmstetter@radian.com> wrote:
  76924. >I am using MS-DOS KERMIT 3.13 and have a script which connects two TCP/IP 
  76925. >sessions. My problem is when I do the second SET PORT TCP command to connect 
  76926. >the second session, a menu appears asking the user if they want to R - 
  76927. >reconnect to current session, # - enter a specific session number, or N - 
  76928. >connect a new session. I want to connect to a new session but I don't want the 
  76929. >user to have to do anything. I have tried INPUT XX Choice>, OUTPUT N\13, but 
  76930. >this doesn't work I have to physically hit the enter key on the keyboard. Is 
  76931. >there a way I can turn this menu option off or am I doing something wrong in 
  76932. >my OUTPUT command.
  76933. ---------------
  76934.     Please see the release docs again, as well as using "?" context
  76935. sensitive help in the SET PORT TCP command. This command accepts arguments
  76936. of  host <port> <N or R>   to start a New or Resume a current session.
  76937. SET PORT TCP also accepts a digit representing a session number (see SHOW
  76938. SESSION for a list of which are which).
  76939.     Joe D.
  76940.  
  76941.  
  76942.  
  76943.  
  76944.  
  76945.  
  76946.  
  76947. From news@columbia.edu Fri Jan 20 17:16:11 1995
  76948. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24680
  76949.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 20 Jan 1995 12:16:20 -0500
  76950. Received: by apakabar.cc.columbia.edu id AA15554
  76951.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 20 Jan 1995 12:16:17 -0500
  76952. Path: news.columbia.edu!watsun.cc.columbia.edu!jrd
  76953. From: jrd@watsun.cc.columbia.edu (Joe R. Doupnik)
  76954. Newsgroups: comp.protocols.kermit.misc
  76955. Subject: Re: COM3 available in 3.14?
  76956. Date: 20 Jan 1995 17:16:11 GMT
  76957. Organization: Columbia University
  76958. Lines: 15
  76959. Message-Id: <3for4r$f5r@apakabar.cc.columbia.edu>
  76960. References: <1995Jan19.232004.8689@midway.uchicago.edu>
  76961. Nntp-Posting-Host: watsun.cc.columbia.edu
  76962. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  76963.  
  76964. In article <1995Jan19.232004.8689@midway.uchicago.edu>,
  76965. Cal Lott <cal@gsbux1.uchicago.edu> wrote:
  76966. >Hi!
  76967. >
  76968. >    I was simply wondering if version 3.14 (or any earlier) could
  76969. >address COM3 and above. 
  76970. >
  76971. >    If not, is this a planned feature addition?
  76972. ----------
  76973.     May I recommend reading the user's manual and the release notes
  76974. for MS-DOS Kermit which will explain in detail the handling of COM3/4.
  76975. MSK has used all four COM ports for a great many years.
  76976.     Joe D.
  76977.  
  76978.  
  76979.  
  76980. From news@columbia.edu Fri Jan 20 23:39:12 1995
  76981. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12931
  76982.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 21 Jan 1995 19:50:29 -0500
  76983. Received: by apakabar.cc.columbia.edu id AA21222
  76984.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 21 Jan 1995 19:50:28 -0500
  76985. Path: news.columbia.edu!panix!news.mathworks.com!usenet.eel.ufl.edu!piaget.moe.ac.sg!raffles.technet.sg!news.np.ac.sg!93202707
  76986. From: 93202707@np.ac.sg (Loke Teng Yan)
  76987. Newsgroups: comp.protocols.kermit.misc
  76988. Subject: CKermit Transfers
  76989. Date: 20 Jan 1995 23:39:12 GMT
  76990. Organization: Ngee Ann Polytechnic, Singapore
  76991. Lines: 24
  76992. Message-Id: <3fphj0$tm@nova.np.ac.sg>
  76993. Nntp-Posting-Host: comet.np.ac.sg
  76994. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  76995.  
  76996.  
  76997. Hello,
  76998.  
  76999. I've just started using CKermit for OS/2, and have some stuff to ask about
  77000. it. 
  77001.  
  77002. For dialling, is there a command whereby I can see my phonebook entries? 
  77003. What is the command for making CKermit stay at 14400bps even if the line is
  77004. only 2400bps? What should I do to make the connection automated, that is,
  77005. when a connection is established, the "connect" command should be automated?
  77006. How do I set up the program to redial the number after a timeout?
  77007.  
  77008. For file transfers, I get a much better performance, compared to the MS-DOS
  77009. version that I used. The number of packets is about 999, and the cps rate
  77010. for binary files can go to 500+. Is it possible to further speed up the
  77011. transfer? What does the "Number of Windows" (or something like that) mean?
  77012.  
  77013. Thank you for answers and comments.
  77014.  
  77015. --
  77016. Teng Yan, Loke aka Cow      | Electronic & Computer Engineering Polytechnic
  77017. 93202707@np.ac.sg | yan%cyrus%linuxpub@csah.com | Singapore  |          
  77018. http://www-bprc.mps.ohio-state.edu/cgi-bin/hpp?yan_page.html |    void
  77019. ------------------------------------------------------------------------------
  77020.  
  77021. From news@columbia.edu Sun Jan 22 02:28:39 1995
  77022. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19597
  77023.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 21 Jan 1995 21:28:48 -0500
  77024. Received: by apakabar.cc.columbia.edu id AA27005
  77025.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 21 Jan 1995 21:28:45 -0500
  77026. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  77027. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  77028. Newsgroups: comp.protocols.kermit.misc
  77029. Subject: Re: CKermit Transfers
  77030. Date: 22 Jan 1995 02:28:39 GMT
  77031. Organization: Columbia University
  77032. Lines: 70
  77033. Message-Id: <3fsfsn$qbq@apakabar.cc.columbia.edu>
  77034. References: <3fphj0$tm@nova.np.ac.sg>
  77035. Nntp-Posting-Host: watsun.cc.columbia.edu
  77036. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  77037.  
  77038. In article <3fphj0$tm@nova.np.ac.sg>, Loke Teng Yan <93202707@np.ac.sg> wrote:
  77039. >I've just started using CKermit for OS/2, and have some stuff to ask about
  77040. >it. For dialling, is there a command whereby I can see my phonebook entries? 
  77041. >
  77042. Hmmm, I guess not, other than:
  77043.  
  77044.   type c:\ckermit\ckermit.kdd
  77045.  
  77046. or (more generally):
  77047.  
  77048.   type \m(_dialdir) ; This variable holds the name of the dialing directory.
  77049.  
  77050. You could add a macro definition for this to your CKERMOD.INI file,
  77051. something like:
  77052.  
  77053.   define numbers type \m(_dialdir)
  77054.  
  77055. or something fancier, e.g. to list all entries that match a particular
  77056. string.  But see below about the services directory.
  77057.  
  77058. >What is the command for making CKermit stay at 14400bps even if the line is
  77059. >only 2400bps?
  77060. >
  77061. SET DIAL SEPEED-MATCHING OFF.
  77062.  
  77063. >What should I do to make the connection automated, that is,
  77064. >when a connection is established, the "connect" command should be automated?
  77065. >
  77066. You can write script programs to do whatever you want.  Script programming
  77067. can't be explained in a short message - you should read the manual; three
  77068. chapters of it cover script programming.
  77069.  
  77070. >How do I set up the program to redial the number after a timeout?
  77071. >
  77072. There is a kind of "higher level" dialing directory, called the services
  77073. directory, that does this for you automatically.  The mechanics are explained
  77074. in complete detail in the manual, and from a user standpoint also in the
  77075. CKERMIT.INF file.
  77076.  
  77077. >For file transfers, I get a much better performance, compared to the MS-DOS
  77078. >version that I used. The number of packets is about 999, and the cps rate
  77079. >for binary files can go to 500+. Is it possible to further speed up the
  77080. >transfer? What does the "Number of Windows" (or something like that) mean?
  77081. >
  77082. Again, all explained in the manual.  About performance, you should also
  77083. look at the FAQ:
  77084.  
  77085.   ftp://kermit.columbia.edu/kermit/FAQ.txt
  77086.  
  77087. Manual:
  77088.  
  77089.   Frank da Cruz and Christine M. Gianone, "Using C-Kermit", Digital Press /
  77090.   Butterworth-Heinemann, Woburn, MA, 1993, 514 pages, ISBN 1-55558-108-0
  77091.  
  77092.   US single-copy price: $36.95; quantity discounts available.  Available in
  77093.   computer bookstores or directly from Columbia University:
  77094.  
  77095.     Kermit Development and Distribution
  77096.     Columbia University Academic Information Systems
  77097.     612 West 115th Street
  77098.     New York, NY  10025  USA
  77099.     Telephone: (USA) 212 854-3703
  77100.  
  77101.   Domestic and overseas orders accepted.  Price: $36.95 (US, Canada, and
  77102.   Mexico), $47 elsewhere.  Orders may be paid by MasterCard or Visa, or
  77103.   prepaid by check in US dollars.  Add $35 bank fee for checks not drawn on
  77104.   a US bank.  Price includes shipping.  Do not include sales tax.
  77105.   Inquire about quantity discounts.
  77106.  
  77107. - Frank
  77108.  
  77109. From news@columbia.edu Fri Jan 20 18:43:20 1995
  77110. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25754
  77111.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 21 Jan 1995 23:00:06 -0500
  77112. Received: by apakabar.cc.columbia.edu id AA02109
  77113.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 21 Jan 1995 23:00:04 -0500
  77114. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!howland.reston.ans.net!news.moneng.mei.com!uwm.edu!csd4.csd.uwm.edu!micke
  77115. From: micke@csd4.csd.uwm.edu (Stephen J Micke)
  77116. Newsgroups: comp.protocols.kermit.misc
  77117. Subject: WP key problem?
  77118. Date: 20 Jan 1995 18:43:20 GMT
  77119. Organization: Information & Media Technologies, University of Wisconsin - Milwaukee
  77120. Lines: 22
  77121. Distribution: world
  77122. Message-Id: <3fp088$9bl@uwm.edu>
  77123. Nntp-Posting-Host: 129.89.7.4
  77124. Originator: micke@csd4.csd.uwm.edu
  77125. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  77126.  
  77127.  
  77128.  
  77129.  
  77130. I have been using Word Perfect 5.0 on a SCO Unix Machine.  I use kermit to
  77131. connect a PC to the Unix machine.
  77132.  
  77133. On the Unix side, I set my terminal type to vt102 and my WP terminal type to
  77134. kermit.  On the Pc-kermit side, I set my terminal type to vt102.
  77135.  
  77136. WP included a file wp231.ini which mapped all the function key for using WP.
  77137. WP5.0 works fine with the wp231.ini key mapping.
  77138.  
  77139.  
  77140. I have just upgraded to WP5.1 which does not have many changes from WP5.0.
  77141. However, none of the Function keys are working.  Some of the keys are mapped 
  77142. to different keys,such as the "F7" key which is mapped to "F3".
  77143.  
  77144. I've used both the wp231.ini file from WP5.0 and the wp232.ini file included
  77145. with WP5.1 to try to map the keys.  These two files are virtually identical, 
  77146. except for two key mappings.
  77147.  
  77148. Has anyone experienced the same problem?
  77149.  
  77150. From news@columbia.edu Sun Jan 22 02:32:46 1995
  77151. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10217
  77152.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 22 Jan 1995 02:32:46 -0500
  77153. Received: by apakabar.cc.columbia.edu id AA13163
  77154.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 22 Jan 1995 02:32:45 -0500
  77155. Path: news.columbia.edu!sol.ctr.columbia.edu!news.cs.columbia.edu!news.pipeline.com!swiss.ans.net!gatech!swrinde!pipex!uunet!heifetz.msen.com!garnet.msen.com!jamaican
  77156. From: jamaican@garnet.msen.com (Dwight Hugget)
  77157. Newsgroups: comp.protocols.kermit.misc
  77158. Subject: is 3.14 finally ready now
  77159. Date: Sun, 22 Jan 1995 01:26:13 LOCAL
  77160. Organization: Msen
  77161. Lines: 26
  77162. Message-Id: <jamaican.30.001A6434@garnet.msen.com>
  77163. Nntp-Posting-Host: garnet.msen.com
  77164. X-Newsreader: Trumpet for Windows [Version 1.0 Rev B final beta #4]
  77165. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  77166.  
  77167. I haven't been on this newsgroup for a while so I'm out of touch. Is Kermit 
  77168. 3.14 out of BETA and ready for prime time?
  77169.  
  77170. Thanks for any help.
  77171. __
  77172. dwight   
  77173.                           ****************
  77174.                       ************************      "I rock RUFF and stuff
  77175.                     *****************************      wit' my afro puf R___! 
  77176.                   *********************************     Rock on witcha bad 
  77177.                  ***********************************      self.."
  77178.                 *************************************
  77179.                 *************************************
  77180.                 ***********---------------***********
  77181.                  ********/  ___       ___  \********
  77182.                    *****/  <_w_|    |<_w_   \*****       
  77183.                     ****|      /    \       |****        
  77184.                       **\      (_  _)      /**
  77185.                          |       \/       |
  77186.                           |     <__>     |
  77187.                             |           |
  77188.                               \ _____ /
  77189.                                 \___/
  77190.                                  
  77191. jamaican@mail.msen.com
  77192. 75202.1001@compuserve.com  
  77193.  
  77194. From news@columbia.edu Sun Jan 22 07:55:42 1995
  77195. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14744
  77196.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 22 Jan 1995 03:52:08 -0500
  77197. Received: by apakabar.cc.columbia.edu id AA15780
  77198.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 22 Jan 1995 03:52:05 -0500
  77199. Path: news.columbia.edu!panix!zip.eecs.umich.edu!newsxfer.itd.umich.edu!gatech!swrinde!pipex!sunic!news.funet.fi!zippo.uwasa.fi!uwasa.fi!ts
  77200. From: ts@uwasa.fi (Timo Salmi)
  77201. Newsgroups: comp.protocols.kermit.misc
  77202. Subject: A report on 8-bit Finnish characters and Kermit
  77203. Date: 22 Jan 1995 07:55:42 GMT
  77204. Organization: University of Vaasa
  77205. Lines: 125
  77206. Distribution: world
  77207. Message-Id: <3ft31u$79m@zippo.uwasa.fi>
  77208. Nntp-Posting-Host: uwasa.fi
  77209. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  77210.  
  77211. Frank da Cruz (fdc@watsun.cc.columbia.edu) has kindly been helping
  77212. me with the following configuration problem. He asked me to write a
  77213. report to the Usenet news of this configuration. I am happy to do it
  77214. in return with thanks. This case demonstrates well the flexibility
  77215. of Kermit terminal emulator for various countries. These scripts are
  77216. for Kermit version 3.14 and I use them in my modem connections from
  77217. home to our BSD Unix main computer at the University of Vaasa.
  77218.  
  77219. When the included definition scripts have become more tested in my
  77220. own use, I'll probably update my
  77221.  
  77222.  47099 Feb 12 1994 garbo.uwasa.fi:/pc/ts/tskerm25.zip
  77223.  tskerm25.zip Keypads, .bats, logging, and file transfers for MsKermit.
  77224.  
  77225. In my Kermit initialization file I define among other things the
  77226. following three commands
  77227.  define FINNISH take finnish.cmd  ;Use classic 7-bit Finnish characters
  77228.  define LATIN1 take latin1.cmd    ;Use standard 8-bit characters
  77229.  define MIXED take mixed.cmd      ;Use new 8-bit Finnish characters
  77230.  
  77231. I normally use LATIN1. If I read Finnish email or Finnish Usenet
  77232. newsgroups written with the new 8-bit Finnish definitions, then I
  77233. set MIXED. If I write Finnish text I still usually keep to FINNISH,
  77234. but if for some reason I need to write new 8-bit Finnish text then
  77235. it is again MIXED. There I have a small remaining hitch, since the
  77236. following to definitions will not send the \30 and \31 characters.
  77237.  
  77238.  set key \142 \30                  ; Key A" sends
  77239.  set key \143 \31                  ; Key A' sends
  77240.  
  77241. --------------------------------------------------------------------
  77242. ;FINNISH.CMD setup by prof. Timo Salmi Sun 22-Jan-95 08:10:34
  77243.  
  77244. ; Set on the classic Finnish 7-bit terminal emulation
  77245. set terminal bytesize 7-bit
  77246. set terminal character-set Finnish
  77247.  
  77248. set translation input on
  77249.  
  77250. ;In my view the German u does not belong to the Finnish alphabet
  77251. set translation input \154 \94    ; Show U" as caret (^)
  77252. set translation input \129 \126   ; Show u" as tilde (~)
  77253.  
  77254. ;Turn off the 8-bit Finnish definitions of MIXED.CMD
  77255. set translation input \235 \235   ; a"
  77256. set translation input \159 \159   ; o"
  77257. set translation input \238 \238   ; a'
  77258. set translation input  \30  \30   ; A"
  77259. set translation input \251 \251   ; O"
  77260. set translation input  \31  \31   ; A'
  77261.  
  77262. set key \132                      ; Key a" sends itself
  77263. set key \148                      ; Key o" sends itself
  77264. set key \134                      ; Key a' sends itself
  77265. set key \142                      ; Key A" sends itself
  77266. set key \153                      ; Key O" sends itself
  77267. set key \143                      ; Key A' sends itself
  77268.  
  77269. ; --------------------  End of FINNISH.CMD -------------------------
  77270.  
  77271. ;LATIN1.CMD setup by prof. Timo Salmi Sun 22-Jan-95 08:10:17
  77272.  
  77273. ; Set on the standard 8-bit terminal emulation
  77274. set terminal bytesize 8-bit
  77275. set terminal character-set latin1
  77276.  
  77277. set translation input on
  77278.  
  77279. ;Turn off the 8-bit Finnish definitions of MIXED.CMD
  77280. set translation input \154 \154   ; U"
  77281. set translation input \129 \129   ; u"
  77282.  
  77283. set translation input \235 \235   ; a"
  77284. set translation input \159 \159   ; o"
  77285. set translation input \238 \238   ; a'
  77286. set translation input  \30  \30   ; A"
  77287. set translation input \251 \251   ; O"
  77288. set translation input  \31  \31   ; A'
  77289.  
  77290. set key \132                      ; Key a" sends itself
  77291. set key \148                      ; Key o" sends itself
  77292. set key \134                      ; Key a' sends itself
  77293. set key \142                      ; Key A" sends itself
  77294. set key \153                      ; Key O" sends itself
  77295. set key \143                      ; Key A' sends itself
  77296.  
  77297. ; --------------------  End of LATIN1.CMD --------------------------
  77298.  
  77299. ;MIXED.CMD setup by prof. Timo Salmi Sun 22-Jan-95 08:33:13
  77300.  
  77301. ; Set on the new Finnish 8-bit terminal emulation
  77302. set terminal bytesize 8-bit
  77303. set terminal character-set latin1
  77304.  
  77305. set translation input on
  77306.  
  77307. ;In my view the German u does not belong to the Finnish alphabet
  77308. set translation input \154 \94    ; Show U" as ^
  77309. set translation input \129 \126   ; Show u" as ~
  77310.  
  77311. ; Alter what is shown
  77312. set translation input \235 \132   ; Show ascii 235 as a"
  77313. set translation input \159 \148   ; Show ascii 159 as o"
  77314. set translation input \238 \134   ; Show ascii 238 as a'
  77315. set translation input  \30 \142   ; Show ascii  30 as A"
  77316. set translation input \251 \153   ; Show ascii 251 as O"
  77317. set translation input  \31 \143   ; Show ascii  31 as A'
  77318.  
  77319. ; Keyboard redefinitions for Finnish 8-bit Unix characters
  77320. set key \132 \235                 ; Key a" sends
  77321. set key \148 \159                 ; Key o" sends
  77322. set key \134 \238                 ; Key a' sends
  77323. set key \142 \30                  ; Key A" sends
  77324. set key \153 \251                 ; Key O" sends
  77325. set key \143 \31                  ; Key A' sends
  77326.  
  77327. ; --------------------  End of MIXED.CMD ---------------------------
  77328.  
  77329.    All the best, Timo
  77330.  
  77331. ..................................................................
  77332. Prof. Timo Salmi      Co-moderator of comp.archives.msdos.announce
  77333. Moderating at garbo.uwasa.fi anonymous FTP archives  193.166.120.5
  77334. Faculty of Accounting & Industrial Management; University of Vaasa
  77335. Internet: ts@uwasa.fi   BBS +(358)-61-3170972; FIN-65101,  Finland
  77336.  
  77337. From news@columbia.edu Fri Jan 20 16:54:21 1995
  77338. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21766
  77339.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 22 Jan 1995 05:49:18 -0500
  77340. Received: by apakabar.cc.columbia.edu id AA18927
  77341.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 22 Jan 1995 05:49:16 -0500
  77342. Newsgroups: comp.protocols.kermit.misc
  77343. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!swrinde!cs.utexas.edu!utnut!utzoo!telly!evan
  77344. From: evan@telly.on.ca (Evan Leibovitch)
  77345. Subject: MS-Kermit 3.14: BegWare?
  77346. Message-Id: <D2pqyL.HFL@telly.on.ca>
  77347. Keywords: MS-DOS Kermit
  77348. Organization: Sound Software Ltd., Brampton, Ontario
  77349. References: <3f6k1k$i58@apakabar.cc.columbia.edu>
  77350. Date: Fri, 20 Jan 1995 16:54:21 GMT
  77351. Lines: 41
  77352. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  77353.  
  77354. In article <3f6k1k$i58@apakabar.cc.columbia.edu>,
  77355.     Frank da Cruz <fdc@watsun.cc.columbia.edu> wrote:
  77356.  
  77357. >MS-DOS Kermit 3.14 communications software for DOS and Windows was
  77358. >released on January 12, 1995.
  77359.  
  77360. >Version 3.14 is available via anonymous ftp from kermit.columbia.edu
  77361.  
  77362. And then...
  77363.  
  77364. >BBS operators are asked NOT to put the MS-DOS Kermit software on their
  77365. >BBSs for downloading by their users,
  77366.  
  77367. Wonderful.
  77368.  
  77369. It's OK to download Kermit from an ftp site, but not a BBS.
  77370.  
  77371. I'm sorry, but the policies of Columbia's Kermit projects are
  77372. degenerating into what can only be described as total illogic.
  77373. This policy is bigoted against those who can least afford to
  77374. pay for Kermit (BBS use is cheaper than Internet access). It
  77375. exhibits an ivory tower snobbery that doesn't pressure "research"
  77376. users to buy the book, but does so to others whose only sin is
  77377. not to be Internet-savvy.
  77378.  
  77379. I'm sorry, but as one who contributed to the Kermit effort from back in
  77380. the days when the only distribution was nine-inch tapes and the only
  77381. docs were ten-pound boxes of printed sheets, I resent this policy and
  77382. the attitude it represents. (I neither run nor use a BBS.)
  77383.  
  77384. This has nothing to do with the technical excellence of the product and
  77385. my lasting gratitude to all to have contributed. But IMO this policy
  77386. transcends FreeWare and ShareWare, and can best be described as
  77387. "BegWare".
  77388.  
  77389. First no CD-ROMs and now this. Please reconsider.
  77390.  
  77391. -- 
  77392.  Evan Leibovitch, Sound Software Ltd., located in beautiful Brampton, Ontario
  77393.        Novell Unix Master Reseller / evan@telly.on.ca / (905) 452-0504
  77394.                 A happy traveller on the information sidewalk
  77395.  
  77396. From news@columbia.edu Sun Jan 22 02:25:36 1995
  77397. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03481
  77398.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 22 Jan 1995 09:01:10 -0500
  77399. Received: by apakabar.cc.columbia.edu id AA05739
  77400.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 22 Jan 1995 09:01:09 -0500
  77401. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!swrinde!pipex!uunet!psinntp!bethe.hartwick.edu!wisanr
  77402. From: wisanr@hartwick.edu (Dick Wisan)
  77403. Newsgroups: comp.protocols.kermit.misc
  77404. Subject: SET PRINTER & 0-byte files
  77405. Message-Id: <1995Jan21.212536.1776@hartwick.edu>
  77406. Date: 21 Jan 95 21:25:36 -0500
  77407. Organization: HARTWICK COLLEGE
  77408. Lines: 17
  77409. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  77410.  
  77411. A problem when you SET PRINTER filename and then \Kprtscn to start 
  77412. logging to "printer".  If there's no such file, Kermit creates it.
  77413. If the file exists and has something in it, Kermit appends to it, but 
  77414. if it's a 0-byte file, Kermit balks with an error message that the 
  77415. printer isn't ready.
  77416.  
  77417. This happened in MS-Kermit 3.13, but I waited for 3.14.  3.14 does it, 
  77418. too.  Surely this isn't intended?  
  77419.  
  77420. Is there a fix for this?  I work around it by embedding the call to 
  77421. Kermit in an alias that checks for and deletes 0-byte files in the logs 
  77422. directory, but that takes time, and it shouldn't be necessary.
  77423.  
  77424. -- 
  77425. R. N. (Dick) Wisan  - Email: internet WISANR@hartwick.edu
  77426.                     - Snail: 37 Clinton Street, Oneonta NY 13820, U.S.A.
  77427.                     - Just your opinion, please, ma'am: No fax.
  77428.  
  77429. From news@columbia.edu Sat Jan 21 06:13:01 1995
  77430. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05228
  77431.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 22 Jan 1995 09:32:31 -0500
  77432. Received: by apakabar.cc.columbia.edu id AA06965
  77433.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 22 Jan 1995 09:32:29 -0500
  77434. Path: news.columbia.edu!panix!news.mathworks.com!news.alpha.net!uwm.edu!daffy!uwvax!homer.cs.wisc.edu!finton
  77435. From: finton@homer.cs.wisc.edu (David Finton)
  77436. Newsgroups: comp.protocols.kermit.misc
  77437. Subject: Re: "Can't read character: I/O error" -- second round
  77438. Date: 21 Jan 1995 06:13:01 GMT
  77439. Organization: University of WI, Madison -- Computer Sciences Dept.
  77440. Lines: 65
  77441. Message-Id: <3fq8ld$r30@spool.cs.wisc.edu>
  77442. References: <3fkupt$3t6@spool.cs.wisc.edu>
  77443. Nntp-Posting-Host: homer.cs.wisc.edu
  77444. X-Newsreader: NN version 6.5.0 #3 (NOV)
  77445. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  77446.  
  77447. In a previous message I wrote about a problem with kermit dropping
  77448. the connection and giving me this error message.  For example:
  77449.  
  77450. -----------------------------------------------------------------
  77451. ?{w{;~{{m
  77452.  
  77453. Can't read character: I/O error
  77454.                                Communications disconnect (Back at localhost)
  77455. NeXT kermit> 
  77456. -----------------------------------------------------------------
  77457.  
  77458. I'd like to thank those who advised me to build kermit5a190 and 
  77459. increase the number of windows and the receive packet-length.  This
  77460. made kermit much faster, and file transfer seems great.  I'm running
  77461. kermit on a NeXTstation with NEXTSTEP 3.2, /dev/cufa, hardware handshaking
  77462. cable and modem (Supra 14.4LC).
  77463.  
  77464. But I still get this irritating I/O error which throws me off the 
  77465. remote machine.  I suspected my new computer's port, or the modem
  77466. cable, except that most of the time the connection is great.  The
  77467. error usually occurs when I've been idle for a minute or so, and 
  77468. never in a file transfer.  I'm editing this over the kermit connection
  77469. now, and it's been working for about 20 minutes, I think.  It almost
  77470. seems like a line noise problem, although I didn't have this problem
  77471. with kermit on my previous machine.  Maybe my settings aren't quite
  77472. right yet.  I'll attach those below.
  77473.  
  77474. Anyone have suggestions for things to try?
  77475.  
  77476. Thanks, 
  77477.  
  77478. David Finton
  77479.  
  77480. ----------------------------
  77481.  
  77482. (Back at localhost)
  77483. NeXT kermit> show
  77484.  
  77485. C-Kermit 5A(190), 4 Oct 94, NeXTSTEP
  77486. Communications Parameters:
  77487.  Line: /dev/cufa, speed: 57600, mode: local, modem: hayes
  77488.  Terminal bits: 7, parity: none, duplex: full, flow: none, handshake: none
  77489.  Carrier: auto, lockfile: /usr/spool/uucp/LCK/LCK..cufa
  77490.  Escape character: 29 (^])
  77491.  
  77492. Protocol Parameters:   Send    Receive
  77493.  Timeout (used= 7):      7       10        Server Timeout:   0
  77494.  Padding:                0        0        Block Check:      1
  77495.  Pad Character:          0        0        Delay:            5
  77496.  Packet Start:           1        1        Max Retries:     10
  77497.  Packet End:            13       13
  77498.  Packet Length:         90     4526     
  77499.  Maximum Length:      9024     9024        Window Size:      2 set, 0 used
  77500.  Buffer Size:        90515    90515        Locking-Shift:    enabled, not used
  77501.  
  77502. File parameters:        Attributes:       on
  77503.  Names:   literal     
  77504.  Type:    binary        Packet Log:       none  Longest filename: 255
  77505.  Collide: backup        Session Log:      none  Longest pathname: 1024
  77506.  Send Pathnames:  on    Receive Pathnames: on
  77507.  Display: fullscreen    Transaction Log:  none
  77508.  
  77509. Byte Size: 8, Incomplete: keep, Init file: .kermrc
  77510. NeXT kermit> 
  77511.  
  77512.  
  77513. From news@columbia.edu Sun Jan 22 16:05:23 1995
  77514. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11187
  77515.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 22 Jan 1995 11:05:28 -0500
  77516. Received: by apakabar.cc.columbia.edu id AA11129
  77517.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 22 Jan 1995 11:05:27 -0500
  77518. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  77519. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  77520. Newsgroups: comp.protocols.kermit.misc
  77521. Subject: Re: MS-Kermit 3.14: BegWare?
  77522. Date: 22 Jan 1995 16:05:23 GMT
  77523. Organization: Columbia University
  77524. Lines: 104
  77525. Message-Id: <3ftvo3$arl@apakabar.cc.columbia.edu>
  77526. References: <3f6k1k$i58@apakabar.cc.columbia.edu> <D2pqyL.HFL@telly.on.ca>
  77527. Nntp-Posting-Host: watsun.cc.columbia.edu
  77528. Keywords: MS-DOS Kermit
  77529. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  77530.  
  77531. In article <D2pqyL.HFL@telly.on.ca>, Evan Leibovitch <evan@telly.on.ca> wrote:
  77532. >In article <3f6k1k$i58@apakabar.cc.columbia.edu>,
  77533. >Frank da Cruz <fdc@watsun.cc.columbia.edu> wrote:
  77534. >
  77535. >>MS-DOS Kermit 3.14 communications software for DOS and Windows was
  77536. >>released on January 12, 1995.
  77537. >...
  77538. >>Version 3.14 is available via anonymous ftp from kermit.columbia.edu
  77539. >...
  77540. >And then...
  77541. >...
  77542. >>BBS operators are asked NOT to put the MS-DOS Kermit software on their
  77543. >>BBSs for downloading by their users,
  77544. >
  77545. >Wonderful.
  77546. >It's OK to download Kermit from an ftp site, but not a BBS.
  77547. >
  77548. Evan, you didn't reproduce the entire statement, which said:
  77549.  
  77550.  . BBS operators are asked NOT to put the MS-DOS Kermit software on their
  77551.    BBSs for downloading by their users, as this adversely affects the
  77552.    Kermit effort, but rather to refer their users to Columbia University
  77553.    to obtain a proper copy of the software with manual (contact info is
  77554.    given below).
  77555.  
  77556.  . BBS operators who disagree with the previous condition are invited to
  77557.    contact us directly at <kermit@columbia.edu> to discuss the matter.
  77558.  
  77559. Thus, rather than posting an inflammatory message to the whole world, you
  77560. were invited to discuss it with us offline, to spare the planet another
  77561. month of acrimony and aggravation.
  77562.  
  77563. We are not running a democracy here, in which everybody gets to vote on
  77564. how we do our jobs.  We have to generate income to pay our salaries (and
  77565. for computers, supplies, etc), or we go away.  Thus, rousing the public to
  77566. yell at us accomplishes nothing.
  77567.  
  77568. >I'm sorry, but the policies of Columbia's Kermit projects are
  77569. >degenerating into what can only be described as total illogic.
  77570. >This policy is bigoted against those who can least afford to
  77571. >pay for Kermit (BBS use is cheaper than Internet access). It
  77572. >exhibits an ivory tower snobbery that doesn't pressure "research"
  77573. >users to buy the book, but does so to others whose only sin is
  77574. >not to be Internet-savvy.
  77575. >
  77576. Quite the opposite.  On the Internet, we are able to communicate with our
  77577. users.  We can get our message across to them: via announcements, ftp site
  77578. greeting messages, our Web page, newsgroups, etc, in an efficient way,
  77579. i.e. many people see one message.
  77580.  
  77581. But when software is distributed on BBSs, users who get it that way often
  77582. have no easy way to get in touch with us; furthermore, we have no control
  77583. over how the software is presented on the BBS -- what messages accompany
  77584. it, etc.  When contact does come from these users, e.g. because they have
  77585. technical questions because they did not get a manual, it is one-on-one;
  77586. an extremely inefficient use of our most precious and limited resource:
  77587. time.
  77588.  
  77589. >I'm sorry, but as one who contributed to the Kermit effort from back in
  77590. >the days when the only distribution was nine-inch tapes and the only
  77591. >docs were ten-pound boxes of printed sheets, I resent this policy and
  77592. >the attitude it represents. (I neither run nor use a BBS.)
  77593. >
  77594. I think you misunderstand the attitude.  Back in the old days, the Kermit
  77595. effort was paid for by a budget, and we didn't have to generate income.
  77596. We actually packed up and mailed out those boxes for free -- free! --
  77597. for quite a few years.  Then the budget went away and we had to pay for
  77598. ourselves.  Years passed, demands for new features and versions increased,
  77599. the user base increased, the technical support burden increased, and so
  77600. income has to increase.  We don't enjoy nagging everyone all the time
  77601. to "buy the book" (especially since it only makes sense and the nagging
  77602. should not be necessary), but if you want us to stop, then pay our
  77603. salaries :-)
  77604.  
  77605. The sad fact is that the good old days of subsidized development of free
  77606. software are over.  You might find a few people who still do it, but you
  77607. won't find it on an organizational level.  Look, for example, at the Free
  77608. Software Foundation.  Have you read their literature lately?  The rule of
  77609. the 90s is: if you want people to work for you, you have to pay them.  The
  77610. Kermit effort, and the FSF (if I may speak for them), are relics from the
  77611. good old days who want to keep a certain non-commercial, open, and
  77612. generous spirit alive, and make some contribution to humanity, but are
  77613. forced by economic circumstances to raise money to cover expenses.  If
  77614. millions of people did not use and benefit from our software, we might
  77615. think that we were irrelevant anachronisms who deserved to disappear and
  77616. give way to the voracious market forces of the 90s, but that does not seem
  77617. to be the case.  But what is disturbing is the growing attitude that "we"
  77618. (organizations like the Kermit group and the FSF) should work for "you"
  77619. with no compensation.
  77620.  
  77621. The Internet and the BBSs are not big bags of free goodies.  All of the
  77622. things you find there represent human labor.  If you make use of the
  77623. products of that labor, you should respect the wishes of the people who
  77624. did the work.
  77625.  
  77626. >First no CD-ROMs and now this. Please reconsider.
  77627. >
  77628. A careful reading of the two paragraphs in the original posting shows that
  77629. (a) it is a request, not a policy, and (b) we are open to ideas in this
  77630. area.  But, as discussed ad nauseum in the early days of this forum, we
  77631. have to operate within certain constraints and are not necessarily free to
  77632. do absolutely anything we (or you) can think of.
  77633.  
  77634. - Frank
  77635.  
  77636. From news@columbia.edu Sun Jan 22 16:12:25 1995
  77637. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11682
  77638.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 22 Jan 1995 11:12:32 -0500
  77639. Received: by apakabar.cc.columbia.edu id AA11391
  77640.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 22 Jan 1995 11:12:29 -0500
  77641. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  77642. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  77643. Newsgroups: comp.protocols.kermit.misc
  77644. Subject: Re: SET PRINTER & 0-byte files
  77645. Date: 22 Jan 1995 16:12:25 GMT
  77646. Organization: Columbia University
  77647. Lines: 21
  77648. Message-Id: <3fu059$b3r@apakabar.cc.columbia.edu>
  77649. References: <1995Jan21.212536.1776@hartwick.edu>
  77650. Nntp-Posting-Host: watsun.cc.columbia.edu
  77651. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  77652.  
  77653. In article <1995Jan21.212536.1776@hartwick.edu>,
  77654. Dick Wisan <wisanr@hartwick.edu> wrote:
  77655. >A problem when you SET PRINTER filename and then \Kprtscn to start 
  77656. >logging to "printer".  If there's no such file, Kermit creates it.
  77657. >If the file exists and has something in it, Kermit appends to it, but 
  77658. >if it's a 0-byte file, Kermit balks with an error message that the 
  77659. >printer isn't ready.
  77660. >This happened in MS-Kermit 3.13, but I waited for 3.14.  3.14 does it,
  77661. >too.  Surely this isn't intended?  
  77662. >
  77663. Surely not.  Version 3.14 was in Beta test for three months; did you
  77664. report this problem?  If so, the report must have been lost in the
  77665. shuffle, or we would have addressed it.
  77666.  
  77667. The best way to report problems like this is by email to:
  77668.  
  77669.   kermit@columbia.edu
  77670.  
  77671. The more promptly you report them, the better.
  77672.  
  77673. - Frank
  77674.  
  77675. From news@columbia.edu Sun Jan 22 21:14:46 1995
  77676. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06219
  77677.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 22 Jan 1995 17:32:43 -0500
  77678. Received: by apakabar.cc.columbia.edu id AA06172
  77679.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 22 Jan 1995 17:32:41 -0500
  77680. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!pipex!uunet!news.tele.fi!news.funet.fi!news.cc.tut.fi!proffa!a139146
  77681. From: a139146@proffa.cc.tut.fi (Ahokas Jarno)
  77682. Newsgroups: comp.protocols.kermit.misc
  77683. Subject: Kermit and SCO UNIX
  77684. Date: 22 Jan 1995 23:14:46 +0200
  77685. Organization: Tampere University of Technology, Computing Centre
  77686. Lines: 43
  77687. Distribution: sfnet
  77688. Message-Id: <a139146.790809268@proffa>
  77689. Nntp-Posting-Host: proffa.cc.tut.fi
  77690. X-Newsreader: NN version 6.5.0 #2 (NOV)
  77691. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  77692.  
  77693. Path: proffa!a139146
  77694. Date: 22 Jan 95 21:10:10 GMT
  77695. Message-ID: <a139146.790809010@proffa>
  77696. Newsgroups: comp.protocols.kermit.misc
  77697. Distribution: sfnet
  77698. Subject: Kermit and SCO UNIX
  77699.  
  77700. Hi there !
  77701.  
  77702.  
  77703. The  idea  is  to  use  three or more old 286 as "terminals". They all have 
  77704. network  adapters  and  dos 3.x plus drivers for adapters (I don't know the 
  77705. type  of  these adapters yet). Since the version of SCO we're buying is for 
  77706. 16  users it's possible to expand the network if needed. I was advised by a 
  77707. Finnish  SCO "guru" to use MS-Kermit software since it includes support for 
  77708. scandinavian  alphabet, terminal-emulations up to VT320 and built in TCP/IP 
  77709. (and  it's free). I've also FTPed this software from kermit.cc.columbia.edu 
  77710. both  for  DOS and SCO UNIX. The DOS side is very well documented (at least 
  77711. 200-300  pages  of  documentation).  There were several kermit programs for 
  77712. SCO UNIX as follows: 
  77713.  
  77714.     ckuker.sco32v4        ckuker.sco32v4gcc 
  77715.     ckuker.sco32v4net    ckuker.sco32v4netc 
  77716.     ckuker.sco32v4netgcc    ckuker.sco386netc     
  77717.     ckuker.sco3r2laic    ckuker.sco3r2netnd 
  77718.     ckuker.sco_odt30    ckuker._xenix_2.3 
  77719.  
  77720. About  this kermit program. I'm wondering how it actually works. Especially 
  77721. in  the  UNIX  end.  I  want to make .BAT files in these "terminal AT's" so 
  77722. that  when  you run this .BAT file the next thing that appears in screen is 
  77723. SCO  UNIX asking "login:" and "password:". I know that there must be kermit 
  77724. running  in  SCO  UNIX but how can it handle multiple users and how can the 
  77725. software  be  run via kermit connection?
  77726.  
  77727.  
  77728.  
  77729. Many thanks if you can help. 
  77730.  
  77731.      Jarno Ahokas 
  77732.     (Jarno.Ahokas@cc.tut.fi) 
  77733.  
  77734.  
  77735.  
  77736.  
  77737. From news@columbia.edu Sat Jan 21 14:46:41 1995
  77738. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11762
  77739.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 22 Jan 1995 18:54:26 -0500
  77740. Received: by apakabar.cc.columbia.edu id AA11879
  77741.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 22 Jan 1995 18:54:24 -0500
  77742. Path: news.columbia.edu!panix!news.mathworks.com!news.alpha.net!uwm.edu!vixen.cso.uiuc.edu!howland.reston.ans.net!news.sprintlink.net!pipex!uunet!mozz.unh.edu!toto.plymouth.edu!toto.plymouth.edu!not-for-mail
  77743. From: cyncam@toto.plymouth.edu (Cynthia Campbell)
  77744. Newsgroups: comp.protocols.kermit.misc
  77745. Subject: beginner macuser can't download
  77746. Date: 21 Jan 1995 09:46:41 -0500
  77747. Organization: Plymouth State College
  77748. Lines: 3
  77749. Sender: cyncam@toto.plymouth.edu
  77750. Distribution: world
  77751. Message-Id: <3fr6oh$jln@toto.plymouth.edu>
  77752. Nntp-Posting-Host: toto.plymouth.edu
  77753. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  77754.  
  77755. HELP. Using powerbook 100 with Kermit 3.0 (or is it 0.98?). Whenever I go
  77756. Get File (in server), I get a message that says "bad input clear -28".
  77757. Any ideas. Thanks, cynthia. 
  77758.  
  77759. From news@columbia.edu Sun Jan 22 23:18:59 1995
  77760. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13781
  77761.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 22 Jan 1995 19:23:08 -0500
  77762. Received: by apakabar.cc.columbia.edu id AA13968
  77763.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 22 Jan 1995 19:23:05 -0500
  77764. Newsgroups: comp.protocols.kermit.misc
  77765. Path: news.columbia.edu!sol.ctr.columbia.edu!spool.mu.edu!howland.reston.ans.net!ix.netcom.com!netcom.com!mberg
  77766. From: mberg@netcom.com (Mike Berg)
  77767. Subject: MS Kermit 3.14 and latin-1
  77768. Message-Id: <mbergD2ty3n.9qz@netcom.com>
  77769. Reply-To: mike@mbrg.com
  77770. Organization: N/A
  77771. X-Newsreader: TIN [version 1.2 PL1]
  77772. Date: Sun, 22 Jan 1995 23:18:59 GMT
  77773. Lines: 17
  77774. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  77775.  
  77776. I've been running 3.13 in Windows NT and liked it a lot. So I updated 
  77777. to the new 3.14 version thinking things would get even better (while
  77778. I wait for a native NT version).
  77779.  
  77780. (After wrestling with 231 screen lines for a while, I downloaded a new
  77781. version that fixed that problem.)
  77782.  
  77783. But I still have one problem left: I cannot get accented characters to
  77784. display correctly. I've set term bytesize 8, term character-set latin1
  77785. and code-page to cp437 (and also to cp850).  I've never had much luck
  77786. mucking with code-pages in Windows NT, but Kermit 3.13 seemed to deal with
  77787. it correctly without any help from me. So I'm wondering what's different now,
  77788. and what I have to do get latin1 to display OK -- instead of as IBM PC-type
  77789. junk.
  77790.  
  77791. Thanks,
  77792. Mike
  77793.  
  77794. From news@columbia.edu Mon Jan 23 01:39:03 1995
  77795. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22675
  77796.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 22 Jan 1995 21:40:33 -0500
  77797. Received: by apakabar.cc.columbia.edu id AA23536
  77798.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 22 Jan 1995 21:40:31 -0500
  77799. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!bloom-beacon.mit.edu!usc!cs.utexas.edu!news.sprintlink.net!pipex!sunic!news.tele.fi!news.funet.fi!zippo.uwasa.fi!brando.uwasa.fi!ts
  77800. From: ts@brando.uwasa.fi (Timo Salmi)
  77801. Newsgroups: comp.protocols.kermit.misc
  77802. Subject: Re: A report on 8-bit Finnish characters and Kermit
  77803. Date: 23 Jan 1995 01:39:03 GMT
  77804. Organization: University of Vaasa
  77805. Lines: 32
  77806. Distribution: world
  77807. Message-Id: <3fv1bn$g2o@zippo.uwasa.fi>
  77808. References: <3ft31u$79m@zippo.uwasa.fi>
  77809. Reply-To: ts@uwasa.fi
  77810. Nntp-Posting-Host: brando.uwasa.fi
  77811. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  77812.  
  77813. In article <3ft31u$79m@zippo.uwasa.fi> ts@uwasa.fi (Timo Salmi) writes:
  77814. > define MIXED take mixed.cmd     
  77815. ;Use new 8-bit Finnish characters
  77816.  
  77817. >it is again MIXED. There I have a small remaining hitch, since the
  77818. >following to definitions will not send the \30 and \31 characters.
  77819. >
  77820. > set key \142 \30                  ; Key A" sends
  77821. > set key \143 \31                  ; Key A' sends
  77822.  
  77823. I found at least a temporary solution to this problem. The A" and A'
  77824. keys are needed in editing.  I use MicroEMACS so I added the
  77825. following definitions to my .emacsrc and voila.
  77826.  
  77827. bind-to-key    execute-macro-3     ^X.
  77828. bind-to-key    execute-macro-4     ^X:
  77829.  
  77830. 3 store-macro
  77831.   insert-string A"    <-- \30
  77832. !endm
  77833.  
  77834. 4 store-macro
  77835.   insert-string A'    <-- \31
  77836. !endm
  77837.  
  77838.    All the best, Timo
  77839.  
  77840. ..................................................................
  77841. Prof. Timo Salmi      Co-moderator of comp.archives.msdos.announce
  77842. Temporarily using an alternative email address  ts@brando.uwasa.fi
  77843. Moderating at garbo.uwasa.fi anonymous FTP  archives  128.214.87.1
  77844. Faculty of Accounting & Industrial Management; University of Vaasa
  77845. Internet: ts@uwasa.fi   BBS +(358)-61-3170972; FIN-65101,  Finland
  77846.  
  77847. From news@columbia.edu Sun Jan 22 15:21:11 1995
  77848. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29637
  77849.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 22 Jan 1995 23:09:37 -0500
  77850. Received: by apakabar.cc.columbia.edu id AA29418
  77851.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 22 Jan 1995 23:09:35 -0500
  77852. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!news2.near.net!bloom-beacon.mit.edu!gatech!concert!ais.com!bruce
  77853. From: bruce@ais.com
  77854. Newsgroups: comp.protocols.kermit.misc
  77855. Subject: Re: MS-Kermit 3.14: BegWare?
  77856. Message-Id: <1995Jan22.202111.7168@ais.com>
  77857. Date: 22 Jan 95 20:21:11 EST
  77858. References: <3f6k1k$i58@apakabar.cc.columbia.edu> <D2pqyL.HFL@telly.on.ca> <3ftvo3$arl@apakabar.cc.columbia.edu>
  77859. Organization: Applied Information Systems, Chapel Hill, NC
  77860. Lines: 67
  77861. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  77862.  
  77863. In article <3ftvo3$arl@apakabar.cc.columbia.edu>, fdc@watsun.cc.columbia.edu (Frank da Cruz) writes:
  77864. > In article <D2pqyL.HFL@telly.on.ca>, Evan Leibovitch <evan@telly.on.ca> wrote:
  77865. >>In article <3f6k1k$i58@apakabar.cc.columbia.edu>,
  77866. >>Frank da Cruz <fdc@watsun.cc.columbia.edu> wrote:
  77867. >>
  77868. >>>MS-DOS Kermit 3.14 communications software for DOS and Windows was
  77869. >>>released on January 12, 1995.
  77870. >>...
  77871. >>>Version 3.14 is available via anonymous ftp from kermit.columbia.edu
  77872. >>...
  77873. >>And then...
  77874. >>...
  77875. >>>BBS operators are asked NOT to put the MS-DOS Kermit software on their
  77876. >>>BBSs for downloading by their users,
  77877. >>
  77878. >>Wonderful.
  77879. >>It's OK to download Kermit from an ftp site, but not a BBS.
  77880. >>
  77881. > Evan, you didn't reproduce the entire statement, which said:
  77882. >  . BBS operators are asked NOT to put the MS-DOS Kermit software on their
  77883. >    BBSs for downloading by their users, as this adversely affects the
  77884. >    Kermit effort, but rather to refer their users to Columbia University
  77885. >    to obtain a proper copy of the software with manual (contact info is
  77886. >    given below).
  77887. >  . BBS operators who disagree with the previous condition are invited to
  77888. >    contact us directly at <kermit@columbia.edu> to discuss the matter.
  77889.  
  77890. Frank,
  77891.  
  77892. Please consider this as a suggestion rather than a flame.  I fully under-
  77893. stand your need to find funding -- after all, I run a business, so it's
  77894. not as if I'm against commercial software or the needs of maintaining an
  77895. adequate balance sheet.
  77896.  
  77897. I'm not sure what the proper approach is, but I think that the current
  77898. policy will prove counter-productive.  Kermit is already a rather
  77899. marginal product in the BBS world (for reasons that are mostly cultural
  77900. rather than technical;  we can debate the exact reasons, but the basic
  77901. facts are really not in dispute), and this will probably be the last
  77902. straw for it in that marketplace.
  77903.  
  77904. I will say that you could put more information on how to buy the books
  77905. into the standard documentation files, and/or convert Kermit to a share-
  77906. ware product;  I think both of these could generate some additional
  77907. revenue.  You have little or no obligation to support users who have down-
  77908. loaded Kermit from BBSes;  it's been your decision to spend the time to
  77909. support such people.  But the new policy may well result in a situation
  77910. where you have few support demands ... because there are few people using
  77911. the product (and consequently few book and tape sales, so therefore little
  77912. revenue;  possibly too little revenue to survive).  This may or may not
  77913. be a good thing, but it's not what you claim to want, so I fear that
  77914. this issue may not have been thought through very well.  (I'm tempted to
  77915. say that perhaps someone more familiar with the business world should
  77916. be consulted;  in my experience, people from University environments --
  77917. even from the business offices in Universities -- often have few relevant
  77918. skills to bring to the table when dealing with such problems).
  77919.  
  77920. To put it bluntly, I think this approach will reduce your income (from
  77921. book sales etc) without sufficiently reducing your support costs to make
  77922. up the difference.  I hope I'm wrong, but I don't see how you can expect
  77923. any other result.  In that case, I would suggest that you (and Columbia)
  77924. need to consider seriously whether the Kermit mission is one that is still
  77925. worth working on.
  77926.  
  77927. Bruce C. Wright
  77928.  
  77929. From news@columbia.edu Sat Jan 21 18:28:53 1995
  77930. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05096
  77931.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 23 Jan 1995 00:07:14 -0500
  77932. Received: by apakabar.cc.columbia.edu id AA04008
  77933.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 23 Jan 1995 00:07:06 -0500
  77934. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!swrinde!howland.reston.ans.net!agate!msunews!news
  77935. From: mrr@scss3.cl.msu.edu (Mark Riordan)
  77936. Newsgroups: comp.protocols.kermit.misc
  77937. Subject: Re: C-Kermit OS/2 (16Bit) Under WinNT
  77938. Date: 21 Jan 1995 18:28:53 GMT
  77939. Organization: Michigan State University
  77940. Lines: 18
  77941. Message-Id: <3frjp5$12tm@msunews.cl.msu.edu>
  77942. References: <1995Jan5.152611.8468@eisner>
  77943. Nntp-Posting-Host: via-annex0-1.cl.msu.edu
  77944. Mime-Version: 1.0
  77945. X-Msunetid: mrr
  77946. X-Newsreader: WinVN 0.93.11
  77947. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  77948.  
  77949. In article <1995Jan5.152611.8468@eisner>, burns@eisner.decus.org says...
  77950. >
  77951. >Does anyone know who has dibs on trying to get
  77952. >C-Kermit working under NT ? 
  77953.  
  77954. A while ago the Windows Online BBS at (510)736-8343
  77955. had a file KMN077.ZIP:
  77956.  
  77957. "Kermit for Microsoft Windows v0.77: fairly complete implementation of 
  77958. the Kermit file  transfer protocol for MS-Win NT (32-bit) that includes 
  77959. most of the extensions (long packets windowing, server mode, attribute 
  77960. packets and enhanced error checking); includes a full  featured terminal 
  77961. emulation capability and  modem dialer; cooperative multitasking is  
  77962. fully supported; 01/27/94; Wayne Warthen."
  77963.  
  77964. Dunno whether this was C-Kermit; probably not.   /mrr
  77965.  
  77966.  
  77967.  
  77968. From news@columbia.edu Sun Jan 22 14:18:16 1995
  77969. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13613
  77970.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 23 Jan 1995 01:59:15 -0500
  77971. Received: by apakabar.cc.columbia.edu id AA09600
  77972.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 23 Jan 1995 01:59:14 -0500
  77973. Path: news.columbia.edu!panix!news.mathworks.com!news2.near.net!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  77974. From: jrd@cc.usu.edu (Joe Doupnik)
  77975. Newsgroups: comp.protocols.kermit.misc
  77976. Subject: Re: MS Kermit 3.14 and latin-1
  77977. Message-Id: <1995Jan22.201817.38781@cc.usu.edu>
  77978. Date: 22 Jan 95 20:18:16 MDT
  77979. References: <mbergD2ty3n.9qz@netcom.com>
  77980. Organization: Utah State University
  77981. Lines: 24
  77982. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  77983.  
  77984. In article <mbergD2ty3n.9qz@netcom.com>, mberg@netcom.com (Mike Berg) writes:
  77985. > I've been running 3.13 in Windows NT and liked it a lot. So I updated 
  77986. > to the new 3.14 version thinking things would get even better (while
  77987. > I wait for a native NT version).
  77988. > (After wrestling with 231 screen lines for a while, I downloaded a new
  77989. > version that fixed that problem.)
  77990. > But I still have one problem left: I cannot get accented characters to
  77991. > display correctly. I've set term bytesize 8, term character-set latin1
  77992. > and code-page to cp437 (and also to cp850).  I've never had much luck
  77993. > mucking with code-pages in Windows NT, but Kermit 3.13 seemed to deal with
  77994. > it correctly without any help from me. So I'm wondering what's different now,
  77995. > and what I have to do get latin1 to display OK -- instead of as IBM PC-type
  77996. > junk.
  77997. -------------
  77998.     This can be a confusing area. One needs to be sensitive to what
  77999. the byte values are when saying they do/don't display correctly. That is,
  78000. the text may be for another character set without us being aware of it.
  78001. In a communications environment both sides get to play this game, and we
  78002. don't know what the other side is doing. In the present case we don't know
  78003. if there is another side, and if there is then what it's like, etc. Perhaps
  78004. you can fill in the blanks for us.
  78005.     Joe D.
  78006.  
  78007. From news@columbia.edu Sun Jan 22 15:25:37 1995
  78008. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14159
  78009.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 23 Jan 1995 02:08:02 -0500
  78010. Received: by apakabar.cc.columbia.edu id AA09899
  78011.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 23 Jan 1995 02:08:01 -0500
  78012. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!pipex!uunet!fdn.fr!univ-lyon1.fr!swidir.switch.ch!scsing.switch.ch!news.rediris.es!power.ci.uv.es!news.upv.es!fchinest
  78013. From: fchinest@pleione.cc.upv.es (Francisco Chinesta Soria)
  78014. Newsgroups: comp.protocols.kermit.misc
  78015. Subject: Looking for Kermit FAQ
  78016. Date: 22 Jan 1995 15:25:37 GMT
  78017. Organization: Centre de Calcul
  78018. Lines: 7
  78019. Message-Id: <3fttdh$sd1@maia.cc.upv.es>
  78020. Nntp-Posting-Host: pleione.cc.upv.es
  78021. X-Newsreader: TIN [version 1.2 PL2]
  78022. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  78023.  
  78024.    Helo.
  78025.  
  78026.    Where can I find a FAQ about Kermit?
  78027.  
  78028.    Thanks in advance.
  78029.  
  78030.     Rafa
  78031.  
  78032. From news@columbia.edu Mon Jan 23 04:48:58 1995
  78033. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18685
  78034.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 23 Jan 1995 03:23:42 -0500
  78035. Received: by apakabar.cc.columbia.edu id AA12642
  78036.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 23 Jan 1995 03:23:34 -0500
  78037. Path: news.columbia.edu!panix!bloom-beacon.mit.edu!usc!howland.reston.ans.net!news.sprintlink.net!news.cloud9.net!cloud9.net!leftwich
  78038. From: James Leftwich <leftwich@cloud9.net>
  78039. Newsgroups: comp.protocols.kermit.misc
  78040. Subject: novice help
  78041. Date: Sun, 22 Jan 1995 23:48:58 -0500
  78042. Organization: Cloud 9 Internet + White Plains, New York, USA
  78043. Lines: 18
  78044. Message-Id: <Pine.SUN.3.91.950122234525.29423A-100000@cloud9.net>
  78045. Nntp-Posting-Host: cloud9.net
  78046. Mime-Version: 1.0
  78047. Content-Type: TEXT/PLAIN; charset=US-ASCII
  78048. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  78049.  
  78050. I realize I'm way out of my league here in this newsgroup but bear with 
  78051. me.  I have succesfully figured out how to transfer text files but every 
  78052. time I try to transfer a binary file( having set file type binary), when I 
  78053. try to execute it, I get a 'File too Big' error.
  78054.  
  78055. 1)  Can someone help me with this problem
  78056.  
  78057. and
  78058.  
  78059. 2)  Can someone recommend an abridged version of a Kermit Doc (I have one 
  78060. but its huge and technical.
  78061.  
  78062. Thanks (private email preferred)
  78063.  
  78064. Jim Leftwich
  78065. leftwich@cloud9.net
  78066. "I'm on cloud9!" :)
  78067.  
  78068.  
  78069. From news@columbia.edu Mon Jan 23 10:16:52 1995
  78070. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25961
  78071.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 23 Jan 1995 05:22:06 -0500
  78072. Received: by apakabar.cc.columbia.edu id AA15586
  78073.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 23 Jan 1995 05:22:04 -0500
  78074. Path: news.columbia.edu!sol.ctr.columbia.edu!newsxfer.itd.umich.edu!gatech!howland.reston.ans.net!Germany.EU.net!EU.net!uknet!pipex!pipex!bt!demeter.aom.bt.co.uk!icarus.aom.bt.co.uk!not-for-mail
  78075. From: stevef@aom.bt.co.uk (Steve Fosdick)
  78076. Newsgroups: comp.protocols.kermit.misc
  78077. Subject: Any way for remote end to finish connect mode
  78078. Date: 23 Jan 1995 10:16:52 -0000
  78079. Organization: BT Access Operations and Maintenance
  78080. Lines: 10
  78081. Message-Id: <3fvvml$198@icarus.aom.bt.co.uk>
  78082. Nntp-Posting-Host: icarus.aom.bt.co.uk
  78083. X-Newsreader: TIN [version 1.2 PL2]
  78084. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  78085.  
  78086. Is there a way that a remote system can get C-Kermit to drop out of
  78087. connect mode, for example by sending a particular escape sequence?
  78088.  
  78089. Thanks.
  78090.  
  78091. -- 
  78092. Steve Fosdick                  Internet: stevef@aom.bt.co.uk
  78093. Voice: +44 1473 642987         BT WEB:   FOSDICK S J
  78094. Fax:   +44 1473 644607         BOAT:     FOSDICSJ
  78095. Snail: Room 210, B67, BT Labs, Martlesham Heath, Ipswich, IP5 7RE, England.
  78096.  
  78097. From news@columbia.edu Mon Jan 23 10:18:54 1995
  78098. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28424
  78099.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 23 Jan 1995 06:06:18 -0500
  78100. Received: by apakabar.cc.columbia.edu id AA16500
  78101.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 23 Jan 1995 06:06:16 -0500
  78102. Path: news.columbia.edu!sol.ctr.columbia.edu!math.ohio-state.edu!cs.utexas.edu!news.sprintlink.net!hookup!news.mathworks.com!uunet!zib-berlin.de!fauern!news.unibw-muenchen.de!p41bsmk
  78103. From: p41bsmk@kommsrv.rz.unibw-muenchen.de (Peter Schmolck)
  78104. Newsgroups: comp.protocols.kermit.misc
  78105. Subject: MS-Kermit as an ftp-daemon equivalent?
  78106. Date: 23 Jan 1995 10:18:54 GMT
  78107. Organization: University of the Federal Armed Forces Munich
  78108. Lines: 26
  78109. Message-Id: <3fvvqe$aam@infosrv.rz.unibw-muenchen.de>
  78110. Nntp-Posting-Host: kommsrv.rz.unibw-muenchen.de
  78111. X-Newsreader: NN version 6.5.0 #5 (NOV)
  78112. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  78113.  
  78114. How can I make MS-Kermit to act in a similar (or even better) way than an 
  78115. ftp daemon like NCSA telnet? When I start the folloing macro at my office 
  78116. PC before going home
  78117.  
  78118. define servemode -
  78119.   set flow none,-
  78120.   set port tcp *,-
  78121.   set server login ID PASSWORD,-
  78122.   server
  78123.  
  78124. I can, after dialing in from home to my campus net via modem, telnet to 
  78125. my office pc, do some up/downloads, and even remotely run certain DOS 
  78126. commands (e.g. zip files before downloading). However, I can do this only 
  78127. once. After closing the MS-Kermit server session there is no possibility 
  78128. to remotely start another one.
  78129.  
  78130. Is there any tricky way to keep kermit alive, and in server mode, after 
  78131. sending "bye", "finish" or "remote logout"?
  78132.  
  78133.  
  78134.  
  78135. --
  78136. Peter Schmolck                                p41bsmk@rz.unibw-muenchen.de
  78137. Department of Education                       Phone :     +49-89-6004-2056
  78138. Univ. of the Federal Armed Forces Munich      Fax   :     +49-89-6004-3968
  78139. 85577 NEUBIBERG, GERMANY    
  78140.  
  78141. From news@columbia.edu Mon Jan 23 00:52:00 1995
  78142. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10989
  78143.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 23 Jan 1995 09:06:19 -0500
  78144. Received: by apakabar.cc.columbia.edu id AA04964
  78145.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 23 Jan 1995 09:06:16 -0500
  78146. Path: news.columbia.edu!panix!news.mathworks.com!hookup!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  78147. From: jrd@cc.usu.edu (Joe Doupnik)
  78148. Newsgroups: comp.protocols.kermit.misc
  78149. Subject: Re: MS-Kermit as an ftp-daemon equivalent?
  78150. Message-Id: <1995Jan23.065200.38807@cc.usu.edu>
  78151. Date: 23 Jan 95 06:52:00 MDT
  78152. References: <3fvvqe$aam@infosrv.rz.unibw-muenchen.de>
  78153. Organization: Utah State University
  78154. Lines: 25
  78155. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  78156.  
  78157. In article <3fvvqe$aam@infosrv.rz.unibw-muenchen.de>, p41bsmk@kommsrv.rz.unibw-muenchen.de (Peter Schmolck) writes:
  78158. > How can I make MS-Kermit to act in a similar (or even better) way than an 
  78159. > ftp daemon like NCSA telnet? When I start the folloing macro at my office 
  78160. > PC before going home
  78161. > define servemode -
  78162. >   set flow none,-
  78163. >   set port tcp *,-
  78164. >   set server login ID PASSWORD,-
  78165. >   server
  78166. > I can, after dialing in from home to my campus net via modem, telnet to 
  78167. > my office pc, do some up/downloads, and even remotely run certain DOS 
  78168. > commands (e.g. zip files before downloading). However, I can do this only 
  78169. > once. After closing the MS-Kermit server session there is no possibility 
  78170. > to remotely start another one.
  78171. > Is there any tricky way to keep kermit alive, and in server mode, after 
  78172. > sending "bye", "finish" or "remote logout"?
  78173. ----------------
  78174.     Yes, you can control this behavior, and more, with the DISABLE
  78175. and ENABLE commands. To be a perpetual server say DISABLE FINISH which
  78176. will disable FINISH, BYE, LOGOUT from clients. You can also restrict
  78177. access to changing directories, etc.
  78178.     Joe D.
  78179.  
  78180. From news@columbia.edu Mon Jan 23 17:42:57 1995
  78181. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01471
  78182.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 23 Jan 1995 12:43:06 -0500
  78183. Received: by apakabar.cc.columbia.edu id AA22531
  78184.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 23 Jan 1995 12:43:04 -0500
  78185. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  78186. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  78187. Newsgroups: comp.protocols.kermit.misc
  78188. Subject: Re: beginner macuser can't download
  78189. Date: 23 Jan 1995 17:42:57 GMT
  78190. Organization: Columbia University
  78191. Lines: 61
  78192. Message-Id: <3g0pr1$lvt@apakabar.cc.columbia.edu>
  78193. References: <3fr6oh$jln@toto.plymouth.edu>
  78194. Nntp-Posting-Host: watsun.cc.columbia.edu
  78195. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  78196.  
  78197. In article <3fr6oh$jln@toto.plymouth.edu>,
  78198. Cynthia Campbell <cyncam@toto.plymouth.edu> wrote:
  78199. >HELP. Using powerbook 100 with Kermit 3.0 (or is it 0.98?). Whenever I go
  78200. >Get File (in server), I get a message that says "bad input clear -28".
  78201. >Any ideas. Thanks, cynthia. 
  78202. >
  78203. Please try the current (non-)release of Mac Kermit:
  78204.  
  78205. CURRENT STATE OF MACINTOSH KERMIT
  78206.  
  78207. As of: Sat Nov 12 11:00:53 1994
  78208.  
  78209. *** BULLETIN ***
  78210. Mac Kermit 0.991(190) dated 16 August 1994, or later, fixes the problem with
  78211. downloading under newer System releases (7.1.x).  Now files can be downloaded
  78212. on newer systems such as Centris 660 AV with OS 7.1, Power Mac 7100/66 with OS
  78213. 7.1.2, etc, without bombs or other nasty effects.  It should also fix certain
  78214. binary/text-mode confusion that seemed to result in corrupted files when
  78215. downloading in binary mode.
  78216. *****************
  78217.  
  78218. The last formal release of Mac Kermit was 0.9(40) in 1988.  Unfortunately, it
  78219. does not work very well on newer Macintoshes or Systems.  However, newer
  78220. versions are too big for 512K Macs or below, so you'll have to run 0.9(40) on
  78221. these old models.
  78222.  
  78223. A great deal of work has been done on the program since 1988, but the result
  78224. (so far) is still not of release quality, though it is quite suitable for most
  78225. purposes.
  78226.  
  78227. The current pre-pre-release of Mac Kermit (still far from a final release) is
  78228. 0.991(190), based on C-Kermit 5A(190).  It is available via anonymous FTP
  78229. from kermit.columbia.edu [128.59.39.2], directory kermit/f.
  78230.  
  78231. A comprehensive user manual will be published when the final 1.0 release is
  78232. complete.  Sorry, I can't give any reasonable estimate about when that will
  78233. be.  Watch the Kermit Digest (or comp.protocols.kermit, same thing) for
  78234. further announcements.  You can subscribe to the Kermit Digest by sending
  78235. email to LISTSERV@CUVMA.BITNET (or LISTSERV@CUVMA.CC.COLUMBIA.EDU) containing
  78236. the text:
  78237.  
  78238.   SUBSCRIBE I$KERMIT your-personal-name-here
  78239.  
  78240. Mac Kermit files, ftp from kermit.columbia.edu in text mode from the
  78241. kermit/f directory:
  78242.  
  78243.   ckm190.hqx -- current prerelease of Mac Kermit in BinHex 4.0 format
  78244.   ckmker.doc -- user documentation for 0.9(40), the previous release (1988)
  78245.   ckmker.ps  -- PostScript version of user documentation for 0.9(40)
  78246.   ckmker.bwr -- Notes about the current prerelease, FAQ's, etc
  78247.   ckmker.fon -- Notes about the new Mac Kermit terminal emulation font
  78248.  
  78249. and in the kermit/charsets directory:
  78250.  
  78251.   maclatin.* -- The new Mac Kermit font itself
  78252.  
  78253. Read the ckmker.bwr ("beware") file for further details.
  78254.  
  78255. (End of ckmaaa.hlp)
  78256.  
  78257.  
  78258.  
  78259. From news@columbia.edu Mon Jan 23 17:46:09 1995
  78260. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01751
  78261.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 23 Jan 1995 12:46:21 -0500
  78262. Received: by apakabar.cc.columbia.edu id AA22850
  78263.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 23 Jan 1995 12:46:18 -0500
  78264. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  78265. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  78266. Newsgroups: comp.protocols.kermit.misc
  78267. Subject: Re: Looking for Kermit FAQ
  78268. Date: 23 Jan 1995 17:46:09 GMT
  78269. Organization: Columbia University
  78270. Lines: 9
  78271. Message-Id: <3g0q11$m9o@apakabar.cc.columbia.edu>
  78272. References: <3fttdh$sd1@maia.cc.upv.es>
  78273. Nntp-Posting-Host: watsun.cc.columbia.edu
  78274. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  78275.  
  78276. In article <3fttdh$sd1@maia.cc.upv.es>,
  78277. Francisco Chinesta Soria <fchinest@pleiades.upv.es> wrote:
  78278. >   Where can I find a FAQ about Kermit?
  78279. >
  78280. http://www.columbia.edu/kermit, Choose "Further Information", then "FAQ".
  78281.  
  78282. Or anonymous ftp to kermit.columbia.edu, kermit/FAQ.TXT.
  78283.  
  78284. - Frank
  78285.  
  78286. From news@columbia.edu Mon Jan 23 17:56:07 1995
  78287. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02793
  78288.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 23 Jan 1995 12:56:11 -0500
  78289. Received: by apakabar.cc.columbia.edu id AA23764
  78290.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 23 Jan 1995 12:56:10 -0500
  78291. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  78292. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  78293. Newsgroups: comp.protocols.kermit.misc
  78294. Subject: Re: C-Kermit OS/2 (16Bit) Under WinNT
  78295. Date: 23 Jan 1995 17:56:07 GMT
  78296. Organization: Columbia University
  78297. Lines: 27
  78298. Message-Id: <3g0qjn$n6i@apakabar.cc.columbia.edu>
  78299. References: <1995Jan5.152611.8468@eisner> <3frjp5$12tm@msunews.cl.msu.edu>
  78300. Nntp-Posting-Host: watsun.cc.columbia.edu
  78301. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  78302.  
  78303. In article <3frjp5$12tm@msunews.cl.msu.edu>,
  78304. Mark Riordan <mrr@scss3.cl.msu.edu> wrote:
  78305. >had a file KMN077.ZIP:
  78306. >
  78307. >"Kermit for Microsoft Windows v0.77: fairly complete implementation of 
  78308. >the Kermit file  transfer protocol for MS-Win NT (32-bit) that includes 
  78309. >most of the extensions (long packets windowing, server mode, attribute 
  78310. >packets and enhanced error checking); includes a full  featured terminal 
  78311. >emulation capability and  modem dialer; cooperative multitasking is  
  78312. >fully supported; 01/27/94; Wayne Warthen."
  78313. >
  78314. >Dunno whether this was C-Kermit; probably not.   /mrr
  78315. >
  78316.  
  78317. Actually, the latest versions are KM[WN]080.ZIP.  W is Win 3.1 and N is NT.
  78318.  
  78319. This is an original work not supported by Columbia but based on Frank's 
  78320. Kermit Protocol book.  The interface is pretty and it supports Async 
  78321. and WINSOCK connections.  BUT...
  78322.  
  78323. it does not have any Script language and the VT emulators fail many of the 
  78324. vttest program's tests.
  78325.  
  78326. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  78327. "C-Kermit: available on more platforms than any other communications software."
  78328. "Kermit FTP: sending files whenever and wherever they are needed."
  78329.   OS/2 version 5A(190): ftp://kermit.columbia.edu/kermit/archives/cko190.zip 
  78330.  
  78331. From news@columbia.edu Mon Jan 23 17:57:29 1995
  78332. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02929
  78333.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 23 Jan 1995 12:57:36 -0500
  78334. Received: by apakabar.cc.columbia.edu id AA23838
  78335.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 23 Jan 1995 12:57:34 -0500
  78336. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  78337. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  78338. Newsgroups: comp.protocols.kermit.misc
  78339. Subject: Re: novice help
  78340. Date: 23 Jan 1995 17:57:29 GMT
  78341. Organization: Columbia University
  78342. Lines: 28
  78343. Message-Id: <3g0qm9$n8s@apakabar.cc.columbia.edu>
  78344. References: <Pine.SUN.3.91.950122234525.29423A-100000@cloud9.net>
  78345. Nntp-Posting-Host: watsun.cc.columbia.edu
  78346. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  78347.  
  78348. In article <Pine.SUN.3.91.950122234525.29423A-100000@cloud9.net>,
  78349. James Leftwich  <leftwich@cloud9.net> wrote:
  78350. >I realize I'm way out of my league here in this newsgroup but bear with 
  78351. >me.  I have succesfully figured out how to transfer text files but every 
  78352. >time I try to transfer a binary file( having set file type binary), when I 
  78353. >try to execute it, I get a 'File too Big' error.
  78354. >
  78355. >1)  Can someone help me with this problem
  78356. >
  78357. First you have to say what kind of computer you have, what operating
  78358. system, which Kermit program, and which version.  But in general, the
  78359. safest bet is to tell BOTH Kermit programs to "set file type binary".
  78360. Yes, there are shortcuts, but you can learn them later.
  78361.  
  78362. >and
  78363. >
  78364. >2)  Can someone recommend an abridged version of a Kermit Doc (I have one 
  78365. >but its huge and technical.
  78366. >
  78367. Which documentation are you referring to?  The two most popular Kermit
  78368. programs, MS-DOS Kermit and C-Kermit, each have excellent, professionally
  78369. published manuals that are no more technical than you need them to be.
  78370. They start out in tutorial fashion geared to novices, and work up to
  78371. advanced stuff for those who need it.  You can find out about the manuals
  78372. by pointing your Web browser at http://www.columbia.edu/kermit/, or by
  78373. sending an email inquiry to kermit@columbia.edu.
  78374.  
  78375. - Frank
  78376.  
  78377. From news@columbia.edu Mon Jan 23 18:03:31 1995
  78378. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03519
  78379.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 23 Jan 1995 13:03:42 -0500
  78380. Received: by apakabar.cc.columbia.edu id AA24457
  78381.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 23 Jan 1995 13:03:41 -0500
  78382. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  78383. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  78384. Newsgroups: comp.protocols.kermit.misc
  78385. Subject: Re: Any way for remote end to finish connect mode
  78386. Date: 23 Jan 1995 18:03:31 GMT
  78387. Organization: Columbia University
  78388. Lines: 10
  78389. Message-Id: <3g0r1j$nrt@apakabar.cc.columbia.edu>
  78390. References: <3fvvml$198@icarus.aom.bt.co.uk>
  78391. Nntp-Posting-Host: watsun.cc.columbia.edu
  78392. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  78393.  
  78394. In article <3fvvml$198@icarus.aom.bt.co.uk>,
  78395. Steve Fosdick <stevef@aom.bt.co.uk> wrote:
  78396. >Is there a way that a remote system can get C-Kermit to drop out of
  78397. >connect mode, for example by sending a particular escape sequence?
  78398. >
  78399. C-Kermit 5A(190) for UNIX, VMS, and OS/2 supports this feature.
  78400. Read about it in section 3.1 of the ckcker.upd (C-Kermit update notes)
  78401. file that comes with it.
  78402.  
  78403. - Frank
  78404.  
  78405. From news@columbia.edu Mon Jan 23 15:14:30 1995
  78406. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16541
  78407.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 23 Jan 1995 15:30:59 -0500
  78408. Received: by apakabar.cc.columbia.edu id AA08873
  78409.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 23 Jan 1995 15:30:55 -0500
  78410. Path: news.columbia.edu!panix!bloom-beacon.mit.edu!spool.mu.edu!howland.reston.ans.net!news.sprintlink.net!redstone.interpath.net!hilbert.dnai.com!hack.dragoman.com!usenet
  78411. From: mike@mbrg.com (Mike Berg)
  78412. Newsgroups: comp.protocols.kermit.misc
  78413. Subject: Re: MS Kermit 3.14 and latin-1
  78414. Date: 23 Jan 1995 15:14:30 GMT
  78415. Organization: N/A
  78416. Lines: 44
  78417. Message-Id: <3g0h4m$i85@hack.dragoman.com>
  78418. References: <mbergD2ty3n.9qz@netcom.com> <1995Jan22.201817.38781@cc.usu.edu>
  78419. Nntp-Posting-Host: l52.ip.quake.net
  78420. Mime-Version: 1.0
  78421. X-Newsreader: WinVN 0.93.10
  78422. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  78423.  
  78424. Joe Doupnik <jrd@cc.usu.edu> wrote:
  78425. >
  78426. >In article <mbergD2ty3n.9qz@netcom.com>, mberg@netcom.com (Mike Berg) 
  78427. writes:
  78428. [...]
  78429. >> But I still have one problem left: I cannot get accented characters to
  78430. >> display correctly. I've set term bytesize 8, term character-set latin1
  78431. >> and code-page to cp437 (and also to cp850).  I've never had much luck
  78432. >> mucking with code-pages in Windows NT, but Kermit 3.13 seemed to deal 
  78433. with
  78434. >> it correctly without any help from me. So I'm wondering what's different 
  78435. now,
  78436. >> and what I have to do get latin1 to display OK -- instead of as IBM 
  78437. PC-type
  78438. >> junk.
  78439. >-------------
  78440. >        This can be a confusing area. One needs to be sensitive to what
  78441. >the byte values are when saying they do/don't display correctly. That is,
  78442. >the text may be for another character set without us being aware of it.
  78443. >In a communications environment both sides get to play this game, and we
  78444. >don't know what the other side is doing. In the present case we don't know
  78445. >if there is another side, and if there is then what it's like, etc. Perhaps
  78446. >you can fill in the blanks for us.
  78447. >        Joe D.
  78448.  
  78449. OK.  I can see the difference when reading the usenet group can.francais. 
  78450. For example, the article "FAQ - les accents francais et Usenet", the 
  78451. following paragraph:
  78452.  
  78453. + Oy qu'il riside, ` Nnmes ou mjme Capharna|m, tout Frangais inscrit au rtle
  78454. rhglera son d{ avant Nokl, qu'il soit naof ou rbleur. ;
  78455.  
  78456. Reading this (that is -- the original - hopefully properly copied here) from 
  78457. netcom.com using MS Kermit 3.13 displays this ISO-8859-1 text correctly, but 
  78458. not MS Kermit 3.14 with the nearly out-of-the-box configuration. 
  78459.  
  78460. Sorry for not being too clear about this in my previous posting. I haven't 
  78461. deleted 3.13 from my system yet, so I'm doing a side-by-side comparison. I 
  78462. assume I'm having some obvious configuration problem that I can't locate in 
  78463. the help - but that can be easily fixed.
  78464.  
  78465. Mike
  78466.  
  78467.  
  78468.  
  78469. From news@columbia.edu Mon Jan 23 05:35:05 1995
  78470. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17242
  78471.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 23 Jan 1995 15:39:54 -0500
  78472. Received: by apakabar.cc.columbia.edu id AA09598
  78473.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 23 Jan 1995 15:39:52 -0500
  78474. Path: news.columbia.edu!sol.ctr.columbia.edu!news.cs.columbia.edu!news.pipeline.com!swiss.ans.net!gatech!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  78475. From: jrd@cc.usu.edu (Joe Doupnik)
  78476. Newsgroups: comp.protocols.kermit.misc
  78477. Subject: Re: finish (no, not finnish!)
  78478. Message-Id: <1995Jan23.113505.38853@cc.usu.edu>
  78479. Date: 23 Jan 95 11:35:05 MDT
  78480. References: <1995Jan23.113710@hnrc.tufts.edu>
  78481. Organization: Utah State University
  78482. Lines: 11
  78483. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  78484.  
  78485. In article <1995Jan23.113710@hnrc.tufts.edu>, jerry@hnrc.tufts.edu (Jerry Dallal) writes:
  78486. > In previous PC versions, all I needed to type was 'f' at my PC's KErmit prompt
  78487. > to send a finish to a mainframe version working as a server.  With version 
  78488. > 3.14, 'f' is unrecognized and 'fi' is required.  I assume this is because 
  78489. > the forward command has been added.  Would it be a major violation of style
  78490. > if 'f' were allowed to continue to default to finish?
  78491. ---------
  78492.     It would not be a swift idea. We already have too many "nicname"
  78493. commands as it is. Surely FIN is not to cumbersome to type. But if your
  78494. preferences are strong then DEFINE F FINISH. Self help.
  78495.     Joe D.
  78496.  
  78497. From news@columbia.edu Mon Jan 23 23:17:48 1995
  78498. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26064
  78499.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 23 Jan 1995 18:17:51 -0500
  78500. Received: by apakabar.cc.columbia.edu id AA26177
  78501.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 23 Jan 1995 18:17:49 -0500
  78502. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  78503. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  78504. Newsgroups: comp.protocols.kermit.misc
  78505. Subject: Re: MS Kermit 3.14 and latin-1
  78506. Date: 23 Jan 1995 23:17:48 GMT
  78507. Organization: Columbia University
  78508. Lines: 34
  78509. Message-Id: <3g1des$phr@apakabar.cc.columbia.edu>
  78510. References: <mbergD2ty3n.9qz@netcom.com>
  78511. Nntp-Posting-Host: watsun.cc.columbia.edu
  78512. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  78513.  
  78514. In article <mbergD2ty3n.9qz@netcom.com>, Mike Berg <mike@mbrg.com> wrote:
  78515. >I've been running 3.13 in Windows NT and liked it a lot. So I updated 
  78516. >to the new 3.14 version thinking things would get even better (while
  78517. >I wait for a native NT version).
  78518. >
  78519. >But I still have one problem left: I cannot get accented characters to
  78520. >display correctly. I've set term bytesize 8, term character-set latin1
  78521. >and code-page to cp437 (and also to cp850).  I've never had much luck
  78522. >mucking with code-pages in Windows NT, but Kermit 3.13 seemed to deal
  78523. >with it correctly without any help from me. So I'm wondering what's
  78524. >different now, and what I have to do get latin1 to display OK -- instead
  78525. >of as IBM PC-type junk.
  78526. >
  78527. I don't have Windows NT here, but I can verify that in Windows 3.1, Kermit
  78528. displays Latin-1 characters correctly in CONNECT mode as long as you have
  78529. CP850 loaded.  If NT is anything like Windows itself, then it won't allow
  78530. fonts to be loaded or code pages switched in a window, so if your code
  78531. page was not CP850 to start with (type "chcp" at the MS-Kermit> prompt to
  78532. find out), then you won't see the right stuff.  CP437 should be "mostly"
  78533. OK, but it lacks some of the Latin-1 characters (notably the Icelandic
  78534. ones).
  78535.  
  78536. Note, by the way, that MS-DOS Kermit's "set terminal code-page" does not
  78537. actually do anything as far as loading code pages is concerned.  It is
  78538. simply a way to inform Kermit what the current code page actually is, so
  78539. it can set up the correct translations.  This is necessary because the DOS
  78540. call that asks what the current code page is tends to lie, especially if
  78541. it is not CP437 or CP850.
  78542.  
  78543. MS-DOS Kermit 3.14 comes with a CHARSET macro that displays all the
  78544. characters of the current code page.  What do you see when you type
  78545. "charset" at the MS-Kermit> prompt?
  78546.  
  78547. - Frank
  78548.  
  78549. From news@columbia.edu Tue Jan 24 00:28:47 1995
  78550. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00312
  78551.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 23 Jan 1995 19:28:58 -0500
  78552. Received: by apakabar.cc.columbia.edu id AA02246
  78553.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 23 Jan 1995 19:28:56 -0500
  78554. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  78555. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  78556. Newsgroups: comp.protocols.kermit.misc,comp.protocols.kermit.announce
  78557. Subject: MS-DOS Kermit 3.14 patches
  78558. Date: 24 Jan 1995 00:28:47 GMT
  78559. Organization: Columbia University
  78560. Lines: 54
  78561. Approved: fdc@columbia.edu
  78562. Message-Id: <3g1hjv$261@apakabar.cc.columbia.edu>
  78563. Nntp-Posting-Host: watsun.cc.columbia.edu
  78564. Cc: 
  78565. Xref: news.columbia.edu comp.protocols.kermit.misc:1705 comp.protocols.kermit.announce:8
  78566.  
  78567.  
  78568. John W. Manly <JWMANLY@amherst.edu> wrote...
  78569.   
  78570.   I just noticed what appears to be some nasty behavior in Kermit.  (I've
  78571.   tried this on both Kermit 3.13 and the Jan 12th 3.14).  I have some code
  78572.   in a LOGIN.COM to try to set the label of the window and icon in a
  78573.   DECwindows session using <OSC> and <ST> operations, and it appears that
  78574.   Kermit is choking on these sequences rather than ignoring them.
  78575. >
  78576.   For example, if I send the either of the sequences, <OSC>21;FOOBAR<ST>
  78577.   or <OSC>2L;FOOBAR<ST> to the Kermit emulator, it freezes up and requires
  78578.   an ALT-= to reset it.  These sequences are used by DECwindows for
  78579.   changeing the label of a window or icon (I forget which is which), and
  78580.   while I wouldn't expect Kermit to do anything upon reception, I wouldn't
  78581.   expect it to lock up either.
  78582.  
  78583. And mrichmon@paz.gsfc.nasa.gov (Michael Richmond) wrote:
  78584.   
  78585.   I discovered a possible bug in MS-DOS Kermit version 3.14 dated 12 Jan
  78586.   1995.  Kermit will find the initialization file when it is started with
  78587.   the command:
  78588.   
  78589.   kermit -f c:\not_my_default_directory\mskermit.ini
  78590.   
  78591.   But it will not find the initialization file when it is started with the
  78592.   command:
  78593.   
  78594.   kermit -f \not_my_default_directory\mskermit.ini
  78595.   
  78596.   That is, the drive letter must be supplied on the command line when the
  78597.   initialization file is not in the default directory.  This restriction
  78598.   does not exist in version 3.14/Beta-14 dated 20 Nov 1994.
  78599.  
  78600. These are both bugs.
  78601.  
  78602. They are fixed by patches.  The patch files are available via anonymous
  78603. ftp from kermit.columbia.edu in directory kermit/a.  Transfer them in
  78604. text mode:
  78605.  
  78606.   For KERMIT.EXE:  msr314.pch
  78607.   For KERMITE.EXE: msrm314.pch
  78608.   For KERLITE.EXE: msrl314.pch
  78609.  
  78610. Put them in your top-level KERMIT directory and, if you are using the
  78611. standard MSKERMIT.INI file, they will be applied automatically.  If you
  78612. are not using the standard MSKERMIT.INI file, then put a PATCH command
  78613. at the top of your startup file.  You can tell that they have taken effect
  78614. when Kermit's version herald reports:
  78615.  
  78616.   IBM-PC MS-DOS Kermit 3.14 18 Jan 1995 patch level 3
  78617.  
  78618. Thanks to Joe Doupnik for the quick fixes!
  78619.  
  78620. - Frank
  78621.  
  78622. From news@columbia.edu Mon Jan 23 16:37:10 1995
  78623. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04918
  78624.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 23 Jan 1995 20:52:24 -0500
  78625. Received: by apakabar.cc.columbia.edu id AA08784
  78626.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 23 Jan 1995 20:52:22 -0500
  78627. Path: news.columbia.edu!panix!news.mathworks.com!news2.near.net!emerald.tufts.edu!news.hnrc.tufts.edu!jerry
  78628. From: jerry@hnrc.tufts.edu (Jerry Dallal)
  78629. Newsgroups: comp.protocols.kermit.misc
  78630. Subject: finish (no, not finnish!)
  78631. Date: 23 Jan 95 11:37:10 -0500
  78632. Organization: USDA HNRC at Tufts University
  78633. Lines: 5
  78634. Message-Id: <1995Jan23.113710@hnrc.tufts.edu>
  78635. Nntp-Posting-Host: mint.hnrc.tufts.edu
  78636. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  78637.  
  78638. In previous PC versions, all I needed to type was 'f' at my PC's KErmit prompt
  78639. to send a finish to a mainframe version working as a server.  With version 
  78640. 3.14, 'f' is unrecognized and 'fi' is required.  I assume this is because 
  78641. the forward command has been added.  Would it be a major violation of style
  78642. if 'f' were allowed to continue to default to finish?
  78643.  
  78644. From news@columbia.edu Mon Jan 23 16:38:26 1995
  78645. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08765
  78646.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 23 Jan 1995 22:09:00 -0500
  78647. Received: by apakabar.cc.columbia.edu id AA14731
  78648.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 23 Jan 1995 22:08:58 -0500
  78649. Path: news.columbia.edu!panix!news.mathworks.com!hookup!swrinde!howland.reston.ans.net!torn!ccshst05.cs.uoguelph.ca!ccshst01.cs.uoguelph.ca!joverton
  78650. From: joverton@uoguelph.ca (Jeff Overton)
  78651. Newsgroups: comp.protocols.kermit.misc
  78652. Subject: Elavil and Heartburn
  78653. Date: 23 Jan 1995 16:38:26 GMT
  78654. Organization: University of Guelph
  78655. Lines: 17
  78656. Message-Id: <3g0m22$ggd@ccshst05.cs.uoguelph.ca>
  78657. Nntp-Posting-Host: ccshst01.cs.uoguelph.ca
  78658. Keywords: Elavil & Heartburn - Lisa Overton
  78659. X-Newsreader: TIN [version 1.2 PL2]
  78660. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  78661.  
  78662.  
  78663.  
  78664.  
  78665. --
  78666. I am wondering about a possible connection between the heartburn 
  78667. difficulties and amitrypline or Elavil. For me the symptoms of heartburn 
  78668. flared around the same time I was increasing the dosage of Amit. Just 
  78669. wondering if anyone else has had this experience or if anyone knows if 
  78670. Elavil can aggravate heartburn or reflux problems? I am taking 150 mg 
  78671. Zantac daily , doesn't seem to be helping really. I am considering 
  78672. trying to go on a low carb diet or cutting out milk altogether. Any 
  78673. ideas or suggestions would be greatly appreciated!
  78674.  
  78675. Lisa Overton, Guelph, ON 
  78676. Canada...That's 'gwelf'
  78677.  
  78678.  
  78679.  
  78680. From news@columbia.edu Mon Jan 23 18:30:40 1995
  78681. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19802
  78682.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 24 Jan 1995 02:08:25 -0500
  78683. Received: by apakabar.cc.columbia.edu id AA00860
  78684.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 24 Jan 1995 02:08:23 -0500
  78685. Path: news.columbia.edu!panix!news.mathworks.com!hookup!swrinde!elroy.jpl.nasa.gov!decwrl!tribune.usask.ca!quartz.ucs.ualberta.ca!gpu2!kiwayama
  78686. From: kiwayama@gpu2.srv.ualberta.ca (Keiko Iwayama)
  78687. Newsgroups: comp.protocols.kermit.misc
  78688. Subject: Telemate & Kermit help needed
  78689. Date: 23 Jan 1995 18:30:40 GMT
  78690. Organization: University of Alberta
  78691. Lines: 5
  78692. Message-Id: <3g0skg$j8n@quartz.ucs.ualberta.ca>
  78693. Nntp-Posting-Host: gpu2.srv.ualberta.ca
  78694. X-Newsreader: TIN [version 1.2 PL2]
  78695. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  78696.  
  78697. Does anyone know how to set up Telemate 4.12 properly in order to upload 
  78698. via Kermit with long packets of 1000 or more?  Right now it is set to 80 
  78699. and I can only get a maximum cps rate of 500 (SLOW!).  If Telemate 
  78700. doesn't allow this, then are there other comm programs like Telix or 
  78701. Qmodem which can be configured like this?
  78702.  
  78703. From news@columbia.edu Mon Jan 23 21:09:56 1995
  78704. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24848
  78705.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 24 Jan 1995 07:32:52 -0500
  78706. Received: by apakabar.cc.columbia.edu id AA21806
  78707.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 24 Jan 1995 07:32:48 -0500
  78708. Path: news.columbia.edu!panix!zip.eecs.umich.edu!caen!hookup!swrinde!howland.reston.ans.net!pipex!sunic!news.funet.fi!zippo.uwasa.fi!uwasa.fi!ts
  78709. From: ts@uwasa.fi (Timo Salmi)
  78710. Newsgroups: comp.protocols.kermit.misc
  78711. Subject: Re: MS-Kermit 3.14: BegWare?
  78712. Date: 23 Jan 1995 21:09:56 GMT
  78713. Organization: University of Vaasa
  78714. Lines: 21
  78715. Message-Id: <3g15v4$kc@zippo.uwasa.fi>
  78716. References: <3f6k1k$i58@apakabar.cc.columbia.edu> <D2pqyL.HFL@telly.on.ca> <3ftvo3$arl@apakabar.cc.columbia.edu>
  78717. Nntp-Posting-Host: uwasa.fi
  78718. Keywords: MS-DOS Kermit
  78719. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  78720.  
  78721. In article <3ftvo3$arl@apakabar.cc.columbia.edu> fdc@watsun.cc.columbia.edu (Frank da Cruz) writes:
  78722. :In article <D2pqyL.HFL@telly.on.ca>, Evan Leibovitch <evan@telly.on.ca> wrote:
  78723. :>First no CD-ROMs and now this. Please reconsider.
  78724.  
  78725. :A careful reading of the two paragraphs in the original posting shows that
  78726. :(a) it is a request, not a policy, and (b) we are open to ideas in this
  78727. :area.  But, as discussed ad nauseum in the early days of this forum, we
  78728.  
  78729. Way back then I think we about covered and analyzed every possible
  78730. angle. I respect Frank's views and I know he appreciated mine. I see
  78731. no reason for going over exactly the same arguments and
  78732. counter-arguments again after just a few months.
  78733.  
  78734.    All the best, Timo
  78735.  
  78736. ..................................................................
  78737. Prof. Timo Salmi      Co-moderator of comp.archives.msdos.announce
  78738. Moderating at garbo.uwasa.fi anonymous FTP archives  193.166.120.5
  78739. Faculty of Accounting & Industrial Management; University of Vaasa
  78740. Internet: ts@uwasa.fi   BBS +(358)-61-3170972; FIN-65101,  Finland
  78741.  
  78742.  
  78743. From news@columbia.edu Mon Jan 23 21:18:49 1995
  78744. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09323
  78745.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 24 Jan 1995 10:21:47 -0500
  78746. Received: by apakabar.cc.columbia.edu id AA01659
  78747.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 24 Jan 1995 10:21:44 -0500
  78748. Path: news.columbia.edu!panix!news.mathworks.com!news2.near.net!emerald.tufts.edu!news.hnrc.tufts.edu!jerry
  78749. From: jerry@hnrc.tufts.edu
  78750. Newsgroups: comp.protocols.kermit.misc
  78751. Subject: cmsg cancel <1995Jan23.161041@hnrc.tufts.edu>
  78752. Control: cancel <1995Jan23.161041@hnrc.tufts.edu>
  78753. Date: 23 Jan 95 16:18:49 -0500
  78754. Organization: Tufts University
  78755. Lines: 1
  78756. Message-Id: <1995Jan23.161849@hnrc.tufts.edu>
  78757. Nntp-Posting-Host: mint.hnrc.tufts.edu
  78758. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  78759.  
  78760. cancel <1995Jan23.161041@hnrc.tufts.edu>
  78761.  
  78762. From news@columbia.edu Tue Jan 24 08:03:55 1995
  78763. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09653
  78764.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 25 Jan 1995 03:59:05 -0500
  78765. Received: by apakabar.cc.columbia.edu id AA04975
  78766.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 25 Jan 1995 03:59:03 -0500
  78767. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!hookup!olivea!wetware!hack.dragoman.com!usenet
  78768. From: mike@mbrg.com (Mike Berg)
  78769. Newsgroups: comp.protocols.kermit.misc
  78770. Subject: Re: MS Kermit 3.14 and Latin-1 (problem solved)
  78771. Date: 24 Jan 1995 08:03:55 GMT
  78772. Organization: N/A
  78773. Lines: 22
  78774. Message-Id: <3g2c9b$9ar@hack.dragoman.com>
  78775. References: <mbergD2ty3n.9qz@netcom.com> <3g1des$phr@apakabar.cc.columbia.edu>
  78776. Nntp-Posting-Host: l52.ip.quake.net
  78777. Mime-Version: 1.0
  78778. X-Newsreader: WinVN 0.93.10
  78779. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  78780.  
  78781. Frank da Cruz <fdc@watsun.cc.columbia.edu> wrote:
  78782. >
  78783.  
  78784. >I don't have Windows NT here, but I can verify that in Windows 3.1, Kermit
  78785. >displays Latin-1 characters correctly in CONNECT mode as long as you have
  78786. >CP850 loaded.  If NT is anything like Windows itself, then it won't allow
  78787. >fonts to be loaded or code pages switched in a window, so if your code
  78788. >page was not CP850 to start with (type "chcp" at the MS-Kermit> prompt to
  78789. >find out), then you won't see the right stuff.  CP437 should be "mostly"
  78790. >OK, but it lacks some of the Latin-1 characters (notably the Icelandic
  78791. >ones).
  78792. >
  78793.  
  78794. I figured out how to get most of Latin-1 to display OK.  I just had to set 
  78795. the terminal to VT220 or VT320.  When I had set the terminal to VT100, 
  78796. MS-DOS Kermit 3.14 was displaying the characters as CP437 - i.e., without 
  78797. translation.  This is a change from 3.13.
  78798.  
  78799. (I booted up WFW 3.11 and observed the same behavior).
  78800.  
  78801. Mike
  78802.  
  78803.  
  78804. From news@columbia.edu Tue Jan 24 08:32:55 1995
  78805. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12244
  78806.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 25 Jan 1995 05:13:52 -0500
  78807. Received: by apakabar.cc.columbia.edu id AA26953
  78808.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 25 Jan 1995 05:13:50 -0500
  78809. Path: news.columbia.edu!sol.ctr.columbia.edu!news.moneng.mei.com!uwm.edu!vixen.cso.uiuc.edu!howland.reston.ans.net!agate!dog.ee.lbl.gov!news.cs.utah.edu!cc.usu.edu!jrd
  78810. From: jrd@cc.usu.edu (Joe Doupnik)
  78811. Newsgroups: comp.protocols.kermit.misc
  78812. Subject: Re: Help With MSK 3.14 And APC
  78813. Message-Id: <1995Jan24.143256.39063@cc.usu.edu>
  78814. Date: 24 Jan 95 14:32:55 MDT
  78815. References: <3g3jfo$4rr@chopin.udel.edu>
  78816. Organization: Utah State University
  78817. Lines: 31
  78818. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  78819.  
  78820. In article <3g3jfo$4rr@chopin.udel.edu>, darkstar@chopin.udel.edu (Jerry Alexandratos) writes:
  78821. > I don't know what I'm missing here.  I want to create a pcget and
  78822. > pcsend macro similar to the ones that I use with C-Kermit 5A(190) to
  78823. > automatically send and receive files from another computers.
  78824. > I can't get this to work right.  If I do "apc <string>" when connected
  78825. > to my host, I get the string placed and executed.
  78826. > However if I do this when the host is using C-Kermit, I get an error
  78827. > complaining that it doesn't recognize the command or string.
  78828. > For example, `apc r' prints r on the command line.  If I'm in C-Kermit on
  78829. > the host (remember MSK locally) and I do `apc r' I see _r?no keywords
  78830. > match _r \ found on the C-Kermit> prompt.
  78831. > My guess is that C-Kermit isn't interpretting the string correctly. 
  78832. > I've checked and everything says that it's using 8-bit modes, etc...
  78833. > Am I missing something so obvious that it's silly.  I get the
  78834. > impression from the documentation that this should work.
  78835. ----------
  78836.     Maybe I can clarify the matter for you. APC commands are recognized
  78837. (the stuff coming at a machine from outside) only by the VT200/300 terminal
  78838. emulators. It's a terminal-like command sequence, and to be recognized and
  78839. acted upon it must be received by an appropriate terminal emulator.
  78840.     Terminal emulation is NOT active when transferring files or sending
  78841. file-like commands from the Kermit prompt. It is active only when you say
  78842. CONNECT. The command interpreters (Kermit command line stuff) are not 
  78843. terminal emulators, the host o/s shell isn't a terminal emulator either.
  78844.         Joe D.
  78845.  
  78846. From news@columbia.edu Tue Jan 24 09:53:39 1995
  78847. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18215
  78848.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 25 Jan 1995 07:52:47 -0500
  78849. Received: by apakabar.cc.columbia.edu id AA04734
  78850.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 25 Jan 1995 07:52:44 -0500
  78851. Path: news.columbia.edu!sol.ctr.columbia.edu!news.moneng.mei.com!hookup!swrinde!ihnp4.ucsd.edu!dog.ee.lbl.gov!news.cs.utah.edu!cc.usu.edu!jrd
  78852. From: jrd@cc.usu.edu (Joe Doupnik)
  78853. Newsgroups: comp.protocols.kermit.misc
  78854. Subject: Re: finish (no, not finnish!)
  78855. Message-Id: <1995Jan24.155339.39082@cc.usu.edu>
  78856. Date: 24 Jan 95 15:53:39 MDT
  78857. References: <1995Jan23.113710@hnrc.tufts.edu> <1995Jan23.113505.38853@cc.usu.edu> <3g3anr$rcs@lynx.unm.edu> <1995Jan24.132937@hnrc.tufts.edu>
  78858. Organization: Utah State University
  78859. Lines: 16
  78860. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  78861.  
  78862. In article <1995Jan24.132937@hnrc.tufts.edu>, jerry@hnrc.tufts.edu (Jerry Dallal) writes:
  78863. > In article <3g3anr$rcs@lynx.unm.edu>, galway@chtm.eece.unm.edu (Denis McKeon) writes:
  78864. >> 
  78865. >> Any suggestions on how to use 'x' as a macro name?  
  78866. >> 
  78867. > In 3.14 I was able to define f but not h.  h is help no matter what I do to it.
  78868. -----------
  78869.     I'm moving this thread into my net.trivia queue. Macros don't overlay
  78870. hard coded command names. They may conflict with some abbreviations of hard
  78871. coded command names. If a one or two letter macro name does this for you
  78872. then please choose another combination. It's hardly something to create
  78873. a lot of traffic about. The general rule to apply is avoid macro names
  78874. which are the same as a command or an abbreviation of a command; that will
  78875. be a safe rule under all circumstances.
  78876.     Joe D.
  78877.  
  78878. From news@columbia.edu Wed Jan 25 14:28:53 1995
  78879. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24041
  78880.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 25 Jan 1995 09:37:08 -0500
  78881. Received: by apakabar.cc.columbia.edu id AA15853
  78882.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 25 Jan 1995 09:37:06 -0500
  78883. Path: news.columbia.edu!panix!news.mathworks.com!udel!news-4.nss.udel.edu!chopin.udel.edu!not-for-mail
  78884. From: darkstar@chopin.udel.edu (Jerry Alexandratos)
  78885. Newsgroups: comp.protocols.kermit.misc
  78886. Subject: Re: Help With MSK 3.14 And APC
  78887. Date: 25 Jan 1995 09:28:53 -0500
  78888. Organization: Broken Toys Unlimited
  78889. Lines: 45
  78890. Message-Id: <3g5n75$a1g@chopin.udel.edu>
  78891. References: <3g3jfo$4rr@chopin.udel.edu> <1995Jan24.143256.39063@cc.usu.edu>
  78892. Nntp-Posting-Host: chopin.udel.edu
  78893. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  78894.  
  78895. In article <1995Jan24.143256.39063@cc.usu.edu>,
  78896. Joe Doupnik <jrd@cc.usu.edu> wrote:
  78897. :In article <3g3jfo$4rr@chopin.udel.edu>, darkstar@chopin.udel.edu (Jerry Alexandratos) writes:
  78898. :> 
  78899. :> I don't know what I'm missing here.  I want to create a pcget and
  78900. :> pcsend macro similar to the ones that I use with C-Kermit 5A(190) to
  78901. :> automatically send and receive files from another computers.
  78902. :> 
  78903. :> I can't get this to work right.  If I do "apc <string>" when connected
  78904. :> to my host, I get the string placed and executed.
  78905. :> 
  78906. :> However if I do this when the host is using C-Kermit, I get an error
  78907. :> complaining that it doesn't recognize the command or string.
  78908. :> 
  78909. :> For example, `apc r' prints r on the command line.  If I'm in C-Kermit on
  78910. :> the host (remember MSK locally) and I do `apc r' I see _r?no keywords
  78911. :> match _r \ found on the C-Kermit> prompt.
  78912. :> 
  78913. :> My guess is that C-Kermit isn't interpretting the string correctly. 
  78914. :> I've checked and everything says that it's using 8-bit modes, etc...
  78915. :> 
  78916. :> Am I missing something so obvious that it's silly.  I get the
  78917. :> impression from the documentation that this should work.
  78918. :----------
  78919. :    Maybe I can clarify the matter for you. APC commands are recognized
  78920. :(the stuff coming at a machine from outside) only by the VT200/300 terminal
  78921. :emulators. It's a terminal-like command sequence, and to be recognized and
  78922. :acted upon it must be received by an appropriate terminal emulator.
  78923. :    Terminal emulation is NOT active when transferring files or sending
  78924. :file-like commands from the Kermit prompt. It is active only when you say
  78925. :CONNECT. The command interpreters (Kermit command line stuff) are not 
  78926. :terminal emulators, the host o/s shell isn't a terminal emulator either.
  78927. :        Joe D.
  78928.  
  78929. So I guess this means that macros like pcget and pcsend will only work
  78930. with with C-Kermit.  Dang!  And I was hoping to emulate similar
  78931. functionality from the pc end of a MSK to C-Kermit connection.  Oh
  78932. well, c'est la vie!
  78933.  
  78934.         --Jerry
  78935.  
  78936. -- 
  78937. |>  Jerry Alexandratos                **  "vengo de la tierra del    <|
  78938. |>  darkstar@strauss.udel.edu         **   fuego ten cuidado cuando  <|
  78939. |>  darkstar@canary.pearson.udel.edu  **   llamas mi nombre..."      <|
  78940.  
  78941. From news@columbia.edu Wed Jan 25 14:51:11 1995
  78942. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25011
  78943.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 25 Jan 1995 09:51:30 -0500
  78944. Received: by apakabar.cc.columbia.edu id AA17097
  78945.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 25 Jan 1995 09:51:28 -0500
  78946. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  78947. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  78948. Newsgroups: comp.protocols.kermit.misc
  78949. Subject: Re: Help With MSK 3.14 And APC
  78950. Date: 25 Jan 1995 14:51:11 GMT
  78951. Organization: Columbia University
  78952. Lines: 48
  78953. Message-Id: <3g5ogv$glp@apakabar.cc.columbia.edu>
  78954. References: <3g3jfo$4rr@chopin.udel.edu> <1995Jan24.143256.39063@cc.usu.edu> <3g5n75$a1g@chopin.udel.edu>
  78955. Nntp-Posting-Host: watsun.cc.columbia.edu
  78956. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  78957.  
  78958. In article <3g5n75$a1g@chopin.udel.edu>,
  78959. Jerry Alexandratos <darkstar@chopin.udel.edu> wrote:
  78960. >In article <1995Jan24.143256.39063@cc.usu.edu>,
  78961. >Joe Doupnik <jrd@cc.usu.edu> wrote:
  78962. >:In article <3g3jfo$4rr@chopin.udel.edu>, darkstar@chopin.udel.edu (Jerry Alexandratos) writes:
  78963. >:> 
  78964. >:> I don't know what I'm missing here.  I want to create a pcget and
  78965. >:> pcsend macro similar to the ones that I use with C-Kermit 5A(190) to
  78966. >:> automatically send and receive files from another computers.
  78967. >
  78968. Maybe you could be more specific about exactly which two kinds of computers
  78969. you are trying to do this for, and what the "other" version of Kermit is.
  78970.  
  78971. >:> My guess is that C-Kermit isn't interpretting the string correctly. 
  78972. >:> I've checked and everything says that it's using 8-bit modes, etc...
  78973. >
  78974. You're not being clear about which Kermit program is sending the APC,
  78975. which one is supposed to be receiving it, etc.
  78976.  
  78977. >So I guess this means that macros like pcget and pcsend will only work
  78978. >with with C-Kermit.  Dang!  And I was hoping to emulate similar
  78979. >functionality from the pc end of a MSK to C-Kermit connection.
  78980. >
  78981. Of course it works.  Just read the documentation and follow the instructions.
  78982.  
  78983. For C-Kermit 5A(190), which I assume in your case is the "APC sender", read
  78984. section 3.1 of ckcker.upd.
  78985.  
  78986. For MS-DOS Kermit as the "APC receiver", there are certain slight variations
  78987. that depend on the program version.  Version 3.12 and earlier did not have
  78988. this feature.  Version 3.13 was the first to support APC, and by default it
  78989. was "ON".  However, during 3.13's lifetime we received a number of comments
  78990. stating that there were certain risks to having it on by default, and
  78991. therefore it was better to have it OFF by default in hopes that users would
  78992. do some reading to figure out how to turn it ON and hopefully see the
  78993. accompanying material on the risks.  This was done in version 3.14.  Read
  78994. about it in section 10 of the KERMIT.UPD file that comes with this version.
  78995.  
  78996. Basically, all you have to do is tell MS-DOS Kermit to "set term apc on".
  78997.  
  78998. And on the subject of APC, note that C-Kermit 5A(190) (in the UNIX, VMS,
  78999. and OS/2 versions) now can itself be an APC receiver, and MS-DOS Kermit 3.14
  79000. can be an APC sender.
  79001.  
  79002. If you have any further problems after reading the documentation, report them
  79003. by e-mail to kermit@columbia.edu.
  79004.  
  79005. - Frank
  79006.  
  79007. From news@columbia.edu Tue Jan 24 15:19:18 1995
  79008. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04588
  79009.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 26 Jan 1995 04:54:43 -0500
  79010. Received: by apakabar.cc.columbia.edu id AA05220
  79011.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 26 Jan 1995 04:54:41 -0500
  79012. Newsgroups: comp.protocols.kermit.misc
  79013. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!udel!gatech!newsxfer.itd.umich.edu!agate!library.ucla.edu!csulb.edu!csus.edu!netcom.com!jzero
  79014. From: jzero@netcom.com (Jim Nakamura)
  79015. Subject: Can't connect at 28.8  :(
  79016. Message-Id: <jzeroD2x187.J3p@netcom.com>
  79017. Organization: NETCOM On-line Communication Services (408 261-4700 guest)
  79018. Date: Tue, 24 Jan 1995 15:19:18 GMT
  79019. Lines: 38
  79020. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  79021.  
  79022. Whenever I connect to internet service provider, I get the message
  79023.  
  79024.     CONNECT 14400/V32/NONE
  79025.     Can't change speed to 14400
  79026.  
  79027. I am using Kermit(190) for Linux from a 486 PC Clone, together with
  79028. a 28.8 USR Sportster.
  79029.  
  79030. My .mykermrc file has the following relevant lines:
  79031.  
  79032. set delay 1                     ; I escape back quickly
  79033. set dial display on             ; I like to watch C-Kermit dial
  79034. set window 2                    ; Use 2 window slots
  79035. set block 3                     ; Use 16-bit CRC error checking        
  79036. set receive packet-length 1000  ; Use 1000-character Kermit packets 
  79037. set modem sportster
  79038. set line /dev/ttyS1
  79039. set speed 115200
  79040. set file type text
  79041. set file name lit
  79042. set dial init-string AT&F&A3&B1&H1&R2&D2&C1M0X4S0=0S7=90\{13}
  79043.  
  79044.  
  79045. I copied my init string from the comm program which came with my
  79046. modem, thinking these people knew more than I.
  79047.  
  79048. Can anyone suggest why I am not connecting at better rates?
  79049.  
  79050. P.S., I noticed the above init string includes an &R2 which apparently
  79051. means "RX to DTE/RTS high".  Could someone please explain this
  79052. jibberish?  (-;
  79053.  
  79054. Thanks,
  79055. Jim.
  79056.  
  79057.  
  79058. -- 
  79059. jzero@netcom.com
  79060.  
  79061. From news@columbia.edu Tue Jan 24 02:43:34 1995
  79062. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12009
  79063.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 26 Jan 1995 08:26:41 -0500
  79064. Received: by apakabar.cc.columbia.edu id AA23332
  79065.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 26 Jan 1995 08:26:38 -0500
  79066. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!news.duke.edu!news-feed-1.peachnet.edu!emory!cs.utk.edu!stc06.CTD.ORNL.GOV!rsg1.er.usgs.gov!jobone!lynx.unm.edu!news
  79067. From: galway@chtm.eece.unm.edu (Denis McKeon)
  79068. Newsgroups: comp.protocols.kermit.misc
  79069. Subject: Re: finish (no, not finnish!)
  79070. Date: Tue, 24 Jan 95 09:43:34 MST
  79071. Organization: Connemara - Computing for People
  79072. Lines: 41
  79073. Message-Id: <3g3anr$rcs@lynx.unm.edu>
  79074. References: <1995Jan23.113710@hnrc.tufts.edu> <1995Jan23.113505.38853@cc.usu.edu>
  79075. Reply-To: galway@chtm.eece.unm.edu
  79076. Nntp-Posting-Host: chtm.eece.unm.edu
  79077. X-Copyright: Copyright 1994 by Denis McKeon
  79078. X-Mailer: Mail User's Shell (7.0.1 12/13/89)
  79079. To: 
  79080. Status: OR
  79081.  
  79082. [article both posted and mailed]
  79083.  
  79084. In <1995Jan23.113505.38853@cc.usu.edu>,
  79085. Joe Doupnik <jrd@cc.usu.edu> wrote:
  79086. >In article <1995Jan23.113710@hnrc.tufts.edu>, jerry@hnrc.tufts.edu (Jerry Dallal) writes:
  79087. >> In previous PC versions, all I needed to type was 'f' at my PC's KErmit prompt
  79088. >> to send a finish to a mainframe version working as a server.  With version 
  79089. >> 3.14, 'f' is unrecognized and 'fi' is required.  I assume this is because 
  79090. >> the forward command has been added.  Would it be a major violation of style
  79091. >> if 'f' were allowed to continue to default to finish?
  79092. >---------
  79093. >    It would not be a swift idea. We already have too many "nicname"
  79094. >commands as it is. Surely FIN is not to cumbersome to type. But if your
  79095. >preferences are strong then DEFINE F FINISH. Self help.
  79096. >    Joe D.
  79097.  
  79098. I agree about the "nickname" commands - one person's nifty abbreviation
  79099. is another's non-mnemonic mystery - but I tried applying Joe's solution
  79100. to re-name an existing command (or its nickname) and failed:
  79101.  
  79102.     MS-Kermit>ver
  79103.     IBM-PC MS-DOS Kermit: 3.13 8 July 1993 patch level 17
  79104.     MS-Kermit>show macro x
  79105.      No macro(s)
  79106.      Free space (bytes) for names: 612
  79107.  
  79108.     MS-Kermit>x
  79109.     ?Transmit file not found
  79110.     ?Timeout
  79111.     MS-Kermit>define x push
  79112.     MS-Kermit>show macro x
  79113.      X = push
  79114.      Free space (bytes) for names: 607
  79115.  
  79116.     MS-Kermit>x
  79117.     ?Transmit file not found
  79118.     ?Timeout
  79119.     MS-Kermit> 
  79120.  
  79121. Any suggestions on how to use 'x' as a macro name?  
  79122.  
  79123.  
  79124. From news@columbia.edu Thu Jan 26 13:46:08 1995
  79125. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13021
  79126.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 26 Jan 1995 08:46:18 -0500
  79127. Received: by apakabar.cc.columbia.edu id AA24289
  79128.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 26 Jan 1995 08:46:16 -0500
  79129. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  79130. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  79131. Newsgroups: comp.protocols.kermit.misc
  79132. Subject: Re: Can't connect at 28.8  :(
  79133. Date: 26 Jan 1995 13:46:08 GMT
  79134. Organization: Columbia University
  79135. Lines: 61
  79136. Message-Id: <3g8930$nms@apakabar.cc.columbia.edu>
  79137. References: <jzeroD2x187.J3p@netcom.com>
  79138. Nntp-Posting-Host: watsun.cc.columbia.edu
  79139. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  79140.  
  79141. In article <jzeroD2x187.J3p@netcom.com>, Jim Nakamura <jzero@netcom.com> wrote:
  79142. >Whenever I connect to internet service provider, I get the message
  79143. >
  79144. >    CONNECT 14400/V32/NONE
  79145. >    Can't change speed to 14400
  79146. >
  79147. >I am using Kermit(190) for Linux from a 486 PC Clone, together with
  79148. >a 28.8 USR Sportster.
  79149. >
  79150. >My .mykermrc file has the following relevant lines:
  79151. >
  79152. >set delay 1                     ; I escape back quickly
  79153. >set dial display on             ; I like to watch C-Kermit dial
  79154. >set window 2                    ; Use 2 window slots
  79155. >set block 3                     ; Use 16-bit CRC error checking        
  79156. >set receive packet-length 1000  ; Use 1000-character Kermit packets 
  79157. >set modem sportster
  79158. >set line /dev/ttyS1
  79159. >set speed 115200
  79160. >set file type text
  79161. >set file name lit
  79162. >set dial init-string AT&F&A3&B1&H1&R2&D2&C1M0X4S0=0S7=90\{13}
  79163. >
  79164. >I copied my init string from the comm program which came with my
  79165. >modem, thinking these people knew more than I.
  79166. >
  79167. >Can anyone suggest why I am not connecting at better rates?
  79168. >
  79169. As explained in the manual (just type "help" at the C-Kermit prompt
  79170. to find out more about the manual), there are numerous ways in which
  79171. you have to get the software (Kermit in this case) and the modem to
  79172. agree.  Perhaps chief among them is the treatment of the interface speed.
  79173.  
  79174. Modems can be configured to make their interface speed follow the
  79175. connection speed, or to keep their interface speed fixed no matter what
  79176. the connection speed turns out to be.
  79177.  
  79178. Modern high-speed, error-correcting, data-compressing modems should
  79179. generally be configured in the latter way: with interface speed fixed,
  79180. or locked.
  79181.  
  79182. You have set your modem this way (&B1), but you did not set Kermit this
  79183. way, so Kermit tried to change its interface speed to 14400 when it got
  79184. the "CONNECT 14400" message from the modem.  Luckily, it could not do
  79185. this, since evidently 14400 is not a supported speed on your computer.
  79186.  
  79187. The trick is to tell Kermit to use the highest reliable interface speed it
  79188. and your computer and your modem all have in common, and to use RTS/CTS
  79189. "hardware" flow control if available, and then before dialing, tell Kermit
  79190. to "set dial speed-matching off".  See pages 60-61 of "Using C-Kermit" for
  79191. a longer explanation.
  79192.  
  79193. >P.S., I noticed the above init string includes an &R2 which apparently
  79194. >means "RX to DTE/RTS high".  Could someone please explain this
  79195. >jibberish?  (-;
  79196. >
  79197. It probably means "don't let the modem send data to the computer unless
  79198. the computer is asserting the Request To Send (RTS) signal".  That's one
  79199. half (one direction) of the bidirectional RTS/CTS flow-control regime.
  79200.  
  79201. - Frank
  79202.  
  79203. From news@columbia.edu Tue Jan 24 19:12:55 1995
  79204. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05959
  79205.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 26 Jan 1995 14:25:33 -0500
  79206. Received: by apakabar.cc.columbia.edu id AA20918
  79207.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 26 Jan 1995 14:25:32 -0500
  79208. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!udel!news-4.nss.udel.edu!chopin.udel.edu!not-for-mail
  79209. From: darkstar@chopin.udel.edu (Jerry Alexandratos)
  79210. Newsgroups: comp.protocols.kermit.misc
  79211. Subject: Help With MSK 3.14 And APC
  79212. Date: 24 Jan 1995 14:12:55 -0500
  79213. Organization: Broken Toys Unlimited
  79214. Lines: 29
  79215. Message-Id: <3g3jfo$4rr@chopin.udel.edu>
  79216. Nntp-Posting-Host: chopin.udel.edu
  79217. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  79218.  
  79219.  
  79220. I don't know what I'm missing here.  I want to create a pcget and
  79221. pcsend macro similar to the ones that I use with C-Kermit 5A(190) to
  79222. automatically send and receive files from another computers.
  79223.  
  79224. I can't get this to work right.  If I do "apc <string>" when connected
  79225. to my host, I get the string placed and executed.
  79226.  
  79227. However if I do this when the host is using C-Kermit, I get an error
  79228. complaining that it doesn't recognize the command or string.
  79229.  
  79230. For example, `apc r' prints r on the command line.  If I'm in C-Kermit on
  79231. the host (remember MSK locally) and I do `apc r' I see _r?no keywords
  79232. match _r \ found on the C-Kermit> prompt.
  79233.  
  79234. My guess is that C-Kermit isn't interpretting the string correctly. 
  79235. I've checked and everything says that it's using 8-bit modes, etc...
  79236.  
  79237. Am I missing something so obvious that it's silly.  I get the
  79238. impression from the documentation that this should work.
  79239.  
  79240. Thanks in advance...
  79241.  
  79242.         --Jerry
  79243.  
  79244. -- 
  79245. |>  Jerry Alexandratos                **  "vengo de la tierra del    <|
  79246. |>  darkstar@strauss.udel.edu         **   fuego ten cuidado cuando  <|
  79247. |>  darkstar@canary.pearson.udel.edu  **   llamas mi nombre..."      <|
  79248.  
  79249. From news@columbia.edu Tue Jan 24 18:18:08 1995
  79250. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28639
  79251.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 26 Jan 1995 18:32:21 -0500
  79252. Received: by apakabar.cc.columbia.edu id AA15445
  79253.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 26 Jan 1995 18:32:13 -0500
  79254. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!news2.near.net!das-news2.harvard.edu!cantaloupe.srv.cs.cmu.edu!bb3.andrew.cmu.edu!andrew.cmu.edu!ml5d+
  79255. From: Mark Kuang Luo <luo+@CMU.EDU>
  79256. Newsgroups: comp.protocols.kermit.misc
  79257. Subject: Need help.
  79258. Date: Tue, 24 Jan 1995 13:18:08 -0500
  79259. Organization: Senior, Social & Decision Sciences, Carnegie Mellon, Pittsburgh, PA
  79260. Lines: 8
  79261. Message-Id: <8j9IFUu00iWP859O8s@andrew.cmu.edu>
  79262. Nntp-Posting-Host: andrew.cmu.edu
  79263. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  79264.  
  79265. Hi:
  79266.     I need to find out for my networks class how Kermit allows all bytes
  79267. to be displayed in 7-bit ASCII format. Is there a FAQ for Kermit, or a
  79268. www page? Or if anyone has a short explanation, it would be appreciated.
  79269.  
  79270. Thanks
  79271. _/ason
  79272.  
  79273.  
  79274. From news@columbia.edu Tue Jan 24 18:29:37 1995
  79275. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02074
  79276.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 26 Jan 1995 19:58:10 -0500
  79277. Received: by apakabar.cc.columbia.edu id AA19759
  79278.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 26 Jan 1995 19:15:11 -0500
  79279. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!news2.near.net!emerald.tufts.edu!news.hnrc.tufts.edu!jerry
  79280. From: jerry@hnrc.tufts.edu (Jerry Dallal)
  79281. Newsgroups: comp.protocols.kermit.misc
  79282. Subject: Re: finish (no, not finnish!)
  79283. Date: 24 Jan 95 13:29:37 -0500
  79284. Organization: USDA HNRC at Tufts University
  79285. Lines: 6
  79286. Message-Id: <1995Jan24.132937@hnrc.tufts.edu>
  79287. References: <1995Jan23.113710@hnrc.tufts.edu> <1995Jan23.113505.38853@cc.usu.edu> <3g3anr$rcs@lynx.unm.edu>
  79288. Nntp-Posting-Host: mint.hnrc.tufts.edu
  79289. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  79290.  
  79291. In article <3g3anr$rcs@lynx.unm.edu>, galway@chtm.eece.unm.edu (Denis McKeon) writes:
  79292. > Any suggestions on how to use 'x' as a macro name?  
  79293.  
  79294. In 3.14 I was able to define f but not h.  h is help no matter what I do to it.
  79295.  
  79296. From news@columbia.edu Tue Jan 24 21:19:45 1995
  79297. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21922
  79298.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 27 Jan 1995 01:35:39 -0500
  79299. Received: by apakabar.cc.columbia.edu id AA22882
  79300.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 27 Jan 1995 01:35:38 -0500
  79301. Newsgroups: comp.protocols.kermit.misc
  79302. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!zombie.ncsc.mil!news.duke.edu!godot.cc.duq.edu!hudson.lm.com!newsfeed.pitt.edu!gatech!swrinde!howland.reston.ans.net!ix.netcom.com!netcom.com!helios
  79303. From: helios@netcom.com (Thomas David Nichols)
  79304. Subject: Re: MS-Kermit 3.14: Trailing comments
  79305. Message-Id: <heliosD2xHwy.8L@netcom.com>
  79306. Organization: Heliotrope Quality Systems
  79307. X-Newsreader: TIN [version 1.2 PL1]
  79308. References: <3fo2ib$c19@infosrv.rz.unibw-muenchen.de>
  79309. Date: Tue, 24 Jan 1995 21:19:45 GMT
  79310. Lines: 9
  79311. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  79312.  
  79313. Peter Schmolck (p41bsmk@kommsrv.rz.unibw-muenchen.de) wrote:
  79314. : Just wondering. And, of course, it would be nice to be able to comment
  79315. : single commands in macro definitions. Any leads?
  79316.  
  79317. Would it work to put full-line comments between the macro lines?  You 
  79318. could use spaces to place the comments on the right side of your screen.
  79319.  
  79320. -- 
  79321. David
  79322.  
  79323. From news@columbia.edu Tue Jan 24 07:17:37 1995
  79324. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25748
  79325.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 27 Jan 1995 03:31:27 -0500
  79326. Received: by apakabar.cc.columbia.edu id AA01242
  79327.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 27 Jan 1995 03:31:26 -0500
  79328. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!swrinde!howland.reston.ans.net!agate!dog.ee.lbl.gov!news.cs.utah.edu!cc.usu.edu!jrd
  79329. From: jrd@cc.usu.edu (Joe Doupnik)
  79330. Newsgroups: comp.protocols.kermit.misc
  79331. Subject: Re: finish (no, not finnish!)
  79332. Message-Id: <1995Jan24.131737.39041@cc.usu.edu>
  79333. Date: 24 Jan 95 13:17:37 MDT
  79334. References: <1995Jan23.113710@hnrc.tufts.edu> <1995Jan23.113505.38853@cc.usu.edu> <3g3anr$rcs@lynx.unm.edu>
  79335. Organization: Utah State University
  79336. Lines: 45
  79337. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  79338.  
  79339. In article <3g3anr$rcs@lynx.unm.edu>, galway@chtm.eece.unm.edu (Denis McKeon) writes:
  79340. > [article both posted and mailed]
  79341. > In <1995Jan23.113505.38853@cc.usu.edu>,
  79342. > Joe Doupnik <jrd@cc.usu.edu> wrote:
  79343. >>In article <1995Jan23.113710@hnrc.tufts.edu>, jerry@hnrc.tufts.edu (Jerry Dallal) writes:
  79344. >>> In previous PC versions, all I needed to type was 'f' at my PC's KErmit prompt
  79345. >>> to send a finish to a mainframe version working as a server.  With version 
  79346. >>> 3.14, 'f' is unrecognized and 'fi' is required.  I assume this is because 
  79347. >>> the forward command has been added.  Would it be a major violation of style
  79348. >>> if 'f' were allowed to continue to default to finish?
  79349. >>---------
  79350. >>    It would not be a swift idea. We already have too many "nicname"
  79351. >>commands as it is. Surely FIN is not to cumbersome to type. But if your
  79352. >>preferences are strong then DEFINE F FINISH. Self help.
  79353. >>    Joe D.
  79354. > I agree about the "nickname" commands - one person's nifty abbreviation
  79355. > is another's non-mnemonic mystery - but I tried applying Joe's solution
  79356. > to re-name an existing command (or its nickname) and failed:
  79357. >     MS-Kermit>ver
  79358. >     IBM-PC MS-DOS Kermit: 3.13 8 July 1993 patch level 17
  79359. >     MS-Kermit>show macro x
  79360. >      No macro(s)
  79361. >      Free space (bytes) for names: 612
  79362. >     MS-Kermit>x
  79363. >     ?Transmit file not found
  79364. >     ?Timeout
  79365. >     MS-Kermit>define x push
  79366. >     MS-Kermit>show macro x
  79367. >      X = push
  79368. >      Free space (bytes) for names: 607
  79369. >     MS-Kermit>x
  79370. >     ?Transmit file not found
  79371. >     ?Timeout
  79372. >     MS-Kermit> 
  79373. > Any suggestions on how to use 'x' as a macro name?  
  79374. --------
  79375.     Yes, use "F" as in my example above. Not all macro names in
  79376. conflict with exiting names will be accepted. 
  79377.     Joe D. 
  79378.  
  79379. From news@columbia.edu Wed Jan 25 16:00:46 1995
  79380. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28007
  79381.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 27 Jan 1995 04:34:54 -0500
  79382. Received: by apakabar.cc.columbia.edu id AA03922
  79383.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 27 Jan 1995 04:34:53 -0500
  79384. Path: news.columbia.edu!sol.ctr.columbia.edu!newsxfer.itd.umich.edu!gatech!swrinde!pipex!uunet!mozz.unh.edu!toto.plymouth.edu!toto.plymouth.edu!not-for-mail
  79385. From: cyncam@toto.plymouth.edu (Cynthia Campbell)
  79386. Newsgroups: comp.protocols.kermit.misc
  79387. Subject: Is this newsgroup for mac users of kermit as well?
  79388. Date: 25 Jan 1995 11:00:46 -0500
  79389. Organization: Plymouth State College
  79390. Lines: 3
  79391. Sender: cyncam@toto.plymouth.edu
  79392. Distribution: world
  79393. Message-Id: <3g5sje$fl@toto.plymouth.edu>
  79394. Nntp-Posting-Host: toto.plymouth.edu
  79395. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  79396.  
  79397. HI. I left a message some time ago but later realized that kermit is
  79398. mostly not used by macs so I'd appreciate it if someone could leave a 
  79399. message as to whether this news group is geared to non-mac users? Thanks. cc.
  79400.  
  79401. From news@columbia.edu Thu Jan 26 23:55:32 1995
  79402. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29246
  79403.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 27 Jan 1995 05:13:48 -0500
  79404. Received: by apakabar.cc.columbia.edu id AA05304
  79405.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 27 Jan 1995 05:13:47 -0500
  79406. Newsgroups: comp.protocols.kermit.misc
  79407. Path: news.columbia.edu!panix!news.mathworks.com!news.duke.edu!eff!news.umbc.edu!haven.umd.edu!purdue!mozo.cc.purdue.edu!news.physics.purdue.edu!london.physics.purdue.edu!korty
  79408. From: korty@london.physics.purdue.edu (Andrew J. Korty)
  79409. Subject: File Transfers Fail Uploading but not Downloading!
  79410. Message-Id: <D31EGK.Mo3@physics.purdue.edu>
  79411. Sender: usenet@physics.purdue.edu (News Administration)
  79412. Organization: Physics Department, Purdue University
  79413. Date: Thu, 26 Jan 1995 23:55:32 GMT
  79414. Lines: 22
  79415. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  79416.  
  79417. The problem is this: I can download beautifully (9K packets at 1850
  79418. CPS on a 19200 device with no harware compression), but when I try to
  79419. upload, I can only send a few packets.  When the file is small (under
  79420. about 3 packets), I get amazing transfer rates, as high as 7500 CPS!!!
  79421.  
  79422. I'm using C-Kermit for OS/2 on my PC and C-Kermit on the remote host
  79423. also.  I've tried this with MS-Kermit on this end under both DOS and
  79424. OS/2 (with MS-Kermit the problem is even worse; can send absolutely no
  79425. more than one packet), and I've tried uploading to different remote
  79426. machines with different C-Kermit edits.  Therefore, I think the
  79427. problem must be my DOV (data-over-voice) unit.  If you're not familiar
  79428. with these, they are Hayes compatible modems that allow you to connect
  79429. and talk on the phone at the same time.  It's a direct connection to
  79430. the remote dialup server.
  79431.  
  79432. This is my last resort; I've spoken with system administrators and
  79433. they have never even heard of such problems.  I've tried everything I
  79434. can think of; switching COM drivers, changing the flow control and
  79435. speed, changing the packet size ... everything,
  79436.  
  79437. Thanks in advance ...
  79438. Andy
  79439.  
  79440. From news@columbia.edu Fri Jan 27 06:17:43 1995
  79441. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01472
  79442.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 27 Jan 1995 06:17:43 -0500
  79443. Received: by apakabar.cc.columbia.edu id AA07882
  79444.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 27 Jan 1995 06:17:37 -0500
  79445. Path: news.columbia.edu!sol.ctr.columbia.edu!hamblin.math.byu.edu!yvax.byu.edu!news.cuny.edu!caen!spool.mu.edu!torn!news.unb.ca!UNBVM1.CSD.UNB.CA
  79446. Newsgroups: comp.protocols.kermit.misc
  79447. Subject: HELP: 8-bit-quote and C-Kermit 5A(188)
  79448. Message-Id: <25JAN95.00282939.0029@UNBVM1.CSD.UNB.CA>
  79449. From: "Bernie Connors, UNB, New Brunswick, CANADA, eh!" <Q56X@unb.ca>
  79450. Date: 25 JAN 95 00:15:43 AST
  79451. Sender: usenet@unb.ca
  79452. Organization: The University of New Brunswick
  79453. Nntp-Posting-Host: unbvm1.csd.unb.ca
  79454. Lines: 16
  79455. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  79456.  
  79457. Hi,
  79458.  
  79459. Can anybody tell me how to set the "8-bit-quote" to "off" with
  79460. C-Kermit 5A(188) 23 Nov 1992?
  79461.  
  79462. I tried "set ?" but I could not find a command that could be used to
  79463. turn the 8th-bit-quoting off.
  79464.  
  79465. Thanks....Bernie.
  79466.  
  79467. ____________________________________________________________
  79468. |  Bernie Connors         |  Dept of Geodesy and Geomatics |
  79469. |  Surveying Engineering  |  University of New Brunswick   |
  79470. |  (student)              |  Fredericton, New Brunswick    |
  79471. |  Q56X@unb.ca            |  Canada                        |
  79472. |_________________________|________________________________|
  79473.  
  79474. From news@columbia.edu Wed Jan 25 16:37:47 1995
  79475. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22597
  79476.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 27 Jan 1995 07:27:56 -0500
  79477. Received: by apakabar.cc.columbia.edu id AA22501
  79478.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 27 Jan 1995 07:27:54 -0500
  79479. Path: news.columbia.edu!sol.ctr.columbia.edu!news.cs.columbia.edu!news.pipeline.com!swiss.ans.net!gatech!udel!news-4.nss.udel.edu!chopin.udel.edu!not-for-mail
  79480. From: darkstar@chopin.udel.edu (Jerry Alexandratos)
  79481. Newsgroups: comp.protocols.kermit.misc
  79482. Subject: Re: Help With MSK 3.14 And APC
  79483. Date: 25 Jan 1995 11:37:47 -0500
  79484. Organization: Broken Toys Unlimited
  79485. Lines: 79
  79486. Message-Id: <3g5uor$j8f@chopin.udel.edu>
  79487. References: <3g3jfo$4rr@chopin.udel.edu> <1995Jan24.143256.39063@cc.usu.edu> <3g5n75$a1g@chopin.udel.edu> <3g5ogv$glp@apakabar.cc.columbia.edu>
  79488. Nntp-Posting-Host: chopin.udel.edu
  79489. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  79490.  
  79491. In article <3g5ogv$glp@apakabar.cc.columbia.edu>,
  79492. Frank da Cruz <fdc@watsun.cc.columbia.edu> wrote:
  79493. :In article <3g5n75$a1g@chopin.udel.edu>,
  79494. :Jerry Alexandratos <darkstar@chopin.udel.edu> wrote:
  79495. :>In article <1995Jan24.143256.39063@cc.usu.edu>,
  79496. :>Joe Doupnik <jrd@cc.usu.edu> wrote:
  79497. :>:In article <3g3jfo$4rr@chopin.udel.edu>, darkstar@chopin.udel.edu (Jerry Alexandratos) writes:
  79498. :>:> 
  79499. :>:> I don't know what I'm missing here.  I want to create a pcget and
  79500. :>:> pcsend macro similar to the ones that I use with C-Kermit 5A(190) to
  79501. :>:> automatically send and receive files from another computers.
  79502. :>
  79503. :Maybe you could be more specific about exactly which two kinds of computers
  79504. :you are trying to do this for, and what the "other" version of Kermit is.
  79505. :
  79506. :>:> My guess is that C-Kermit isn't interpretting the string correctly. 
  79507. :>:> I've checked and everything says that it's using 8-bit modes, etc...
  79508. :>
  79509. :You're not being clear about which Kermit program is sending the APC,
  79510. :which one is supposed to be receiving it, etc.
  79511. :
  79512. :>So I guess this means that macros like pcget and pcsend will only work
  79513. :>with with C-Kermit.  Dang!  And I was hoping to emulate similar
  79514. :>functionality from the pc end of a MSK to C-Kermit connection.
  79515. :>
  79516. :Of course it works.  Just read the documentation and follow the instructions.
  79517. :
  79518. :For C-Kermit 5A(190), which I assume in your case is the "APC sender", read
  79519. :section 3.1 of ckcker.upd.
  79520. :
  79521. :For MS-DOS Kermit as the "APC receiver", there are certain slight variations
  79522. :that depend on the program version.  Version 3.12 and earlier did not have
  79523. :this feature.  Version 3.13 was the first to support APC, and by default it
  79524. :was "ON".  However, during 3.13's lifetime we received a number of comments
  79525. :stating that there were certain risks to having it on by default, and
  79526. :therefore it was better to have it OFF by default in hopes that users would
  79527. :do some reading to figure out how to turn it ON and hopefully see the
  79528. :accompanying material on the risks.  This was done in version 3.14.  Read
  79529. :about it in section 10 of the KERMIT.UPD file that comes with this version.
  79530. :
  79531. :Basically, all you have to do is tell MS-DOS Kermit to "set term apc on".
  79532. :
  79533. :And on the subject of APC, note that C-Kermit 5A(190) (in the UNIX, VMS,
  79534. :and OS/2 versions) now can itself be an APC receiver, and MS-DOS Kermit 3.14
  79535. :can be an APC sender.
  79536. :
  79537. :If you have any further problems after reading the documentation, report them
  79538. :by e-mail to kermit@columbia.edu.
  79539. :
  79540. :- Frank
  79541.  
  79542. Sorry, I apoligize I guess I wasn't clear enough, or maybe I should've
  79543. quoted the original post a little more than what I did.
  79544.  
  79545. The ignorance is mine in this matter.  I didn't think that I would have
  79546. to be in terminal mode to make these macros work from the MSK side when
  79547. I was using MSK locally and CK on the host.
  79548.  
  79549. However, Joe's explanation that you need to be in terminal mode for the
  79550. APC commands to be received straightened everything out for me.
  79551.  
  79552. I didn't mean that the pcsend/get macros don't work at all.  They do. 
  79553. I should know, I use them almost everyday!  What I meant was that there
  79554. was no way to do the same functionality using APC with MSK on the local
  79555. machine and CK on the host because there was no terminal emulation
  79556. present (since I would have to escape back to the command line to
  79557. execute them).
  79558.  
  79559. Damn!  Improper pronount/subject reference.  Maybe I should've listened
  79560. to my elementary school grammar teacher with a little more fervor?  8)
  79561.  
  79562. Thanks for all the input though.
  79563.  
  79564.         --Jerry
  79565.  
  79566. -- 
  79567. |>  Jerry Alexandratos                **  "vengo de la tierra del    <|
  79568. |>  darkstar@strauss.udel.edu         **   fuego ten cuidado cuando  <|
  79569. |>  darkstar@canary.pearson.udel.edu  **   llamas mi nombre..."      <|
  79570.  
  79571. From news@columbia.edu Fri Jan 27 14:01:22 1995
  79572. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08110
  79573.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 27 Jan 1995 09:01:28 -0500
  79574. Received: by apakabar.cc.columbia.edu id AA27341
  79575.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 27 Jan 1995 09:01:26 -0500
  79576. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  79577. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  79578. Newsgroups: comp.protocols.kermit.misc
  79579. Subject: Re: Need help.
  79580. Date: 27 Jan 1995 14:01:22 GMT
  79581. Organization: Columbia University
  79582. Lines: 21
  79583. Message-Id: <3gaubj$qma@apakabar.cc.columbia.edu>
  79584. References: <8j9IFUu00iWP859O8s@andrew.cmu.edu>
  79585. Nntp-Posting-Host: watsun.cc.columbia.edu
  79586. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  79587.  
  79588. In article <8j9IFUu00iWP859O8s@andrew.cmu.edu>,
  79589. Mark Kuang Luo  <luo+@CMU.EDU> wrote:
  79590. >I need to find out for my networks class how Kermit allows all bytes
  79591. >to be displayed in 7-bit ASCII format.  Or if anyone has a short
  79592. >explanation, it would be appreciated.
  79593. >
  79594. I think you are asking: how can Kermit transfer 8-bit data over 7-bit
  79595. communication links?  You can find the answer in the Kermit protocol
  79596. specification:
  79597.  
  79598.   Frank da Cruz, "Kermit, A File Transfer Protocol", Digital Press /
  79599.   Butterworth Heinemann, Woburn, MA, 1987, 379 pages, ISBN 0-932376-88-6.
  79600.  
  79601. Your school library probably has a copy.
  79602.  
  79603. >Is there a FAQ for Kermit, or a www page
  79604. >
  79605. Yes to both.  http://www.columbia.edu/kermit/.  You'll find the FAQ in
  79606. "Further Information".  Also by ftp to kermit.columbia.edu, kermit/FAQ.TXT.
  79607.  
  79608. - Frank
  79609.  
  79610. From news@columbia.edu Fri Jan 27 13:16:07 1995
  79611. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08232
  79612.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 27 Jan 1995 09:02:50 -0500
  79613. Received: by apakabar.cc.columbia.edu id AA27427
  79614.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 27 Jan 1995 09:02:49 -0500
  79615. Path: news.columbia.edu!panix!zip.eecs.umich.edu!newsxfer.itd.umich.edu!gatech!howland.reston.ans.net!news.sprintlink.net!EU.net!ub4b!idefix.CS.kuleuven.ac.be!news.fundp.ac.be!Newsmaster
  79616. From: jlg@fundp.ac.be (Jean-Luc GOFFIN)
  79617. Newsgroups: comp.protocols.kermit.misc
  79618. Subject: Re: Kermit and TCP/IP 32
  79619. Date: 27 Jan 1995 13:16:07 GMT
  79620. Organization: FUNDP, Namur, Belgium
  79621. Lines: 34
  79622. Message-Id: <3garmn$ilq@hermes.fundp.ac.be>
  79623. References: <3f8i67$5bd@hasle.oslonett.no> <3fe553$m4m@apakabar.cc.columbia.edu>
  79624. Reply-To: jean-luc.goffin@fundp.ac.be
  79625. Nntp-Posting-Host: pc-jlg.cc.fundp.ac.be
  79626. Mime-Version: 1.0
  79627. X-Newsreader: WinVN 0.93.11
  79628. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  79629.  
  79630. >>Has anyone tried to make Kermit run over Windows for Workgroups
  79631. >>and TCP/IP 32?
  79632.  
  79633. >Yes.
  79634.  
  79635. >> ..... However some users need Windows for Workgroups, and then a 
  79636. >>packet driver will not work.
  79637. >>
  79638.  
  79639. >MS-DOS Kermit 3.14 comes with a file that includes an extensive
  79640. >discussion of this problem.
  79641.  
  79642. >Anonymous ftp to kermit.columbia.edu, directory kermit/archives, binary
  79643. >mode, file msvibm.zip.  Unzip with "-d" switch.  Read top-level READ.ME
  79644. >to get started.  Read the Windows for Workgroups of NETWORKS/SETUP.DOC
  79645. >for the information you are asking for.
  79646. >
  79647. >- Frank
  79648.  
  79649. I use ethernet adapters 3com Etherlink Family.  I have make modifications 
  79650. in files system.ini and protocol.ini.  
  79651. I have a error PRO0008E "invalid decimal digit in protocol.ini file" 
  79652. "error loading protman.ini" when I execute "net start" in autoexec.bat 
  79653. file.
  79654.  
  79655. Does anybody have experience (samples files.ini) installing kermit 3.14 
  79656. under Windows for Workgroups 3.11 with 3c509 or 3c503 Etherlink card, 
  79657. netbeui, ipx/spx compatible with netbios, MS-TCP/IP 3.11a.  
  79658.  
  79659.  
  79660. Thanks for any info,
  79661.  
  79662. Jean-Luc
  79663.  
  79664.  
  79665. From news@columbia.edu Fri Jan 27 14:04:28 1995
  79666. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08320
  79667.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 27 Jan 1995 09:04:31 -0500
  79668. Received: by apakabar.cc.columbia.edu id AA27569
  79669.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 27 Jan 1995 09:04:30 -0500
  79670. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  79671. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  79672. Newsgroups: comp.protocols.kermit.misc
  79673. Subject: Re: MS-Kermit 3.14: Trailing comments
  79674. Date: 27 Jan 1995 14:04:28 GMT
  79675. Organization: Columbia University
  79676. Lines: 18
  79677. Message-Id: <3gauhc$qte@apakabar.cc.columbia.edu>
  79678. References: <3fo2ib$c19@infosrv.rz.unibw-muenchen.de> <heliosD2xHwy.8L@netcom.com>
  79679. Nntp-Posting-Host: watsun.cc.columbia.edu
  79680. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  79681.  
  79682. In article <heliosD2xHwy.8L@netcom.com>,
  79683. Thomas David Nichols <helios@netcom.com> wrote:
  79684. >Peter Schmolck (p41bsmk@kommsrv.rz.unibw-muenchen.de) wrote:
  79685. >: Just wondering. And, of course, it would be nice to be able to comment
  79686. >: single commands in macro definitions. Any leads?
  79687. >
  79688. >Would it work to put full-line comments between the macro lines?  You 
  79689. >could use spaces to place the comments on the right side of your screen.
  79690. >
  79691. No, it would not work.  There is presently no reliable way to imbed
  79692. comments within an MS-DOS Kermit command, and a macro definition is a
  79693. command.  You can have full-line comments and trailing comments, but not
  79694. imbedded comments.
  79695.  
  79696. Yes, this is a desirable feature, and maybe it will appear in a future
  79697. release.
  79698.  
  79699. - Frank
  79700.  
  79701. From news@columbia.edu Fri Jan 27 14:07:54 1995
  79702. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08525
  79703.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 27 Jan 1995 09:07:59 -0500
  79704. Received: by apakabar.cc.columbia.edu id AA27782
  79705.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 27 Jan 1995 09:07:57 -0500
  79706. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  79707. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  79708. Newsgroups: comp.protocols.kermit.misc
  79709. Subject: Re: HELP: 8-bit-quote and C-Kermit 5A(188)
  79710. Date: 27 Jan 1995 14:07:54 GMT
  79711. Organization: Columbia University
  79712. Lines: 22
  79713. Message-Id: <3gaunq$r44@apakabar.cc.columbia.edu>
  79714. References: <25JAN95.00282939.0029@unbvm1.csd.unb.ca>
  79715. Nntp-Posting-Host: watsun.cc.columbia.edu
  79716. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  79717.  
  79718. In article <25JAN95.00282939.0029@unbvm1.csd.unb.ca>,
  79719. Bernie Connors, UNB, New Brunswick, CANADA, eh! <Q56X@UNB.CA> wrote:
  79720. >Can anybody tell me how to set the "8-bit-quote" to "off" with
  79721. >C-Kermit 5A(188) 23 Nov 1992?
  79722. >I tried "set ?" but I could not find a command that could be used to
  79723. >turn the 8th-bit-quoting off.
  79724. >
  79725. This is explained, clearly I hope, in the manual, "Using C-Kermit".
  79726.  
  79727. There is no explicit command to turn this feature off and on.  It is
  79728. used if PARITY is not NONE, i.e. if it is EVEN, ODD, MARK, or SPACE.
  79729.  
  79730. If PARITY is NONE, it is not used.
  79731.  
  79732. Note that Kermit will detect EVEN, ODD, or MARK parity automatically,
  79733. and will use 8th-bit prefixing (and/or locking shifts) if it is
  79734. detected, as it must do in order to transmit 8-bit data through a
  79735. 7-bit channel.
  79736.  
  79737. Also note that the current version of C-Kermit is 5A(190).
  79738.  
  79739. - Frank
  79740.  
  79741. From news@columbia.edu Fri Jan 27 14:18:29 1995
  79742. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09105
  79743.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 27 Jan 1995 09:18:35 -0500
  79744. Received: by apakabar.cc.columbia.edu id AA28829
  79745.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 27 Jan 1995 09:18:33 -0500
  79746. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  79747. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  79748. Newsgroups: comp.protocols.kermit.misc
  79749. Subject: Re: Is this newsgroup for mac users of kermit as well?
  79750. Date: 27 Jan 1995 14:18:29 GMT
  79751. Organization: Columbia University
  79752. Lines: 51
  79753. Message-Id: <3gavbl$s4o@apakabar.cc.columbia.edu>
  79754. References: <3g5sje$fl@toto.plymouth.edu>
  79755. Nntp-Posting-Host: watsun.cc.columbia.edu
  79756. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  79757.  
  79758. In article <3g5sje$fl@toto.plymouth.edu>,
  79759. Cynthia Campbell <cyncam@toto.plymouth.edu> wrote:
  79760. >HI. I left a message some time ago but later realized that kermit is
  79761. >mostly not used by macs so I'd appreciate it if someone could leave a 
  79762. >message as to whether this news group is geared to non-mac users?
  79763. >
  79764. It doesn't have to be.  There is a Macintosh version of Kermit and
  79765. everybody is free to use it and discuss it, but it's only fair to warn
  79766. you that it is not supported as well as MS-DOS Kermit, C-Kermit, or
  79767. IBM Mainframe Kermit, due to lack of Macintosh programmers available
  79768. to work on the project.
  79769.  
  79770. Mac Kermit was originally written here at Columbia University in the
  79771. days when we still had a staff of professional programmers for Kermit
  79772. software development.  Those days are long gone, and since then we
  79773. have relied on a succession of volunteer programmers elsewhere.  The
  79774. last of these succumbed to the exigencies of Real Life some years
  79775. ago, and since then the Macintosh-specific aspects of Mac Kermit have
  79776. remained relatively static, which would not be such a bad thing if
  79777. it were not for the fact that Macintosh hardware and OSs have been
  79778. changing out from under it at a rapid pace.  For example, Mac Kermit
  79779. suddenly lost its ability to download (receive) files when Mac OS 7.1
  79780. was released, because a particular system call started working
  79781. differently (I fixed this problem myself, but that should not be taken
  79782. as an indication that I know anything about Macintosh programming!).
  79783.  
  79784. The current version of Mac Kermit is 0.991(190), based on C-Kermit
  79785. 5A(190).  It has some problems and limitations, which are listed in the
  79786. accompanying "beware" file, but it is quite usable for many purposes and
  79787. has a good VT320 emulator.
  79788.  
  79789. Mac Kermit files, ftp from kermit.columbia.edu in text mode from the
  79790. kermit/f directory:
  79791.  
  79792.   ckm190.hqx -- current prerelease of Mac Kermit in BinHex 4.0 format
  79793.   ckmker.doc -- user documentation for 0.9(40), the previous release (1988)
  79794.   ckmker.ps  -- PostScript version of user documentation for 0.9(40)
  79795.   ckmker.bwr -- Notes about the current prerelease, FAQ's, etc
  79796.   ckmker.fon -- Notes about the new Mac Kermit terminal emulation font
  79797.  
  79798. and in the kermit/charsets directory:
  79799.  
  79800.   maclatin.* -- The new Mac Kermit font itself
  79801.  
  79802. Read the ckmker.bwr ("beware") file for further details.
  79803.  
  79804. Macintosh programmers with an MPW C 3.2 (or later) development system are
  79805. more than welcome to pitch in.  Nothing would please me more than to be
  79806. able to bring Mac Kermit back to life.
  79807.  
  79808. - Frank
  79809.  
  79810. From news@columbia.edu Fri Jan 27 14:27:00 1995
  79811. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09551
  79812.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 27 Jan 1995 09:27:08 -0500
  79813. Received: by apakabar.cc.columbia.edu id AA29531
  79814.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 27 Jan 1995 09:27:06 -0500
  79815. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  79816. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  79817. Newsgroups: comp.protocols.kermit.misc
  79818. Subject: Re: Help With MSK 3.14 And APC
  79819. Date: 27 Jan 1995 14:27:00 GMT
  79820. Organization: Columbia University
  79821. Lines: 34
  79822. Message-Id: <3gavrk$sq9@apakabar.cc.columbia.edu>
  79823. References: <3g3jfo$4rr@chopin.udel.edu> <3g5n75$a1g@chopin.udel.edu> <3g5ogv$glp@apakabar.cc.columbia.edu> <3g5uor$j8f@chopin.udel.edu>
  79824. Nntp-Posting-Host: watsun.cc.columbia.edu
  79825. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  79826.  
  79827. In article <3g5uor$j8f@chopin.udel.edu>,
  79828. Jerry Alexandratos <darkstar@chopin.udel.edu> wrote:
  79829. >...
  79830. >I didn't mean that the pcsend/get macros don't work at all.  They do. 
  79831. >I should know, I use them almost everyday!  What I meant was that there
  79832. >was no way to do the same functionality using APC with MSK on the local
  79833. >machine and CK on the host because there was no terminal emulation
  79834. >present (since I would have to escape back to the command line to
  79835. >execute them).
  79836. >
  79837. Maybe this will help.
  79838.  
  79839. There are different approaches to automating things.  If you want the
  79840. client (the "local" Kermit, the Kermit that is running on the PC on your
  79841. desk, or whatever) to control things, then you do this with a script
  79842. program using INPUT and OUTPUT and related commands to send commands to
  79843. the host and read and act on its responses.
  79844.  
  79845. If you want the host to control things, then your local Kermit must be
  79846. in terminal mode, and the host sends commands to it embedded in APC
  79847. sequences.
  79848.  
  79849. A third configuration has the host Kermit program in server mode, and
  79850. the local Kermit controlling it with SEND, GET, REMOTE, and FINISH
  79851. commands.  A fourth has the local Kermit in server mode and the remote
  79852. one controlling it in the same way.
  79853.  
  79854. Other combinations can be imagined, e.g. both Kermit programs running
  79855. scripts at the same time that interact with each other, but the main trick
  79856. is in appreciating that we don't have a "modeless" situation here, so when
  79857. automating things, the controlling script must be conscious of what mode
  79858. the controlled entity is in.
  79859.  
  79860. - Frank
  79861.  
  79862. From news@columbia.edu Fri Jan 27 14:38:51 1995
  79863. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10318
  79864.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 27 Jan 1995 09:38:59 -0500
  79865. Received: by apakabar.cc.columbia.edu id AA00667
  79866.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 27 Jan 1995 09:38:57 -0500
  79867. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  79868. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  79869. Newsgroups: comp.protocols.kermit.misc
  79870. Subject: Re: File Transfers Fail Uploading but not Downloading!
  79871. Date: 27 Jan 1995 14:38:51 GMT
  79872. Organization: Columbia University
  79873. Lines: 46
  79874. Message-Id: <3gb0hr$ki@apakabar.cc.columbia.edu>
  79875. References: <D31EGK.Mo3@physics.purdue.edu>
  79876. Nntp-Posting-Host: watsun.cc.columbia.edu
  79877. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  79878.  
  79879. In article <D31EGK.Mo3@physics.purdue.edu>,
  79880. Andrew J. Korty <korty@london.physics.purdue.edu> wrote:
  79881. >The problem is this: I can download beautifully (9K packets at 1850
  79882. >CPS on a 19200 device with no harware compression), but when I try to
  79883. >upload, I can only send a few packets.  When the file is small (under
  79884. >about 3 packets), I get amazing transfer rates, as high as 7500 CPS!!!
  79885. >
  79886. >I'm using C-Kermit for OS/2 on my PC and C-Kermit on the remote host
  79887. >also.  I've tried this with MS-Kermit on this end under both DOS and
  79888. >OS/2 (with MS-Kermit the problem is even worse; can send absolutely no
  79889. >more than one packet), and I've tried uploading to different remote
  79890. >machines with different C-Kermit edits.  Therefore, I think the
  79891. >problem must be my DOV (data-over-voice) unit.  If you're not familiar
  79892. >with these, they are Hayes compatible modems that allow you to connect
  79893. >and talk on the phone at the same time.  It's a direct connection to
  79894. >the remote dialup server.
  79895. >
  79896. Data connections are rarely symmetrical.  The fact that something works
  79897. in one direction is not a good predictor of success in the other
  79898. direction.
  79899.  
  79900. Yours are the classic symptoms of big buffers in the downstream direction,
  79901. tiny buffers in the upstream direction.  A common configuration, based on
  79902. the assumption that when one makes a dialup connection, the only upstream
  79903. traffic will be keystrokes (at most, 10 per second), but the downstream
  79904. traffic will be voluminous (the responses to your commands).
  79905.  
  79906. Where are these "buffers"?  Probably in the terminal server.  And in your
  79907. case maybe we also have something going on with the modems.  Maybe your
  79908. DOV modems allocate higher bandwidth upstream than down.
  79909.  
  79910. To cope with this situation, you can sometimes reconfigure the
  79911. communications equipment to be more symmetrical.  This requires digging
  79912. through the technical manuals for the devices involved.
  79913.  
  79914. But in any case, it is ESSENTIAL to institute the most effective possible
  79915. means of flow control at EVERY juncture along the communication path:
  79916. between your PC and the modem, between the answering modem and the
  79917. terminal server, and so on.  This should be "hardware" (RTS/CTS) flow
  79918. control if it is available.  In-band "software" flow control methods such
  79919. as Xon/Xoff do not work nearly as well.  Unfortunately RTS/CTS is not
  79920. always available.  For example, one popular terminal server model supports
  79921. RTS/CTS only in one direction (the downloading one, on the aforementioned
  79922. assumption) so uploads through these devices often run into trouble.
  79923.  
  79924. - Frank
  79925.  
  79926. From news@columbia.edu Sun Jan 25 03:06:33 1995
  79927. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22484
  79928.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 27 Jan 1995 12:12:13 -0500
  79929. Received: by apakabar.cc.columbia.edu id AA13813
  79930.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 27 Jan 1995 12:12:11 -0500
  79931. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!udel!gatech!swrinde!pipex!uunet!newstf01.news.aol.com!not-for-mail
  79932. From: drakepr@aol.com (DrakePR)
  79933. Newsgroups: comp.protocols.kermit.misc
  79934. Subject: Re: Wyse 60 emulation?
  79935. Date: 24 Jan 1995 22:06:33 -0500
  79936. Organization: America Online, Inc. (1-800-827-6364)
  79937. Lines: 1
  79938. Sender: root@newsbf02.news.aol.com
  79939. Message-Id: <3g4f7p$ksh@newsbf02.news.aol.com>
  79940. References: <3fi86h$ben@gateway.dircsa.org.au>
  79941. Reply-To: drakepr@aol.com (DrakePR)
  79942. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  79943.  
  79944. Are you looking of native mode or scan code mode???
  79945.  
  79946. From news@columbia.edu Fri Jan 27 19:34:09 1995
  79947. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11001
  79948.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 27 Jan 1995 16:46:28 -0500
  79949. Received: by apakabar.cc.columbia.edu id AA09361
  79950.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 27 Jan 1995 16:46:25 -0500
  79951. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!swrinde!howland.reston.ans.net!vixen.cso.uiuc.edu!rsm1.physics.uiuc.edu!lewart
  79952. From: d-lewart@uiuc.edu (Daniel S. Lewart)
  79953. Newsgroups: comp.protocols.kermit.misc
  79954. Subject: Re: Kermit 3.14 and resize
  79955. Date: 27 Jan 95 19:34:09 GMT
  79956. Organization: DSL Consulting
  79957. Lines: 11
  79958. Message-Id: <lewart.791235249@rsm1.physics.uiuc.edu>
  79959. References: <3fma83$hl4@kronos.fmi.fi> <3fooav$a95@apakabar.cc.columbia.edu> <791228596snz@childsoc.demon.co.uk>
  79960. Reply-To: d-lewart@uiuc.edu (Daniel S. Lewart)
  79961. Nntp-Posting-Host: rsm1.physics.uiuc.edu
  79962. X-Newsreader: NN version 6.5.0 (NOV)
  79963. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  79964.  
  79965. Mike@childsoc.demon.co.uk (Michael Bernardi) writes:
  79966.  
  79967. > Is there any chance that the KERMIT.EXE on it's own could be made available?
  79968. > I'm on a dialup connection and if the only thing that has changed is
  79969. > KERMIT.EXE then I'm actually duplicating my download.
  79970.  
  79971. The probability is 1:
  79972.     ftp://kermit.columbia.edu/kermit/bin/msvibm.exe
  79973.  
  79974. Daniel Lewart
  79975. d-lewart@uiuc.edu
  79976.  
  79977. From news@columbia.edu Fri Jan 27 19:13:00 1995
  79978. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16963
  79979.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 27 Jan 1995 18:21:00 -0500
  79980. Received: by apakabar.cc.columbia.edu id AA17572
  79981.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 27 Jan 1995 18:20:58 -0500
  79982. Path: news.columbia.edu!panix!news.mathworks.com!uunet!newsflash.concordia.ca!pavo.concordia.ca!g_rober
  79983. From: g_rober@pavo.concordia.ca (ROBERT, GABRIEL)
  79984. Newsgroups: comp.protocols.kermit.misc
  79985. Subject: Any way to do VT100 emulation in C-Kermit under FreeBSD ? HELP!
  79986. Date: 27 Jan 1995 14:13 -0500
  79987. Organization: Concordia University
  79988. Lines: 21
  79989. Distribution: world
  79990. Message-Id: <27JAN199514132218@pavo.concordia.ca>
  79991. Nntp-Posting-Host: pavo3.concordia.ca
  79992. News-Software: VAX/VMS VNEWS 1.41    
  79993. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  79994.  
  79995. Hello,
  79996.  
  79997. I need to emulate a VT100 terminal from FreeBSD version 1.  I am currently
  79998. using Kermit 5A(190).
  79999.  
  80000. A friend told me there was no way to do such a thing!
  80001.  
  80002. I hope somebody out ther would have a better answer: I am looking for:
  80003.     1) a way to do it from Kermit
  80004.     OR
  80005.     2) a VT-100 terminal emulation that I could use from FreeBSD 
  80006.        to contact the host.
  80007.  
  80008. (I am using a 386)
  80009.  
  80010. Thank you in advance: any help will be greatly appreciated
  80011.  
  80012. Gabriel ROBERT
  80013. Computer Science, 2nd year
  80014. Concordia University, CANADA
  80015.  
  80016.  
  80017. From news@columbia.edu Fri Jan 27 20:38:27 1995
  80018. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23816
  80019.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 27 Jan 1995 20:29:40 -0500
  80020. Received: by apakabar.cc.columbia.edu id AA26557
  80021.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 27 Jan 1995 20:29:39 -0500
  80022. Newsgroups: comp.protocols.kermit.misc
  80023. Path: news.columbia.edu!sol.ctr.columbia.edu!spool.mu.edu!uwm.edu!vixen.cso.uiuc.edu!howland.reston.ans.net!gatech!udel!news.mathworks.com!news.duke.edu!eff!news.umbc.edu!haven.umd.edu!purdue!mozo.cc.purdue.edu!news.physics.purdue.edu!london.physics.purdue.edu!korty
  80024. From: korty@london.physics.purdue.edu (Andrew J. Korty)
  80025. Subject: Re: File Transfers Fail Uploading but not Downloading!
  80026. Message-Id: <D33004.1Dp@physics.purdue.edu>
  80027. Sender: usenet@physics.purdue.edu (News Administration)
  80028. Organization: Physics Department, Purdue University
  80029. References: <D31EGK.Mo3@physics.purdue.edu> <3gb0hr$ki@apakabar.cc.columbia.edu>
  80030. Date: Fri, 27 Jan 1995 20:38:27 GMT
  80031. Lines: 40
  80032. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  80033.  
  80034. In article <3gb0hr$ki@apakabar.cc.columbia.edu>,
  80035. Frank da Cruz <fdc@watsun.cc.columbia.edu> wrote:
  80036.  
  80037. >Yours are the classic symptoms of big buffers in the downstream direction,
  80038. >tiny buffers in the upstream direction.  A common configuration, based on
  80039. >the assumption that when one makes a dialup connection, the only upstream
  80040. >traffic will be keystrokes (at most, 10 per second), but the downstream
  80041. >traffic will be voluminous (the responses to your commands).
  80042. >
  80043. >Where are these "buffers"?  Probably in the terminal server.  And in your
  80044. >case maybe we also have something going on with the modems.  Maybe your
  80045. >DOV modems allocate higher bandwidth upstream than down.
  80046. >
  80047. >To cope with this situation, you can sometimes reconfigure the
  80048. >communications equipment to be more symmetrical.  This requires digging
  80049. >through the technical manuals for the devices involved.
  80050.  
  80051. ... and having access to that communications equipment.  I doubt PUCC
  80052. would be to keen on such an extended level of customer service.
  80053.  
  80054. >But in any case, it is ESSENTIAL to institute the most effective possible
  80055. >means of flow control at EVERY juncture along the communication path:
  80056. >between your PC and the modem, between the answering modem and the
  80057. >terminal server, and so on.  This should be "hardware" (RTS/CTS) flow
  80058. >control if it is available.  In-band "software" flow control methods such
  80059. >as Xon/Xoff do not work nearly as well.  Unfortunately RTS/CTS is not
  80060. >always available.  For example, one popular terminal server model supports
  80061. >RTS/CTS only in one direction (the downloading one, on the aforementioned
  80062. >assumption) so uploads through these devices often run into trouble.
  80063.  
  80064. Well, I was using RTS/CTS between my PC and the modem, and no flow
  80065. control between the machine and the terminal server.  I've tried
  80066. changing these with no success.  I can't figure out what the modem
  80067. pool uses to communicate with the terminal server, and I don't think I
  80068. could change it if I needed to.
  80069.  
  80070. So, I guess I'm just hosed, unless other people start complaining
  80071. about this as well ...
  80072.  
  80073. Andy
  80074.  
  80075. From news@columbia.edu Sat Jan 28 09:46:23 1995
  80076. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15715
  80077.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 28 Jan 1995 06:16:32 -0500
  80078. Received: by apakabar.cc.columbia.edu id AA03273
  80079.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 28 Jan 1995 06:16:31 -0500
  80080. Newsgroups: comp.protocols.ppp,comp.protocols.kermit.misc
  80081. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!swrinde!cs.utexas.edu!news.sprintlink.net!news.indirect.com!monty
  80082. From: monty@indirect.com (Jim Monty)
  80083. Subject: [?] MS-DOS Kermit 3.14 and Dynamic IP Addresses
  80084. Message-Id: <D340HB.3yy@indirect.com>
  80085. Sender: usenet@indirect.com (Darin Wayrynen)
  80086. Organization: Internet Direct, indirect.com
  80087. Date: Sat, 28 Jan 1995 09:46:23 GMT
  80088. X-Newsreader: TIN [version 1.2 PL2]
  80089. Lines: 24
  80090. Xref: news.columbia.edu comp.protocols.ppp:8554 comp.protocols.kermit.misc:1738
  80091. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  80092.  
  80093. My Internet service provider recently "upgraded" its terminal servers and
  80094. now only supports dynamic IP addressing.  I've not yet been able to make
  80095. MS-DOS Kermit 3.14 work with any packet driver other than SLIP8250.COM,
  80096. and I can no longer use it because it requires static IP addresses. 
  80097.  
  80098. Has anyone out there found a way to use MS-DOS Kermit in a situation like
  80099. mine?  Should I try CSLIP?  Are there DOS-based PPP drivers that, unlike
  80100. Merit's ETHERPPP, will work with Kermit?
  80101.  
  80102.     I can't (won't!) run Windows.
  80103.  
  80104.     I _must_ run MS-DOS Kermit.  (Because I love it!)
  80105.  
  80106.     I can't communicate with my ISP.  (They're way too arrogant!)
  80107.  
  80108.     I'm desparate.
  80109.  
  80110. Please help.
  80111.  
  80112. ---
  80113. Jim Monty
  80114. monty@indirect.com
  80115.  
  80116. [Posted to both comp.protocols.ppp and comp.protocols.kermit.misc]
  80117.  
  80118. From news@columbia.edu Sun Jan 28 03:36:47 1995
  80119. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16910
  80120.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 28 Jan 1995 06:29:50 -0500
  80121. Received: by apakabar.cc.columbia.edu id AA05562
  80122.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 28 Jan 1995 06:29:47 -0500
  80123. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!udel!gatech!howland.reston.ans.net!pipex!uunet!newstf01.news.aol.com!newsbf02.news.aol.com!not-for-mail
  80124. From: drakepr@aol.com (DrakePR)
  80125. Newsgroups: comp.protocols.kermit.misc
  80126. Subject: C-Kermit (group 1 and group 2 modules) UNIX
  80127. Date: 27 Jan 1995 22:36:47 -0500
  80128. Organization: America Online, Inc. (1-800-827-6364)
  80129. Lines: 10
  80130. Sender: root@newsbf02.news.aol.com
  80131. Message-Id: <3gce4f$6at@newsbf02.news.aol.com>
  80132. Reply-To: drakepr@aol.com (DrakePR)
  80133. Nntp-Posting-Host: newsbf02.mail.aol.com
  80134. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  80135.  
  80136. I need to know how to maintain global variables after I pass in and out of
  80137. the user interface.  I checked the program logic manual, but it only made
  80138. a passing reference to the fact the variables are not normally kept when
  80139. calling group 2 fuctions.  
  80140.  
  80141. Please help me this is the last thing I need to get my custom version into
  80142. beta:)
  80143. thanks in advance,
  80144. Paul
  80145. DrakePR@aol.com
  80146.  
  80147. From news@columbia.edu Wed Jan 25 16:36:23 1995
  80148. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20349
  80149.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 28 Jan 1995 07:07:22 -0500
  80150. Received: by apakabar.cc.columbia.edu id AA06324
  80151.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 28 Jan 1995 07:07:20 -0500
  80152. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!howland.reston.ans.net!nntp.crl.com!crl4.crl.com!not-for-mail
  80153. From: nmiller@crl.com (Norman Miller)
  80154. Newsgroups: comp.protocols.kermit.misc
  80155. Subject: Re: MS-Kermit 3.14: BegWare?
  80156. Date: 25 Jan 1995 08:36:23 -0800
  80157. Organization: CRL Dialup Internet Access    (415) 705-6060  [Login: guest]
  80158. Lines: 23
  80159. Message-Id: <3g5um7$isk@crl4.crl.com>
  80160. References: <3f6k1k$i58@apakabar.cc.columbia.edu> <D2pqyL.HFL@telly.on.ca> <3ftvo3$arl@apakabar.cc.columbia.edu>
  80161. Nntp-Posting-Host: crl4.crl.com
  80162. Keywords: MS-DOS Kermit
  80163. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  80164.  
  80165. In article <3ftvo3$arl@apakabar.cc.columbia.edu>,
  80166. Frank da Cruz <fdc@watsun.cc.columbia.edu> wrote:
  80167. >
  80168. >The sad fact is that the good old days of subsidized development of free
  80169. >software are over.  You might find a few people who still do it, but you
  80170. >won't find it on an organizational level.  Look, for example, at the Free
  80171. >Software Foundation.  Have you read their literature lately?  The rule of
  80172. >the 90s is: if you want people to work for you, you have to pay them.  The
  80173. >Kermit effort, and the FSF (if I may speak for them), are relics from the
  80174. >good old days who want to keep a certain non-commercial, open, and
  80175. >generous spirit alive, and make some contribution to humanity, but are
  80176. >forced by economic circumstances to raise money to cover expenses.  If
  80177. >millions of people did not use and benefit from our software, we might
  80178. >think that we were irrelevant anachronisms who deserved to disappear and
  80179. >give way to the voracious market forces of the 90s, but that does not seem
  80180. >to be the case.  But what is disturbing is the growing attitude that "we"
  80181. >(organizations like the Kermit group and the FSF) should work for "you"
  80182. >with no compensation.
  80183.  
  80184. Eloquent, sad and true.  We have to support Kermit by buying its books 
  80185. just as we have to support PBS with our contributions.   
  80186.  
  80187. Norman Miller
  80188.  
  80189. From news@columbia.edu Wed Jan 25 19:44:09 1995
  80190. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29602
  80191.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 28 Jan 1995 07:17:34 -0500
  80192. Received: by apakabar.cc.columbia.edu id AA06710
  80193.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 28 Jan 1995 07:17:32 -0500
  80194. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!swiss.ans.net!newstf01.news.aol.com!not-for-mail
  80195. From: drakepr@aol.com (DrakePR)
  80196. Newsgroups: comp.protocols.kermit.misc
  80197. Subject: C-kermit Unix
  80198. Date: 25 Jan 1995 14:44:09 -0500
  80199. Organization: America Online, Inc. (1-800-827-6364)
  80200. Lines: 8
  80201. Sender: root@newsbf02.news.aol.com
  80202. Message-Id: <3g69m9$sk3@newsbf02.news.aol.com>
  80203. Reply-To: drakepr@aol.com (DrakePR)
  80204. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  80205.  
  80206. I am working on an internal version of c-kermit.....I need to know where I
  80207. can 
  80208. declare a couple of vars (3 ints and a char array) such that they will be 
  80209. global to all modules.
  80210.  
  80211. thanks in advance
  80212. paul
  80213. DrakePR@aol.com
  80214.  
  80215. From news@columbia.edu Wed Jan 25 04:40:36 1995
  80216. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18733
  80217.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 28 Jan 1995 07:51:31 -0500
  80218. Received: by apakabar.cc.columbia.edu id AA07395
  80219.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 28 Jan 1995 07:51:28 -0500
  80220. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!swiss.ans.net!gatech!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  80221. From: jrd@cc.usu.edu (Joe Doupnik)
  80222. Newsgroups: comp.protocols.kermit.misc
  80223. Subject: Re: Need help.
  80224. Message-Id: <1995Jan25.104036.39192@cc.usu.edu>
  80225. Date: 25 Jan 95 10:40:36 MDT
  80226. References: <8j9IFUu00iWP859O8s@andrew.cmu.edu>
  80227. Organization: Utah State University
  80228. Lines: 137
  80229. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  80230.  
  80231. In article <8j9IFUu00iWP859O8s@andrew.cmu.edu>, Mark Kuang Luo <luo+@CMU.EDU> writes:
  80232. > Hi:
  80233. >     I need to find out for my networks class how Kermit allows all bytes
  80234. > to be displayed in 7-bit ASCII format. Is there a FAQ for Kermit, or a
  80235. > www page? Or if anyone has a short explanation, it would be appreciated.
  80236. -------------
  80237.     Far be it from me to do your homework (I'm a Prof too, and my grad 
  80238. networks class is slaving away on my IP packet fragment reassembly techniques
  80239. without many hints from me).
  80240.     Your question is a little mysterious. Kermit does not display all
  80241. bytes as ASCII because not all byte values (code points in the jargon)
  80242. are displayable (printable in the jargon). Control codes aren't, for example.
  80243. Only one character set is ASCII, ASCII itself. Yet Kermit deals with many
  80244. different character sets.
  80245.     In general, there isn't a way of answering adequately in a News
  80246. message, but I'll indicate the tip of the iceberg in a few sentences.
  80247. Display devices have one or two display "pages", named Graphics Left
  80248. (GLeft) and Graphics Right (GRight). GLeft is without a high bit set
  80249. in its code points and is often ASCII; GRight is for code points with
  80250. the high bit set and is a variety of character sets. VT100 terminals
  80251. have only GLeft and use control codes SO and SI to change to/from (Shift
  80252. Out / In, respectively) a replacement character set. VT200 and above
  80253. have GLeft and GRight, and they support ISO 2022 control sequences to
  80254. map character sets to either GR or GL. ISO 2022 says behind the GR/GL
  80255. display pair exists four pages named G0..G3 ready to move into GR/GL
  80256. upon command. Commands exist to load G0..G3 with character sets of
  80257. choice drawn from a secondary storage of many possible sets.
  80258.     If you review cryptic doc msvibm.vt located on kermit.columbia.edu
  80259. in directory kermit/a you will see the command sequences to load GR/GL
  80260. from G0..G3, to shift in/out, and so on. That's hard to understand without
  80261. also reading the ISO 2022 doc, but we can't reproduce the latter item
  80262. (copyright, etc). A cutout of some interesting pieces of msvibm.vt are
  80263. appended below. If you have access to DEC VT200/300/400 technical manuals
  80264. then they have good pictures and discussion of the ISO 2022 mechanisms.
  80265.     Joe D.
  80266. ---------------
  80267.  ESC ( <ident>    SCS        Designates 94 byte character set <ident> to G0
  80268.  ESC ) <ident>    SCS        Designates 94 byte character set <ident> to G1
  80269.  ESC * <ident>    SCS        Designates 94 byte character set <ident> to G2
  80270.  ESC + <ident>    SCS        Designates 94 byte character set <ident> to G3
  80271.  ESC - <ident>    SCS        Designates 96 byte character set <ident> to G1
  80272.  ESC . <ident>    SCS        Designates 96 byte character set <ident> to G2
  80273.  ESC / <ident>    SCS        Designates 96 byte character set <ident> to G3
  80274.          <ident>    size    character set
  80275.         A     94    UK-ASCII (ASCII, sharp sign 2/3 replaced by
  80276.                  Sterling sign), strictly only when a VT102
  80277.                  but permitted by Kermit also for VT220/VT320
  80278.         A     96    ISO Latin-1 (default in G2, G3)
  80279.         B     94    ASCII (default in G0, G1)
  80280.         0     94    DEC Special Graphics (line drawing)
  80281.         1     94/96    Kermit, ALT-ROM
  80282.         2     94    DEC Special Graphics (line drawing)
  80283.         %5     94    DEC Supplemental Graphics
  80284.         <     94/96    User Preferred Supplemental Set*
  80285.         >     94    DEC Technical set (from VT340's)
  80286.         H     96    Hebrew-ISO (ISO 8859-8)
  80287.         "4     94    Hebrew-7
  80288.  * VT300 terminals give choice of ISO Latin-1 (96) or DEC Supplemental
  80289.  
  80290. Graphics (94) determined by a Setup menu selection or host command.  VT420
  80291. Hebrew terminals add choices of Hebrew-ISO and Hebrew-7.  MS-DOS Kermit has
  80292. DEC Supplemental Graphics as the startup UPSS character set.
  80293.  
  80294. If the size of the character set does not match the <ident> nothing happens.
  80295. Startup defaults are ASCII in G0 and G1, ISO Latin-1 in G2 and G3, GL points
  80296. to G0, GR points to G2.  Activating DEC National Replacement Characters maps
  80297. the NRC set selected by SET TERMINAL CHARACTER-SET <country> into G0..G3.
  80298. Single and Locking shifts, SS2, SS3, LS0 (SI), LS1 (SO), LS1R, LS2, LS2R, LS3,
  80299. LS3R determine which set is mapped to the GLeft or GRight area.
  80300.  
  80301.  
  80302.  ESC n        LS2        Map character set in G2 to GL, locking shift
  80303.  ESC o        LS3        Map character set in G3 to GL, locking shift
  80304.  ESC |        LS3R        Map character set in G3 to GR, locking shift
  80305.  ESC }        LS2R        Map character set in G2 to GR, locking shift
  80306.  ESC ~        LS1R        Map character set in G1 to GR, locking shift
  80307.  
  80308. Control Codes in C0 (no high bit) Area:
  80309.  
  80310.  Name    ASCII    value
  80311.      chart      hex keyboard            operation
  80312.  SO/LS1    0/14    0eh   ^N    Map character set in G1 to GL, locking shift
  80313.  SI/LS0    0/15    0fh   ^O    Map character set in G0 to GL, locking shift
  80314.  
  80315. Control codes in C1 (high bit set) Area:
  80316.  
  80317.  Name    ASCII    value
  80318.      chart   8-bit 7-bit        operation
  80319.  SS2    8/14      8eh   ESC N    Map G2 to GL for next char only, single shift
  80320.  SS3    8/15      8fh   ESC O    Map G3 to GL for next char only, single shift
  80321.  
  80322.  
  80323.  Character sets:
  80324.  
  80325.  VT320        Character set storage areas
  80326.         G0            G1, G2, and G3
  80327.  -------------------------------    --------------------------------
  80328.  Any 94 char set            Any 94 or 96 char set
  80329.  ASCII ("B"/94) default         G1 default is ASCII ("B"/94),
  80330.                     G2 and G3 defaults are
  80331.                          ISO Latin-1 ("A"/96)
  80332.  Special Graphics ("0"/94, "2"/94)    
  80333.  Alt-Rom ("1"/94) (MS-DOS Kermit only)
  80334.  Supplementary Graphics ("%5"/94)
  80335.  Technical (">"/94) (from VT340)
  80336.  User Preferred, UPSS, if Suppl Gr.    UPSS if ISO Latin-1 or Suppl Gr.
  80337.                      DEC-Hebrew or Hebrew-ISO
  80338.  
  80339.  National Replacement Characters are forced into all sets when activated
  80340.   by CSI ? 42 h but only if a <country> has been previously selected by
  80341.   SET TERMINAL CHARACTER-SET <country>
  80342.  
  80343.  VT102        Character set storage areas
  80344.     G0 and G1            G2 and G3
  80345.  --------------------------------    ----------------------------------
  80346.  ASCII ("B"/94) Default            ASCII ("B"/94) Default
  80347.  Special Graphics ("0"/94, "2"/94)
  80348.  Alt-Rom ("1"/94) (MS Kermit only)
  80349.  Supplementary Graphics ("%5"/94)
  80350.  Technical (">"/94) (from VT340)
  80351.  National Replacement Characters    Always ASCII ("B"/94)
  80352.   are selected and activated by
  80353.   SET TERMINAL CHARACTER-SET <country>
  80354.   and affect only G0 and G1.
  80355.  
  80356.  
  80357.  Request  CSI ? 26 n        keyboard dialect
  80358.  Response CSI ? 27; Ps n    in MS Kermit this is controlled by
  80359.                 command SET TERMINAL CHARACTER-SET <country>
  80360.         Ps    Country            Ps    Country
  80361.         1    North American/ASCII    9    Italian
  80362.         2    British            13    Norwegian/Danish
  80363.         8    Dutch            16    Portugese
  80364.         6    Finnish            15    Spanish
  80365.         14    French            12    Swedish
  80366.         4    French Canadian        11    Swiss (German)
  80367.         7    German            14      Hebrew
  80368.  
  80369. From news@columbia.edu Wed Jan 25 22:22:13 1995
  80370. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21838
  80371.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 28 Jan 1995 09:44:00 -0500
  80372. Received: by apakabar.cc.columbia.edu id AA10746
  80373.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 28 Jan 1995 09:43:58 -0500
  80374. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!udel!gatech!howland.reston.ans.net!news.sprintlink.net!texas.net!usenet
  80375. From: davidm@texas.net (David J. Moczygemba)
  80376. Newsgroups: comp.protocols.kermit.misc
  80377. Subject: kermit for IBM AS/400s???
  80378. Date: 25 Jan 1995 22:22:13 GMT
  80379. Organization: UDP Inc.
  80380. Lines: 12
  80381. Message-Id: <3g6iul$2cf@cactus.texas.net>
  80382. Nntp-Posting-Host: dialnet09.texas.net
  80383. X-Newsreader: WinVN 0.92.6+
  80384. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  80385.  
  80386. Hello,
  80387.  
  80388.   My realm is the DEC VAX/AXP world.  Recently, a need has arisen to xmit
  80389. data to an IBM AS/400.  I would like to use kermit for this purpose. I
  80390. have reviewed the material I have available locally; my impression is 
  80391. kermit for AS/400 doesn't exist.  Is this true? If so, can anyone 
  80392. suggest an alternate method to explore? 
  80393.  
  80394.   Any help offered is greatly appreciated.
  80395.  
  80396. David
  80397.  
  80398.  
  80399. From news@columbia.edu Sat Jan 28 17:26:57 1995
  80400. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27767
  80401.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 28 Jan 1995 12:27:03 -0500
  80402. Received: by apakabar.cc.columbia.edu id AA18451
  80403.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 28 Jan 1995 12:27:01 -0500
  80404. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  80405. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  80406. Newsgroups: comp.protocols.kermit.misc
  80407. Subject: Re: kermit for IBM AS/400s???
  80408. Date: 28 Jan 1995 17:26:57 GMT
  80409. Organization: Columbia University
  80410. Lines: 22
  80411. Message-Id: <3gdup1$i0h@apakabar.cc.columbia.edu>
  80412. References: <3g6iul$2cf@cactus.texas.net>
  80413. Nntp-Posting-Host: watsun.cc.columbia.edu
  80414. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  80415.  
  80416. In article <3g6iul$2cf@cactus.texas.net>,
  80417. David J. Moczygemba <davidm@texas.net> wrote:
  80418. >Hello,
  80419. >
  80420. >  My realm is the DEC VAX/AXP world.  Recently, a need has arisen to xmit
  80421. >data to an IBM AS/400.  I would like to use kermit for this purpose. I
  80422. >have reviewed the material I have available locally; my impression is 
  80423. >kermit for AS/400 doesn't exist.  Is this true? If so, can anyone 
  80424. >suggest an alternate method to explore? 
  80425.  
  80426.  
  80427. No, currently there is no Kermit for the AS/400 series.  Might I ask
  80428. what operating system is running on the AS/400?  Is it AIX/400 or OS/400?
  80429.  
  80430. Additional info might be useful in attempting to assist you in your
  80431. dilemma.
  80432.  
  80433.  
  80434. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  80435. "C-Kermit: available on more platforms than any other communications software."
  80436. "Kermit FTP: sending files whenever and wherever they are needed."
  80437.   OS/2 version 5A(190): ftp://kermit.columbia.edu/kermit/archives/cko190.zip 
  80438.  
  80439. From news@columbia.edu Sat Jan 28 03:50:59 1995
  80440. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28893
  80441.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 28 Jan 1995 12:55:42 -0500
  80442. Received: by apakabar.cc.columbia.edu id AA20083
  80443.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 28 Jan 1995 12:55:40 -0500
  80444. Path: news.columbia.edu!sol.ctr.columbia.edu!newsxfer.itd.umich.edu!gatech!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  80445. From: jrd@cc.usu.edu (Joe Doupnik)
  80446. Newsgroups: comp.protocols.kermit.misc
  80447. Subject: Re: Kermit and TCP/IP 32
  80448. Message-Id: <1995Jan28.095059.39578@cc.usu.edu>
  80449. Date: 28 Jan 95 09:50:59 MDT
  80450. References: <3f8i67$5bd@hasle.oslonett.no> <3fe553$m4m@apakabar.cc.columbia.edu> <3garmn$ilq@hermes.fundp.ac.be>
  80451. Organization: Utah State University
  80452. Lines: 35
  80453. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  80454.  
  80455. In article <3garmn$ilq@hermes.fundp.ac.be>, jlg@fundp.ac.be (Jean-Luc GOFFIN) writes:
  80456. >>>Has anyone tried to make Kermit run over Windows for Workgroups
  80457. >>>and TCP/IP 32?
  80458. >>Yes.
  80459. >>> ..... However some users need Windows for Workgroups, and then a 
  80460. >>>packet driver will not work.
  80461. >>>
  80462. >>MS-DOS Kermit 3.14 comes with a file that includes an extensive
  80463. >>discussion of this problem.
  80464. >>Anonymous ftp to kermit.columbia.edu, directory kermit/archives, binary
  80465. >>mode, file msvibm.zip.  Unzip with "-d" switch.  Read top-level READ.ME
  80466. >>to get started.  Read the Windows for Workgroups of NETWORKS/SETUP.DOC
  80467. >>for the information you are asking for.
  80468. >>
  80469. >>- Frank
  80470. > I use ethernet adapters 3com Etherlink Family.  I have make modifications 
  80471. > in files system.ini and protocol.ini.  
  80472. > I have a error PRO0008E "invalid decimal digit in protocol.ini file" 
  80473. > "error loading protman.ini" when I execute "net start" in autoexec.bat 
  80474. > file.
  80475. > Does anybody have experience (samples files.ini) installing kermit 3.14 
  80476. > under Windows for Workgroups 3.11 with 3c509 or 3c503 Etherlink card, 
  80477. > netbeui, ipx/spx compatible with netbios, MS-TCP/IP 3.11a.  
  80478. -------------
  80479.     Syntax errors you will have to work out slowly at your end, but
  80480. I can say that Kermit will not run over Microsoft's TCP/IP 32 bit stack
  80481. nor can you use Kermit's internal TCP/IP stack with that second stack
  80482. loaded.
  80483.     Joe D.
  80484.  
  80485. From news@columbia.edu Fri Jan 27 17:43:16 1995
  80486. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00224
  80487.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 28 Jan 1995 13:30:36 -0500
  80488. Received: by apakabar.cc.columbia.edu id AA22335
  80489.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 28 Jan 1995 13:30:34 -0500
  80490. Path: news.columbia.edu!sol.ctr.columbia.edu!hamblin.math.byu.edu!news.byu.edu!yvax.byu.edu!news.cuny.edu!caen!newsxfer.itd.umich.edu!gatech!howland.reston.ans.net!pipex!peernews.demon.co.uk!childsoc.demon.co.uk!Mike
  80491. Newsgroups: comp.protocols.kermit.misc
  80492. Subject: Re: Kermit 3.14 and resize
  80493. Message-Id: <791228596snz@childsoc.demon.co.uk>
  80494. From: Mike@childsoc.demon.co.uk (Michael Bernardi)
  80495. Date: Fri, 27 Jan 1995 17:43:16 +0000
  80496. Reply-To: Michael Bernardi <Mike@childsoc.demon.co.uk>
  80497. Sender: usenet@demon.co.uk
  80498. References: <3fma83$hl4@kronos.fmi.fi> <3fooav$a95@apakabar.cc.columbia.edu>
  80499. Organization: The Children's Society
  80500. X-Newsreader: Demon Internet Simple News v1.29
  80501. X-Posting-Host: childsoc.demon.co.uk
  80502. Lines: 18
  80503. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  80504.  
  80505. In article <3fooav$a95@apakabar.cc.columbia.edu>
  80506.            fdc@watsun.cc.columbia.edu "Frank da Cruz" writes:
  80507. >As announced in yesterday's posting, this was indeed a serious bug
  80508. >in MS-DOS Kermit 3.14 dated 12 January 1995.  That version has been
  80509. >replaced by a new one dated 18 January 1995, which fixes this bug.
  80510. >
  80511. >If you had a previous version of MS-DOS Kermit, and you
  80512. >want to install the new version over it, first make safe copies of
  80513. >your MSCUSTOM.INI and DIALUPS.TXT files, as well as any other
  80514. >file you might have modified.
  80515. Is there any chance that the KERMIT.EXE on it's own could be made available?
  80516. I'm on a dialup connection and if the only thing that has changed is
  80517. KERMIT.EXE then I'm actually duplicating my download.
  80518. Mike
  80519. -- 
  80520.  Michael Bernardi        mike@childsoc.demon.co.uk (Internet) | Making lives
  80521.  The Children's Society, Edward Rudolf House, Margery Street, | worth living
  80522.  London, WC1X 0JL, UK    Voice: +44 171 837 4299     Charity Reg. No. 221124
  80523.  
  80524. From news@columbia.edu Wed Jan 25 12:06:30 1995
  80525. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04572
  80526.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 28 Jan 1995 15:47:45 -0500
  80527. Received: by apakabar.cc.columbia.edu id AA01180
  80528.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 28 Jan 1995 15:47:44 -0500
  80529. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!udel!gatech!newsxfer.itd.umich.edu!caen!kuhub.cc.ukans.edu!tdsmith
  80530. From: tdsmith@kuhub.cc.ukans.edu
  80531. Newsgroups: comp.protocols.kermit.misc
  80532. Subject: Several problems with 01/18 release.
  80533. Message-Id: <1995Jan25.180630.83691@kuhub.cc.ukans.edu>
  80534. Date: 25 Jan 95 18:06:30 CST
  80535. Organization: University of Kansas Academic Computing Services
  80536. Lines: 32
  80537. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  80538.  
  80539. Hi, all.  I'm using MS-Kermit 3.14 (yes, it's the 18 Jan. release) 
  80540. and I'm still having problems with the status line being overwritten 
  80541. when I'm logged into my Unix account.  Is anyone else having this 
  80542. problem?  I had hoped that the new release would fix this.  I'm having 
  80543. another problem as well.  Kermit no longer hangs up the phone properly
  80544. --I have to break into command mode and issue ath in order to break the
  80545. connection.  I'm using my old DATAPORT.SCR and MSCUSTOM.INI files from 
  80546. 3.13, so that shouldn't be a problem.  If you give a text reference, 
  80547. I'll be able to look it up when my book finally arrives (should be in a 
  80548. couple of days).  Oh, yeah.  3.14 barfs in Windows now, too.  It floods 
  80549. the screen with what looks like 8-bit characters whenever I connect to 
  80550. our terminal server, but doesn't do it in DOS.  Finally, the dialer will 
  80551. sometimes die immediately after making a connection with the server 
  80552. (then I have to wait for the timeout and restart the dial, busy, dial, 
  80553. busy, etc. routine that is all too familiar to those of us at KU).  This 
  80554. may be attributed to my somewhat aggressive timing on the redial sequence
  80555. (13 seconds).
  80556.  
  80557. The reason for using my old DATAPORT.SCR is that the new one dies when it 
  80558. tries to enable modulation fallback.  I've reverted to the old script 
  80559. that I modified that doesn't try to set anything and hard-coded my 
  80560. preferences in the modem itself.
  80561.  
  80562. Help on any or all of these problems would be greatly appreciated.  If 
  80563. you need more information, I'll be more than happy to provide it.
  80564.  
  80565. Thanks for your help,
  80566.  
  80567. Troy Smith
  80568.  
  80569. P.S.  Sorry if the formatting is weird, but I'm using an unfamiliar 
  80570. editor to post this. 
  80571.  
  80572. From news@columbia.edu Sat Jan 28 19:13:10 1995
  80573. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05118
  80574.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 28 Jan 1995 16:04:57 -0500
  80575. Received: by apakabar.cc.columbia.edu id AA02281
  80576.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 28 Jan 1995 16:04:55 -0500
  80577. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!howland.reston.ans.net!pipex!uunet!newstf01.news.aol.com!newsbf02.news.aol.com!not-for-mail
  80578. From: drakepr@aol.com (DrakePR)
  80579. Newsgroups: comp.protocols.kermit.misc
  80580. Subject: Re: Any way to do VT100
  80581. Date: 28 Jan 1995 14:13:10 -0500
  80582. Organization: America Online, Inc. (1-800-827-6364)
  80583. Lines: 1
  80584. Sender: root@newsbf02.news.aol.com
  80585. Message-Id: <3ge506$27d@newsbf02.news.aol.com>
  80586. References: <27JAN199514132218@pavo.concordia.ca>
  80587. Reply-To: drakepr@aol.com (DrakePR)
  80588. Nntp-Posting-Host: newsbf02.mail.aol.com
  80589. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  80590.  
  80591. What kind of terminal are you using??
  80592.  
  80593. From news@columbia.edu Sat Jan 28 19:16:45 1995
  80594. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05194
  80595.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 28 Jan 1995 16:06:02 -0500
  80596. Received: by apakabar.cc.columbia.edu id AA02347
  80597.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 28 Jan 1995 16:06:00 -0500
  80598. Path: news.columbia.edu!panix!zip.eecs.umich.edu!newsxfer.itd.umich.edu!gatech!swiss.ans.net!newstf01.news.aol.com!newsbf02.news.aol.com!not-for-mail
  80599. From: drakepr@aol.com (DrakePR)
  80600. Newsgroups: comp.protocols.kermit.misc
  80601. Subject: RE: C-Kermit Development (global vars)
  80602. Date: 28 Jan 1995 14:16:45 -0500
  80603. Organization: America Online, Inc. (1-800-827-6364)
  80604. Lines: 32
  80605. Sender: root@newsbf02.news.aol.com
  80606. Message-Id: <3ge56t$28f@newsbf02.news.aol.com>
  80607. Reply-To: drakepr@aol.com (DrakePR)
  80608. Nntp-Posting-Host: newsbf02.mail.aol.com
  80609. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  80610.  
  80611. >Just like in any C program, any variable that you declare outside of
  80612. >a function is global to the entire program unless you declare it >static.
  80613. >
  80614. >However, I would recommend that you declare the vars in the module 
  80615. >closest in association with the use of the vars.
  80616.  
  80617. >Might I ask what modifications you are making to the ck code?
  80618.  
  80619. Thanks for the reply - 
  80620.  
  80621. I have plowed my way through the code and now have the new version in
  80622. test.  (I ended up declaring the vars outside main in ckcmai 
  80623. and then declairing them as external in the other mods)
  80624.  
  80625. My only remaining problem is one that I need my vars to live on after the
  80626. user passes in uses the command mode (user interface.....
  80627. ie When I drop to the C-kermit> prompt then move back to connect mode all
  80628. my vars are reinitiated.
  80629.  
  80630. This is refered to in the Program Logic manual only they refer to them 
  80631. as group 1 and group 2 fuctions.
  80632.  
  80633. At Last to my question:
  80634. Using the nomenclature of the Program Logic Manual I need to maintain my
  80635. vars when moving from group 1 fuctions to group 2 fuctions.  How I do
  80636. this?? :)
  80637.  
  80638. This version keeps a copy of the current terminal screen in memory, and a
  80639. tool or two to use that screen.
  80640.  
  80641. thanks,
  80642. paul
  80643.  
  80644. From news@columbia.edu Sun Jan 26 02:18:02 1995
  80645. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05936
  80646.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 28 Jan 1995 16:26:58 -0500
  80647. Received: by apakabar.cc.columbia.edu id AA03907
  80648.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 28 Jan 1995 16:26:57 -0500
  80649. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!hookup!swrinde!pipex!uunet!newstf01.news.aol.com!not-for-mail
  80650. From: drakepr@aol.com (DrakePR)
  80651. Newsgroups: comp.protocols.kermit.misc
  80652. Subject: Re: C-kermit Unix
  80653. Date: 25 Jan 1995 21:18:02 -0500
  80654. Organization: America Online, Inc. (1-800-827-6364)
  80655. Lines: 12
  80656. Sender: root@newsbf02.news.aol.com
  80657. Message-Id: <3g70oq$3u0@newsbf02.news.aol.com>
  80658. References: <3g69m9$sk3@newsbf02.news.aol.com>
  80659. Reply-To: drakepr@aol.com (DrakePR)
  80660. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  80661.  
  80662. A little more background:
  80663.  
  80664. 1) The vars are currently defined in ckcmai
  80665. 2) 2 small fuctions live in ckutio
  80666. 3) another fuction lives in one of the ckuusr modules 
  80667. 4) All seems to work fine while I remain in connect mode.  However if I
  80668. exit to the prompt and
  80669.    return my vars are redefined. :(
  80670.  
  80671. Again, thanks in advance.
  80672. paul
  80673. DrakePR@aol.com
  80674.  
  80675. From news@columbia.edu Sat Jan 28 11:16:58 1995
  80676. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12682
  80677.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 28 Jan 1995 19:29:03 -0500
  80678. Received: by apakabar.cc.columbia.edu id AA15711
  80679.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 28 Jan 1995 19:29:00 -0500
  80680. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  80681. From: jrd@cc.usu.edu (Joe Doupnik)
  80682. Newsgroups: comp.protocols.ppp,comp.protocols.kermit.misc
  80683. Subject: Re: [?] MS-DOS Kermit 3.14 and Dynamic IP Addresses
  80684. Message-Id: <1995Jan28.171658.39633@cc.usu.edu>
  80685. Date: 28 Jan 95 17:16:58 MDT
  80686. References: <D340HB.3yy@indirect.com>
  80687. Organization: Utah State University
  80688. Lines: 27
  80689. Xref: news.columbia.edu comp.protocols.ppp:8581 comp.protocols.kermit.misc:1751
  80690. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  80691.  
  80692. In article <D340HB.3yy@indirect.com>, monty@indirect.com (Jim Monty) writes:
  80693. > My Internet service provider recently "upgraded" its terminal servers and
  80694. > now only supports dynamic IP addressing.  I've not yet been able to make
  80695. > MS-DOS Kermit 3.14 work with any packet driver other than SLIP8250.COM,
  80696. > and I can no longer use it because it requires static IP addresses. 
  80697. > Has anyone out there found a way to use MS-DOS Kermit in a situation like
  80698. > mine?  Should I try CSLIP?  Are there DOS-based PPP drivers that, unlike
  80699. > Merit's ETHERPPP, will work with Kermit?
  80700. >     I can't (won't!) run Windows.
  80701. >     I _must_ run MS-DOS Kermit.  (Because I love it!)
  80702. >     I can't communicate with my ISP.  (They're way too arrogant!)
  80703. >     I'm desparate.
  80704. ---------
  80705.     Well, just how does your service provider indicate the IP number
  80706. to be used for a particular connection? If it's sent as part of a logon
  80707. message then what you need is to write a tiny script to do the logon chatter
  80708. and pick out the IP number. Note that MSK v3.14 supports \v(input) to
  80709. make the INPUT command's buffer available to the sundry \f...() string
  80710. manipulation operators.
  80711.     Might your provider support Bootp over SLIP? If so that's the end
  80712. of the problem.
  80713.         Joe D.
  80714.  
  80715. From news@columbia.edu Sat Jan 28 14:49:00 1995
  80716. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20244
  80717.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 28 Jan 1995 23:02:31 -0500
  80718. Received: by apakabar.cc.columbia.edu id AA28183
  80719.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 28 Jan 1995 23:02:28 -0500
  80720. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!vixen.cso.uiuc.edu!uwm.edu!msunews!harbinger.cc.monash.edu.au!news.cs.su.oz.au!metro!asstdc.scgt.oz.au!mcc!paul.garcia
  80721. From: paul.garcia@mcc.sydpcug.org.au (PAUL GARCIA)
  80722. Newsgroups: comp.protocols.kermit.misc
  80723. Subject: Telemate & Kermit help ne
  80724. Message-Id: <8A28031.096600059C.uuout@mcc.sydpcug.org.au>
  80725. Date: Sun, 29 Jan 95 00:49:00 +1000
  80726. Distribution: world
  80727. Organization: My Computer Company BBS, Australia [+61] (02) 565-1044
  80728. Reply-To: paul.garcia@mcc.sydpcug.org.au (PAUL GARCIA)
  80729. References: <8A22456.096600057D.uuout@mcc.sydpcug.org.au>
  80730. X-Newsreader: PCBoard Version 15.21
  80731. X-Mailer: PCBoard/UUOUT Version 1.10
  80732. Lines: 25
  80733. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  80734.  
  80735. KI> From: kiwayama@gpu2.srv.ualberta.ca (Keiko Iwayama)
  80736. KI> Newsgroups: comp.protocols.kermit.misc
  80737.  
  80738. KI> Does anyone know how to set up Telemate 4.12 properly in order to uploa
  80739. KI> via Kermit with long packets of 1000 or more?  Right now it is set to 8
  80740. KI> and I can only get a maximum cps rate of 500 (SLOW!).  If Telemate
  80741. KI> doesn't allow this, then are there other comm programs like Telix or
  80742. KI> Qmodem which can be configured like this?
  80743.  
  80744.  
  80745. I posted a similar question re: Telix and Kermit in another news group. I 
  80746. heard nothing so I'll try here. I seem to only be able to set packet 
  80747. lengths to 99 in Telix. Also slooww CPS rate. Any ideas on how to 
  80748. circumvent this?
  80749.  
  80750. Appreciate any advice.
  80751.  
  80752.  
  80753. <<Paul>>
  80754.  
  80755.  
  80756.  
  80757.  
  80758.  * RM 1.3 02295 * ... Navy pilot's worst nightmare...NO CARRIER!
  80759.  
  80760.  
  80761. From news@columbia.edu Sun Jan 29 03:01:59 1995
  80762. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21642
  80763.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 28 Jan 1995 23:51:06 -0500
  80764. Received: by apakabar.cc.columbia.edu id AA01255
  80765.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 28 Jan 1995 23:51:04 -0500
  80766. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!howland.reston.ans.net!news.sprintlink.net!texas.net!usenet
  80767. From: davidm@texas.net (David J. Moczygemba)
  80768. Newsgroups: comp.protocols.kermit.misc
  80769. Subject: Re: kermit for IBM AS/400s???
  80770. Date: 29 Jan 1995 03:01:59 GMT
  80771. Organization: Home
  80772. Lines: 10
  80773. Message-Id: <3gf0f7$pkf@empire.texas.net>
  80774. References: <3g6iul$2cf@cactus.texas.net> <3gdup1$i0h@apakabar.cc.columbia.edu>
  80775. Nntp-Posting-Host: dialnet14.texas.net
  80776. X-Newsreader: WinVN 0.92.6+
  80777. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  80778.  
  80779. In article <3gdup1$i0h@apakabar.cc.columbia.edu>, jaltman@watsun.cc.columbia.edu (Jeffrey Altman) says:
  80780.  
  80781. >No, currently there is no Kermit for the AS/400 series.  Might I ask
  80782. >what operating system is running on the AS/400?  Is it AIX/400 or OS/400?
  80783. >
  80784. >Additional info might be useful in attempting to assist you in your
  80785. >dilemma.
  80786. >
  80787. Thank you for the confirmation.  The AS/400 is running OS/400.  
  80788.  
  80789.  
  80790. From news@columbia.edu Sun Jan 29 07:39:12 1995
  80791. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29646
  80792.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 29 Jan 1995 03:00:34 -0500
  80793. Received: by apakabar.cc.columbia.edu id AA09699
  80794.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 29 Jan 1995 03:00:31 -0500
  80795. Newsgroups: comp.protocols.kermit.misc
  80796. Path: news.columbia.edu!panix!news.mathworks.com!hookup!swrinde!howland.reston.ans.net!agate!library.ucla.edu!csulb.edu!csus.edu!netcom.com!jzero
  80797. From: jzero@netcom.com (Jim Nakamura)
  80798. Subject: Kermit is leaking
  80799. Message-Id: <jzeroD35p9C.CAH@netcom.com>
  80800. Organization: NETCOM On-line Communication Services (408 261-4700 guest)
  80801. Date: Sun, 29 Jan 1995 07:39:12 GMT
  80802. Lines: 7
  80803. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  80804.  
  80805.  
  80806. Every so often (during a connection) random characters appear on the
  80807. screen. Kermit (190) is leaking.  This problem does not show up
  80808. on other comm programs.
  80809.  
  80810. -- 
  80811. jzero@netcom.com
  80812.  
  80813. From news@columbia.edu Thu Jan 26 01:06:21 1995
  80814. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08413
  80815.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 29 Jan 1995 05:47:53 -0500
  80816. Received: by apakabar.cc.columbia.edu id AA14409
  80817.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 29 Jan 1995 05:47:52 -0500
  80818. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!udel!gatech!howland.reston.ans.net!agate!dog.ee.lbl.gov!news.cs.utah.edu!cc.usu.edu!jrd
  80819. From: jrd@cc.usu.edu (Joe Doupnik)
  80820. Newsgroups: comp.protocols.kermit.misc
  80821. Subject: Re: Several problems with 01/18 release.
  80822. Message-Id: <1995Jan26.070621.39295@cc.usu.edu>
  80823. Date: 26 Jan 95 07:06:21 MDT
  80824. References: <1995Jan25.180630.83691@kuhub.cc.ukans.edu>
  80825. Organization: Utah State University
  80826. Lines: 41
  80827. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  80828.  
  80829. In article <1995Jan25.180630.83691@kuhub.cc.ukans.edu>, tdsmith@kuhub.cc.ukans.edu writes:
  80830. > Hi, all.  I'm using MS-Kermit 3.14 (yes, it's the 18 Jan. release) 
  80831. > and I'm still having problems with the status line being overwritten 
  80832. > when I'm logged into my Unix account.  Is anyone else having this 
  80833. > problem?
  80834.  
  80835.     A blind guess is your host is addressing the status line specifically,
  80836. such as ESC [ 25 ; column H. LOG SESSION to obtain material for analysis,
  80837. wrap in uuencoding to protect binary information, mail to me, jrd@cc.usu.edu,
  80838. with commentary.
  80839.  
  80840.       I had hoped that the new release would fix this.  I'm having 
  80841. > another problem as well.  Kermit no longer hangs up the phone properly
  80842. > --I have to break into command mode and issue ath in order to break the
  80843. > connection.  I'm using my old DATAPORT.SCR and MSCUSTOM.INI files from 
  80844. > 3.13, so that shouldn't be a problem.  If you give a text reference, 
  80845.  
  80846.     But it can be. Please use the one shipped with MSK 3.14 and add
  80847. your changes. 
  80848.  
  80849. > I'll be able to look it up when my book finally arrives (should be in a 
  80850. > couple of days).  Oh, yeah.  3.14 barfs in Windows now, too.  It floods 
  80851. > the screen with what looks like 8-bit characters whenever I connect to 
  80852. > our terminal server, but doesn't do it in DOS.  Finally, the dialer will 
  80853.  
  80854.     Something at your end, such as providing expanded memory but
  80855. forgetting to pin down where the 64KB expanded memory frame goes (that's
  80856. a frame=segment kind of construction). Please review the release notes
  80857. in v3.14 about memory management.
  80858.  
  80859. > sometimes die immediately after making a connection with the server 
  80860. > (then I have to wait for the timeout and restart the dial, busy, dial, 
  80861. > busy, etc. routine that is all too familiar to those of us at KU).  This 
  80862. > may be attributed to my somewhat aggressive timing on the redial sequence
  80863. > (13 seconds).
  80864. > The reason for using my old DATAPORT.SCR is that the new one dies when it 
  80865. > tries to enable modulation fallback.  I've reverted to the old script 
  80866. > that I modified that doesn't try to set anything and hard-coded my 
  80867. > preferences in the modem itself.
  80868.     Joe D.
  80869.  
  80870. From news@columbia.edu Thu Jan 26 10:31:52 1995
  80871. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13835
  80872.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 29 Jan 1995 08:50:00 -0500
  80873. Received: by apakabar.cc.columbia.edu id AA02715
  80874.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 29 Jan 1995 08:49:59 -0500
  80875. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!news-feed-1.peachnet.edu!hobbes.cc.uga.edu!UGA.CC.UGA.EDU!CMSFJK
  80876. From: CMSFJK@UGA.CC.UGA.EDU (F.J.Kelley)
  80877. Newsgroups: comp.protocols.kermit.misc,comp.os.os2.networking.tcp-ip
  80878. Subject: Using MS-Kermit(3.13) with OS/2 2.11 + TCP 2.0
  80879. Date: Thu, 26 Jan 95 15:31:52 EST
  80880. Organization: University of Georgia
  80881. Lines: 17
  80882. Message-Id: <17332DA68.CMSFJK@UGA.CC.UGA.EDU>
  80883. Nntp-Posting-Host: uga.cc.uga.edu
  80884. X-Newsreader: NNR/VM S_1.3.2
  80885. Xref: news.columbia.edu comp.protocols.kermit.misc:1756 comp.os.os2.networking.tcp-ip:15512
  80886. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  80887.  
  80888. Hi Net,
  80889. Apologies if this is going to the wrong group, or is already answered
  80890. elsewhere, but ....
  80891. I am using OS/2 2.11 and IBMs TCP 2.0 ... both are working fine.  The
  80892. problem comes in communicating with a CDC Cyber 960 mainframe running
  80893. NOS.  NOS can provide a full screen environment, and has an editor
  80894. (FSE) that really likes such an environment.  When I used DOS, I
  80895. could use both MSKermit and CUTCP to connect to our Cyber with no
  80896. problems (we wrote an xlate table for the Cyber)...but I have not
  80897. been successful in setting up similiar tables for either C-Kermit
  80898. for OS/2 or the Telnet package that comes with IBMs TCP.  So I though
  80899. I'd see whether I could use MSKermit to make the telnet connection, but
  80900. no luck.  Is anyone using such a combination with success?  I would
  80901. appreciate any information you might have, thanks,
  80902. -- Joe Kelley            jkelley@uga.cc.uga.edu
  80903.  
  80904.  
  80905.  
  80906. From news@columbia.edu Sun Jan 29 05:13:07 1995
  80907. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16527
  80908.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 29 Jan 1995 10:22:53 -0500
  80909. Received: by apakabar.cc.columbia.edu id AA06744
  80910.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 29 Jan 1995 10:22:52 -0500
  80911. Path: news.columbia.edu!panix!news.mathworks.com!solaris.cc.vt.edu!swiss.ans.net!hermes.louisville.edu!ulkyvm.louisville.edu!JWPURPZ1
  80912. From: JWPURPZ1@ulkyvm.louisville.edu
  80913. Newsgroups: comp.protocols.kermit.misc
  80914. Subject: Re: MS-Kermit 3.14: BegWare?
  80915. Date: Sun, 29 Jan 95 10:13:07 EST
  80916. Organization: University of Louisville
  80917. Lines: 17
  80918. Message-Id: <173358FB7S85.JWPURPZ1@ulkyvm.louisville.edu>
  80919. References: <3f6k1k$i58@apakabar.cc.columbia.edu> <D2pqyL.HFL@telly.on.ca> <3g5um7$isk@crl4.crl.com>
  80920. Nntp-Posting-Host: ulkyvm.louisville.edu
  80921. Keywords: MS-DOS Kermit
  80922. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  80923.  
  80924. In article <3g5um7$isk@crl4.crl.com>
  80925. nmiller@crl.com (Norman Miller) writes:
  80926.  
  80927. [re: software costs, etc.]
  80928.  
  80929. >Eloquent, sad and true.  We have to support Kermit by buying its books
  80930. >just as we have to support PBS with our contributions.
  80931.  
  80932. I think this is a great way to do it. I recently bought Lamport's book
  80933. on LaTeX.
  80934.  
  80935. Anytime you can get the quality of software in Kermit or LaTeX, etc.
  80936. for the price of a <$40 book it's a bargain! I hope it's a trend.
  80937.  
  80938. WAKELEY PURPLE
  80939. JWPURPZ1@ULKYVM.LOUISVILLE.EDU
  80940. WAKEP@IGLOU.COM
  80941.  
  80942. From news@columbia.edu Sun Jan 29 15:33:52 1995
  80943. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16961
  80944.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 29 Jan 1995 10:33:56 -0500
  80945. Received: by apakabar.cc.columbia.edu id AA07319
  80946.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 29 Jan 1995 10:33:54 -0500
  80947. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  80948. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  80949. Newsgroups: comp.protocols.kermit.misc,comp.os.os2.networking.tcp-ip
  80950. Subject: Re: Using MS-Kermit(3.13) with OS/2 2.11 + TCP 2.0
  80951. Date: 29 Jan 1995 15:33:52 GMT
  80952. Organization: Columbia University
  80953. Lines: 43
  80954. Message-Id: <3ggch0$74l@apakabar.cc.columbia.edu>
  80955. References: <17332DA68.CMSFJK@uga.cc.uga.edu>
  80956. Nntp-Posting-Host: watsun.cc.columbia.edu
  80957. Xref: news.columbia.edu comp.protocols.kermit.misc:1758 comp.os.os2.networking.tcp-ip:15534
  80958. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  80959.  
  80960. In article <17332DA68.CMSFJK@uga.cc.uga.edu>,
  80961. F.J.Kelley <CMSFJK@UGA.CC.UGA.EDU> wrote:
  80962. >Hi Net,
  80963. >Apologies if this is going to the wrong group, or is already answered
  80964. >elsewhere, but ....
  80965. >I am using OS/2 2.11 and IBMs TCP 2.0 ... both are working fine.  The
  80966. >problem comes in communicating with a CDC Cyber 960 mainframe running
  80967. >NOS.  NOS can provide a full screen environment, and has an editor
  80968. >(FSE) that really likes such an environment.  When I used DOS, I
  80969. >could use both MSKermit and CUTCP to connect to our Cyber with no
  80970. >problems (we wrote an xlate table for the Cyber)...but I have not
  80971. >been successful in setting up similiar tables for either C-Kermit
  80972. >for OS/2 or the Telnet package that comes with IBMs TCP.  So I though
  80973. >I'd see whether I could use MSKermit to make the telnet connection, but
  80974. >no luck.  Is anyone using such a combination with success?  I would
  80975. >appreciate any information you might have, thanks,
  80976. >-- Joe Kelley            jkelley@uga.cc.uga.edu
  80977.  
  80978. You cannot use MS-DOS Kermit in OS/2 for Telnet without being able to 
  80979. dedicate a separate Network card to its DOS session.
  80980.  
  80981. However, the xlate table you create for the Cyber should work for C-Kermit.
  80982. The question is where is the xlate table installed.  I assume that it is
  80983. a table that defines a terminal emulation and keyboard setup.  Correct?
  80984.  
  80985. If so, then what you need to do is create a keyboard map file that 
  80986. sets the keys up so that they match those that you are using in MS-DOS
  80987. Kermit.
  80988.  
  80989. Take a look at CKOVTK2.INI for an example of a complete VT220 keyboard
  80990. layout.
  80991.  
  80992. Be sure to be using C-Kermit for OS/2 5A(190), not 5A(189).
  80993.  
  80994. ftp from kermit.columbia.edu /kermit/archives/cko190.zip
  80995.  
  80996.  
  80997.  
  80998.  
  80999. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  81000. "C-Kermit: available on more platforms than any other communications software."
  81001. "Kermit FTP: sending files whenever and wherever they are needed."
  81002.   OS/2 version 5A(190): ftp://kermit.columbia.edu/kermit/archives/cko190.zip 
  81003.  
  81004. From news@columbia.edu Sun Jan 29 15:35:25 1995
  81005. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17068
  81006.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 29 Jan 1995 10:35:53 -0500
  81007. Received: by apakabar.cc.columbia.edu id AA07487
  81008.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 29 Jan 1995 10:35:53 -0500
  81009. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!hookup!relay.tor.hookup.net!newsadm
  81010. From: bangus@hookup.net (Brian F. Angus)
  81011. Newsgroups: comp.protocols.kermit.misc
  81012. Subject: Re: Kermit and TCP/IP 32
  81013. Date: 29 Jan 1995 15:35:25 GMT
  81014. Organization: Digital Equipment
  81015. Lines: 21
  81016. Message-Id: <3ggcjt$19r@relay.tor.hookup.net>
  81017. References: <3f8i67$5bd@hasle.oslonett.no> <3fe553$m4m@apakabar.cc.columbia.edu> <3garmn$ilq@hermes.fundp.ac.be> <1995Jan28.095059.39578@cc.usu.edu>
  81018. Nntp-Posting-Host: bangus.tor.hookup.net
  81019. Mime-Version: 1.0
  81020. X-Newsreader: WinVN 0.93.11
  81021. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  81022.  
  81023. >I can say that Kermit will not run over Microsoft's TCP/IP 32 bit stack
  81024. >nor can you use Kermit's internal TCP/IP stack with that second stack
  81025. >loaded.
  81026. >        Joe D.
  81027.  
  81028.  
  81029. Hi Joe,
  81030.  
  81031. I have not yet downloaded the final version of Kermit 3.14 and have not
  81032. read the SETUP.DOC for NETWORKS, but there may be a solution.  Dan
  81033. Lanciani has written a NDIS3 to real mode packet driver VXD which is
  81034. supposed to handle this sort of thing.  It multiplexes the WIN32 IP stack
  81035. with the DOS packet driver based IP stack.  This should allow Kermit's
  81036. internal TCP/IP stack to function.  I have not tested this with Kermit,
  81037. but it is similar to PKTMUX in function.  It's worth examining.  There is
  81038. a reference to this driver and a location in the comp.os.tcpip.ibmpc FAQ.
  81039.  
  81040. Brian Angus
  81041. bangus@hookup.net
  81042. bangus@trooa.enet.dec.com
  81043.  
  81044.  
  81045. From news@columbia.edu Sun Jan 29 15:42:13 1995
  81046. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17342
  81047.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 29 Jan 1995 10:42:16 -0500
  81048. Received: by apakabar.cc.columbia.edu id AA07720
  81049.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 29 Jan 1995 10:42:14 -0500
  81050. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  81051. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  81052. Newsgroups: comp.protocols.kermit.misc
  81053. Subject: Re: kermit for IBM AS/400s???
  81054. Date: 29 Jan 1995 15:42:13 GMT
  81055. Organization: Columbia University
  81056. Lines: 28
  81057. Message-Id: <3ggd0l$7h6@apakabar.cc.columbia.edu>
  81058. References: <3g6iul$2cf@cactus.texas.net> <3gdup1$i0h@apakabar.cc.columbia.edu> <3gf0f7$pkf@empire.texas.net>
  81059. Nntp-Posting-Host: watsun.cc.columbia.edu
  81060. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  81061.  
  81062. In article <3gf0f7$pkf@empire.texas.net>,
  81063. David J. Moczygemba <davidm@texas.net> wrote:
  81064. >In article <3gdup1$i0h@apakabar.cc.columbia.edu>, jaltman@watsun.cc.columbia.edu (Jeffrey Altman) says:
  81065. >
  81066. >Thank you for the confirmation.  The AS/400 is running OS/400.  
  81067.  
  81068. Well, then the only thing I can recommend is that you use IND$FILE as 
  81069. the file transfer protocol.  Use it to move the file to some intermediary
  81070. machine which can support both Kermit and IND$FILE.  An OS/2 box with 
  81071. Communication Manager/2 and C-Kermit for OS/2 would do.  
  81072.  
  81073. You should then be able to send a request to a C-Kermit Server on the OS/2 
  81074. machine to get a file from the AS/400.  This would be in the form of a
  81075. REXX command.  After the download to OS/2, you would then perform a GET 
  81076. on the intermediary file.
  81077.  
  81078. You can talk to me in private for more details if you want to pursue 
  81079. this avenue.
  81080.  
  81081. Of course, if there was a programmer available who had access to a AS/400
  81082. that was willing to help us in the port of C-Kermit to that platform, 
  81083. well we would be very appreciative. :-)
  81084.  
  81085.  
  81086. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  81087. "C-Kermit: available on more platforms than any other communications software."
  81088. "Kermit FTP: sending files whenever and wherever they are needed."
  81089.   OS/2 version 5A(190): ftp://kermit.columbia.edu/kermit/archives/cko190.zip 
  81090.  
  81091. From news@columbia.edu Sun Jan 29 15:45:47 1995
  81092. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17566
  81093.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 29 Jan 1995 10:45:51 -0500
  81094. Received: by apakabar.cc.columbia.edu id AA07832
  81095.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 29 Jan 1995 10:45:49 -0500
  81096. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  81097. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  81098. Newsgroups: comp.protocols.kermit.misc
  81099. Subject: Re: Kermit is leaking
  81100. Date: 29 Jan 1995 15:45:47 GMT
  81101. Organization: Columbia University
  81102. Lines: 27
  81103. Message-Id: <3ggd7b$7km@apakabar.cc.columbia.edu>
  81104. References: <jzeroD35p9C.CAH@netcom.com>
  81105. Nntp-Posting-Host: watsun.cc.columbia.edu
  81106. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  81107.  
  81108. In article <jzeroD35p9C.CAH@netcom.com>, Jim Nakamura <jzero@netcom.com> wrote:
  81109. >
  81110. >Every so often (during a connection) random characters appear on the
  81111. >screen. Kermit (190) is leaking.  This problem does not show up
  81112. >on other comm programs.
  81113. >
  81114.  
  81115.  
  81116. Sorry, can you be a little more specific?
  81117.  
  81118. Random characters at the current cursor position?
  81119.  
  81120. Random characters at some other position?
  81121.  
  81122. Is it reproducible?  Do these random characters occur often enough that 
  81123. you could capture them in a session log which could be sent to me?
  81124.  
  81125. Could you please define "leaking"?
  81126.  
  81127. Are you using hardware flow control?
  81128.  
  81129. Thanks for taking the time to elaborate.
  81130.  
  81131. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  81132. "C-Kermit: available on more platforms than any other communications software."
  81133. "Kermit FTP: sending files whenever and wherever they are needed."
  81134.   OS/2 version 5A(190): ftp://kermit.columbia.edu/kermit/archives/cko190.zip 
  81135.  
  81136. From news@columbia.edu Sun Jan 30 02:28:29 1995
  81137. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14503
  81138.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 29 Jan 1995 21:52:12 -0500
  81139. Received: by apakabar.cc.columbia.edu id AA20187
  81140.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 29 Jan 1995 21:52:11 -0500
  81141. Path: news.columbia.edu!panix!news.mathworks.com!hookup!swrinde!howland.reston.ans.net!gatech!cs.utk.edu!not-for-mail
  81142. From: teoh@cs.utk.edu (JONATHAN ENG-SENG TEOH)
  81143. Newsgroups: comp.protocols.kermit.misc
  81144. Subject: Kermit uploading problem
  81145. Date: 29 Jan 1995 21:28:29 -0500
  81146. Organization: CS Department, University of Tennessee, Knoxville
  81147. Lines: 18
  81148. Message-Id: <3ghisdINNhlc@duncan.cs.utk.edu>
  81149. Nntp-Posting-Host: duncan.cs.utk.edu
  81150. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  81151.  
  81152. I cannot upload binary files using  Kermit. Can anyone help?
  81153.  
  81154. Symptoms:
  81155.  
  81156. 1. No problem downloading files, whether text or binary.
  81157. 2. NO problem uploading text files.
  81158. 3. Cannot upload binary files. Error message: too many retries.
  81159.  
  81160. I have tried issuing "set file type binary" on both the host and my pc. 
  81161. I have also tried the server mode. No luck. How can this be?
  81162.  
  81163. Hardware:
  81164. Modem: USRobotics Courier HST dual standard v.32bis    
  81165. PC: IBM PS/2 model 55
  81166. Host: either VAX Ultrix or VAX VMS. 
  81167.  
  81168. Any help would be highly appreciated.
  81169.  
  81170.  
  81171. From news@columbia.edu Sun Jan 29 14:34:46 1995
  81172. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20888
  81173.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 30 Jan 1995 00:18:13 -0500
  81174. Received: by apakabar.cc.columbia.edu id AA00762
  81175.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 30 Jan 1995 00:18:11 -0500
  81176. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  81177. From: jrd@cc.usu.edu (Joe Doupnik)
  81178. Newsgroups: comp.protocols.kermit.misc
  81179. Subject: Re: Kermit uploading problem
  81180. Message-Id: <1995Jan29.203446.39743@cc.usu.edu>
  81181. Date: 29 Jan 95 20:34:46 MDT
  81182. References: <3ghisdINNhlc@duncan.cs.utk.edu>
  81183. Organization: Utah State University
  81184. Lines: 30
  81185. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  81186.  
  81187. In article <3ghisdINNhlc@duncan.cs.utk.edu>, teoh@cs.utk.edu (JONATHAN ENG-SENG TEOH) writes:
  81188. > I cannot upload binary files using  Kermit. Can anyone help?
  81189. > Symptoms:
  81190. > 1. No problem downloading files, whether text or binary.
  81191. > 2. NO problem uploading text files.
  81192. > 3. Cannot upload binary files. Error message: too many retries.
  81193. > I have tried issuing "set file type binary" on both the host and my pc. 
  81194. > I have also tried the server mode. No luck. How can this be?
  81195. > Hardware:
  81196. > Modem: USRobotics Courier HST dual standard v.32bis    
  81197. > PC: IBM PS/2 model 55
  81198. > Host: either VAX Ultrix or VAX VMS. 
  81199. > Any help would be highly appreciated.
  81200. -------------
  81201.     More information is needed, I'm afraid to say. Which versions of
  81202. Kermits are being used? The VERSION command and the startup herald will
  81203. show that. Flow control *must* be used, particularly going to the VAXen.
  81204. Since hardware flow control is difficult to achieve on VAXen you are stuck
  81205. with XON/XOFF, so be sure the VAX side can send it (see your VAX system
  81206. manager). Then do not unprotect XON/XOFF control codes in Kermit packets
  81207. because that will let data mistakenly act as flow control bytes.
  81208.     Finally, examine the PARITY situation. If parity is in use be
  81209. sure to tell both Kermits about it, else you will lose the high bit of
  81210. bytes and the transfer will fail.
  81211.     Joe D.
  81212.  
  81213. From news@columbia.edu Mon Jan 30 07:31:27 1995
  81214. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00298
  81215.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 30 Jan 1995 03:57:07 -0500
  81216. Received: by apakabar.cc.columbia.edu id AA09261
  81217.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 30 Jan 1995 03:57:05 -0500
  81218. Path: news.columbia.edu!panix!news.mathworks.com!hookup!swrinde!howland.reston.ans.net!vixen.cso.uiuc.edu!ux2.cso.uiuc.edu!shair
  81219. From: shair@uiuc.edu (Bob Shair)
  81220. Newsgroups: comp.protocols.kermit.misc
  81221. Subject: Re: kermit for IBM AS/400s???
  81222. Date: 30 Jan 1995 07:31:27 GMT
  81223. Organization: University of Illinois at Urbana
  81224. Lines: 26
  81225. Message-Id: <3gi4kf$a72@vixen.cso.uiuc.edu>
  81226. References: <3g6iul$2cf@cactus.texas.net> <3gdup1$i0h@apakabar.cc.columbia.edu> <3gf0f7$pkf@empire.texas.net> <3ggd0l$7h6@apakabar.cc.columbia.edu>
  81227. Nntp-Posting-Host: ux2.cso.uiuc.edu
  81228. Originator: shair@ux2.cso.uiuc.edu
  81229. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  81230.  
  81231. jaltman@watsun.cc.columbia.edu (Jeffrey Altman) writes:
  81232.  
  81233. >In article <3gf0f7$pkf@empire.texas.net>,
  81234. >David J. Moczygemba <davidm@texas.net> wrote:
  81235. >>In article <3gdup1$i0h@apakabar.cc.columbia.edu>, jaltman@watsun.cc.columbia.edu (Jeffrey Altman) says:
  81236. >>
  81237. >>Thank you for the confirmation.  The AS/400 is running OS/400.  
  81238. >
  81239. >Well, then the only thing I can recommend is that you use IND$FILE as 
  81240. >the file transfer protocol.  Use it to move the file to some intermediary
  81241. >machine which can support both Kermit and IND$FILE.  An OS/2 box with 
  81242. >Communication Manager/2 and C-Kermit for OS/2 would do.  
  81243. >
  81244. >You should then be able to send a request to a C-Kermit Server on the OS/2 
  81245. >machine to get a file from the AS/400.  This would be in the form of a
  81246. >REXX command.  After the download to OS/2, you would then perform a GET 
  81247. >on the intermediary file.
  81248.  
  81249. That sounds like a workable solution to the problem.  I'd be inclined to
  81250. recommend using ftp (of TCP/IP) rather than IND$FILE for the OS/2 to AS/400
  81251. link if performance is an issue.
  81252. -- 
  81253.  
  81254. Bob Shair                          Open Systems Consultant
  81255. 1018 W. Springfield Avenue         shair@uiuc.edu
  81256. Champaign, IL 61821           217/356-2684
  81257.  
  81258. From news@columbia.edu Sun Jan 29 15:21:02 1995
  81259. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00303
  81260.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 30 Jan 1995 03:57:21 -0500
  81261. Received: by apakabar.cc.columbia.edu id AA09265
  81262.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 30 Jan 1995 03:57:20 -0500
  81263. Path: news.columbia.edu!sol.ctr.columbia.edu!news.msfc.nasa.gov!cs.utk.edu!emory!swrinde!cs.utexas.edu!uwm.edu!psuvax1!news.ecn.bgu.edu!willis.cis.uab.edu!news.lsu.edu!lsuvm.sncc.lsu.edu!SPDREH
  81264. From: SPDREH@lsuvm.sncc.lsu.edu (Michael Dreher)
  81265. Newsgroups: comp.protocols.kermit.misc
  81266. Subject: Re: Telemate & Kermit help ne
  81267. Date: Sun, 29 Jan 95 21:21:02 CST
  81268. Organization: Louisiana State University
  81269. Lines: 51
  81270. Message-Id: <1733512C41S86.SPDREH@lsuvm.sncc.lsu.edu>
  81271. References: <8A22456.096600057D.uuout@mcc.sydpcug.org.au> <8A28031.096600059C.uuout@mcc.sydpcug.org.au>
  81272. Nntp-Posting-Host: lsuvm.sncc.lsu.edu
  81273. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  81274.  
  81275. In article <8A28031.096600059C.uuout@mcc.sydpcug.org.au>
  81276. paul.garcia@mcc.sydpcug.org.au (PAUL GARCIA) writes:
  81277.  
  81278. >KI> Does anyone know how to set up Telemate 4.12 properly in order to uploa
  81279. >KI> via Kermit with long packets of 1000 or more?  Right now it is set to 8
  81280. >KI> and I can only get a maximum cps rate of 500 (SLOW!).  If Telemate
  81281. >KI> doesn't allow this, then are there other comm programs like Telix or
  81282. >KI> Qmodem which can be configured like this?
  81283. >
  81284. >I posted a similar question re: Telix and Kermit in another news group. I
  81285. >heard nothing so I'll try here. I seem to only be able to set packet
  81286. >lengths to 99 in Telix. Also slooww CPS rate. Any ideas on how to
  81287. >circumvent this?
  81288. >
  81289. >Appreciate any advice.
  81290. >
  81291. >
  81292.  
  81293. I'll answer to both, although I know Telix better than Terminate.  There's
  81294. a couple of threads about Telix and MS-Kermit in Fidonet.  Basically, you
  81295. can install MS-Kermit as an external protocol in Telix.  What you need is
  81296. a simple batch file that has one line: (Pick based on which version of Kermit
  81297. you have)
  81298. c:\msker314\kerlite.exe   (MS-Kermit 3.14)
  81299. c:\msker313\kermit.exe    (MS-Kermit 3.13) -- adjust based on your path.
  81300.  
  81301. Save the batch file as KERMIT.BAT and call it from the External protocols
  81302. menu.  You do not have to pass file names.  The download and upload batch
  81303. file is the same (KERMIT.BAT).  You do need to have Kermit either in your
  81304. PATH statement or in the same directory as Telix/Terminate.
  81305.  
  81306. You then configure the long packets in the MSCUSTOM.INI files.  I have
  81307. packets set to 2000, and it works fine for me.
  81308.  
  81309. That serves as the basics--you will want to check out the book as well as
  81310. the Kermit FAQ--that will tell you how to optimize your performance even more.
  81311. I have a poor server connection here, and can get 675 cps on text transfers
  81312. at 9600 bps, and about 400 cps on binarys.  The FAQ explains how to optimize
  81313. still more.  The FAQ is available by FTP to kermit.columbia.edu
  81314.  
  81315. Telix does *NOT* have the full Kermit implementation--it's only a subset that
  81316. has a max of 94 cps.  That is explained in the Telix 3.2x documentation.
  81317. I don't believe Telemate does either.  That's why Frank and others urge us
  81318. to use Columbia's Kermit.
  81319. Hope this helps!
  81320.  
  81321. Michael Dreher
  81322. Dept. of Speech Communication
  81323. Louisiana State University
  81324. Baton Rouge, LA  70803-3923
  81325. spdreh@lsuvm.sncc.lsu.edu (Internet)
  81326.  
  81327. From news@columbia.edu Mon Jan 30 14:42:24 1995
  81328. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16922
  81329.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 30 Jan 1995 09:42:32 -0500
  81330. Received: by apakabar.cc.columbia.edu id AA04242
  81331.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 30 Jan 1995 09:42:29 -0500
  81332. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  81333. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  81334. Newsgroups: comp.protocols.kermit.misc
  81335. Subject: Re: Kermit uploading problem
  81336. Date: 30 Jan 1995 14:42:24 GMT
  81337. Organization: Columbia University
  81338. Lines: 21
  81339. Message-Id: <3gitsg$44f@apakabar.cc.columbia.edu>
  81340. References: <3ghisdINNhlc@duncan.cs.utk.edu>
  81341. Nntp-Posting-Host: watsun.cc.columbia.edu
  81342. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  81343.  
  81344. In article <3ghisdINNhlc@duncan.cs.utk.edu>,
  81345. JONATHAN ENG-SENG TEOH <teoh@cs.utk.edu> wrote:
  81346. >I cannot upload binary files using  Kermit. Can anyone help?
  81347. >
  81348. >1. No problem downloading files, whether text or binary.
  81349. >2. NO problem uploading text files.
  81350. >3. Cannot upload binary files. Error message: too many retries.
  81351. >
  81352. >I have tried issuing "set file type binary" on both the host and my pc. 
  81353. >I have also tried the server mode. No luck. How can this be?
  81354. >
  81355. Something in the upstream path is sensitive to the contents of the
  81356. Kermit packets.
  81357.  
  81358. If you are using the SET CONTROL UNPREFIX feature, then stop using it.
  81359.  
  81360. If that is not the answer, then use SET PARITY SPACE.
  81361.  
  81362. One or both of these should do the trick.
  81363.  
  81364. - Frank
  81365.  
  81366. From news@columbia.edu Mon Jan 30 14:55:25 1995
  81367. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17980
  81368.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 30 Jan 1995 09:55:38 -0500
  81369. Received: by apakabar.cc.columbia.edu id AA05149
  81370.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 30 Jan 1995 09:55:34 -0500
  81371. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  81372. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  81373. Newsgroups: comp.protocols.kermit.misc
  81374. Subject: Re: kermit for IBM AS/400s???
  81375. Date: 30 Jan 1995 14:55:25 GMT
  81376. Organization: Columbia University
  81377. Lines: 33
  81378. Message-Id: <3giukt$50e@apakabar.cc.columbia.edu>
  81379. References: <3g6iul$2cf@cactus.texas.net> <3gf0f7$pkf@empire.texas.net> <3ggd0l$7h6@apakabar.cc.columbia.edu> <3gi4kf$a72@vixen.cso.uiuc.edu>
  81380. Nntp-Posting-Host: watsun.cc.columbia.edu
  81381. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  81382.  
  81383. In article <3gi4kf$a72@vixen.cso.uiuc.edu>, Bob Shair <shair@uiuc.edu> wrote:
  81384. >jaltman@watsun.cc.columbia.edu (Jeffrey Altman) writes:
  81385. >
  81386. >>In article <3gf0f7$pkf@empire.texas.net>,
  81387. >>David J. Moczygemba <davidm@texas.net> wrote:
  81388. >>>In article <3gdup1$i0h@apakabar.cc.columbia.edu>, jaltman@watsun.cc.columbia.edu (Jeffrey Altman) says:
  81389. >>>
  81390. >>You should then be able to send a request to a C-Kermit Server on the OS/2 
  81391. >>machine to get a file from the AS/400.  This would be in the form of a
  81392. >>REXX command.  After the download to OS/2, you would then perform a GET 
  81393. >>on the intermediary file.
  81394. >
  81395. >That sounds like a workable solution to the problem.  I'd be inclined to
  81396. >recommend using ftp (of TCP/IP) rather than IND$FILE for the OS/2 to AS/400
  81397. >link if performance is an issue.
  81398.  
  81399. The difference is that IND$FILE can be executed on OS/2 via a batch process.
  81400. I do not believe that there is an automated ftp for OS/2 yet.
  81401.  
  81402. Also, it is unclear whether TCP/IP services are available on this OS/400 
  81403. system.
  81404.  
  81405. x
  81406. x
  81407. x
  81408. x
  81409. x
  81410.  
  81411. x
  81412. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  81413. "C-Kermit: available on more platforms than any other communications software."
  81414. "Kermit FTP: sending files whenever and wherever they are needed."
  81415.   OS/2 version 5A(190): ftp://kermit.columbia.edu/kermit/archives/cko190.zip 
  81416.  
  81417. From news@columbia.edu Mon Jan 30 15:27:24 1995
  81418. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28499
  81419.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 30 Jan 1995 12:15:28 -0500
  81420. Received: by apakabar.cc.columbia.edu id AA17834
  81421.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 30 Jan 1995 12:15:26 -0500
  81422. Path: news.columbia.edu!sol.ctr.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!usc!howland.reston.ans.net!agate!overload.lbl.gov!lll-winken.llnl.gov!uop!pacbell.com!amdahl.com!amd!decwrl!tribune.usask.ca!quartz.ucs.ualberta.ca!rover.ucs.ualberta.ca!news.ucalgary.ca!news.ucalgary.ca!not-for-mail
  81423. From: smsummer@acs.ucalgary.ca (Stephan Martin Summerer)
  81424. Newsgroups: comp.protocols.kermit.misc
  81425. Subject: C-Kermit and Warp
  81426. Date: 30 Jan 1995 08:27:24 -0700
  81427. Organization: The University of Calgary
  81428. Lines: 14
  81429. Message-Id: <3gj0gs$1b3r@acs5.acs.ucalgary.ca>
  81430. Nntp-Posting-Host: acs5.acs.ucalgary.ca
  81431. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  81432.  
  81433. Can somebody help me here? When I was running C-Kermit 5A (190
  81434. and 189, either one) I used to be able to download in the
  81435. background no problem. Now that I upgraded to Warp whenever I
  81436. switch away to another task, even just to the desktop (I am
  81437. running full screen C-Kermit) the transfer is aborted. C-kermit
  81438. for OS/2 says that the other end stopped tranmitting and it timed
  81439. out, but when I switch back to terminal mode everyting is still
  81440. coming out at the screen. Is there some default setting that was
  81441. changed in Warp compared to 2.11? How about a mode setting for
  81442. the com port? It is frustrating to sit there and watch the
  81443. transfer take place, I might as well be running DOS (uhnn!)
  81444.     Stephan
  81445.  
  81446.  
  81447.  
  81448. From news@columbia.edu Mon Jan 30 19:53:41 1995
  81449. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10230
  81450.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 30 Jan 1995 14:53:48 -0500
  81451. Received: by apakabar.cc.columbia.edu id AA03124
  81452.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 30 Jan 1995 14:53:47 -0500
  81453. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  81454. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  81455. Newsgroups: comp.protocols.kermit.misc
  81456. Subject: Re: C-Kermit and Warp
  81457. Date: 30 Jan 1995 19:53:41 GMT
  81458. Organization: Columbia University
  81459. Lines: 38
  81460. Message-Id: <3gjg45$31i@apakabar.cc.columbia.edu>
  81461. References: <3gj0gs$1b3r@acs5.acs.ucalgary.ca>
  81462. Nntp-Posting-Host: watsun.cc.columbia.edu
  81463. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  81464.  
  81465. In article <3gj0gs$1b3r@acs5.acs.ucalgary.ca>,
  81466. Stephan Martin Summerer <smsummer@acs.ucalgary.ca> wrote:
  81467. >Can somebody help me here? When I was running C-Kermit 5A (190
  81468. >and 189, either one) I used to be able to download in the
  81469. >background no problem. Now that I upgraded to Warp whenever I
  81470. >switch away to another task, even just to the desktop (I am
  81471. >running full screen C-Kermit) the transfer is aborted. C-kermit
  81472. >for OS/2 says that the other end stopped tranmitting and it timed
  81473. >out, but when I switch back to terminal mode everyting is still
  81474. >coming out at the screen. Is there some default setting that was
  81475. >changed in Warp compared to 2.11? How about a mode setting for
  81476. >the com port? It is frustrating to sit there and watch the
  81477. >transfer take place, I might as well be running DOS (uhnn!)
  81478. >    Stephan
  81479.  
  81480. WARP provides no changes to the API for the system or its defaults.
  81481. When using WARP you should only use 5A(190) as 5A(189) is not
  81482. compatible with WARP's IAK.  Of course, 5A(190) also has many
  81483. additional features.
  81484.  
  81485. Things that did change in WARP were the COM drivers.  Many people
  81486. have complained about the drivers when they don't have a buffered 
  81487. UART.
  81488.  
  81489. You also don't mention what speed you are transmitting at.
  81490.  
  81491. Make sure you are using hardware flow control.
  81492.  
  81493. And what else are you running in the background?  Are you using the
  81494. Windows quick-load option by chance?
  81495.  
  81496.  
  81497.  
  81498.  
  81499. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  81500. "C-Kermit: available on more platforms than any other communications software."
  81501. "Kermit FTP: sending files whenever and wherever they are needed."
  81502.   OS/2 version 5A(190): ftp://kermit.columbia.edu/kermit/archives/cko190.zip 
  81503.  
  81504. From news@columbia.edu Mon Jan 30 23:02:10 1995
  81505. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23767
  81506.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 30 Jan 1995 18:02:20 -0500
  81507. Received: by apakabar.cc.columbia.edu id AA23084
  81508.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 30 Jan 1995 18:02:18 -0500
  81509. Path: news.columbia.edu!watsun.cc.columbia.edu!pepmnt
  81510. From: pepmnt@watsun.cc.columbia.edu (John Chandler)
  81511. Newsgroups: comp.protocols.kermit.misc
  81512. Subject: Re: Crash recovery and (nearly) full file systems
  81513. Date: 30 Jan 1995 23:02:10 GMT
  81514. Organization: Columbia University
  81515. Lines: 6
  81516. Message-Id: <3gjr5i$mh2@apakabar.cc.columbia.edu>
  81517. References: <jhurwitD37JJo.41t@netcom.com>
  81518. Nntp-Posting-Host: watsun.cc.columbia.edu
  81519. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  81520.  
  81521. Clearly, Kermit should take into account the fact that you are attempting
  81522. to resume an interrupted transfer.  You can get around the refusal, though.
  81523. Just SET ATTR LEN OFF.
  81524.                     John Chandler
  81525.  
  81526.  
  81527.  
  81528. From news@columbia.edu Mon Jan 30 15:56:38 1995
  81529. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18728
  81530.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 31 Jan 1995 01:05:59 -0500
  81531. Received: by apakabar.cc.columbia.edu id AA16163
  81532.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 31 Jan 1995 01:05:56 -0500
  81533. Newsgroups: comp.protocols.kermit.misc
  81534. Path: news.columbia.edu!sol.ctr.columbia.edu!news.msfc.nasa.gov!cs.utk.edu!gatech!udel!news.mathworks.com!solaris.cc.vt.edu!spcuna!ritz!kudut
  81535. From: kudut@ritz.mordor.com (Kenneth Udut)
  81536. Subject: Re: Telemate & Kermit help ne
  81537. X-Signature: YES! - the Yarn Editor Shell, Version 0.08.B1205
  81538. References: <8A22456.096600057D.uuout@mcc.sydpcug.org.au>
  81539.  <8A28031.096600059C.uuout@mcc.sydpcug.org.au>
  81540. Sender: kudut@ritz.mordor.com (Ken Udut)
  81541. Organization: SOUP Leaf off of ritz.mordor.com (Jersey City, NJ, USA)
  81542. Date: Mon, 30 Jan 1995 15:56:38 GMT
  81543. X-Newsreader: Yarn 0.75
  81544. Message-Id: <smGBlqo7IBwQ075yn@ritz.mordor.com>
  81545. Lines: 35
  81546. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  81547.  
  81548. kudut@ritz.mordor.com <Ken>
  81549. -----------------------------------------------------------------------
  81550.                                                             30.Jan.1995
  81551.  
  81552. In article <8A28031.096600059C.uuout@mcc.sydpcug.org.au>,
  81553. paul.garcia@mcc.sydpcug.org.au (PAUL GARCIA) wrote:
  81554. > KI> From: kiwayama@gpu2.srv.ualberta.ca (Keiko Iwayama)
  81555. > KI> Newsgroups: comp.protocols.kermit.misc
  81556. > KI> Does anyone know how to set up Telemate 4.12 properly in order to uploa
  81557. > KI> via Kermit with long packets of 1000 or more?  Right now it is set to 8
  81558. > KI> and I can only get a maximum cps rate of 500 (SLOW!).  If Telemate
  81559. > KI> doesn't allow this, then are there other comm programs like Telix or
  81560. > KI> Qmodem which can be configured like this?
  81561. > I posted a similar question re: Telix and Kermit in another news group. I 
  81562. > heard nothing so I'll try here. I seem to only be able to set packet 
  81563. > lengths to 99 in Telix. Also slooww CPS rate. Any ideas on how to 
  81564. > circumvent this?
  81565. > Appreciate any advice.
  81566.  
  81567. Set Kermit up as an external protocol, and call on KERLITE.EXE [3.14] when
  81568. transferring files.
  81569.  
  81570. Examples a-plenty are given in the documentation that comes with
  81571. Kermit.  It's the only guarenteed way to get fast transfer rates
  81572. and a guarentee to be able to connect to all modern Kermits.
  81573.  
  81574. Get Kermit from ftp - kermit.columbia.edu under /kermit/bin/msv314.zip
  81575.  
  81576. --
  81577. Kenneth Udut                                          kudut@ritz.mordor.com
  81578. Listowner of Y-RIGHTS@SJUVM.BITNET - discussion on the rights of kids/teens
  81579.  
  81580. From news@columbia.edu Tue Jan 31 11:58:07 1995
  81581. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06800
  81582.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 31 Jan 1995 07:10:05 -0500
  81583. Received: by apakabar.cc.columbia.edu id AA09630
  81584.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 31 Jan 1995 07:10:02 -0500
  81585. Path: news.columbia.edu!panix!news.mathworks.com!news.alpha.net!uwm.edu!vixen.cso.uiuc.edu!howland.reston.ans.net!swrinde!pipex!sunic!trane.uninett.no!eunet.no!nuug!telepost.no!oslonett.no!oslonett.no!not-for-mail
  81586. From: Sven%OSLONETT@apakabar.cc.columbia.edu (Sven Andreassen)
  81587. Newsgroups: comp.protocols.kermit.misc
  81588. Subject: How to make TCPIP32 & DIS_PKT9 coexist
  81589. Date: 31 Jan 1995 12:58:07 +0100
  81590. Organization: Oslonett public access
  81591. Lines: 18
  81592. Message-Id: <ALdBlmjXlSu5076yn@OSLONETT>
  81593. Nntp-Posting-Host: hasle.oslonett.no
  81594. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  81595.  
  81596. Dear all.
  81597.  
  81598. Have any of you gentlemen managed to make TCP/IP-32a and a 
  81599. Packet-driver exist in harmony at the same time??
  81600.  
  81601. I have managed to install both drivers on my computer, (thanks to
  81602. the ones in this conference who helped me out), and the drivers
  81603. actually works pretty well.  My problem is that I can't have two
  81604. different programs up at the same time if one is using the packet-
  81605. driver and the other one is using the TCP/IP stack. (ex. 
  81606. Microsofts TELNET and MS-KERMIT 3.13).
  81607.  
  81608. Has any of you gentlemen dealed with this problem before?
  81609.  
  81610. Hope to hear from you.
  81611.  
  81612. Sven Andreassen
  81613. [sven@oslonett.no]
  81614.  
  81615. From news@columbia.edu Tue Jan 31 13:24:19 1995
  81616. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06378
  81617.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 31 Jan 1995 08:41:55 -0500
  81618. Received: by apakabar.cc.columbia.edu id AA13294
  81619.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 31 Jan 1995 08:41:53 -0500
  81620. Newsgroups: comp.protocols.kermit.misc
  81621. Path: news.columbia.edu!panix!news.mathworks.com!zombie.ncsc.mil!news.duke.edu!agate!overload.lbl.gov!lll-winken.llnl.gov!uop!csus.edu!netcom.com!jzero
  81622. From: jzero@netcom.com (Jim Nakamura)
  81623. Subject: Re: Kermit is leaking
  81624. Message-Id: <jzeroD39uKJ.L63@netcom.com>
  81625. Organization: NETCOM On-line Communication Services (408 261-4700 guest)
  81626. References: <jzeroD35p9C.CAH@netcom.com> <3ggd7b$7km@apakabar.cc.columbia.edu>
  81627. Date: Tue, 31 Jan 1995 13:24:19 GMT
  81628. Lines: 39
  81629. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  81630.  
  81631. jaltman@watsun.cc.columbia.edu (Jeffrey Altman) writes:
  81632.  
  81633. | In article <jzeroD35p9C.CAH@netcom.com>, Jim Nakamura <jzero@netcom.com> wrote:
  81634. | >
  81635. | >Every so often (during a connection) random characters appear on the
  81636. | >screen. Kermit (190) is leaking.  This problem does not show up
  81637. | >on other comm programs.
  81638.  
  81639.  
  81640. > Sorry, can you be a little more specific?
  81641.  
  81642.     My apologies.  I've been busy and haven't had
  81643.     much time to check my mail.
  81644.  
  81645. > Random characters at the current cursor position?
  81646.  
  81647.     Yes.  About a character or two every half minute.
  81648.  
  81649. > Random characters at some other position?
  81650.  
  81651.     No.
  81652.  
  81653. > Is it reproducible?  Do these random characters occur often enough that 
  81654. > you could capture them in a session log which could be sent to me?
  81655.  
  81656.     Seems to happen only while in my newsreader "nn".
  81657.  
  81658. > Could you please define "leaking"?
  81659.  
  81660.     "O{pPd^Dd" - these characters (one at a time appearing at
  81661.     random intervals at the cursor screen).
  81662.  
  81663. > Are you using hardware flow control?
  81664.  
  81665.     Yes.
  81666.  
  81667.  
  81668. -- 
  81669. jzero@netcom.com
  81670.  
  81671. From news@columbia.edu Tue Jan 31 13:59:48 1995
  81672. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17485
  81673.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 31 Jan 1995 11:20:27 -0500
  81674. Received: by apakabar.cc.columbia.edu id AA27276
  81675.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 31 Jan 1995 11:20:25 -0500
  81676. Newsgroups: comp.protocols.kermit.misc
  81677. Path: news.columbia.edu!panix!news.mathworks.com!hookup!swrinde!howland.reston.ans.net!ix.netcom.com!netcom.com!helios
  81678. From: helios@netcom.com (Thomas David Nichols)
  81679. Subject: Re: MSKermit Login Problem
  81680. Message-Id: <heliosD39w7o.4q2@netcom.com>
  81681. Organization: Heliotrope Quality Systems
  81682. X-Newsreader: TIN [version 1.2 PL1]
  81683. References: <9501291851.AA22159@swcscmd-fs>
  81684. Date: Tue, 31 Jan 1995 13:59:48 GMT
  81685. Lines: 12
  81686. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  81687.  
  81688. Mr. Calvin Rome (dtd-lo3@usasoc.soc.mil) wrote:
  81689. : I need some help getting MSKermit to login to a UNIX platform
  81690. : running SUNOS 4.1.
  81691.  
  81692. I'm having no trouble with Netcom's SUNOS, with this in my script
  81693. input 5 ogin:
  81694. if success output helios\13
  81695.  
  81696. Maybe you should show us your script (with any passwords deleted)
  81697.  
  81698. -- 
  81699. David Nichols  <helios@netcom.com>  Heliotrope Quality Systems
  81700.  
  81701. From news@columbia.edu Sun Jan 29 08:51:59 1995
  81702. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27760
  81703.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 31 Jan 1995 21:19:06 -0500
  81704. Received: by apakabar.cc.columbia.edu id AA10704
  81705.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 31 Jan 1995 21:19:04 -0500
  81706. Newsgroups: comp.protocols.kermit.misc
  81707. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!howland.reston.ans.net!news.sprintlink.net!hookup!olivea!news.hal.COM!decwrl!pa.dec.com!usasoc.soc.mil!dtd-lo3
  81708. From: dtd-lo3@usasoc.soc.mil (Mr. Calvin Rome)
  81709. Message-Id: <9501291851.AA22159@swcscmd-fs>
  81710. Subject: MSKermit Login Problem
  81711. Date: Sun, 29 Jan 95 13:51:59 EST
  81712. X-Received: by usenet.pa.dec.com; id AA02446; Sun, 29 Jan 95 23:00:56 -0800
  81713. X-Received: by pobox1.pa.dec.com; id AA23999; Sun, 29 Jan 95 10:49:56 -0800
  81714. X-Received: from USASOC.SOC.MIL by inet-gw-3.pa.dec.com (5.65/10Aug94)
  81715.     id AA26407; Sun, 29 Jan 95 10:49:20 -0800
  81716. X-Mailer: Mail User's Shell (6.3 6/25/88)
  81717. X-To: comp.protocols.kermit.misc.usenet@decwrl.dec.com
  81718. X-Cc: dtd-lo3@usasoc.soc.mil
  81719. Lines: 40
  81720. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  81721.  
  81722. I need some help getting MSKermit to login to a UNIX platform
  81723. running SUNOS 4.1.
  81724.  
  81725. Here is the situation:
  81726.  
  81727. I am currently using MSKermit v3.14 dated 18 Jan 95, patch level 3.
  81728. I had been using MSKermit v3.13 to login to a UNIX platform running
  81729. SCO and to the NOW troubled SUN connection without any problems. In
  81730. the meantime I began using the MSKermit betas as they were being
  81731. released and making minor modifications in the *.ini files.  The Sys
  81732. Admin on the Sun box made some changes in the login scripts which
  81733. broke the ability of MSKermit to login.  I went back to my original
  81734. MSK v3.13 program and tried (I had left everything intact during beta
  81735. testing) and it would not login either.  HOWEVER, I have also been
  81736. using both Procomm Plus for DOS and Procomm Plus for Win, both of
  81737. which login to the SUN box with no problems.  My userid is dtd-lo3.
  81738. When attempting to login with MSK this is what appears at the login:
  81739.  
  81740.    login: t-lo3      then it locks up
  81741.  
  81742. Just to see what happens I used Caps and this was the result:
  81743.  
  81744.    login: DD-3       then it locks up
  81745.  
  81746. With Procomm I get normal results and am then prompted for the
  81747. password:
  81748.  
  81749.    login: dtd-lo3
  81750.    Password:
  81751.  
  81752. My Sys Admin's solution is to use Procomm!  But I like MSK much better
  81753. for connecting to the UNIX boxes and then on to Internet.  Any
  81754. suggestions?
  81755.  
  81756. **********************************************************************
  81757. Calvin Rome, GS-11     | SOF Language Office
  81758. Computer Specialist    | US Army John F. Kennedy Special Warfare Center
  81759. dtd-lo3@usasoc.soc.mil | and School
  81760. ***********************************************************************
  81761.  
  81762.  
  81763. From news@columbia.edu Mon Jan 30 19:23:05 1995
  81764. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08487
  81765.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 1 Feb 1995 00:13:35 -0500
  81766. Received: by apakabar.cc.columbia.edu id AA07099
  81767.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 1 Feb 1995 00:13:34 -0500
  81768. Newsgroups: comp.protocols.kermit.misc
  81769. Path: news.columbia.edu!panix!zip.eecs.umich.edu!umn.edu!gold.tc.umn.edu!kauf0019
  81770. From: kauf0019@gold.tc.umn.edu (Lauren P Kauffman)
  81771. Subject: kermit for DG AOS???
  81772. Message-Id: <kauf0019.791493785@gold.tc.umn.edu>
  81773. Sender: news@news.tc.umn.edu (Usenet News Administration)
  81774. Nntp-Posting-Host: gold.tc.umn.edu
  81775. Organization: University of Minnesota, Twin Cities
  81776. Date: Mon, 30 Jan 1995 19:23:05 GMT
  81777. Lines: 5
  81778. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  81779.  
  81780. Does anyone know of a version of kermit that runs on a Data General 
  81781. MV7800XP AOS operating system?
  81782.  
  81783. Lauren Kauffman
  81784.  
  81785.  
  81786. From news@columbia.edu Tue Jan 31 11:13:43 1995
  81787. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18733
  81788.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 1 Feb 1995 03:32:33 -0500
  81789. Received: by apakabar.cc.columbia.edu id AA22099
  81790.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 1 Feb 1995 03:32:32 -0500
  81791. Newsgroups: comp.protocols.kermit.misc
  81792. Path: news.columbia.edu!panix!zip.eecs.umich.edu!newsxfer.itd.umich.edu!ncar!ames!hookup!swrinde!howland.reston.ans.net!news.sprintlink.net!EU.net!sun4nl!news.nic.surfnet.nl!wldelft.nl!dee
  81793. From: dee@wldelft.nl (Dick Dee)
  81794. Subject: Kermit and PCMCIA
  81795. Message-Id: <D39oIw.MGM@wldelft.nl>
  81796. Sender: dee@ws16sno.wldelft.nl (Dick Dee)
  81797. Organization: Waterloopkundig Laboratorium (Delft Hydraulics)
  81798. Date: Tue, 31 Jan 1995 11:13:43 GMT
  81799. Lines: 7
  81800. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  81801.  
  81802. I have a notebook with a PCMCIA modem, running DOS or
  81803. MSWindows. Kermit doesn't recognize the modem, it gives a message
  81804. "unknown hardware" or something like that. All other communications
  81805. programs I've tried work as expected. Anybody know what's going on?
  81806.  
  81807. Dick Dee
  81808. dee@wldelft.nl
  81809.  
  81810. From news@columbia.edu Tue Jan 31 14:53:26 1995
  81811. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18774
  81812.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 1 Feb 1995 03:33:28 -0500
  81813. Received: by apakabar.cc.columbia.edu id AA22125
  81814.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 1 Feb 1995 03:33:27 -0500
  81815. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!hookup!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  81816. From: jrd@cc.usu.edu (Joe Doupnik)
  81817. Newsgroups: comp.protocols.kermit.misc
  81818. Subject: Re: Can MS-DOS kermit handle zmodem transfers?
  81819. Message-Id: <1995Jan31.205326.40045@cc.usu.edu>
  81820. Date: 31 Jan 95 20:53:26 MDT
  81821. References: <3gkt57$euc@israel-info.datasrv.co.il>
  81822. Organization: Utah State University
  81823. Lines: 17
  81824. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  81825.  
  81826. In article <3gkt57$euc@israel-info.datasrv.co.il>, winter@zeus.datasrv.co.il (4th Dimension) writes:
  81827. > I'm using both Unix kermit (C-Kermit 5A(190)) and MS-DOS 3.14.
  81828. > On the remote Unix host I can use either kermit or sz (zomdem send).
  81829. > On my local Unix, when I use kermit, I'm using the 'rz' macro defined in
  81830. > the file rz.ini to handle zmodem tranfers from the remote Unix.
  81831. > I know that comm. programs on PC (e.g. Telix) can handle zmodem
  81832. > transfers.
  81833. > Is it possible for MS-DOS kermit to support zmodem transfers?
  81834. > If this is an FAQ, please direct me to the proper doc.
  81835. ---------
  81836.     No, Columbia Kermit programs don't do X/Y/Zmodem transfers. We
  81837. think we have a very suitable protocol named Kermit which is just as
  81838. fast as the others and much better in many respects.
  81839.     Joe D.
  81840.  
  81841. From news@columbia.edu Mon Jan 30 20:31:32 1995
  81842. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20036
  81843.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 1 Feb 1995 04:05:39 -0500
  81844. Received: by apakabar.cc.columbia.edu id AA23166
  81845.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 1 Feb 1995 04:05:37 -0500
  81846. Control: cancel <D33004.1Dp@physics.purdue.edu>
  81847. Newsgroups: comp.protocols.kermit.misc
  81848. Path: news.columbia.edu!panix!bloom-beacon.mit.edu!news.kei.com!news.mathworks.com!usenet.eel.ufl.edu!usenet.cis.ufl.edu!purdue!mozo.cc.purdue.edu!news.physics.purdue.edu!london.physics.purdue.edu!korty
  81849. From: korty@london.physics.purdue.edu (Andrew J. Korty)
  81850. Subject: cancel
  81851. Message-Id: <D38JoK.KII@physics.purdue.edu>
  81852. Sender: usenet@physics.purdue.edu (News Administration)
  81853. Organization: Purdue University Department of Physics
  81854. Date: Mon, 30 Jan 1995 20:31:32 GMT
  81855. Lines: 1
  81856. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  81857.  
  81858. <D33004.1Dp@physics.purdue.edu> was cancelled from within trn.
  81859.  
  81860. From news@columbia.edu Sun Feb  1 05:15:46 1995
  81861. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21182
  81862.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 1 Feb 1995 04:36:44 -0500
  81863. Received: by apakabar.cc.columbia.edu id AA24181
  81864.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 1 Feb 1995 04:36:42 -0500
  81865. Path: news.columbia.edu!sol.ctr.columbia.edu!spool.mu.edu!uwm.edu!news.alpha.net!news.mathworks.com!newshost.marcam.com!charnel.ecst.csuchico.edu!olivea!decwrl!nntp.crl.com!crl8.crl.com!not-for-mail
  81866. From: dgrisner@crl.com (David G. Risner)
  81867. Newsgroups: comp.protocols.kermit.misc
  81868. Subject: Re: Can MS-DOS kermit handle zmodem transfers?
  81869. Date: 31 Jan 1995 21:15:46 -0800
  81870. Organization: CRL Dialup Internet Access    (415) 705-6060  [Login: guest]
  81871. Lines: 29
  81872. Message-Id: <3gn5e2$7am@crl8.crl.com>
  81873. References: <3gkt57$euc@israel-info.datasrv.co.il> <1995Jan31.205326.40045@cc.usu.edu>
  81874. Nntp-Posting-Host: crl8.crl.com
  81875. X-Newsreader: TIN [version 1.2 PL2]
  81876. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  81877.  
  81878. You can set up Kermit to run PDZ or DSZ (the former Public Domain and the 
  81879. latter Shareware).  They do ZModem transfer.
  81880.  
  81881. If you would like info. on how to use or get PDZ, send me E-Mail.  
  81882.  
  81883. David G. Risner
  81884. dgrisner@crl.com
  81885.  
  81886. ps:  That's what I am using for connecting to my Unix shell account.
  81887.  
  81888.  
  81889. Joe Doupnik (jrd@cc.usu.edu) wrote:
  81890. : In article <3gkt57$euc@israel-info.datasrv.co.il>, winter@zeus.datasrv.co.il (4th Dimension) writes:
  81891. : > 
  81892. : > I'm using both Unix kermit (C-Kermit 5A(190)) and MS-DOS 3.14.
  81893. : > On the remote Unix host I can use either kermit or sz (zomdem send).
  81894. : > On my local Unix, when I use kermit, I'm using the 'rz' macro defined in
  81895. : > the file rz.ini to handle zmodem tranfers from the remote Unix.
  81896. : > 
  81897. : > I know that comm. programs on PC (e.g. Telix) can handle zmodem
  81898. : > transfers.
  81899. : > Is it possible for MS-DOS kermit to support zmodem transfers?
  81900. : > 
  81901. : > If this is an FAQ, please direct me to the proper doc.
  81902. : ---------
  81903. :     No, Columbia Kermit programs don't do X/Y/Zmodem transfers. We
  81904. : think we have a very suitable protocol named Kermit which is just as
  81905. : fast as the others and much better in many respects.
  81906. :     Joe D.
  81907.  
  81908. From news@columbia.edu Mon Jan 30 08:19:16 1995
  81909. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23479
  81910.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 1 Feb 1995 06:02:46 -0500
  81911. Received: by apakabar.cc.columbia.edu id AA26312
  81912.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 1 Feb 1995 06:02:45 -0500
  81913. Path: news.columbia.edu!panix!news.mathworks.com!hookup!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  81914. From: jrd@cc.usu.edu (Joe Doupnik)
  81915. Newsgroups: comp.protocols.kermit.misc
  81916. Subject: Re: MSKermit Login Problem
  81917. Message-Id: <1995Jan30.141916.39821@cc.usu.edu>
  81918. Date: 30 Jan 95 14:19:16 MDT
  81919. References: <9501291851.AA22159@swcscmd-fs>
  81920. Organization: Utah State University
  81921. Lines: 53
  81922. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  81923.  
  81924. In article <9501291851.AA22159@swcscmd-fs>, dtd-lo3@usasoc.soc.mil (Mr. Calvin Rome) writes:
  81925. > I need some help getting MSKermit to login to a UNIX platform
  81926. > running SUNOS 4.1.
  81927. > Here is the situation:
  81928. > I am currently using MSKermit v3.14 dated 18 Jan 95, patch level 3.
  81929. > I had been using MSKermit v3.13 to login to a UNIX platform running
  81930. > SCO and to the NOW troubled SUN connection without any problems. In
  81931. > the meantime I began using the MSKermit betas as they were being
  81932. > released and making minor modifications in the *.ini files.  The Sys
  81933. > Admin on the Sun box made some changes in the login scripts which
  81934. > broke the ability of MSKermit to login.  I went back to my original
  81935. > MSK v3.13 program and tried (I had left everything intact during beta
  81936. > testing) and it would not login either.  HOWEVER, I have also been
  81937. > using both Procomm Plus for DOS and Procomm Plus for Win, both of
  81938. > which login to the SUN box with no problems.  My userid is dtd-lo3.
  81939. > When attempting to login with MSK this is what appears at the login:
  81940. >    login: t-lo3      then it locks up
  81941. > Just to see what happens I used Caps and this was the result:
  81942. >    login: DD-3       then it locks up
  81943. > With Procomm I get normal results and am then prompted for the
  81944. > password:
  81945. >    login: dtd-lo3
  81946. >    Password:
  81947. > My Sys Admin's solution is to use Procomm!  But I like MSK much better
  81948. > for connecting to the UNIX boxes and then on to Internet.  Any
  81949. > suggestions?
  81950. > **********************************************************************
  81951. > Calvin Rome, GS-11     | SOF Language Office
  81952. > Computer Specialist    | US Army John F. Kennedy Special Warfare Center
  81953. > dtd-lo3@usasoc.soc.mil | and School
  81954. > ***********************************************************************
  81955. -------------
  81956.     SET TCP DEBUG ON to see Telnet Options negotiations blow by blow.
  81957. The above has the indications of an Option your host wants but is not
  81958. supported by MSK. LOG SESSION if you want us to have a look at it too
  81959. (or give me a host name to try from my place).
  81960.     Another, related, thought it your host may require LF as a terminator
  81961. rather than CR during the login process. Try ending lines in Control-J to
  81962. see.
  81963.     Last thought is your host may not understand terminal type VT320
  81964. and it keeps asking for something different. This will show in the Options
  81965. negotiations chatter. SET TCP TERM-TYPE is the way to say one thing and
  81966. be another.
  81967.     Joe D.
  81968.  
  81969. From news@columbia.edu Wed Feb  1 10:25:14 1995
  81970. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00891
  81971.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 1 Feb 1995 06:39:55 -0500
  81972. Received: by apakabar.cc.columbia.edu id AA09437
  81973.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 1 Feb 1995 06:39:53 -0500
  81974. Path: news.columbia.edu!panix!news.mathworks.com!hookup!swrinde!pipex!uunet!mnemosyne.cs.du.edu!nyx.cs.du.edu!not-for-mail
  81975. From: ffisher@nyx.cs.du.edu (Francis Fisher)
  81976. Newsgroups: comp.protocols.kermit.misc
  81977. Subject: cmsg cancel <3gmh74$390@nyx.cs.du.edu>
  81978. Control: cancel <3gmh74$390@nyx.cs.du.edu>
  81979. Date: 1 Feb 1995 03:25:14 -0700
  81980. Organization: University of Denver, Math/CS Dept.
  81981. Lines: 3
  81982. Message-Id: <3gnnia$7eg@nyx.cs.du.edu>
  81983. Nntp-Posting-Host: nyx.cs.du.edu
  81984. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  81985.  
  81986. cancel <3gmh74$390@nyx.cs.du.edu> in newsgroup comp.protocols.kermit.misc
  81987.  
  81988. This article was cancelled from within NN version 6.5.0 #3 (NOV)
  81989.  
  81990. From news@columbia.edu Mon Jan 30 11:58:22 1995
  81991. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27745
  81992.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 1 Feb 1995 08:06:15 -0500
  81993. Received: by apakabar.cc.columbia.edu id AA12129
  81994.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 1 Feb 1995 08:06:14 -0500
  81995. Path: news.columbia.edu!panix!news.mathworks.com!newshost.marcam.com!zip.eecs.umich.edu!caen!kuhub.cc.ukans.edu!falcon.cc.ukans.edu!awebb
  81996. Newsgroups: comp.protocols.kermit.misc
  81997. Subject: LINUX KERMIT PROBLEM
  81998. Message-Id: <1995Jan30.175822.84185@kuhub.cc.ukans.edu>
  81999. From: awebb@falcon.cc.ukans.edu (WEBB ADAM W)
  82000. Date: 30 Jan 95 17:58:22 CST
  82001. Nntp-Posting-Host: falcon.cc.ukans.edu
  82002. X-Newsreader: TIN [version 1.2 PL2]
  82003. Lines: 4
  82004. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  82005.  
  82006. I am using ckermit for linux as an external protocol in minicom (the linux comm program). Everytime I transfer a file or group of files the files turn out fine but it drops carrier after completion. This is very annoying and if anyone knows a solution to this problem please email me at awebb@falcon.cc.ukans.edu or post an answer here.  Thnx.
  82007.  
  82008. A. Webb
  82009.  
  82010.  
  82011. From news@columbia.edu Mon Jan 30 12:00:58 1995
  82012. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27750
  82013.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 1 Feb 1995 08:06:17 -0500
  82014. Received: by apakabar.cc.columbia.edu id AA12133
  82015.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 1 Feb 1995 08:06:16 -0500
  82016. Path: news.columbia.edu!panix!news.mathworks.com!newshost.marcam.com!zip.eecs.umich.edu!caen!kuhub.cc.ukans.edu!falcon.cc.ukans.edu!awebb
  82017. Newsgroups: comp.protocols.kermit.misc
  82018. Subject: LINUX KERMIT PROBLEM
  82019. Message-Id: <1995Jan30.180059.84186@kuhub.cc.ukans.edu>
  82020. From: awebb@falcon.cc.ukans.edu (WEBB ADAM W)
  82021. Date: 30 Jan 95 18:00:58 CST
  82022. Nntp-Posting-Host: falcon.cc.ukans.edu
  82023. X-Newsreader: TIN [version 1.2 PL2]
  82024. Lines: 7
  82025. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  82026.  
  82027.  
  82028. Since my last message didn't come out...I have to repost.
  82029. I run kermit externally through minicom (a comm program for
  82030. linux). Everytime after a transfer it hangs up. If anyone
  82031. knows how to fix this either email me at
  82032. awebb@falcon.cc.ukans.edu or post it here. Thnx.
  82033.  
  82034.  
  82035. From news@columbia.edu Wed Feb  1 12:49:22 1995
  82036. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01111
  82037.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 1 Feb 1995 09:19:41 -0500
  82038. Received: by apakabar.cc.columbia.edu id AA17346
  82039.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 1 Feb 1995 09:19:39 -0500
  82040. Path: news.columbia.edu!panix!news.mathworks.com!udel!news.sprintlink.net!pipex!uunet!nntp.crl.com!crl12.crl.com!not-for-mail
  82041. From: cgi@crl.com (Paul Smith)
  82042. Newsgroups: comp.protocols.kermit.misc
  82043. Subject: Kermit TSR for background xfers?
  82044. Date: 1 Feb 1995 04:49:22 -0800
  82045. Organization: CRL Dialup Internet Access    (415) 705-6060  [Login: guest]
  82046. Lines: 18
  82047. Message-Id: <3go00i$bie@crl12.crl.com>
  82048. Nntp-Posting-Host: crl12.crl.com
  82049. X-Newsreader: TIN [version 1.2 PL2]
  82050. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  82051.  
  82052. Hi,
  82053.  
  82054. I'm asking in advance of buying the Kermit manual and proceeding with a solution:
  82055.  
  82056. Does the MSDOS kermit tool kit have a TSR mode of operation for a simple DOS box
  82057. may run other windows/dos progs for serving background call ins over a modem
  82058. to a com port for file transfer in / out / delete?
  82059.  
  82060. Where the file transfer may occur without interupting the forground use of the
  82061. DOS console??
  82062.  
  82063. If so, the kermit would save me a BUNCH.  I need to provide a remote unattended
  82064. file xfer solution to 40,000 DOS boxes and realy need a good and cheap solution.
  82065.  
  82066. Thanks..
  82067.  
  82068.  
  82069.  
  82070.  
  82071. From news@columbia.edu Wed Feb  1 15:57:19 1995
  82072. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08507
  82073.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 1 Feb 1995 10:57:37 -0500
  82074. Received: by apakabar.cc.columbia.edu id AA28205
  82075.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 1 Feb 1995 10:57:32 -0500
  82076. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  82077. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  82078. Newsgroups: comp.protocols.kermit.misc
  82079. Subject: Re: kermit for DG AOS???
  82080. Date: 1 Feb 1995 15:57:19 GMT
  82081. Organization: Columbia University
  82082. Lines: 18
  82083. Message-Id: <3gob0v$rgp@apakabar.cc.columbia.edu>
  82084. References: <kauf0019.791493785@gold.tc.umn.edu>
  82085. Nntp-Posting-Host: watsun.cc.columbia.edu
  82086. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  82087.  
  82088. In article <kauf0019.791493785@gold.tc.umn.edu>,
  82089. Lauren P Kauffman <kauf0019@gold.tc.umn.edu> wrote:
  82090. >Does anyone know of a version of kermit that runs on a Data General 
  82091. >MV7800XP AOS operating system?
  82092. >
  82093. Yes, C-Kermit 5A(190).
  82094.  
  82095. Anonymous ftp to kermit.columbia.edu, directory kermit/f,
  82096. file ckd190.uue.  This is a UUencoded AOS DUMPFILE.  UUdecode it
  82097. if you can ("uudecode" is not a standard part of AOS/VS, but there
  82098. is an AOS/VS uudecode program included in the Kermit distribution
  82099. as kermit/f/ckdeco.c).
  82100.  
  82101. Get the resulting ckdker.pr file to your AOS/VS system and "undump"
  82102. it; this gives you the AOS/VS kermit.pr executable plus all the
  82103. various supporting files: ckermit.ini, ckcker.upd, etc etc.
  82104.  
  82105. - Frank
  82106.  
  82107. From news@columbia.edu Wed Feb  1 16:00:51 1995
  82108. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08853
  82109.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 1 Feb 1995 11:01:01 -0500
  82110. Received: by apakabar.cc.columbia.edu id AA28697
  82111.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 1 Feb 1995 11:00:57 -0500
  82112. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  82113. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  82114. Newsgroups: comp.protocols.kermit.misc
  82115. Subject: Re: Kermit and PCMCIA
  82116. Date: 1 Feb 1995 16:00:51 GMT
  82117. Organization: Columbia University
  82118. Lines: 15
  82119. Message-Id: <3gob7j$s0g@apakabar.cc.columbia.edu>
  82120. References: <D39oIw.MGM@wldelft.nl>
  82121. Nntp-Posting-Host: watsun.cc.columbia.edu
  82122. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  82123.  
  82124. In article <D39oIw.MGM@wldelft.nl>, Dick Dee <dee@wldelft.nl> wrote:
  82125. >I have a notebook with a PCMCIA modem, running DOS or
  82126. >MSWindows. Kermit doesn't recognize the modem, it gives a message
  82127. >"unknown hardware" or something like that. All other communications
  82128. >programs I've tried work as expected. Anybody know what's going on?
  82129. >
  82130. The current version of MS-DOS Kermit is 3.14.  Assuming you have
  82131. version 3.13 or 3.14, please consult the KERMIT.BWR file that comes
  82132. with it.  There is a section called:
  82133.  
  82134.   TROUBLESHOOTING MS-DOS KERMIT SERIAL PORT AND MODEM PROBLEMS
  82135.  
  82136. which contains all the information you need to get this working.
  82137.  
  82138. - Frank
  82139.  
  82140. From news@columbia.edu Wed Feb  1 16:04:43 1995
  82141. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09263
  82142.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 1 Feb 1995 11:04:53 -0500
  82143. Received: by apakabar.cc.columbia.edu id AA29066
  82144.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 1 Feb 1995 11:04:49 -0500
  82145. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  82146. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  82147. Newsgroups: comp.protocols.kermit.misc
  82148. Subject: Re: Kermit TSR for background xfers?
  82149. Date: 1 Feb 1995 16:04:43 GMT
  82150. Organization: Columbia University
  82151. Lines: 11
  82152. Message-Id: <3gober$sc4@apakabar.cc.columbia.edu>
  82153. References: <3go00i$bie@crl12.crl.com>
  82154. Nntp-Posting-Host: watsun.cc.columbia.edu
  82155. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  82156.  
  82157. In article <3go00i$bie@crl12.crl.com>, Paul Smith <cgi@crl.com> wrote:
  82158. >Does the MSDOS kermit tool kit have a TSR mode of operation for a simple DOS
  82159. >box may run other windows/dos progs for serving background call ins over a
  82160. >modem to a com port for file transfer in / out / delete?
  82161. >
  82162. No, MS-DOS Kermit does not have a "simple TSR" mode.  If you want to transfer
  82163. files with Kermit on your PC and at the same use your PC for other things,
  82164. then you need a multitasking environment (or what passes for one) like
  82165. OS/2, Windows, NT, DesqView, etc.
  82166.  
  82167. - Frank
  82168.  
  82169. From news@columbia.edu Wed Feb  1 16:11:10 1995
  82170. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09787
  82171.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 1 Feb 1995 11:11:24 -0500
  82172. Received: by apakabar.cc.columbia.edu id AA29824
  82173.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 1 Feb 1995 11:11:21 -0500
  82174. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  82175. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  82176. Newsgroups: comp.protocols.kermit.misc
  82177. Subject: Re: MSKermit Login Problem
  82178. Date: 1 Feb 1995 16:11:10 GMT
  82179. Organization: Columbia University
  82180. Lines: 32
  82181. Message-Id: <3gobqu$t3l@apakabar.cc.columbia.edu>
  82182. References: <9501291851.AA22159@swcscmd-fs>
  82183. Nntp-Posting-Host: watsun.cc.columbia.edu
  82184. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  82185.  
  82186. In article <9501291851.AA22159@swcscmd-fs>,
  82187. Mr. Calvin Rome <dtd-lo3@usasoc.soc.mil> wrote:
  82188. >I need some help getting MSKermit to login to a UNIX platform
  82189. >running SUNOS 4.1.
  82190. >
  82191. (Long description omitted...)
  82192.  
  82193. Forget about script programming for a moment.  Can you log in
  82194. BY HAND?  If not, given evidence like the following:
  82195.  
  82196. > login: t-lo3      then it locks up
  82197. > login: DD-3       then it locks up
  82198. > login: dtd-lo3
  82199. >
  82200. I would say that your host had suddenly been programmed to require
  82201. a certain type of parity for incoming characters, most likely "even".
  82202. Try telling MS-DOS Kermit to:
  82203.  
  82204.   set parity even
  82205.  
  82206. (or "odd", "mark", or "space" if "even" doesn't do it) and most likely
  82207. it will work.
  82208.  
  82209. By the way, this is one of the most fundamental problems we encounter
  82210. in data communications, and you could not have missed it if you had
  82211. read the manual.
  82212.  
  82213. - Frank
  82214.  
  82215. P.S. There is no earthly reason why a host should *require* parity on
  82216. incoming characters, so another approach would be to ask the system
  82217. administrators to put it back the way it was before.
  82218.  
  82219. From news@columbia.edu Wed Feb  1 16:19:41 1995
  82220. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10396
  82221.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 1 Feb 1995 11:20:09 -0500
  82222. Received: by apakabar.cc.columbia.edu id AA00859
  82223.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 1 Feb 1995 11:20:04 -0500
  82224. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  82225. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  82226. Newsgroups: comp.protocols.kermit.misc
  82227. Subject: Re: LINUX KERMIT PROBLEM
  82228. Date: 1 Feb 1995 16:19:41 GMT
  82229. Organization: Columbia University
  82230. Lines: 35
  82231. Message-Id: <3gocat$mh@apakabar.cc.columbia.edu>
  82232. References: <1995Jan30.175822.84185@kuhub.cc.ukans.edu>
  82233. Nntp-Posting-Host: watsun.cc.columbia.edu
  82234. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  82235.  
  82236. In article <1995Jan30.175822.84185@kuhub.cc.ukans.edu>,
  82237. WEBB ADAM W <awebb@falcon.cc.ukans.edu> wrote:
  82238. >I am using ckermit for linux as an external protocol in minicom (the
  82239. >linux comm program). Everytime I transfer a file or group of files the
  82240. >files turn out fine but it drops carrier after completion. This is very
  82241. >annoying...
  82242. >
  82243. Quoting from section 11.1 of the ckuker.bwr file that comes with C-Kermit
  82244. 5A(190), "C-Kermit as an External Protocol", which applies to "pmcomm" but
  82245. probably is also relevant to this question (I'd appreciate feedback on
  82246. this so I can update the documentation):
  82247.  
  82248. "pcomm" is a general-purpose terminal program that provides file transfer
  82249. capabilities itself (X- and YMODEM variations) and the ability to call on
  82250. external programs to do file transfers (ZMODEM and Kermit, for example).
  82251. You can tell pcomm the command to send or receive a file with an external
  82252. protocol:
  82253.             send                receive
  82254.     ZMODEM        sz <filename>            rz
  82255.     Kermit        kermit -s <filename>        kermit -r
  82256.  
  82257. pcomm runs external programs for file transfer by making stdin and stdout
  82258. point to the modem port, and then exec-ing "/bin/sh -c xxx" (where xxx is
  82259. the appropriate command).  However, C-Kermit does not treat stdin and
  82260. stdout as the communication device unless you instruct it:
  82261.  
  82262.             send                receive
  82263.     Kermit        kermit -l 0 -s <filename>    kermit -l 0 -r
  82264.  
  82265. The "-l 0" option means to use file descriptor 0 for the communication device.
  82266.  
  82267. In general, any program can pass any open file descriptor to C-Kermit for the
  82268. communication device in the "-l" command-line option.
  82269.  
  82270. (End quote)
  82271.  
  82272. From news@columbia.edu Wed Feb  1 21:57:17 1995
  82273. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03039
  82274.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 2 Feb 1995 01:30:56 -0500
  82275. Received: by apakabar.cc.columbia.edu id AA11634
  82276.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 2 Feb 1995 01:30:54 -0500
  82277. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!news.alpha.net!uwm.edu!news.doit.wisc.edu!koala.uwec.edu!uwrf.edu!uwrf.edu!mn01
  82278. Newsgroups: comp.protocols.kermit.misc
  82279. Subject: Arrow key problems
  82280. Message-Id: <1995Feb1.155717@taz>
  82281. From: mn01@taz.acc.uwrf.edu
  82282. Date: 1 Feb 95 15:57:17 -0600
  82283. Organization: University of Wisconsin - River Falls
  82284. Nntp-Posting-Host: taz.acc.uwrf.edu
  82285. Lines: 48
  82286. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  82287.  
  82288. I have a user with a CompuAdd 325TFX notebook computer.  It is running DOS 5,
  82289. Windows 3.1 and has PhoenixBIOS A386 Version 1.01.
  82290.  
  82291. I am trying to install MS-DOS Kermit 3.14 on it for dial-in use.  I have
  82292. encountered a strange problem while trying to get the keyboard mappings correct
  82293. however and am looking for enlightenment from the net.
  82294.  
  82295. I want the arrow keys to function as arrow keys, \Kuparr, \Kdnarr, etc. but they
  82296. don't always.  I am using the VT320 emulation.  The initialization file maps
  82297. many of the other "typical" VT keys.
  82298.  
  82299. Kermit senses the notebook as having an 88-key keyboard.  If I do a SHOW KEY
  82300. on the up arrow key as the first command, it will report the following:
  82301.  
  82302.     scan code \328
  82303.     Verb: KP8 \KKP8
  82304.  
  82305. If I then do another SHOW KEY immediately afterwards, doing nothing else
  82306. in-between, I get the following:
  82307.  
  82308.     scan code \4424
  82309.     Verb: uparr \Kuparr
  82310.  
  82311. Similar things will happen if I show the key definition for down arrow, left or
  82312. right.  This happens even if I put the proper SET KEY commands in the
  82313. initialization file.  It seems that kermit ignores them until I do a SHOW KEY.
  82314. This is causing problems since once our users connect, they need the use of the
  82315. arrow keys.  I finally just mapped ALT- some other keys to the arrow functions
  82316. but I really would like to solve the arrow key problems.
  82317.  
  82318. The keyboard on the notebook is, naturally, smaller.  But, it has 12 function
  82319. keys and does have the 6 keys: Insert, Delete, Home, End, Page Up and Page Down.
  82320.  
  82321. The other really weird thing is if I use the DOS commands TYPE file|MORE or EDIT
  82322. file before I run kermit, kermit thinks the keyboard is a 101-key keyboard and
  82323. then the arrow keys work fine!  But, the user of this notebook won't be doing
  82324. those commands so this isn't a real good solution for him...
  82325.  
  82326. If this is some standard PC-type keyboard thing, please forgive me.  I'm not a
  82327. pc person.
  82328.  
  82329. Thanks in advance for any assistance.
  82330.  
  82331. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  82332. Marlys A. Nelson            System Manager, Systems Programmer,
  82333. Academic Computing            Network Manager, etc., etc.
  82334. Univ. of WI - River Falls
  82335. Internet: Marlys.A.Nelson@uwrf.edu
  82336.  
  82337. From news@columbia.edu Tue Jan 31 14:52:05 1995
  82338. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10979
  82339.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 2 Feb 1995 05:20:25 -0500
  82340. Received: by apakabar.cc.columbia.edu id AA19195
  82341.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 2 Feb 1995 05:20:24 -0500
  82342. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!swiss.ans.net!howland.reston.ans.net!swrinde!pipex!uunet!nntp.crl.com!crl12.crl.com!not-for-mail
  82343. From: cgi@crl.com (Paul Smith)
  82344. Newsgroups: comp.protocols.tcp-ip.ibmpc,comp.protocols.ibm,comp.protocols.kermit.misc
  82345. Subject: DOS TSR remote file xfer???
  82346. Date: 31 Jan 1995 06:52:05 -0800
  82347. Organization: CRL Dialup Internet Access    (415) 705-6060  [Login: guest]
  82348. Lines: 26
  82349. Message-Id: <3gliql$df3@crl12.crl.com>
  82350. Nntp-Posting-Host: crl12.crl.com
  82351. X-Newsreader: TIN [version 1.2 PL2]
  82352. Xref: news.columbia.edu comp.protocols.tcp-ip.ibmpc:33389 comp.protocols.ibm:3993 comp.protocols.kermit.misc:1791
  82353. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  82354.  
  82355. Hi,
  82356.  
  82357. I have the job of figuring out a solution for 40,000 DOS boxes, that all have
  82358. varying and unknow HW or SW (windows or not) configuration for:
  82359.  
  82360. 1) remote file xfer, in and out and delete.
  82361.  
  82362. 2) Support preferably a central Unix box to on-demand dial any of the remote
  82363. DOS boxes and send fetch files then hang-up.
  82364.  
  82365. 3) prefably have a simple passwd on the DOS box to filter out teh un-wanted.
  82366.  
  82367. Solutions could be:
  82368.  
  82369. a) TSR based SLIP+ ftpd
  82370.  
  82371. b) TSR based kermit in server mode.  This one sounds the most plausable given
  82372. a need for a small RAM foot print...  
  82373.  
  82374. The kermit folks have any ideas?
  82375.  
  82376. c) Any of the old LAN manager stuff help here as a TSR remote tool?
  82377.  
  82378. Thanks..
  82379.  
  82380.  
  82381.  
  82382. From news@columbia.edu Tue Jan 31 14:37:38 1995
  82383. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11163
  82384.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 2 Feb 1995 05:27:12 -0500
  82385. Received: by apakabar.cc.columbia.edu id AA19320
  82386.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 2 Feb 1995 05:27:11 -0500
  82387. Newsgroups: comp.protocols.kermit.misc
  82388. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!news.intercon.com!panix!news.mathworks.com!hookup!swrinde!howland.reston.ans.net!ix.netcom.com!netcom.com!jzero
  82389. From: jzero@netcom.com (Jim Nakamura)
  82390. Subject: Re: Can't connect at 28.8 :(
  82391. Message-Id: <jzeroD39xyr.Hxv@netcom.com>
  82392. Organization: NETCOM On-line Communication Services (408 261-4700 guest)
  82393. References: <jzeroD2x187.J3p@netcom.com> <3g8930$nms@apakabar.cc.columbia.edu>
  82394. Date: Tue, 31 Jan 1995 14:37:38 GMT
  82395. Lines: 54
  82396. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  82397.  
  82398. fdc@watsun.cc.columbia.edu (Frank da Cruz) writes:
  82399.  
  82400. | In article Jim Nakamura <jzero@netcom.com> wrote:
  82401.  
  82402. | >Whenever I connect to internet service provider, I get the message
  82403. | >
  82404. | >    CONNECT 14400/V32/NONE
  82405. | >    Can't change speed to 14400
  82406.  
  82407. | As explained in the manual (just type "help" at the C-Kermit prompt
  82408. | to find out more about the manual), there are numerous ways in which
  82409. | you have to get the software (Kermit in this case) and the modem to
  82410. | agree.  Perhaps chief among them is the treatment of the interface speed.
  82411.  
  82412. | Modems can be configured to make their interface speed follow the
  82413. | connection speed, or to keep their interface speed fixed no matter what
  82414. | the connection speed turns out to be.
  82415.  
  82416. | Modern high-speed, error-correcting, data-compressing modems should
  82417. | generally be configured in the latter way: with interface speed fixed,
  82418. | or locked.
  82419.  
  82420. | You have set your modem this way (&B1), but you did not set Kermit this
  82421. | way, so Kermit tried to change its interface speed to 14400 when it got
  82422. | the "CONNECT 14400" message from the modem.  Luckily, it could not do
  82423. | this, since evidently 14400 is not a supported speed on your computer.
  82424.  
  82425. | The trick is to tell Kermit to use the highest reliable interface speed it
  82426. | and your computer and your modem all have in common, and to use RTS/CTS
  82427. | "hardware" flow control if available, and then before dialing, tell Kermit
  82428. | to "set dial speed-matching off".  See pages 60-61 of "Using C-Kermit" for
  82429. | a longer explanation.
  82430.  
  82431.     Frank, many thanks.
  82432.  
  82433.     The error message went away after I followed your suggestion.
  82434.     I also took this opportunity to read pp. 60-61 of your fine
  82435.     manual which spends most of its time just sitting on my 
  82436.     bookshelf (like all my books (-; ).  
  82437.  
  82438.     By the way, any particular reason you renamed the binary
  82439.     to wermit?
  82440.  
  82441.     Also, whenever I invoke wermit, I get the message "Executing
  82442.     SAMPLE C-Kermit customization file /home/jzero/.mykermrc".
  82443.     Then "Please edit this file to reflect your needs and
  82444.     preferences."  Then *nothing*.
  82445.  
  82446.     If I hit Ctrl-C, kermit springs into action and I then
  82447.     get the C-Kermit prompt.
  82448.  
  82449.     Do you know what's going on?
  82450. -- 
  82451. jzero@netcom.com
  82452.  
  82453. From news@columbia.edu Wed Feb  1 22:50:21 1995
  82454. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11471
  82455.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 2 Feb 1995 05:37:45 -0500
  82456. Received: by apakabar.cc.columbia.edu id AA19530
  82457.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 2 Feb 1995 05:37:44 -0500
  82458. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!hookup!news.moneng.mei.com!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!news.cc.utah.edu!news
  82459. From: Boyd Fjeldsted <bebrblf@business.utah.edu>
  82460. Newsgroups: comp.protocols.kermit.misc
  82461. Subject: File Transfer Using Telnet Host Menu?
  82462. Date: 1 Feb 1995 22:50:21 GMT
  82463. Organization: University Of Utah Computer Center
  82464. Lines: 8
  82465. Message-Id: <3gp37d$pkt@news.cc.utah.edu>
  82466. Nntp-Posting-Host: pc-294.business.utah.edu
  82467. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  82468.  
  82469. After using Kermit to telnet to a remote host, is it possible to
  82470. download files from the remote host by means of the host's file 
  82471. download menu? If so, what Kermit settings are required? If not,
  82472. is there any other way of downloading files from the remote host
  82473. (which does not provide FTP services)?  An example of such a host
  82474. is cenbbs.census.gov -- which which was set up as a bbs server, but
  82475. now also provides telnet services on port 23.
  82476.  
  82477.  
  82478. From news@columbia.edu Tue Jan 31 03:33:03 1995
  82479. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12497
  82480.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 2 Feb 1995 06:13:34 -0500
  82481. Received: by apakabar.cc.columbia.edu id AA28884
  82482.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 2 Feb 1995 06:13:29 -0500
  82483. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!news.intercon.com!udel!news.mathworks.com!hookup!swrinde!howland.reston.ans.net!news.sprintlink.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  82484. From: jrd@cc.usu.edu (Joe Doupnik)
  82485. Newsgroups: comp.protocols.kermit.misc
  82486. Subject: Re: How to make TCPIP32 & DIS_PKT9 coexist
  82487. Message-Id: <1995Jan31.093303.39920@cc.usu.edu>
  82488. Date: 31 Jan 95 09:33:03 MDT
  82489. References: <ALdBlmjXlSu5076yn@OSLONETT>
  82490. Organization: Utah State University
  82491. Lines: 30
  82492. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  82493.  
  82494. In article <ALdBlmjXlSu5076yn@OSLONETT>, Sven@OSLONETT (Sven Andreassen) writes:
  82495. > Dear all.
  82496. > Have any of you gentlemen managed to make TCP/IP-32a and a 
  82497. > Packet-driver exist in harmony at the same time??
  82498. > I have managed to install both drivers on my computer, (thanks to
  82499. > the ones in this conference who helped me out), and the drivers
  82500. > actually works pretty well.  My problem is that I can't have two
  82501. > different programs up at the same time if one is using the packet-
  82502. > driver and the other one is using the TCP/IP stack. (ex. 
  82503. > Microsofts TELNET and MS-KERMIT 3.13).
  82504. > Has any of you gentlemen dealed with this problem before?
  82505. > Hope to hear from you.
  82506. > Sven Andreassen
  82507. > [sven@oslonett.no]
  82508. -------
  82509.     It's not the method of reaching the board so much as having
  82510. two or more protocol stacks of the same kind operating at once. Packets
  82511. are delivered once, and hopefully (randomly...) to the right stack else
  82512. trouble. We have repeatedly stressed in the Kermit documentation to use
  82513. only one stack of a given kind over a board, with Kermit or any program.
  82514. If you wish to try the multiplexers then it is at your risk and we can't 
  82515. lend a hand.
  82516.     Finally, I presume that "TCP/IP-32a" means Microsoft's stack,
  82517. right? If so that is for Windows programs, not for DOS level programs.
  82518.         Joe D.
  82519.  
  82520. From news@columbia.edu Thu Feb  2 03:07:33 1995
  82521. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24668
  82522.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 2 Feb 1995 06:44:27 -0500
  82523. Received: by apakabar.cc.columbia.edu id AA03452
  82524.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 2 Feb 1995 06:44:25 -0500
  82525. Newsgroups: comp.protocols.kermit.misc
  82526. Path: news.columbia.edu!panix!news.mathworks.com!hookup!swrinde!ihnp4.ucsd.edu!news.encore.com!tma
  82527. From: tma@encore.com (Thanh Ma)
  82528. Subject: Re: Can MS-DOS kermit handle zmodem transfers?
  82529. Organization: Encore Computer Corporation
  82530. Date: Thu, 2 Feb 1995 03:07:33 GMT
  82531. Message-Id: <D3CrCn.A9u@encore.com>
  82532. References: <3gkt57$euc@israel-info.datasrv.co.il> <1995Jan31.205326.40045@cc.usu.edu>
  82533. Sender: news@encore.com (Usenet readnews user id)
  82534. Nntp-Posting-Host: achilles.encore.com
  82535. Lines: 29
  82536. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  82537.  
  82538. jrd@cc.usu.edu (Joe Doupnik) writes:
  82539.  
  82540. >In article <3gkt57$euc@israel-info.datasrv.co.il>, winter@zeus.datasrv.co.il (4th Dimension) writes:
  82541. >> 
  82542. >> I'm using both Unix kermit (C-Kermit 5A(190)) and MS-DOS 3.14.
  82543. >> On the remote Unix host I can use either kermit or sz (zomdem send).
  82544. >> On my local Unix, when I use kermit, I'm using the 'rz' macro defined in
  82545. >> the file rz.ini to handle zmodem tranfers from the remote Unix.
  82546. >> 
  82547. >> I know that comm. programs on PC (e.g. Telix) can handle zmodem
  82548. >> transfers.
  82549. >> Is it possible for MS-DOS kermit to support zmodem transfers?
  82550. >> 
  82551. >> If this is an FAQ, please direct me to the proper doc.
  82552. >---------
  82553. >    No, Columbia Kermit programs don't do X/Y/Zmodem transfers. We
  82554. >think we have a very suitable protocol named Kermit which is just as
  82555. >fast as the others and much better in many respects.
  82556.  
  82557. In the early days, zmodem was said to be 4-5 times faster than kermit ?
  82558. Is it still true now with the latest shareware of zmodem and kermit ?
  82559. (I am only interested in performance, not features or any thing else)
  82560.  
  82561. Any benchmarks ?
  82562.  
  82563. Thanks,
  82564.  
  82565. Thanh Ma
  82566. tma@encore.com
  82567.  
  82568. From news@columbia.edu Fri Jan 27 21:15:02 1995
  82569. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25927
  82570.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 2 Feb 1995 06:46:16 -0500
  82571. Received: by apakabar.cc.columbia.edu id AA03509
  82572.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 2 Feb 1995 06:46:15 -0500
  82573. Newsgroups: comp.protocols.kermit.misc
  82574. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!udel!gatech!swrinde!sgiblab!pacbell.com!amdahl.com!amd!netcomsv!lafn.org!lafn.org!ac388
  82575. From: ac388@lafn.org (Charles Lease)
  82576. Subject: Kermit patch level indication?
  82577. Message-Id: <1995Jan27.211502.19910@lafn.org>
  82578. Sender: news@lafn.org
  82579. Nntp-Posting-Host: lafn.org
  82580. Reply-To: ac388@lafn.org (Charles Lease)
  82581. Organization: The Los Angeles Free-Net
  82582. Date: Fri, 27 Jan 1995 21:15:02 GMT
  82583. Lines: 52
  82584. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  82585.  
  82586.  
  82587. After obtaining the:
  82588.  
  82589.    > ; For MS Kermit/IBM-PC Version 3.14, Patches 1-3, 22 Jan 1995
  82590.  
  82591. msr314.pch file, and replacing the patch file distributed with the
  82592. msvibm.zip MSKermit v3.14 distribution, I notice that the start-up
  82593. message generated when MSKermit is initialized:
  82594.  
  82595.    > IBM-PC MS-DOS Kermit: 3.14 18 Jan 1995
  82596.    > Copyright (C) Trustees of Columbia University 1982, 1995.
  82597.  
  82598.    > Type ? or HELP for help
  82599.  
  82600.    > Executing D:\COMM\KRMT\MSKERMIT.INI...
  82601.    > Installing patches...
  82602.    >  MS-DOS Kermit: 3.14 18 Jan 1995 patch level 0
  82603.    > MS-DOS Kermit 3.14 Initialization File...
  82604.    > Executing SAMPLE MS-DOS Kermit customization file, D:\COMM\KRMT\MSCUSTOM.INI...
  82605.    > Please edit this file to suit your needs and preferences.
  82606.  
  82607.    > Auto-upload and -download disabled.
  82608.    > Use SET TERMINAL APC ON to enable.
  82609.  
  82610.    > Setting DOS Terminal modes
  82611.    > Smile!
  82612.    > CDL-AST>
  82613.  
  82614. still indicated "patch level 0".
  82615.  
  82616. Is the "patch level 0" an indication of the patch level of the base
  82617.  
  82618.    kermit.exe
  82619.  
  82620. file I am running, or should it be an indication of the patch level 
  82621. following the installation of the patches contained in msr314.pch? I
  82622. notice that if I use the:
  82623.  
  82624.    ver<CR>
  82625.  
  82626. command, I still see "patch level 0", rather than "patch level 3" which
  82627. I would expect.
  82628.  
  82629. I realize that the kermit.exe file on disk will not change, but I would
  82630. expect that after patches are installed, the version of kermit in memory
  82631. would reflect the installed patches. Am I doing something wrong?
  82632.  
  82633. Just curious ...
  82634. TIA for any light that can be shed on this subject.
  82635.  
  82636. -- 
  82637. cdl [ac388@lafn.org] ...
  82638.  
  82639. From news@columbia.edu Wed Feb  1 04:02:46 1995
  82640. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02520
  82641.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 2 Feb 1995 06:54:54 -0500
  82642. Received: by apakabar.cc.columbia.edu id AA03716
  82643.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 2 Feb 1995 06:54:53 -0500
  82644. Path: news.columbia.edu!sol.ctr.columbia.edu!news.moneng.mei.com!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  82645. From: jrd@cc.usu.edu (Joe Doupnik)
  82646. Newsgroups: comp.protocols.kermit.misc
  82647. Subject: Re: Kermit TSR for background xfers?
  82648. Message-Id: <1995Feb1.100246.40094@cc.usu.edu>
  82649. Date: 1 Feb 95 10:02:46 MDT
  82650. References: <3go00i$bie@crl12.crl.com>
  82651. Organization: Utah State University
  82652. Lines: 33
  82653. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  82654.  
  82655. In article <3go00i$bie@crl12.crl.com>, cgi@crl.com (Paul Smith) writes:
  82656. > Hi,
  82657. > I'm asking in advance of buying the Kermit manual and proceeding with a solution:
  82658. > Does the MSDOS kermit tool kit have a TSR mode of operation for a simple DOS box
  82659. > may run other windows/dos progs for serving background call ins over a modem
  82660. > to a com port for file transfer in / out / delete?
  82661. > Where the file transfer may occur without interupting the forground use of the
  82662. > DOS console??
  82663. > If so, the kermit would save me a BUNCH.  I need to provide a remote unattended
  82664. > file xfer solution to 40,000 DOS boxes and realy need a good and cheap solution.
  82665. -------------------
  82666.     Let's look at this case. Basically you want MSK to become a TSR Kermit
  82667. file server. Of course, it's not designed that way now; file server yes,
  82668. TSR no. Doing file i/o as a TSR has a substantial collection of technical
  82669. problems because DOS itself is not reentrant and provides no multitasking
  82670. capabilities. Experiences with DOS' PRINT TSR should be enough to persuade
  82671. folks that these background transfer guys can be bad news. In addition,
  82672. a program even the size of Kermit-Lite use substantial amounts of 
  82673. conventional memory, making multiple tasking awkward for the user.
  82674.     There are systems with time sharing capabilities designed into them.
  82675. The best known are OS/2 and Unix, with OS/2 providing DOS services in a
  82676. familiar and managable form.
  82677.     We could make a Kermit-Lite which went TSR and tried to cope with
  82678. the horrid problems of doing DOS i/o from interrupt level. It's not easy
  82679. so this would have to become a fully funded project rather than a to-do
  82680. item on our wish list. If you are still interested then I suggest you contact
  82681. Frank da Cruz and myself and we can discuss the technical and financial
  82682. details off-line: fdc@watsun.cc.columbia.edu, jrd@cc.usu.edu.
  82683.     Joe D.
  82684.  
  82685. From news@columbia.edu Sun Feb  2 04:03:06 1995
  82686. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15915
  82687.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 2 Feb 1995 07:56:59 -0500
  82688. Received: by apakabar.cc.columbia.edu id AA05869
  82689.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 2 Feb 1995 07:56:58 -0500
  82690. Path: news.columbia.edu!panix!news.mathworks.com!hookup!news.moneng.mei.com!uwm.edu!lll-winken.llnl.gov!decwrl!nntp.crl.com!crl6.crl.com!not-for-mail
  82691. From: dgrisner@crl.com (David G. Risner)
  82692. Newsgroups: comp.protocols.kermit.misc
  82693. Subject: Re: Can MS-DOS kermit handle zmodem transfers?
  82694. Date: 1 Feb 1995 20:03:06 -0800
  82695. Organization: CRL Dialup Internet Access    (415) 705-6060  [Login: guest]
  82696. Lines: 34
  82697. Message-Id: <3gplhq$on6@crl6.crl.com>
  82698. References: <3gkt57$euc@israel-info.datasrv.co.il>
  82699. Nntp-Posting-Host: crl6.crl.com
  82700. X-Newsreader: TIN [version 1.2 PL2]
  82701. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  82702.  
  82703. OK, I got a few requests for this so:
  82704.  
  82705. PDZMODEM can be found at:
  82706.  
  82707. ftp://vinny.csd.mu.edu/pub/CBIP/volume28/pdzmodem/pdzmodem.zip
  82708.  
  82709. i.e.,
  82710.  
  82711. Anonymous ftp site: vinny.csd.mu.edu
  82712. Directory: /pub/CBIP/volume28/pdzmodem
  82713. Filename: pdzmodem.zip
  82714.  
  82715.  
  82716. I run the program by adding the following two lines to my MSCUSTOM.INI file:
  82717.  
  82718. define rz cd \telecom\download,run d:\telecom\pdz\zm rz -c4
  82719. set key \315 rz
  82720.  
  82721. This starts a ZModem recieve when I hit the F1 key.
  82722.  
  82723. the d:\telecom\pdz is the directory where I have PDZMODEM.
  82724.  
  82725. The -c4 means use com port 4.
  82726.  
  82727. The cd \telecom\download causes the file received to be put in my 
  82728. download directory.
  82729.  
  82730. If you have any questions, feel free to e-mail me.
  82731.  
  82732. And to repeat, the PDZMODEM is public domain.
  82733.  
  82734. David G. Risner
  82735. dgrisner@crl.com
  82736. Anaheim, CA
  82737.  
  82738. From news@columbia.edu Thu Feb  2 08:44:03 1995
  82739. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18157
  82740.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 2 Feb 1995 08:44:03 -0500
  82741. Received: by apakabar.cc.columbia.edu id AA01089
  82742.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 2 Feb 1995 08:44:00 -0500
  82743. Path: news.columbia.edu!panix!zip.eecs.umich.edu!caen!math.ohio-state.edu!magnus.acs.ohio-state.edu!csn!news.sinet.slb.com!scrdell5.cambridge.scr.slb.com!barrett
  82744. From: barrett@scr.slb.com (Mike Barrett)
  82745. Newsgroups: comp.protocols.kermit.misc
  82746. Subject: Kermit for Windows?
  82747. Date: Thu, 2 Feb 1995 13:15:21 UNDEFINED
  82748. Organization: Schlumberger Cambridge Research
  82749. Lines: 14
  82750. Message-Id: <barrett.79.0430D6AB@scr.slb.com>
  82751. Nntp-Posting-Host: scrdell5.cambridge.scr.slb.com
  82752. X-Newsreader: Trumpet for Windows [Version 1.0 Rev B final beta #4]
  82753. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  82754.  
  82755. Hi.
  82756. Is there a version of Kermit that runs under Windows? I am looking for good 
  82757. file transfer and if possible Tek graphics. If there is one can someone either 
  82758. give me the file name (so I can search for it with Archie) or tell me where to 
  82759. get it.
  82760.  
  82761. Thanks
  82762. Mike Barrett
  82763. ----------------------+--------------------------------------
  82764. Mike Barrett          | e-mail: barrett@cambridge.scr.slb.com
  82765. Schlumberger Cambridge| Phone : 0223 325200
  82766. Research, PO Box 153, | FAX   : 0223 327019
  82767. Cambridge, England.   |
  82768. ----------------------+--------------------------------------
  82769.  
  82770. From news@columbia.edu Thu Feb  2 13:58:35 1995
  82771. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18963
  82772.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 2 Feb 1995 08:58:39 -0500
  82773. Received: by apakabar.cc.columbia.edu id AA02151
  82774.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 2 Feb 1995 08:58:38 -0500
  82775. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  82776. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  82777. Newsgroups: comp.protocols.kermit.misc
  82778. Subject: Re: File Transfer Using Telnet Host Menu?
  82779. Date: 2 Feb 1995 13:58:35 GMT
  82780. Organization: Columbia University
  82781. Lines: 24
  82782. Message-Id: <3gqoeb$233@apakabar.cc.columbia.edu>
  82783. References: <3gp37d$pkt@news.cc.utah.edu>
  82784. Nntp-Posting-Host: watsun.cc.columbia.edu
  82785. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  82786.  
  82787. In article <3gp37d$pkt@news.cc.utah.edu>,
  82788. Boyd Fjeldsted  <bebrblf@business.utah.edu> wrote:
  82789. >After using Kermit to telnet to a remote host, is it possible to
  82790. >download files from the remote host by means of the host's file 
  82791. >download menu?
  82792. >
  82793. If the remote host (service, BBS, etc) includes Kermit file transfer
  82794. capability, then: in theory, yes.  In practice, it depends on its
  82795. Kermit implementation.  Most BBS's either lack Kermit file transfer
  82796. capability, or offer a nonfunctional or barely-functional one.
  82797.  
  82798. >If so, what Kermit settings are required?
  82799. >
  82800. Try "set parity space".
  82801.  
  82802. >An example of such a host
  82803. >is cenbbs.census.gov -- which which was set up as a bbs server, but
  82804. >now also provides telnet services on port 23.
  82805. >
  82806. Such services are becoming increasingly common.  Users of such
  82807. services are encouraged to contact the administrators and urge them
  82808. to install real Kermit software to execute the Kermit protocol.
  82809.  
  82810. - Frank
  82811.  
  82812. From news@columbia.edu Thu Feb  2 14:02:19 1995
  82813. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19458
  82814.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 2 Feb 1995 09:02:23 -0500
  82815. Received: by apakabar.cc.columbia.edu id AA02394
  82816.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 2 Feb 1995 09:02:22 -0500
  82817. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  82818. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  82819. Newsgroups: comp.protocols.kermit.misc
  82820. Subject: Re: Kermit for Windows?
  82821. Date: 2 Feb 1995 14:02:19 GMT
  82822. Organization: Columbia University
  82823. Lines: 29
  82824. Message-Id: <3gqolb$2an@apakabar.cc.columbia.edu>
  82825. References: <barrett.79.0430D6AB@scr.slb.com>
  82826. Nntp-Posting-Host: watsun.cc.columbia.edu
  82827. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  82828.  
  82829. In article <barrett.79.0430D6AB@scr.slb.com>,
  82830. Mike Barrett <barrett@scr.slb.com> wrote:
  82831. >Is there a version of Kermit that runs under Windows? I am looking for
  82832. >good file transfer and if possible Tek graphics. If there is one can
  82833. >someone either give me the file name (so I can search for it with Archie)
  82834. >or tell me where to get it.
  82835. >
  82836. A Frequently Asked Question, and one which is answered in our FAQ.
  82837.  
  82838. The answer is Yes.
  82839.  
  82840. It is MS-DOS Kermit 3.14.  It runs under Windows, in either full-screen
  82841. mode or in a Window, it has good file transfer, and it does Tek graphics.
  82842.  
  82843.   Anonymous ftp to kermit.columbia.edu,
  82844.   directory kermit/archives,
  82845.   binary mode,
  82846.   file msvibm.zip.
  82847.  
  82848. If you had a previous version of MS-DOS Kermit, and you
  82849. want to install the new version over it, first make safe copies of
  82850. your MSCUSTOM.INI and DIALUPS.TXT files, as well as any other
  82851. file you might have modified.
  82852.  
  82853. Then unzip (with PKUNZIP or equivalent) using the "-d" switch to
  82854. preserve the directory structure.  Then read the top-level READ.ME
  82855. file for further instructions.
  82856.  
  82857. - Frank
  82858.  
  82859. From news@columbia.edu Thu Feb  2 13:58:06 1995
  82860. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21498
  82861.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 2 Feb 1995 09:34:58 -0500
  82862. Received: by apakabar.cc.columbia.edu id AA05270
  82863.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 2 Feb 1995 09:34:54 -0500
  82864. Newsgroups: comp.protocols.kermit.misc
  82865. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!howland.reston.ans.net!ix.netcom.com!netcom.com!helios
  82866. From: helios@netcom.com (Thomas David Nichols)
  82867. Subject: Re: Kermit for Windows?
  82868. Message-Id: <heliosD3DLGv.AGn@netcom.com>
  82869. Organization: Heliotrope Quality Systems
  82870. X-Newsreader: TIN [version 1.2 PL1]
  82871. References: <barrett.79.0430D6AB@scr.slb.com>
  82872. Date: Thu, 2 Feb 1995 13:58:06 GMT
  82873. Lines: 17
  82874. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  82875.  
  82876. Mike Barrett (barrett@scr.slb.com) wrote:
  82877. : Hi.
  82878. : Is there a version of Kermit that runs under Windows? I am looking for good 
  82879. : file transfer and if possible Tek graphics. If there is one can someone either 
  82880. : give me the file name (so I can search for it with Archie) or tell me where to 
  82881. : get it.
  82882.  
  82883. The standard distribution of MS-Kermit includes a PIF file to run under 
  82884. Windows, but it runs very slowly.  You can speed it up by running in a 
  82885. full-screen DOS window with text-only display instead of graphics, but my 
  82886. 486/66 system can't quite keep up with compressed text at 14.4 kbps.  The 
  82887. text-only display probably won't do Tek graphics, though I haven't tried 
  82888. that.  Also, the first time through my MSCUSTOM.INI file, the system 
  82889. can't find COM4, but a manual TAKE MSCUSTOM.INI works.  I suppose this is 
  82890. a timing problem in Windows.
  82891. -- 
  82892. David Nichols  <helios@netcom.com>  Heliotrope Quality Systems
  82893.  
  82894. From news@columbia.edu Thu Feb  2 00:51:33 1995
  82895. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21567
  82896.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 2 Feb 1995 09:35:38 -0500
  82897. Received: by apakabar.cc.columbia.edu id AA05337
  82898.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 2 Feb 1995 09:35:36 -0500
  82899. Path: news.columbia.edu!panix!news.mathworks.com!news.alpha.net!uwm.edu!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  82900. From: jrd@cc.usu.edu (Joe Doupnik)
  82901. Newsgroups: comp.protocols.kermit.misc
  82902. Subject: Re: Can MS-DOS kermit handle zmodem transfers?
  82903. Message-Id: <1995Feb2.065133.40221@cc.usu.edu>
  82904. Date: 2 Feb 95 06:51:33 MDT
  82905. References: <3gkt57$euc@israel-info.datasrv.co.il> <1995Jan31.205326.40045@cc.usu.edu> <D3CrCn.A9u@encore.com>
  82906. Organization: Utah State University
  82907. Lines: 30
  82908. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  82909.  
  82910. In article <D3CrCn.A9u@encore.com>, tma@encore.com (Thanh Ma) writes:
  82911. > jrd@cc.usu.edu (Joe Doupnik) writes:
  82912. >>In article <3gkt57$euc@israel-info.datasrv.co.il>, winter@zeus.datasrv.co.il (4th Dimension) writes:
  82913. >>> 
  82914. >>> I'm using both Unix kermit (C-Kermit 5A(190)) and MS-DOS 3.14.
  82915. >>> On the remote Unix host I can use either kermit or sz (zomdem send).
  82916. >>> On my local Unix, when I use kermit, I'm using the 'rz' macro defined in
  82917. >>> the file rz.ini to handle zmodem tranfers from the remote Unix.
  82918. >>> 
  82919. >>> I know that comm. programs on PC (e.g. Telix) can handle zmodem
  82920. >>> transfers.
  82921. >>> Is it possible for MS-DOS kermit to support zmodem transfers?
  82922. >>> 
  82923. >>> If this is an FAQ, please direct me to the proper doc.
  82924. >>---------
  82925. >>    No, Columbia Kermit programs don't do X/Y/Zmodem transfers. We
  82926. >>think we have a very suitable protocol named Kermit which is just as
  82927. >>fast as the others and much better in many respects.
  82928. > In the early days, zmodem was said to be 4-5 times faster than kermit ?
  82929. > Is it still true now with the latest shareware of zmodem and kermit ?
  82930. > (I am only interested in performance, not features or any thing else)
  82931. > Any benchmarks ?
  82932. ---------------
  82933.     Did you read the docs in the MS-DOS Kermit v3.14 release collection?
  82934. If not please do.
  82935.     Btw, Columbia Kermits are not shareware.
  82936.     Joe D.
  82937.  
  82938. From news@columbia.edu Thu Feb  2 15:13:39 1995
  82939. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24053
  82940.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 2 Feb 1995 10:13:46 -0500
  82941. Received: by apakabar.cc.columbia.edu id AA08382
  82942.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 2 Feb 1995 10:13:42 -0500
  82943. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  82944. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  82945. Newsgroups: comp.protocols.kermit.misc
  82946. Subject: Re: Can't connect at 28.8 :(
  82947. Date: 2 Feb 1995 15:13:39 GMT
  82948. Organization: Columbia University
  82949. Lines: 17
  82950. Message-Id: <3gqsr3$85s@apakabar.cc.columbia.edu>
  82951. References: <jzeroD2x187.J3p@netcom.com> <3g8930$nms@apakabar.cc.columbia.edu> <jzeroD39xyr.Hxv@netcom.com>
  82952. Nntp-Posting-Host: watsun.cc.columbia.edu
  82953. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  82954.  
  82955. In article <jzeroD39xyr.Hxv@netcom.com>, Jim Nakamura <jzero@netcom.com> wrote:
  82956. >By the way, any particular reason you renamed the binary to wermit?
  82957. >
  82958. Just so it does not have the same name as "kermit".  That way when
  82959. build a new binary, it does not automatically overwrite a previous
  82960. one, provided you had renamed the previous one to "kermit".
  82961.  
  82962. >Also, whenever I invoke wermit, I get the message "Executing SAMPLE
  82963. >C-Kermit customization file /home/jzero/.mykermrc".  Then "Please edit
  82964. >this file to reflect your needs and preferences."  Then *nothing*.  If I
  82965. >hit Ctrl-C, kermit springs into action and I then get the C-Kermit prompt.
  82966. >
  82967. Please send me your .mykermrc file, and let me know exactly how you
  82968. are invoking Kermit, and also remind me exactly which kind of UNIX
  82969. this is on, which version, etc.
  82970.  
  82971. - Frank
  82972.  
  82973. From news@columbia.edu Thu Feb  2 17:36:36 1995
  82974. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07001
  82975.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 2 Feb 1995 13:01:06 -0500
  82976. Received: by apakabar.cc.columbia.edu id AA24115
  82977.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 2 Feb 1995 13:00:58 -0500
  82978. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!swrinde!cs.utexas.edu!utnut!alpha.epas.utoronto.ca!blues.epas.utoronto.ca!kan
  82979. From: kan@blues.epas.utoronto.ca (Raymond Kan)
  82980. Newsgroups: comp.protocols.kermit.misc
  82981. Subject: Kermit for OS/2 problem with 28.8
  82982. Date: 2 Feb 1995 17:36:36 GMT
  82983. Organization: University of Toronto -- EPAS
  82984. Lines: 17
  82985. Message-Id: <3gr574$h6r@alpha.epas.utoronto.ca>
  82986. Nntp-Posting-Host: blues.epas.utoronto.ca
  82987. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  82988.  
  82989. Hi,
  82990.  
  82991.     I am using CKermit 5A(190) for OS/2 with a Sportster internal
  82992. fax/modem.  However, every time that I try to set the speed to 115200,
  82993. the program would say can not set speed and falls back to 1200!  However,
  82994. I can set the speed to 57600 but then I can never connect at full speed
  82995. of the modem.
  82996.  
  82997.     Does anyone know how to get rid of this problem or does OS/2
  82998. kermit actually support 28,800 modem.  Thank you for all the help.
  82999.  
  83000.     BTW, does anyone know which ftp site can we get m2zmodem?
  83001.  
  83002.  
  83003. Raymond Kan
  83004. U of Toronto
  83005.  
  83006.  
  83007. From news@columbia.edu Thu Feb  2 18:40:05 1995
  83008. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13275
  83009.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 2 Feb 1995 13:40:15 -0500
  83010. Received: by apakabar.cc.columbia.edu id AA28328
  83011.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 2 Feb 1995 13:40:14 -0500
  83012. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  83013. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  83014. Newsgroups: comp.protocols.kermit.misc
  83015. Subject: Re: Kermit for OS/2 problem with 28.8
  83016. Date: 2 Feb 1995 18:40:05 GMT
  83017. Organization: Columbia University
  83018. Lines: 33
  83019. Message-Id: <3gr8u5$rkf@apakabar.cc.columbia.edu>
  83020. References: <3gr574$h6r@alpha.epas.utoronto.ca>
  83021. Nntp-Posting-Host: watsun.cc.columbia.edu
  83022. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  83023.  
  83024. In article <3gr574$h6r@alpha.epas.utoronto.ca>,
  83025. Raymond Kan <kan@blues.epas.utoronto.ca> wrote:
  83026. >Hi,
  83027. >
  83028. >    I am using CKermit 5A(190) for OS/2 with a Sportster internal
  83029. >fax/modem.  However, every time that I try to set the speed to 115200,
  83030. >the program would say can not set speed and falls back to 1200!  However,
  83031. >I can set the speed to 57600 but then I can never connect at full speed
  83032. >of the modem.
  83033.  
  83034. >    Does anyone know how to get rid of this problem or does OS/2
  83035. >kermit actually support 28,800 modem.  Thank you for all the help.
  83036.  
  83037. I use CK 5A(190) at 115200 every day.  So thoughts are that it is either a
  83038. problem with your modem, or the com drivers you are using.  Can you talk
  83039. to the modem at 115200 with other packages?
  83040.  
  83041. What version of OS/2 are you using?
  83042.  
  83043. What Comm drivers are you using?
  83044.  
  83045. >    BTW, does anyone know which ftp site can we get m2zmodem?
  83046.  
  83047. I recommend P over m2zmodem.  p205.zip is available from ftp.cdrom.com.
  83048. P is free whereas m2zmodem costs money.
  83049.  
  83050. P also works over networks whereas m2zmodem does not.
  83051.  
  83052.  
  83053. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  83054. "C-Kermit: available on more platforms than any other communications software."
  83055. "Kermit FTP: sending files whenever and wherever they are needed."
  83056.   OS/2 version 5A(190): ftp://kermit.columbia.edu/kermit/archives/cko190.zip 
  83057.  
  83058. From news@columbia.edu Wed Feb  1 04:12:39 1995
  83059. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13416
  83060.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 2 Feb 1995 13:43:54 -0500
  83061. Received: by apakabar.cc.columbia.edu id AA28647
  83062.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 2 Feb 1995 13:43:52 -0500
  83063. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!news.alpha.net!uwm.edu!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  83064. From: jrd@cc.usu.edu (Joe Doupnik)
  83065. Newsgroups: comp.protocols.kermit.misc
  83066. Subject: Re: [ help ] how to set the parameters for terminal Tek4010 ?
  83067. Message-Id: <1995Feb1.101239.40096@cc.usu.edu>
  83068. Date: 1 Feb 95 10:12:39 MDT
  83069. References: <H79055A.95Jan27163932@kyu-cc.cc.kyushu-u.ac.jp> <3gkfv4$4bv@kyu-cs.csce.kyushu-u.ac.jp>
  83070. Followup-To: comp.protocols.kermit.misc
  83071. Organization: Utah State University
  83072. Lines: 34
  83073. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  83074.  
  83075. In article <3gkfv4$4bv@kyu-cs.csce.kyushu-u.ac.jp>, MoYun <MoYun@apex.chem-eng.kyushu-u.ac.jp> writes:
  83076. > In article <H79055A.95Jan27163932@kyu-cc.cc.kyushu-u.ac.jp> h79055a@kyu-cc.c
  83077. > c.kyushu-u.ac.jp wrote at Fri, 27 Jan 95 07:39:32 GMT:
  83078. >> Hi:
  83079. >> 
  83080. >>    I tried to use Tek4010 mode to draw graphs, but the graphs could not be
  83081. >> drawn completely on the display. About four small windows appearred on the 
  83082. >> display and in each window, only three or four lines were displayed. 
  83083. >> I tried to switch off the small windows to a large window but failed.
  83084. >> 
  83085. >>    How can I set the terminal parameters which let the graphs written in
  83086. >> Tek4010 be shown completely in Kermit?
  83087. >> 
  83088. > However, after starting the Ms-windows, the tek4010 terminal can draw 
  83089. > graphs normally. Therefore, some graphic initializing are needed.
  83090. > What kinds of process should be done before the MS-kermit is set up?
  83091. > Many 286 machines are still used in our lab, so a special treatmet 
  83092. > similar to Ms-windows should be done. 
  83093. -----------------
  83094.     This appears to be possibly a machine configuration problem, not
  83095. a Kermit one. One must be sure to protect video memory, segments A000-BFFF,
  83096. so that nothing else uses that space. The display adapter must be able
  83097. to do graphics work in using standard EGA, Herc mono, CGA modes as a default, 
  83098. or if you choose VGA or VESA then those higher resolution modes too. There
  83099. is no special preparation needed outside of Kermit other than rational
  83100. machine setup for normal use. 
  83101.     To help further we need more information, such as the machine
  83102. configuration and a sample LOG SESSION file (uuencoded for Mailing) to 
  83103. play back locally. 
  83104.     Joe D.
  83105.  
  83106. From news@columbia.edu Wed Feb  1 04:18:14 1995
  83107. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13431
  83108.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 2 Feb 1995 13:44:00 -0500
  83109. Received: by apakabar.cc.columbia.edu id AA28664
  83110.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 2 Feb 1995 13:44:00 -0500
  83111. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!news.alpha.net!uwm.edu!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  83112. From: jrd@cc.usu.edu (Joe Doupnik)
  83113. Newsgroups: comp.protocols.kermit.misc
  83114. Subject: Re: Kermit and PCMCIA
  83115. Message-Id: <1995Feb1.101814.40098@cc.usu.edu>
  83116. Date: 1 Feb 95 10:18:14 MDT
  83117. References: <D39oIw.MGM@wldelft.nl>
  83118. Organization: Utah State University
  83119. Lines: 15
  83120. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  83121.  
  83122. In article <D39oIw.MGM@wldelft.nl>, dee@wldelft.nl (Dick Dee) writes:
  83123. > I have a notebook with a PCMCIA modem, running DOS or
  83124. > MSWindows. Kermit doesn't recognize the modem, it gives a message
  83125. > "unknown hardware" or something like that. All other communications
  83126. > programs I've tried work as expected. Anybody know what's going on?
  83127. -------------
  83128.     No, we don't. PCMCIA seems to be a very loose spec so the matchup
  83129. between hardware and drivers is very questionable at best. If the modem and 
  83130. driver don't behave as a real UART to clients such as Kermit then it's not
  83131. behaving properly. There is nothing much I can do about it, lacking that
  83132. particular PCMCIA card, the laptop in which it is inserted, and the drivers 
  83133. for it. Kermit does work fine on at least one IBM Thinkpad because I setup
  83134. that machine for a colleague. However, I have no laptop myself so please
  83135. don't ask me questions about PCMCIA and its drivers.
  83136.     Joe D.
  83137.  
  83138. From news@columbia.edu Tue Jan 31 05:00:05 1995
  83139. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27196
  83140.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 2 Feb 1995 17:06:33 -0500
  83141. Received: by apakabar.cc.columbia.edu id AA19760
  83142.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 2 Feb 1995 17:06:28 -0500
  83143. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!swiss.ans.net!gatech!newsxfer.itd.umich.edu!zip.eecs.umich.edu!newshost.marcam.com!news.mathworks.com!uunet!news.iij.ad.jp!wnoc-tyo-news!aist-nara!wnoc-kyo-news!hakozaki.karrn!kyu-cs!MoYun
  83144. From: MoYun <MoYun@apex.chem-eng.kyushu-u.ac.jp>
  83145. Newsgroups: comp.protocols.kermit.misc
  83146. Subject: Re: [ help ] how to set the parameters for terminal Tek4010 ?
  83147. Followup-To: comp.protocols.kermit.misc
  83148. Date: Tue, 31 Jan 95 05:00:05 GMT
  83149. Organization: Falcuty of Engineering, Kyushu Univeristy
  83150. Lines: 29
  83151. Message-Id: <3gkfv4$4bv@kyu-cs.csce.kyushu-u.ac.jp>
  83152. References: <H79055A.95Jan27163932@kyu-cc.cc.kyushu-u.ac.jp>
  83153. Reply-To: MoYun@apex.chem-eng.kyushu-u.ac.jp
  83154. Nntp-Posting-Host: goro.chem-eng.kyushu-u.ac.jp
  83155. Mime-Version: 1.0
  83156. Content-Type: text/plain; charset=iso-2022-jp
  83157. X-Ecom-Version: 3.01.09 (PC98/PCTCP)
  83158. In-Reply-To: h79055a@kyu-cc.cc.kyushu-u.ac.jp's message of Fri, 27 Jan 95 07:39:32 GMT
  83159. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  83160.  
  83161. In article <H79055A.95Jan27163932@kyu-cc.cc.kyushu-u.ac.jp> h79055a@kyu-cc.c
  83162. c.kyushu-u.ac.jp wrote at Fri, 27 Jan 95 07:39:32 GMT:
  83163.  
  83164. > Hi:
  83165. >    I tried to use Tek4010 mode to draw graphs, but the graphs could not be
  83166. > drawn completely on the display. About four small windows appearred on the 
  83167. > display and in each window, only three or four lines were displayed. 
  83168. > I tried to switch off the small windows to a large window but failed.
  83169. >    How can I set the terminal parameters which let the graphs written in
  83170. > Tek4010 be shown completely in Kermit?
  83171.  
  83172.  
  83173. However, after starting the Ms-windows, the tek4010 terminal can draw 
  83174. graphs normally. Therefore, some graphic initializing are needed.
  83175. What kinds of process should be done before the MS-kermit is set up?
  83176.  
  83177. Many 286 machines are still used in our lab, so a special treatmet 
  83178. similar to Ms-windows should be done. 
  83179.  
  83180. Thank you in advance.
  83181.  
  83182. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Tel. 092-641-1101(Ex.5579) |~~~~~~~~~~~ 
  83183. Yun MO,   EnD                       | Fax. 092-651-8616         |
  83184. MoYun@apex.chem-eng.kyushu-u.ac.jp  | Tel. 092-661-1665(Home)    |
  83185. ------------------------------------------------------------------------------
  83186.  
  83187.  
  83188. From news@columbia.edu Tue Jan 31 22:35:30 1995
  83189. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29174
  83190.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 2 Feb 1995 17:32:47 -0500
  83191. Received: by apakabar.cc.columbia.edu id AA23116
  83192.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 2 Feb 1995 17:32:43 -0500
  83193. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!swiss.ans.net!howland.reston.ans.net!news.moneng.mei.com!uwm.edu!news.alpha.net!news.mathworks.com!news.duke.edu!news-server.ncren.net!concert!lester.appstate.edu!usenet
  83194. From: JW2998@CONRAD.APPSTATE.EDU (Watson, John McClain          )
  83195. Newsgroups: comp.protocols.kermit.misc
  83196. Subject: MS-KERMIT for IBM-DOS disconnect after connection at 28.8?
  83197. Date: 31 Jan 1995 22:35:30 GMT
  83198. Organization: APPALACHIAN STATE UNIVERSITY
  83199. Lines: 7
  83200. Distribution: world
  83201. Message-Id: <3gmdvi$hqh@lester.appstate.edu>
  83202. Nntp-Posting-Host: mm.appstate.edu
  83203. X-News-Reader: VMS NEWS v1.25
  83204. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  83205.  
  83206.     Hello everyone!  I just got a PPI v.34 28.8 modem but when I try to
  83207. use Kermit to connect to our school vax I get disconnected right after it
  83208. says carrier 28.8  Does anyone know what the problem might be?  Thanks!
  83209.  
  83210. McClain Watson
  83211. JW2998@conrad.appstate.edu
  83212.  
  83213.  
  83214. From news@columbia.edu Thu Feb  2 22:48:11 1995
  83215. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00356
  83216.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 2 Feb 1995 17:48:22 -0500
  83217. Received: by apakabar.cc.columbia.edu id AA24780
  83218.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 2 Feb 1995 17:48:20 -0500
  83219. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  83220. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  83221. Newsgroups: comp.protocols.kermit.misc
  83222. Subject: Re: Kermit patch level indication?
  83223. Date: 2 Feb 1995 22:48:11 GMT
  83224. Organization: Columbia University
  83225. Lines: 35
  83226. Message-Id: <3grnfb$o5v@apakabar.cc.columbia.edu>
  83227. References: <1995Jan27.211502.19910@lafn.org>
  83228. Nntp-Posting-Host: watsun.cc.columbia.edu
  83229. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  83230.  
  83231. In article <1995Jan27.211502.19910@lafn.org>,
  83232. Charles Lease <ac388@lafn.org> wrote:
  83233. >
  83234. >After obtaining the:
  83235. >   > ; For MS Kermit/IBM-PC Version 3.14, Patches 1-3, 22 Jan 1995
  83236. >msr314.pch file, and replacing the patch file distributed with the
  83237. >msvibm.zip MSKermit v3.14 distribution, I notice that the start-up
  83238. >message generated when MSKermit is initialized:
  83239. >   > Installing patches...
  83240. >   >  MS-DOS Kermit: 3.14 18 Jan 1995 patch level 0
  83241. >
  83242. The following has been added to our FAQ, since it seems to keep
  83243. coming up:
  83244.  
  83245. Since the release of MS-DOS Kermit 3.14, there have been persistent reports
  83246. that patches don't seem to "stick".  That is, after giving a PATCH command,
  83247. the patch level is still reported as 0.  This can happen if the patch file is
  83248. transferred to the PC from a UNIX system in binary mode, so the lines end
  83249. with LF rather than CRLF -- DOS does not recognize the line boundaries and
  83250. therefore Kermit does not see valid patches.  Cure: make sure each line ends
  83251. with CRLF.  Fix it in an editor, or re-transfer the file in text mode.
  83252.  
  83253. Also, remember there is no longer a need to rename the patch file to
  83254. MSKERMIT.PCH.  Since there are now three different Kermit executables, there
  83255. must be three corresponding patch files.  For version 3.14, these are:
  83256.  
  83257.   MSR314.PCH  -- For full-featured KERMIT.EXE
  83258.   MSRM314.PCH -- For "medium-size" KERMITE.EXE
  83259.   MSRL314.PCH -- For "Kermit Lite" KERLITE.EXE
  83260.  
  83261. Notice that each patch file includes the version number as part of its
  83262. name.  This allows you to run different versions of Kermit without confusion
  83263. about patching.
  83264.  
  83265. - Frank
  83266.  
  83267. From news@columbia.edu Thu Feb  2 22:55:06 1995
  83268. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01029
  83269.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 2 Feb 1995 17:55:10 -0500
  83270. Received: by apakabar.cc.columbia.edu id AA25413
  83271.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 2 Feb 1995 17:55:09 -0500
  83272. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  83273. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  83274. Newsgroups: comp.protocols.kermit.misc
  83275. Subject: Re: MS-KERMIT for IBM-DOS disconnect after connection at 28.8?
  83276. Date: 2 Feb 1995 22:55:06 GMT
  83277. Organization: Columbia University
  83278. Lines: 30
  83279. Message-Id: <3grnsa$oq0@apakabar.cc.columbia.edu>
  83280. References: <3gmdvi$hqh@lester.appstate.edu>
  83281. Nntp-Posting-Host: watsun.cc.columbia.edu
  83282. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  83283.  
  83284. In article <3gmdvi$hqh@lester.appstate.edu>,
  83285. Watson, John McClain <JW2998@CONRAD.APPSTATE.EDU> wrote:
  83286. >Hello everyone!  I just got a PPI v.34 28.8 modem but when I try to
  83287. >use Kermit to connect to our school vax I get disconnected right after it
  83288. >says carrier 28.8  Does anyone know what the problem might be?  Thanks!
  83289. >
  83290. What version of MS-DOS Kermit?  Are you dialing manually or using a
  83291. dialing script?  Which dialing script?
  83292.  
  83293. Note that we do not have a dialing script for the PPI V.34 modem, but
  83294. we do have one for the PPI V.32bis model.  The changes (if any are needed)
  83295. should be straightforward.  If anybody wants to send me a copy of the
  83296. PPI V.34 command reference, I'll be glad to do any necessary adaptation.
  83297.  
  83298. The same goes for all the other modem brands that recently came out with
  83299. V.34 models, or, for that matter, any modem brands at all.  The more manuals
  83300. we have, the better support we can give.
  83301.  
  83302. To attempt to answer the question:  If you can use Kermit to dial the modem,
  83303. but the modem does not make a successful connection, this is usually
  83304. explained by the modem's configuration as to modulation, error correction,
  83305. data compression, and the fallback procedures for each.  In general, you
  83306. want to configure your modem to start at the type and work its way down,
  83307. so you get the best possible type of connection with the answering modem.
  83308.  
  83309. It sounds like your modem is configured to refuse to connect if it does not
  83310. negotiate a particular modulation or protocol.  Or the same could be true
  83311. of the modem on the answering end.  Many other explanations are possible too.
  83312.  
  83313. - Frank
  83314.  
  83315. From news@columbia.edu Wed Feb  1 18:19:41 1995
  83316. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01530
  83317.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 2 Feb 1995 18:01:31 -0500
  83318. Received: by apakabar.cc.columbia.edu id AA26039
  83319.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 2 Feb 1995 18:01:23 -0500
  83320. Newsgroups: comp.protocols.kermit.misc
  83321. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!newshost.marcam.com!zip.eecs.umich.edu!newsxfer.itd.umich.edu!gatech!howland.reston.ans.net!ix.netcom.com!netcom.com!dcsmith
  83322. From: dcsmith@netcom.com (Dwayne C. Smith)
  83323. Subject: Re: Kermit and PCMCIA
  83324. Message-Id: <dcsmithD3C2wt.HAH@netcom.com>
  83325. Organization: NETCOM On-line Communication Services (408 261-4700 guest)
  83326. References: <D39oIw.MGM@wldelft.nl>
  83327. Date: Wed, 1 Feb 1995 18:19:41 GMT
  83328. Lines: 18
  83329. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  83330.  
  83331. dee@wldelft.nl (Dick Dee) writes:
  83332.  
  83333. >I have a notebook with a PCMCIA modem, running DOS or
  83334. >MSWindows. Kermit doesn't recognize the modem, it gives a message
  83335. >"unknown hardware" or something like that. All other communications
  83336. >programs I've tried work as expected. Anybody know what's going on?
  83337.  
  83338. >Dick Dee
  83339. >dee@wldelft.nl
  83340.  
  83341. I'm using an a TDK PCMCIA modem in a ZEOS colornote and I don't have any 
  83342. trouble with it.  If you've got the full distribution, you should have a 
  83343. KERMIT.BWR file that outlines known bugs and workarounds.
  83344. -- 
  83345. In Xanadu did Kubla Khan           / dcsmith@netcom.com 
  83346. a stately pleasure dome decree.    / If these opinions were someone else's,
  83347. Where Alph the sacred river ran    / they'd express them instead of me...
  83348. through caverns measureless to man /
  83349. down to a sunless sea.             / Samuel Taylor Coleridge
  83350.  
  83351. From news@columbia.edu Thu Feb  2 23:04:21 1995
  83352. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01764
  83353.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 2 Feb 1995 18:04:32 -0500
  83354. Received: by apakabar.cc.columbia.edu id AA26273
  83355.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 2 Feb 1995 18:04:27 -0500
  83356. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  83357. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  83358. Newsgroups: comp.protocols.kermit.misc
  83359. Subject: Re: MS-KERMIT for IBM-DOS disconnect after connection at 28.8?
  83360. Date: 2 Feb 1995 23:04:21 GMT
  83361. Organization: Columbia University
  83362. Lines: 9
  83363. Message-Id: <3grodl$pkr@apakabar.cc.columbia.edu>
  83364. References: <3gmdvi$hqh@lester.appstate.edu> <3grnsa$oq0@apakabar.cc.columbia.edu>
  83365. Nntp-Posting-Host: watsun.cc.columbia.edu
  83366. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  83367.  
  83368. This sounds more like the version of Kermit being used does not know
  83369. how to parse the CONNECT 28800 message.
  83370.  
  83371.  
  83372.  
  83373. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  83374. "C-Kermit: available on more platforms than any other communications software."
  83375. "Kermit FTP: sending files whenever and wherever they are needed."
  83376.   OS/2 version 5A(190): ftp://kermit.columbia.edu/kermit/archives/cko190.zip 
  83377.  
  83378. From news@columbia.edu Tue Jan 31 20:02:43 1995
  83379. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06070
  83380.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 2 Feb 1995 19:19:56 -0500
  83381. Received: by apakabar.cc.columbia.edu id AA04003
  83382.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 2 Feb 1995 19:19:54 -0500
  83383. Newsgroups: comp.protocols.kermit.misc
  83384. Path: news.columbia.edu!sol.ctr.columbia.edu!news.cs.columbia.edu!news.pipeline.com!news.intercon.com!udel!gatech!swrinde!howland.reston.ans.net!agate!news.ossi.com!news.fujitsu.com!amdahl.com!amd!netcomsv!torii!ibm.mtsac.edu!1CMC3466
  83385. From: 1CMC3466@ibm.mtsac.edu (Curtiss Cicco)
  83386. Subject: CMS Kermit
  83387. X-Nntp-Posting-Host: 140.144.202.50
  83388. Message-Id: <17337A963.1CMC3466@ibm.mtsac.edu>
  83389. Sender: usenet@triple-i.com
  83390. Organization: Mt. San Antonio College
  83391. X-Newsreader: NNR/VM S_1.3.2
  83392. Date: Tue, 31 Jan 1995 20:02:43 GMT
  83393. Lines: 5
  83394. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  83395.  
  83396.          Are there any hardware or software limitations that would
  83397. cause an average receive packet-size of 1915 bytes when it is set
  83398. at 9024? That is from CMS kermit to MSK 3.14
  83399.  
  83400. -Curtiss
  83401.  
  83402. From news@columbia.edu Fri Feb  3 00:25:56 1995
  83403. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06366
  83404.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 2 Feb 1995 19:26:03 -0500
  83405. Received: by apakabar.cc.columbia.edu id AA04543
  83406.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 2 Feb 1995 19:26:01 -0500
  83407. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  83408. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  83409. Newsgroups: comp.protocols.kermit.misc
  83410. Subject: Re: MS-KERMIT for IBM-DOS disconnect after connection at 28.8?
  83411. Date: 3 Feb 1995 00:25:56 GMT
  83412. Organization: Columbia University
  83413. Lines: 26
  83414. Message-Id: <3grt6k$4do@apakabar.cc.columbia.edu>
  83415. References: <3gmdvi$hqh@lester.appstate.edu> <3grnsa$oq0@apakabar.cc.columbia.edu> <3grodl$pkr@apakabar.cc.columbia.edu>
  83416. Nntp-Posting-Host: watsun.cc.columbia.edu
  83417. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  83418.  
  83419. In article <3grodl$pkr@apakabar.cc.columbia.edu>,
  83420. Jeffrey Altman <jaltman@watsun.cc.columbia.edu> wrote:
  83421. >Watson, John McClain <JW2998@CONRAD.APPSTATE.EDU> wrote:
  83422. >>Hello everyone!  I just got a PPI v.34 28.8 modem but when I try to
  83423. >>use Kermit to connect to our school vax I get disconnected right after it
  83424. >>says carrier 28.8  Does anyone know what the problem might be?  Thanks!
  83425. >
  83426. >This sounds more like the version of Kermit being used does not know
  83427. >how to parse the CONNECT 28800 message.
  83428. >
  83429. CARRIER <number> is a "call progress" message, not a call completion
  83430. message.  MS-DOS Kermit scripts such as PP14400.SCR ignore them (but
  83431. print them on the screen so the user can see what's going on).  They do
  83432. no harm at all, and in fact Kermit enables them on purpose (ATW1).
  83433.  
  83434. The call completion message would be CONNECT <number>.  The high-speed
  83435. MS-DOS Kermit dialing scripts look for "CONNECT" and ignore the <number>,
  83436. thus keeping the interface speed fixed.
  83437.  
  83438. And by the way, MS-DOS Kermit 3.14 (the current version, released just
  83439. a couple weeks ago) supports 28800 as an interface speed, even though it
  83440. should rarely be necessary to use it (remember: when using high-speed,
  83441. error-correcting, data-compressing modems, your interface speed should
  83442. be higher than the connection speed to allow compression to do its stuff).
  83443.  
  83444. - Frank
  83445.  
  83446. From news@columbia.edu Fri Feb  3 00:32:31 1995
  83447. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06700
  83448.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 2 Feb 1995 19:32:41 -0500
  83449. Received: by apakabar.cc.columbia.edu id AA05196
  83450.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 2 Feb 1995 19:32:40 -0500
  83451. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  83452. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  83453. Newsgroups: comp.protocols.kermit.misc
  83454. Subject: Re: CMS Kermit
  83455. Date: 3 Feb 1995 00:32:31 GMT
  83456. Organization: Columbia University
  83457. Lines: 28
  83458. Message-Id: <3grtiv$51p@apakabar.cc.columbia.edu>
  83459. References: <17337A963.1CMC3466@ibm.mtsac.edu>
  83460. Nntp-Posting-Host: watsun.cc.columbia.edu
  83461. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  83462.  
  83463. In article <17337A963.1CMC3466@ibm.mtsac.edu>,
  83464. Curtiss Cicco <1CMC3466@ibm.mtsac.edu> wrote:
  83465. >Are there any hardware or software limitations that would
  83466. >cause an average receive packet-size of 1915 bytes when it is set
  83467. >at 9024? That is from CMS kermit to MSK 3.14
  83468. Yes.
  83469.  
  83470. The packet length is determined as follows:
  83471.  
  83472.  1. The file receiver tells the file sender the longest packet it
  83473.     is prepared to receive.  There is a default, and then there is
  83474.     a command to let the user change the default.  The default is
  83475.     normally 94, and the command is normally "set receive
  83476.     packet-length".
  83477.  
  83478.  2. The file sender has a maximum size that it can send.  The size
  83479.     that is actually used by the sender is the smaller of its own
  83480.     maximum and the declared maximum of the receiver.
  83481.  
  83482. In the case of IBM mainframe Kermit, the maximum length it can send
  83483. generally depends on the communication method.  If it is going through
  83484. a 3270 protocol converter such as a Series/1 or 7171, the maximum length
  83485. packet is somewhere around the 3270 screen size, e.g. 24 x 80 = 1920,
  83486. give or take a few bytes.  This is a limitation of the 3270 emulation
  83487. box and/or software, and has nothing to do with Kermit.
  83488.     
  83489. - Frank
  83490.  
  83491. From news@columbia.edu Tue Jan 31 08:42:15 1995
  83492. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10863
  83493.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 2 Feb 1995 21:14:21 -0500
  83494. Received: by apakabar.cc.columbia.edu id AA13829
  83495.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 2 Feb 1995 21:14:20 -0500
  83496. Path: news.columbia.edu!panix!news.mathworks.com!hookup!swrinde!howland.reston.ans.net!Germany.EU.net!news.dfn.de!news.rwth-aachen.de!nntp.gmd.de!dearn!barilvm!news.datasrv.co.il!zeus.datasrv.co.il!winter
  83497. From: winter@zeus.datasrv.co.il (4th Dimension)
  83498. Newsgroups: comp.protocols.kermit.misc
  83499. Subject: Can MS-DOS kermit handle zmodem transfers?
  83500. Date: 31 Jan 1995 08:42:15 GMT
  83501. Organization: Fourth Dimension Software
  83502. Lines: 17
  83503. Message-Id: <3gkt57$euc@israel-info.datasrv.co.il>
  83504. Nntp-Posting-Host: zeus.datasrv.co.il
  83505. X-Newsreader: TIN ]version 1.2 PL2(
  83506. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  83507.  
  83508.  
  83509. I'm using both Unix kermit (C-Kermit 5A(190)) and MS-DOS 3.14.
  83510. On the remote Unix host I can use either kermit or sz (zomdem send).
  83511. On my local Unix, when I use kermit, I'm using the 'rz' macro defined in
  83512. the file rz.ini to handle zmodem tranfers from the remote Unix.
  83513.  
  83514. I know that comm. programs on PC (e.g. Telix) can handle zmodem
  83515. transfers.
  83516. Is it possible for MS-DOS kermit to support zmodem transfers?
  83517.  
  83518. If this is an FAQ, please direct me to the proper doc.
  83519.  
  83520. Thanks,
  83521. --
  83522. /* Amir J. Katz         email:   winter@datasrv.co.il               */
  83523. /* 4th Dimension Software, LTD., Tel-Aviv, ISRAEL                   */
  83524.  
  83525. From news@columbia.edu Thu Feb  2 02:43:11 1995
  83526. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17844
  83527.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 3 Feb 1995 00:01:20 -0500
  83528. Received: by apakabar.cc.columbia.edu id AA26778
  83529.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 3 Feb 1995 00:01:19 -0500
  83530. Path: news.columbia.edu!panix!news.mathworks.com!usenet.eel.ufl.edu!piaget.moe.ac.sg!raffles.technet.sg!usenet
  83531. From: kheesoon@einstein.technet.sg (Maverick Ong)
  83532. Newsgroups: comp.protocols.kermit.misc
  83533. Subject: Learning kermit script lang - kl.txt [1/1]
  83534. Date: Thu, 02 Feb 95 10:43:11 PST
  83535. Organization: CISCO
  83536. Lines: 14
  83537. Message-Id: <3gqqse$s19@raffles.technet.sg>
  83538. Reply-To: kheesoon@technet.sg
  83539. Nntp-Posting-Host: einstein.technet.sg
  83540. Mime-Version: 1.0
  83541. X-Newsreader: WinVN 0.93.0
  83542. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  83543.  
  83544.  
  83545. Hi, everyone
  83546.  
  83547. Is there any kermit script lang manual available in internet.
  83548. I am learning kermit script lang through kermit comm. sofwtare
  83549. currently.  
  83550.  
  83551. Hope to hear from everone soon !
  83552. thank you.
  83553.  
  83554.  
  83555.  
  83556.  
  83557.  
  83558.  
  83559. From news@columbia.edu Tue Jan 31 16:53:39 1995
  83560. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24144
  83561.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 3 Feb 1995 02:08:58 -0500
  83562. Received: by apakabar.cc.columbia.edu id AA03854
  83563.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 3 Feb 1995 02:08:56 -0500
  83564. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!news.mathworks.com!hookup!swrinde!howland.reston.ans.net!newsserver.jvnc.net!cmi.hahnemann.edu!hal.hahnemann.edu!mcneal
  83565. From: mcneal@hal.hahnemann.edu
  83566. Newsgroups: comp.protocols.kermit.misc
  83567. Subject: Access of previous articles
  83568. Date: 31 Jan 95 21:53:39 EST
  83569. Organization: Hahnemann University
  83570. Lines: 2
  83571. Message-Id: <1995Jan31.215339@hal.hahnemann.edu>
  83572. Nntp-Posting-Host: hal.hahnemann.edu
  83573. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  83574.  
  83575. How can I access earlier articles of this news group?
  83576. Thanks. 
  83577.  
  83578. From news@columbia.edu Thu Feb  2 15:29:27 1995
  83579. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00859
  83580.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 3 Feb 1995 05:37:55 -0500
  83581. Received: by apakabar.cc.columbia.edu id AA10301
  83582.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 3 Feb 1995 05:37:54 -0500
  83583. Path: news.columbia.edu!sol.ctr.columbia.edu!math.ohio-state.edu!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  83584. From: jrd@cc.usu.edu (Joe Doupnik)
  83585. Newsgroups: comp.protocols.kermit.misc
  83586. Subject: Re: CMS Kermit
  83587. Message-Id: <1995Feb2.212927.40338@cc.usu.edu>
  83588. Date: 2 Feb 95 21:29:27 MDT
  83589. References: <17337A963.1CMC3466@ibm.mtsac.edu>
  83590. Organization: Utah State University
  83591. Lines: 11
  83592. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  83593.  
  83594. In article <17337A963.1CMC3466@ibm.mtsac.edu>, 1CMC3466@ibm.mtsac.edu (Curtiss Cicco) writes:
  83595. >          Are there any hardware or software limitations that would
  83596. > cause an average receive packet-size of 1915 bytes when it is set
  83597. > at 9024? That is from CMS kermit to MSK 3.14
  83598. >  
  83599. > -Curtiss
  83600. ---------
  83601.     Maximum packet size is a negotiated property, negotiated to the
  83602. largest common value. 1915 bytes is a magic limit on CMS Kermit, and it's
  83603. also more than adequate to overcome packet header overhead.
  83604.     Joe D.
  83605.  
  83606. From news@columbia.edu Wed Feb  1 15:02:38 1995
  83607. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09280
  83608.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 3 Feb 1995 06:39:53 -0500
  83609. Received: by apakabar.cc.columbia.edu id AA23728
  83610.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 3 Feb 1995 06:39:51 -0500
  83611. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!udel!gatech!howland.reston.ans.net!news.sprintlink.net!nwnexus!nwnexus!news.halcyon.com!coho!ken
  83612. From: ken@coho.halcyon.com (Ken Pizzini)
  83613. Newsgroups: comp.protocols.kermit.misc
  83614. Subject: Re: Can MS-DOS kermit handle zmodem transfers?
  83615. Date: 1 Feb 1995 15:02:38 GMT
  83616. Organization: What, me?
  83617. Lines: 26
  83618. Message-Id: <3go7qe$ghi@news.halcyon.com>
  83619. References: <3gkt57$euc@israel-info.datasrv.co.il> <1995Jan31.205326.40045@cc.usu.edu>
  83620. Nntp-Posting-Host: coho.halcyon.com
  83621. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  83622.  
  83623. In article <1995Jan31.205326.40045@cc.usu.edu>,
  83624. Joe Doupnik <jrd@cc.usu.edu> wrote:
  83625. >In article <3gkt57$euc@israel-info.datasrv.co.il>, winter@zeus.datasrv.co.il (4th Dimension) writes:
  83626. >> I'm using both Unix kermit (C-Kermit 5A(190)) and MS-DOS 3.14.
  83627. >> On the remote Unix host I can use either kermit or sz (zomdem send).
  83628. >> On my local Unix, when I use kermit, I'm using the 'rz' macro defined in
  83629. >> the file rz.ini to handle zmodem tranfers from the remote Unix.
  83630. [...]
  83631. >> Is it possible for MS-DOS kermit to support zmodem transfers?
  83632. >    No, Columbia Kermit programs don't do X/Y/Zmodem transfers. We
  83633. >think we have a very suitable protocol named Kermit which is just as
  83634. >fast as the others and much better in many respects.
  83635.  
  83636. Although I don't see why one would want to use [XYZ]modem transfers
  83637. when both ends have a proper Kermit, it possible to have rzsz.exe
  83638. perform your file transfers for you.  Its been a long while since
  83639. I did such a thing, but I used to connect to a host that only supported
  83640. Zmodem transfers with an older version of MS-Kermit, so it is possible,
  83641. although I don't recall using anything so nice and packaged as the
  83642. "rz" macro of C-Kermit (what I did was more like: start remote
  83643. Zmodem transfer, suspend MS-Kermit, fire-up rzsz, resume MS-Kermit).
  83644.  
  83645. I don't run MS-DOS any more, so it would be painful for me to try and
  83646. figure out a good way to do this with MS-Kermit 3.14.
  83647.  
  83648.         --Ken Pizzini
  83649.  
  83650. From news@columbia.edu Thu Feb  2 16:07:25 1995
  83651. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15228
  83652.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 3 Feb 1995 07:25:56 -0500
  83653. Received: by apakabar.cc.columbia.edu id AA25069
  83654.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 3 Feb 1995 07:25:55 -0500
  83655. Newsgroups: comp.protocols.kermit.misc
  83656. Path: news.columbia.edu!sol.ctr.columbia.edu!spool.mu.edu!bloom-beacon.mit.edu!gatech!udel!news.mathworks.com!uunet!citicorp.com!spcuna!ritz!kudut
  83657. From: kudut@ritz.mordor.com (Kenneth Udut)
  83658. Subject: Re: File Transfer Using Telnet Host Menu?
  83659. X-Signature: YES! - the Yarn Editor Shell, Version 0.08.B1205
  83660. References: <3gp37d$pkt@news.cc.utah.edu> <1995Feb1.215555.40203@cc.usu.edu>
  83661. Sender: kudut@ritz.mordor.com (Ken Udut)
  83662. Organization: SOUP Leaf off of ritz.mordor.com (Jersey City, NJ, USA)
  83663. Date: Thu, 2 Feb 1995 16:07:25 GMT
  83664. X-Newsreader: Yarn 0.75
  83665. Message-Id: <zCGClqo7I$S0075yn@ritz.mordor.com>
  83666. Lines: 63
  83667. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  83668.  
  83669. kudut@ritz.mordor.com <Ken>
  83670. -----------------------------------------------------------------------
  83671.                                                             02.Feb.1995
  83672.  
  83673. > Select from the following transfer protocols:
  83674. > T - TYPE file to your screen
  83675. > C - ASCII with DC2/DC4 Capture
  83676. > A - ASCII only, no Control Codes
  83677. > X - XMODEM
  83678. > O - XMODEM-1k
  83679. > Y - YMODEM (Batch)
  83680. > G - YMODEM-g (Batch)
  83681. > S - SEAlink
  83682. > K - KERMIT
  83683. > W - SuperKERMIT (Sliding Windows)
  83684. > Z - ZMODEM-90(Tm)
  83685. > Choose one (Q to Quit):
  83686. > ---------
  83687. >     That looks like a familiar list, doesn't it. So I tried W first
  83688. > and the protocol failed at the end. I then tried K and that failed at
  83689. > the end too. But the failures were in signaling no more files follow so
  83690. > the one transferred file looked ok. Neither dealt with long packets, despite
  83691. > the names. MS-DOS Kermit v3.14 at my end, running across the Internet
  83692. > with no modems involved.
  83693.  
  83694. This list looks like the venerable TBBS, which is a pretty darned
  83695. sturdy BBS, and has one of the fastest internal Kermit transfers of
  83696. internal Kermits in BBS's.  (I give TBBS great credit for keeping
  83697. various transfer protocols like ASCII with DC2/DC4 capture, variant
  83698. with no control codes, two variants of Kermit, and a sharp version
  83699. of Zmodem which is also speedy).
  83700.  
  83701. But I agree - the Kermit-Lite would provide *much much* better performance
  83702. than their internal variaties.   The Kermit's internal to TBBS are,
  83703. unfortunately, single-file transfer protocols, which is why multiple
  83704. file transfers failed.  I'm surprised the TBBS authors haven't
  83705. upgraded, but perhaps they never got the "nudge".  Now that more TBBS'
  83706. are getting on the Internet, at least in small doses, the authors might
  83707. consider implimenting this.  I would suggest that TBBS users/sysops
  83708. mention this to the TBBS people.
  83709.  
  83710. When I start calling local BBS's again (if I do :-> ) I will start
  83711. attempting to get Kermit-Lite installed on their systems, if for no
  83712. other reason but for myself :-)  It's not difficult to bring a new
  83713. product into your local BBS community (I brought BlueWave down from
  83714. college, convinced local sysops that it was a good thing) - you just
  83715. have to be persistant and truly believe in the product that you're
  83716. promoting.
  83717.  
  83718. >     I would suggest to the BBS sysops that they have a careful look
  83719. > at MS-DOS Kermit Lite, designed to be run as an external protocol on BBS'.
  83720. > It does "the whole thing."
  83721.  
  83722. Agreed :-)
  83723.  
  83724. >     Moral of the story: Carry On Regardless.
  83725. >     Joe D.
  83726.  
  83727. --
  83728. Kenneth Udut                                          kudut@ritz.mordor.com
  83729. Listowner of Y-RIGHTS@SJUVM.BITNET - discussion on the rights of kids/teens
  83730.  
  83731. From news@columbia.edu Wed Feb  1 13:51:11 1995
  83732. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06121
  83733.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 3 Feb 1995 08:05:27 -0500
  83734. Received: by apakabar.cc.columbia.edu id AA26273
  83735.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 3 Feb 1995 08:05:25 -0500
  83736. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!swiss.ans.net!gatech!pirates!news-feed-1.peachnet.edu!insosf1.infonet.net!solaris.cc.vt.edu!news.mathworks.com!hookup!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  83737. From: jrd@cc.usu.edu (Joe Doupnik)
  83738. Newsgroups: comp.protocols.kermit.misc
  83739. Subject: Re: Arrow key problems
  83740. Message-Id: <1995Feb1.195111.40191@cc.usu.edu>
  83741. Date: 1 Feb 95 19:51:11 MDT
  83742. References: <1995Feb1.155717@taz>
  83743. Organization: Utah State University
  83744. Lines: 49
  83745. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  83746.  
  83747. In article <1995Feb1.155717@taz>, mn01@taz.acc.uwrf.edu writes:
  83748. > I have a user with a CompuAdd 325TFX notebook computer.  It is running DOS 5,
  83749. > Windows 3.1 and has PhoenixBIOS A386 Version 1.01.
  83750. > I am trying to install MS-DOS Kermit 3.14 on it for dial-in use.  I have
  83751. > encountered a strange problem while trying to get the keyboard mappings correct
  83752. > however and am looking for enlightenment from the net.
  83753. > I want the arrow keys to function as arrow keys, \Kuparr, \Kdnarr, etc. but they
  83754. > don't always.  I am using the VT320 emulation.  The initialization file maps
  83755. > many of the other "typical" VT keys.
  83756. > Kermit senses the notebook as having an 88-key keyboard.  If I do a SHOW KEY
  83757. > on the up arrow key as the first command, it will report the following:
  83758. >     scan code \328
  83759. >     Verb: KP8 \KKP8
  83760. > If I then do another SHOW KEY immediately afterwards, doing nothing else
  83761. > in-between, I get the following:
  83762. >     scan code \4424
  83763. >     Verb: uparr \Kuparr
  83764. > Similar things will happen if I show the key definition for down arrow, left or
  83765. > right.  This happens even if I put the proper SET KEY commands in the
  83766. > initialization file.  It seems that kermit ignores them until I do a SHOW KEY.
  83767. > This is causing problems since once our users connect, they need the use of the
  83768. > arrow keys.  I finally just mapped ALT- some other keys to the arrow functions
  83769. > but I really would like to solve the arrow key problems.
  83770. > The keyboard on the notebook is, naturally, smaller.  But, it has 12 function
  83771. > keys and does have the 6 keys: Insert, Delete, Home, End, Page Up and Page Down.
  83772. > The other really weird thing is if I use the DOS commands TYPE file|MORE 
  83773. >or EDIT
  83774. > file before I run kermit, kermit thinks the keyboard is a 101-key keyboard and
  83775. > then the arrow keys work fine!  But, the user of this notebook won't be doing
  83776. > those commands so this isn't a real good solution for him...
  83777. ----------------
  83778.     I'm sure it's not Kermit doing this to you but rather the Bios and
  83779. possible TSR helpers in the notebook trying to fake a conventional keyboard
  83780. from an unconventional one, and not doing very well at it. About all I can
  83781. suggest (until someone has better ideas, hint hint) is try again with the
  83782. very least number of drivers and TSRs going, then put them back one by one.
  83783. You can also try SET KEY OFF to use DOS rather than the BIOS, but some
  83784. key mappings won't come through that extra layer of software. At worst you
  83785. could in fact do that TYPE | MORE item on something tiny to fix the machine.
  83786.     Joe D.
  83787.  
  83788. From news@columbia.edu Fri Feb  3 15:52:39 1995
  83789. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15647
  83790.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 3 Feb 1995 10:52:51 -0500
  83791. Received: by apakabar.cc.columbia.edu id AA09635
  83792.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 3 Feb 1995 10:52:46 -0500
  83793. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  83794. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  83795. Newsgroups: comp.protocols.kermit.misc
  83796. Subject: Re: Access of previous articles
  83797. Date: 3 Feb 1995 15:52:39 GMT
  83798. Organization: Columbia University
  83799. Lines: 13
  83800. Message-Id: <3gtjg7$9cs@apakabar.cc.columbia.edu>
  83801. References: <1995Jan31.215339@hal.hahnemann.edu>
  83802. Nntp-Posting-Host: watsun.cc.columbia.edu
  83803. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  83804.  
  83805. In article <1995Jan31.215339@hal.hahnemann.edu>,
  83806.  <mcneal@hal.hahnemann.edu> wrote:
  83807. >How can I access earlier articles of this news group?
  83808. >
  83809. We haven't settled on a permanent archiving scheme yet, and we're not
  83810. sure that we ever will, since the amount of material will only keep
  83811. growing.  However, for the moment, and with no guarantee that it will
  83812. be there forever, or that it will not change location, or that it won't
  83813. be busted up into smaller pieces, etc, you can find the archive at:
  83814.  
  83815.   ftp://kermit.columbia.edu/kermit/e/misc.txt
  83816.  
  83817. - Frank
  83818.  
  83819. From news@columbia.edu Fri Feb  3 15:57:40 1995
  83820. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15959
  83821.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 3 Feb 1995 10:57:58 -0500
  83822. Received: by apakabar.cc.columbia.edu id AA10003
  83823.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 3 Feb 1995 10:57:55 -0500
  83824. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  83825. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  83826. Newsgroups: comp.protocols.kermit.misc
  83827. Subject: Re: Learning kermit script lang - kl.txt [1/1]
  83828. Date: 3 Feb 1995 15:57:40 GMT
  83829. Organization: Columbia University
  83830. Lines: 12
  83831. Message-Id: <3gtjpk$9o6@apakabar.cc.columbia.edu>
  83832. References: <3gqqse$s19@raffles.technet.sg>
  83833. Nntp-Posting-Host: watsun.cc.columbia.edu
  83834. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  83835.  
  83836. In article <3gqqse$s19@raffles.technet.sg>,
  83837. Maverick Ong <kheesoon@technet.sg> wrote:
  83838. >Is there any kermit script lang manual available in internet.
  83839. >I am learning kermit script lang through kermit comm. sofwtare
  83840. >currently.  
  83841. >
  83842. Then you should read the appropriate manual, "Using MS-DOS Kermit"
  83843. or "Using C-Kermit".  Entire chapters are devoted to teaching you
  83844. how to use the script programming language.  You can order these
  83845. books in Singapore by calling +65 220-3684.
  83846.  
  83847. - Frank
  83848.  
  83849. From news@columbia.edu Wed Feb  1 15:55:55 1995
  83850. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01449
  83851.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 3 Feb 1995 14:38:25 -0500
  83852. Received: by apakabar.cc.columbia.edu id AA01300
  83853.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 3 Feb 1995 14:38:22 -0500
  83854. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!news.intercon.com!panix!news.mathworks.com!hookup!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  83855. From: jrd@cc.usu.edu (Joe Doupnik)
  83856. Newsgroups: comp.protocols.kermit.misc
  83857. Subject: Re: File Transfer Using Telnet Host Menu?
  83858. Message-Id: <1995Feb1.215555.40203@cc.usu.edu>
  83859. Date: 1 Feb 95 21:55:55 MDT
  83860. References: <3gp37d$pkt@news.cc.utah.edu>
  83861. Organization: Utah State University
  83862. Lines: 59
  83863. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  83864.  
  83865. In article <3gp37d$pkt@news.cc.utah.edu>, Boyd Fjeldsted <bebrblf@business.utah.edu> writes:
  83866. > After using Kermit to telnet to a remote host, is it possible to
  83867. > download files from the remote host by means of the host's file 
  83868. > download menu? If so, what Kermit settings are required? If not,
  83869. > is there any other way of downloading files from the remote host
  83870. > (which does not provide FTP services)?  An example of such a host
  83871. > is cenbbs.census.gov -- which which was set up as a bbs server, but
  83872. > now also provides telnet services on port 23.
  83873. ----------------
  83874.  
  83875.     Looks rather like a run of the mill telco style BBS but hooked
  83876. to the Internet, sigh. Here is what their blurbs say on the matter:
  83877. --------
  83878. August 30, 1994
  83879.  
  83880.     A full internet connection with this BBS is not yet available.
  83881.     There will be a message in this area when the approriate hardware has
  83882.     been installed and tested.
  83883.  
  83884.     To download files from this BBS it is necessary to either call via modem
  83885.     or to access the files through the annonymous ftp, or the annonymous ftp
  83886.     sections of gopher or mosaic (graphical gopher).  For gopher or mosaic,
  83887.     the annonymous ftp line appears together with the BBS under "5. Access
  83888.     Our Other Information Services"  Directories similar to the BBS ones
  83889.     appear for ftp. For example the ftp /economy contains the same files as
  83890.     the BBS Directory containing Monthly Retail Trade, Monthly Wholesale
  83891.     Trade Sales & Inventories, and Monthly Manufacturers & Trade Inventories
  83892. -More-
  83893. --------
  83894.  
  83895.     But if we keep going, we see the following:
  83896. --------
  83897. Select from the following transfer protocols:
  83898.  
  83899. T - TYPE file to your screen
  83900. C - ASCII with DC2/DC4 Capture
  83901. A - ASCII only, no Control Codes
  83902. X - XMODEM
  83903. O - XMODEM-1k
  83904. Y - YMODEM (Batch)
  83905. G - YMODEM-g (Batch)
  83906. S - SEAlink
  83907. K - KERMIT
  83908. W - SuperKERMIT (Sliding Windows)
  83909. Z - ZMODEM-90(Tm)
  83910.  
  83911. Choose one (Q to Quit):
  83912. ---------
  83913.     That looks like a familiar list, doesn't it. So I tried W first
  83914. and the protocol failed at the end. I then tried K and that failed at
  83915. the end too. But the failures were in signaling no more files follow so
  83916. the one transferred file looked ok. Neither dealt with long packets, despite
  83917. the names. MS-DOS Kermit v3.14 at my end, running across the Internet
  83918. with no modems involved. 
  83919.     I would suggest to the BBS sysops that they have a careful look
  83920. at MS-DOS Kermit Lite, designed to be run as an external protocol on BBS'.
  83921. It does "the whole thing."
  83922.     Moral of the story: Carry On Regardless.
  83923.     Joe D.
  83924.  
  83925. From news@columbia.edu Fri Feb  3 20:03:27 1995
  83926. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03324
  83927.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 3 Feb 1995 15:03:42 -0500
  83928. Received: by apakabar.cc.columbia.edu id AA03703
  83929.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 3 Feb 1995 15:03:40 -0500
  83930. Path: news.columbia.edu!watsun.cc.columbia.edu!pepmnt
  83931. From: pepmnt@watsun.cc.columbia.edu (John Chandler)
  83932. Newsgroups: comp.protocols.kermit.misc
  83933. Subject: Re: CMS Kermit
  83934. Date: 3 Feb 1995 20:03:27 GMT
  83935. Organization: Columbia University
  83936. Lines: 11
  83937. Message-Id: <3gu26f$3j4@apakabar.cc.columbia.edu>
  83938. References: <17337A963.1CMC3466@ibm.mtsac.edu> <1995Feb2.212927.40338@cc.usu.edu>
  83939. Nntp-Posting-Host: watsun.cc.columbia.edu
  83940. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  83941.  
  83942. Note that the hardware limits on buffer size depend upon the type of
  83943. connection.  Kermit recognizes those limits, but imposes them only
  83944. when it comes time to do a transfer.  Thus, you can set the packet
  83945. size to any number you want, up to 9K, but Kermit-370 negotiates the
  83946. actual packet size according to its understanding of the hardware.  In
  83947. fact, its understanding is not complete, since it is possible to set
  83948. up a 7171 terminal type with a large screen size, but Kermit doesn't
  83949. know that and isn't equipped to tell when the screen buffer would be
  83950. bigger than 1920 anyhow.  In any case, 1920 is plenty big enough for
  83951. most purposes.
  83952.                     John Chandler
  83953.  
  83954. From news@columbia.edu Fri Feb  3 21:04:57 1995
  83955. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08045
  83956.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 3 Feb 1995 16:05:01 -0500
  83957. Received: by apakabar.cc.columbia.edu id AA09722
  83958.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 3 Feb 1995 16:04:59 -0500
  83959. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  83960. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  83961. Newsgroups: comp.protocols.kermit.misc
  83962. Subject: Subscribe to Kermit News
  83963. Date: 3 Feb 1995 21:04:57 GMT
  83964. Organization: Columbia University
  83965. Lines: 59
  83966. Message-Id: <3gu5pp$9fo@apakabar.cc.columbia.edu>
  83967. Nntp-Posting-Host: watsun.cc.columbia.edu
  83968. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  83969.  
  83970.  
  83971. Kermit News #6, our printed-on-paper newsletter / journal, will be going
  83972. to press any day now.  Printing and mailing should take some weeks.  In
  83973. the meantime, if you would like to be added to the subscriber list (it's
  83974. free), please send your name and complete postal address to:
  83975.  
  83976.   knews@columbia.edu
  83977.  
  83978. If you received previous issues, you are already subscribed.  If you
  83979. did not, but you placed an order with us since June 1993, you are already
  83980. subscribed.  If your address has changed since June 1993, please send
  83981. your old address and new address so we can update our mailing list.
  83982.  
  83983. To minimize work and expense at our end, please try to make your postal
  83984. address conform to standard formats.  For example, USA addresses should
  83985. end with:
  83986.  
  83987.   City XX  nnnnn
  83988.  
  83989. where XX is the uppercase 2-letter abbreviation of your state or
  83990. territory, such as NY for New York, or GU for Guam, and nnnnn is your 5-
  83991. or 9-digit ZIP code (9-digit preferred, 5-digit required).  According to
  83992. this year's USPS ZIP code directory, there should be no comma between the
  83993. city and the state.
  83994.  
  83995. Addresses in Canada should end with:
  83996.  
  83997.   City XX  lnl nln
  83998.   CANADA
  83999.  
  84000. where XX is the 2-letter abbreviation for the province (e.g. ON for
  84001. Ontario, BC for British Columbia, PQ for Quebec), and "lnl nln" is the
  84002. six-digit (base 36 :-) postal code.
  84003.  
  84004. Addresses in other countries should include the (English) country name
  84005. on the last line, and the postal code (if any) including country prefix
  84006. (if any) on the line preceding, e.g.
  84007.  
  84008.   D-33100 Paderborn
  84009.   GERMANY
  84010.  
  84011.   N-0260 Oslo
  84012.   NORWAY
  84013.  
  84014.   I-20090 Assago (MI)
  84015.   ITALY
  84016.  
  84017.   NL-1081 HV Amsterdam
  84018.   NETHERLANDS
  84019.  
  84020.   New Delhi  110 017
  84021.   INDIA
  84022.  
  84023.   Rechovot 76300
  84024.   ISRAEL
  84025.  
  84026. and so on.
  84027.  
  84028. - Frank
  84029.  
  84030. From news@columbia.edu Fri Feb  3 16:13:44 1995
  84031. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20805
  84032.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 3 Feb 1995 19:48:12 -0500
  84033. Received: by apakabar.cc.columbia.edu id AA28627
  84034.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 3 Feb 1995 19:48:10 -0500
  84035. Path: news.columbia.edu!sol.ctr.columbia.edu!news.moneng.mei.com!howland.reston.ans.net!gatech!udel!news.mathworks.com!uunet!news.inhouse.compuserve.com!news.production.compuserve.com!news
  84036. From: Hans Rehfeld <100125.3631@CompuServe.COM>
  84037. Newsgroups: comp.protocols.kermit.misc
  84038. Subject: Kermit and bad line conditions 1/2
  84039. Date: 3 Feb 1995 16:13:44 GMT
  84040. Organization: EURO-LOG GmbH
  84041. Lines: 28
  84042. Message-Id: <3gtkno$62h$1@mhadg.production.compuserve.com>
  84043. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  84044.  
  84045. " Sorry, I have to split it up in two entries, the editor can 
  84046. only accept 25 lines. I'm using CI$ !!!
  84047.  
  84048. We are using an IBM-PC MS-DOS Kermit V 3.12 (client) and a VAX 
  84049. VMS Kermit
  84050. [C-Kermit 5A(188), 23 Nov 92] OpenVMS VAX (server)
  84051. Performing a transmission to a receiving Kermit via Modem with 
  84052. bad line quality
  84053. results in the following error
  84054. Packet log of sending Kermit:
  84055. *****************************************************************
  84056. ************************
  84057. Spack: ^A0 I~* @-#Y1~F!"*N^M
  84058. Rpack:
  84059. <Crunched packet>
  84060. Spack: ^A0 I~* @-#Y1~F!"*N^M
  84061. Rpack: ^A
  84062. <Timeout>
  84063. Spack: ^A0 I~* @-#Y1~F!"*N^M
  84064. Rpack: ^A0 Y~4 @-#Y1~N'-U*^M
  84065. Spack: ^A6 GI'REHFELD(WOGAPIYU '^M
  84066. Rpack: ^A0 Y~4 @-#Y1~N'-U*^M
  84067. ----------> the received packet obove is not an ACK to the login 
  84068. packet, but is an ACK .................
  84069. Please see entry "Kermit and bad line conditions 2/2" ( Sorry!!)
  84070.  
  84071. -- 
  84072. Hans Rehfeld
  84073.  
  84074. From news@columbia.edu Fri Feb  3 17:58:29 1995
  84075. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23341
  84076.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 3 Feb 1995 20:50:26 -0500
  84077. Received: by apakabar.cc.columbia.edu id AA02491
  84078.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 3 Feb 1995 20:50:24 -0500
  84079. Path: news.columbia.edu!panix!bloom-beacon.mit.edu!eru.mt.luth.se!news.luth.se!sunic!news.tele.fi!news.funet.fi!zippo.uwasa.fi!chyde.uwasa.fi!ts
  84080. From: ts@uwasa.fi (Timo Salmi)
  84081. Newsgroups: comp.archives.msdos.announce,comp.protocols.kermit.misc
  84082. Subject: tskerm26.zip Keypads, .bats, logging, and file transfers for MsKermit
  84083. Followup-To: comp.protocols.kermit.misc
  84084. Date: Fri, 03 Feb 1995 17:58:29 GMT
  84085. Organization: University of Vaasa, Finland
  84086. Lines: 34
  84087. Approved: ts@chyde.uwasa.fi
  84088. Message-Id: <ts9502031758.21523@chyde.uwasa.fi>
  84089. Nntp-Posting-Host: uwasa.fi
  84090. Originator: ts@uwasa.fi
  84091. Xref: news.columbia.edu comp.archives.msdos.announce:8782 comp.protocols.kermit.misc:1831
  84092. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  84093.  
  84094. Sat 28-Jan-95: Two events made it necessary to revisit my collection
  84095. of MSKermit material. The introduction of the new MSKermit version
  84096. 3.14 from the Columbia University in the City of New York, and the
  84097. decision of the Finnish computer centres to impose an 8-bit Unix
  84098. standard with upper ascii Finnish characters. I have consequently
  84099. released
  84100.  :
  84101.  53258 Jan 30 07:33 garbo.uwasa.fi:/pc/ts/tskerm26.zip
  84102.  tskerm26.zip Keypads, .bats, logging, and file transfers for MsKermit.
  84103.  :
  84104. The following material as been added.
  84105.  FINNCHAR.TXT  Info about 8-bit Finnish charset
  84106.  KERM8BIT.INI  VT102 for mskermit 3.14+ 8-bits
  84107.  FINNISH.CMD   Use 7-bit Finnish characters
  84108.  LATIN1.CMD    Use 8-bit international chars
  84109.  MIXED.CMD     Use new 8-bit Finnish characters
  84110. I have also updated the following scripts which were no longer up to
  84111. date with the MSKermit program upgrades.
  84112.  GETBIN.CMD    Automatic file transfer to PC
  84113.  GETTEXT.CMD   Automatic file transfer to PC
  84114.  PUTBIN.CMD    Automatic file transfer from PC
  84115.  PUTTEXT.CMD   Automatic file transfer from PC
  84116. If you need the actual MSKermit program, due to distribution
  84117. policies the place to go for it is kermit.columbia.edu. Look for
  84118. /kermit/archives/msvibm.zip.
  84119.  
  84120.    All the best, Timo
  84121.  
  84122. ..................................................................
  84123. Prof. Timo Salmi      Co-moderator of comp.archives.msdos.announce
  84124. Moderating at garbo.uwasa.fi anonymous FTP archives  193.166.120.5
  84125. Faculty of Accounting & Industrial Management; University of Vaasa
  84126. Internet: ts@uwasa.fi   BBS +(358)-61-3170972; FIN-65101,  Finland
  84127.  
  84128.  
  84129. From news@columbia.edu Fri Feb  3 16:18:25 1995
  84130. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23948
  84131.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 3 Feb 1995 21:01:28 -0500
  84132. Received: by apakabar.cc.columbia.edu id AA03090
  84133.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 3 Feb 1995 21:01:26 -0500
  84134. Path: news.columbia.edu!sol.ctr.columbia.edu!news.moneng.mei.com!howland.reston.ans.net!gatech!udel!news.mathworks.com!uunet!news.inhouse.compuserve.com!news.production.compuserve.com!news
  84135. From: Hans Rehfeld <100125.3631@CompuServe.COM>
  84136. Newsgroups: comp.protocols.kermit.misc
  84137. Subject: Kermit and bad line conditions 2/2
  84138. Date: 3 Feb 1995 16:18:25 GMT
  84139. Organization: EURO-LOG GmbH
  84140. Lines: 28
  84141. Message-Id: <3gtl0h$62h$2@mhadg.production.compuserve.com>
  84142. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  84143.  
  84144. " This is the second half of the message " Kermit and bad line 
  84145. conditions "
  84146.  
  84147. ----------> the received packet obove is not an ACK to the login 
  84148. packet, but is an ACK
  84149. to the previously sent Init packet)
  84150. Nevertheless the Kermit sends out the Send  packet
  84151. Spack: ^A0 S~* @-#Y1~F'"*^^M
  84152. Rpack: ^A; EKUA-W-104, Login failure4^M
  84153. Spack: ^A$ GL:^M
  84154. Rpack: ^A# Y>^M
  84155.  
  84156. The login failure is forced by receiving Kermit, because the 
  84157. login packet was not received
  84158. by the receivers side
  84159. The Remote login packet is supported by both Kermits, the login 
  84160. Username and password is
  84161. correct
  84162. Behaviour of sending Kermit is not correct
  84163.  
  84164. Please is there any solution or explanation of this ??
  84165.  
  84166. And, once again, sorry for any inconvenience for splitting up in 
  84167. two messages, but it is very hard to type in all the control 
  84168. characters and other stuff with the keybord. 
  84169.  
  84170. -- 
  84171. Hans Rehfeld
  84172.  
  84173. From news@columbia.edu Thu Feb  2 12:32:22 1995
  84174. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29933
  84175.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 3 Feb 1995 23:14:24 -0500
  84176. Received: by apakabar.cc.columbia.edu id AA10668
  84177.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 3 Feb 1995 23:14:14 -0500
  84178. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!swiss.ans.net!emi.com!pauling.wadsworth.org!rebecca!newserve!ub!news.kei.com!news.mathworks.com!newshost.marcam.com!zip.eecs.umich.edu!newsxfer.itd.umich.edu!gatech!howland.reston.ans.net!spool.mu.edu!mnemosyne.cs.du.edu!nyx.cs.du.edu!not-for-mail
  84179. From: ffisher@nyx.cs.du.edu (Francis Fisher)
  84180. Newsgroups: comp.protocols.kermit.misc
  84181. Subject: Can't Kermit on new installation
  84182. Date: 2 Feb 1995 05:32:22 -0700
  84183. Organization: University of Denver, Math/CS Dept.
  84184. Lines: 19
  84185. Message-Id: <3gqjcm$bos@nyx.cs.du.edu>
  84186. Nntp-Posting-Host: nyx.cs.du.edu
  84187. X-Newsreader: NN version 6.5.0 #3 (NOV)
  84188. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  84189.  
  84190.  
  84191. Problem:  nCan't transfer binary files via Kermit ...yet I have no
  84192. trouble with ASCII transfers. Conditions: I call a new HP-UX from
  84193. my home dos-based pc. The modem is a Sportster v.34 at modem speeds
  84194. from 2400 thru 28800, set at N-8-1. Whether I start Kermit on the
  84195. new HP or telneted to the NYX freenet computer, the session stops
  84196. quickly after 12 'bad checksums.' 
  84197.  
  84198. One version of kermit is C-Kermit, 4E(072) 24 Jan 89, HP 9000 Series HP-UX
  84199. and the version on NYX is, I think, the current version. Either way
  84200. it is 12 bad checksums then halt. ASCII files transfer in the expected
  84201. way. Kermit is started with the -i switch for binary transfers. I use
  84202. the command 'send xxxyyy.exe' to initiate the process. H
  84203.  
  84204. My suspicion is that there is either some kind of v.34 compatibility
  84205. issue or a config thing at the input of the HP. But I don't know...
  84206.  
  84207. Thanks....Francis Fisher
  84208.  
  84209.  
  84210. From news@columbia.edu Sat Feb  4 05:44:28 1995
  84211. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11485
  84212.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 4 Feb 1995 01:50:23 -0500
  84213. Received: by apakabar.cc.columbia.edu id AA19288
  84214.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 4 Feb 1995 01:50:22 -0500
  84215. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news.cac.psu.edu!news.pop.psu.edu!hudson.lm.com!godot.cc.duq.edu!ddsw1!usenet
  84216. From: heiby@falkor.chi.il.us
  84217. Newsgroups: comp.protocols.kermit.misc
  84218. Subject: OS/2 C-Kermit & DigiBoard?
  84219. Date: 4 Feb 1995 05:44:28 GMT
  84220. Organization: MCSNet Services
  84221. Lines: 7
  84222. Message-Id: <3gv47s$1nc@News1.mcs.com>
  84223. Reply-To: heiby@falkor.chi.il.us
  84224. Nntp-Posting-Host: heiby.pr.mcs.net
  84225. Keywords: OS/2 C-Kermit DigiBoard
  84226. X-Newsreader: IBM NewsReader/2 v1.09
  84227. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  84228.  
  84229. One of my colleagues will shortly be attempting to get C-Kermit 5A(190)
  84230. for OS/2 running on an 8 port DigiBoard unit. I have been told that there
  84231. are two models in use, "MCXI" and "ESAXEM". The driver is called
  84232. something like "XSOL.SYS".
  84233.  
  84234. Is there anything that I'll need to do to get this to work? Thanks! Ron.
  84235.  
  84236.  
  84237. From news@columbia.edu Sat Feb  4 07:32:16 1995
  84238. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12990
  84239.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 4 Feb 1995 02:32:22 -0500
  84240. Received: by apakabar.cc.columbia.edu id AA20911
  84241.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 4 Feb 1995 02:32:21 -0500
  84242. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  84243. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  84244. Newsgroups: comp.protocols.kermit.misc
  84245. Subject: Re: OS/2 C-Kermit & DigiBoard?
  84246. Date: 4 Feb 1995 07:32:16 GMT
  84247. Organization: Columbia University
  84248. Lines: 21
  84249. Message-Id: <3gvai0$kdc@apakabar.cc.columbia.edu>
  84250. References: <3gv47s$1nc@news1.mcs.com>
  84251. Nntp-Posting-Host: watsun.cc.columbia.edu
  84252. Keywords: OS/2 C-Kermit DigiBoard
  84253. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  84254.  
  84255. In article <3gv47s$1nc@news1.mcs.com>,  <heiby@falkor.chi.il.us> wrote:
  84256. >One of my colleagues will shortly be attempting to get C-Kermit 5A(190)
  84257. >for OS/2 running on an 8 port DigiBoard unit. I have been told that there
  84258. >are two models in use, "MCXI" and "ESAXEM". The driver is called
  84259. >something like "XSOL.SYS".
  84260. >
  84261.  
  84262. XALL.SYS
  84263.  
  84264. >Is there anything that I'll need to do to get this to work? Thanks! Ron.
  84265.  
  84266. No, C-Kermit 5A(190) works fine with 8 port Digiboards.  Some of the 
  84267. older drivers had problems.  So if you have a problem, connect to the 
  84268. digiboard bbs or ftp site and get the latest OS/2 drivers.
  84269.  
  84270.  
  84271.  
  84272. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  84273. "C-Kermit: available on more platforms than any other communications software."
  84274. "Kermit FTP: sending files whenever and wherever they are needed."
  84275.   OS/2 version 5A(190): ftp://kermit.columbia.edu/kermit/archives/cko190.zip 
  84276.  
  84277. From news@columbia.edu Thu Feb  2 14:59:00 1995
  84278. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14381
  84279.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 4 Feb 1995 03:09:39 -0500
  84280. Received: by apakabar.cc.columbia.edu id AA22040
  84281.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 4 Feb 1995 03:09:36 -0500
  84282. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!news.duke.edu!agate!howland.reston.ans.net!news.sprintlink.net!news.usit.net!use.usit.net!howe
  84283. From: howe@usit.net (Herb Howe)
  84284. Newsgroups: comp.protocols.kermit.misc
  84285. Subject: Kermit sliding windows on Mac
  84286. Date: 2 Feb 1995 14:59:00 GMT
  84287. Organization: United States Internet, Inc.
  84288. Lines: 24
  84289. Message-Id: <3gqrvl$nj0@news.usit.net>
  84290. Nntp-Posting-Host: use.usit.net
  84291. X-Newsreader: TIN [version 1.2 PL2]
  84292. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  84293.  
  84294.  
  84295. According to the Kermit documentation, for Kermit to approach the 
  84296. transfer speed of ZModem, it is necessary to be able to set long 
  84297. packets and multiple sliding windows.  Does anyone know what comm 
  84298. programs or, particulary, Communications Toolbox Tools are 
  84299. available for the Mac that properly support sliding windows?
  84300.  
  84301. The terminal program MacKermit available from kermit.columbia.edu 
  84302. does not work on my Mac SE, System 7.  It bombs the Mac 
  84303. repeatedly.
  84304.  
  84305. The Claris Kermit CTB Tool 1.0 supports either long packets or 
  84306. sliding windows but not both simultaneously.
  84307.  
  84308. VersatermPro has an internal Kermit that does not do windows.  
  84309. Neither does the public-domain Kermit Tool GH 1.2 or the internal 
  84310. Kermit in ZTerm 1.0b3.
  84311.  
  84312. Are there better CTB Tools available, either public-domain or 
  84313. commercial?
  84314.  
  84315. Herb Howe
  84316. howe@usit.net
  84317.  
  84318.  
  84319. From news@columbia.edu Thu Feb  2 14:06:50 1995
  84320. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15138
  84321.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 4 Feb 1995 03:34:18 -0500
  84322. Received: by apakabar.cc.columbia.edu id AA22966
  84323.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 4 Feb 1995 03:34:16 -0500
  84324. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!udel!gatech!newsxfer.itd.umich.edu!caen!hearst.acc.Virginia.EDU!gems.vcu.edu!agnew
  84325. From: agnew@gems.vcu.edu (Brainwave Surfer)
  84326. Newsgroups: comp.protocols.kermit.misc
  84327. Subject: Re: Kermit TSR for background xfers?
  84328. Message-Id: <1995Feb2.100650.321@gems.vcu.edu>
  84329. Date: 2 Feb 95 10:06:50 -0400
  84330. References: <3go00i$bie@crl12.crl.com> <3gober$sc4@apakabar.cc.columbia.edu>
  84331. Organization: Medical College of Virginia
  84332. Lines: 30
  84333. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  84334.  
  84335. In article <3gober$sc4@apakabar.cc.columbia.edu>, fdc@watsun.cc.columbia.edu (Frank da Cruz) writes:
  84336. > In article <3go00i$bie@crl12.crl.com>, Paul Smith <cgi@crl.com> wrote:
  84337. >>Does the MSDOS kermit tool kit have a TSR mode of operation for a simple DOS
  84338. >>box may run other windows/dos progs for serving background call ins over a
  84339. >>modem to a com port for file transfer in / out / delete?
  84340. >>
  84341. > No, MS-DOS Kermit does not have a "simple TSR" mode.  If you want to transfer
  84342. > files with Kermit on your PC and at the same use your PC for other things,
  84343. > then you need a multitasking environment (or what passes for one) like
  84344. > OS/2, Windows, NT, DesqView, etc.
  84345. > - Frank
  84346.  
  84347. I've successfully used two Kermits running on two serial ports at once,
  84348. once dwnloading, and the other one interactively pretty heavily.  If you
  84349. have a decent 486/33mhz it should fly jerkily pretty well.  set the properties
  84350. to allow timeslicing or background execution.  Now, to say it's a server
  84351. will allow everyone to access your machine.  How about a WEB page?  Or a
  84352. BBS?  or a elcheapo 286 dedicated to handing out the stuff, a few hundered
  84353. bucks would suffice.
  84354.  
  84355. just my unasked for 2cents worth.
  84356.  
  84357. Jim
  84358.  
  84359.          /^^^\   \ /   Jim Agnew         | AGNEW@RUBY.VCU.EDU  (Internet)
  84360.         /      >  ||   Neurosurgery,     | AGNEW@VCUVAX        (Bitnet)
  84361.    /\_/     '   \  /   MCV-VCU           | This disc will self destruct in
  84362.  /________________>    Richmond, VA, USA | five seconds.  Good luck, Jim..."
  84363.  
  84364.  
  84365. From news@columbia.edu Thu Feb  2 08:36:59 1995
  84366. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15667
  84367.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 4 Feb 1995 03:55:35 -0500
  84368. Received: by apakabar.cc.columbia.edu id AA23575
  84369.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 4 Feb 1995 03:55:33 -0500
  84370. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!news.mathworks.com!newshost.marcam.com!zip.eecs.umich.edu!caen!kuhub.cc.ukans.edu!falcon.cc.ukans.edu!awebb
  84371. Newsgroups: comp.protocols.kermit.misc
  84372. Subject: LINUX KERMIT PROBLEM
  84373. Message-Id: <1995Feb2.143659.84381@kuhub.cc.ukans.edu>
  84374. From: awebb@falcon.cc.ukans.edu (WEBB ADAM W)
  84375. Date: 2 Feb 95 14:36:59 CST
  84376. Nntp-Posting-Host: falcon.cc.ukans.edu
  84377. X-Newsreader: TIN [version 1.2 PL2]
  84378. Lines: 14
  84379. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  84380.  
  84381.  
  84382. #1 I cannot upload anything. I can download fine. I have a 7E1 connect
  84383. and I've made sure to set both the remote and local kermit to that. The
  84384. file types are also set the same (to binary)...and all that happens is
  84385. it looks like its going to u/l but only "%%TN%%" and that crap shows up 
  84386. instead of "...." plz help me I need to u/l something very soon.
  84387.  
  84388. #2 After downloads which work great is drops carrier.  Same thing with
  84389. uploads except for the fact that I actually don't u/l the file...if the
  84390. non-upload isn't stopped it will eventually give an error message and 
  84391. drop carrier :(
  84392.  
  84393. Please help me.
  84394.  
  84395.  
  84396. From news@columbia.edu Sat Feb  4 07:22:22 1995
  84397. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17407
  84398.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 4 Feb 1995 04:35:55 -0500
  84399. Received: by apakabar.cc.columbia.edu id AA25116
  84400.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 4 Feb 1995 04:35:54 -0500
  84401. Path: news.columbia.edu!sol.ctr.columbia.edu!newsxfer.itd.umich.edu!gatech!howland.reston.ans.net!vixen.cso.uiuc.edu!usenet.ucs.indiana.edu!indyvax.iupui.edu!harvey
  84402. From: harvey@indyvax.iupui.edu (James Harvey)
  84403. Newsgroups: comp.protocols.kermit.misc
  84404. Subject: Getting back to C-Kermit command level when using a command file
  84405. Message-Id: <1995Feb4.022222.12173@ivax>
  84406. Date: 4 Feb 95 02:22:22 -0500
  84407. Organization: Indiana University-Purdue University at Indianapolis
  84408. Lines: 16
  84409. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  84410.  
  84411. I have a question about C-Kermit 5A(190) on a VAX.  We use this to
  84412. provide dialout services under a menu system using a C-Kermit command file.
  84413. The command file is passed the number to dial on the command line like
  84414. this:
  84415.  
  84416. $ CKERMIT dialing-command-file -Y = number-to-call
  84417.  
  84418. Currently when the user types the sequence to escape back to C-Kermit
  84419. command level, the end of the command file is reached and C-Kermit exits.
  84420. I would like to add an option to allow the user to instead get the C-Kermit
  84421. prompt and be able to type in more C-Kermit commands (e.g., for file transfer
  84422. and to connect again), but I haven't been able to figure out how to do this
  84423. from the manual.
  84424. --
  84425. James Harvey   harvey@iupui.edu   IUPUI IT Networks and Systems
  84426. Disclaimer:  These are my own opinions.  I do not speak for Indiana University.
  84427.  
  84428. From news@columbia.edu Fri Feb  3 03:17:22 1995
  84429. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17710
  84430.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 4 Feb 1995 04:47:56 -0500
  84431. Received: by apakabar.cc.columbia.edu id AA25421
  84432.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 4 Feb 1995 04:47:55 -0500
  84433. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!swiss.ans.net!emi.com!pauling.wadsworth.org!rebecca!newserve!ub!news.kei.com!news.mathworks.com!hookup!swrinde!cs.utexas.edu!uwm.edu!uwvax!trappist.cs.wisc.edu!zakarian
  84434. From: zakarian@trappist.cs.wisc.edu (Armand Zakarian)
  84435. Newsgroups: comp.protocols.kermit.misc
  84436. Subject: Re: Kermit patch level indication?
  84437. Date: 3 Feb 1995 03:17:22 GMT
  84438. Organization: U of Wisconsin CS Dept
  84439. Lines: 19
  84440. Message-Id: <3gs782$4td@spool.cs.wisc.edu>
  84441. References: <1995Jan27.211502.19910@lafn.org>
  84442. Nntp-Posting-Host: trappist.cs.wisc.edu
  84443. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  84444.  
  84445. In article <1995Jan27.211502.19910@lafn.org>,
  84446. Charles Lease <ac388@lafn.org> wrote:
  84447. >
  84448. >After obtaining the:
  84449. >
  84450. >   > ; For MS Kermit/IBM-PC Version 3.14, Patches 1-3, 22 Jan 1995
  84451. >
  84452. >msr314.pch file, and replacing the patch file distributed with the
  84453. >msvibm.zip MSKermit v3.14 distribution, I notice that the start-up
  84454. >message generated when MSKermit is initialized:
  84455. >
  84456. [poster found that patch file didn't work]
  84457.  
  84458. The problem is that msr314.pch is stored on the distribution site
  84459. as Unix text (lines separated by \10) while the MS Kermit patch
  84460. command expects DOS text (lines separated by \13\10).  The
  84461. solution is to transfer the file from Unix to Dos in text mode.  
  84462. -- 
  84463. Armand Zakarian
  84464.  
  84465. From news@columbia.edu Sat Feb  4 05:12:58 1995
  84466. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25939
  84467.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 4 Feb 1995 06:41:15 -0500
  84468. Received: by apakabar.cc.columbia.edu id AA10393
  84469.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 4 Feb 1995 06:41:13 -0500
  84470. Newsgroups: comp.protocols.kermit.misc
  84471. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!howland.reston.ans.net!pipex!bnr.co.uk!bcarh8ac.bnr.ca!bcarh189.bnr.ca!nott!torn!news.unb.ca!coranto.ucs.mun.ca!nstn.ns.ca!newsflash.concordia.ca!CC.UMontreal.CA!news.uqam.ca!hobbit.ireq.hydro.qc.ca!ratel
  84472. From: ratel@ireq-ccfm.hydro.qc.ca (Gilles Ratel 8720)
  84473. Subject: mode "host" for caller?
  84474. Message-Id: <D3GMHM.HLL@ireq.hydro.qc.ca>
  84475. Sender: news@ireq.hydro.qc.ca (Netnews Admin)
  84476. Reply-To: ratel@ireq-ccfm.hydro.qc.ca
  84477. Organization: Institut de recherche d'Hydro-Quebec, Varennes, Canada
  84478. Date: Sat, 4 Feb 1995 05:12:58 GMT
  84479. Lines: 20
  84480. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  84481.  
  84482.   I don't understand how do you do connect two PC via modem line
  84483.   with MS-Kermit (3.14)
  84484.  
  84485.  
  84486.            ----------                        ------------
  84487.                PC    |__modem________modem__|  PC call SERVER
  84488.              SERVER  |                      |    via command DIAL
  84489.           -----------                        -------------------
  84490.           (MS-Kermit)                           (MS-Kermit)
  84491.  
  84492.   What is setup for PC SERVER for
  84493.   answering and execute "get" and
  84494.   "put" from caller?
  84495.     (or, how do
  84496.       you set this PC for "host"?)
  84497.  
  84498.  
  84499.  Thanks,
  84500.  
  84501.  Gilles Ratel
  84502.  
  84503. From news@columbia.edu Sat Feb  4 16:53:59 1995
  84504. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00964
  84505.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 4 Feb 1995 11:54:05 -0500
  84506. Received: by apakabar.cc.columbia.edu id AA23980
  84507.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 4 Feb 1995 11:54:04 -0500
  84508. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  84509. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  84510. Newsgroups: comp.protocols.kermit.misc
  84511. Subject: Re: Can't Kermit on new installation
  84512. Date: 4 Feb 1995 16:53:59 GMT
  84513. Organization: Columbia University
  84514. Lines: 24
  84515. Message-Id: <3h0bf7$ncs@apakabar.cc.columbia.edu>
  84516. References: <3gqjcm$bos@nyx.cs.du.edu>
  84517. Nntp-Posting-Host: watsun.cc.columbia.edu
  84518. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  84519.  
  84520. In article <3gqjcm$bos@nyx.cs.du.edu>,
  84521. Francis Fisher <ffisher@nyx.cs.du.edu> wrote:
  84522. >
  84523. >Problem:  Can't transfer binary files via Kermit ...yet I have no
  84524. >trouble with ASCII transfers. Conditions: I call a new HP-UX from
  84525. >my home dos-based pc. The modem is a Sportster v.34 at modem speeds
  84526. >from 2400 thru 28800, set at N-8-1. Whether I start Kermit on the
  84527. >new HP or telneted to the NYX freenet computer, the session stops
  84528. >quickly after 12 'bad checksums.' 
  84529. >
  84530. Try "set parity space".  Probably you are going through a terminal
  84531. server or somesuch that is not passing 8 bits through.
  84532.  
  84533. This question seems to come up at least once a week, so I'd better
  84534. add it to the FAQ:
  84535.  
  84536.   ftp://kermit.columbia.edu/FAQ.TXT
  84537.  
  84538. >One version of kermit is C-Kermit, 4E(072) 24 Jan 89, HP 9000 Series HP-UX
  84539. >
  84540. The current version is 5A(190).  It might help too, since it knows a lot
  84541. more about HP-UX than the six-year-old version does that you are using.
  84542.  
  84543. - Frank
  84544.  
  84545. From news@columbia.edu Sat Feb  4 17:02:32 1995
  84546. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01505
  84547.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 4 Feb 1995 12:02:37 -0500
  84548. Received: by apakabar.cc.columbia.edu id AA24576
  84549.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 4 Feb 1995 12:02:35 -0500
  84550. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  84551. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  84552. Newsgroups: comp.protocols.kermit.misc
  84553. Subject: Re: Kermit sliding windows on Mac
  84554. Date: 4 Feb 1995 17:02:32 GMT
  84555. Organization: Columbia University
  84556. Lines: 28
  84557. Message-Id: <3h0bv8$nvs@apakabar.cc.columbia.edu>
  84558. References: <3gqrvl$nj0@news.usit.net>
  84559. Nntp-Posting-Host: watsun.cc.columbia.edu
  84560. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  84561.  
  84562. In article <3gqrvl$nj0@news.usit.net>, Herb Howe <howe@usit.net> wrote:
  84563. >According to the Kermit documentation, for Kermit to approach the 
  84564. >transfer speed of ZModem, it is necessary to be able to set long 
  84565. >packets and multiple sliding windows.  Does anyone know what comm 
  84566. >programs or, particulary, Communications Toolbox Tools are 
  84567. >available for the Mac that properly support sliding windows?
  84568. >
  84569. >The terminal program MacKermit available from kermit.columbia.edu 
  84570. >does not work on my Mac SE, System 7.  It bombs the Mac 
  84571. >repeatedly.
  84572. >
  84573. Mac Kermit is not well-maintained due to a persistent lack of
  84574. programmers who are both willing and able to do the job.  I hope
  84575. the situation will change in the future.  Meanwhile, if you are
  84576. not using version 0.991(190), then you might want to give it a try.
  84577. It cures the problem (bomb) with downloading that came up under
  84578. Mac OS 7.1.  But of course, it still has other problems.
  84579.  
  84580. The easiest way to get the files needed for the current Mac Kermit
  84581. incarnation is through the Web:
  84582.  
  84583.   http://www.columbia.edu/kermit/mac.html
  84584.  
  84585. Qualified Macintosh programmers are always welcome to look at
  84586. Mac Kermit and make any contributions they can, the most urgently
  84587. needed ones being bug fixes.  Contact me if you are interested.
  84588.  
  84589. - Frank
  84590.  
  84591. From news@columbia.edu Sat Feb  4 17:07:31 1995
  84592. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01691
  84593.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 4 Feb 1995 12:07:34 -0500
  84594. Received: by apakabar.cc.columbia.edu id AA24836
  84595.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 4 Feb 1995 12:07:33 -0500
  84596. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  84597. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  84598. Newsgroups: comp.protocols.kermit.misc
  84599. Subject: Re: Kermit patch level indication?
  84600. Date: 4 Feb 1995 17:07:31 GMT
  84601. Organization: Columbia University
  84602. Lines: 26
  84603. Message-Id: <3h0c8j$o82@apakabar.cc.columbia.edu>
  84604. References: <1995Jan27.211502.19910@lafn.org> <3gs782$4td@spool.cs.wisc.edu>
  84605. Nntp-Posting-Host: watsun.cc.columbia.edu
  84606. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  84607.  
  84608. In article <3gs782$4td@spool.cs.wisc.edu>,
  84609. Armand Zakarian <zakarian@trappist.cs.wisc.edu> wrote:
  84610. >In article <1995Jan27.211502.19910@lafn.org>,
  84611. >Charles Lease <ac388@lafn.org> wrote:
  84612. >>After obtaining the:
  84613. >>msr314.pch file, and replacing the patch file distributed with the
  84614. >>msvibm.zip MSKermit v3.14 distribution, I notice that the start-up
  84615. >>message generated when MSKermit is initialized:
  84616. >[poster found that patch file didn't work]
  84617. >The problem is that msr314.pch is stored on the distribution site
  84618. >as Unix text (lines separated by \10) while the MS Kermit patch
  84619. >command expects DOS text (lines separated by \13\10).  The
  84620. >solution is to transfer the file from Unix to Dos in text mode.  
  84621. >
  84622. "Problem" is in the eye of the beholder.
  84623.  
  84624. It's a text file, and it is stored in the normal text format for
  84625. the UNIX system on which you found it.  But you should not be
  84626. concerned with what the format is; you only need to know it is a
  84627. text file, and therefore transfer it in text mode.  Then it will
  84628. arrive on your PC in the correct format and it will work as
  84629. advertised.
  84630.  
  84631. It's too bad all computers can't store files in the same format.
  84632.  
  84633. - Frank
  84634.  
  84635. From news@columbia.edu Sat Feb  4 17:15:30 1995
  84636. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02243
  84637.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 4 Feb 1995 12:15:38 -0500
  84638. Received: by apakabar.cc.columbia.edu id AA25515
  84639.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 4 Feb 1995 12:15:36 -0500
  84640. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  84641. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  84642. Newsgroups: comp.protocols.kermit.misc
  84643. Subject: Re: mode "host" for caller?
  84644. Date: 4 Feb 1995 17:15:30 GMT
  84645. Organization: Columbia University
  84646. Lines: 44
  84647. Message-Id: <3h0cni$osi@apakabar.cc.columbia.edu>
  84648. References: <D3GMHM.HLL@ireq.hydro.qc.ca>
  84649. Nntp-Posting-Host: watsun.cc.columbia.edu
  84650. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  84651.  
  84652. In article <D3GMHM.HLL@ireq.hydro.qc.ca>,
  84653. Gilles Ratel 8720 <ratel@ireq-ccfm.hydro.qc.ca> wrote:
  84654. >  I don't understand how do you do connect two PC via modem line
  84655. >  with MS-Kermit (3.14)
  84656. >
  84657. >           ----------                        ------------
  84658. >               PC    |__modem________modem__|  PC call SERVER
  84659. >             SERVER  |                      |    via command DIAL
  84660. >          -----------                        -------------------
  84661. >          (MS-Kermit)                           (MS-Kermit)
  84662. >
  84663. >  What is setup for PC SERVER for
  84664. >  answering and execute "get" and
  84665. >  "put" from caller?
  84666. >    (or, how do you set this PC for "host"?)
  84667. >
  84668. This is thoroughly explained in two chapters, 10 and 11, of the manual,
  84669. "Using MS-DOS Kermit", also available in French:
  84670.  
  84671.   Christine M. Gianone, "Kermit MS-DOS mode d'emploi", Heinz Schiefer
  84672.   & Cie., Versailles (1993), 406 pages.  Packaged with version 3.11 of
  84673.   MS-DOS Kermit for the IBM PC, PS/2, and compatibles on a 5.25-inch
  84674.   diskette.  Adaption francaise: Jean Dutertre.  ISBN 2-901143-20-2.
  84675.   Heinz Schiefer & Cie., 45 rue Henri de Regnier, F-78000 Versailles.
  84676.   Tel. +33 39 53 95 26, Fax. +33 39 02 39 71.
  84677.  
  84678. Note: the French edition can also be ordered from Columbia University.
  84679. See our Web page:
  84680.  
  84681.   http://www.columbia.edu/kermit/
  84682.  
  84683. for more information, or send email to kermit@columbia.edu.
  84684.  
  84685. Briefly, you have to put the answering modem in answer mode.
  84686. The PC that is connected to the answering modem is either running
  84687. Kermit in server mode, or, for a LIMITED "host mode" capability,
  84688. you can redirect its console to the COM port via CTTY COMx.
  84689.  
  84690. In the former case, you have to send Kermit packets (SEND, GET,
  84691. REMOTE DIRECTORY, etc).  In the latter case, you can type DOS
  84692. commands, but with caution -- the hazards of CTTY are explained
  84693. in the manual.
  84694.  
  84695. - Frank
  84696.  
  84697. From news@columbia.edu Sat Feb  4 17:23:29 1995
  84698. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02607
  84699.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 4 Feb 1995 12:23:36 -0500
  84700. Received: by apakabar.cc.columbia.edu id AA26106
  84701.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 4 Feb 1995 12:23:34 -0500
  84702. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  84703. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  84704. Newsgroups: comp.protocols.kermit.misc
  84705. Subject: Re: Getting back to C-Kermit command level when using a command file
  84706. Date: 4 Feb 1995 17:23:29 GMT
  84707. Organization: Columbia University
  84708. Lines: 40
  84709. Message-Id: <3h0d6h$pfo@apakabar.cc.columbia.edu>
  84710. References: <1995Feb4.022222.12173@ivax>
  84711. Nntp-Posting-Host: watsun.cc.columbia.edu
  84712. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  84713.  
  84714. In article <1995Feb4.022222.12173@ivax>,
  84715. James Harvey <harvey@indyvax.iupui.edu> wrote:
  84716. >I have a question about C-Kermit 5A(190) on a VAX.  We use this to
  84717. >provide dialout services under a menu system using a C-Kermit command file.
  84718. >The command file is passed the number to dial on the command line like
  84719. >this:
  84720. >
  84721. >$ CKERMIT dialing-command-file -Y = number-to-call
  84722. >
  84723. I think that should be:
  84724.  
  84725. $ CKERMIT dialing-command-file "-Y" = number-to-call
  84726.  
  84727. VMS lowercases your command-line options unless you enclose them in
  84728. quotes.  If it worked for you without quotes, it's an accident :-)
  84729.  
  84730. >Currently when the user types the sequence to escape back to C-Kermit
  84731. >command level, the end of the command file is reached and C-Kermit exits.
  84732. >I would like to add an option to allow the user to instead get the C-Kermit
  84733. >prompt and be able to type in more C-Kermit commands (e.g., for file transfer
  84734. >and to connect again), but I haven't been able to figure out how to do this
  84735. >from the manual.
  84736. >
  84737. Pages 316 and 323.
  84738.  
  84739. It's the "-S" option (uppercase), for "Stay":
  84740.  
  84741. $ CKERMIT dialing-command-file "-Y" "-S" = number-to-call
  84742.  
  84743. I don't think the "-S" should be necessary, though.  When you invoke a
  84744. command file by giving its name as the first command-line argument, this
  84745. should not cause an automatic exit.  (Of course, Kermit will exit if the
  84746. command file contains an EXIT or QUIT command.)  So any of the following
  84747. should work:
  84748.  
  84749. $ CKERMIT dialing-command-file "-Y" = number-to-call
  84750.  
  84751. $ CKERMIT -y dialing-command-file = number-to-call
  84752.  
  84753. - Frank
  84754.  
  84755. From news@columbia.edu Sat Feb  4 17:59:12 1995
  84756. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04053
  84757.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 4 Feb 1995 12:59:17 -0500
  84758. Received: by apakabar.cc.columbia.edu id AA28355
  84759.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 4 Feb 1995 12:59:15 -0500
  84760. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  84761. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  84762. Newsgroups: comp.protocols.kermit.misc
  84763. Subject: Re: LINUX KERMIT PROBLEM
  84764. Date: 4 Feb 1995 17:59:12 GMT
  84765. Organization: Columbia University
  84766. Lines: 38
  84767. Message-Id: <3h0f9g$rm1@apakabar.cc.columbia.edu>
  84768. References: <1995Feb2.143659.84381@kuhub.cc.ukans.edu>
  84769. Nntp-Posting-Host: watsun.cc.columbia.edu
  84770. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  84771.  
  84772. In article <1995Feb2.143659.84381@kuhub.cc.ukans.edu>,
  84773. WEBB ADAM W <awebb@falcon.cc.ukans.edu> wrote:
  84774. >#1 I cannot upload anything. I can download fine. I have a 7E1 connect
  84775. >and I've made sure to set both the remote and local kermit to that.
  84776. >
  84777. How?
  84778.  
  84779. >The file types are also set the same (to binary)...and all that happens is
  84780. >it looks like its going to u/l but only "%%TN%%" and that crap shows up 
  84781. >instead of "...." plz help me I need to u/l something very soon.
  84782. >
  84783. Could you please be more specific about exactly which versions of Kermit
  84784. you have on each end, and the exact nature of the connection?  What
  84785. kinds of modems, etc?
  84786.  
  84787. If, indeed, you told one (or both) Kermit(s) to SET PARITY EVEN, then
  84788. the most likely problem is a lack of effective flow control in the
  84789. uploading direction.  The current version of Kermit for Linux,
  84790. C-Kermit 5A(190), supports hardware (RTS/CTS) flow control, and that's
  84791. what you should tell Kermit to use, and you should also configure your
  84792. modem to use it to.  After that, you're at the mercy of whatever is on
  84793. the other end of the connection -- modem, terminal server, host, etc.
  84794. If any of these are misconfigured as to flow control, etc, you will
  84795. probably need to crank the packet length down to the largest size that
  84796. will squeeze through.
  84797.  
  84798. Also, you might try SET PARITY SPACE rather than SET PARITY EVEN, since
  84799. an actual requirement for even parity is increasingly rare these days,
  84800. and those parity bits might actually be causing trouble.
  84801.  
  84802. >#2 After downloads which work great is drops carrier.  Same thing with
  84803. >uploads except for the fact that I actually don't u/l the file...if the
  84804. >non-upload isn't stopped it will eventually give an error message and 
  84805. >drop carrier :(  Please help me.
  84806. >
  84807. I'll need more details about the connection and the software versions.
  84808.  
  84809. - Frank
  84810.  
  84811. From news@columbia.edu Sat Feb  4 04:38:36 1995
  84812. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04567
  84813.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 4 Feb 1995 13:04:49 -0500
  84814. Received: by apakabar.cc.columbia.edu id AA28756
  84815.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 4 Feb 1995 13:04:47 -0500
  84816. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!kennethb
  84817. From: kennethb@cc.usu.edu (Ken Brush)
  84818. Newsgroups: comp.protocols.kermit.misc
  84819. Subject: Ansi Emulation and Kermit =)
  84820. Message-Id: <1995Feb4.103836.40550@cc.usu.edu>
  84821. Date: 4 Feb 95 10:38:36 MDT
  84822. Organization: The Ken Brush College Fund
  84823. Lines: 30
  84824. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  84825.  
  84826. I have a problem. When I start out in ANSI it says on the little bar line:
  84827. Esc: Alt-x help: Alt-h 2:barney.usu.edu            7n1 echo:rem ANSI ....
  84828. Ok but it does vt320 emulation.
  84829. only when I change it to say this:
  84830. Esc: Alt-x help: Alt-h 2:barney.usu.edu         8n1 echo:rem ANSI ....
  84831. will it do ANSI emulation.
  84832. Is this a bug? Also the only way I have been able to change the 7n1 to 8n1 is
  84833. by doing this:
  84834. <alt-x>
  84835. MS-Kermit> set ter typ vt320
  84836. MS-Kermit> c
  84837. <hit  enter a few times>
  84838. <alt-x>
  84839. MS-Kermit> set ter typ ansi
  84840. MS-Kermit> c
  84841. and boom I have ansi emulation again.
  84842. So could someone tell me a way to set the 7n1 to 8n1 in my mskermit.ini file?
  84843. Anyone? Anyone?
  84844. Bueller?
  84845.  
  84846. -Ken-
  84847. "You can't change the world
  84848.  But you can change the facts
  84849.  And when you change the facts
  84850.  You change points of view
  84851.  If you change points of view
  84852.  You may change a vote
  84853.  And when you change a vote
  84854.  You may change the world"
  84855. -Depeche Mode
  84856.  
  84857. From news@columbia.edu Sat Feb  4 18:25:20 1995
  84858. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05549
  84859.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 4 Feb 1995 13:25:28 -0500
  84860. Received: by apakabar.cc.columbia.edu id AA00424
  84861.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 4 Feb 1995 13:25:26 -0500
  84862. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  84863. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  84864. Newsgroups: comp.protocols.kermit.misc
  84865. Subject: Re: Kermit and bad line conditions 2/2
  84866. Date: 4 Feb 1995 18:25:20 GMT
  84867. Organization: Columbia University
  84868. Lines: 50
  84869. Message-Id: <3h0gqg$d2@apakabar.cc.columbia.edu>
  84870. References: <3gtl0h$62h$2@mhadg.production.compuserve.com>
  84871. Nntp-Posting-Host: watsun.cc.columbia.edu
  84872. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  84873.  
  84874. In article <3gtl0h$62h$2@mhadg.production.compuserve.com>,
  84875. Hans Rehfeld  <100125.3631@CompuServe.COM> wrote:
  84876. > We are using an IBM-PC MS-DOS Kermit V 3.12 (client) and a
  84877. > C-Kermit 5A(188), 23 Nov 92, OpenVMS VAX (server).
  84878. >
  84879. The current versions are 3.14 and 5A(190), respectively.
  84880.  
  84881. > Performing a transmission to a receiving Kermit via Modem 
  84882. > with bad line quality results in the following error.
  84883. > Packet log of sending Kermit:
  84884. > Spack: ^A0 I~* @-#Y1~F!"*N^M
  84885. > Rpack: <Crunched packet>
  84886. > Spack: ^A0 I~* @-#Y1~F!"*N^M
  84887. > Rpack: ^A <Timeout>
  84888. > Spack: ^A0 I~* @-#Y1~F!"*N^M
  84889. > Rpack: ^A0 Y~4 @-#Y1~N'-U*^M
  84890. > Spack: ^A6 GI'REHFELD(xxxxxx '^M
  84891. > Rpack: ^A0 Y~4 @-#Y1~N'-U*^M
  84892. > ----------> The received packet above is not an ACK to the login 
  84893. > packet, but is an ACK to the previously sent Init packet)
  84894. > Nevertheless the Kermit sends out the Send packet
  84895. > Spack: ^A0 S~* @-#Y1~F'"*^^M
  84896. >
  84897. Unfortunately, this can happen.  The packet sequence number resets to
  84898. zero after each "transaction".  The I-Y sequence is considered a
  84899. transaction, and the REMOTE LOGIN packet starts another transaction.
  84900. So in a case like yours, in which the ACK to the I packet is
  84901. transmitted more than once (due to timeouts or checksum failures) and
  84902. the second or subsequent ACK is delayed, and arrives after the G packet
  84903. is sent, it can indeed be misinterpreted as the ACK to the G packet.
  84904. But no harm is done, because any resulting "packet skew" will be
  84905. caught as the transaction proceeds.
  84906.  
  84907. > Rpack: ^A; EKUA-W-104, Login failure4^M
  84908. > Spack: ^A$ GL:^M
  84909. > Rpack: ^A# Y>^M
  84910. The standard C-Kermit server does not support the REMOTE LOGIN feature.
  84911. That is, the server will not log you in to VMS, and it does not even
  84912. recognize the REMOTE LOGIN packet.  I must say I am somewhat mystified
  84913. at the "Login failure" message above, because the response should have
  84914. been:
  84915.  
  84916.   Unimplemented REMOTE command
  84917.  
  84918. So I think somebody must have made some local changes to your version
  84919. of C-Kermit.
  84920.  
  84921. - Frank
  84922.  
  84923. From news@columbia.edu Sat Feb  4 04:53:54 1995
  84924. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05770
  84925.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 4 Feb 1995 13:30:32 -0500
  84926. Received: by apakabar.cc.columbia.edu id AA00692
  84927.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 4 Feb 1995 13:30:31 -0500
  84928. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  84929. From: jrd@cc.usu.edu (Joe Doupnik)
  84930. Newsgroups: comp.protocols.kermit.misc
  84931. Subject: Re: Ansi Emulation and Kermit =)
  84932. Message-Id: <1995Feb4.105354.40551@cc.usu.edu>
  84933. Date: 4 Feb 95 10:53:54 MDT
  84934. References: <1995Feb4.103836.40550@cc.usu.edu>
  84935. Organization: Utah State University
  84936. Lines: 27
  84937. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  84938.  
  84939. In article <1995Feb4.103836.40550@cc.usu.edu>, kennethb@cc.usu.edu (Ken Brush) writes:
  84940. > I have a problem. When I start out in ANSI it says on the little bar line:
  84941. > Esc: Alt-x help: Alt-h 2:barney.usu.edu            7n1 echo:rem ANSI ....
  84942. > Ok but it does vt320 emulation.
  84943.  
  84944.     No, it is not. You are seeing MSK report VT100 mode, which is a 7-bit
  84945. device and which is as close as we can come to terminal types known to the 
  84946. world. VMS has no conception of the PC modem BBS "ANSI" item, nor should it.
  84947. I strongly recommend using VT320. VMS understands that very well.
  84948.     Joe D.
  84949.  
  84950. > only when I change it to say this:
  84951. > Esc: Alt-x help: Alt-h 2:barney.usu.edu         8n1 echo:rem ANSI ....
  84952. > will it do ANSI emulation.
  84953. > Is this a bug? Also the only way I have been able to change the 7n1 to 8n1 is
  84954. > by doing this:
  84955. > <alt-x>
  84956. > MS-Kermit> set ter typ vt320
  84957. > MS-Kermit> c
  84958. > <hit  enter a few times>
  84959. > <alt-x>
  84960. > MS-Kermit> set ter typ ansi
  84961. > MS-Kermit> c
  84962. > and boom I have ansi emulation again.
  84963. > So could someone tell me a way to set the 7n1 to 8n1 in my mskermit.ini file?
  84964. > Anyone? Anyone?
  84965. > Bueller?
  84966.  
  84967. From news@columbia.edu Sat Feb  4 06:28:35 1995
  84968. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10950
  84969.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 4 Feb 1995 15:49:06 -0500
  84970. Received: by apakabar.cc.columbia.edu id AA10729
  84971.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 4 Feb 1995 15:49:05 -0500
  84972. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  84973. From: jrd@cc.usu.edu (Joe Doupnik)
  84974. Newsgroups: comp.protocols.kermit.misc
  84975. Subject: Re: mode "host" for caller?
  84976. Message-Id: <1995Feb4.122835.40555@cc.usu.edu>
  84977. Date: 4 Feb 95 12:28:35 MDT
  84978. References: <D3GMHM.HLL@ireq.hydro.qc.ca>
  84979. Organization: Utah State University
  84980. Lines: 22
  84981. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  84982.  
  84983. In article <D3GMHM.HLL@ireq.hydro.qc.ca>, ratel@ireq-ccfm.hydro.qc.ca (Gilles Ratel 8720) writes:
  84984. >   I don't understand how do you do connect two PC via modem line
  84985. >   with MS-Kermit (3.14)
  84986. >            ----------                        ------------
  84987. >                PC    |__modem________modem__|  PC call SERVER
  84988. >              SERVER  |                      |    via command DIAL
  84989. >           -----------                        -------------------
  84990. >           (MS-Kermit)                           (MS-Kermit)
  84991. >   What is setup for PC SERVER for
  84992. >   answering and execute "get" and
  84993. >   "put" from caller?
  84994. >     (or, how do
  84995. >       you set this PC for "host"?)
  84996. -----------
  84997.     On the server side tell the modem to autoanswer. Set the port
  84998. to the proper COMx and speed etc within Kermit. Tell Kermit to be a
  84999. server. That's it. Read more about it in the documentation, particularly
  85000. the user's manual "Using MS-DOS Kermit", details on the MSK HELP screens.
  85001.     Joe D.
  85002.  
  85003. From news@columbia.edu Sat Feb  4 21:20:07 1995
  85004. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14166
  85005.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 4 Feb 1995 16:58:33 -0500
  85006. Received: by apakabar.cc.columbia.edu id AA15820
  85007.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 4 Feb 1995 16:58:32 -0500
  85008. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!swiss.ans.net!gatech!concert!lester.appstate.edu!usenet
  85009. From: JW2998@CONRAD.APPSTATE.EDU (Watson, John McClain          )
  85010. Newsgroups: comp.protocols.kermit.misc
  85011. Subject: Help with 28.8 connection!!  *Please Read*
  85012. Date: 4 Feb 1995 21:20:07 GMT
  85013. Organization: APPALACHIAN STATE UNIVERSITY
  85014. Lines: 16
  85015. Distribution: world
  85016. Message-Id: <3h0r27$bed@lester.appstate.edu>
  85017. Nntp-Posting-Host: mm.appstate.edu
  85018. X-News-Reader: VMS NEWS v1.25
  85019. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  85020.  
  85021.     Hello all!  I just dl'ed Kermit 3.14 but am having trouble
  85022. configuring it for my PPI 28.8 v.34 modem.  It seems as if all of the modem
  85023. scripts that are provided come with speed locking constraints programmed
  85024. into them.  For example, when I set the pp14400 to max out at 28800 and try
  85025. to dial, I get this message.
  85026.             Locking Interface Speed at 28800...ATS87=28
  85027.             Unable to set speed at 28800
  85028.  
  85029.     Hence, I canot dial out.  Does anyone know how I could solve this
  85030. problem and get 28800 conections?  Thanks a million!
  85031.  
  85032. McClain Watson
  85033. JW2998@conrad.appstate.edu
  85034. Appalachian State University
  85035. Boone, N.C. 28608
  85036.  
  85037.  
  85038. From news@columbia.edu Wed Feb  1 10:43:16 1995
  85039. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25116
  85040.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 4 Feb 1995 20:48:42 -0500
  85041. Received: by apakabar.cc.columbia.edu id AA00860
  85042.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 4 Feb 1995 20:48:40 -0500
  85043. Newsgroups: comp.protocols.kermit.misc
  85044. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!hookup!swrinde!cs.utexas.edu!uwm.edu!daffy!uwvax!sinetnews!hakata!genkai!genkai!h79055a
  85045. From: h79055a@kyu-cc.cc.kyushu-u.ac.jp (Yun Mo)
  85046. Subject: Re: [ help ] how to set the parameters for terminal Tek4010 ?
  85047. In-Reply-To: MoYun's message of Tue, 31 Jan 95 05:00:05 GMT
  85048. Message-Id: <H79055A.95Feb1194316@kyu-cc.cc.kyushu-u.ac.jp>
  85049. Followup-To: comp.protocols.kermit.misc
  85050. Sender: news@genkai.cc.kyushu-u.ac.jp
  85051. Organization: Computer Center, Kyushu University
  85052. References: <H79055A.95Jan27163932@kyu-cc.cc.kyushu-u.ac.jp>
  85053.     <3gkfv4$4bv@kyu-cs.csce.kyushu-u.ac.jp>
  85054. Date: Wed, 1 Feb 1995 10:43:16 GMT
  85055. Lines: 8
  85056. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  85057.  
  85058.  
  85059. The probelm has been solved by setting GDC CLOCK for the PC to 2.5.
  85060.  
  85061.  
  85062. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Tel. 092-641-1101(Ex.5579) |
  85063. Yun MO,   EnD                       | Fax. 092-651-8616         |
  85064. MoYun@apex.chem-eng.kyushu-u.ac.jp  | Tel. 092-661-1665(Home)    |
  85065. ----------------------------------------------------------------------------
  85066.  
  85067. From news@columbia.edu Sat Feb  4 21:59:41 1995
  85068. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28024
  85069.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 4 Feb 1995 21:59:41 -0500
  85070. Received: by apakabar.cc.columbia.edu id AA05606
  85071.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 4 Feb 1995 21:59:39 -0500
  85072. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!howland.reston.ans.net!news.sprintlink.net!news.cloud9.net!cloud9.net!leftwich
  85073. From: James Leftwich <leftwich@cloud9.net>
  85074. Newsgroups: comp.protocols.kermit.misc
  85075. Subject: please help
  85076. Date: Sat, 4 Feb 1995 21:13:30 -0500
  85077. Organization: Cloud 9 Internet + White Plains, New York, USA
  85078. Lines: 13
  85079. Message-Id: <Pine.SUN.3.91.950204211020.24961A-100000@cloud9.net>
  85080. Nntp-Posting-Host: cloud9.net
  85081. Mime-Version: 1.0
  85082. Content-Type: TEXT/PLAIN; charset=US-ASCII
  85083. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  85084.  
  85085. I realize this probably isn't the proper forum for my question but here 
  85086. goes...
  85087.  
  85088. Can someone tell me how to get started with zmodem (i.e., where to get it 
  85089. on the 'Net, documentation, how it's better than Kermit).
  85090.  
  85091. Or can someone make a good pitch for Kermit and tell me why to stick with it?
  85092.  
  85093. Thanks in advance
  85094.  
  85095. Jim Leftwich
  85096. leftwich@cloud9.net
  85097.  
  85098.  
  85099. From news@columbia.edu Sat Feb  4 13:53:58 1995
  85100. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01444
  85101.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 4 Feb 1995 23:13:44 -0500
  85102. Received: by apakabar.cc.columbia.edu id AA10268
  85103.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 4 Feb 1995 23:13:42 -0500
  85104. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  85105. From: jrd@cc.usu.edu (Joe Doupnik)
  85106. Newsgroups: comp.protocols.kermit.misc
  85107. Subject: Re: Help with 28.8 connection!!  *Please Read*
  85108. Message-Id: <1995Feb4.195358.40611@cc.usu.edu>
  85109. Date: 4 Feb 95 19:53:58 MDT
  85110. References: <3h0r27$bed@lester.appstate.edu>
  85111. Distribution: world
  85112. Organization: Utah State University
  85113. Lines: 19
  85114. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  85115.  
  85116. In article <3h0r27$bed@lester.appstate.edu>, JW2998@CONRAD.APPSTATE.EDU (Watson, John McClain          ) writes:
  85117. >     Hello all!  I just dl'ed Kermit 3.14 but am having trouble
  85118. > configuring it for my PPI 28.8 v.34 modem.  It seems as if all of the modem
  85119. > scripts that are provided come with speed locking constraints programmed
  85120. > into them.  For example, when I set the pp14400 to max out at 28800 and try
  85121. > to dial, I get this message.
  85122. >             Locking Interface Speed at 28800...ATS87=28
  85123. >             Unable to set speed at 28800
  85124. >     Hence, I canot dial out.  Does anyone know how I could solve this
  85125. > problem and get 28800 conections?  Thanks a million!
  85126. ------------
  85127.     1. If you read the modem's manual again I think you will discover
  85128. that it recommends running the comms program to modem part at about 4 times
  85129. the telco signaling speed. So try SET SP 57600 or even 115200 and let the
  85130. modem lock the computer interface at that speed.
  85131.     2. Please do read the modem information provided in the MSK
  85132. distribution set so you can pick up as many useful hints as possible.
  85133.     Joe D.
  85134.  
  85135. From news@columbia.edu Sat Feb  4 16:13:04 1995
  85136. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11225
  85137.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 5 Feb 1995 01:49:10 -0500
  85138. Received: by apakabar.cc.columbia.edu id AA19169
  85139.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 5 Feb 1995 01:49:08 -0500
  85140. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!news.intercon.com!panix!news.mathworks.com!udel!gatech!bloom-beacon.mit.edu!eru.mt.luth.se!news.kth.se!sunic!news.funet.fi!zippo.uwasa.fi!uwasa.fi!ts
  85141. From: ts@uwasa.fi (Timo Salmi)
  85142. Newsgroups: comp.protocols.kermit.misc
  85143. Subject: Re: Can MS-DOS kermit handle zmodem transfers?
  85144. Date: 4 Feb 1995 16:13:04 GMT
  85145. Organization: University of Vaasa
  85146. Lines: 14
  85147. Message-Id: <3h092g$kum@zippo.uwasa.fi>
  85148. References: <3gkt57$euc@israel-info.datasrv.co.il> <1995Jan31.205326.40045@cc.usu.edu> <3go7qe$ghi@news.halcyon.com>
  85149. Nntp-Posting-Host: uwasa.fi
  85150. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  85151.  
  85152. In article <3go7qe$ghi@news.halcyon.com> ken@coho.halcyon.com (Ken Pizzini) writes: :In article <1995Jan31.205326.40045@cc.usu.edu>,
  85153. :I don't run MS-DOS any more, so it would be painful for me to try and
  85154. :figure out a good way to do this with MS-Kermit 3.14.
  85155.  
  85156.  53258 Jan 30 07:33 garbo.uwasa.fi:/pc/ts/tskerm26.zip
  85157.  tskerm26.zip Keypads, .bats, logging, and file transfers for MsKermit.
  85158.  
  85159.    All the best, Timo
  85160.  
  85161. ..................................................................
  85162. Prof. Timo Salmi      Co-moderator of comp.archives.msdos.announce
  85163. Moderating at garbo.uwasa.fi anonymous FTP archives  193.166.120.5
  85164. Faculty of Accounting & Industrial Management; University of Vaasa
  85165. Internet: ts@uwasa.fi   BBS +(358)-61-3170972; FIN-65101,  Finland
  85166.  
  85167. From news@columbia.edu Sun Feb  5 05:21:37 1995
  85168. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17686
  85169.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 5 Feb 1995 04:20:20 -0500
  85170. Received: by apakabar.cc.columbia.edu id AA24345
  85171.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 5 Feb 1995 04:20:18 -0500
  85172. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!news.mathworks.com!news.alpha.net!uwm.edu!math.ohio-state.edu!caen!msunews!netnews.upenn.edu!cronkite.ocis.temple.edu!astro.ocis.temple.edu!georged
  85173. From: georged@astro.ocis.temple.edu (G. DIMITOGLOU)
  85174. Newsgroups: comp.protocols.kermit.misc
  85175. Subject: [Q] How do I run a script?
  85176. Date: 5 Feb 1995 05:21:37 GMT
  85177. Organization: Temple University, Academic Computer Services
  85178. Lines: 16
  85179. Message-Id: <3h1n91$hu7@cronkite.ocis.temple.edu>
  85180. Nntp-Posting-Host: astro.ocis.temple.edu
  85181. X-Newsreader: TIN [version 1.2 PL2]
  85182. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  85183.  
  85184.  
  85185. Hi! just a simple hint on what command to use in order to run a script I wrote.
  85186. Also, is there a degugging method to verify where my code crashes (in case it
  85187. does ?)
  85188.  
  85189. Thank you.
  85190. =============================================================================
  85191. TTTTTTTTTTTTT                 Temple University Press
  85192. TTTTTTTTTTTTT                    George Dimitoglou
  85193.     TTTTT                          Business Dept.         
  85194.     TTTTT          
  85195.     TTTTT   U.S.B Rm. 305         |  E-mail: georged@astro.ocis.temple.edu   
  85196.     TTTTT   Broad & Oxford Sts.,  |          tempress@astro.osis.temple.edu 
  85197.     TTTTT   Philadelphia,         |  Tel   : (215)204-8787
  85198.     TTTTT   Pa 19121              |  Fax   : (215)204-4719
  85199. ==============================================================================
  85200.  
  85201. From news@columbia.edu Fri Feb  3 20:23:42 1995
  85202. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21580
  85203.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 5 Feb 1995 06:33:54 -0500
  85204. Received: by apakabar.cc.columbia.edu id AA09607
  85205.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 5 Feb 1995 06:33:53 -0500
  85206. Newsgroups: comp.protocols.kermit.misc
  85207. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!swrinde!ihnp4.ucsd.edu!news.encore.com!tma
  85208. From: tma@encore.com (Thanh Ma)
  85209. Subject: Re: Can MS-DOS kermit handle zmodem transfers?
  85210. Organization: Encore Computer Corporation
  85211. Date: Fri, 3 Feb 1995 20:23:42 GMT
  85212. Message-Id: <D3FxzI.KDM@encore.com>
  85213. References: <3gkt57$euc@israel-info.datasrv.co.il> <1995Jan31.205326.40045@cc.usu.edu> <D3CrCn.A9u@encore.com> <1995Feb2.065133.40221@cc.usu.edu>
  85214. Sender: news@encore.com (Usenet readnews user id)
  85215. Nntp-Posting-Host: achilles.encore.com
  85216. Lines: 23
  85217. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  85218.  
  85219. jrd@cc.usu.edu (Joe Doupnik) writes:
  85220.  
  85221. >In article <D3CrCn.A9u@encore.com>, tma@encore.com (Thanh Ma) writes:
  85222. >> jrd@cc.usu.edu (Joe Doupnik) writes:
  85223. >> 
  85224. >>>In article <3gkt57$euc@israel-info.datasrv.co.il>, winter@zeus.datasrv.co.il (4th Dimension) writes:
  85225. >>>> 
  85226. >    Did you read the docs in the MS-DOS Kermit v3.14 release collection?
  85227. >If not please do.
  85228. >    Btw, Columbia Kermits are not shareware.
  85229.  
  85230. I would rather talk about lisencing here than through a 'formal' channel.
  85231. How much would it be if I ship a copy of kermit for every PC that I sell?
  85232. (a few guys in customer service deparment would like to have access
  85233. to every PC that we ship. They need to do file transfer from time to time. )
  85234.  
  85235. It looks like I will need to pay $20.00 per box if I go with zmodem.
  85236.  
  85237. Any better ideas ?
  85238. This is in Unixware (SVR4.2) enviromment.
  85239.  
  85240. Thanh Ma
  85241. tma@encore.com
  85242.  
  85243. From news@columbia.edu Wed Feb  1 15:34:19 1995
  85244. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24516
  85245.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 5 Feb 1995 08:11:34 -0500
  85246. Received: by apakabar.cc.columbia.edu id AA12781
  85247.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 5 Feb 1995 08:11:33 -0500
  85248. Path: news.columbia.edu!panix!news.mathworks.com!newshost.marcam.com!charnel.ecst.csuchico.edu!olivea!uunet!munnari.oz.au!yoyo.aarnet.edu.au!goliath.camtech.com.au!gateway.dircsa.org.au!gateway.dircsa.org.au!not-for-mail
  85249. From: arthur@gateway.dircsa.org.au (Arthur Marsh)
  85250. Newsgroups: comp.protocols.kermit.misc
  85251. Subject: problem with transmit under MSK 3.14
  85252. Date: 2 Feb 1995 02:04:19 +1030
  85253. Organization: DIRCSA - Disability Information and Resource Centre
  85254. Lines: 14
  85255. Message-Id: <3go9lr$sdu@gateway.dircsa.org.au>
  85256. Nntp-Posting-Host: gateway.dircsa.org.au
  85257. X-Newsreader: TIN [version 1.1 PL8]
  85258. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  85259.  
  85260. I'm running MSK 3.14 patch level 3 with the BNU 1.70 FOSSIL under
  85261. Novell DOS 7 (with update 10 applied).
  85262.  
  85263. When doing a transmit of a single line file to the Unixware machine here,
  85264. my machine (with a CGA video card) went into 40 column mode.
  85265.  
  85266. Doing a push then mode co80 fixed things.
  85267.  
  85268. Anyone else experienced this?
  85269.  
  85270. -- 
  85271. Arthur Marsh, telephone +61-8-370-2365, fax +61-8-370-2133, +61-8-223-5082 
  85272.               arthur@gateway.dircsa.org.au, arthur@cswamp.apana.org.au
  85273. .endofsig
  85274.  
  85275. From news@columbia.edu Sun Feb  5 03:27:03 1995
  85276. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01142
  85277.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 5 Feb 1995 11:37:07 -0500
  85278. Received: by apakabar.cc.columbia.edu id AA22262
  85279.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 5 Feb 1995 11:37:05 -0500
  85280. Path: news.columbia.edu!panix!bloom-beacon.mit.edu!gatech!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  85281. From: jrd@cc.usu.edu (Joe Doupnik)
  85282. Newsgroups: comp.protocols.kermit.misc
  85283. Subject: Re: [Q] How do I run a script?
  85284. Message-Id: <1995Feb5.092703.40638@cc.usu.edu>
  85285. Date: 5 Feb 95 09:27:03 MDT
  85286. References: <3h1n91$hu7@cronkite.ocis.temple.edu>
  85287. Organization: Utah State University
  85288. Lines: 13
  85289. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  85290.  
  85291. In article <3h1n91$hu7@cronkite.ocis.temple.edu>, georged@astro.ocis.temple.edu (G. DIMITOGLOU) writes:
  85292. > Hi! just a simple hint on what command to use in order to run a script I wrote.
  85293. > Also, is there a degugging method to verify where my code crashes (in case it
  85294. > does ?)
  85295. ---------------
  85296.     MS-DOS Kermit (please do explain your context, thanks):
  85297.     TAKE filename         to read commands from that file
  85298.     SET TAKE ECHO ON    to see commands executed
  85299.  
  85300.     HELP            to see name of the User's Manual
  85301.  
  85302.     Joe D.
  85303.  
  85304. -8-223-5082 
  85305. >               arthur@gateway.dircsa.org.au, arthur@cswamp.apana.org.au
  85306. ---------------
  85307.     The remote host echoed something like ESC [ m to you, and while
  85308. doing script commands video displaying is accomplished by DOS. ANSI.SYS
  85309. is crippled and puts you into 40 column mode (see the docs on ANSI.SYS
  85310. in your DOS books). Cure: SET INPUT ECHO OFF.
  85311.     Joe D.
  85312.  
  85313. From news@columbia.edu Sun Feb  5 08:29:37 1995
  85314. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06077
  85315.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 5 Feb 1995 13:54:08 -0500
  85316. Received: by apakabar.cc.columbia.edu id AA01117
  85317.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 5 Feb 1995 13:54:07 -0500
  85318. Path: news.columbia.edu!panix!bloom-beacon.mit.edu!eru.mt.luth.se!news.kth.se!sunic!news.funet.fi!zippo.uwasa.fi!uwasa.fi!ts
  85319. From: ts@uwasa.fi (Timo Salmi)
  85320. Newsgroups: comp.protocols.kermit.misc
  85321. Subject: Re: Learning kermit script lang - kl.txt [1/1]
  85322. Date: 5 Feb 1995 08:29:37 GMT
  85323. Organization: University of Vaasa
  85324. Lines: 17
  85325. Message-Id: <3h229h$15q@zippo.uwasa.fi>
  85326. References: <3gqqse$s19@raffles.technet.sg>
  85327. Nntp-Posting-Host: uwasa.fi
  85328. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  85329.  
  85330. In article <3gqqse$s19@raffles.technet.sg> kheesoon@technet.sg writes:
  85331. :Is there any kermit script lang manual available in internet.
  85332.  
  85333. The best way is to learn by example together with the Kermit book. I
  85334. am confident that Frank will give you the pointer to the latter.
  85335. Here is one pointer to the former.
  85336.  
  85337.  53258 Jan 30 07:33 garbo.uwasa.fi:/pc/ts/tskerm26.zip
  85338.  tskerm26.zip Keypads, .bats, logging, and file transfers for MsKermit.
  85339.  
  85340.    All the best, Timo
  85341.  
  85342. ..................................................................
  85343. Prof. Timo Salmi      Co-moderator of comp.archives.msdos.announce
  85344. Moderating at garbo.uwasa.fi anonymous FTP archives  193.166.120.5
  85345. Faculty of Accounting & Industrial Management; University of Vaasa
  85346. Internet: ts@uwasa.fi   BBS +(358)-61-3170972; FIN-65101,  Finland
  85347.  
  85348. From news@columbia.edu Sun Feb  5 06:40:06 1995
  85349. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11193
  85350.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 5 Feb 1995 15:35:18 -0500
  85351. Received: by apakabar.cc.columbia.edu id AA08451
  85352.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 5 Feb 1995 15:35:16 -0500
  85353. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!swiss.ans.net!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  85354. From: jrd@cc.usu.edu (Joe Doupnik)
  85355. Newsgroups: comp.protocols.kermit.misc
  85356. Subject: Re: please help
  85357. Message-Id: <1995Feb5.124006.40644@cc.usu.edu>
  85358. Date: 5 Feb 95 12:40:06 MDT
  85359. References: <Pine.SUN.3.91.950204211020.24961A-100000@cloud9.net>
  85360. Organization: Utah State University
  85361. Lines: 16
  85362. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  85363.  
  85364. In article <Pine.SUN.3.91.950204211020.24961A-100000@cloud9.net>, James Leftwich <leftwich@cloud9.net> writes:
  85365. > I realize this probably isn't the proper forum for my question but here 
  85366. > goes...
  85367.     Correct, not the appropriate News group.
  85368.  
  85369. > Can someone tell me how to get started with zmodem (i.e., where to get it 
  85370. > on the 'Net, documentation, how it's better than Kermit).
  85371. > Or can someone make a good pitch for Kermit and tell me why to stick with it?
  85372.  
  85373.     Lessee now. You want others to do your thinking and lead you by the
  85374. hand, and probably take the flak if you are unhappy. What a deal!
  85375.     May I make a humble suggestion of trying the items of interest to you
  85376. and forming opinions based on your particular circumstances. Pointers on how
  85377. to get started are sprinkled through the traffic in this group.
  85378.     Joe D.
  85379.  
  85380. From news@columbia.edu Sun Feb  5 10:28:07 1995
  85381. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20159
  85382.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 5 Feb 1995 19:03:02 -0500
  85383. Received: by apakabar.cc.columbia.edu id AA23391
  85384.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 5 Feb 1995 19:02:59 -0500
  85385. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!usc!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  85386. From: jrd@cc.usu.edu (Joe Doupnik)
  85387. Newsgroups: comp.protocols.kermit.misc
  85388. Subject: Re: Ansi Emulation and Kermit =)
  85389. Message-Id: <1995Feb5.162807.40662@cc.usu.edu>
  85390. Date: 5 Feb 95 16:28:07 MDT
  85391. References: <1995Feb4.103836.40550@cc.usu.edu> <1995Feb4.105354.40551@cc.usu.edu> <1995Feb5.154814.40653@cc.usu.edu>
  85392. Organization: Utah State University
  85393. Lines: 26
  85394. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  85395.  
  85396. In article <1995Feb5.154814.40653@cc.usu.edu>, kennethb@cc.usu.edu (Ken Brush) writes:
  85397. > In article <1995Feb4.105354.40551@cc.usu.edu>, jrd@cc.usu.edu (Joe Doupnik) writes:
  85398. >> In article <1995Feb4.103836.40550@cc.usu.edu>, kennethb@cc.usu.edu (Ken Brush) writes:
  85399. >> 
  85400. >>     No, it is not. You are seeing MSK report VT100 mode, which is a 7-bit
  85401. >> device and which is as close as we can come to terminal types known to the 
  85402. >> world. VMS has no conception of the PC modem BBS "ANSI" item, nor should it.
  85403. >> I strongly recommend using VT320. VMS understands that very well.
  85404. >>     Joe D.
  85405. > Ok then how do I change from a 7-bit to an 8-bit display?
  85406. > And how come you can type set term typ ansi and have it in 7-bit mode if it
  85407. > doesn't handle ANSI color?
  85408. -----------
  85409.     Let's separate these items.
  85410.     SET DISPLAY  or  SET TERM BYTESIZE 7 or 8
  85411.     Color has nothing to do with 7 or 8 
  85412. it comms channels. Color is set
  85413. by CSI 30's and/or 40's m, or in 7-bit form ESC [ 30's and/or 40's m.
  85414.     The above are in the user's manual and the distribution docs.
  85415.     If the remote host is sending material in 8-bit form to a client
  85416. which is not 8-bit compatible (and VT100's are 7-bit devices) then the high
  85417. bit is lost and confusion will result.
  85418.         I wish to emphasize that VMS knows nothing about "ANSI" terminal
  85419. kinds, so please use a kind it does recognize such as the handy VT320
  85420. which is an 8-bit terminal kind too.
  85421.         Joe D.
  85422.  
  85423. From news@columbia.edu Mon Feb  6 08:42:00 1995
  85424. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12594
  85425.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 6 Feb 1995 03:55:46 -0500
  85426. Received: by apakabar.cc.columbia.edu id AA25551
  85427.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 6 Feb 1995 03:55:45 -0500
  85428. Path: news.columbia.edu!panix!bloom-beacon.mit.edu!gatech!howland.reston.ans.net!math.ohio-state.edu!jussieu.fr!univ-lyon1.fr!swidir.switch.ch!scsing.switch.ch!elna.ethz.ch!nh
  85429. From: nh@lem.ee.ethz.ch (Norbert Hanke)
  85430. Newsgroups: comp.protocols.kermit.misc
  85431. Subject: Re: Kermit patch level indication?
  85432. Date: 6 Feb 1995 08:42:00 GMT
  85433. Organization: Swiss Federal Institute of Technology
  85434. Lines: 12
  85435. Message-Id: <3h4nco$ec7@elna.ethz.ch>
  85436. References: <1995Jan27.211502.19910@lafn.org> <3gs782$4td@spool.cs.wisc.edu> <3h0c8j$o82@apakabar.cc.columbia.edu>
  85437. Nntp-Posting-Host: opak-etz.ethz.ch
  85438. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  85439.  
  85440. In article <3h0c8j$o82@apakabar.cc.columbia.edu>,
  85441. Frank da Cruz <fdc@watsun.cc.columbia.edu> wrote:
  85442. ...
  85443. >
  85444. >It's too bad all computers can't store files in the same format.
  85445. >
  85446. >- Frank
  85447. That's one reason to use kermit for file transfer ... :-)
  85448.  
  85449. -- 
  85450. Norbert Hanke
  85451. Power Electronics Lab, ETH Zurich, Switzerland
  85452.  
  85453. From news@columbia.edu Mon Feb  6 08:27:42 1995
  85454. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14702
  85455.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 6 Feb 1995 04:57:07 -0500
  85456. Received: by apakabar.cc.columbia.edu id AA27189
  85457.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 6 Feb 1995 04:57:05 -0500
  85458. Newsgroups: comp.protocols.kermit.misc
  85459. Path: news.columbia.edu!panix!news.mathworks.com!news2.near.net!howland.reston.ans.net!gatech!newsxfer.itd.umich.edu!news1.oakland.edu!vtc.tacom.army.mil!ulowell.uml.edu!wang!news
  85460. From: tat@actcom.co.il (Ram Gura)
  85461. Subject: Using MS kermit with Open VMS kermit
  85462. Organization: ACTCOM - Internet Services in Israel
  85463. Date: Mon, 6 Feb 1995 08:27:42 GMT
  85464. Message-Id: <D3KKu7.LCo@actcom.co.il>
  85465. Sender: news@wang.com
  85466. Lines: 1
  85467. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  85468.  
  85469.  
  85470.  
  85471. From news@columbia.edu Mon Feb  6 11:56:33 1995
  85472. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04532
  85473.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 6 Feb 1995 11:56:33 -0500
  85474. Received: by apakabar.cc.columbia.edu id AA02814
  85475.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 6 Feb 1995 11:56:32 -0500
  85476. Path: news.columbia.edu!panix!news.mathworks.com!hookup!swrinde!howland.reston.ans.net!agate!news.duke.edu!godot.cc.duq.edu!hudson.lm.com!news.pop.psu.edu!news.cac.psu.edu!newsserver.jvnc.net!daniel!pcoen
  85477. From: pcoen@daniel.drew.edu (Paul Coen)
  85478. Newsgroups: comp.protocols.kermit.misc
  85479. Subject: Re: Kermit patch level indication?
  85480. Message-Id: <1995Feb6.102932.115562@daniel>
  85481. Date: 6 Feb 95 10:29:32 ETST
  85482. References: <1995Jan27.211502.19910@lafn.org> <3grnfb$o5v@apakabar.cc.columbia.edu>
  85483. Organization: Drew University Academic Technology
  85484. Lines: 17
  85485. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  85486.  
  85487. In article <3grnfb$o5v@apakabar.cc.columbia.edu>, fdc@watsun.cc.columbia.edu (Frank da Cruz) writes:
  85488. > Since the release of MS-DOS Kermit 3.14, there have been persistent reports
  85489. > that patches don't seem to "stick".  That is, after giving a PATCH command,
  85490. > the patch level is still reported as 0.  This can happen if the patch file is
  85491. > transferred to the PC from a UNIX system in binary mode, so the lines end
  85492. > with LF rather than CRLF -- DOS does not recognize the line boundaries and
  85493. > therefore Kermit does not see valid patches.  Cure: make sure each line ends
  85494. > with CRLF.  Fix it in an editor, or re-transfer the file in text mode.
  85495.  
  85496. There's one other way for this to happen -- if you don't have the fixed release
  85497. of 3.14 from January 18th, but instead have the initial "final" release, 
  85498. the patch files won't work because it's the wrong version.  
  85499.  
  85500. I managed to ftp the new version, and then forgot to actually install
  85501. it, and later spent about ten minutes trying to figure out why the patch
  85502. files wouldn't work.
  85503.  
  85504. From news@columbia.edu Mon Feb  6 15:28:59 1995
  85505. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04738
  85506.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 6 Feb 1995 11:59:18 -0500
  85507. Received: by apakabar.cc.columbia.edu id AA03016
  85508.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 6 Feb 1995 11:59:15 -0500
  85509. Newsgroups: comp.protocols.kermit.misc
  85510. Path: news.columbia.edu!panix!news.mathworks.com!news.kei.com!wang!news
  85511. From: tat@actcom.co.il (Ram Gura)
  85512. Subject: Using MS kermit with Open VMS kermit
  85513. Organization: ACTCOM - Internet Services in Israel
  85514. Date: Mon, 6 Feb 1995 15:28:59 GMT
  85515. Message-Id: <D3L4CC.I7z@actcom.co.il>
  85516. Sender: news@wang.com
  85517. Lines: 1
  85518. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  85519.  
  85520.  
  85521.  
  85522. From news@columbia.edu Mon Feb  6 17:34:32 1995
  85523. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07539
  85524.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 6 Feb 1995 12:37:52 -0500
  85525. Received: by apakabar.cc.columbia.edu id AA06780
  85526.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 6 Feb 1995 12:37:48 -0500
  85527. Path: news.columbia.edu!panix!news.mathworks.com!zombie.ncsc.mil!news.duke.edu!godot.cc.duq.edu!ddsw1!not-for-mail
  85528. From: les@MCS.COM (Leslie Mikesell)
  85529. Newsgroups: comp.protocols.kermit.misc
  85530. Subject: Re: Kermit TSR for background xfers?
  85531. Date: 6 Feb 1995 11:34:32 -0600
  85532. Organization: /usr/lib/news/organi[sz]ation
  85533. Lines: 46
  85534. Message-Id: <3h5mj8$kar@Mercury.mcs.com>
  85535. References: <3go00i$bie@crl12.crl.com> <1995Feb1.100246.40094@cc.usu.edu>
  85536. Nntp-Posting-Host: mercury.mcs.com
  85537. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  85538.  
  85539. In article <1995Feb1.100246.40094@cc.usu.edu>,
  85540. Joe Doupnik <jrd@cc.usu.edu> wrote:
  85541.  
  85542. >> If so, the kermit would save me a BUNCH.  I need to provide a remote unattended
  85543. >> file xfer solution to 40,000 DOS boxes and realy need a good and cheap solution.
  85544. >-------------------
  85545. >    Let's look at this case. Basically you want MSK to become a TSR Kermit
  85546. >file server. Of course, it's not designed that way now; file server yes,
  85547. >TSR no. Doing file i/o as a TSR has a substantial collection of technical
  85548. >problems because DOS itself is not reentrant and provides no multitasking
  85549. >capabilities. Experiences with DOS' PRINT TSR should be enough to persuade
  85550. >folks that these background transfer guys can be bad news. In addition,
  85551. >a program even the size of Kermit-Lite use substantial amounts of 
  85552. >conventional memory, making multiple tasking awkward for the user.
  85553.  
  85554. I'm running a DOS program called ACCESS PLUS that is intended to be used
  85555. with the attmail service that uses a 60K TSR to provide scheduled calls
  85556. in the background.  It is running on many machines without causing too
  85557. much trouble from being a TSR, so it is at least possible.  It appears
  85558. to run an xmodem-like protocol modified so that the total packet size
  85559. is 256 bytes, and has a minimal scripting language for dialing and
  85560. login. However, there are things I don't like about the rest of
  85561. this package.  I'd like to replace it with something that does MIME
  85562. attachments without losing the ability to do the background communication.
  85563.  
  85564. >    There are systems with time sharing capabilities designed into them.
  85565. >The best known are OS/2 and Unix, with OS/2 providing DOS services in a
  85566. >familiar and managable form.
  85567.  
  85568. All of which require at least a 386 and a bunch of memory.  A 60K TSR
  85569. can find a cheaper home.
  85570.  
  85571. >    We could make a Kermit-Lite which went TSR and tried to cope with
  85572. >the horrid problems of doing DOS i/o from interrupt level. It's not easy
  85573. >so this would have to become a fully funded project rather than a to-do
  85574. >item on our wish list.
  85575.  
  85576. I don't have enough sites to justify this myself, but I think there is
  85577. a market for a generic solution to this problem, especially in the
  85578. form of a scriptable kermit TSR since it would allow just about any
  85579. host on the other end.  Especially if it could easily be set up to
  85580. transport messages for something like Pegasus, using only a kermit
  85581. server and a native mail system at the host side.
  85582.  
  85583. Les Mikesell
  85584.   les@mcs.com
  85585.  
  85586. From news@columbia.edu Mon Feb  6 19:19:57 1995
  85587. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17980
  85588.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 6 Feb 1995 15:14:16 -0500
  85589. Received: by apakabar.cc.columbia.edu id AA22166
  85590.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 6 Feb 1995 15:14:14 -0500
  85591. Path: news.columbia.edu!sol.ctr.columbia.edu!spool.mu.edu!bloom-beacon.mit.edu!panix!news.mathworks.com!zombie.ncsc.mil!news.duke.edu!eff!news.umbc.edu!haven.umd.edu!nova.umuc.edu!nova!rockwell
  85592. From: rockwell@nova.umuc.edu (Raul Deluth Miller)
  85593. Newsgroups: comp.protocols.kermit.misc
  85594. Subject: Re: Can MS-DOS kermit handle zmodem transfers?
  85595. Date: 6 Feb 1995 14:19:57 -0500
  85596. Organization: University of Maryland University College
  85597. Lines: 20
  85598. Sender: rockwell@nova.umuc.edu
  85599. Message-Id: <ROCKWELL.95Feb6141956@nova.umd.edu>
  85600. References: <3gkt57$euc@israel-info.datasrv.co.il> <1995Jan31.205326.40045@cc.usu.edu>
  85601.     <D3CrCn.A9u@encore.com> <1995Feb2.065133.40221@cc.usu.edu>
  85602.     <D3FxzI.KDM@encore.com>
  85603. Nntp-Posting-Host: nova.umuc.edu
  85604. In-Reply-To: tma@encore.com's message of Fri, 3 Feb 1995 20:23:42 GMT
  85605. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  85606.  
  85607. Thanh Ma:
  85608.    I would rather talk about lisencing here than through a 'formal'
  85609.    channel.  How much would it be if I ship a copy of kermit for every
  85610.    PC that I sell?  (a few guys in customer service deparment would
  85611.    like to have access to every PC that we ship. They need to do file
  85612.    transfer from time to time. )
  85613.  
  85614. Short answer: if you don't charge for kermit, you don't have to pay
  85615. for it.
  85616.  
  85617. Complicating factors: if you're in a position to pay them for it, it's
  85618. a good idea to buy what you want from Columbia University (this has to
  85619. do with the long-term viability of kermit).  And then there's
  85620. support...
  85621.  
  85622. -- 
  85623. Raul D. Miller
  85624. Account expiring on 13 Feb'95: <rockwell@nova.umuc.edu>/<rockwell@nova.umd.edu>
  85625. Temporary alternative:           <rdr@home.merit.edu>/<rdr@legislate.com>
  85626. Temporary alternative:     <raul@tad.micro.umn.edu>/<raul@gopher.legislate.com>
  85627.  
  85628. From news@columbia.edu Mon Feb  6 19:43:48 1995
  85629. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19372
  85630.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 6 Feb 1995 15:36:12 -0500
  85631. Received: by apakabar.cc.columbia.edu id AA24416
  85632.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 6 Feb 1995 15:36:09 -0500
  85633. Path: news.columbia.edu!panix!news.mathworks.com!zombie.ncsc.mil!news.duke.edu!eff!news.umbc.edu!haven.umd.edu!nova.umuc.edu!nova!rockwell
  85634. From: rockwell@nova.umuc.edu (Raul Deluth Miller)
  85635. Newsgroups: comp.protocols.kermit.misc
  85636. Subject: ^J...^M...|kermit
  85637. Date: 6 Feb 1995 14:43:48 -0500
  85638. Organization: University of Maryland University College
  85639. Lines: 17
  85640. Sender: rockwell@nova.umuc.edu
  85641. Distribution: world
  85642. Message-Id: <ROCKWELL.95Feb6144346@nova.umd.edu>
  85643. Nntp-Posting-Host: nova.umuc.edu
  85644. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  85645.  
  85646. I'm trying to figure out how to get C-Kermit in connection mode to
  85647. distinguish between a control J and a control M when feeding it from a
  85648. pipe.
  85649.  
  85650. What I want is for a control J to pass through unaltered, and a
  85651. control M to pass through unaltered -- this works fine if kermit is
  85652. talking directly to the controlling tty, but if I try and filter the
  85653. input to kermit things don't work so well.  I'm preceeding the call to
  85654. the filter and kermit with `stty -echo raw`.
  85655.  
  85656. Thanks.
  85657.  
  85658. -- 
  85659. Raul D. Miller
  85660. Account expiring on 13 Feb'95: <rockwell@nova.umuc.edu>/<rockwell@nova.umd.edu>
  85661. Temporary alternative:           <rdr@home.merit.edu>/<rdr@legislate.com>
  85662. Temporary alternative:     <raul@tad.micro.umn.edu>/<raul@gopher.legislate.com>
  85663.  
  85664. From news@columbia.edu Mon Feb  6 17:38:01 1995
  85665. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25658
  85666.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 6 Feb 1995 17:10:31 -0500
  85667. Received: by apakabar.cc.columbia.edu id AA04515
  85668.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 6 Feb 1995 17:10:29 -0500
  85669. Path: news.columbia.edu!sol.ctr.columbia.edu!usc!hookup!interlog.com!news1.fonorola.net!fonorola!Rezonet.net!news
  85670. From: Andrew Morrow <amorrow@dataradio.com>
  85671. Newsgroups: comp.protocols.kermit.misc
  85672. Subject: Re: Subscribe to Kermit News
  85673. Date: 6 Feb 1995 17:38:01 GMT
  85674. Organization: MixNet Organization
  85675. Lines: 26
  85676. Message-Id: <3h5mpp$gpf@ns.RezoNet.NET>
  85677. References: <3gu5pp$9fo@apakabar.cc.columbia.edu>
  85678. Nntp-Posting-Host: andrewm41.dataradio.com
  85679. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  85680.  
  85681. fdc@watsun.cc.columbia.edu (Frank da Cruz) wrote:
  85682.  
  85683. > Addresses in Canada should end with:
  85684. >   City XX  lnl nln
  85685. >   CANADA
  85686. > where XX is the 2-letter abbreviation for the province (e.g. ON for
  85687. > Ontario, BC for British Columbia, PQ for Quebec), and "lnl nln" is the
  85688. > six-digit (base 36 :-) postal code.
  85689.  
  85690. PQ (Province of Quebec) was changed to QC (QuebeC) many years ago, leaving
  85691. DC (District of Columbia) as the only place I can think of that has a
  85692. classification name as part of the abbreviation.
  85693.  
  85694. If you get a subscription with QC will your software choke, or will you
  85695. just pass it on to the Canadian postal service which fortunately can
  85696. handle both abbreviations?
  85697.  
  85698. Andrew.
  85699. _____________________________________________________________________
  85700.                Andrew Morrow                   Dataradio Inc.
  85701.   ((( o )))    Director, Software Development  Montreal, Quebec
  85702.    ___|_                                       voice:+1 514 737-0020
  85703.   |_____|      email: amorrow@dataradio.com    fax:  +1 514 737-7883
  85704.  
  85705.  
  85706. From news@columbia.edu Mon Feb  6 21:17:44 1995
  85707. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03535
  85708.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 6 Feb 1995 19:42:38 -0500
  85709. Received: by apakabar.cc.columbia.edu id AA19482
  85710.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 6 Feb 1995 19:42:37 -0500
  85711. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!news.intercon.com!udel!gatech!swrinde!howland.reston.ans.net!news.sprintlink.net!nuhou.aloha.net!newsham
  85712. From: newsham@hookomo.aloha.net (Timothy Newsham)
  85713. Newsgroups: comp.protocols.kermit.misc
  85714. Subject: C-kermit maximum wait time
  85715. Date: 6 Feb 1995 21:17:44 GMT
  85716. Organization: Hawaii OnLine - Honolulu, HI
  85717. Lines: 21
  85718. Message-Id: <3h63lo$svd@nuhou.aloha.net>
  85719. Nntp-Posting-Host: hookomo.aloha.net
  85720. X-Newsreader: TIN [version 1.2 PL2]
  85721. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  85722.  
  85723.  
  85724. Hi,
  85725.  
  85726.    This question is reguarding C-Kermit scripting not the kermit
  85727. protocol.  Is this the proper place?
  85728.  
  85729.    I have a script that waits for input on the serial line,
  85730. writes to a file, runs a program, then sends output.  The program
  85731. needs to wait for long periods of time sometimes.   What is
  85732. the maximum value I can use to wait with?  It seems that
  85733. the program breaks out of the wait after about a day or so
  85734. with the current values I'm using.  Since I quit if the wait
  85735. fails the script stops running.   (The reason I quit if the
  85736. wait fails is so that a ^C at the console will kill the script,
  85737. otherwise the only way I have of killing the script is sending
  85738. a shutdown command over the serial line).
  85739.  
  85740. Please cc: me a copy of any posted responses since I dont
  85741. follow this group.
  85742.  
  85743.                               Tim N.
  85744.  
  85745. From news@columbia.edu Mon Feb  6 21:09:25 1995
  85746. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09603
  85747.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 6 Feb 1995 22:01:40 -0500
  85748. Received: by apakabar.cc.columbia.edu id AA02189
  85749.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 6 Feb 1995 22:01:38 -0500
  85750. Path: news.columbia.edu!panix!news.mathworks.com!hookup!swrinde!howland.reston.ans.net!math.ohio-state.edu!darwin.sura.net!source.asset.com!source.asset.com!not-for-mail
  85751. From: weisek@source.asset.com (Kevin Weise)
  85752. Newsgroups: comp.protocols.kermit.misc
  85753. Subject: Re: Kermit is leaking
  85754. Date: 6 Feb 1995 16:09:25 -0500
  85755. Organization: Asset Source for Software Engineering Technology
  85756. Lines: 45
  85757. Message-Id: <3h6365$fsr@source.asset.com>
  85758. References: <jzeroD35p9C.CAH@netcom.com> <3ggd7b$7km@apakabar.cc.columbia.edu> <jzeroD39uKJ.L63@netcom.com>
  85759. Nntp-Posting-Host: 530tr0
  85760. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  85761.  
  85762. In article <jzeroD39uKJ.L63@netcom.com>, Jim Nakamura <jzero@netcom.com> wrote:
  85763. >jaltman@watsun.cc.columbia.edu (Jeffrey Altman) writes:
  85764. >
  85765. >| In article <jzeroD35p9C.CAH@netcom.com>, Jim Nakamura <jzero@netcom.com> wrote:
  85766. >| >
  85767. >| >Every so often (during a connection) random characters appear on the
  85768. >| >screen. Kermit (190) is leaking.  This problem does not show up
  85769. >| >on other comm programs.
  85770. >
  85771. >> Random characters at the current cursor position?
  85772. >    Yes.  About a character or two every half minute.
  85773. >> Random characters at some other position?
  85774. >    No.
  85775. >> Is it reproducible?  Do these random characters occur often enough that 
  85776. >> you could capture them in a session log which could be sent to me?
  85777. >    Seems to happen only while in my newsreader "nn".
  85778. >> Could you please define "leaking"?
  85779. >    "O{pPd^Dd" - these characters (one at a time appearing at
  85780. >    random intervals at the cursor screen).
  85781. >> Are you using hardware flow control?
  85782. >    Yes.
  85783. >-- 
  85784. >jzero@netcom.com
  85785.  
  85786. Sorry I didn't get in on the beginning of this thread, so I don't know
  85787. the execution environment.  However, what it sounds like to me is PON
  85788. over POTS (i.e., plain ol' noise over plain old telephone service).  Are
  85789. you using a modem and dialing over standard telephone lines?  If so, it
  85790. must be noise (esp. if the modem is more than a few years old), and
  85791. Kermit is *not* the problem.  More modern modems, esp. those with error-
  85792. correction, do a terrific job of cleaning that nasty noise up, but only 
  85793. if they are talking with an equivalent error-correcting modem.  If you 
  85794. are using a PC on an Ethernet link (with or without a terminal server), 
  85795. then I'm stumped as to what the problem could be.
  85796.  
  85797. ----------------------------------------------------------------
  85798. Kevin J. Weise            weisek@source.asset.com
  85799. COLSA Corporation        Voice - (205) 922-1512 ext. 2115
  85800. 6726 Odyssey Drive        FAX   - (205) 971-0002
  85801. Huntsville, AL  35806
  85802. {Standard Disclaimers about my opinions & my employer's opinions}
  85803. {... which are in conflict often enough}
  85804. ----------------------------------------------------------------
  85805. "Admire those who seek the truth;
  85806.   avoid those who find it."        Marcel Proust
  85807.  
  85808. From news@columbia.edu Mon Feb  6 07:49:31 1995
  85809. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11480
  85810.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 6 Feb 1995 22:37:12 -0500
  85811. Received: by apakabar.cc.columbia.edu id AA04951
  85812.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 6 Feb 1995 22:37:10 -0500
  85813. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!news.intercon.com!panix!news.mathworks.com!udel!gatech!newsxfer.itd.umich.edu!agate!dog.ee.lbl.gov!news.cs.utah.edu!cc.usu.edu!jrd
  85814. From: jrd@cc.usu.edu (Joe Doupnik)
  85815. Newsgroups: comp.protocols.kermit.misc
  85816. Subject: Re: Kermit TSR for background xfers?
  85817. Message-Id: <1995Feb6.134931.40786@cc.usu.edu>
  85818. Date: 6 Feb 95 13:49:31 MDT
  85819. References: <3go00i$bie@crl12.crl.com> <1995Feb1.100246.40094@cc.usu.edu> <3h5mj8$kar@Mercury.mcs.com>
  85820. Organization: Utah State University
  85821. Lines: 58
  85822. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  85823.  
  85824. In article <3h5mj8$kar@Mercury.mcs.com>, les@MCS.COM (Leslie Mikesell) writes:
  85825. > In article <1995Feb1.100246.40094@cc.usu.edu>,
  85826. > Joe Doupnik <jrd@cc.usu.edu> wrote:
  85827. >>> If so, the kermit would save me a BUNCH.  I need to provide a remote unattended
  85828. >>> file xfer solution to 40,000 DOS boxes and realy need a good and cheap solution.
  85829. >>-------------------
  85830. >>    Let's look at this case. Basically you want MSK to become a TSR Kermit
  85831. >>file server. Of course, it's not designed that way now; file server yes,
  85832. >>TSR no. Doing file i/o as a TSR has a substantial collection of technical
  85833. >>problems because DOS itself is not reentrant and provides no multitasking
  85834. >>capabilities. Experiences with DOS' PRINT TSR should be enough to persuade
  85835. >>folks that these background transfer guys can be bad news. In addition,
  85836. >>a program even the size of Kermit-Lite use substantial amounts of 
  85837. >>conventional memory, making multiple tasking awkward for the user.
  85838. > I'm running a DOS program called ACCESS PLUS that is intended to be used
  85839. > with the attmail service that uses a 60K TSR to provide scheduled calls
  85840. > in the background.  It is running on many machines without causing too
  85841. > much trouble from being a TSR, so it is at least possible.  It appears
  85842. > to run an xmodem-like protocol modified so that the total packet size
  85843. > is 256 bytes, and has a minimal scripting language for dialing and
  85844. > login. However, there are things I don't like about the rest of
  85845. > this package.  I'd like to replace it with something that does MIME
  85846. > attachments without losing the ability to do the background communication.
  85847.  
  85848.     Appears to be just one piece of a larger system, and a piece
  85849. which does not attract much attention by itself. 
  85850.  
  85851. >>    There are systems with time sharing capabilities designed into them.
  85852. >>The best known are OS/2 and Unix, with OS/2 providing DOS services in a
  85853. >>familiar and managable form.
  85854. > All of which require at least a 386 and a bunch of memory.  A 60K TSR
  85855. > can find a cheaper home.
  85856.  
  85857.     So, that's the norm these days, what with Windows and such.
  85858.  
  85859. >>    We could make a Kermit-Lite which went TSR and tried to cope with
  85860. >>the horrid problems of doing DOS i/o from interrupt level. It's not easy
  85861. >>so this would have to become a fully funded project rather than a to-do
  85862. >>item on our wish list.
  85863. > I don't have enough sites to justify this myself, but I think there is
  85864. > a market for a generic solution to this problem, especially in the
  85865.  
  85866.     I disagree here. The market is for the big scale product, not
  85867. a tailor-made component. There is no interest at this end in becoming
  85868. a parts supplier for free.
  85869.         Joe D.
  85870.  
  85871. > form of a scriptable kermit TSR since it would allow just about any
  85872. > host on the other end.  Especially if it could easily be set up to
  85873. > transport messages for something like Pegasus, using only a kermit
  85874. > server and a native mail system at the host side.
  85875. > Les Mikesell
  85876. >   les@mcs.com
  85877.  
  85878. From news@columbia.edu Tue Feb  7 02:54:37 1995
  85879. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14435
  85880.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 6 Feb 1995 23:40:14 -0500
  85881. Received: by apakabar.cc.columbia.edu id AA09863
  85882.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 6 Feb 1995 23:40:12 -0500
  85883. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!swiss.ans.net!gatech!swrinde!news.uh.edu!yxw11570
  85884. From: yxw11570@Bayou.UH.EDU (Y. Wang)
  85885. Newsgroups: comp.protocols.kermit.misc
  85886. Subject: Modem init. in OS/2 C-Kermit
  85887. Date: 7 Feb 1995 02:54:37 GMT
  85888. Organization: University of Houston
  85889. Lines: 11
  85890. Message-Id: <3h6ndd$8em@masala.cc.uh.edu>
  85891. Nntp-Posting-Host: bayou.uh.edu
  85892. X-Newsreader: TIN [version 1.2 PL2]
  85893. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  85894.  
  85895. Hi,
  85896.  
  85897. I have problem with initializing the modem in OS/2 C-Kermit 5A. After I use
  85898. the command: set dial init ATXXXXX, where XXXXX denotes a string of legal AT 
  85899. command, I issued: dial xxxxxxx, where xxxxxxx is the phone number. I got 
  85900. the following message: ATXXXXX. Modem does not response, retry... (or something
  85901. like that) after C-Kermit tried three time, it hang up. What's wrong? I can
  85902. use the same AT command in other communication program, why I can't use it here?
  85903. How can I solve this problem? Please help. Thanks for any information.
  85904.  
  85905. Ye
  85906.  
  85907. From news@columbia.edu Tue Feb  7 06:37:12 1995
  85908. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24338
  85909.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 7 Feb 1995 03:03:47 -0500
  85910. Received: by apakabar.cc.columbia.edu id AA21649
  85911.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 7 Feb 1995 03:03:46 -0500
  85912. Path: news.columbia.edu!panix!news.mathworks.com!newshost.marcam.com!charnel.ecst.csuchico.edu!csusac!csus.edu!sacsa3.mp.usbr.gov!fwssun1.irm.r6.fws.gov!ash.lab.r1.fws.gov!ash.lab.r1.fws.gov!not-for-mail
  85913. From: cox@ash.lab.r1.fws.gov
  85914. Newsgroups: comp.protocols.kermit.misc
  85915. Subject: kermit for Nicolet Spectrophotometers
  85916. Date: 7 Feb 1995 06:37:12 -0000
  85917. Organization: USFWS Forensic Laboratory, Ashland, OR USA
  85918. Lines: 4
  85919. Distribution: comp
  85920. Message-Id: <3h74eo$i7h@ash.lab.r1.fws.gov>
  85921. Nntp-Posting-Host: ash.lab.r1.fws.gov
  85922. Summary: Data transfer from Nicolet IR
  85923. Keywords: IR Nicolet
  85924. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  85925.  
  85926.  I am trying to transfer data from an old Nicolet FTIR to a PC in order to obtain the data 
  85927. n the data in ASCII. I need a version of Kermit which will talk to the Nicolet operating system 
  85928. perating system (a 20 word bit) . Does anyone have such a version available
  85929. Bob Cox   
  85930.  
  85931. From news@columbia.edu Sat Feb  4 03:29:20 1995
  85932. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25192
  85933.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 7 Feb 1995 03:26:19 -0500
  85934. Received: by apakabar.cc.columbia.edu id AA22458
  85935.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 7 Feb 1995 03:26:17 -0500
  85936. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!swiss.ans.net!howland.reston.ans.net!news.sprintlink.net!news.primenet.com!usenet
  85937. From: jbishop@primenet.com (Jeff Bishop)
  85938. Newsgroups: comp.protocols.kermit.misc
  85939. Subject: interesting from OMEN
  85940. Date: Fri, 03 Feb 1995 20:29:20 -0700
  85941. Organization: primenet, Tucson, AZ
  85942. Lines: 9
  85943. Message-Id: <GIlCluqcZV$U078yn@primenet.com>
  85944. Reply-To: jbishop@primenet.com
  85945. Nntp-Posting-Host: usr2.primenet.com
  85946. X-Newsreader: Yarn 0.78 with YES 0.16.B0129
  85947. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  85948.  
  85949. Well, I found a file called knewstru.zip on a BBS that discussed the kermit
  85950. news article that claims faster transfers than zmodem. It surely attacks this
  85951. claim and find it based with pretty interesting facts. If any of you are
  85952. interested in reading this article (complete with gif pictures) read on. You
  85953. can ftp to ftp.primenet.com and log in as anonymous. Once here, cd to
  85954. /users/j/jbishop and get the file knewstru.zip (in binary mode).
  85955.  
  85956. Jeff
  85957.  
  85958.  
  85959. From news@columbia.edu Tue Feb  7 01:10:38 1995
  85960. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25582
  85961.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 7 Feb 1995 03:40:06 -0500
  85962. Received: by apakabar.cc.columbia.edu id AA22790
  85963.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 7 Feb 1995 03:40:05 -0500
  85964. Path: news.columbia.edu!panix!tinman.dev.prodigy.com!prodigy.com!uunet!newsfeed.pitt.edu!godot.cc.duq.edu!news.duke.edu!solaris.cc.vt.edu!usenet
  85965. From: dhuguet@vt.edu (David Huguet)
  85966. Newsgroups: comp.protocols.kermit.misc
  85967. Subject: kermit script to load password?
  85968. Date: 7 Feb 1995 01:10:38 GMT
  85969. Organization: Retupmoc Nuf'
  85970. Lines: 34
  85971. Message-Id: <3h6hae$b1t@solaris.cc.vt.edu>
  85972. Nntp-Posting-Host: dhuguet.async.vt.edu
  85973. X-Newsreader: WinVN 0.92.1
  85974. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  85975.  
  85976. I have this script that runs when I log on that will look for a file called "mypass.ker"
  85977. which I suppose is supposed to contain my password.  I tried creating it 
  85978. with 
  85979. input "password", where "password" is my personal one, but it doesn't connect
  85980. right.  It looks like it reads the password correctly, but then when it submits
  85981. it to the password authentication server, I always get error messages.  I am 
  85982. thinking that perhaps it is typing it in all caps or something that would make
  85983. it unreadable to the server.  I would appreciate it if anyone out there who knows
  85984. how to do kermit scripts at all could look at this script and tell me what I need
  85985. to put in my "mypass.ker" script for it to work.  Thanks a lot.
  85986.  
  85987. here is the script that calls "mypass.ker":
  85988. :GETPSWD
  85989.     if INPATH mypass.ker goto PASSFILE
  85990.     echo
  85991.     echo {Please enter your password now (the one for Personal ID "\m(NWAPersonalID)"}
  85992.     askq Passwd {   and IP Address "\m(NWTIPAddr)"), or "quit" to give up: \7}
  85993.     if EQUAL x x\m(Passwd) goto GETPSWD
  85994.     if NOT EQUAL xquit x\m(Passwd) goto END
  85995.     ErrMsg {User entered "quit" in response to password prompt.}
  85996.     Open Write UserQuit.FLG
  85997.     Write File "User Canceled"
  85998.     Close Write
  85999.  
  86000.     set errorlevel 6
  86001.     goto END
  86002.  
  86003. :PASSFILE
  86004.     ProgMsg {Loading password with MYPASS.KER...}
  86005.     take mypass.ker
  86006.  
  86007. END
  86008.  
  86009. thank you in advance.
  86010.  
  86011. From news@columbia.edu Tue Feb  7 01:55:10 1995
  86012. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26867
  86013.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 7 Feb 1995 04:11:56 -0500
  86014. Received: by apakabar.cc.columbia.edu id AA23582
  86015.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 7 Feb 1995 04:11:54 -0500
  86016. Path: news.columbia.edu!panix!bloom-beacon.mit.edu!gatech!swrinde!cs.utexas.edu!geraldo.cc.utexas.edu!lexus.gslis.utexas.edu!nksung
  86017. From: nksung@fiat.gslis.utexas.edu (Nackil Sung)
  86018. Newsgroups: comp.protocols.kermit.misc
  86019. Subject: tn3270 and Kermit
  86020. Date: 7 Feb 1995 01:55:10 GMT
  86021. Organization: The University of Texas at Austin, Austin, Texas
  86022. Lines: 9
  86023. Message-Id: <3h6jtu$bjk@geraldo.cc.utexas.edu>
  86024. Nntp-Posting-Host: lexus.gslis.utexas.edu
  86025. X-Newsreader: TIN [version 1.2 PL2]
  86026. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  86027.  
  86028. I use PC kermit instead of telnet to access Interent because of the speed 
  86029. and the script.  One problem, however, I run into is the difficulty of 
  86030. using our online catalog residing in IBM mainframe.  I guess Kermit dose 
  86031. not support tn3270.  Is this true?  If it is, anybody who have made it work?
  86032. Or any plan to support tn3270 in the future?   
  86033. FYI, I use 'tn3270 uicmvsa.aiss.uiuc.edu' to access Illinet online. I 
  86034. will extremely appriciate it if you find a way to use Kermit instead of 
  86035. tn3270.  Thanx
  86036. Nackil
  86037.  
  86038. From news@columbia.edu Tue Feb  7 05:58:54 1995
  86039. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27527
  86040.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 7 Feb 1995 04:26:44 -0500
  86041. Received: by apakabar.cc.columbia.edu id AA24073
  86042.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 7 Feb 1995 04:26:43 -0500
  86043. Path: news.columbia.edu!sol.ctr.columbia.edu!news.ess.harris.com!jabba.ess.harris.com!darwin.sura.net!martha.utk.edu!martha.utk.edu!not-for-mail
  86044. From: rkutai@martha.utcc.utk.edu (Raymond Steven Kutai)
  86045. Newsgroups: comp.protocols.kermit.misc
  86046. Subject: Q: C-Kermit 5A(189)
  86047. Date: 7 Feb 1995 00:58:54 -0500
  86048. Organization: University of Tennessee, Knoxville
  86049. Lines: 33
  86050. Message-Id: <3h726u$of0@martha.utk.edu>
  86051. Nntp-Posting-Host: martha.utcc.utk.edu
  86052. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  86053.  
  86054. When I run kermit, a warning showed up:
  86055.  $kermit
  86056.  Warning: Last line of TAKE file lacks Terminator.
  86057.  C-Kermit 5A(189), 30 June 93 Solaris 2.x
  86058.  ...
  86059. I recently noticed the Warning line when I added
  86060. .kermrc to my home dir.  My .kermrc looks like this:
  86061.  
  86062. set send pac 9024
  86063. set blo 3
  86064. set win 31
  86065.  
  86066. I wrote the file using emacs.  So far I haven't experienced
  86067. anything bad yet but just to be on the safe side, I wonder if
  86068. the warning has anything to do with my adding .kermrc to
  86069. my home dir.  Is there anyway to correct the problem and still
  86070. keep my own .kermrc?
  86071.  
  86072. Thank you much.
  86073.  
  86074. ---
  86075. rsk
  86076. 02.06.95
  86077.  
  86078.  
  86079.  
  86080.  
  86081.  
  86082. -- 
  86083. +-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-+
  86084.                          Raymond Steven Kutai
  86085.                        rkutai@utkux.utcc.utk.edu
  86086. +-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-+
  86087.  
  86088. From news@columbia.edu Tue Feb  7 05:59:23 1995
  86089. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11651
  86090.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 7 Feb 1995 06:44:43 -0500
  86091. Received: by apakabar.cc.columbia.edu id AA09605
  86092.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 7 Feb 1995 06:44:42 -0500
  86093. Path: news.columbia.edu!panix!news.mathworks.com!uunet!heifetz.msen.com!jamaican
  86094. From: jamaican@garnet.msen.com (Dwight Hugget)
  86095. Newsgroups: comp.protocols.kermit.misc
  86096. Subject: redial macro for os/2C-Kermit
  86097. Date: 7 Feb 1995 05:59:23 GMT
  86098. Organization: Msen, Inc. -- Ann Arbor, MI (account info: +1 313 998-4562)
  86099. Lines: 11
  86100. Message-Id: <3h727s$ql4$1@heifetz.msen.com>
  86101. Nntp-Posting-Host: garnet.msen.com
  86102. X-Newsreader: TIN [version 1.2 PL2]
  86103. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  86104.  
  86105. is there a redial macro to get more than 1 dial attempt for os/2 C-Kermit?
  86106. anyway to tweak what's there now to create some type of redial macro.
  86107.  
  86108. thanks
  86109. --
  86110. =======================================================================
  86111. =             "Artist seeks Boss with vision impairment."             =
  86112. =  0/       __o                                              ,,,      = 
  86113. = <|      _`\< _                                            (o o)     =
  86114. = / >  --(_)/ (_)------- jamaican@garnet.msen.com -------ooO-(_)-Ooo- = 
  86115. =======================================================================
  86116.  
  86117. From news@columbia.edu Tue Feb  7 13:39:17 1995
  86118. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07516
  86119.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 7 Feb 1995 08:39:22 -0500
  86120. Received: by apakabar.cc.columbia.edu id AA13657
  86121.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 7 Feb 1995 08:39:20 -0500
  86122. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  86123. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  86124. Newsgroups: comp.protocols.kermit.misc
  86125. Subject: Re: tn3270 and Kermit
  86126. Date: 7 Feb 1995 13:39:17 GMT
  86127. Organization: Columbia University
  86128. Lines: 21
  86129. Message-Id: <3h7t65$dan@apakabar.cc.columbia.edu>
  86130. References: <3h6jtu$bjk@geraldo.cc.utexas.edu>
  86131. Nntp-Posting-Host: watsun.cc.columbia.edu
  86132. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  86133.  
  86134. In article <3h6jtu$bjk@geraldo.cc.utexas.edu>,
  86135. Nackil Sung <nksung@fiat.gslis.utexas.edu> wrote:
  86136. >I use PC kermit instead of telnet to access Interent because of the speed 
  86137. >and the script.  One problem, however, I run into is the difficulty of 
  86138. >using our online catalog residing in IBM mainframe.  I guess Kermit dose 
  86139. >not support tn3270.  Is this true?
  86140. >
  86141. True.
  86142.  
  86143. >If it is, anybody who have made it work?
  86144. >Or any plan to support tn3270 in the future?   
  86145. >
  86146. Yes.
  86147.  
  86148. In the meantime, you can use a separate tn3270 program on your PC,
  86149. or you can access the mainframe through a 3270 emulator -- a special-
  86150. purpose box such as an IBM 7171, a terminal server that has 3270 emulation
  86151. built in, or by telnet'ing from Kermit to (say) a UNIX system and using
  86152. tn3270 from there to the mainframe.
  86153.  
  86154. - Frank
  86155.  
  86156. From news@columbia.edu Tue Feb  7 13:43:54 1995
  86157. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07709
  86158.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 7 Feb 1995 08:43:56 -0500
  86159. Received: by apakabar.cc.columbia.edu id AA13861
  86160.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 7 Feb 1995 08:43:56 -0500
  86161. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  86162. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  86163. Newsgroups: comp.protocols.kermit.misc
  86164. Subject: Re: Modem init. in OS/2 C-Kermit
  86165. Date: 7 Feb 1995 13:43:54 GMT
  86166. Organization: Columbia University
  86167. Lines: 23
  86168. Message-Id: <3h7teq$dh3@apakabar.cc.columbia.edu>
  86169. References: <3h6ndd$8em@masala.cc.uh.edu>
  86170. Nntp-Posting-Host: watsun.cc.columbia.edu
  86171. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  86172.  
  86173. In article <3h6ndd$8em@masala.cc.uh.edu>,
  86174. Y. Wang <yxw11570@Bayou.UH.EDU> wrote:
  86175. >I have problem with initializing the modem in OS/2 C-Kermit 5A. After I
  86176. >use the command: set dial init ATXXXXX, where XXXXX denotes a string of
  86177. >legal AT command, I issued: dial xxxxxxx, where xxxxxxx is the phone
  86178. >number. I got the following message: ATXXXXX. Modem does not response,
  86179. >retry... (or something like that) after C-Kermit tried three time, it
  86180. >hang up. What's wrong?
  86181. >
  86182. The default port is COM1.  If your modem is on a different port, then
  86183. you'll have to tell Kermit to "set port 2" (or whatever).  You also have
  86184. to tell Kermit to use a speed that the modem can understand.  For example,
  86185. if I have my speed set to 57600, my Hayes 2400 will not respond to AT
  86186. commands.
  86187.  
  86188. Please read the section on troubleshooting DIAL commands in the manual,
  86189. "Using C-Kermit".  There are a surprising number of things that can go
  86190. wrong.
  86191.  
  86192. If that doesn't help, send a more detailed description of the problem
  86193. (what kind of modem you have, what XXXXX is, etc) to kermit@columbia.edu.
  86194.  
  86195. - Frank
  86196.  
  86197. From news@columbia.edu Tue Feb  7 13:48:57 1995
  86198. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07930
  86199.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 7 Feb 1995 08:49:03 -0500
  86200. Received: by apakabar.cc.columbia.edu id AA14104
  86201.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 7 Feb 1995 08:49:00 -0500
  86202. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  86203. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  86204. Newsgroups: comp.protocols.kermit.misc
  86205. Subject: Re: Q: C-Kermit 5A(189)
  86206. Date: 7 Feb 1995 13:48:57 GMT
  86207. Organization: Columbia University
  86208. Lines: 40
  86209. Message-Id: <3h7to9$dol@apakabar.cc.columbia.edu>
  86210. References: <3h726u$of0@martha.utk.edu>
  86211. Nntp-Posting-Host: watsun.cc.columbia.edu
  86212. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  86213.  
  86214. In article <3h726u$of0@martha.utk.edu>,
  86215. Raymond Steven Kutai <rkutai@martha.utcc.utk.edu> wrote:
  86216. >When I run kermit, a warning showed up:
  86217. > $kermit
  86218. > Warning: Last line of TAKE file lacks Terminator.
  86219. > C-Kermit 5A(189), 30 June 93 Solaris 2.x
  86220. > ...
  86221. >I recently noticed the Warning line when I added
  86222. >.kermrc to my home dir.  My .kermrc looks like this:
  86223. >
  86224. >set send pac 9024
  86225. >set blo 3
  86226. >set win 31
  86227. >
  86228. >I wrote the file using emacs.  So far I haven't experienced
  86229. >anything bad yet but just to be on the safe side, I wonder if
  86230. >the warning has anything to do with my adding .kermrc to
  86231. >my home dir.  Is there anyway to correct the problem and still
  86232. >keep my own .kermrc?
  86233. >
  86234. Each line in a UNIX text file, including the final line, is supposed
  86235. to be terminated by a linefeed character.  The message means that
  86236. the final line in your .kermrc file does not end with a linefeed.
  86237. Kermit still reads and executes the final line, however, at least if
  86238. it is a valid Kermit command.  Not all other programs will necessarily 
  86239. be so forgiving, so you should get the file back into EMACS and put
  86240. a linefeed at the end (ESC >, then press Enter or return, then save
  86241. the file).
  86242.  
  86243. - Frank
  86244.  
  86245. x
  86246. x
  86247. x
  86248. x
  86249. x
  86250. x
  86251. x
  86252. x
  86253. x
  86254.  
  86255. From news@columbia.edu Tue Feb  7 13:51:13 1995
  86256. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08040
  86257.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 7 Feb 1995 08:51:17 -0500
  86258. Received: by apakabar.cc.columbia.edu id AA14233
  86259.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 7 Feb 1995 08:51:15 -0500
  86260. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  86261. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  86262. Newsgroups: comp.protocols.kermit.misc
  86263. Subject: Re: redial macro for os/2C-Kermit
  86264. Date: 7 Feb 1995 13:51:13 GMT
  86265. Organization: Columbia University
  86266. Lines: 14
  86267. Message-Id: <3h7tsh$dsm@apakabar.cc.columbia.edu>
  86268. References: <3h727s$ql4$1@heifetz.msen.com>
  86269. Nntp-Posting-Host: watsun.cc.columbia.edu
  86270. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  86271.  
  86272. In article <3h727s$ql4$1@heifetz.msen.com>,
  86273. Dwight Hugget <jamaican@garnet.msen.com> wrote:
  86274. >is there a redial macro to get more than 1 dial attempt for os/2 C-Kermit?
  86275. >anyway to tweak what's there now to create some type of redial macro.
  86276. >
  86277. Some macros are left as "exercises for the reader".
  86278.  
  86279. Try this:
  86280.  
  86281.   define myredial redial, while fail { redial, sleep 30 }
  86282.  
  86283. Embellish as desired.
  86284.  
  86285. - Frank
  86286.  
  86287. From news@columbia.edu Tue Feb  7 13:56:05 1995
  86288. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08595
  86289.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 7 Feb 1995 08:56:11 -0500
  86290. Received: by apakabar.cc.columbia.edu id AA14529
  86291.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 7 Feb 1995 08:56:09 -0500
  86292. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  86293. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  86294. Newsgroups: comp.protocols.kermit.misc
  86295. Subject: Re: kermit for Nicolet Spectrophotometers
  86296. Date: 7 Feb 1995 13:56:05 GMT
  86297. Organization: Columbia University
  86298. Lines: 52
  86299. Distribution: comp
  86300. Message-Id: <3h7u5l$e5p@apakabar.cc.columbia.edu>
  86301. References: <3h74eo$i7h@ash.lab.r1.fws.gov>
  86302. Nntp-Posting-Host: watsun.cc.columbia.edu
  86303. Keywords: IR Nicolet
  86304. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  86305.  
  86306. In article <3h74eo$i7h@ash.lab.r1.fws.gov>,  <cox@ash.lab.r1.fws.gov> wrote:
  86307. > I am trying to transfer data from an old Nicolet FTIR to a PC in order to
  86308. > obtain the data in ASCII. I need a version of Kermit which will talk to the
  86309. > Nicolet operating system (a 20 word bit) . Does anyone have such a version
  86310. > available?
  86311. >
  86312. From the Kermit Digest, V20 #1, 25 Aug 94.  I don't know if FTIR is the same
  86313. as any of the computers listed below, but if it is, you've got your Kermit
  86314. program:
  86315.  
  86316. Date: 2 July 1994
  86317. From: Peter McClintock <pya007@lancaster.ac.uk>
  86318. Subject: Nicolet NIC-80 Kermit
  86319.  
  86320. I have written a Kermit for Nicolet data-processors in the NIC-80 series
  86321. (LAB-80, NMR-80, MED-80, BNC-12).  Although it provides a relatively simple
  86322. implementation of the protocol, it will open up a new dimension to many
  86323. enthusiasts for these ancient machines.  The main usage in practice is
  86324. likely to be in transferring averaged spectra or other data to a mainframe,
  86325. workstation or PC for further analysis or for plotting with modern plotting
  86326. packages.  But the Kermit will, of course, also enable Nicolet users to
  86327. exchange programmes and data with each other on a world-wide basis.
  86328.  
  86329. To get started there is a choice of two options -
  86330.  
  86331.   (a) Obtain the sourcecode from Kermit Distribution, type it in, assemble
  86332.   it, and generate and de-bug the executable programme according to the
  86333.   instructions, all on the Nicolet.
  86334.  
  86335. (The source code is in kermit.columbia.edu:kermit/c/nic*.*.)
  86336.  
  86337.   (b) Ask me for a copy of the binary.  This can be supplied on paper tape;
  86338.   alternatively, send me a formatted 8-inch floppy, or front-loading 
  86339.   Diablo-30 cartridge, onto which the binary can be stored.
  86340.  
  86341. For option (b), there is a $100 handling charge (waived if the applicant
  86342. can offer new NIC-80 software of comparable utility in return).  Please make
  86343. cheques payable to "University of Lancaster".
  86344.  
  86345. Once the initial version of the Kermit is installed and running on a given
  86346. system, future updates can obviously be received by ftp or e-mail, using the
  86347. current Kermit to download them from the receiving machine to the NIC-80 on
  86348. which they are to be used.
  86349.  
  86350. Mailing address for disks:
  86351.   P V E McClintock,
  86352.   School of Physics and Materials,
  86353.   University of Lancaster,
  86354.   LANCASTER  LA1 4YB,  UK.
  86355.  
  86356.  
  86357.  
  86358.  
  86359. From news@columbia.edu Tue Feb  7 13:56:15 1995
  86360. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11534
  86361.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 7 Feb 1995 09:43:04 -0500
  86362. Received: by apakabar.cc.columbia.edu id AA17993
  86363.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 7 Feb 1995 09:43:03 -0500
  86364. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!howland.reston.ans.net!torn!news.ccs.queensu.ca!news.ccs.queensu.ca!not-for-mail
  86365. From: mike@knot.QueensU.CA (Mike Smith)
  86366. Newsgroups: comp.protocols.kermit.misc
  86367. Subject: Re: interesting from OMEN
  86368. Date: 7 Feb 1995 08:56:15 -0500
  86369. Organization: Queen's University, Kingston
  86370. Lines: 17
  86371. Message-Id: <3h7u5v$9d@ccs-sparc2.queensu.ca>
  86372. References: <GIlCluqcZV$U078yn@primenet.com>
  86373. Nntp-Posting-Host: ccs-sparc2.ccs
  86374. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  86375.  
  86376.  
  86377. Chuck Forsberg at Omen had some legitimate beefs, I think, but after
  86378. following the debate ad nauseum last year in comp.dcom.modems, I found
  86379. myself having less and less sympathy for his position.  Mr. Forsberg
  86380. ranted for months that there was a conspiracy at Columbia to besmirch
  86381. the good name of ZMODEM.  Eventually I read the Kermit News article and
  86382. didn't see it that way.  In the end, I concluded that the best ZMODEM
  86383. implementation is slightly faster than the best KERMIT implementation,
  86384. at least some of the time.  For me, the speed difference was insignificant
  86385. compared to the price difference and the support difference.  Granted, the
  86386. latter was speculation on my part.  I read Frank's books and compared his
  86387. c.d.m postings to Chuck's and decided it would be no contest.
  86388. -- 
  86389.  
  86390.  Mike Smith                                  mike@ccs.queensu.ca
  86391.  Queen's University                          Michael.D.Smith@QueensU.CA
  86392.  Computing and Communications Services       (613) 545-2024
  86393.  
  86394. From news@columbia.edu Tue Feb  7 17:20:03 1995
  86395. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22008
  86396.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 7 Feb 1995 12:20:24 -0500
  86397. Received: by apakabar.cc.columbia.edu id AA03810
  86398.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 7 Feb 1995 12:20:19 -0500
  86399. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  86400. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  86401. Newsgroups: comp.protocols.kermit.misc
  86402. Subject: Re: C-kermit maximum wait time
  86403. Date: 7 Feb 1995 17:20:03 GMT
  86404. Organization: Columbia University
  86405. Lines: 27
  86406. Message-Id: <3h8a43$3m5@apakabar.cc.columbia.edu>
  86407. References: <3h63lo$svd@nuhou.aloha.net>
  86408. Nntp-Posting-Host: watsun.cc.columbia.edu
  86409. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  86410.  
  86411. In article <3h63lo$svd@nuhou.aloha.net>,
  86412. Timothy Newsham <newsham@hookomo.aloha.net> wrote:
  86413. >I have a script that waits for input on the serial line,
  86414. >writes to a file, runs a program, then sends output.  The program
  86415. >needs to wait for long periods of time sometimes.   What is
  86416. >the maximum value I can use to wait with?  It seems that
  86417. >the program breaks out of the wait after about a day or so
  86418. >with the current values I'm using.
  86419. >
  86420. It depends on "sizeof int" in the C compiler that generated your
  86421. version of C-Kermit.  The INPUT timeout is a signed integer, so
  86422. the maximum value would be two raised to the <number-of-bits-in-
  86423. an-integer>'th power, minus 1.  So for 16-bit integers, it would
  86424. be 65535 seconds, which is indeed only about 76% of a day.  For
  86425. 32-bit integers, of course, the maximum timeout would be way bigger.
  86426.  
  86427. >Since I quit if the wait
  86428. >fails the script stops running.   (The reason I quit if the
  86429. >wait fails is so that a ^C at the console will kill the script,
  86430. >otherwise the only way I have of killing the script is sending
  86431. >a shutdown command over the serial line).
  86432. >
  86433. There's always a way.  For example, you could simply make a loop
  86434. that executes infinitely, and waits for an hour, or 12 hours, or
  86435. whatever, until the input arrives.
  86436.  
  86437. - Frank
  86438.  
  86439. From news@columbia.edu Tue Feb  7 16:10:09 1995
  86440. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26739
  86441.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 7 Feb 1995 13:12:09 -0500
  86442. Received: by apakabar.cc.columbia.edu id AA09268
  86443.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 7 Feb 1995 13:12:07 -0500
  86444. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!usc!howland.reston.ans.net!news.cac.psu.edu!news.pop.psu.edu!hudson.lm.com!godot.cc.duq.edu!ddsw1!not-for-mail
  86445. From: les@MCS.COM (Leslie Mikesell)
  86446. Newsgroups: comp.protocols.kermit.misc
  86447. Subject: Re: Kermit TSR for background xfers?
  86448. Date: 7 Feb 1995 10:10:09 -0600
  86449. Organization: /usr/lib/news/organi[sz]ation
  86450. Lines: 57
  86451. Message-Id: <3h8611$eif@Mars.mcs.com>
  86452. References: <3go00i$bie@crl12.crl.com> <1995Feb1.100246.40094@cc.usu.edu> <3h5mj8$kar@Mercury.mcs.com> <1995Feb6.134931.40786@cc.usu.edu>
  86453. Nntp-Posting-Host: mars.mcs.com
  86454. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  86455.  
  86456. In article <1995Feb6.134931.40786@cc.usu.edu>,
  86457. Joe Doupnik <jrd@cc.usu.edu> wrote:
  86458.  
  86459. >> I'm running a DOS program called ACCESS PLUS that is intended to be used
  86460. >> with the attmail service that uses a 60K TSR to provide scheduled calls
  86461. >> in the background.  It is running on many machines without causing too
  86462. >> much trouble from being a TSR, so it is at least possible.  It appears
  86463. >> to run an xmodem-like protocol modified so that the total packet size
  86464. >> is 256 bytes, and has a minimal scripting language for dialing and
  86465. >> login. However, there are things I don't like about the rest of
  86466. >> this package.  I'd like to replace it with something that does MIME
  86467. >> attachments without losing the ability to do the background communication.
  86468. >
  86469. >    Appears to be just one piece of a larger system, and a piece
  86470. >which does not attract much attention by itself. 
  86471.  
  86472. Yes, but it is the piece that, at the moment, can't be replaced.  Worse,
  86473. it ties us to a peculiar piece of software at the unix host side since
  86474. we are running our own hub instead of using the attmail service.  This
  86475. in turn ties us to a particular version of unix.
  86476.  
  86477. >>>    There are systems with time sharing capabilities designed into them.
  86478. >>>The best known are OS/2 and Unix, with OS/2 providing DOS services in a
  86479. >>>familiar and managable form.
  86480. >> 
  86481. >> All of which require at least a 386 and a bunch of memory.  A 60K TSR
  86482. >> can find a cheaper home.
  86483. >
  86484. >    So, that's the norm these days, what with Windows and such.
  86485.  
  86486. Yes, that's what people buy now, but they don't discard the older machines,
  86487. they just get passed down to someone else who still needs email access.
  86488.  
  86489. >> I don't have enough sites to justify this myself, but I think there is
  86490. >> a market for a generic solution to this problem, especially in the
  86491. >
  86492. >    I disagree here. The market is for the big scale product, not
  86493. >a tailor-made component. There is no interest at this end in becoming
  86494. >a parts supplier for free.
  86495.  
  86496. I don't mean to imply that you have any obligation to provide such
  86497. a thing for free, but I still think there is a need for it and it
  86498. fits into the kermit model of making everything talk to everything
  86499. else on the cheap.  The other components needed to put a workable
  86500. system together are available in various free or low-cost shareware
  86501. forms that could be glued together to build a custom system.  For
  86502. example you could use uqwk on a unix host and any of several qwk/soup
  86503. readers, or set up something similar as a custom gateway for Pegasus.
  86504. The critical points to making it usable are that the end points
  86505. appear as users on the host machine rather than remote machines,
  86506. and that the communications must take care of itself with scheduled
  86507. calls in the background as an option.
  86508.  
  86509. But maybe it's too late for simple serial communications.
  86510.  
  86511. Les Mikesell
  86512.   les@mcs.com
  86513.  
  86514. From news@columbia.edu Tue Feb  7 04:05:44 1995
  86515. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26884
  86516.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 7 Feb 1995 13:14:13 -0500
  86517. Received: by apakabar.cc.columbia.edu id AA09455
  86518.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 7 Feb 1995 13:14:11 -0500
  86519. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  86520. From: jrd@cc.usu.edu (Joe Doupnik)
  86521. Newsgroups: comp.protocols.kermit.misc
  86522. Subject: Re: kermit script to load password?
  86523. Message-Id: <1995Feb7.100544.40871@cc.usu.edu>
  86524. Date: 7 Feb 95 10:05:44 MDT
  86525. References: <3h6hae$b1t@solaris.cc.vt.edu>
  86526. Organization: Utah State University
  86527. Lines: 38
  86528. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  86529.  
  86530. In article <3h6hae$b1t@solaris.cc.vt.edu>, dhuguet@vt.edu (David Huguet) writes:
  86531. > I have this script that runs when I log on that will look for a file called "mypass.ker"
  86532. > which I suppose is supposed to contain my password.  I tried creating it 
  86533. > with 
  86534. > input "password", where "password" is my personal one, but it doesn't From news@columbia.edu Tue Feb  7 13:37:42 1995
  86535. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28708
  86536.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 7 Feb 1995 13:37:42 -0500
  86537. Received: by apakabar.cc.columbia.edu id AA11988
  86538.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 7 Feb 1995 13:37:36 -0500
  86539. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!howland.reston.ans.net!news.cac.psu.edu!news.pop.psu.edu!hudson.lm.com!fs7.ece.cmu.edu!news.radian.com.!radian.com!Tim_Helmstetter
  86540. From: Tim_Helmstetter@radian.com
  86541. Newsgroups: comp.protocols.kermit.misc
  86542. Subject: MS-DOS Kermit 3.14 Multiple TCP/IP Sessions
  86543. Date: Tue, 7 Feb 1995 08:57:55
  86544. Organization: Radian Corporation, Austin, TX, USA
  86545. Lines: 12
  86546. Message-Id: <Tim_Helmstetter.15.2F378AF1@radian.com>
  86547. Nntp-Posting-Host: 129.160.17.246
  86548. Summary: V3.14 Disconnect sessions
  86549. X-Newsreader: Trumpet for Windows [Version 1.0 Rev Final Beta #8]
  86550. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  86551.  
  86552. Help! I have updated to V3.14 and run multiple TCP/IP sessions connected to a 
  86553. UNIX system. V3.14 is disconnecting my sessions that I am not currently in 
  86554. after a period of time. Is there a parameter I am supposed to modify to 
  86555. prevent this? V3.13 does not do this.
  86556.  
  86557.  
  86558.  |~~~~~\  /~~\  |~~~~~\ |~|  /~~\  |~\_|~|      Tim Helmstetter, Sys. Analyst
  86559.  |  ~  / / /\ \ | [<>] || | / /\ \ | \ \ |      Helmstetter_Tim@radian.com 
  86560.  |_|~|_\/_|~~|_\|_____/ |_|/_|~~|_\|_|\__|      Box 201088 Austin, TX 78720 
  86561.  C   O   R   P   O   R   A   T   I   O   N      All opinions are just that...
  86562.                                                         opinions!!!
  86563. --KAB26305.784571010/zippy.radian.com--
  86564.  
  86565. From news@columbia.edu Wed Feb  8 01:06:10 1995
  86566. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26348
  86567.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 7 Feb 1995 20:06:19 -0500
  86568. Received: by apakabar.cc.columbia.edu id AA21363
  86569.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 7 Feb 1995 20:06:17 -0500
  86570. Path: news.columbia.edu!watsun.cc.columbia.edu!ylee
  86571. From: ylee@watsun.cc.columbia.edu (Yeechang Lee)
  86572. Newsgroups: comp.protocols.kermit.misc
  86573. Subject: Re: interesting from OMEN
  86574. Date: 8 Feb 1995 01:06:10 GMT
  86575. Organization: Trilateral Commission, Columbia University student chapter
  86576. Lines: 16
  86577. Message-Id: <3h95e2$krc@apakabar.cc.columbia.edu>
  86578. References: <GIlCluqcZV$U078yn@primenet.com>
  86579. Reply-To: Yeechang Lee <ycl6@columbia.edu>
  86580. Nntp-Posting-Host: watsun.cc.columbia.edu
  86581. X-Disclaimer: I sure as heck don't speak for Columbia or AcIS.
  86582. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  86583.  
  86584. Jeff Bishop <jbishop@primenet.com> says:
  86585. |Well, I found a file called knewstru.zip on a BBS that discussed the
  86586. |kermit news article that claims faster transfers than zmodem. It
  86587. |surely attacks this claim and find it based with pretty interesting
  86588. |facts. If any of you are interested in reading this article (complete
  86589. |with gif pictures) read on. You can ftp to ftp.primenet.com and log in
  86590. |as anonymous. Once here, cd to /users/j/jbishop and get the file
  86591. |knewstru.zip (in binary mode).
  86592.  
  86593. I haven't seen the article, but if it's anything like his documentation
  86594. I'm sure it'll be an interesting experience.  His writing style
  86595. is--um--bizzare, to say the least.
  86596. --   _____________________________________________________________________
  86597.      Yeechang Lee  (ycl6@columbia.edu)|Nevada Las Vegas Mission Jul'92-'94
  86598.      Columbia University/New York City|Celestial Kingdom through Taco Bell
  86599.      <a href="http://www.columbia.edu/~ylee/">Yeechang Lee's home page</a>
  86600.  
  86601. From news@columbia.edu Tue Feb  7 18:14:44 1995
  86602. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04399
  86603.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 7 Feb 1995 22:08:59 -0500
  86604. Received: by apakabar.cc.columbia.edu id AA01362
  86605.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 7 Feb 1995 22:08:56 -0500
  86606. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!howland.reston.ans.net!news1.digex.net!cablew.com!news
  86607. From: brewer@us.net (Scott Carpenter)
  86608. Newsgroups: comp.protocols.kermit.misc
  86609. Subject: Kermit and NT
  86610. Date: 7 Feb 1995 18:14:44 GMT
  86611. Organization: Carpenter Consulting
  86612. Lines: 8
  86613. Message-Id: <3h8dak$3jm@doberman.cablew.com>
  86614. Nntp-Posting-Host: 146.135.61.28
  86615. Mime-Version: 1.0
  86616. X-Newsreader: WinVN 0.93.11
  86617. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  86618.  
  86619. I have just been given the job of porting all of our 
  86620. applications from OS/2 to NT. One of the functions I 
  86621. need to replicate is OS/2 C-Kermit telneting to 
  86622. another computer with VT100 emulation. I ported over 
  86623. the key mapping all of our users are used to, but I 
  86624. can't get the telnet function to work. Any 
  86625. suggestions?
  86626.  
  86627.  
  86628. From news@columbia.edu Tue Feb  7 20:49:46 1995
  86629. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04461
  86630.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 7 Feb 1995 22:09:37 -0500
  86631. Received: by apakabar.cc.columbia.edu id AA01413
  86632.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 7 Feb 1995 22:09:36 -0500
  86633. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!udel!news.udel.edu!not-for-mail
  86634. From: darkstar@chopin.udel.edu (Jerry Alexandratos)
  86635. Newsgroups: comp.protocols.kermit.misc
  86636. Subject: Help With Sessions Under MSK
  86637. Date: 7 Feb 1995 15:49:46 -0500
  86638. Organization: Broken Toys Unlimited
  86639. Lines: 26
  86640. Message-Id: <3h8mda$b48@chopin.udel.edu>
  86641. Nntp-Posting-Host: chopin.udel.edu
  86642. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  86643.  
  86644.  
  86645. I'm using msk v3.14 connecting to various Unix hosts from the pc on my
  86646. desk.  I've noticed that whenever I switch sessions (using alt-n) that
  86647. the screen gets cleared.  Now it appears that an xon/xoff is also being
  86648. sent to the session to have it stop outputting to the screen until one
  86649. switches back to the session.
  86650.  
  86651. So, my two questions.  1) how can I stop kermit from clearing the
  86652. screen whenever I switch sessions?  and 2) how can I have kermit not
  86653. send the xon/xoff characters and just allow the output to go on
  86654. whenever I switch a session?
  86655.  
  86656. Are these even possible?  Skimming through `The Book' I couldn't find
  86657. an answer.  Now, it's entirely possible that I missed something
  86658. (wouldn't be the first time).  So, if it is covered in the
  86659. documentation, could someone please tell me the relevant page numbers
  86660. at least.
  86661.  
  86662. Thanks in advance...
  86663.  
  86664.         --Jerry
  86665.  
  86666. -- 
  86667. |>  Jerry Alexandratos                **  "vengo de la tierra del    <|
  86668. |>  darkstar@strauss.udel.edu         **   fuego ten cuidado cuando  <|
  86669. |>  darkstar@canary.pearson.udel.edu  **   llamas mi nombre..."      <|
  86670.  
  86671. From news@columbia.edu Wed Feb  8 03:50:21 1995
  86672. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06666
  86673.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 7 Feb 1995 22:50:30 -0500
  86674. Received: by apakabar.cc.columbia.edu id AA04649
  86675.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 7 Feb 1995 22:50:28 -0500
  86676. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  86677. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  86678. Newsgroups: comp.protocols.kermit.misc
  86679. Subject: Re: Kermit and NT
  86680. Date: 8 Feb 1995 03:50:21 GMT
  86681. Organization: Columbia University
  86682. Lines: 22
  86683. Message-Id: <3h9f1t$4gu@apakabar.cc.columbia.edu>
  86684. References: <3h8dak$3jm@doberman.cablew.com>
  86685. Nntp-Posting-Host: watsun.cc.columbia.edu
  86686. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  86687.  
  86688. In article <3h8dak$3jm@doberman.cablew.com>,
  86689. Scott Carpenter <brewer@us.net> wrote:
  86690. >I have just been given the job of porting all of our 
  86691. >applications from OS/2 to NT. One of the functions I 
  86692. >need to replicate is OS/2 C-Kermit telneting to 
  86693. >another computer with VT100 emulation. I ported over 
  86694. >the key mapping all of our users are used to, but I 
  86695. >can't get the telnet function to work. Any 
  86696. >suggestions?
  86697. >
  86698.  
  86699. OS/2 C-Kermit does not work with NT 3.5 in any mode.
  86700.  
  86701. NEtwork connections ae absolutely out of the question since they
  86702. are not part of the base OS/2 functionality and were not
  86703. replicated by Microsoft.
  86704.  
  86705.  
  86706. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  86707. "C-Kermit: available on more platforms than any other communications software."
  86708. "Kermit FTP: sending files whenever and wherever they are needed."
  86709.   OS/2 version 5A(190): ftp://kermit.columbia.edu/kermit/archives/cko190.zip 
  86710.  
  86711. From news@columbia.edu Tue Feb  7 07:55:35 1995
  86712. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10274
  86713.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 8 Feb 1995 00:12:19 -0500
  86714. Received: by apakabar.cc.columbia.edu id AA10836
  86715.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 8 Feb 1995 00:12:18 -0500
  86716. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  86717. From: jrd@cc.usu.edu (Joe Doupnik)
  86718. Newsgroups: comp.protocols.kermit.misc
  86719. Subject: Re: Kermit TSR for background xfers?
  86720. Message-Id: <1995Feb7.135535.40928@cc.usu.edu>
  86721. Date: 7 Feb 95 13:55:35 MDT
  86722. References: <3go00i$bie@crl12.crl.com> <1995Feb1.100246.40094@cc.usu.edu> <3h5mj8$kar@Mercury.mcs.com> <1995Feb6.134931.40786@cc.usu.edu> <3h8611$eif@Mars.mcs.com>
  86723. Organization: Utah State University
  86724. Lines: 42
  86725. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  86726.  
  86727. In article <3h8611$eif@Mars.mcs.com>, les@MCS.COM (Leslie Mikesell) writes:
  86728. > In article <1995Feb6.134931.40786@cc.usu.edu>,
  86729. > Joe Doupnik <jrd@cc.usu.edu> wrote:
  86730. >>> I'm running a DOS program called ACCESS PLUS that is intended to be used
  86731. >>> with the attmail service that uses a 60K TSR to provide scheduled calls
  86732. >>> in the background.  It is running on many machines without causing too
  86733. >>> much trouble from being a TSR, so it is at least possible.  It appears
  86734. >>> to run an xmodem-like protocol modified so that the total packet size
  86735. >>> is 256 bytes, and has a minimal scripting language for dialing and
  86736. >>> login. However, there are things I don't like about the rest of
  86737. >>> this package.  I'd like to replace it with something that does MIME
  86738. >>> attachments without losing the ability to do the background communication.
  86739.     <omitting much>
  86740. >>    I disagree here. The market is for the big scale product, not
  86741. >>a tailor-made component. There is no interest at this end in becoming
  86742. >>a parts supplier for free.
  86743. > I don't mean to imply that you have any obligation to provide such
  86744. > a thing for free, but I still think there is a need for it and it
  86745. > fits into the kermit model of making everything talk to everything
  86746. > else on the cheap.  The other components needed to put a workable
  86747. > system together are available in various free or low-cost shareware
  86748. > forms that could be glued together to build a custom system.  For
  86749. > example you could use uqwk on a unix host and any of several qwk/soup
  86750. > readers, or set up something similar as a custom gateway for Pegasus.
  86751. > The critical points to making it usable are that the end points
  86752. > appear as users on the host machine rather than remote machines,
  86753. > and that the communications must take care of itself with scheduled
  86754. > calls in the background as an option.
  86755. > But maybe it's too late for simple serial communications.
  86756. ----------------
  86757.     I think the time passed in the early 70's when Unix grew up,
  86758. even though there is a modern resurgence this year as "service providers"
  86759. appear in every other garage to guide folks to the ISH.
  86760.     There is always a need for someone(s) to make working systems from
  86761. components. However, the Kermit designers may not be interested in spending
  86762. their own time and effort in such work (they too, like everyone, have plans
  86763. and goals). Hence a contractural arrangement would be needed to create the
  86764. group to do the special job.
  86765.         Joe D.
  86766.  
  86767. From news@columbia.edu Tue Feb  7 07:59:30 1995
  86768. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10276
  86769.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 8 Feb 1995 00:12:20 -0500
  86770. Received: by apakabar.cc.columbia.edu id AA10841
  86771.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 8 Feb 1995 00:12:19 -0500
  86772. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  86773. From: jrd@cc.usu.edu (Joe Doupnik)
  86774. Newsgroups: comp.protocols.kermit.misc
  86775. Subject: Re: MS-DOS Kermit 3.14 Multiple TCP/IP Sessions
  86776. Message-Id: <1995Feb7.135930.40929@cc.usu.edu>
  86777. Date: 7 Feb 95 13:59:30 MDT
  86778. References: <Tim_Helmstetter.15.2F378AF1@radian.com>
  86779. Organization: Utah State University
  86780. Lines: 11
  86781. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  86782.  
  86783. In article <Tim_Helmstetter.15.2F378AF1@radian.com>, Tim_Helmstetter@radian.com writes:
  86784. > Help! I have updated to V3.14 and run multiple TCP/IP sessions connected to a 
  86785. > UNIX system. V3.14 is disconnecting my sessions that I am not currently in 
  86786. > after a period of time. Is there a parameter I am supposed to modify to 
  86787. > prevent this? V3.13 does not do this.
  86788. ----------------
  86789.     It's not MSK doing disconnects, it's your host(s). Maybe you could
  86790. elaborate on the environment and any other details of interest. The actual
  86791. useful piece of information is a packet trace, if you have the equipment
  86792. for that job (FTP Inc Lanwatch or Novell Lanalyzer formats would be fine here).
  86793.     Joe D.
  86794.  
  86795. From news@columbia.edu Sun Feb  8 04:16:15 1995
  86796. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11692
  86797.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 8 Feb 1995 00:37:01 -0500
  86798. Received: by apakabar.cc.columbia.edu id AA12612
  86799.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 8 Feb 1995 00:36:59 -0500
  86800. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!vixen.cso.uiuc.edu!usenet.ucs.indiana.edu!indyvax.iupui.edu!harvey
  86801. From: harvey@indyvax.iupui.edu (James Harvey)
  86802. Newsgroups: comp.protocols.kermit.misc
  86803. Subject: Re: Getting back to C-Kermit command level when using a command file
  86804. Message-Id: <1995Feb7.231615.12294@ivax>
  86805. Date: 7 Feb 95 23:16:15 -0500
  86806. References: <1995Feb4.022222.12173@ivax> <3h0d6h$pfo@apakabar.cc.columbia.edu>
  86807. Organization: Indiana University-Purdue University at Indianapolis
  86808. Lines: 45
  86809. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  86810.  
  86811. In article <3h0d6h$pfo@apakabar.cc.columbia.edu>, fdc@watsun.cc.columbia.edu (Frank da Cruz) writes:
  86812. > In article <1995Feb4.022222.12173@ivax>,
  86813. > James Harvey <harvey@indyvax.iupui.edu> wrote:
  86814. >>I have a question about C-Kermit 5A(190) on a VAX.  We use this to
  86815. >>provide dialout services under a menu system using a C-Kermit command file.
  86816. >>The command file is passed the number to dial on the command line like
  86817. >>this:
  86818. >>
  86819. >>$ CKERMIT dialing-command-file -Y = number-to-call
  86820. >>
  86821. > I think that should be:
  86822. >
  86823. > $ CKERMIT dialing-command-file "-Y" = number-to-call
  86824. >
  86825. > VMS lowercases your command-line options unless you enclose them in
  86826. > quotes.  If it worked for you without quotes, it's an accident :-)
  86827.  
  86828. You're right of course.  I had overlooked the doublequotes, which caused
  86829. the command to work as long as there was an exit command in the command
  86830. file.  When I tried to take it out, I would get a command syntax error
  86831. (correctly because of the missing filespec argument to the unquoted -Y
  86832. option which was now really a -y option).  I should have mentioned that,
  86833. but I thought it was unrelated (yes, I should know better :)
  86834.  
  86835.     [snip]
  86836. >
  86837. > I don't think the "-S" should be necessary, though.  When you invoke a
  86838. > command file by giving its name as the first command-line argument, this
  86839. > should not cause an automatic exit.  (Of course, Kermit will exit if the
  86840. > command file contains an EXIT or QUIT command.)  So any of the following
  86841. > should work:
  86842. >
  86843. > $ CKERMIT dialing-command-file "-Y" = number-to-call
  86844. >
  86845. > $ CKERMIT -y dialing-command-file = number-to-call
  86846.  
  86847. Yes, this works perfectly.  Thanks!
  86848.  
  86849. P.S.: Nice work on 5A(190).  I like the bugfix for flow control on the
  86850. console (edit 061 to ckvtio.c).  Now I can toss my last patch! (well,
  86851. except for our wacky custom modem-dialer code)
  86852. --
  86853. James Harvey   harvey@iupui.edu   IUPUI IT Networks and Systems
  86854. Disclaimer:  These are my own opinions.  I do not speak for Indiana University.
  86855. I spilt spot remover on my dog and now he's gone.
  86856.  
  86857. From news@columbia.edu Tue Feb  7 23:10:34 1995
  86858. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17524
  86859.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 8 Feb 1995 02:48:21 -0500
  86860. Received: by apakabar.cc.columbia.edu id AA19281
  86861.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 8 Feb 1995 02:48:20 -0500
  86862. Newsgroups: comp.protocols.kermit.misc
  86863. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!fonorola!infoshare!whome!telly!evan
  86864. From: evan@telly.on.ca (Evan Leibovitch)
  86865. Subject: Re: Subscribe to Kermit News
  86866. Message-Id: <D3nKDM.8Cn@telly.on.ca>
  86867. Organization: Sound Software Ltd., Brampton, Ontario
  86868. References: <3gu5pp$9fo@apakabar.cc.columbia.edu> <3h5mpp$gpf@ns.rezonet.net>
  86869. Date: Tue, 7 Feb 1995 23:10:34 GMT
  86870. Lines: 31
  86871. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  86872.  
  86873. In article <3h5mpp$gpf@ns.rezonet.net>,
  86874.     Andrew Morrow  <amorrow@dataradio.com> wrote:
  86875.  
  86876. >> Addresses in Canada should end with:
  86877.  
  86878. >>   City XX  lnl nln
  86879. >>   CANADA
  86880.  
  86881. >> where XX is the 2-letter abbreviation for the province (e.g. ON for
  86882. >> Ontario, BC for British Columbia, PQ for Quebec), and "lnl nln" is the
  86883. >> six-digit (base 36 :-) postal code.
  86884.  
  86885. Actually, it ain't. The 'n' spaces are numeric only, the 'l'  alpha only.
  86886.  
  86887. >PQ (Province of Quebec) was changed to QC (QuebeC) many years ago, leaving
  86888. >DC (District of Columbia) as the only place I can think of that has a
  86889. >classification name as part of the abbreviation.
  86890.  
  86891. PQ was (and still is) useful in many non-postal contexts, to
  86892. differetiate Quebec the province from Quebec the city (and the
  86893. province's capitol). Only Anglos refer to it as Quebec City, the
  86894. proper French usage is to refer to both as "Quebec", thus the reference
  86895. to PQ.
  86896.  
  86897. Both PQ and QC are acceptable to the Canadian post office, they'll
  86898. deliver the mail equally slowly no matter how you mark it.
  86899.  
  86900. -- 
  86901.  Evan Leibovitch, Sound Software Ltd., located in beautiful Brampton, Ontario
  86902.        Novell Unix Master Reseller / evan@telly.on.ca / (905) 452-0504
  86903.                 A happy traveller on the information sidewalk
  86904.  
  86905. From news@columbia.edu Mon Feb  6 18:36:14 1995
  86906. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18307
  86907.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 8 Feb 1995 03:06:51 -0500
  86908. Received: by apakabar.cc.columbia.edu id AA19901
  86909.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 8 Feb 1995 03:06:44 -0500
  86910. Newsgroups: comp.protocols.kermit.misc
  86911. Path: news.columbia.edu!panix!news.mathworks.com!news.duke.edu!godot.cc.duq.edu!newsfeed.pitt.edu!gatech!swrinde!sgiblab!pacbell.com!amdahl.com!amd!netcomsv!lafn.org!lafn.org!ac388
  86912. From: ac388@lafn.org (Charles Lease)
  86913. Subject: Re: Kermit patch level indication?
  86914. Message-Id: <1995Feb6.183614.24901@lafn.org>
  86915. Sender: news@lafn.org
  86916. Nntp-Posting-Host: lafn.org
  86917. Reply-To: ac388@lafn.org (Charles Lease)
  86918. Organization: The Los Angeles Free-Net
  86919. References: <3grnfb$o5v@apakabar.cc.columbia.edu> <1995Jan27.211502.19910@lafn.org>
  86920. Date: Mon, 6 Feb 1995 18:36:14 GMT
  86921. Lines: 73
  86922. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  86923.  
  86924.  
  86925. In a previous article, fdc@watsun.cc.columbia.edu (Frank da Cruz) says:
  86926.  
  86927. >In article <1995Jan27.211502.19910@lafn.org>,
  86928. >Charles Lease <ac388@lafn.org> wrote:
  86929. >>
  86930. >>After obtaining the:
  86931. >>   > ; For MS Kermit/IBM-PC Version 3.14, Patches 1-3, 22 Jan 1995
  86932. >>msr314.pch file, and replacing the patch file distributed with the
  86933. >>msvibm.zip MSKermit v3.14 distribution, I notice that the start-up
  86934. >>message generated when MSKermit is initialized:
  86935. >>   > Installing patches...
  86936. >>   >  MS-DOS Kermit: 3.14 18 Jan 1995 patch level 0
  86937. >>
  86938. >The following has been added to our FAQ, since it seems to keep
  86939. >coming up:
  86940. >
  86941. >Since the release of MS-DOS Kermit 3.14, there have been persistent reports
  86942. >that patches don't seem to "stick".  That is, after giving a PATCH command,
  86943. >the patch level is still reported as 0.  This can happen if the patch file is
  86944. >transferred to the PC from a UNIX system in binary mode, so the lines end
  86945. >with LF rather than CRLF -- DOS does not recognize the line boundaries and
  86946. >therefore Kermit does not see valid patches.  Cure: make sure each line ends
  86947. >with CRLF.  Fix it in an editor, or re-transfer the file in text mode.
  86948. >
  86949. >Also, remember there is no longer a need to rename the patch file to
  86950. >MSKERMIT.PCH.  Since there are now three different Kermit executables, there
  86951. >must be three corresponding patch files.  For version 3.14, these are:
  86952. >
  86953. >  MSR314.PCH  -- For full-featured KERMIT.EXE
  86954. >  MSRM314.PCH -- For "medium-size" KERMITE.EXE
  86955. >  MSRL314.PCH -- For "Kermit Lite" KERLITE.EXE
  86956. >
  86957. >Notice that each patch file includes the version number as part of its
  86958. >name.  This allows you to run different versions of Kermit without confusion
  86959. >about patching.
  86960. >
  86961. >- Frank
  86962. >
  86963.  
  86964. Thanks to you and Armand (in later posting concerning patch indication)
  86965. for your help with "Patch" installation. You were correct in
  86966. indicating that patch file was in "UNIX" format rather than "DOS".
  86967. I used a unix2dos utility to convert the <CR> to <CR><LF> and now
  86968. the patch file installs correctly, leaving me at:
  86969.  
  86970.    Installing patches...
  86971.     MS-DOS Kermit: 3.14 18 Jan 1995 patch level 3
  86972.    MS-DOS Kermit 3.14 Initialization File...
  86973.  
  86974. I transferred the patch files in "binary" mode originally, since
  86975. I was concerned that it might need to be that way to perform the
  86976. patch process. I guessed wrong.
  86977.  
  86978. To help reduce this sort of problem in the future, I wonder if it
  86979. might be a good idea to post a .zip archive of patches only, in
  86980. addition to the unix format text files. The patches in the archive
  86981. could be in the proper DOS format, as they are in the original
  86982. distribution archive. I think if I had the choice to get one archive
  86983. or the individual files, I would probably go for the archive. Are
  86984. the .pch files used on any system other than DOS? C-Kermit is compiled,
  86985. so patches wouldn't seem to be needed there.
  86986.  
  86987. A FAQ file was mentioned. Is that a part of the "printed" documentation,
  86988. or is it available in on-line form? I haven't really seen a FAQ file for
  86989. Kermit, but I haven't really be searching for it either. Guess I need to
  86990. look for one.
  86991.  
  86992. Again thanks for the help. Kermit has always been a valuable resource to
  86993. me, even from the earliest v2.26 (DOS) that I used.
  86994.  
  86995. -- 
  86996. cdl [ac388@lafn.org] ...
  86997.  
  86998. From news@columbia.edu Wed Feb  8 02:24:00 1995
  86999. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18444
  87000.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 8 Feb 1995 03:12:12 -0500
  87001. Received: by apakabar.cc.columbia.edu id AA20054
  87002.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 8 Feb 1995 03:12:11 -0500
  87003. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!willis.cis.uab.edu!news.ecn.bgu.edu!newspump.wustl.edu!crcnis3.unl.edu!unlinfo.unl.edu!aes
  87004. From: aes@unlinfo.unl.edu (alan steinweis)
  87005. Newsgroups: comp.protocols.kermit.misc
  87006. Subject: zmodem
  87007. Date: 8 Feb 1995 02:24:00 GMT
  87008. Organization: University of Nebraska--Lincoln    
  87009. Lines: 15
  87010. Message-Id: <3h9a00$src@crcnis3.unl.edu>
  87011. Nntp-Posting-Host: unlinfo.unl.edu
  87012. X-Newsreader: TIN [version 1.2 PL2]
  87013. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  87014.  
  87015.  
  87016. Can somebody help me with a basic question? (The help desk at my system
  87017. is not occupied at this hour, and the on-line documentation is not 
  87018. up-to-date.)
  87019.  
  87020. What are the basic commands needed for preparing Unix to send/receive 
  87021. files using zmodem? I know I'm supposed to start with sz, but 
  87022. thereafter?
  87023.  
  87024.  
  87025. Thanks!
  87026.  
  87027.  
  87028.  
  87029.  
  87030.  
  87031. From news@columbia.edu Sun Feb  8 03:24:44 1995
  87032. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19037
  87033.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 8 Feb 1995 03:30:53 -0500
  87034. Received: by apakabar.cc.columbia.edu id AA20719
  87035.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 8 Feb 1995 03:30:51 -0500
  87036. Path: news.columbia.edu!panix!news.mathworks.com!zombie.ncsc.mil!news.duke.edu!eff!news.umbc.edu!haven.umd.edu!nova.umuc.edu!nova!rockwell
  87037. From: rockwell@nova.umuc.edu (Raul Deluth Miller)
  87038. Newsgroups: comp.protocols.kermit.misc
  87039. Subject: cmsg cancel <ROCKWELL.95Feb6144346@nova.umd.edu>
  87040. Control: cancel <ROCKWELL.95Feb6144346@nova.umd.edu>
  87041. Date: 7 Feb 1995 22:24:44 -0500
  87042. Organization: University of Maryland University College
  87043. Lines: 0
  87044. Sender: rockwell@nova.umuc.edu
  87045. Distribution: world
  87046. Message-Id: <ROCKWELL.95Feb7222443@nova.umd.edu>
  87047. Nntp-Posting-Host: nova.umuc.edu
  87048. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  87049.  
  87050.  
  87051.  
  87052. From news@columbia.edu Wed Feb  8 08:06:33 1995
  87053. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24707
  87054.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 8 Feb 1995 06:11:41 -0500
  87055. Received: by apakabar.cc.columbia.edu id AA02279
  87056.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 8 Feb 1995 06:11:39 -0500
  87057. Newsgroups: comp.protocols.kermit.misc
  87058. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!howland.reston.ans.net!ix.netcom.com!netcom.com!jzero
  87059. From: jzero@netcom.com (Jim Nakamura)
  87060. Subject: Re: Kermit is leaking
  87061. Message-Id: <jzeroD3o96y.K0I@netcom.com>
  87062. Organization: NETCOM On-line Communication Services (408 261-4700 guest)
  87063. References: <jzeroD35p9C.CAH@netcom.com> <3ggd7b$7km@apakabar.cc.columbia.edu> <jzeroD39uKJ.L63@netcom.com> <3h6365$fsr@source.asset.com>
  87064. Date: Wed, 8 Feb 1995 08:06:33 GMT
  87065. Lines: 22
  87066. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  87067.  
  87068. weisek@source.asset.com (Kevin Weise) writes:
  87069.  
  87070. | Sorry I didn't get in on the beginning of this thread, so I don't know
  87071. | the execution environment.  However, what it sounds like to me is PON
  87072. | over POTS (i.e., plain ol' noise over plain old telephone service).  Are
  87073. | you using a modem and dialing over standard telephone lines?  If so, it
  87074. | must be noise (esp. if the modem is more than a few years old), and
  87075. | Kermit is *not* the problem.  More modern modems, esp. those with error-
  87076. | correction, do a terrific job of cleaning that nasty noise up, but only 
  87077. | if they are talking with an equivalent error-correcting modem.  If you 
  87078. | are using a PC on an Ethernet link (with or without a terminal server), 
  87079. | then I'm stumped as to what the problem could be.
  87080.  
  87081. Well I switched back to kermit (188) and the problem went away.  The 
  87082. problem only manifested itself on the "nn" newsreader anyway, so
  87083. I thought maybe there was an incommpatibility.  :(  I am using the
  87084. new USR 28.8 internal modem.  Maybe that's the problem.  :(
  87085. Oh well.
  87086.  
  87087.  
  87088. -- 
  87089. jzero@netcom.com
  87090.  
  87091. From news@columbia.edu Wed Feb  8 13:49:58 1995
  87092. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00369
  87093.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 8 Feb 1995 08:50:01 -0500
  87094. Received: by apakabar.cc.columbia.edu id AA12606
  87095.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 8 Feb 1995 08:49:59 -0500
  87096. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  87097. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  87098. Newsgroups: comp.protocols.kermit.misc
  87099. Subject: FAQ (was: Kermit patch level indication?)
  87100. Date: 8 Feb 1995 13:49:58 GMT
  87101. Organization: Columbia University
  87102. Lines: 16
  87103. Message-Id: <3hai66$c9s@apakabar.cc.columbia.edu>
  87104. References: <3grnfb$o5v@apakabar.cc.columbia.edu> <1995Jan27.211502.19910@lafn.org> <1995Feb6.183614.24901@lafn.org>
  87105. Nntp-Posting-Host: watsun.cc.columbia.edu
  87106. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  87107.  
  87108. In article <1995Feb6.183614.24901@lafn.org>,
  87109. Charles Lease <ac388@lafn.org> wrote:
  87110. >A FAQ file was mentioned. Is that a part of the "printed" documentation,
  87111. >or is it available in on-line form? I haven't really seen a FAQ file for
  87112. >Kermit, but I haven't really be searching for it either. Guess I need to
  87113. >look for one.
  87114. >
  87115. It's online:
  87116.  
  87117.   ftp://kermit.columbia.edu/kermit/FAQ.TXT
  87118.  
  87119. or:
  87120.  
  87121.   http://www.columbia.edu/kermit/e/faq.txt
  87122.  
  87123. - Frank
  87124.  
  87125.  
  87126. From news@columbia.edu Wed Feb  8 13:56:30 1995
  87127. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00835
  87128.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 8 Feb 1995 08:56:34 -0500
  87129. Received: by apakabar.cc.columbia.edu id AA12980
  87130.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 8 Feb 1995 08:56:33 -0500
  87131. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  87132. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  87133. Newsgroups: comp.protocols.kermit.misc
  87134. Subject: Re: Help With Sessions Under MSK
  87135. Date: 8 Feb 1995 13:56:30 GMT
  87136. Organization: Columbia University
  87137. Lines: 30
  87138. Message-Id: <3haiie$clg@apakabar.cc.columbia.edu>
  87139. References: <3h8mda$b48@chopin.udel.edu>
  87140. Nntp-Posting-Host: watsun.cc.columbia.edu
  87141. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  87142.  
  87143. In article <3h8mda$b48@chopin.udel.edu>,
  87144. Jerry Alexandratos <darkstar@chopin.udel.edu> wrote:
  87145. >
  87146. >I'm using msk v3.14 connecting to various Unix hosts from the pc on my
  87147. >desk.  I've noticed that whenever I switch sessions (using alt-n) that
  87148. >the screen gets cleared.  Now it appears that an xon/xoff is also being
  87149. >sent to the session to have it stop outputting to the screen until one
  87150. >switches back to the session.
  87151. >
  87152. >So, my two questions.  1) how can I stop kermit from clearing the
  87153. >screen whenever I switch sessions?
  87154. >
  87155. You can't.  Each session has its own screen.  But all the sessions share
  87156. the same rollback buffer, so if you want to view a screen from (say)
  87157. session 1 while in session 2, you can clear the screen in session 1
  87158. before switching to session 2, and then when in session 2 you can push
  87159. Page Up to view the cleared session 1 screen.  Clear?  :-)
  87160.  
  87161. >and 2) how can I have kermit not
  87162. >send the xon/xoff characters and just allow the output to go on
  87163. >whenever I switch a session?
  87164. >
  87165. You should not be using Xon/Xoff flow control on a TCP/IP connection.
  87166. TCP and IP provide their own flow control, which is far more effective
  87167. than Xon/Xoff.  Just tell Kermit to SET FLOW NONE.
  87168.  
  87169. In fact, if you use the TELNET macro that is supplied with MS-DOS Kermit,
  87170. it sets everything up for you this way.
  87171.  
  87172. - Frank
  87173.  
  87174. From news@columbia.edu Wed Feb  8 14:08:07 1995
  87175. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02054
  87176.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 8 Feb 1995 09:11:59 -0500
  87177. Received: by apakabar.cc.columbia.edu id AA14143
  87178.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 8 Feb 1995 09:11:58 -0500
  87179. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  87180. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  87181. Newsgroups: comp.protocols.kermit.misc
  87182. Subject: Re: Subscribe to Kermit News
  87183. Date: 8 Feb 1995 14:08:07 GMT
  87184. Organization: Columbia University
  87185. Lines: 53
  87186. Message-Id: <3haj87$dgb@apakabar.cc.columbia.edu>
  87187. References: <3gu5pp$9fo@apakabar.cc.columbia.edu> <3h5mpp$gpf@ns.rezonet.net> <D3nKDM.8Cn@telly.on.ca>
  87188. Nntp-Posting-Host: watsun.cc.columbia.edu
  87189. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  87190.  
  87191. In article <D3nKDM.8Cn@telly.on.ca>, Evan Leibovitch <evan@telly.on.ca> wrote:
  87192. >In article <3h5mpp$gpf@ns.rezonet.net>,
  87193. >>> Addresses in Canada should end with:
  87194. >>>   City XX  lnl nln
  87195. >>>   CANADA
  87196. >>> where XX is the 2-letter abbreviation for the province (e.g. ON for
  87197. >>> Ontario, BC for British Columbia, PQ for Quebec), and "lnl nln" is the
  87198. >>> six-digit (base 36 :-) postal code.
  87199. >Actually, it ain't. The 'n' spaces are numeric only, the 'l'  alpha only.
  87200. >
  87201. Hence the ":-)"
  87202.  
  87203. >>PQ (Province of Quebec) was changed to QC (QuebeC) many years ago, leaving
  87204. >>DC (District of Columbia) as the only place I can think of that has a
  87205. >>classification name as part of the abbreviation.
  87206. >
  87207. Canberra, ACT (Australian Capitol Territory) is another.
  87208.  
  87209. >Both PQ and QC are acceptable to the Canadian post office, they'll
  87210. >deliver the mail equally slowly no matter how you mark it.
  87211. >
  87212. Thanks.  I'll await official word on the political correctness of Canadian
  87213. postal addresses.
  87214.  
  87215. In fact, I'm kind of a postal address trivia collector, so any other hints
  87216. about postal addresses in any country are most welcome, especially in the
  87217. next few weeks, as the Kermit News mailing is being assembled.  (Don't
  87218. bother to tell me about the new German postal codes -- that's already
  87219. taken care of.)
  87220.  
  87221. In particular, many European (and perhaps other) countries have a country
  87222. prefix on their postal codes, such as:
  87223.  
  87224.   D-79011 Freiburg      (GERMANY)
  87225.   NL-1081 HV Amsterdam  (NETHERLANDS)
  87226.   PL-40-873 Katowice    (POLAND)
  87227.   SF-33560 Tampere      (FINLAND) (*)
  87228.  
  87229. etc.  I believe these are ad-hoc creations; they are not ISO 2-letter or
  87230. 3-letter country codes.  Is there a document or standard anywhere that
  87231. describes the preferred format for addresses in each country, and that lists
  87232. the postal country codes, etc?
  87233.  
  87234. (*) I understand that Finland now prefers FI to SF.
  87235.  
  87236. Do the new countries of Eastern Europe and the former USSR -- Russia,
  87237. in particular -- have country prefixes or other address-format changes?
  87238.  
  87239. etc etc.
  87240.  
  87241. Thanks!
  87242.  
  87243. - Frank
  87244.  
  87245. From news@columbia.edu Tue Feb  7 16:42:42 1995
  87246. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03292
  87247.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 8 Feb 1995 09:40:25 -0500
  87248. Received: by apakabar.cc.columbia.edu id AA16897
  87249.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 8 Feb 1995 09:40:24 -0500
  87250. Path: news.columbia.edu!panix!news.mathworks.com!udel!news.sprintlink.net!news.channel1.com!news1.channel1.com!wizard.pn.com!Germany.EU.net!zib-berlin.de!news.cs.uni-magdeburg.de!RRZ.Uni-Koeln.DE!news.dfn.de!gs.dfn.de!fauern!news.unibw-muenchen.de!p41bsmk
  87251. From: p41bsmk@kommsrv.rz.unibw-muenchen.de (Peter Schmolck)
  87252. Newsgroups: comp.protocols.kermit.misc
  87253. Subject: Problems with transparent printing (3.14)
  87254. Date: 7 Feb 1995 16:42:42 GMT
  87255. Organization: University of the Federal Armed Forces Munich
  87256. Lines: 39
  87257. Message-Id: <3h87u2$4i3@infosrv.rz.unibw-muenchen.de>
  87258. Nntp-Posting-Host: kommsrv.rz.unibw-muenchen.de
  87259. X-Newsreader: NN version 6.5.0 #5 (NOV)
  87260. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  87261.  
  87262. For years I was quite unaware of the possibility of redirecting remote print 
  87263. output to the local printer or to the local disk. The good news about 
  87264. that was brought to me in one of the early beta releases of MS-Kermit 
  87265. 3.14 which contained the pcprint.sh UNIX script in the utils-directory. 
  87266. Since then the number to times per day I'm walking over to the computer 
  87267. center decreased dramatically. :-)
  87268.  
  87269. Now I repeatedly noticed an awkward problem that probably did not exist in
  87270. early beta versions (sometime before beta 14): When I try "to pcprint" a
  87271. somewhat larger e-mail (or any other text) file (say, about 20 KB) with
  87272. "set printer filename" to my local disk, the process seems to "hang"
  87273. anywhere.  Entering "hangup" at the MS-Kermit prompt for getting out of
  87274. this, usually needs 20 minutes or so to succeed. I performed some tests to
  87275. clarify the conditions under which this happens (not very many tests, of
  87276. course, since it is quite time-consuming) which seemed to indicate that it
  87277. would only occur in a TCP/IP connection, not when I use my still existing
  87278. serial connection. When I reinstalled Version 3.13 with my old 
  87279. mskermit.ini and mscustom.ini the pcprint thing worked alright. I also 
  87280. verified that the fault does not lie in the two current ini-Files: 3.14 
  87281. produces the "hang" condition also with my old ini-Files.
  87282.  
  87283. My other problem is less severe. Using pcprint transparent printing works
  87284. OK with UNIX text files, and with piping in the mailer program elm, but
  87285. when using pcprint to pipe print output from the newsreader program nn,
  87286. the carriage returns are missing. (The effect is easily to be observed if
  87287. one uses simply "cat" instead of "lpr" at the printer-prompt in nn.) My
  87288. current solution is to encorporate a sort of UNIX-to-DOS filter in the
  87289. pcprint script file, but I wonder if there exists a more elegant solution.
  87290. Besides, the filter-command I have at hand inserts CRs at the end of every
  87291. line, not only when there is a sole LF.
  87292.  
  87293. Thanking you in advance for any leads.
  87294.  
  87295. Peter Schmolck
  87296. --
  87297. Peter Schmolck                                p41bsmk@rz.unibw-muenchen.de
  87298. Department of Education                       Phone :     +49-89-6004-2056
  87299. Univ. of the Federal Armed Forces Munich      Fax   :     +49-89-6004-3968
  87300. 85577 NEUBIBERG, GERMANY    
  87301.  
  87302. From news@columbia.edu Wed Feb  8 15:48:21 1995
  87303. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11398
  87304.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 8 Feb 1995 11:36:42 -0500
  87305. Received: by apakabar.cc.columbia.edu id AA28307
  87306.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 8 Feb 1995 11:36:35 -0500
  87307. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!howland.reston.ans.net!ix.netcom.com!netnews
  87308. From: lma@ix.netcom.com (Larry Applebaum)
  87309. Newsgroups: comp.protocols.kermit.misc
  87310. Subject: ckermit and embedded cr's
  87311. Date: 8 Feb 1995 15:48:21 GMT
  87312. Organization: Netcom
  87313. Lines: 10
  87314. Distribution: world
  87315. Message-Id: <3hap45$k43@ixnews2.ix.netcom.com>
  87316. Nntp-Posting-Host: ix-lb1-05.ix.netcom.com
  87317. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  87318.  
  87319. Ckermit 5A-190 running under VMS has a problem receiving text files with 
  87320. embedded carriage returns not followed by a linefeed.  It eats the 
  87321. character following the cr.  As an example, the line "12345^M12345" gets 
  87322. mangled into "12345",new line,"2345".  The old bliss version of Kermit 
  87323. handles the text just fine.
  87324.  
  87325. Any thoughts on this?
  87326.  
  87327. Thanks - Larry
  87328.  
  87329.  
  87330. From news@columbia.edu Wed Feb  8 16:05:25 1995
  87331. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13508
  87332.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 8 Feb 1995 12:10:38 -0500
  87333. Received: by apakabar.cc.columbia.edu id AA01976
  87334.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 8 Feb 1995 12:10:29 -0500
  87335. Newsgroups: comp.protocols.kermit.misc
  87336. Path: news.columbia.edu!panix!news.mathworks.com!uunet!wang!news
  87337. From: tat@actcom.co.il (Ram Gura)
  87338. Subject: Using MS kermit with Open VMS kermit
  87339. Organization: ACTCOM - Internet Services in Israel
  87340. Date: Wed, 8 Feb 1995 16:05:25 GMT
  87341. Message-Id: <D3ovD2.AxL@actcom.co.il>
  87342. Sender: news@wang.com
  87343. Lines: 1
  87344. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  87345.  
  87346.  
  87347.  
  87348. From news@columbia.edu Wed Feb  8 12:55:59 1995
  87349. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06069
  87350.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 8 Feb 1995 16:56:32 -0500
  87351. Received: by apakabar.cc.columbia.edu id AA02494
  87352.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 8 Feb 1995 16:56:31 -0500
  87353. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!swiss.ans.net!solaris.cc.vt.edu!news.mathworks.com!news.alpha.net!uwm.edu!caen!hearst.acc.Virginia.EDU!gems.vcu.edu!agnew
  87354. From: agnew@gems.vcu.edu (Brainwave Surfer)
  87355. Newsgroups: comp.protocols.kermit.misc
  87356. Subject: Re: kermit for Nicolet Spectrophotometers
  87357. Message-Id: <1995Feb8.085559.346@gems.vcu.edu>
  87358. Date: 8 Feb 95 08:55:59 -0400
  87359. References: <3h74eo$i7h@ash.lab.r1.fws.gov>
  87360. Organization: Medical College of Virginia
  87361. Lines: 19
  87362. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  87363.  
  87364. In article <3h74eo$i7h@ash.lab.r1.fws.gov>, cox@ash.lab.r1.fws.gov writes:
  87365. >  I am trying to transfer data from an old Nicolet FTIR to a PC in
  87366. > order to obtain the data in the data in ASCII. I need a version of
  87367. > Kermit which will talk to the Nicolet operating system operating system
  87368. > (a 20 word bit) . Does anyone have such a version available
  87369. > Bob Cox   
  87370.  
  87371. I've used XMODEM right out of the box on our Nicolet Pathfinder, a brain
  87372. electrical analyzer.  Some one from England just replied to you that they
  87373. had Kermit for a series of cpus, but look for XMODEM, as Nicolet supplied
  87374. it, they may have for you too.  Good luck.  Ours was an 18 bit machine..
  87375. Nicely done s/w for what it did, tho.  as analysts we were impressed.
  87376. I digress, tho... bye!
  87377.  
  87378.          /^^^\   \ /   Jim Agnew         | AGNEW@RUBY.VCU.EDU  (Internet)
  87379.         /      >  ||   Neurosurgery,     | AGNEW@VCUVAX        (Bitnet)
  87380.    /\_/     '   \  /   MCV-VCU           | This disc will self destruct in
  87381.  /________________>    Richmond, VA, USA | five seconds.  Good luck, Jim..."
  87382.  
  87383.  
  87384. From news@columbia.edu Wed Feb  8 18:03:28 1995
  87385. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14948
  87386.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 8 Feb 1995 19:14:50 -0500
  87387. Received: by apakabar.cc.columbia.edu id AA16796
  87388.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 8 Feb 1995 19:14:48 -0500
  87389. Path: news.columbia.edu!sol.ctr.columbia.edu!news.msfc.nasa.gov!cs.utk.edu!gatech!swrinde!hookup!relay.tor.hookup.net!newsadm
  87390. From: MarkL@VytalNet.com (Mark Lebar)
  87391. Newsgroups: comp.protocols.kermit.misc
  87392. Subject: Question: Error: Can't create work file
  87393. Date: 8 Feb 1995 18:03:28 GMT
  87394. Organization: VytalNet, Inc.
  87395. Lines: 29
  87396. Message-Id: <3hb11g$sv@relay.tor.hookup.net>
  87397. Nntp-Posting-Host: pc-lebar.vytalnet.com
  87398. X-Newsreader: WinVN 0.92.4
  87399. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  87400.  
  87401.  
  87402. I am having a problem performing remote commands on
  87403. a PC using MS-Kermit in server mode.  Whenever I send
  87404. certain commands (eg. rem host del, rem dir) I receive
  87405. the error:
  87406.     Error: Cannot create work file.
  87407.  
  87408. Could someone please enlighten me as to what exactly
  87409. this means.  I thought initially it meant that it
  87410. could not create the '$KERMIT$.TMP' file, but in doing
  87411. some further checking, and downloading the server's
  87412. 'session.log', I found that it did create it sometimes
  87413. (ie. when trying 'rem set ?').
  87414.  
  87415. Could someone please send me e-mail or post a response
  87416. if you know of a possible answer to this perplexing
  87417. problem.
  87418.  
  87419. Thanks (thanks from my client also),
  87420.  
  87421.  
  87422. Mark
  87423.  
  87424. -----------------------------------------------------------------------------------------------------------------------------------------------
  87425. ***********************|***************************************|
  87426. Mark Lebar             |  These views are my own and likely    |
  87427. VytalNet, Inc.         |  not those of VytalNet Inc.           |
  87428. MarkL@VytalNet.com     |                                       |
  87429. ***********************|***************************************|
  87430.  
  87431. From news@columbia.edu Wed Feb  8 05:02:43 1995
  87432. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21716
  87433.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 8 Feb 1995 20:55:34 -0500
  87434. Received: by apakabar.cc.columbia.edu id AA25767
  87435.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 8 Feb 1995 20:55:32 -0500
  87436. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  87437. From: jrd@cc.usu.edu (Joe Doupnik)
  87438. Newsgroups: comp.protocols.kermit.misc
  87439. Subject: Re: Help With Sessions Under MSK
  87440. Message-Id: <1995Feb8.110243.41038@cc.usu.edu>
  87441. Date: 8 Feb 95 11:02:43 MDT
  87442. References: <3h8mda$b48@chopin.udel.edu>
  87443. Organization: Utah State University
  87444. Lines: 23
  87445. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  87446.  
  87447. In article <3h8mda$b48@chopin.udel.edu>, darkstar@chopin.udel.edu (Jerry Alexandratos) writes:
  87448. > I'm using msk v3.14 connecting to various Unix hosts from the pc on my
  87449. > desk.  I've noticed that whenever I switch sessions (using alt-n) that
  87450. > the screen gets cleared.  Now it appears that an xon/xoff is also being
  87451. > sent to the session to have it stop outputting to the screen until one
  87452. > switches back to the session.
  87453.     XON/XOFF will not be sent if you follow the guidelines and say
  87454.     SET FLOW NONE when using Kermit's internal TCP/IP stack. This
  87455.     is normally the case when using supplied macro TELNET (does
  87456.     a set port tcp host ... and set flow none); as can be seen by
  87457.     SHOW MACRO.
  87458.  
  87459. > So, my two questions.  1) how can I stop kermit from clearing the
  87460. > screen whenever I switch sessions?  and 2) how can I have kermit not
  87461. > send the xon/xoff characters and just allow the output to go on
  87462. > whenever I switch a session?
  87463.  
  87464.     There is nothing in MSK to clear the screen when switching
  87465.     sessions, and it doesn't happen to me. Might you have a set of
  87466.     SESSION<digit> macros defined? If so those are executed each
  87467.     time a particular (digit) session is activated/resumed.
  87468.     Joe D.
  87469.  
  87470. From news@columbia.edu Thu Feb  9 01:35:19 1995
  87471. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25272
  87472.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 8 Feb 1995 22:20:11 -0500
  87473. Received: by apakabar.cc.columbia.edu id AA02970
  87474.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 8 Feb 1995 22:20:09 -0500
  87475. Path: news.columbia.edu!sol.ctr.columbia.edu!proto.ida.org!bah.com!uunet!gatech!swiss.ans.net!newsgate.advantis.net!news-m01.ny.us.ibm.net!news
  87476. From: rsande@ibm.net
  87477. Newsgroups: news.groups,news.announce.newsgroups,comp.terminals,comp.lang.rexx.tso,comp.lang.rexx.vm,comp.dcom.lans.misc,comp.dcom.lans.hyperchannel,comp.dcom.lans.token-ring,comp.dcom.modems,comp.dcom.sys.cisco,comp.protocols.ibm,comp.protocols.kermit.misc,bit.listserv.ibm7171
  87478. Subject: RFD: comp.dcom.mainframe.hydra
  87479. Followup-To: news.groups
  87480. Date: 9 Feb 1995 01:35:19 GMT
  87481. Lines: 89
  87482. Distribution: world
  87483. Message-Id: <3hbrgn$25ni@news-s01.ny.us.ibm.net>
  87484. Reply-To: rsande@ibm.net
  87485. Nntp-Posting-Host: slip7-31.fl.us.ibm.net
  87486. Summary: Request for Discussion regardind new usenet group
  87487. Keywords: hydra mainframe vtam sna bisync token-ring dialup
  87488. X-Newsreader: IBM NewsReader/2 v1.07
  87489. Xref: news.columbia.edu news.groups:120546 comp.terminals:6424 comp.dcom.lans.misc:4744 comp.dcom.lans.hyperchannel:120 comp.dcom.lans.token-ring:1636 comp.dcom.modems:80133 comp.dcom.sys.cisco:16583 comp.protocols.ibm:4027 comp.protocols.kermit.misc:1917 bit.listserv.ibm7171:182
  87490. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  87491.  
  87492.  
  87493.                    Request for Discussion (RFD)
  87494.  
  87495.     Newsgroup      : comp.dcom.mainframe.hydra                              
  87496.  
  87497.     Status         : unmoderated
  87498.     Distribution   : Worldwide
  87499.     Summary        : Discussion and technical collaboration for the JDS 
  87500.                      MicroProcessing line of HYDRA 3270 mainframe 
  87501.                      protocol converters including configuration,
  87502.                      problem solving techniques, file transfer 
  87503.                      capabilities, terminal, modem, & printer connection
  87504.                      techniques, custom software programming, operating 
  87505.                      system considerations, and various suggestions for 
  87506.                      unique mainframe dial-up applications. 
  87507.  
  87508.     Proponent      : Rick Sande (rsande@ibm.net)
  87509.  
  87510.  
  87511.     This is a formal request for discussion on the creation of an
  87512.     unmoderated newsgroup, comp.dcom.mainframe.hydra
  87513.  
  87514.     This RFD has been posted in accordance with the Guidelines for Newsgroup
  87515.     Creation. The RFD is being posted to the following relevant news groups:
  87516.  
  87517.                   news.announce.newsgroups
  87518.                   news.groups
  87519.                   comp.terminals
  87520.                   comp.lang.rexx.tso
  87521.                   comp.lang.rexx.vm
  87522.                   comp.dcom.lans.misc
  87523.                   comp.dcom.lans.hyperchannel
  87524.                   comp.dcom.lans.token-ring
  87525.                   comp.dcom.modems
  87526.                   comp.dcom.sys.cisco
  87527.                   comp.protocols.ibm
  87528.                   comp.protocols.kermit.misc
  87529.                   bit.listserv.ibm7171
  87530.  
  87531.  
  87532.    Discussion will take place in news.groups
  87533.  
  87534.  
  87535.                                CHARTER
  87536.  
  87537.   The comp.sys.dcom.mainframe.hydra newsgroup will be open to discussion of 
  87538.   technical aspects and practical usage of the HYDRA 3270 mainframe 
  87539.   protocol converters manufactured by JDS MicroProcessing. 
  87540.  
  87541.   Specific subjects will include but are not limited to:
  87542.   
  87543.   Modem Configuration for proper dial-up support to mainframe applications
  87544.   Building and exchange of custom terminal definitions amongst members
  87545.   Simultaneous operation of terminal & 328x printer on a single connection
  87546.   (Token ring) Lan to Mainframe connectivity.
  87547.   Utilizing M/F DASD space as a 2nd PC Disk drive with HYDRANET software
  87548.   Hardware trouble shooting and various other "gotchas"
  87549.   System Generation examples for VM/VSE/MVS/MVT VTAM CICS applications.
  87550.   Tech Bulletin information re-posted with permission from JDSM 
  87551.   Microcode upgrade & regression procedures
  87552.   Various security considerations for classified mainframe environments
  87553.   Data-routing and connection to other host types (non-ibm-3270)
  87554.  
  87555.                           RATIONALE 
  87556.  
  87557.   The group comp.dcom.mainframe.hydra is mainly concerned with nuts & 
  87558.   bolts discussion on the topic of "getting the most out of your hardware" 
  87559.   allowing members to freely exchange suggestions and configuration 
  87560.   samples to those less knowledgeable of the product. 
  87561.  
  87562.                         PROCEDURE 
  87563.  
  87564.   After a discussion period of 21 - 30 days, which should take 
  87565.   place in the news.groups newsgroup, if there are no overwhelming
  87566.   objections to this proposed new group, there will be a call for 
  87567.   votes (CFV) posted to the same groups as this RFD, the voting 
  87568.   period will be at least 21 days. If the group passes by 
  87569.   receiving 100 more YES votes than NO votes and at least twice as 
  87570.   many YES votes as NO votes, the new group will be created. 
  87571.  
  87572.  
  87573.   Thank you for your time. 
  87574.  
  87575.   Rick Sande                  rsande@ibm.net 
  87576.  
  87577.  
  87578. ---
  87579.  
  87580.  
  87581.  
  87582. From news@columbia.edu Wed Feb  8 21:01:42 1995
  87583. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28316
  87584.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 8 Feb 1995 23:29:04 -0500
  87585. Received: by apakabar.cc.columbia.edu id AA08405
  87586.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 8 Feb 1995 23:28:59 -0500
  87587. Path: news.columbia.edu!sol.ctr.columbia.edu!news.msfc.nasa.gov!elroy.jpl.nasa.gov!decwrl!tribune.usask.ca!quartz.ucs.ualberta.ca!unixg.ubc.ca!sundae!rodn
  87588. From: rodn@dawsun.triumf.ca (Rod B. Nussbaumer)
  87589. Newsgroups: comp.protocols.kermit.misc
  87590. Subject: MSK response to term type query in scripts
  87591. Date: 8 Feb 1995 21:01:42 GMT
  87592. Organization: The University of British Columbia
  87593. Lines: 29
  87594. Message-Id: <3hbbfm$pur@nnrp.ucs.ubc.ca>
  87595. Reply-To: rodn@sundae.triumf.ca
  87596. Nntp-Posting-Host: sundae.triumf.ca
  87597. X-Newsreader: TIN [version 1.2 PL2]
  87598. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  87599.  
  87600. Dear Kermit gurus:
  87601.  
  87602. I am having a problem writing a script to do a somewhat complex 
  87603. auto-login procedure.  I have concluded that the hang-up is happening 
  87604. because one host I am logging into does a terminal type query (in a VMS 
  87605. DCL script, it is SET TERM /INQUIRE).  To my way of thinking, this should 
  87606. elicit a transparent response for the correct terminal type, without 
  87607. intervention from the script.  Well I don't think it is doing this, and 
  87608. there is nothing documented that says it should.
  87609.  
  87610. The symptom of this situation is that the two systems reach a deadlock 
  87611. condition.  The VAX host is waiting for the reply to the query, and the 
  87612. PC is waiting for the correct bits of text from the login procedure.  It 
  87613. would be fairly messy to try to get the correct escape sequence for the 
  87614. current terminal type from within the MSK script (I'm pretty sure).  Is 
  87615. there a clean way of solving this problem?  Is there a good reason for 
  87616. the terminal-type query to not be handled transparently, as I've 
  87617. suggested above?  Does this sound like the beginning of a request for a 
  87618. new feature? :-)
  87619.  
  87620. Thanks in advance for your help,
  87621.     ---   Rod.
  87622.  
  87623. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  87624.  Rod Nussbaumer, Programmer/Technologist     Internet: rodn@sundae.triumf.ca  
  87625.  TRIUMF --- University of British Columbia,     Phone: (604)222-7449
  87626.  Vancouver, BC, Canada.                           FAX: (604)222-7307
  87627. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  87628.  
  87629.  
  87630. From news@columbia.edu Thu Feb  2 00:17:15 1995
  87631. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20427
  87632.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 9 Feb 1995 08:52:40 -0500
  87633. Received: by apakabar.cc.columbia.edu id AA14801
  87634.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 9 Feb 1995 08:52:38 -0500
  87635. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!swiss.ans.net!singapura.singnet.com.sg!raffles.technet.sg!news.np.ac.sg!93202707
  87636. From: 93202707@np.ac.sg (Loke Teng Yan)
  87637. Newsgroups: comp.protocols.kermit.misc
  87638. Subject: No Exit When Carrier Detect
  87639. Date: 2 Feb 1995 00:17:15 GMT
  87640. Organization: Ngee Ann Polytechnic, Singapore
  87641. Lines: 14
  87642. Message-Id: <3gp8ab$ihi@nova.np.ac.sg>
  87643. Nntp-Posting-Host: comet.np.ac.sg
  87644. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  87645.  
  87646.  
  87647. Hello,
  87648.  
  87649. I've have a problem with CKermit for OS/2 (190). Sometimes when I finish
  87650. my file transfers, I tend to forget the proper commands to get back to my
  87651. connection screen. Instead of pressing "fin", then "c", I press "fin" and
  87652. "ex". I remember that it is possible to configure the program such that when
  87653. a carrier is detected, it will ask the user to confirm the "exit" command if
  87654. it is executed. How can I do that? Thanks for any answers.
  87655. --
  87656. Teng Yan, Loke aka Cow      | Electronic & Computer Engineering Polytechnic
  87657. 93202707@np.ac.sg | yan%cyrus%linuxpub@csah.com | Republic of Singapore       
  87658. http://www-bprc.mps.ohio-state.edu/cgi-bin/hpp?yan_page.html | hello world.
  87659. ------------------------------------------------------------------------------
  87660.  
  87661. From news@columbia.edu Thu Feb  9 13:56:23 1995
  87662. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20586
  87663.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 9 Feb 1995 08:56:30 -0500
  87664. Received: by apakabar.cc.columbia.edu id AA15045
  87665.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 9 Feb 1995 08:56:27 -0500
  87666. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  87667. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  87668. Newsgroups: comp.protocols.kermit.misc
  87669. Subject: Re: MSK response to term type query in scripts
  87670. Date: 9 Feb 1995 13:56:23 GMT
  87671. Organization: Columbia University
  87672. Lines: 20
  87673. Message-Id: <3hd6u7$em1@apakabar.cc.columbia.edu>
  87674. References: <3hbbfm$pur@nnrp.ucs.ubc.ca>
  87675. Nntp-Posting-Host: watsun.cc.columbia.edu
  87676. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  87677.  
  87678. In article <3hbbfm$pur@nnrp.ucs.ubc.ca>,
  87679. Rod B. Nussbaumer <rodn@sundae.triumf.ca> wrote:
  87680. >I am having a problem writing a script to do a somewhat complex 
  87681. >auto-login procedure.  I have concluded that the hang-up is happening 
  87682. >because one host I am logging into does a terminal type query (in a VMS 
  87683. >DCL script, it is SET TERM /INQUIRE).  To my way of thinking, this should 
  87684. >elicit a transparent response for the correct terminal type, without 
  87685. >intervention from the script.
  87686. >
  87687. That would be nice, but it doesn't happen.  The terminal emulator is not
  87688. active except during the CONNECT and REPLAY commands.  So your script has
  87689. to handle terminal-type enquiries itself.
  87690.  
  87691. For further details, please read section 18 of the KERMIT.BWR file that
  87692. comes with MS-DOS Kermit 3.14.  For examples of VMS login scripts that
  87693. handle the terminal ID query, see the manual, "Using MS-DOS Kermit", or
  87694. "Using C-Kermit", or for that matter, look at the VMSLOGIN macro that
  87695. comes with the C-Kermit 5A(190) CKERMIT.INI (.kermrc) file.
  87696.  
  87697. - Frank
  87698.  
  87699. From news@columbia.edu Thu Feb  9 14:02:55 1995
  87700. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21005
  87701.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 9 Feb 1995 09:03:00 -0500
  87702. Received: by apakabar.cc.columbia.edu id AA15578
  87703.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 9 Feb 1995 09:02:58 -0500
  87704. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  87705. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  87706. Newsgroups: comp.protocols.kermit.misc
  87707. Subject: Re: No Exit When Carrier Detect
  87708. Date: 9 Feb 1995 14:02:55 GMT
  87709. Organization: Columbia University
  87710. Lines: 16
  87711. Message-Id: <3hd7af$f6m@apakabar.cc.columbia.edu>
  87712. References: <3gp8ab$ihi@nova.np.ac.sg>
  87713. Nntp-Posting-Host: watsun.cc.columbia.edu
  87714. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  87715.  
  87716. In article <3gp8ab$ihi@nova.np.ac.sg>, Loke Teng Yan <93202707@np.ac.sg> wrote:
  87717. >I've have a problem with CKermit for OS/2 (190). Sometimes when I finish
  87718. >my file transfers, I tend to forget the proper commands to get back to my
  87719. >connection screen. Instead of pressing "fin", then "c", I press "fin" and
  87720. >"ex". I remember that it is possible to configure the program such that
  87721. >when a carrier is detected, it will ask the user to confirm the "exit"
  87722. >command if it is executed. How can I do that? Thanks for any answers.
  87723. >
  87724. You're welcome.
  87725.  
  87726. The command is:
  87727.  
  87728.   SET EXIT WARNING ON
  87729.  
  87730. - Frank
  87731.  
  87732.  
  87733. From news@columbia.edu Thu Feb  9 02:31:06 1995
  87734. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01958
  87735.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 9 Feb 1995 11:36:28 -0500
  87736. Received: by apakabar.cc.columbia.edu id AA29916
  87737.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 9 Feb 1995 11:36:21 -0500
  87738. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!swiss.ans.net!gatech!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  87739. From: jrd@cc.usu.edu (Joe Doupnik)
  87740. Newsgroups: comp.protocols.kermit.misc
  87741. Subject: Re: Question: Error: Can't create work file
  87742. Message-Id: <1995Feb9.083106.41161@cc.usu.edu>
  87743. Date: 9 Feb 95 08:31:06 MDT
  87744. References: <3hb11g$sv@relay.tor.hookup.net>
  87745. Organization: Utah State University
  87746. Lines: 28
  87747. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  87748.  
  87749. In article <3hb11g$sv@relay.tor.hookup.net>, MarkL@VytalNet.com (Mark Lebar) writes:
  87750. > I am having a problem performing remote commands on
  87751. > a PC using MS-Kermit in server mode.  Whenever I send
  87752. > certain commands (eg. rem host del, rem dir) I receive
  87753. > the error:
  87754. >     Error: Cannot create work file.
  87755. > Could someone please enlighten me as to what exactly
  87756. > this means.  I thought initially it meant that it
  87757. > could not create the '$KERMIT$.TMP' file, but in doing
  87758. > some further checking, and downloading the server's
  87759. > 'session.log', I found that it did create it sometimes
  87760. > (ie. when trying 'rem set ?').
  87761. > Could someone please send me e-mail or post a response
  87762. > if you know of a possible answer to this perplexing
  87763. > problem.
  87764. ------------
  87765.     You are correct about the particular file. MS-DOS Kermit
  87766. prior to v3.14 (current) used the current directory for that file.
  87767. V3.14 tries first for the directory "TEMP" found in the DOS Environment
  87768. and if not present then the current directory. 
  87769.     Rather than saying REM HOST DEL say REM DEL. REM SET does not
  87770. involve a temporary directory, only DOS commands used by Kermit to
  87771. do the work create a temp directory to hold output for relaying back
  87772. to the Kermit client.
  87773.     Joe D.
  87774.  
  87775. From news@columbia.edu Thu Feb  9 02:34:04 1995
  87776. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01975
  87777.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 9 Feb 1995 11:36:44 -0500
  87778. Received: by apakabar.cc.columbia.edu id AA29924
  87779.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 9 Feb 1995 11:36:26 -0500
  87780. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!swiss.ans.net!gatech!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  87781. From: jrd@cc.usu.edu (Joe Doupnik)
  87782. Newsgroups: comp.protocols.kermit.misc
  87783. Subject: Re: MSK response to term type query in scripts
  87784. Message-Id: <1995Feb9.083404.41162@cc.usu.edu>
  87785. Date: 9 Feb 95 08:34:04 MDT
  87786. References: <3hbbfm$pur@nnrp.ucs.ubc.ca>
  87787. Organization: Utah State University
  87788. Lines: 15
  87789. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  87790.  
  87791. In article <3hbbfm$pur@nnrp.ucs.ubc.ca>, rodn@dawsun.triumf.ca (Rod B. Nussbaumer) writes:
  87792. > Dear Kermit gurus:
  87793. > I am having a problem writing a script to do a somewhat complex 
  87794. > auto-login procedure.  I have concluded that the hang-up is happening 
  87795. > because one host I am logging into does a terminal type query (in a VMS 
  87796. > DCL script, it is SET TERM /INQUIRE).  To my way of thinking, this should 
  87797. > elicit a transparent response for the correct terminal type, without 
  87798. > intervention from the script.  Well I don't think it is doing this, and 
  87799. > there is nothing documented that says it should.
  87800.     The documentation states clearly that terminal emulation is active
  87801. ONLY in Connect mode, not otherwise. Scripts do not run in Connect mode.
  87802. Thus you need to detect the ESC c  terminal type query and make a standard
  87803. response (listed in the docs).
  87804.     Joe D.
  87805.  
  87806. From news@columbia.edu Thu Feb  9 15:58:02 1995
  87807. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06719
  87808.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 9 Feb 1995 12:39:52 -0500
  87809. Received: by apakabar.cc.columbia.edu id AA06503
  87810.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 9 Feb 1995 12:39:50 -0500
  87811. Path: news.columbia.edu!panix!news.mathworks.com!news.alpha.net!uwm.edu!news.moneng.mei.com!howland.reston.ans.net!math.ohio-state.edu!news.acns.nwu.edu!ftpbox!mothost!delphinium.cig.mot.com!tapir!broezell
  87812. From: broezell@tapir.cig.mot.com (Ken V. Broezell)
  87813. Newsgroups: comp.protocols.kermit.misc
  87814. Subject: Kermit & Pagers
  87815. Date: 9 Feb 1995 15:58:02 GMT
  87816. Organization: Motorola Inc., Cellular Infrastructure Group
  87817. Lines: 13
  87818. Message-Id: <3hde2a$ctn@delphinium.cig.mot.com>
  87819. References: <3h727s$ql4$1@heifetz.msen.com>
  87820. Nntp-Posting-Host: tapir.rtsg.mot.com
  87821. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  87822.  
  87823. Is there anyway to get kermit to dial digital pagers cleanly. I have
  87824. been playing with a script to page both Sky pagers and regular digital
  87825. pagers. The paging works most of the time but I always get the message
  87826. "DIAL Failure: DIAL TIMEOUT interval expired" I know why I'm getting
  87827. this message but was wondering if there is a way for kermit to complete
  87828. without such a message. 
  87829.  
  87830. Thanks in advance.
  87831. -- 
  87832. +-----------------+---------------------------------+--------------------------+
  87833. |     .     .     | Kenny Broezell                  | alt phone:(708) 632-5390 |
  87834. |    ...   ...    | Motorola Cellular Support Center| fax      :(708) 632-3157 |
  87835. |   ..... .....   | 1501 Shure Drive                | alt fax  :(708) 632-7466 |
  87836.  
  87837. From news@columbia.edu Fri Feb 10 00:32:45 1995
  87838. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08672
  87839.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 9 Feb 1995 21:44:06 -0500
  87840. Received: by apakabar.cc.columbia.edu id AA27366
  87841.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 9 Feb 1995 21:44:04 -0500
  87842. Newsgroups: comp.protocols.kermit.misc
  87843. Path: news.columbia.edu!panix!news.mathworks.com!news.duke.edu!godot.cc.duq.edu!newsfeed.pitt.edu!gatech!swrinde!howland.reston.ans.net!math.ohio-state.edu!scipio.cyberstore.ca!nntp.cs.ubc.ca!news.UVic.CA!sol!klassen
  87844. From: klassen@sol.UVic.CA (Melvin Klassen)
  87845. Subject: Re: CMS Kermit
  87846. Message-Id: <1995Feb10.003245.1215@sol.UVic.CA>
  87847. Sender: news@sol.UVic.CA
  87848. Nntp-Posting-Host: sol
  87849. Organization: University of Victoria, Victoria B.C. CANADA
  87850. References: <17337A963.1CMC3466@ibm.mtsac.edu>
  87851. Date: Fri, 10 Feb 95 00:32:45 GMT
  87852. Lines: 26
  87853. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  87854.  
  87855. 1CMC3466@ibm.mtsac.edu (Curtiss Cicco) writes:
  87856. > Are there any hardware or software limitations that would
  87857. > cause an average receive packet-size of 1915 bytes when it is set
  87858. > at 9024? That is from CMS kermit to MSK 3.14
  87859.  
  87860. Yes.  Although the System/370 I/O architecture allows 65,635 bytes 
  87861. per I/O request, there are limitations.
  87862.  
  87863. The CMS macros for console I/O have limits:
  87864.  - the LINERD (read a line from the console) macro has a limit of 2030,
  87865.  - the LINEWRT (write a line to the console) macro has a limit of 1920,
  87866.    which is 24 (rows) times 80 (columns).
  87867.  
  87868. Probably, the I/O controllers on the mainframe also have similar limits,
  87869. probably due to the size of internal buffers, etc.
  87870.  
  87871. I sense that if you draw a graph of elapsed-time versus packet-size,
  87872. you'll see exponential-decay, i.e., using 80-byte packets will be slow, 
  87873. using 160-byte packets will be noticeably faster than 80-bytes,
  87874. using 1K packets will be much faster than 80-bytes, 
  87875. but using 2K packets will only be slightly faster than 1K, 
  87876. assuming no "retries" occur.
  87877.  
  87878. So, it won't matter (too much) that you can't achieve 9024-byte packets.  :-)
  87879. The important thing is to avoid "small" packet-sizes, 
  87880. if you like good performance.
  87881.  
  87882. From news@columbia.edu Fri Feb 10 12:59:53 1995
  87883. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04534
  87884.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 10 Feb 1995 08:25:37 -0500
  87885. Received: by apakabar.cc.columbia.edu id AA14797
  87886.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 10 Feb 1995 08:25:35 -0500
  87887. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!darwin.sura.net!news.cldc.howard.edu!gg
  87888. From: gg@sulu.cldc.howard.edu (George Gary)
  87889. Newsgroups: comp.protocols.kermit.misc
  87890. Subject: kermit and VM ESA 2.1
  87891. Date: 10 Feb 1995 12:59:53 GMT
  87892. Organization: Howard University, Computer Learning & Design Center
  87893. Lines: 15
  87894. Message-Id: <3hfo09$h1e@sulu.cldc.howard.edu>
  87895. Nntp-Posting-Host: scs.howard.edu
  87896. X-Newsreader: TIN [version 1.2 PL2]
  87897. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  87898.  
  87899. We have an IBM 3090 running VM ESA 2.1 and SIM3278 Version 1 
  87900. Release 2.1.  We downloaded and installed kermit 4.31 from the
  87901. sources at Columbia.  When we execute the new kermit from a 
  87902. telnet session,  the session is immediately closes.  This 
  87903. happens no matter where we telnet from and with various 
  87904. telnet packages including unix and pc platforms.  The same
  87905. kermit works fine with the dialin to a Series I Yale/Ascii
  87906. front end or through an IBM 7171 frontend. I understand this
  87907. kermit works fine under VM 370.  Is there anyone out there
  87908. with a similar configuration with kermit working accross
  87909. telnet?  Please help
  87910.  
  87911. George Gary (703-836-1071, fax 703-836-1146)
  87912.  
  87913.  
  87914.  
  87915. From news@columbia.edu Sat Feb 11 00:01:21 1995
  87916. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17144
  87917.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 10 Feb 1995 19:01:25 -0500
  87918. Received: by apakabar.cc.columbia.edu id AA13650
  87919.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 10 Feb 1995 19:01:24 -0500
  87920. Path: news.columbia.edu!watsun.cc.columbia.edu!pepmnt
  87921. From: pepmnt@watsun.cc.columbia.edu (John Chandler)
  87922. Newsgroups: comp.protocols.kermit.misc
  87923. Subject: Re: kermit and VM ESA 2.1
  87924. Date: 11 Feb 1995 00:01:21 GMT
  87925. Organization: Columbia University
  87926. Lines: 10
  87927. Message-Id: <3hguoh$dae@apakabar.cc.columbia.edu>
  87928. References: <3hfo09$h1e@sulu.cldc.howard.edu>
  87929. Nntp-Posting-Host: watsun.cc.columbia.edu
  87930. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  87931.  
  87932.  
  87933. It sounds as if the attempt to detect the controller type is killing
  87934. the session.  As of release 2.0, SIM3278/TCPIP did not support the
  87935. type of detection that Kermit tries, but I never heard that it would
  87936. fail so abysmally.  Perhaps 2.1 is different.  In any case, you need
  87937. to force Kermit to settle on SERIES1 for the controller type anyway,
  87938. so refer to the note dated 89/2/27 in IKCKER BWR.  It explains how
  87939. to do that -- extract the example into your KERMIT LOCAL.
  87940.  
  87941.                 John Chandler
  87942.  
  87943. From news@columbia.edu Fri Feb 10 20:35:20 1995
  87944. Received: from apakabar.cc.columbia.edu (apakabar-ether.cc.columbia.edu) by watsun.cc.columbia.edu with SMTP id AA29069
  87945.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 10 Feb 1995 23:46:42 -0500
  87946. Received: by apakabar.cc.columbia.edu id AA06814
  87947.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 10 Feb 1995 23:46:39 -0500
  87948. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!news.intercon.com!panix!news.mathworks.com!zombie.ncsc.mil!paladin.american.edu!darwin.sura.net!news.larc.nasa.gov!xanth.cs.odu.edu!venus.ee.odu.edu!silsbee
  87949. From: silsbee@venus.ee.odu.edu (Peter L. Silsbee)
  87950. Newsgroups: comp.protocols.kermit.misc
  87951. Subject: detect BUSY?
  87952. Date: 10 Feb 1995 20:35:20 GMT
  87953. Organization: Old Dominion University, Department of Computer Science
  87954. Lines: 15
  87955. Message-Id: <3hgim8$cnv@xanth.cs.odu.edu>
  87956. Nntp-Posting-Host: venus.ee.odu.edu
  87957. X-Newsreader: TIN [version 1.2 PL2]
  87958. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  87959.  
  87960. I pretty much call just one number with
  87961. my modem. Most of the time, that number
  87962. is busy :( When it isn't busy, it frequently
  87963. takes upwards of 45 seconds to connect. My 
  87964. current kermit script redials after 60 seconds
  87965. if my wait-for-connect-message fails. But most
  87966. of the time it's a busy signal which I ought
  87967. to be able to detect and redial sooner. Any
  87968. hints on how to simultaneously wait for the
  87969. connect message but break out of the loop
  87970. if a busy signal is detected?
  87971.  
  87972. Thanks,
  87973. Peter
  87974.  
  87975.  
  87976. From news@columbia.edu Sat Feb 11 14:40:33 1995
  87977. Received: from apakabar.cc.columbia.edu (apakabar-ether.cc.columbia.edu) by watsun.cc.columbia.edu with SMTP id AA20190
  87978.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 11 Feb 1995 09:45:50 -0500
  87979. Received: by apakabar.cc.columbia.edu id AA17298
  87980.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 11 Feb 1995 09:45:48 -0500
  87981. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!howland.reston.ans.net!news.sprintlink.net!news.usit.net!use.usit.net!howe
  87982. From: howe@usit.net (Herb Howe)
  87983. Newsgroups: comp.protocols.kermit.misc
  87984. Subject: Re: Kermit sliding windows on Mac
  87985. Date: 11 Feb 1995 14:40:33 GMT
  87986. Organization: United States Internet, Inc.
  87987. Lines: 27
  87988. Message-Id: <3hii92$ani@news.usit.net>
  87989. References: <3gqrvl$nj0@news.usit.net> <3h0bv8$nvs@apakabar.cc.columbia.edu>
  87990. Nntp-Posting-Host: use.usit.net
  87991. X-Newsreader: TIN [version 1.2 PL2]
  87992. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  87993.  
  87994. Frank da Cruz (fdc@watsun.cc.columbia.edu) wrote:
  87995. : Mac Kermit is not well-maintained due to a persistent lack of
  87996. : programmers who are both willing and able to do the job.  I hope
  87997.  
  87998. : Qualified Macintosh programmers are always welcome to look at
  87999. : Mac Kermit and make any contributions they can, the most urgently
  88000. : needed ones being bug fixes.  Contact me if you are interested.
  88001.  
  88002.  
  88003. For many Mac users, a public-domain Communications Toolbox (CTB) 
  88004. Kermit tool that includes all of the features of the current Kermit 
  88005. protocol would be more useful than a working MacKermit.  A CTB tool 
  88006. may be used with most Mac terminal programs (ZTerm being a mojor 
  88007. exception) and a Kermit tool would allow file transfers at ZModem 
  88008. speeds without having to switch to MacKermit just to do transfers.
  88009.  
  88010. It would probably be easier to find volunteers to work on a Kermit CTB 
  88011. Tool than to work on MacKermit.  The tool involves primarily the 
  88012. Kermit file transfer protocol without the additional programming 
  88013. overhead of a complete terminal emulation.  As far as I have been able 
  88014. to determine, there is currently no Mac program or CTB Tool that 
  88015. supports sliding windows, for example.  Thus, for Mac users, ZModem is 
  88016. definitely faster than Kermit since there is no way to completely tune 
  88017. the Mac end of a Kermit transfer for speed.
  88018.  
  88019. Any possibility of the Kermit project producing a public-domain CTB 
  88020. Kermit Tool?
  88021.  
  88022. From news@columbia.edu Fri Feb 10 10:46:34 1995
  88023. Received: from apakabar.cc.columbia.edu (apakabar-ether.cc.columbia.edu) by watsun.cc.columbia.edu with SMTP id AA26963
  88024.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 11 Feb 1995 12:45:21 -0500
  88025. Received: by apakabar.cc.columbia.edu id AA27946
  88026.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 11 Feb 1995 12:45:20 -0500
  88027. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!Germany.EU.net!zib-berlin.de!ceres.fokus.gmd.de!nntp.gmd.de!news.rwth-aachen.de!news.rhrz.uni-bonn.de!mpifr-bonn.mpg.de!comma.rhein.de!news
  88028. From: olboeter@comma.rhein.de (LOX)
  88029. Newsgroups: comp.protocols.tcp-ip.ibmpc,comp.protocols.ibm,comp.protocols.kermit.misc
  88030. Subject: Re: DOS TSR remote file xfer???
  88031. Date: 10 Feb 1995 10:46:34 GMT
  88032. Organization: Regionalnetz Bonn eV
  88033. Lines: 46
  88034. Message-Id: <3hfg6a$nt2@comma.rhein.de>
  88035. References: <3gliql$df3@crl12.crl.com>
  88036. Nntp-Posting-Host: larsol.comma.rhein.de
  88037. X-Newsreader: WinVN NT 0.92.6
  88038. Xref: news.columbia.edu comp.protocols.tcp-ip.ibmpc:33605 comp.protocols.ibm:4051 comp.protocols.kermit.misc:1930
  88039. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  88040.  
  88041.  
  88042. Hi Paul.
  88043. Do You have thought about one of those administration tools,
  88044. e.g. Microsoft's SMS (Systems Management Server) which can
  88045. distribute files and whole program packages to clients?
  88046. It can be used in LANs, WANs and so on (WAN: e.g. using
  88047. RAS-Services). Those packages will not be only distributed
  88048. but also installed automatically on those clients. SMS
  88049. is especially designed for such tasks you described.
  88050. Besides that there are some nice features like automatic
  88051. inventory of soft- and hardware, network tools, user support
  88052. and so on. SMS can be installed on PCs using Windows NT 3.5 Server.
  88053. Have a try
  88054. bye
  88055.  
  88056. Lars Olboeter
  88057. olboeter@comma.rhein.de
  88058.  
  88059. In article <3gliql$df3@crl12.crl.com>, cgi@crl.com (Paul Smith) says:
  88060. >
  88061. >Hi,
  88062. >
  88063. >I have the job of figuring out a solution for 40,000 DOS boxes, that all have
  88064. >varying and unknow HW or SW (windows or not) configuration for:
  88065. >
  88066. >1) remote file xfer, in and out and delete.
  88067. >
  88068. >2) Support preferably a central Unix box to on-demand dial any of the remote
  88069. >DOS boxes and send fetch files then hang-up.
  88070. >
  88071. >3) prefably have a simple passwd on the DOS box to filter out teh un-wanted.
  88072. >
  88073. >Solutions could be:
  88074. >
  88075. >a) TSR based SLIP+ ftpd
  88076. >
  88077. >b) TSR based kermit in server mode.  This one sounds the most plausable given
  88078. >a need for a small RAM foot print...  
  88079. >
  88080. >The kermit folks have any ideas?
  88081. >
  88082. >c) Any of the old LAN manager stuff help here as a TSR remote tool?
  88083. >
  88084. >Thanks..
  88085. >
  88086. >
  88087.  
  88088. From news@columbia.edu Sat Feb 11 03:11:15 1995
  88089. Received: from apakabar.cc.columbia.edu (apakabar-ether.cc.columbia.edu) by watsun.cc.columbia.edu with SMTP id AA12021
  88090.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 11 Feb 1995 19:39:36 -0500
  88091. Received: by apakabar.cc.columbia.edu id AA28251
  88092.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 11 Feb 1995 19:39:34 -0500
  88093. Newsgroups: comp.protocols.kermit.misc
  88094. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!panix!news.mathworks.com!udel!gatech!howland.reston.ans.net!ix.netcom.com!netcom.com!taliesin
  88095. From: taliesin@netcom.com (Glenn R. Stone)
  88096. Subject: Re: Kermit & Pagers
  88097. Message-Id: <taliesinD3tFIr.8Mv@netcom.com>
  88098. Organization: The Group W Bench
  88099. References: <3h727s$ql4$1@heifetz.msen.com> <3hde2a$ctn@delphinium.cig.mot.com>
  88100. Date: Sat, 11 Feb 1995 03:11:15 GMT
  88101. Lines: 18
  88102. Sender: taliesin@netcom15.netcom.com
  88103. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  88104.  
  88105. In <3hde2a$ctn@delphinium.cig.mot.com> broezell@tapir.cig.mot.com (Ken V. Broezell) writes:
  88106.  
  88107. >Is there anyway to get kermit to dial digital pagers cleanly. I have
  88108. >been playing with a script to page both Sky pagers and regular digital
  88109. >pagers. The paging works most of the time but I always get the message
  88110. >"DIAL Failure: DIAL TIMEOUT interval expired" I know why I'm getting
  88111. >this message but was wondering if there is a way for kermit to complete
  88112. >without such a message. 
  88113.  
  88114. Change the dial script to add a semicolon to the dial string, and to
  88115. expect "OK" as an exit-successful condition rather than CONNECT....
  88116. The semicolon tells a Hayes-compatible modem "go do this dial script 
  88117. and then come back and tell me "ok" (leaving the phone off-hook) 
  88118. instead of trying to connect"... and I s'pose you'll want to output
  88119. an ATH0 (or do a hangup) at the end of the script...
  88120.  
  88121. -- Glenn R. Stone (taliesin@netcom.com)
  88122. kermit kinda guy on occasion
  88123.  
  88124. From news@columbia.edu Sat Feb 11 20:58:13 1995
  88125. Received: from apakabar.cc.columbia.edu (apakabar-ether.cc.columbia.edu) by watsun.cc.columbia.edu with SMTP id AA12671
  88126.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 11 Feb 1995 19:57:52 -0500
  88127. Received: by apakabar.cc.columbia.edu id AA29457
  88128.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 11 Feb 1995 19:57:51 -0500
  88129. Newsgroups: comp.protocols.kermit.misc
  88130. Path: news.columbia.edu!sol.ctr.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!news.sprintlink.net!howland.reston.ans.net!ix.netcom.com!netcom.com!jefe
  88131. From: jefe@netcom.com (Pablo)
  88132. Subject: VAX Kermit 5a xmit speed
  88133. Message-Id: <jefeD3usx1.DDq@netcom.com>
  88134. Organization: NETCOM On-line Communication Services (408 261-4700 guest)
  88135. X-Newsreader: TIN [version 1.2 PL1]
  88136. Date: Sat, 11 Feb 1995 20:58:13 GMT
  88137. Lines: 21
  88138. Sender: jefe@netcom2.netcom.com
  88139. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  88140.  
  88141.  
  88142.     Question.  I occasionally log onto a VAX computer and try to 
  88143. transfer files using KERMIT v5a (on the vax, of course) to my desktop 
  88144. system.  I use PCPLUS for windows.  No matter WHAT I do, the vax kermit 
  88145. throughput is pathetically slow!  I get MAYBE 200 characters a sec (a 
  88146. little over 1200 baud) and I've got a 14.4k modem, and I have a 14.4k 
  88147. connection established.  Is this a fact of life with this version of VAX 
  88148. kermit or is there something I'm failing to set.  I've played with 
  88149. 'window-size' 'flow-control' 'packet-length'..everything I can think of 
  88150. which could affect the transmission rate.  The only thing that affected 
  88151. throughput at all was the 'set window-size' command.  When I dropped it 
  88152. from the max value of 31 to the min value of 1 my throughput went up to 
  88153. around 1200 baud.  Yes that's right, up to 1200 baud.  Any help on this 
  88154. matter would be greatly appreciated.  Thanks.
  88155.  
  88156.  
  88157. -- 
  88158.  
  88159. **************************
  88160. *Thoughts by:  Pablo (tm)*
  88161. *                        *
  88162. * If 'meat is murder',   *
  88163. * then so are leather    *
  88164. * jackets, fur coats and *
  88165. * paintbrushes...        *
  88166. *        ...Mr Wonderful *  
  88167. **************************
  88168.  
  88169. From news@columbia.edu Sat Feb 11 19:07:15 1995
  88170. Received: from apakabar.cc.columbia.edu (apakabar-ether.cc.columbia.edu) by watsun.cc.columbia.edu with SMTP id AA12833
  88171.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 11 Feb 1995 20:00:43 -0500
  88172. Received: by apakabar.cc.columbia.edu id AA29661
  88173.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 11 Feb 1995 20:00:42 -0500
  88174. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!ddsw1!usenet
  88175. From: knewman@mcs.com
  88176. Newsgroups: comp.protocols.kermit.misc
  88177. Subject: How to do Underlines with C-Kermit OS/2
  88178. Date: 11 Feb 1995 19:07:15 GMT
  88179. Organization: MCSNet Services
  88180. Lines: 22
  88181. Message-Id: <3hj1t4$h83@News1.mcs.com>
  88182. Reply-To: knewman@mcs.com
  88183. Nntp-Posting-Host: knewman.pr.mcs.net
  88184. X-Newsreader: IBM NewsReader/2 v1.09
  88185. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  88186.  
  88187. Is there an Underline option in C-Kermit for OS/2??  I have an application
  88188. that I am trying to use that displays underlines at the console, but not when 
  88189. I'm using C-kermit in VT220 mode. For example, at the terminal it looks 
  88190. like this:
  88191.  
  88192. Name:_____________________
  88193.  
  88194.  
  88195. C-Kermit looks like this:
  88196.  
  88197. Name:
  88198.  
  88199.  
  88200. At one time I used reflections with a /U for underline is there a way to 
  88201. duplicate this?
  88202.  
  88203.  
  88204. Thanks,
  88205.  
  88206.  
  88207. Kevin Newman
  88208.  
  88209.  
  88210. From news@columbia.edu Sat Feb 11 13:21:12 1995
  88211. Received: from apakabar.cc.columbia.edu (apakabar-ether.cc.columbia.edu) by watsun.cc.columbia.edu with SMTP id AA16949
  88212.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 11 Feb 1995 21:48:21 -0500
  88213. Received: by apakabar.cc.columbia.edu id AA06572
  88214.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 11 Feb 1995 21:48:19 -0500
  88215. Path: news.columbia.edu!panix!news.mathworks.com!udel!news.sprintlink.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  88216. From: jrd@cc.usu.edu (Joe Doupnik)
  88217. Newsgroups: comp.protocols.kermit.misc
  88218. Subject: Re: VAX Kermit 5a xmit speed
  88219. Message-Id: <1995Feb11.192112.41395@cc.usu.edu>
  88220. Date: 11 Feb 95 19:21:12 MDT
  88221. References: <jefeD3usx1.DDq@netcom.com>
  88222. Organization: Utah State University
  88223. Lines: 34
  88224. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  88225.  
  88226. In article <jefeD3usx1.DDq@netcom.com>, jefe@netcom.com (Pablo) writes:
  88227. >     Question.  I occasionally log onto a VAX computer and try to 
  88228. > transfer files using KERMIT v5a (on the vax, of course) to my desktop 
  88229. > system.  I use PCPLUS for windows.  No matter WHAT I do, the vax kermit 
  88230. > throughput is pathetically slow!  I get MAYBE 200 characters a sec (a 
  88231. > little over 1200 baud) and I've got a 14.4k modem, and I have a 14.4k 
  88232. > connection established.  Is this a fact of life with this version of VAX 
  88233. > kermit or is there something I'm failing to set.  I've played with 
  88234. > 'window-size' 'flow-control' 'packet-length'..everything I can think of 
  88235. > which could affect the transmission rate.  The only thing that affected 
  88236. > throughput at all was the 'set window-size' command.  When I dropped it 
  88237. > from the max value of 31 to the min value of 1 my throughput went up to 
  88238. > around 1200 baud.  Yes that's right, up to 1200 baud.  Any help on this 
  88239. > matter would be greatly appreciated.  Thanks.
  88240. ------------
  88241.     It's not C Kermit/VMS, I can assure you. On our Alpha clusters
  88242. CK delivers up to 70KB/s over Telnet when the load isn't at saturation. 
  88243. So look at the other end of the wire for a moment. Try MS-DOS Kermit, 
  88244. v3.14 is current. Then ask if there is a comms box between the ends which
  88245. throttles things, such as a terminal server which is intolerant of file 
  88246. transfer activities (wants human typing speed, not much more).
  88247.     VAXen come in various models and the faster they are the more
  88248. bytes/sec they can move across the link. My uVAX II can do about 2-4KB/sec
  88249. before suffering dizziness. A VAX undergoing heavy swapping will not
  88250. be very speedy.
  88251.     I rarely have occassion to use more than 4 window slots, even
  88252. on cross country links. 1000 byte packets is also a good compromise
  88253. on most links, though a few require much shorter packets to slip though
  88254. the comms boxes and type-ahead buffers of mainframes.
  88255.     In all, decent machines are loafing at modem speeds. But the modems
  88256. and serial ports need to operate at those speeds (an maybe your VAX port
  88257. is locked at 1200bps?).
  88258.     Joe D.
  88259.  
  88260. From news@columbia.edu Sat Feb 11 07:04:11 1995
  88261. Received: from apakabar.cc.columbia.edu (apakabar-ether.cc.columbia.edu) by watsun.cc.columbia.edu with SMTP id AA18375
  88262.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 11 Feb 1995 22:32:09 -0500
  88263. Received: by apakabar.cc.columbia.edu id AA09792
  88264.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 11 Feb 1995 22:32:07 -0500
  88265. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!news.intercon.com!panix!news.mathworks.com!udel!gatech!howland.reston.ans.net!news.cac.psu.edu!news.pop.psu.edu!hudson.lm.com!netline-fddi.jpl.nasa.gov!elroy.jpl.nasa.gov!decwrl!tribune.usask.ca!quartz.ucs.ualberta.ca!rover.ucs.ualberta.ca!news.ucalgary.ca!news
  88266. From: Dorothy Parks <parks@freenet.calgary.ab.ca>
  88267. Newsgroups: comp.protocols.kermit.misc
  88268. Subject: Help with Kermit
  88269. Date: Sat, 11 Feb 1995 00:04:11 -0700 (MST)
  88270. Organization: The University of Calgary
  88271. Lines: 8
  88272. Message-Id: <Pine.A32.3.90.950210235751.47565A-100000@srv1.freenet.calgary.ab.ca>
  88273. Nntp-Posting-Host: srv1.freenet.calgary.ab.ca
  88274. Mime-Version: 1.0
  88275. Content-Type: TEXT/PLAIN; charset=US-ASCII
  88276. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  88277.  
  88278.  
  88279. II am a newcomer to the Freenet and am unable to download a file to my 
  88280. drive using Kermit.  When I GET the file the box keeps repeating "packet 
  88281. resent" How should the Kermit options be set?
  88282.  
  88283.  
  88284.  
  88285.  
  88286.  
  88287. From news@columbia.edu Sun Feb 12 03:51:45 1995
  88288. Received: from apakabar.cc.columbia.edu (apakabar-ether.cc.columbia.edu) by watsun.cc.columbia.edu with SMTP id AA19077
  88289.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 11 Feb 1995 22:51:50 -0500
  88290. Received: by apakabar.cc.columbia.edu id AA11031
  88291.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 11 Feb 1995 22:51:48 -0500
  88292. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  88293. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  88294. Newsgroups: comp.protocols.kermit.misc
  88295. Subject: Re: How to do Underlines with C-Kermit OS/2
  88296. Date: 12 Feb 1995 03:51:45 GMT
  88297. Organization: Columbia University
  88298. Lines: 25
  88299. Message-Id: <3hk0kh$aol@apakabar.cc.columbia.edu>
  88300. References: <3hj1t4$h83@news1.mcs.com>
  88301. Nntp-Posting-Host: watsun.cc.columbia.edu
  88302. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  88303.  
  88304. In article <3hj1t4$h83@news1.mcs.com>,  <knewman @mcs.com> wrote:
  88305. >Is there an Underline option in C-Kermit for OS/2??  I have an application
  88306. >that I am trying to use that displays underlines at the console, but not when 
  88307. >I'm using C-kermit in VT220 mode. For example, at the terminal it looks 
  88308. >like this:
  88309.  
  88310. example deleted
  88311.  
  88312. C-Kermit does indeed show Underlined text.  But it uses color to represent 
  88313. the underlining instead of a true underline.
  88314.  
  88315. Use SET TERMINAL COLOR UNDERLINED-TEXT
  88316. to set the color combination you would like.
  88317.  
  88318.  
  88319. x
  88320. x
  88321. x
  88322. x
  88323. x
  88324. x
  88325. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  88326. "C-Kermit: available on more platforms than any other communications software."
  88327. "Kermit FTP: sending files whenever and wherever they are needed."
  88328.   OS/2 version 5A(190): ftp://kermit.columbia.edu/kermit/archives/cko190.zip 
  88329.  
  88330. From news@columbia.edu Sat Feb 11 23:13:46 1995
  88331. Received: from apakabar.cc.columbia.edu (apakabar-ether.cc.columbia.edu) by watsun.cc.columbia.edu with SMTP id AA19963
  88332.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 11 Feb 1995 23:13:46 -0500
  88333. Received: by apakabar.cc.columbia.edu id AA12385
  88334.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 11 Feb 1995 23:13:45 -0500
  88335. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!newshost.marcam.com!zip.eecs.umich.edu!newsxfer.itd.umich.edu!gatech!bloom-beacon.mit.edu!eru.mt.luth.se!news.luth.se!sunic!news.funet.fi!news.csc.fi!news.helsinki.fi!cc.helsinki.fi!jaakola
  88336. From: jaakola@cc.helsinki.fi
  88337. Newsgroups: comp.protocols.kermit.misc
  88338. Subject: Re: MS-DOS Kermit 3.14 Multiple TCP/IP Sessions
  88339. Date: 11 Feb 95 11:39:51 EET
  88340. Organization: University of Helsinki
  88341. Lines: 23
  88342. Message-Id: <1995Feb11.113951.1@cc.helsinki.fi>
  88343. References: <Tim_Helmstetter.15.2F378AF1@radian.com> <1995Feb7.135930.40929@cc.usu.edu>
  88344. Nntp-Posting-Host: hylka.helsinki.fi
  88345. Mime-Version: 1.0
  88346. Content-Type: text/plain; charset=ISO-8859-1
  88347. Content-Transfer-Encoding: 8bit
  88348. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  88349.  
  88350. In article <1995Feb7.135930.40929@cc.usu.edu>, jrd@cc.usu.edu (Joe Doupnik) writes:
  88351. > In article <Tim_Helmstetter.15.2F378AF1@radian.com>, Tim_Helmstetter@radian.com writes:
  88352. >> Help! I have updated to V3.14 and run multiple TCP/IP sessions connected to a 
  88353. >> UNIX system. V3.14 is disconnecting my sessions that I am not currently in 
  88354. >> after a period of time. Is there a parameter I am supposed to modify to 
  88355. >> prevent this? V3.13 does not do this.
  88356. > ----------------
  88357. >     It's not MSK doing disconnects, it's your host(s). Maybe you could
  88358. > elaborate on the environment and any other details of interest. The actual
  88359. > useful piece of information is a packet trace, if you have the equipment
  88360. > for that job (FTP Inc Lanwatch or Novell Lanalyzer formats would be fine here).
  88361. >     Joe D.
  88362.  
  88363. I noticed the same behaviour: with 3.13 I could have an idle connection
  88364. for days, but with 3.14 the connection terminated after an idle period.
  88365. The host was Unisys U6000/65 with their UNIX SVR4 port. The host had an
  88366. idle timeout parameter, which we increased; indeed, it was the host doing
  88367. disconnects.
  88368.  
  88369. However, I don't know why 3.13 kept the connection open despite of the
  88370. timeout...
  88371. --
  88372. Juhani Jaakola, jaakola@cc.helsinki.fi
  88373.  
  88374. From news@columbia.edu Sat Feb 11 23:14:43 1995
  88375. Received: from apakabar.cc.columbia.edu (apakabar-ether.cc.columbia.edu) by watsun.cc.columbia.edu with SMTP id AA19986
  88376.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 11 Feb 1995 23:14:43 -0500
  88377. Received: by apakabar.cc.columbia.edu id AA12423
  88378.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 11 Feb 1995 23:14:42 -0500
  88379. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!panix!bloom-beacon.mit.edu!eru.mt.luth.se!news.luth.se!sunic!news.funet.fi!news.csc.fi!news.helsinki.fi!cc.helsinki.fi!jaakola
  88380. From: jaakola@cc.helsinki.fi
  88381. Newsgroups: comp.protocols.kermit.misc
  88382. Subject: Re: Help With Sessions Under MSK
  88383. Date: 11 Feb 95 11:45:03 EET
  88384. Organization: University of Helsinki
  88385. Lines: 34
  88386. Message-Id: <1995Feb11.114503.1@cc.helsinki.fi>
  88387. References: <3h8mda$b48@chopin.udel.edu> <1995Feb8.110243.41038@cc.usu.edu>
  88388. Nntp-Posting-Host: hylka.helsinki.fi
  88389. Mime-Version: 1.0
  88390. Content-Type: text/plain; charset=ISO-8859-1
  88391. Content-Transfer-Encoding: 8bit
  88392. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  88393.  
  88394. In article <1995Feb8.110243.41038@cc.usu.edu>, jrd@cc.usu.edu (Joe Doupnik) writes:
  88395. > In article <3h8mda$b48@chopin.udel.edu>, darkstar@chopin.udel.edu (Jerry Alexandratos) writes:
  88396. >> 
  88397. >> I'm using msk v3.14 connecting to various Unix hosts from the pc on my
  88398. >> desk.  I've noticed that whenever I switch sessions (using alt-n) that
  88399. >> the screen gets cleared.  Now it appears that an xon/xoff is also being
  88400. >> sent to the session to have it stop outputting to the screen until one
  88401. >> switches back to the session.
  88402. >     XON/XOFF will not be sent if you follow the guidelines and say
  88403. >     SET FLOW NONE when using Kermit's internal TCP/IP stack. This
  88404. >     is normally the case when using supplied macro TELNET (does
  88405. >     a set port tcp host ... and set flow none); as can be seen by
  88406. >     SHOW MACRO.
  88407. >  
  88408. >> So, my two questions.  1) how can I stop kermit from clearing the
  88409. >> screen whenever I switch sessions?  and 2) how can I have kermit not
  88410. >> send the xon/xoff characters and just allow the output to go on
  88411. >> whenever I switch a session?
  88412. >     There is nothing in MSK to clear the screen when switching
  88413. >     sessions, and it doesn't happen to me. Might you have a set of
  88414. >     SESSION<digit> macros defined? If so those are executed each
  88415. >     time a particular (digit) session is activated/resumed.
  88416. >     Joe D.
  88417.  
  88418. I noticed with 3.14 beta April '94 that when you have very little
  88419. conventional (i.e. < 640KB RAM) memory free and have many sessions open,
  88420. Kermit would sometimes beep and give you a blank screen when pressing
  88421. Alt+N.
  88422.  
  88423. Check your free memory. For example, do you have enough memory to spawn
  88424. a command processor (i.e to do a PUSH)?
  88425. --
  88426. Juhani Jaakola, jaakola@cc.helsinki.fi
  88427.  
  88428. From news@columbia.edu Sat Feb 11 05:53:10 1995
  88429. Received: from apakabar.cc.columbia.edu (apakabar-ether.cc.columbia.edu) by watsun.cc.columbia.edu with SMTP id AA20097
  88430.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 11 Feb 1995 23:17:32 -0500
  88431. Received: by apakabar.cc.columbia.edu id AA12757
  88432.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 11 Feb 1995 23:17:30 -0500
  88433. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!pipex!warwick!news.shef.ac.uk!sunc!jp1ek
  88434. From: jp1ek@sunc.shef.ac.uk (Earl H. Kinmonth)
  88435. Newsgroups: comp.protocols.kermit.misc
  88436. Subject: Re: interesting from OMEN
  88437. Date: 11 Feb 1995 05:53:10 GMT
  88438. Organization: Centre for Japanese Studies, Univ. of Sheffield
  88439. Lines: 12
  88440. Message-Id: <3hhjc6$6i7@hippo.shef.ac.uk>
  88441. References: <GIlCluqcZV$U078yn@primenet.com> <3h95e2$krc@apakabar.cc.columbia.edu>
  88442. Reply-To: jp1ek@sunc.shef.ac.uk
  88443. Nntp-Posting-Host: sunc.shef.ac.uk
  88444. X-Newsreader: TIN [version 1.2 PL2]
  88445. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  88446.  
  88447. Yeechang Lee (ylee@watsun.cc.columbia.edu) wrote:
  88448. : Jeff Bishop <jbishop@primenet.com> says:
  88449.  
  88450. : I haven't seen the article, but if it's anything like his documentation
  88451. : I'm sure it'll be an interesting experience.  His writing style
  88452. : is--um--bizzare, to say the least.
  88453.  
  88454. So is the source code in the UNIX versions of zmodem.
  88455.  
  88456. --
  88457. Earl H. Kinmonth, Centre for Japanese Studies, University of Sheffield,
  88458. Sheffield, England S10 2TN jp1ek@sunc.sheffield.ac.uk
  88459.  
  88460. From news@columbia.edu Sat Feb 11 06:10:17 1995
  88461. Received: from apakabar.cc.columbia.edu (apakabar-ether.cc.columbia.edu) by watsun.cc.columbia.edu with SMTP id AA20675
  88462.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 11 Feb 1995 23:33:05 -0500
  88463. Received: by apakabar.cc.columbia.edu id AA13664
  88464.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 11 Feb 1995 23:33:04 -0500
  88465. Newsgroups: comp.protocols.kermit.misc
  88466. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!news.mathworks.com!udel!gatech!howland.reston.ans.net!ix.netcom.com!netcom.com!fod
  88467. From: fod@netcom.com (Frank O'Donnell)
  88468. Subject: Protocol transfer speeds (was Re: ... zmodem transfers)
  88469. Message-Id: <fodD3tnt5.Hz@netcom.com>
  88470. Organization: Les Amis de l'Accordeon
  88471. References: <3gkt57$euc@israel-info.datasrv.co.il> <1995Jan31.205326.40045@cc.usu.edu> <D3CrCn.A9u@encore.com> <1995Feb2.065133.40221@cc.usu.edu>
  88472. Date: Sat, 11 Feb 1995 06:10:17 GMT
  88473. Lines: 29
  88474. Sender: fod@netcom11.netcom.com
  88475. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  88476.  
  88477. Joe Doupnik <jrd@cc.usu.edu> writes:
  88478.  
  88479. >> In the early days, zmodem was said to be 4-5 times faster than kermit ?
  88480. >> Is it still true now with the latest shareware of zmodem and kermit ?
  88481. >> (I am only interested in performance, not features or any thing else)
  88482. >> 
  88483. >> Any benchmarks ?
  88484. >
  88485. >    Did you read the docs in the MS-DOS Kermit v3.14 release collection?
  88486. >If not please do.
  88487.  
  88488. Actually this brings up a question of mine.  I recently obtained
  88489. C-Kermit ver 5A(190) ported to FreeBSD Un*x and have been running
  88490. it on my 486 PC with a Hayes 14.4K modem.  When I run MS-DOS/Windows
  88491. sessions on the PC with Procomm for Windows, I typically get
  88492. transfer rates around 1500 bytes per second using Zmodem protocol.
  88493. However, using C-Kermit with the speed set to 19200, I get
  88494. Kermit transfer rates ranging from about a tenth of that, or
  88495. about 150 bytes per second (downloading from CompuServe), to a max of 
  88496. around 300 bytes per second (downloading from an office BBS with a
  88497. Kermit implementation).  I have and have read "Using C-Kermit"
  88498. by da Cruz and Gianone.
  88499.  
  88500. Does the above bespeak a configuration problem on my end?
  88501.  
  88502. Thanks for any comment,
  88503.  
  88504. Frank
  88505. fod@netcom.com
  88506.  
  88507. From news@columbia.edu Sat Feb 11 13:47:51 1995
  88508. Received: from apakabar.cc.columbia.edu (apakabar-ether.cc.columbia.edu) by watsun.cc.columbia.edu with SMTP id AA25014
  88509.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 13 Feb 1995 02:36:34 -0500
  88510. Received: by apakabar.cc.columbia.edu id AA01161
  88511.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 13 Feb 1995 02:36:32 -0500
  88512. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!swiss.ans.net!gatech!newsxfer.itd.umich.edu!jobone!ukma!news.cuny.edu!jemjj
  88513. From: <JEMJJ@CUNYVM.CUNY.EDU>
  88514. Newsgroups: comp.protocols.kermit.misc
  88515. Subject: Max xfer speed at 14.4
  88516. Date: Sat, 11 Feb 1995 18:47:51 EST
  88517. Organization: City University of New York/University Computer Center
  88518. Lines: 10
  88519. Message-Id: <95042.184751JEMJJ@CUNYVM.CUNY.EDU>
  88520. Nntp-Posting-Host: cunyvm.cuny.edu
  88521. Disclaimer: Author bears full responsibility for this post
  88522. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  88523.  
  88524. I am using Kermit to transfer documents on a 14.4 modem and achieving a max
  88525. transfer speed of about 400 bytes/sec.  I am using a packet size of 1913.
  88526. I have a feeling that I should be able to perform transfers faster than this,
  88527. but I can't seem to do anything else to speed things up.
  88528.  
  88529. Are there other settings I should be aware of that could be affecting my
  88530. transfer speed?  Any tip would be greatly appreciated.
  88531.  
  88532. Thanks,
  88533. Dan Morgenroth
  88534.  
  88535. From news@columbia.edu Sun Feb 12 14:55:17 1995
  88536. Received: from apakabar.cc.columbia.edu (apakabar-ether.cc.columbia.edu) by watsun.cc.columbia.edu with SMTP id AA26691
  88537.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 13 Feb 1995 03:38:48 -0500
  88538. Received: by apakabar.cc.columbia.edu id AA03745
  88539.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 13 Feb 1995 03:38:46 -0500
  88540. Newsgroups: comp.protocols.kermit.misc
  88541. Path: news.columbia.edu!panix!news.mathworks.com!news.kei.com!wang!news
  88542. From: tat@actcom.co.il (Ram Gura)
  88543. Subject: Using MS kermit with Open VMS kermit
  88544. Organization: ACTCOM - Internet Services in Israel
  88545. Date: Sun, 12 Feb 1995 14:55:17 GMT
  88546. Message-Id: <D3w6s5.I1z@actcom.co.il>
  88547. Sender: news@wang.com
  88548. Lines: 1
  88549. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  88550.  
  88551.  
  88552.  
  88553. From news@columbia.edu Sun Feb 12 15:29:03 1995
  88554. Received: from apakabar.cc.columbia.edu (apakabar-ether.cc.columbia.edu) by watsun.cc.columbia.edu with SMTP id AA26705
  88555.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 13 Feb 1995 03:38:57 -0500
  88556. Received: by apakabar.cc.columbia.edu id AA03753
  88557.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 13 Feb 1995 03:38:57 -0500
  88558. Newsgroups: comp.protocols.kermit.misc
  88559. Path: news.columbia.edu!panix!news.mathworks.com!newshost.marcam.com!news.kei.com!wang!news
  88560. From: shlomit@actcom.co.il (Shlomit Wexler)
  88561. Subject: test
  88562. Organization: ACTCOM - Internet Services in Israel
  88563. Date: Sun, 12 Feb 1995 15:29:03 GMT
  88564. Message-Id: <D3w8CF.Jnx@actcom.co.il>
  88565. Sender: news@wang.com
  88566. Lines: 7
  88567. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  88568.  
  88569.  
  88570. Sorry this is a TEST..
  88571. -- 
  88572.  
  88573.             With regards,
  88574.                            
  88575.                               sssss      w     w
  88576.  
  88577. From news@columbia.edu Mon Feb 13 17:51:48 1995
  88578. Received: from apakabar.cc.columbia.edu (apakabar-ether.cc.columbia.edu) by watsun.cc.columbia.edu with SMTP id AA05814
  88579.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 13 Feb 1995 12:51:55 -0500
  88580. Received: by apakabar.cc.columbia.edu id AA21465
  88581.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 13 Feb 1995 12:51:52 -0500
  88582. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  88583. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  88584. Newsgroups: comp.protocols.kermit.misc
  88585. Subject: Re: Max xfer speed at 14.4
  88586. Date: 13 Feb 1995 17:51:48 GMT
  88587. Organization: Columbia University
  88588. Lines: 98
  88589. Message-Id: <3ho67k$kum@apakabar.cc.columbia.edu>
  88590. References: <95042.184751JEMJJ@cunyvm.cuny.edu>
  88591. Nntp-Posting-Host: watsun.cc.columbia.edu
  88592. Cc: 
  88593.  
  88594. In article <95042.184751JEMJJ@cunyvm.cuny.edu>,  <JEMJJ@CUNYVM.CUNY.EDU> wrote:
  88595. >I am using Kermit to transfer documents on a 14.4 modem and achieving a max
  88596. >transfer speed of about 400 bytes/sec.  I am using a packet size of 1913.
  88597. >I have a feeling that I should be able to perform transfers faster than this,
  88598. >but I can't seem to do anything else to speed things up.
  88599. >
  88600. >Are there other settings I should be aware of that could be affecting my
  88601. >transfer speed?  Any tip would be greatly appreciated.
  88602. The Kermit FAQ can be found on kermit.columbia.edu in kermit/FAQ.TXT.
  88603. Quoting from it (since there were more than usual number of questions like
  88604. this in this morning's crop of postings):
  88605.  
  88606. ... you can make Kermit go as fast as the communication path will permit
  88607. by changing a few parameters.  But first, here are some general principles
  88608. that apply to all communications software:
  88609.  
  88610.  1. Ensure that you have an effective means of flow control enabled at
  88611.     every juncture along the communication path (this applies to any file
  88612.     transfer protocol).  For example, when using high-speed,
  88613.     error-correcting modems, you should use some form of hardware flow
  88614.     control, most commonly RTS/CTS.  You have to tell the software to use
  88615.     it, AND you have to tell the modem to use it too -- if the flow
  88616.     control methods of the PC and the modem do not agree, then data will
  88617.     be lost.
  88618.  
  88619.  2. If your modem is capable of data compression, use it.  Fix the
  88620.     interface speed of the software to four times the connection speed if
  88621.     possible -- e.g. for a V.32bis 14400 bps connection, use an interface
  88622.     speed of 57600, or else the modem's compression capacity is likely to
  88623.     be wasted.
  88624.  
  88625.  3. On network connections (e.g. TCP/IP), it is usually best to turn off
  88626.     flow control entirely, because the underlying networking method
  88627.     supplies fully effective flow control.
  88628.  
  88629. Now, to make Kermit go fast, follow these steps:
  88630.  
  88631.  1. Use real Kermit software, not the many shareware and commercial
  88632.     packages, most of whose Kermit protocol implementations lack the
  88633.     performance features listed below and/or the means for the user to
  88634.     control them.
  88635.  
  88636.  2. Use long packets.  Kermit's default packet length is 94.  You can
  88637.     increase it to a theoretical maximum of 9024.  Give the following
  88638.     command to the file receiver:
  88639.  
  88640.       SET RECEIVE PACKET-LENGTH 2000  ; (or other length)
  88641.  
  88642.     The longer you make the packets, the more efficient the file transfer
  88643.     will be... IF IT WORKS.  If you make packets longer than some buffer
  88644.     somewhere along the line, and effective flow control is lacking, the
  88645.     transfer might not work.  Also, the longer the packet, the greater
  88646.     the chance it will be hit by noise, and the longer it takes to
  88647.     retransmit.  A good starting value to try is 1000.
  88648.  
  88649.  3. On full duplex connections, use sliding windows.  Sliding windows
  88650.     allow packets to be transmitted in a continuous stream, rather than
  88651.     "stop and wait" style.  The command is:
  88652.  
  88653.       SET WINDOW 4 ; (or other number)
  88654.  
  88655.     The maximum is 32 (or less, depending on the implementation).  Give
  88656.     this command to *both* Kermit programs.
  88657.  
  88658. For text files and uncompressed binary files, this should give you very
  88659. good performance -- efficiencies in the 85%-100% range.  For compressed
  88660. files, and certain other types of binary files, you can squeeze out
  88661. another 20-25% efficiency by telling Kermit not to prefix a given list of
  88662. control characters.  A typical sequence might be:
  88663.  
  88664.   SET CONTROL UNPREFIX ALL  ;  Unprefix all control characters.
  88665.   SET CONTROL PREFIX 0 1 13 129 141 ...  ; Add back prefixes for these.
  88666.  
  88667. This might require some trial and error because there is no way that a
  88668. communication software program can know what characters are safe and
  88669. which ones are not on a particular connection.  For example, you might be
  88670. going through an X.25 PAD where Ctrl-P will pop you back to the PAD
  88671. prompt.  Or you might be going through a TELNET terminal server where
  88672. Ctrl-] or Ctrl-^ will pop you back to the terminal server prompt.  Or the
  88673. connection might be using Xon/Xoff flow control, and sending Ctrl-S as a
  88674. data character might freeze the connection.
  88675.  
  88676. If you take all of these steps, using optimal packet lengths, window
  88677. sizes, and unprefixing, you should achieve transfer rates comparable to,
  88678. and often better than, the Zmodem implementations that you find in Telix,
  88679. Procomm, and similar shareware and commercial packages; for example, on a
  88680. V.32bis/V.42/V.42bis connection, RTS/CTS flow control, no parity, 57600
  88681. bps interface speed:
  88682.  
  88683.   Typical text files:        3500 cps (characters per second)
  88684.   Uncompressed binary files: 2400 cps (e.g. PC KERMIT.EXE)
  88685.   Compressed files:          1600 cps (e.g. ZIP files)
  88686.  
  88687. These figures come from Kermit News #5, June 1993, which is available via
  88688. anonymous ftp from kermit.columbia.edu, directory kermit/e, file
  88689. newsn5.txt (ASCII) or newsn5.ps (PostScript).  Also see newsn4.txt (.ps)
  88690. for a detailed discussion of long packets and sliding windows.
  88691.  
  88692. From news@columbia.edu Mon Feb 13 17:58:23 1995
  88693. Received: from apakabar.cc.columbia.edu (apakabar-ether.cc.columbia.edu) by watsun.cc.columbia.edu with SMTP id AA07995
  88694.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 13 Feb 1995 12:58:29 -0500
  88695. Received: by apakabar.cc.columbia.edu id AA22235
  88696.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 13 Feb 1995 12:58:26 -0500
  88697. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  88698. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  88699. Newsgroups: comp.protocols.kermit.misc
  88700. Subject: Re: Protocol transfer speeds (was Re: ... zmodem transfers)
  88701. Date: 13 Feb 1995 17:58:23 GMT
  88702. Organization: Columbia University
  88703. Lines: 49
  88704. Message-Id: <3ho6jv$lmh@apakabar.cc.columbia.edu>
  88705. References: <3gkt57$euc@israel-info.datasrv.co.il> <D3CrCn.A9u@encore.com> <1995Feb2.065133.40221@cc.usu.edu> <fodD3tnt5.Hz@netcom.com>
  88706. Nntp-Posting-Host: watsun.cc.columbia.edu
  88707. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  88708.  
  88709. In article <fodD3tnt5.Hz@netcom.com>, Frank O'Donnell <fod@netcom.com> wrote:
  88710. >Joe Doupnik <jrd@cc.usu.edu> writes:
  88711. >>> In the early days, zmodem was said to be 4-5 times faster than kermit ?
  88712. >>> Is it still true now with the latest shareware of zmodem and kermit ?
  88713. >>> (I am only interested in performance, not features or any thing else)
  88714. >>Did you read the docs in the MS-DOS Kermit v3.14 release collection?
  88715. >>If not please do.
  88716. >
  88717. >Actually this brings up a question of mine.  I recently obtained
  88718. >C-Kermit ver 5A(190) ported to FreeBSD Un*x and have been running
  88719. >it on my 486 PC with a Hayes 14.4K modem.  When I run MS-DOS/Windows
  88720. >sessions on the PC with Procomm for Windows, I typically get
  88721. >transfer rates around 1500 bytes per second using Zmodem protocol.
  88722. >However, using C-Kermit with the speed set to 19200, I get
  88723. >Kermit transfer rates ranging from about a tenth of that, or
  88724. >about 150 bytes per second (downloading from CompuServe)
  88725. >
  88726. Note that we can't vouch for CompuServe's Kermit implementation.
  88727.  
  88728. >...to a max of 
  88729. >around 300 bytes per second (downloading from an office BBS with a
  88730. >Kermit implementation).
  88731. >
  88732. ...nor for whatever Kermit implementation might be in use on the BBS.
  88733.  
  88734. >Does the above bespeak a configuration problem on my end?
  88735. >
  88736. First, read the item on Kermit performance in our FAQ:
  88737.  
  88738.   ftp://kermit.columbia.edu/kermit/FAQ.TXT
  88739.  
  88740. then try the techniques described there.  Better still, try them with
  88741. real Kermit software, e.g. MS-DOS Kermit on the PC, C-Kermit on UNIX,
  88742. etc, and you'll get the kind of performance numbers you want.
  88743.  
  88744. - Frank
  88745. x
  88746. x
  88747. x
  88748. x
  88749. x
  88750. x
  88751. x
  88752. x
  88753. x
  88754. x
  88755. x
  88756. x
  88757.  
  88758.  
  88759. From news@columbia.edu Mon Feb 13 21:10:10 1995
  88760. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18438
  88761.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 13 Feb 1995 19:44:12 -0500
  88762. Received: by apakabar.cc.columbia.edu id AA02554
  88763.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 13 Feb 1995 19:44:11 -0500
  88764. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!math.ohio-state.edu!uwm.edu!msunews!netnews.upenn.edu!cronkite.ocis.temple.edu!jedi.cis.temple.edu!tito
  88765. From: tito@jedi.cis.temple.edu (Cyber Flunk)
  88766. Newsgroups: comp.protocols.kermit.misc
  88767. Subject: Rockwell Protocol Interface??
  88768. Date: 13 Feb 1995 21:10:10 GMT
  88769. Organization: Temple University, Academic Computer Services
  88770. Lines: 14
  88771. Message-Id: <3hohri$82v@cronkite.ocis.temple.edu>
  88772. Nntp-Posting-Host: jedi.cis.temple.edu
  88773. X-Newsreader: Tin 1.1 PL5
  88774. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  88775.  
  88776.  
  88777.  
  88778. Hello,
  88779.  
  88780.     Sorry if this question is answered somewhere in the (great
  88781. mass of) kermit docs, but I did a grep through them for the key
  88782. "rockwell" and found nothing so...
  88783.  
  88784.     Does kermit 3.14 for ms-dog support Rockwell's Protocol
  88785. Interface (RPI)?  Many thanks for the answer or pointers as to where it
  88786. might be found!
  88787.  
  88788.     Tito.
  88789.  
  88790.  
  88791. From news@columbia.edu Mon Feb 13 07:18:25 1995
  88792. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28290
  88793.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 13 Feb 1995 23:12:35 -0500
  88794. Received: by apakabar.cc.columbia.edu id AA19353
  88795.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 13 Feb 1995 23:12:33 -0500
  88796. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!lamarck.sura.net!hookup!news.mathworks.com!uunet!zib-berlin.de!ceres.fokus.gmd.de!nntp.gmd.de!dearn!barilvm!news.datasrv.co.il!zeus.datasrv.co.il!winter
  88797. From: winter@zeus.datasrv.co.il (4th Dimension)
  88798. Newsgroups: comp.protocols.kermit.misc
  88799. Subject: SUMMARY: Can MS-DOS kermit handle zmodem transfers?
  88800. Date: 13 Feb 1995 07:18:25 GMT
  88801. Organization: Fourth Dimension Software
  88802. Lines: 81
  88803. Message-Id: <3hn141$4m7@israel-info.datasrv.co.il>
  88804. Nntp-Posting-Host: zeus.datasrv.co.il
  88805. Summary: MSK can handle zmodem with DSZ program
  88806. Keywords: MSK, DSZ, zmodem, rz, sz, c-kermit
  88807. X-Newsreader: TIN ]version 1.2 PL2(
  88808. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  88809.  
  88810.  
  88811. Hi,
  88812. Recently I asked how I can use zmodem via MS-Kermit, that is, use an external
  88813. program from MSK to handle incoming zmodem data transfers.
  88814. I'm doing this every day from my C-Kermit, using the 'rz' macro supplied
  88815. with C-Kermit package.
  88816.  
  88817. Official responses (Joe Doupnik) were that "Kermit protocol is superior
  88818. and one does not need to support or use zmodem."
  88819. Most other response suggested using Chuck Foresberg's DSZ program, available
  88820. on SimTel/DOS/zmodem archives.
  88821.  
  88822. For other suggestions, see enclosed mails below.
  88823.  
  88824. Thanks to the following people:
  88825.  mikef@pacifier.com (Mike Freeman)
  88826.  ken@coho.halcyon.com (Ken Pizzini)
  88827.  dgrisner@crl.com (David G. Risner)
  88828.  JRD@cc.usu.edu (Joe Doupnik )
  88829.  ts@uwasa.fi (Timo Salmi)
  88830.  
  88831. --------------------------------------------------------------------
  88832.  
  88833. From: dgrisner@crl.com (David G. Risner)
  88834.  
  88835. OK, I got a few requests for this so:
  88836.  
  88837. PDZMODEM can be found at:
  88838.  
  88839. ftp://vinny.csd.mu.edu/pub/CBIP/volume28/pdzmodem/pdzmodem.zip
  88840.  
  88841. i.e.,
  88842.  
  88843. Anonymous ftp site: vinny.csd.mu.edu
  88844. Directory: /pub/CBIP/volume28/pdzmodem
  88845. Filename: pdzmodem.zip
  88846.  
  88847.  
  88848. I run the program by adding the following two lines to my MSCUSTOM.INI file:
  88849.  
  88850. define rz cd \telecom\download,run d:\telecom\pdz\zm rz -c4
  88851. set key \315 rz
  88852.  
  88853. This starts a ZModem recieve when I hit the F1 key.
  88854.  
  88855. the d:\telecom\pdz is the directory where I have PDZMODEM.
  88856.  
  88857. The -c4 means use com port 4.
  88858.  
  88859. The cd \telecom\download causes the file received to be put in my
  88860. download directory.
  88861.  
  88862. f you have any questions, feel free to e-mail me.
  88863.  
  88864. And to repeat, the PDZMODEM is public domain.
  88865.  
  88866. David G. Risner
  88867. dgrisner@crl.com
  88868. Anaheim, CA
  88869.  
  88870. --------------------------------------------------------------------
  88871.  
  88872. From: ts@uwasa.fi (Timo Salmi)
  88873.  
  88874.  53258 Jan 30 07:33 garbo.uwasa.fi:/pc/ts/tskerm26.zip
  88875.  tskerm26.zip Keypads, .bats, logging, and file transfers for MsKermit.
  88876.  
  88877.    All the best, Timo
  88878.  
  88879. ..................................................................
  88880. Prof. Timo Salmi      Co-moderator of comp.archives.msdos.announce
  88881. Moderating at garbo.uwasa.fi anonymous FTP archives  193.166.120.5
  88882. Faculty of Accounting & Industrial Management; University of Vaasa
  88883. Internet: ts@uwasa.fi   BBS +(358)-61-3170972; FIN-65101,  Finland
  88884.  
  88885. --------------------------------------------------------------------
  88886.  
  88887. --
  88888. /* Amir J. Katz         email:   winter@datasrv.co.il               */
  88889. /* 4th Dimension Software, LTD., Tel-Aviv, ISRAEL                   */
  88890.  
  88891. From news@columbia.edu Mon Feb 13 06:56:14 1995
  88892. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22610
  88893.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 14 Feb 1995 08:33:45 -0500
  88894. Received: by apakabar.cc.columbia.edu id AA00625
  88895.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 14 Feb 1995 08:33:42 -0500
  88896. Newsgroups: comp.protocols.kermit.misc
  88897. Path: news.columbia.edu!sol.ctr.columbia.edu!spool.mu.edu!olivea!hookup!news.kei.com!wang!news
  88898. From: tat@actcom.co.il (Ram Gura)
  88899. Subject: Using MS kermit with Open VMS kermit
  88900. Organization: ACTCOM - Internet Services in Israel
  88901. Date: Mon, 13 Feb 1995 06:56:14 GMT
  88902. Message-Id: <D3xF9q.8Ay@actcom.co.il>
  88903. Keywords: VMS, Kermit, Binary
  88904. Sender: news@wang.com
  88905. Lines: 12
  88906. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  88907.  
  88908. Hi There.
  88909. I was trying to transmit binary file from an Open VMS system
  88910. to MS DOS system and back to the VMS.
  88911. On the VMS , I use Kermit_32, On the MS DOS I use Kermit 3.11
  88912. There are no errors during the transmission, but back at the
  88913. VMS system, the file can't function. It probably has changed some
  88914. how.
  88915.  
  88916. Does anyone have any suggestions ?
  88917. Thank you
  88918. Ram Gura
  88919.  
  88920.  
  88921. From news@columbia.edu Tue Feb 14 14:59:02 1995
  88922. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02445
  88923.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 15 Feb 1995 05:10:30 -0500
  88924. Received: by apakabar.cc.columbia.edu id AA07347
  88925.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 15 Feb 1995 05:10:29 -0500
  88926. Path: news.columbia.edu!panix!news.mathworks.com!news.alpha.net!uwm.edu!cs.utexas.edu!swrinde!howland.reston.ans.net!Germany.EU.net!zib-berlin.de!fu-berlin.de!zrz.TU-Berlin.DE!cs.tu-berlin.de!fauern!uni-regensburg.de!pc1034.physik.uni-regensburg.de!Gerd.Boehm
  88927. From: Gerd.Boehm@physik.uni-regensburg.de (Gerd Boehm (2017))
  88928. Newsgroups: comp.protocols.kermit.misc
  88929. Subject: MS-Kermit 3.14pl3 and Graphics Mode
  88930. Date: Tue, 14 Feb 1995 14:59:02 GMT
  88931. Organization: Universitaet Regensburg
  88932. Lines: 22
  88933. Message-Id: <Gerd.Boehm.775.2F40C536@physik.uni-regensburg.de>
  88934. Nntp-Posting-Host: pc1034.physik.uni-regensburg.de
  88935. Summary: How to leave graphics mode of vt220/Tek emulation of Kermit?
  88936. Keywords: Graphics mode, MSDOS, Kermit
  88937. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  88938.  
  88939. Hello,
  88940. one simple question which I haven't found answered in the FAQ and
  88941. in the supplied MS-Kermit docs: How can I leave the graphics mode
  88942. of the vt200/Tek terminal emulation?
  88943.  
  88944. I use MS Kermit 3.14pl3 to TELNET to a Sun. Kermit emulates an vt220
  88945. terminal. An Unix application is able to draw Tek40xx graphics.
  88946. Kermit switches into graphics mode just fine, but I am unable to
  88947. leave this mode to get back to the vt220 text terminal emulation. An ESC-
  88948. Return doesn't help (which works for kermit 3.13). By ESC I only got the 
  88949. singlecharacter menu. Is there a way back without exiting the TELNET
  88950. session or is it a bug?
  88951.  
  88952. TIA,
  88953. Gerd
  88954.  
  88955. --
  88956. Gerd B"ohm              | gerd.boehm@physik.uni-regensburg.de
  88957. Inst. f. Theor. Physik  |_____ 
  88958. Uni Regensburg; Germany | _|__)
  88959. ========================|__|__) ==============================
  88960.  
  88961.  
  88962. From news@columbia.edu Mon Feb 13 07:03:18 1995
  88963. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10025
  88964.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 15 Feb 1995 06:39:40 -0500
  88965. Received: by apakabar.cc.columbia.edu id AA22866
  88966.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 15 Feb 1995 06:39:38 -0500
  88967. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!uunet!zib-berlin.de!ceres.fokus.gmd.de!nntp.gmd.de!dearn!barilvm!news.datasrv.co.il!zeus.datasrv.co.il!winter
  88968. From: winter@zeus.datasrv.co.il (4th Dimension)
  88969. Newsgroups: comp.protocols.kermit.misc
  88970. Subject: Sliding windows - only one is used?
  88971. Date: 13 Feb 1995 07:03:18 GMT
  88972. Organization: Fourth Dimension Software
  88973. Lines: 12
  88974. Message-Id: <3hn07m$4dl@israel-info.datasrv.co.il>
  88975. Nntp-Posting-Host: zeus.datasrv.co.il
  88976. X-Newsreader: TIN ]version 1.2 PL2(
  88977. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  88978.  
  88979. Hi,
  88980. I'm using MS-Kermit 3.14, PL3 on my PC, talking to C-Kermit 5A(190) on the
  88981. remote Sun.
  88982. When I start MSK, I load the FAST macro to get maximum thruput. Transfer
  88983. of data is pretty fast, except that I never see more than one window
  88984. used out of the three.
  88985. Is this a bug, a feature, or am I doing something wrong?
  88986.  
  88987. --
  88988. /* Amir J. Katz         email:   winter@datasrv.co.il               */
  88989. /* 4th Dimension Software, LTD., Tel-Aviv, ISRAEL                   */
  88990.  
  88991. From news@columbia.edu Sun Feb 12 20:18:29 1995
  88992. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20501
  88993.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 15 Feb 1995 06:53:31 -0500
  88994. Received: by apakabar.cc.columbia.edu id AA23494
  88995.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 15 Feb 1995 06:53:30 -0500
  88996. Newsgroups: comp.protocols.kermit.misc
  88997. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!news.mathworks.com!news.bluesky.net!news.sprintlink.net!howland.reston.ans.net!ix.netcom.com!netcom.com!jefe
  88998. From: jefe@netcom.com (Pablo)
  88999. Subject: Re: VAX Kermit 5a xmit speed
  89000. Message-Id: <jefeD3wLqu.LDL@netcom.com>
  89001. Organization: NETCOM On-line Communication Services (408 261-4700 guest)
  89002. X-Newsreader: TIN [version 1.2 PL1]
  89003. References: <jefeD3usx1.DDq@netcom.com> <1995Feb11.192112.41395@cc.usu.edu>
  89004. Date: Sun, 12 Feb 1995 20:18:29 GMT
  89005. Lines: 42
  89006. Sender: jefe@netcom18.netcom.com
  89007. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  89008.  
  89009. Joe Doupnik (jrd@cc.usu.edu) wrote:
  89010.  
  89011. :     It's not C Kermit/VMS, I can assure you. On our Alpha clusters
  89012. : CK delivers up to 70KB/s over Telnet when the load isn't at saturation. 
  89013.  
  89014.     I tend to agree, BTW:  I've attempted this xfer both from dialup 
  89015. and telnet.  The site is NKU.EDU FYI.
  89016.  
  89017. : throttles things, such as a terminal server which is intolerant of file 
  89018. : transfer activities (wants human typing speed, not much more).
  89019.  
  89020.     Woudln't normal screen activity and text throughput also be 
  89021. affected by this?  I've definitely got a high speed connection as far as 
  89022. screen writes go.
  89023.  
  89024. : on cross country links. 1000 byte packets is also a good compromise
  89025. : on most links, though a few require much shorter packets to slip though
  89026.  
  89027. How do I set this through Kermit?
  89028.  
  89029. :     In all, decent machines are loafing at modem speeds. But the modems
  89030. : and serial ports need to operate at those speeds (an maybe your VAX port
  89031. : is locked at 1200bps?).
  89032.  
  89033.     Again, no because I am at a high speed connection because of the 
  89034. text throughput (non file transfer).  Unless there's some way to lock a 
  89035. port to 1200 for a file transfer only?  Also, I can FTP to the site and 
  89036. it runs at 'normal ftp speeds'. 
  89037.  
  89038.     I agree that there's something amiss, it's just that I can't 
  89039. figure out what!  If I run kermit on this unix server, it runs at the max 
  89040. throughput of my modem (again, using Procomm Plus for Windows), yet I 
  89041. telnet to the VAX, start kermit, send ANY kind of file, and I can't get 
  89042. more than 200 cps out of it.  If you have any setup commands for the 
  89043. remote kermit that might rectify this, they would be appreciated.
  89044.  
  89045.  
  89046. -- 
  89047.  
  89048. **************************
  89049. *Thoughts by:  Pablo (tm)*
  89050. *                        *
  89051. * If 'meat is murder',   *
  89052. * then so are leather    *
  89053. * jackets, fur coats and *
  89054. * paintbrushes...        *
  89055. *        ...Mr Wonderful *  
  89056. **************************
  89057.  
  89058. From news@columbia.edu Sun Feb 12 20:21:13 1995
  89059. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25379
  89060.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 15 Feb 1995 07:01:25 -0500
  89061. Received: by apakabar.cc.columbia.edu id AA23712
  89062.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 15 Feb 1995 07:01:23 -0500
  89063. Newsgroups: comp.protocols.kermit.misc
  89064. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!news.mathworks.com!hookup!swrinde!howland.reston.ans.net!ix.netcom.com!netcom.com!jefe
  89065. From: jefe@netcom.com (Pablo)
  89066. Subject: Re: Max xfer speed at 14.4
  89067. Message-Id: <jefeD3wLvE.LpJ@netcom.com>
  89068. Organization: NETCOM On-line Communication Services (408 261-4700 guest)
  89069. X-Newsreader: TIN [version 1.2 PL1]
  89070. References: <95042.184751JEMJJ@CUNYVM.CUNY.EDU>
  89071. Date: Sun, 12 Feb 1995 20:21:13 GMT
  89072. Lines: 22
  89073. Sender: jefe@netcom18.netcom.com
  89074. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  89075.  
  89076. JEMJJ@CUNYVM.CUNY.EDU wrote:
  89077. : I am using Kermit to transfer documents on a 14.4 modem and achieving a max
  89078. : transfer speed of about 400 bytes/sec.  I am using a packet size of 1913.
  89079. : I have a feeling that I should be able to perform transfers faster than this,
  89080. : but I can't seem to do anything else to speed things up.
  89081. :  
  89082. : Are there other settings I should be aware of that could be affecting my
  89083. : transfer speed?  Any tip would be greatly appreciated.
  89084.  
  89085.     Hey, are you using cKermit on a VAX by any chance?  Geez louise, 
  89086. I just wrote a message complaining about the EXACT same thing.  If you 
  89087. get anything figured out, let me know, please.  I've already deflected 
  89088. all the questions like "Are you sure you have a 14.4k connection?" so I'm 
  89089. still waiting for some specific ideas to implement either on my end, or 
  89090. the remote end.
  89091.  
  89092.  
  89093. -- 
  89094.  
  89095. **************************
  89096. *Thoughts by:  Pablo (tm)*
  89097. *                        *
  89098. * If 'meat is murder',   *
  89099. * then so are leather    *
  89100. * jackets, fur coats and *
  89101. * paintbrushes...        *
  89102. *        ...Mr Wonderful *  
  89103. **************************
  89104.  
  89105. From news@columbia.edu Tue Feb 14 02:22:19 1995
  89106. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08221
  89107.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 15 Feb 1995 07:18:06 -0500
  89108. Received: by apakabar.cc.columbia.edu id AA24613
  89109.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 15 Feb 1995 07:18:04 -0500
  89110. Path: news.columbia.edu!sol.ctr.columbia.edu!newsxfer.itd.umich.edu!jobone!fiesta.srl.ford.com!pt9201.ped.pto.ford.com!pt9201.ped.pto.ford.com!bowman
  89111. From: bowman@pt9201.ped.pto.ford.com (Brian Bowman)
  89112. Newsgroups: comp.protocols.kermit.misc
  89113. Subject: kermit for OSF/2.1
  89114. Date: 14 Feb 1995 02:22:19 GMT
  89115. Organization: Ford Motor Co., Powertrain Electronics
  89116. Lines: 13
  89117. Message-Id: <3hp44r$svi@pt9201.ped.pto.ford.com>
  89118. Nntp-Posting-Host: pt9201.ped.pto.ford.com
  89119. X-Newsreader: TIN [version 1.2 PL2]
  89120. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  89121.  
  89122. Has anyone tried to install kermit on a DEC Alpha running OSF/2.1 ?
  89123.  
  89124. I've been trying to compile and I'm stuck at the ckufio.c module.
  89125.  
  89126. It seems that the dir.h file in BSD is not compatible with OSF.  This is a
  89127. quick request as I don't have time tonight to get into the details of what
  89128. I've done on this so far.
  89129.  
  89130. Thanks in advance,
  89131.  
  89132. Brian Bowman 
  89133. Ford Motor co.
  89134. bowman@sys2.ped.pto.ford.com
  89135.  
  89136. From news@columbia.edu Sun Feb 12 22:10:27 1995
  89137. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17411
  89138.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 17 Feb 1995 11:49:42 -0500
  89139. Received: by apakabar.cc.columbia.edu id AA14518
  89140.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 17 Feb 1995 11:49:03 -0500
  89141. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!cs.utexas.edu!uwm.edu!msunews!netnews.upenn.edu!netnews.CC.Lehigh.EDU!netnews.CC.Lehigh.EDU!not-for-mail
  89142. From: glb3@Lehigh.EDU
  89143. Newsgroups: comp.protocols.kermit.misc
  89144. Subject: Tek 4105a emulation
  89145. Date: 12 Feb 1995 17:10:27 -0500
  89146. Lines: 9
  89147. Sender: glb3@fidoii.CC.lehigh.EDU
  89148. Message-Id: <3hm10j$109m@ns1.CC.Lehigh.EDU>
  89149. Nntp-Posting-Host: ns1.cc.lehigh.edu
  89150. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  89151.  
  89152. I am interested in using kermit to transfer data from a PDP-11 to a PC.  The
  89153. terminal used to run the PDP-11 is a Tek 4105a.  I can use the Tek 4010
  89154. emulation to accomplish the data transfer, but the lack of graphics emulation
  89155. causes problems.  Is there a way to emulate a Tek 4105a?  If so how do I get
  89156. and install the necessary software?
  89157.  
  89158. Thanks,
  89159.  
  89160. Geoff
  89161.  
  89162. From news@columbia.edu Mon Feb 13 00:06:17 1995
  89163. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18577
  89164.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 17 Feb 1995 12:03:18 -0500
  89165. Received: by apakabar.cc.columbia.edu id AA15985
  89166.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 17 Feb 1995 12:03:17 -0500
  89167. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!pipex!howland.reston.ans.net!usc!sdd.hp.com!hplabs!hplextra!news.dtc.hp.com!hpscit.sc.hp.com!lf.hp.com!smisko
  89168. From: smisko@lf.hp.com (Dan Smisko)
  89169. Newsgroups: comp.protocols.kermit.misc
  89170. Subject: Re: Max xfer speed at 14.4
  89171. Date: 13 Feb 1995 00:06:17 GMT
  89172. Organization: Hewlett-Packard Little Falls Site
  89173. Lines: 57
  89174. Message-Id: <3hm7pp$p80@hpavla.lf.hp.com>
  89175. References: <95042.184751JEMJJ@CUNYVM.CUNY.EDU> <jefeD3wLvE.LpJ@netcom.com>
  89176. Nntp-Posting-Host: hpavdq.lf.hp.com
  89177. X-Newsreader: TIN [version 1.2 PL2]
  89178. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  89179.  
  89180. Pablo (jefe@netcom.com) wrote:
  89181. : JEMJJ@CUNYVM.CUNY.EDU wrote:
  89182. : : I am using Kermit to transfer documents on a 14.4 modem and achieving a max
  89183. : : transfer speed of about 400 bytes/sec.  I am using a packet size of 1913.
  89184. : : I have a feeling that I should be able to perform transfers faster than this,
  89185. : : but I can't seem to do anything else to speed things up.
  89186. : :  
  89187. : : Are there other settings I should be aware of that could be affecting my
  89188. : : transfer speed?  Any tip would be greatly appreciated.
  89189.  
  89190. :     Hey, are you using cKermit on a VAX by any chance?  Geez louise, 
  89191. : I just wrote a message complaining about the EXACT same thing.  If you 
  89192. : get anything figured out, let me know, please.  I've already deflected 
  89193. : all the questions like "Are you sure you have a 14.4k connection?" so I'm 
  89194. : still waiting for some specific ideas to implement either on my end, or 
  89195. : the remote end.
  89196.  
  89197. I'm using C-Kermit on HP-UX and V.32bis on each end.  I get about 1580
  89198. cps on large binary transfers.  My .kermrc is appended.  Good luck.
  89199.  
  89200.  
  89201. Dan Smisko            smisko@lf.hp.com
  89202. Hewlett-Packard            (302)633-8510
  89203. Little Falls Site        (302)633-8915  FAX
  89204. 2850 Centerville Rd.
  89205. Wilmington, DE  19808
  89206.  
  89207. ========================================================================
  89208.  
  89209. set modem hayes
  89210. set dial speed-matching off
  89211. set dial dial-command ATDT%s\13
  89212. set dial init-string ATZ\{13}
  89213.  
  89214. #set flow-control rts/cts
  89215. set flow-control keep
  89216. set line /dev/ttyd00
  89217. set speed 38400
  89218.  
  89219. set carrier off
  89220. set parity none
  89221. set control-character unprefixed all
  89222. set control-character prefixed 0 3 128 131
  89223. #set control-character prefixed 0 1 3 4 17 19 21 128 129 131 132 145 147 149
  89224. set command bytesize 8
  89225. set terminal bytesize 8
  89226. set buffers 32767 32767
  89227. set window-size 8
  89228. set file type binary
  89229. set file name literal
  89230. set file display fullscreen
  89231. set send packet-length 1024
  89232. set receive packet-length 1024
  89233. set block-check 3
  89234.  
  89235. define runterm output term\13, pause 2, ! term <&\v(ttyfd) >&\v(ttyfd)
  89236. define on_exit pause 1, output +++, pause 1, output ath0s0=0\13
  89237.  
  89238. From news@columbia.edu Sun Feb 12 11:39:25 1995
  89239. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19844
  89240.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 17 Feb 1995 12:18:27 -0500
  89241. Received: by apakabar.cc.columbia.edu id AA17921
  89242.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 17 Feb 1995 12:18:25 -0500
  89243. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!news.mathworks.com!news.bluesky.net!news.sprintlink.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  89244. From: jrd@cc.usu.edu (Joe Doupnik)
  89245. Newsgroups: comp.protocols.kermit.misc
  89246. Subject: Re: Max xfer speed at 14.4
  89247. Message-Id: <1995Feb12.173925.41449@cc.usu.edu>
  89248. Date: 12 Feb 95 17:39:25 MDT
  89249. References: <95042.184751JEMJJ@CUNYVM.CUNY.EDU> <jefeD3wLvE.LpJ@netcom.com>
  89250. Organization: Utah State University
  89251. Lines: 34
  89252. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  89253.  
  89254. In article <jefeD3wLvE.LpJ@netcom.com>, jefe@netcom.com (Pablo) writes:
  89255. > JEMJJ@CUNYVM.CUNY.EDU wrote:
  89256. > : I am using Kermit to transfer documents on a 14.4 modem and achieving a max
  89257. > : transfer speed of about 400 bytes/sec.  I am using a packet size of 1913.
  89258. > : I have a feeling that I should be able to perform transfers faster than this,
  89259. > : but I can't seem to do anything else to speed things up.
  89260. > :  
  89261. > : Are there other settings I should be aware of that could be affecting my
  89262. > : transfer speed?  Any tip would be greatly appreciated.
  89263. >     Hey, are you using cKermit on a VAX by any chance?  Geez louise, 
  89264. > I just wrote a message complaining about the EXACT same thing.  If you 
  89265. > get anything figured out, let me know, please.  I've already deflected 
  89266. > all the questions like "Are you sure you have a 14.4k connection?" so I'm 
  89267. > still waiting for some specific ideas to implement either on my end, or 
  89268. > the remote end.
  89269. ---------------    
  89270.     Replying to both correspondents.
  89271.     Not all comms boxes provide the same speed and buffering capacity
  89272. in both directions. As Frank da Cruz has often pointed out (with exasperation)
  89273. Cisco terminal servers are fast and capacious for data moving from the host
  89274. to the client, and exactly the opposite for data moving the other way
  89275. (hardware built expecting only human typing rates).
  89276.     A box with little buffering for client to host traffic and poor
  89277. flow control will drop incoming bytes. So step one is to validate flow
  89278. control at each point along the path. Yes, this may require other people
  89279. to open the wiring closets and pop the covers. Step two is to explore the
  89280. capacity of the link by changing the sending Kermit's outgoing packet size
  89281. (SET SEND PACK nnn). Step three is to get the VAX manager to verify 
  89282. installation of C Kermit and in particular to verify the section in the 
  89283. instructions which discusses terminal buffer sizes (SYSGEN parameter MAXBUF,
  89284. set to be larger than the longest Kermit packet you want to use, mine is set
  89285. to 9216; check by looking at file sys$system:modparams.dat).
  89286.         Joe D.
  89287.  
  89288. From news@columbia.edu Fri Feb 17 18:11:54 1995
  89289. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23515
  89290.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 17 Feb 1995 13:12:00 -0500
  89291. Received: by apakabar.cc.columbia.edu id AA23512
  89292.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 17 Feb 1995 13:11:58 -0500
  89293. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  89294. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  89295. Newsgroups: comp.protocols.kermit.misc
  89296. Subject: Re: Sliding windows - only one is used?
  89297. Date: 17 Feb 1995 18:11:54 GMT
  89298. Organization: Columbia University
  89299. Lines: 35
  89300. Message-Id: <3i2ota$mua@apakabar.cc.columbia.edu>
  89301. References: <3hn07m$4dl@israel-info.datasrv.co.il>
  89302. Nntp-Posting-Host: watsun.cc.columbia.edu
  89303. Cc: 
  89304.  
  89305. In article <3hn07m$4dl@israel-info.datasrv.co.il>,
  89306. 4th Dimension <winter@zeus.datasrv.co.il> wrote:
  89307. >I'm using MS-Kermit 3.14, PL3 on my PC, talking to C-Kermit 5A(190) on
  89308. >the remote Sun.  When I start MSK, I load the FAST macro to get maximum
  89309. >thruput. Transfer of data is pretty fast, except that I never see more
  89310. >than one window used out of the three.  Is this a bug, a feature, or am I
  89311. >doing something wrong?
  89312. >
  89313. It's not a bug and you are probably not doing anything wrong.
  89314.  
  89315. When two Kermit programs have agreed to use a maximum window size greater
  89316. than one, let's say 4, here is what happens:
  89317.  
  89318. The FILE SENDER can send up to 4 packets without waiting for an
  89319. acknowledgement from the file receiver.  Each unacknowledged packet sits
  89320. in the file sender's window until it is acknowledged.  Thus its window
  89321. size grows from 1 to 2 to 3 to 4.  If acknowledgments arrive quickly, the
  89322. window might not grow to its maximum size because it does not need to.
  89323.  
  89324. The job of the FILE RECEIVER is to accept and verify packets, decode them,
  89325. and write the decoded contents out to the file.  If packets arrive in
  89326. sequence, then each one is processed and disposed of as soon as it
  89327. arrives.  If, however, a packet arrives that has a sequence number that is
  89328. more than one greater than the previous packet that was successfully
  89329. processed, this means that a packet is missing.  Thus the packet that just
  89330. arrived can't be written out to disk because if it were, the file would
  89331. have a piece missing.  So the out-of-sequence packet is stored in the
  89332. receiver's window until the missing piece is filled in.
  89333.  
  89334. Thus you won't see the file receiver's window size exceed one unless there
  89335. have been transmission errors, no matter what window size the file sender
  89336. might be using.  For greater detail see pages 102-103 of "Using MS-DOS
  89337. Kermit" or pages 158-161 of "Using C-Kermit".
  89338.  
  89339. - Frank
  89340.  
  89341. From news@columbia.edu Fri Feb 17 05:18:04 1995
  89342. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12029
  89343.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 17 Feb 1995 18:13:31 -0500
  89344. Received: by apakabar.cc.columbia.edu id AA18298
  89345.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 17 Feb 1995 18:13:30 -0500
  89346. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news.moneng.mei.com!uwm.edu!news.alpha.net!news.mathworks.com!uhog.mit.edu!news.mtholyoke.edu!nntp.et.byu.edu!news.provo.novell.com!news.cs.utah.edu!cc.usu.edu!jrd
  89347. From: jrd@cc.usu.edu (Joe Doupnik)
  89348. Newsgroups: comp.protocols.kermit.misc
  89349. Subject: Re: Kermit identifier ESC sequence?
  89350. Message-Id: <1995Feb17.111804.42028@cc.usu.edu>
  89351. Date: 17 Feb 95 11:18:04 MDT
  89352. References: <3i0fi5$5dv@xenon.brooks.af.mil>
  89353. Distribution: world
  89354. Organization: Utah State University
  89355. Lines: 28
  89356. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  89357.  
  89358. In article <3i0fi5$5dv@xenon.brooks.af.mil>, perry@indium.brooks.af.mil (David Perry) writes:
  89359. > This may sound like a strange questions, but with the DOS
  89360. > version of Kermit (3.12), is there a way for a host to 
  89361. > send an escape sequence to the Kermit emulator such that
  89362. > Kermit will reply with some kind of string which indentifies
  89363. > itself as being a Kermit emulator?
  89364. > We have some programmers who are writing an application and
  89365. > would like to query the connecting terminal to find out
  89366. > if it is an emulator, and if so which emulator.
  89367. ------------
  89368.     Enquire/Answerback: Control E. See manual file msvibm.vt.
  89369.     Getting that particular may not be a good long term strategy.
  89370.  
  89371. From that file -
  89372.  
  89373. DEC VT320 and VT102 functions while in ANSI (non-VT52) mode, unsupported
  89374. features are marked by an asterisk (*):
  89375.  
  89376. Control Codes in C0 (no high bit) Area:
  89377.  
  89378.  Name    ASCII    value
  89379.      chart      hex keyboard            operation
  89380.  NUL    0/0    00h   ^@    Ignored except during transparent printing
  89381.  ENQ     0/5        05h   ^E        Answerback message (response: "MS-DOS KERMIT")
  89382.  
  89383.     Joe D.
  89384.  
  89385. From news@columbia.edu Tue Feb 14 04:38:21 1995
  89386. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18009
  89387.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 17 Feb 1995 20:11:07 -0500
  89388. Received: by apakabar.cc.columbia.edu id AA26925
  89389.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 17 Feb 1995 20:11:05 -0500
  89390. Newsgroups: comp.protocols.kermit.misc
  89391. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!news.duke.edu!news-server.ncren.net!concert!mercury!hkennedy
  89392. From: hkennedy@mercury.ncat.edu
  89393. Subject: ckermit linux <-> ckermit vax
  89394. Message-Id: <1995Feb14.043821.23227@mercury.ncat.edu>
  89395. Organization: North Carolina Agricultural and Technical State University
  89396. Date: Tue, 14 Feb 1995 04:38:21 GMT
  89397. Lines: 22
  89398. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  89399.  
  89400.  
  89401. Hi,
  89402.  
  89403. I just upgraded to ckermit linux version 190. My connection for the net is
  89404. an openvms computer that has ckermit 189 loaded. After completion of a
  89405. download (binary or text) while using the consoles in linux, my terminal in
  89406. linux is set in a unstable state. 
  89407.  
  89408. The Linux console terminal is not adding a new line character, and new
  89409. lines are writing over the old lines. This continues even after quiting
  89410. ckermit. Never happened with 189. 
  89411.  
  89412. I have to run a program called reset in Linux or reset the terminal on the
  89413. vms side to make the screen work correctly. 
  89414.  
  89415. Any ideals what I need to set in the linux ckermit?
  89416.  
  89417. Thanks,
  89418.  
  89419. Helen
  89420.  
  89421. I did look in the ckermit book first.
  89422.  
  89423. From news@columbia.edu Sun Feb 12 12:58:04 1995
  89424. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20511
  89425.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 17 Feb 1995 21:02:35 -0500
  89426. Received: by apakabar.cc.columbia.edu id AA01082
  89427.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 17 Feb 1995 21:02:33 -0500
  89428. Newsgroups: comp.protocols.kermit.misc
  89429. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!news.intercon.com!panix!news.mathworks.com!uunet!sangam!shakti!bpcledp
  89430. From: bpcledp@shakti.ncst.ernet.in (BHARAT PETROLEUM CORP. LTD. (EDP CELL))
  89431. Subject: DLL for Kermit Implemention
  89432. Message-Id: <D3w1Cs.H7H@shakti.ncst.ernet.in>
  89433. Organization: National Centre for Software Technology, India
  89434. X-Newsreader: Tin 1.1 PL5
  89435. Date: Sun, 12 Feb 1995 12:58:04 GMT
  89436. Lines: 11
  89437. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  89438.  
  89439. Hi,
  89440.  
  89441. I am developing a communication utility for in house use at our place.
  89442.  
  89443. I would like implement the send and receive routines using kermit protocol.
  89444.  
  89445. I am using VB Prof 3.0 for my development. Any pointer to DLL implementation
  89446. for kermit would be appreciated.
  89447.  
  89448. Abhishek
  89449.  
  89450.  
  89451. From news@columbia.edu Mon Feb 13 02:51:47 1995
  89452. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25722
  89453.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 17 Feb 1995 23:32:00 -0500
  89454. Received: by apakabar.cc.columbia.edu id AA10989
  89455.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 17 Feb 1995 23:31:57 -0500
  89456. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!fdn.fr!univ-lyon1.fr!jussieu.fr!news.oleane.net!oleane!pipex!bnr.co.uk!bcarh8ac.bnr.ca!bcarh189.bnr.ca!nott!torn!spool.mu.edu!agate!dog.ee.lbl.gov!news.cs.utah.edu!cc.usu.edu!jrd
  89457. From: jrd@cc.usu.edu (Joe Doupnik)
  89458. Newsgroups: comp.protocols.kermit.misc
  89459. Subject: Re: Using MS kermit with Open VMS kermit
  89460. Message-Id: <1995Feb13.085147.41528@cc.usu.edu>
  89461. Date: 13 Feb 95 08:51:47 MDT
  89462. References: <D3xF9q.8Ay@actcom.co.il>
  89463. Organization: Utah State University
  89464. Lines: 21
  89465. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  89466.  
  89467. In article <D3xF9q.8Ay@actcom.co.il>, tat@actcom.co.il (Ram Gura) writes:
  89468. > Hi There.
  89469. > I was trying to transmit binary file from an Open VMS system
  89470. > to MS DOS system and back to the VMS.
  89471. > On the VMS , I use Kermit_32, On the MS DOS I use Kermit 3.11
  89472. > There are no errors during the transmission, but back at the
  89473. > VMS system, the file can't function. It probably has changed some
  89474. > how.
  89475. > Does anyone have any suggestions ?
  89476. > Thank you
  89477. > Ram Gura
  89478. ------------------
  89479.     a) SET FILE TYPE BINARY on the transmitting and receiving Kermits.
  89480.        Kermit-32 must have this stated for transmission and reception.
  89481.     b) Please, please, replace obsolete Kermit-32 with C Kermit for VMS.
  89482.     c) MS-DOS Kermit current release is v3.14, so please update that one
  89483.        too.
  89484.     All Columbia Kermits are available from kermit.columbia.edu.
  89485.     Joe D.
  89486.  
  89487.  
  89488. From news@columbia.edu Tue Feb 14 02:42:40 1995
  89489. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25862
  89490.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 17 Feb 1995 23:36:17 -0500
  89491. Received: by apakabar.cc.columbia.edu id AA11373
  89492.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 17 Feb 1995 23:36:15 -0500
  89493. Path: news.columbia.edu!spcuna!citicorp.com!uunet!in1.uu.net!news.mathworks.com!news.duke.edu!eff!news.umbc.edu!midget.towson.edu!mcyzyk
  89494. From: mcyzyk@midget.towson.edu (Mark Cyzyk)
  89495. Newsgroups: comp.protocols.kermit.misc
  89496. Subject: MSKermit 3.13 command line options
  89497. Date: 14 Feb 1995 02:42:40 GMT
  89498. Organization: Towson State University, Towson, MD
  89499. Lines: 15
  89500. Message-Id: <3hp5b0$i0n@news.umbc.edu>
  89501. Nntp-Posting-Host: midget.towson.edu
  89502. X-Newsreader: TIN [version 1.2 PL0]
  89503. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  89504.  
  89505.  
  89506. I am using MSKermit 3.13 and have written some .TAK files that I wish to 
  89507. run from the command line.  The .TAK files themselves run fine, but my 
  89508. problem is that I cannot get back to a MSKermit> prompt while I'm in a 
  89509. session that was initiated from a command line option to run a .TAK 
  89510. file.  Essentially, I do not want my .TAK files to preclude my entrance 
  89511. of "interactive mode" i.e., a return to the Kermit prompt, at some later 
  89512. point in the session.  Can this be done?
  89513.  
  89514. Right now, when I type ALT-X, if I've loaded Kermit without command-line 
  89515. options, I get a Kermit prompt at the bottom of my screen.  Can I do 
  89516. this even if I've used command line options and if so, how?
  89517.  
  89518. Mark Cyzyk
  89519. Towson State University
  89520.  
  89521. From news@columbia.edu Sun Feb 12 22:43:35 1995
  89522. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01752
  89523.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 18 Feb 1995 01:03:47 -0500
  89524. Received: by apakabar.cc.columbia.edu id AA16801
  89525.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 18 Feb 1995 01:03:45 -0500
  89526. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!uunet!in1.uu.net!news.dsndata.com!legba.synergy.net!newsie.wis.com!fryder
  89527. From: fryder@wis.com (fergus ryder)
  89528. Newsgroups: comp.protocols.kermit.misc
  89529. Subject: Kermit on IBM AS/400
  89530. Date: 12 Feb 1995 22:43:35 GMT
  89531. Organization: Wisconsin Internet Services
  89532. Lines: 1
  89533. Message-Id: <3hm2uo$4e0@newsie.wis.com>
  89534. Nntp-Posting-Host: squeaky.free.org
  89535. X-Newsreader: TIN [version 1.2 PL2]
  89536. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  89537.  
  89538.  
  89539.  
  89540. From news@columbia.edu Wed Feb 15 04:13:32 1995
  89541. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04361
  89542.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 18 Feb 1995 02:23:15 -0500
  89543. Received: by apakabar.cc.columbia.edu id AA20426
  89544.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 18 Feb 1995 02:23:12 -0500
  89545. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  89546. From: jrd@cc.usu.edu (Joe Doupnik)
  89547. Newsgroups: comp.protocols.kermit.misc
  89548. Subject: Re: MS-Kermit 3.14pl3 and Graphics Mode
  89549. Message-Id: <1995Feb15.101333.41775@cc.usu.edu>
  89550. Date: 15 Feb 95 10:13:32 MDT
  89551. References: <Gerd.Boehm.775.2F40C536@physik.uni-regensburg.de>
  89552. Organization: Utah State University
  89553. Lines: 34
  89554. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  89555.  
  89556. In article <Gerd.Boehm.775.2F40C536@physik.uni-regensburg.de>, Gerd.Boehm@physik.uni-regensburg.de (Gerd Boehm (2017)) writes:
  89557. > Hello,
  89558. > one simple question which I haven't found answered in the FAQ and
  89559. > in the supplied MS-Kermit docs: How can I leave the graphics mode
  89560. > of the vt200/Tek terminal emulation?
  89561. > I use MS Kermit 3.14pl3 to TELNET to a Sun. Kermit emulates an vt220
  89562. > terminal. An Unix application is able to draw Tek40xx graphics.
  89563. > Kermit switches into graphics mode just fine, but I am unable to
  89564. > leave this mode to get back to the vt220 text terminal emulation. An ESC-
  89565. > Return doesn't help (which works for kermit 3.13). By ESC I only got the 
  89566. > singlecharacter menu. Is there a way back without exiting the TELNET
  89567. > session or is it a bug?
  89568. ----------------
  89569.     ALT-minus sign (on the rank above querty keys). It's keyboard
  89570. verb \Ktermtype. It toggles between text and graphics modes. Some time
  89571. ago it also used to cycle amongst all the terminal types in succession
  89572. but that was not a productive solution.
  89573.     Here is a cutout from file msvibm.vt:
  89574.  OTHER IBM KEYS OPERATIONAL IN CONNECT MODE:
  89575.  
  89576.  IBM key         IBM Verb      Action
  89577.  
  89578.  Keypad Del                    Send ASCII Del code (rubout) \127
  89579.  Backspace (<-)                Send ASCII Del code (rubout) \127  (BS is \8)
  89580.  Keypad -        MODELINE      Toggle mode line on/off (only if Mode Line is
  89581.                                enabled and not used by the host).
  89582.  Alt -           TERMTYPE      Toggle between text and Tek terminal types.
  89583.  Alt =           RESET         Clear screen and reset terminal emulator to
  89584.                                starting (setup) state.
  89585.  Alt b           BREAK         Send a BREAK signal
  89586.     etc
  89587.     Joe D.
  89588.  
  89589.  
  89590. From news@columbia.edu Wed Feb 15 04:18:40 1995
  89591. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04372
  89592.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 18 Feb 1995 02:23:48 -0500
  89593. Received: by apakabar.cc.columbia.edu id AA20447
  89594.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 18 Feb 1995 02:23:47 -0500
  89595. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  89596. From: jrd@cc.usu.edu (Joe Doupnik)
  89597. Newsgroups: comp.protocols.kermit.misc
  89598. Subject: Re: C-Kermit & automatic receive?
  89599. Message-Id: <1995Feb15.101840.41776@cc.usu.edu>
  89600. Date: 15 Feb 95 10:18:40 MDT
  89601. References: <3hpvcj$53m@n.ruf.uni-freiburg.de>
  89602. Organization: Utah State University
  89603. Lines: 104
  89604. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  89605.  
  89606. In article <3hpvcj$53m@n.ruf.uni-freiburg.de>, gartmann@immunbio.mpg.de (Christoph Gartmann) writes:
  89607. > Hello,
  89608. > in a former version of Kermit for DOS there was a feature implemented that
  89609. > did the following:
  89610. >   During a normal terminal session Kermit switched automatically into
  89611. >   RECEIVE when a certain escape sequence was sent from the remote host.
  89612. >   So this escape sequence did the same as if the user pressed the escape
  89613. >   character followed by a C and then entered RECEIVE followed by Return
  89614. >   and finally issued a CONNECT and hit Return.
  89615. > Now I am using C-Kermit 5.A(190) under VAX-VMS and I would like to implement
  89616. > the same functionality. Is there anybody that has already done this, perhaps
  89617. > on some other platform? Or if someone still has the DOS-version and could
  89618. > send me the relevant piece of code for comparison? Any hints are appreciated.
  89619. -----------------
  89620.  
  89621.     Please see kermit.upd in the quick start release package msvibm.zip
  89622. found in directory kermit/bin on kermit.columbia.edu. In particular, read
  89623. about the APC command, portion attached below.
  89624.     Joe D.
  89625. --------------
  89626. UPDATE: THE APC ESCAPE SEQUENCE
  89627.  
  89628. The handling of the CSI ? 34 h / l escape sequences by the VT220 and VT320
  89629. terminal emulators changed between versions 3.12 and 3.13 in order to support
  89630. Hebrew VT220/320/420 terminal emulation, and because DEC software such as
  89631. DECforms expects to use these sequences to control screen-writing direction.
  89632.  
  89633. Old way (described on pages 180-181 of "Using MS-DOS Kermit"): CSI ? 34 h / l
  89634. invoked the TERMINALR and TERMINALS macros, if you had them defined.  This
  89635. required each Kermit user to define them, for example in their MSCUSTOM.INI
  89636. files, a big management problem for large user communities.
  89637.  
  89638. New way: CSI ? 34 h / l controls screen-writing direction, left-to-right or
  89639. right-to-left (for Hebrew and Arabic), as it does on real Hebrew-model VT
  89640. terminals (see Hebrew section above).
  89641.  
  89642. To replace the TERMINALR/TERMINALS function, MS-DOS Kermit 3.13 now supports
  89643. the Application Program Command (APC) escape sequence, which is accepted by
  89644. MS-DOS Kermit 3.13's VT emulators, VT100 and above:
  89645.  
  89646.   APC <string> ST
  89647.  
  89648. In the 7-bit environment, APC is ESC _ and ST (string terminator) is ESC \.
  89649. In the 8-bit environment, APC is decimal 159 and ST is 156 decimal.  The
  89650. <string> can be any MS-DOS Kermit command or list of commands, separated by
  89651. commas, and can be up to 1024 bytes in length.    Upon receipt of this escape
  89652. sequence, MS-DOS Kermit executes the command(s) in the string and then
  89653. automatically resumes CONNECT mode.
  89654.  
  89655.   NOTE: In this respect, APC differs from the old TERMINALR/TERMINALS
  89656.   mechanism, which did NOT automatically re-enter CONNECT mode.  Thus, if
  89657.   you are recycling your TERMINALR/TERMINALS macros for APC use, be sure
  89658.   to remove the ", connect" from the end of their definitions, or else you
  89659.   will have to escape back twice the next time you want the MS-Kermit> prompt.
  89660.  
  89661. For safety, the APC mechanism cannot be used to invoke certain MS-DOS Kermit
  89662. commands that might do damage, like deleting your files.  Included in this
  89663. category is the RUN command, which provides access to DOS and to other
  89664. applications.  This new MS-DOS Kermit command regulates the APC mechanism:
  89665.  
  89666.   SET TERMINAL APC { ON, OFF, UNCHECKED }
  89667.  
  89668. ON means that Kermit will execute only safe commands.  OFF (the default) means
  89669. Kermit will not execute any commands and will ignore APCs.  UNCHECKED means
  89670. Kermit will execute ANY commands sent via APC.  Use UNCHECKED at your own risk.
  89671.  
  89672.   If you want to use this feature, you must enable it explicitly using
  89673.   SET TERMINAL APC ON (recommended) or SET TERMINAL APC UNCHECKED.
  89674.  
  89675. APC is much more flexible than the old TERMINALS/TERMINALR mechanism, and can
  89676. be used for any purpose at all.     For example, it can be used to configure
  89677. MS-DOS Kermit for use with a particular host or application by sending the
  89678. appropriate list of SET commands: communication parameters like parity,
  89679. protocol parameters like packet-length and window size, key mappings, etc.
  89680.  
  89681. It can also be used to initiate file transfers automatically from the host
  89682. without having to escape back to MS-DOS Kermit.     Here's an example you can use
  89683. with C-Kermit 5A.  In your C-Kermit 5A customization file (.mykermrc or
  89684. CKERMOD.INI), add commands like this:
  89685.  
  89686.   define autosend set delay 0, apc receive, send \%1 \%2, statistics
  89687.   define autoreceive apc {send \%1 \%2}, receive, statistics
  89688.  
  89689. Try it!  NOTE: The APC command is new to C-Kermit 5A(189); if you have an
  89690. earlier release of C-Kermit you can define APC as a macro:
  89691.  
  89692.   define apc output \27_\%1\27\92
  89693.  
  89694. You can set up similar procedures with IBM mainframe Kermit, e.g. in VM/CMS by
  89695. stacking commands and using XECHO to emit the escape sequences.
  89696.  
  89697. You can expand these commands to handle text and binary mode if you want to:
  89698.  
  89699.   ; Text transfers
  89700.   define tsend set del 0, set file type text, apc receive, send \%1, stat
  89701.   define treceive apc {set fil typ text, send \%1 \%2}, stat
  89702.   ;
  89703.   ; Binary transfers
  89704.   define bsend set del 0, set file type binary, apc receive, send \%1, stat
  89705.   define breceive apc {set fil typ binary, send \%1 \%2}, stat
  89706.  
  89707.  
  89708.  
  89709.  
  89710. From news@columbia.edu Tue Feb 14 06:56:28 1995
  89711. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06399
  89712.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 18 Feb 1995 03:27:24 -0500
  89713. Received: by apakabar.cc.columbia.edu id AA22873
  89714.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 18 Feb 1995 03:27:22 -0500
  89715. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!swiss.ans.net!gatech!udel!news.mathworks.com!news.alpha.net!solaris.cc.vt.edu!server.cs.vt.edu!not-for-mail
  89716. From: chrisye@csgrad.cs.vt.edu (Chengyin Chris Ye)
  89717. Newsgroups: comp.protocols.kermit.misc
  89718. Subject: How to send "ctrl-c" inside a C-Kermit script.
  89719. Date: 14 Feb 1995 01:56:28 -0500
  89720. Organization: Virginia Tech, Blacksburg, Virginia
  89721. Lines: 31
  89722. Message-Id: <3hpk6s$grr@csgrad.cs.vt.edu>
  89723. Nntp-Posting-Host: csgrad.cs.vt.edu
  89724. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  89725.  
  89726.     I have a kermit script to dail in a network box and setup a slip
  89727. connection. It looks like following:
  89728.  
  89729. ;my kermit script
  89730.     .
  89731.     .
  89732. output ADTD xxx xxxx\13
  89733.     .
  89734.     .
  89735. input {username:}
  89736. output chrisye\13
  89737.     .
  89738.     .
  89739. output slip foo.foo.edu     ; setup my slip here.
  89740. connect
  89741. end
  89742.  
  89743.      At this point, the slip connection was setup, but I have to type
  89744. "ctrl-\c" to get back C-Kermit prompt in order to run "slattach". If I
  89745. run "slattach" without get back C-Kermit prompt first, the connection is
  89746. droped. 
  89747.     What I want to know, if there is a way let the kemit script to  
  89748. sent out "ctrl-\c" automaticlly after setuping the slip connection?
  89749.     
  89750.     Any idea is welcome, I am basicly trying to write a script to
  89751. run kermit and slattach automatically. 
  89752.  
  89753. Thanks
  89754.  
  89755. -chris
  89756.  chrisye@csgrad.cs.vt.edu
  89757.  
  89758. From news@columbia.edu Fri Feb 17 00:27:04 1995
  89759. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06404
  89760.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 18 Feb 1995 03:27:32 -0500
  89761. Received: by apakabar.cc.columbia.edu id AA22882
  89762.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 18 Feb 1995 03:27:29 -0500
  89763. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!usenet.eel.ufl.edu!usenet.fiu.edu!isis.fiu.edu!serss0!michaell
  89764. From: michaell@serss0.fiu.edu (Mike R. Langevin)
  89765. Newsgroups: comp.protocols.kermit.misc
  89766. Subject: Ansi Emulation and MSK! PLEASE HELP!! PLEASE :)
  89767. Date: 17 Feb 1995 00:27:04 GMT
  89768. Organization: Florida International University
  89769. Lines: 25
  89770. Message-Id: <3i0qgo$3bb@newshost.fiu.edu>
  89771. Nntp-Posting-Host: serss0.fiu.edu
  89772. X-Newsreader: TIN [version 1.2 PL2]
  89773. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  89774.  
  89775.  
  89776.  
  89777. --
  89778. Hi Great Kermit Guru's! I need some help, with what might be a bit simple 
  89779. for you great wise ones! (oh, hail the great kermit guru's! :) 
  89780.  
  89781. I have found that kermit supports VT102 remote printing under ANSI. 
  89782. However, the online program I am TELNETing to with kermit asks the remote 
  89783. caller (aka Kermit) if it is VT102. If I set the term to VT102 the 
  89784. program detects that it is an I am able to use it with remote printing but
  89785. I don't receive the correct ANSI characters.  (aka where I should get a block
  89786. i get a U with two dots above it, etc). However, if I set term to ANSI  I 
  89787. get the right characters (aka blocks when im suppose to get blocks and 
  89788. lines when i should get lines) but the program doesn't send the remote 
  89789. print codes because it thinks I am a standard ANSI terminal with no 
  89790. support for VT102 codes. The problem I face is I need to be able to 
  89791. either see the proper ANSI characters in VT102 or I need to be able to 
  89792. lie to the Online program and tell it I am in VT102 when Im really in 
  89793. ANSI. I did see the SET Telnet Term-type and tryed setting it to VT102 
  89794. but it didnt work. (perhaps i didnt do it right "SET TELNET TERM-TYPE VT102")
  89795.  
  89796.  
  89797. Any suggestions? I really could use your help... Please either post reply or
  89798. mail one to mike@panther.fiu.edu
  89799.  
  89800.  
  89801. From news@columbia.edu Mon Feb 13 22:45:47 1995
  89802. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07140
  89803.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 18 Feb 1995 03:48:08 -0500
  89804. Received: by apakabar.cc.columbia.edu id AA23613
  89805.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 18 Feb 1995 03:48:07 -0500
  89806. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!news.intercon.com!panix!news.mathworks.com!newshost.marcam.com!zip.eecs.umich.edu!newsxfer.itd.umich.edu!news.itd.umich.edu!45.75.med.umich.edu!jklaas
  89807. From: James Klaas <jklaas@umich.edu>
  89808. Newsgroups: comp.protocols.kermit.misc
  89809. Subject: Kermit and Windows 95
  89810. Date: 13 Feb 1995 22:45:47 GMT
  89811. Organization: University of Michigan
  89812. Lines: 12
  89813. Distribution: world
  89814. Message-Id: <3honer$ld4@lastactionhero.rs.itd.umich.edu>
  89815. Nntp-Posting-Host: 45.75.med.umich.edu
  89816. Mime-Version: 1.0
  89817. Content-Type: text/plain; charset=ISO-8859-1
  89818. Content-Transfer-Encoding: 8bit
  89819. X-Newsreader: Nuntius 2.0_PPC
  89820. X-Xxmessage-Id: <AB654ACC58014B2D@45.75.med.umich.edu>
  89821. X-Xxdate: Mon, 13 Feb 1995 22:43:40 GMT
  89822. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  89823.  
  89824. I read all the network stuff on how to run Kermit over a network in MS-DOS,
  89825. but I really didn't find anything that could help me out.  Does anyone know if
  89826. I can run Kermit using Windows 95 built in TCP/IP?  These are all virutal mode
  89827. drivers and as such should be available in all DOS session run under Windows. 
  89828. I just have no idea what to do to make Kermit find them.  Thanks for your help.
  89829.  
  89830. +--------------------------------------------------------------------+
  89831. | James Klaas jklaas@umich.edu   -0-    "Any sufficiently advanced   |
  89832. |     technology is indistinguishable from a rigged demo."           |
  89833. +--------------------------------------------------------------------+
  89834. |"We are MicroSoft.  You will be assimilated.  Resistance is futile."|
  89835. +--------------------------------------------------------------------+
  89836.  
  89837. From news@columbia.edu Sat Feb 18 11:38:25 1995
  89838. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02048
  89839.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 18 Feb 1995 06:56:30 -0500
  89840. Received: by apakabar.cc.columbia.edu id AA13343
  89841.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 18 Feb 1995 06:56:29 -0500
  89842. Newsgroups: comp.protocols.kermit.misc
  89843. Path: news.columbia.edu!panix!news.mathworks.com!news.alpha.net!uwm.edu!vixen.cso.uiuc.edu!howland.reston.ans.net!EU.net!sun4nl!echelon!kees
  89844. From: kees@echelon.nl (Kees Hendrikse)
  89845. Subject: Re: Hangup the connection automatically?
  89846. Organization: Echelon Consultancy, Enschede, The Netherlands
  89847. Date: Sat, 18 Feb 1995 11:38:25 GMT
  89848. Message-Id: <D471o2.98D@echelon.nl>
  89849. References: <D44F0z.3Ct@murdoch.acc.Virginia.EDU> <1995Feb17.093953.42006@cc.usu.edu>
  89850. Lines: 34
  89851. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  89852.  
  89853. In <1995Feb17.093953.42006@cc.usu.edu> Joe Doupnik writes:
  89854.  
  89855. > In article <D44F0z.3Ct@murdoch.acc.Virginia.EDU>, esh6h@fulton.seas.Virginia.EDU (Erik Hatcher) writes:
  89856. > > How about a hot key macro that exits the current scenario and
  89857. > > returns to the main menu?  Then label the stations (either on
  89858. > > the terminal or on the computer display) what the hot key is.
  89859. > > 
  89860. > >     Erik
  89861. > --------------
  89862. >     Hot keys imply TSRs and other bad things.
  89863. >     Poorly written library access software is the problem, and
  89864. > that problem is widely spread. It's rather embarassing that the info
  89865. > retrieval folks lag sooo far behind.
  89866. >     Joe D.
  89867.  
  89868. If there is a key-sequence in the library-access software that always gets
  89869. you to a fixed point (e.g. main menu) you can use Kermit's ALT-X key as a
  89870. hotkey by implementing a 'connect'-loop:
  89871.  
  89872.     :reconnect
  89873.     connect
  89874.     output sequence-that-gets-you-back-to-main-menu
  89875.     goto reconnect
  89876.  
  89877. It might take a little experimenting to find a sequence that always works,
  89878. but if you find one, ALT-X will be a near-bullet-proof 'restart'.
  89879.  
  89880.  
  89881.  
  89882. -- 
  89883. Kees Hendrikse                                | email:   kees@echelon.nl
  89884.                                               |
  89885. ECHELON consultancy and software development  | phone: +31 (0)53 836 585
  89886. PO Box 545, 7500AM Enschede, The Netherlands  | fax:   +31 (0)53 337 415
  89887.  
  89888. From news@columbia.edu Tue Feb 14 13:57:41 1995
  89889. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11838
  89890.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 18 Feb 1995 07:48:03 -0500
  89891. Received: by apakabar.cc.columbia.edu id AA15391
  89892.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 18 Feb 1995 07:48:02 -0500
  89893. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!swiss.ans.net!gatech!darwin.sura.net!news.cldc.howard.edu!gg
  89894. From: gg@sulu.cldc.howard.edu (George Gary)
  89895. Newsgroups: comp.protocols.kermit.misc
  89896. Subject: kermit,VM ESA 2.1,ibm tcp/ip,sim3278
  89897. Date: 14 Feb 1995 13:57:41 GMT
  89898. Organization: Howard University, Computer Learning & Design Center
  89899. Lines: 10
  89900. Message-Id: <3hqcsl$oa5@sulu.cldc.howard.edu>
  89901. Nntp-Posting-Host: scs.howard.edu
  89902. X-Newsreader: TIN [version 1.2 PL2]
  89903. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  89904.  
  89905. We have been using kermit on our ibm runngin VM ESA 2.1 for years without
  89906. a problem over dialup thru a Series I and thru an IBM 7171.  Now we have
  89907. users telneting in as vt100 and connecting useing IBM TCP/IP and the 
  89908. SIM3278/TCPIP product.  When logging in via this means and executing the
  89909. kermit module,  the telnet session is immediately closed.  We located a
  89910. site where this is working ok but on a VM/370 operating system.  Does
  89911. anyone know of a site with VM ESA 2.1, IBM TCP/IP, and SIM3278/TCPIP where
  89912. kermit is working over a telnet session or have any clue about this
  89913. problem? Please help!
  89914.  
  89915.  
  89916. From news@columbia.edu Sat Feb 18 12:58:38 1995
  89917. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16184
  89918.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 18 Feb 1995 08:01:47 -0500
  89919. Received: by apakabar.cc.columbia.edu id AA15891
  89920.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 18 Feb 1995 08:01:46 -0500
  89921. Path: news.columbia.edu!panix!news.mathworks.com!uunet!ulowell.uml.edu!jupiter.cs.uml.edu!mbecker
  89922. From: mbecker@jupiter.cs.uml.edu (Mark Becker)
  89923. Newsgroups: comp.protocols.kermit.misc
  89924. Subject: MS-Kermit 3.14 mode line won't stay off.
  89925. Followup-To: comp.protocols.kermit.misc
  89926. Date: 18 Feb 1995 12:58:38 GMT
  89927. Organization: A poorly-installed InterNetNews site
  89928. Lines: 21
  89929. Distribution: usa
  89930. Message-Id: <3i4qtu$smk@ulowell.uml.edu>
  89931. Nntp-Posting-Host: jupiter.cs.uml.edu
  89932. Summary: Mode line sticks on, won't scroll.
  89933. Keywords: kermit_3.14 mode_line.
  89934. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  89935.  
  89936. I'm using Kermit 3.14 to talk to a DEC Alpha running OSF/1 in VT-100 mode via
  89937. a serial port at 14.4K baud.  My hardware is an 80386/16 running DOS-5.  Most
  89938. of the times things work well.
  89939.  
  89940. However, Kermit occasionally flips it's mode line on.  This is distracting.  I
  89941. set it off.  It comes back on again.  I set it off.. it comes back on.
  89942.  
  89943. That mode line does not scroll the full display.  So whenever some text pager
  89944. sets the mode line on, the cursor gets stuck on that line and all thats seen
  89945. are lines flying by in a one-line buffer.
  89946.  
  89947. There don't seem to be any options on 'set mode-line off'.  Maybe there should
  89948. be something along the lines of 'set kermit-mode-line-off' and permit that
  89949. bottom line to scroll with the rest of the display?
  89950.  
  89951. Regards,
  89952.  
  89953. Mark
  89954. +----------------------------------------+--------------------------+
  89955. | Mark Becker    <mbecker@cs.uml.edu>     | #include <std.disclaimer>|
  89956. +----------------------------------------+--------------------------+
  89957.  
  89958. From news@columbia.edu Tue Feb 14 01:30:49 1995
  89959. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16632
  89960.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 18 Feb 1995 08:18:25 -0500
  89961. Received: by apakabar.cc.columbia.edu id AA16896
  89962.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 18 Feb 1995 08:18:24 -0500
  89963. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!swiss.ans.net!gatech!newsfeed.pitt.edu!godot.cc.duq.edu!news.duke.edu!agate!dog.ee.lbl.gov!news.cs.utah.edu!cc.usu.edu!jrd
  89964. From: jrd@cc.usu.edu (Joe Doupnik)
  89965. Newsgroups: comp.protocols.kermit.misc
  89966. Subject: Re: Kermit and Windows 95
  89967. Message-Id: <1995Feb14.073049.41656@cc.usu.edu>
  89968. Date: 14 Feb 95 07:30:49 MDT
  89969. References: <3honer$ld4@lastactionhero.rs.itd.umich.edu>
  89970. Distribution: world
  89971. Organization: Utah State University
  89972. Lines: 13
  89973. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  89974.  
  89975. In article <3honer$ld4@lastactionhero.rs.itd.umich.edu>, James Klaas <jklaas@umich.edu> writes:
  89976. > I read all the network stuff on how to run Kermit over a network in MS-DOS,
  89977. > but I really didn't find anything that could help me out.  Does anyone know if
  89978. > I can run Kermit using Windows 95 built in TCP/IP?  These are all virutal mode
  89979. > drivers and as such should be available in all DOS session run under Windows. 
  89980. > I just have no idea what to do to make Kermit find them.  Thanks for your help.
  89981. ----------------
  89982.     Why do people keep trying these things, sigh.
  89983.     No DOS program (that's DOS, not Windows) can use a pure Windows
  89984. TCP/IP stack. The program structures are vastly different. If Microsoft
  89985. provides a DOS gateway then fine, else no. Windows programs/.dlls/etc
  89986. are not compatible with DOS programs.
  89987.     Joe D.
  89988.  
  89989. From news@columbia.edu Tue Feb 14 02:10:30 1995
  89990. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17577
  89991.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 18 Feb 1995 08:53:52 -0500
  89992. Received: by apakabar.cc.columbia.edu id AA18379
  89993.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 18 Feb 1995 08:53:50 -0500
  89994. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!swiss.ans.net!gatech!ncar!newsxfer.itd.umich.edu!agate!dog.ee.lbl.gov!news.cs.utah.edu!cc.usu.edu!jrd
  89995. From: jrd@cc.usu.edu (Joe Doupnik)
  89996. Newsgroups: comp.protocols.kermit.misc
  89997. Subject: Re: Kermit through Tymenet????
  89998. Message-Id: <1995Feb14.081030.41660@cc.usu.edu>
  89999. Date: 14 Feb 95 08:10:30 MDT
  90000. References: <3hoqsj$bfv@solar.sky.net>
  90001. Organization: Utah State University
  90002. Lines: 18
  90003. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  90004.  
  90005. In article <3hoqsj$bfv@solar.sky.net>, racerx@solar.sky.net (Ken Pearce) writes:
  90006. > Is there an inherent problem with kermit through tymenet (which I'm told
  90007. > is an X.25 packet switching network)???????
  90008. > I'm getting maximum throughput of 258bytes/sec even though my packet
  90009. > sizes are set to 1024.
  90010. > Any clues??
  90011. > Thanks in advance....
  90012. ----------
  90013.     To ask the obvious: maybe that's all that the Tymenet channel
  90014. can carry? Those things are time sharing of a comms line, and such 
  90015. situations are often very slow since they expect only interactive
  90016. keystrokes and similar from the client.
  90017.     To ask another question: did you engage sliding windows with
  90018. many window slots? And, which Kermit is on each end of the channel?
  90019.     Joe D.
  90020.  
  90021. From news@columbia.edu Sat Feb 18 14:44:27 1995
  90022. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19177
  90023.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 18 Feb 1995 09:44:33 -0500
  90024. Received: by apakabar.cc.columbia.edu id AA20915
  90025.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 18 Feb 1995 09:44:32 -0500
  90026. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  90027. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  90028. Newsgroups: comp.protocols.kermit.misc
  90029. Subject: Re: How to send "ctrl-c" inside a C-Kermit script.
  90030. Date: 18 Feb 1995 14:44:27 GMT
  90031. Organization: Columbia University
  90032. Lines: 18
  90033. Message-Id: <3i514b$kdf@apakabar.cc.columbia.edu>
  90034. References: <3hpk6s$grr@csgrad.cs.vt.edu>
  90035. Nntp-Posting-Host: watsun.cc.columbia.edu
  90036. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  90037.  
  90038. In article <3hpk6s$grr@csgrad.cs.vt.edu>,
  90039. Chengyin Chris Ye <chrisye@csgrad.cs.vt.edu> wrote:
  90040. >    I have a kermit script to dail in a network box and setup a slip
  90041. >connection. It looks like following:
  90042. >
  90043. <stuff deleted>
  90044.  
  90045. >connect
  90046. >end
  90047.  
  90048. At this point, why are you entering CONNECT mode?
  90049. If you don't need the terminal emulator to type something manually you
  90050. should not be entering CONNECT.  Then you won't need to type "ctrl-\c".
  90051. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  90052. "C-Kermit: available on more platforms than any other communications software."
  90053. "Kermit FTP: sending files whenever and wherever they are needed."
  90054.   OS/2 version 5A(190): ftp://kermit.columbia.edu/kermit/archives/cko190.zip 
  90055.  
  90056. From news@columbia.edu Thu Feb 16 01:45:31 1995
  90057. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19375
  90058.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 18 Feb 1995 09:51:17 -0500
  90059. Received: by apakabar.cc.columbia.edu id AA21275
  90060.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 18 Feb 1995 09:51:16 -0500
  90061. Path: news.columbia.edu!sol.ctr.columbia.edu!s-cwis.unomaha.edu!news.mtholyoke.edu!uhog.mit.edu!news.mathworks.com!uunet!in1.uu.net!news.eden.com!arlut.utexas.edu!geraldo.cc.utexas.edu!lexus.gslis.utexas.edu!nksung
  90062. From: nksung@fiat.gslis.utexas.edu (Nackil Sung)
  90063. Newsgroups: comp.protocols.kermit.misc
  90064. Subject: Hangup the connection automatically?
  90065. Date: 16 Feb 1995 01:45:31 GMT
  90066. Organization: The University of Texas at Austin, Austin, Texas
  90067. Lines: 9
  90068. Message-Id: <3huanr$8gh@geraldo.cc.utexas.edu>
  90069. Nntp-Posting-Host: lexus.gslis.utexas.edu
  90070. X-Newsreader: TIN [version 1.2 PL2]
  90071. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  90072.  
  90073. Is it possible to set up Kermit so that a session disconnects 
  90074. automatically after a certain period of idle time?       I'm a librarian 
  90075. developing an interface which access remote bibliographic databases through 
  90076. TCP/IP.  Students usually search a particular database and leave without 
  90077. exiting completely.  This usually causes confusion for the next student 
  90078. who wants to use the different database.   
  90079. Can you help me?   Thanx in advance.
  90080.  
  90081. Nackil
  90082.  
  90083. From news@columbia.edu Tue Feb 14 01:32:23 1995
  90084. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22716
  90085.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 18 Feb 1995 11:32:24 -0500
  90086. Received: by apakabar.cc.columbia.edu id AA27101
  90087.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 18 Feb 1995 11:32:22 -0500
  90088. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!usc!howland.reston.ans.net!agate!dog.ee.lbl.gov!news.cs.utah.edu!cc.usu.edu!jrd
  90089. From: jrd@cc.usu.edu (Joe Doupnik)
  90090. Newsgroups: comp.protocols.kermit.misc
  90091. Subject: Re: MSKermit 3.13 command line options
  90092. Message-Id: <1995Feb14.073223.41657@cc.usu.edu>
  90093. Date: 14 Feb 95 07:32:23 MDT
  90094. References: <3hp5b0$i0n@news.umbc.edu>
  90095. Organization: Utah State University
  90096. Lines: 17
  90097. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  90098.  
  90099. In article <3hp5b0$i0n@news.umbc.edu>, mcyzyk@midget.towson.edu (Mark Cyzyk) writes:
  90100. > I am using MSKermit 3.13 and have written some .TAK files that I wish to 
  90101. > run from the command line.  The .TAK files themselves run fine, but my 
  90102. > problem is that I cannot get back to a MSKermit> prompt while I'm in a 
  90103. > session that was initiated from a command line option to run a .TAK 
  90104. > file.  Essentially, I do not want my .TAK files to preclude my entrance 
  90105. > of "interactive mode" i.e., a return to the Kermit prompt, at some later 
  90106. > point in the session.  Can this be done?
  90107. > Right now, when I type ALT-X, if I've loaded Kermit without command-line 
  90108. > options, I get a Kermit prompt at the bottom of my screen.  Can I do 
  90109. > this even if I've used command line options and if so, how?
  90110. ------------
  90111.     See the manual on keyword STAY to keep MSK active when the last
  90112. command line action has completed.
  90113.     Joe D.
  90114.  
  90115. From news@columbia.edu Tue Feb 14 01:34:51 1995
  90116. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22747
  90117.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 18 Feb 1995 11:33:21 -0500
  90118. Received: by apakabar.cc.columbia.edu id AA27153
  90119.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 18 Feb 1995 11:33:19 -0500
  90120. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!usc!howland.reston.ans.net!agate!dog.ee.lbl.gov!news.cs.utah.edu!cc.usu.edu!jrd
  90121. From: jrd@cc.usu.edu (Joe Doupnik)
  90122. Newsgroups: comp.protocols.kermit.misc
  90123. Subject: Re: Sliding windows - only one is used?
  90124. Message-Id: <1995Feb14.073451.41658@cc.usu.edu>
  90125. Date: 14 Feb 95 07:34:51 MDT
  90126. References: <3hn07m$4dl@israel-info.datasrv.co.il>
  90127. Organization: Utah State University
  90128. Lines: 14
  90129. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  90130.  
  90131. In article <3hn07m$4dl@israel-info.datasrv.co.il>, winter@zeus.datasrv.co.il (4th Dimension) writes:
  90132. > Hi,
  90133. > I'm using MS-Kermit 3.14, PL3 on my PC, talking to C-Kermit 5A(190) on the
  90134. > remote Sun.
  90135. > When I start MSK, I load the FAST macro to get maximum thruput. Transfer
  90136. > of data is pretty fast, except that I never see more than one window
  90137. > used out of the three.
  90138. > Is this a bug, a feature, or am I doing something wrong?
  90139. ----------
  90140.     During file reception with sliding windows the receiver will
  90141. show only one window slot in use because it's seeing packets in order
  90142. and the head of the queue is being serviced at all times. If a bad packet 
  90143. arrives then future ones occupy more slots until the replacment arrives.
  90144.         Joe D.
  90145.  
  90146. From news@columbia.edu Tue Feb 14 19:44:59 1995
  90147. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23956
  90148.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 18 Feb 1995 12:10:05 -0500
  90149. Received: by apakabar.cc.columbia.edu id AA29806
  90150.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 18 Feb 1995 12:10:02 -0500
  90151. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!swiss.ans.net!gatech!newsxfer.itd.umich.edu!srvr1.flint.umich.edu!gmi!zombie.ncsc.mil!news.mathworks.com!uunet!nwnexus!news1.halcyon.com!chinook!ken
  90152. From: ken@chinook.halcyon.com (Ken Pizzini)
  90153. Newsgroups: comp.protocols.kermit.misc
  90154. Subject: Re: Sliding windows - only one is used?
  90155. Date: 14 Feb 1995 19:44:59 GMT
  90156. Organization: What, me?
  90157. Lines: 16
  90158. Message-Id: <3hr17r$ofe@news1.halcyon.com>
  90159. References: <3hn07m$4dl@israel-info.datasrv.co.il>
  90160. Nntp-Posting-Host: chinook.halcyon.com
  90161. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  90162.  
  90163. In article <3hn07m$4dl@israel-info.datasrv.co.il>,
  90164. 4th Dimension <winter@zeus.datasrv.co.il> wrote:
  90165. >I'm using MS-Kermit 3.14, PL3 on my PC, talking to C-Kermit 5A(190) on the
  90166. >remote Sun.
  90167. >When I start MSK, I load the FAST macro to get maximum thruput. Transfer
  90168. >of data is pretty fast, except that I never see more than one window
  90169. >used out of the three.
  90170. >Is this a bug, a feature, or am I doing something wrong?
  90171.  
  90172. If you have a clean, low-latency, connection then your receiving
  90173. Kermit will be acknowleging packets fast enough that the extra
  90174. buffering of the other available windows will not be needed.
  90175. If you really want to force multiple windows, inject some line
  90176. noise into your connection ;-).
  90177.  
  90178.         --Ken Pizzini
  90179.  
  90180. From news@columbia.edu Fri Feb 17 12:50:12 1995
  90181. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24047
  90182.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 18 Feb 1995 12:13:33 -0500
  90183. Received: by apakabar.cc.columbia.edu id AA00126
  90184.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 18 Feb 1995 12:13:32 -0500
  90185. Path: news.columbia.edu!panix!news.mathworks.com!satisfied.elf.com!wizard.pn.com!Germany.EU.net!netmbx.de!CNB.CompuNet.DE!zrz.TU-Berlin.DE!cs.tu-berlin.de!fauern!fen!fim.uni-erlangen.de!da213
  90186. From: da213@fim.uni-erlangen.de (Thomas Rusch)
  90187. Newsgroups: comp.protocols.kermit.misc
  90188. Subject: Kermit for SUN/OS ?
  90189. Date: Fri, 17 Feb 1995 12:50:12 GMT
  90190. Organization: Free-Net Erlangen Nuernberg, Germany
  90191. Message-Id: <3i2624F4cp@uni-erlangen.de>
  90192. Nntp-Posting-Host: freenet-a.fim.uni-erlangen.de
  90193. Lines: 6
  90194. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  90195.  
  90196.  
  90197. Auf welcher FTP-Site finde ich die C-Quelle fur Kermit fur SUN/OS
  90198.  
  90199.  
  90200. Danke jetzt schon
  90201.  
  90202.  
  90203. From news@columbia.edu Tue Feb 14 18:42:44 1995
  90204. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26286
  90205.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 18 Feb 1995 13:06:19 -0500
  90206. Received: by apakabar.cc.columbia.edu id AA03611
  90207.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 18 Feb 1995 13:06:16 -0500
  90208. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!swiss.ans.net!howland.reston.ans.net!news2.near.net!news.delphi.com!news2.delphi.com!not-for-mail
  90209. From: BUSHEYA@news1.delphi.com (BUSHEYA@DELPHI.COM)
  90210. Newsgroups: comp.protocols.kermit.misc
  90211. Subject: c-kermit for os/2..SLIP?
  90212. Date: 14 Feb 1995 13:42:44 -0500
  90213. Organization: Delphi Internet Services Corporation
  90214. Lines: 10
  90215. Message-Id: <3hqtj4$g8c@news2.delphi.com>
  90216. Nntp-Posting-Host: news2.delphi.com
  90217. Summary: can ckermit for os/2 provide a slip connectionn?
  90218. Keywords: kermit os2 os/2 slip
  90219. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  90220.  
  90221. Heeeelllpp! I just got a slip connection to my university's VAX via a 
  90222. data link thru a annex server.... I thought C-kermit could provide a SLIP 
  90223. connection..... Can it?
  90224.  
  90225.     busheya@splava.cc.plattsburgh.edu
  90226.     busheya@delphi.com
  90227.     Busheya@ropt1.am.wyeth.com
  90228.  
  90229. please e-mail or post a rely- note: this is only a hobby.
  90230.  
  90231.  
  90232. From postmaster@columbia.edu Fri Feb 17 22:13:50 1995
  90233. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27488
  90234.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 18 Feb 1995 13:38:00 -0500
  90235. Received: by apakabar.cc.columbia.edu id AA05662
  90236.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 18 Feb 1995 13:37:58 -0500
  90237. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news.sprintlink.net!hookup!news.mathworks.com!usenet.eel.ufl.edu!usenet.fiu.edu!isis.fiu.edu!serss0!michaell
  90238. From: michaell@serss0.fiu.edu (Mike R. Langevin)
  90239. Newsgroups: comp.protocols.kermit.misc
  90240. Subject: Re: Ansi Emulation and MSK! PLEASE HELP!! PLEASE :)
  90241. Date: 17 Feb 1995 22:13:50 GMT
  90242. Organization: Florida International University
  90243. Lines: 47
  90244. Message-Id: <3i372u$mk8@newshost.fiu.edu>
  90245. References: <3i0qgo$3bb@newshost.fiu.edu> <1995Feb17.093632.42004@cc.usu.edu>
  90246. Nntp-Posting-Host: serss0.fiu.edu
  90247. X-Newsreader: TIN [version 1.2 PL2]
  90248. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  90249.  
  90250. Joe Doupnik (jrd@cc.usu.edu) wrote:
  90251. : In article <3i0qgo$3bb@newshost.fiu.edu>, michaell@serss0.fiu.edu 
  90252.          (Mike R. Langevin) writes:
  90253. : > 
  90254. : > 
  90255. : > --
  90256. : > Hi Great Kermit Guru's! I need some help, with what might be a bit simple 
  90257. : > for you great wise ones! (oh, hail the great kermit guru's! :) 
  90258. : > 
  90259. : > I have found that kermit supports VT102 remote printing under ANSI. 
  90260. : > However, the online program I am TELNETing to with kermit asks the remote 
  90261. : > caller (aka Kermit) if it is VT102. If I set the term to VT102 the 
  90262. : > program detects that it is an I am able to use it with remote printing but
  90263. : > I don't receive the correct ANSI characters.  (aka where I should get a 
  90264.     block
  90265. : > i get a U with two dots above it, etc). However, if I set term to ANSI  I 
  90266. : > get the right characters (aka blocks when im suppose to get blocks and 
  90267. : > lines when i should get lines) but the program doesn't send the remote 
  90268. : > print codes because it thinks I am a standard ANSI terminal with no 
  90269. : > support for VT102 codes. The problem I face is I need to be able to 
  90270. : > either see the proper ANSI characters in VT102 or I need to be able to 
  90271. : > lie to the Online program and tell it I am in VT102 when Im really in 
  90272. : > ANSI. I did see the SET Telnet Term-type and tryed setting it to VT102 
  90273. : > but it didnt work. (perhaps i didnt do it right "SET TELNET TERM-TYPE 
  90274.     VT102")
  90275. : -------------
  90276. :     You are twisting the wrong knob. What the other end is doing is
  90277. : sending IBM PC Code Page glyphs yet you have the terminal emulation character
  90278. : set of Latin1. SET TERM CHAR TRANSPARENT to go to the currently active Code
  90279. : Page in the display adapter.
  90280. :     These matters are explained in the user's manual, the book "Using
  90281. : MS-DOS Kermit", details on the MSK Help screen.
  90282. :     Joe D.
  90283.  
  90284. --
  90285. No, Unfortunatly, that isn't it. But it was close. I did read the Using 
  90286. Ms-dos Kermit and that was the first (ok the third) thing I tried. I'm still 
  90287. getting the wrong characters. But instead of U's with two dots Im getting 
  90288. triangles and upside down U's and other neat (ok not so neat 
  90289. characters)..I checked the code page on my PC and it is set to 437 and I 
  90290. checked the code page on the PC running the online program it is also 437.
  90291.  
  90292.  
  90293. Any other suggestions?
  90294.  
  90295. Please help :)
  90296.  
  90297.  
  90298. From postmaster@columbia.edu Sat Feb 18 16:08:42 1995
  90299. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27630
  90300.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 18 Feb 1995 13:40:07 -0500
  90301. Received: by apakabar.cc.columbia.edu id AA05786
  90302.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 18 Feb 1995 13:40:06 -0500
  90303. Path: news.columbia.edu!panix!news.mathworks.com!news.alpha.net!pacifier!pacifier!not-for-mail
  90304. From: mikef@pacifier.com (Mike Freeman)
  90305. Newsgroups: comp.protocols.kermit.misc
  90306. Subject: Re: Using MS kermit with Open VMS kermit
  90307. Date: 18 Feb 1995 08:08:42 -0800
  90308. Organization: none
  90309. Lines: 38
  90310. Message-Id: <3i562a$20l@pacifier.com>
  90311. References: <D3xF9q.8Ay@actcom.co.il>
  90312. Nntp-Posting-Host: pacifier.com
  90313. Keywords: VMS, Kermit, Binary
  90314. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  90315.  
  90316. In article <D3xF9q.8Ay@actcom.co.il>, Ram Gura <tat@actcom.co.il> wrote:
  90317. >
  90318. >I was trying to transmit binary file from an Open VMS system
  90319. >to MS DOS system and back to the VMS.
  90320. >On the VMS , I use Kermit_32, On the MS DOS I use Kermit 3.11
  90321. >There are no errors during the transmission, but back at the
  90322. >VMS system, the file can't function. It probably has changed some
  90323. >how.
  90324. >
  90325. >Does anyone have any suggestions ?
  90326. >
  90327.  
  90328.  
  90329. Hi, Ram.
  90330.  
  90331. Check the attributes of the binary file on the Vax with a
  90332.  
  90333. $ DIRECTORY /FULL
  90334.  
  90335. before downloading it to the PC and once again after uploading it to
  90336. the Vax again.  I am certain you will find some differences.  You
  90337. will need to use a RMS-attribute-modifying utility like Joe
  90338. Meadows's very fine FILE utility to modify the RMS attributes such
  90339. that VMS will find them palatable.  Alternatively, you could use
  90340. VMSHEX and VMSDEH (available from Columbia) which produce an ASCII
  90341. hex file for transfer and which preserve RMS file attributes.
  90342.  
  90343. Incidentally, I'm sure you'll get a flood of messages in this
  90344. newsgroup telling you to get C-Kermit Version 5A(190) for Vax/VMS
  90345. and Ms-Kermit Version 3.14 (especially the former); they are right;
  90346. thruput with C-Kermit for Vax/VMS is astoundingly greater than that of old 
  90347. Bliss-32 Kermit (I still use both occasionally).
  90348.  
  90349. Good luck!
  90350. -- 
  90351. Mike Freeman            |       Internet: mikef@pacifier.com
  90352. GEnie: M.FREEMAN11      |       Amateur Radio Callsign: K7UIJ
  90353. ... Virtue is its own punishment.
  90354.  
  90355. From postmaster@columbia.edu Tue Feb 14 21:28:31 1995
  90356. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28275
  90357.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 18 Feb 1995 13:57:01 -0500
  90358. Received: by apakabar.cc.columbia.edu id AA06823
  90359.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 18 Feb 1995 13:56:59 -0500
  90360. Newsgroups: comp.protocols.kermit.misc
  90361. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!omen!caf
  90362. From: caf@omen.COM (Chuck Forsberg WA7KGX)
  90363. Subject: Re: interesting from OMEN
  90364. Organization: Omen Technology INC, Portland Rain Forest
  90365. Date: Tue, 14 Feb 1995 21:28:31 GMT
  90366. Message-Id: <D40EBJ.HLF@omen.COM>
  90367. References: <GIlCluqcZV$U078yn@primenet.com> <1995Feb7.100929.40873@cc.usu.edu>
  90368. Lines: 27
  90369. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  90370.  
  90371. In article <1995Feb7.100929.40873@cc.usu.edu> jrd@cc.usu.edu (Joe Doupnik) writes:
  90372. >In article <GIlCluqcZV$U078yn@primenet.com>, jbishop@primenet.com (Jeff Bishop) writes:
  90373. >> Well, I found a file called knewstru.zip on a BBS that discussed the kermit
  90374. >> news article that claims faster transfers than zmodem. It surely attacks this
  90375. >> claim and find it based with pretty interesting facts. If any of you are
  90376. >> interested in reading this article (complete with gif pictures) read on. You
  90377. >> can ftp to ftp.primenet.com and log in as anonymous. Once here, cd to
  90378. >> /users/j/jbishop and get the file knewstru.zip (in binary mode).
  90379. >> 
  90380. >> Jeff
  90381. >-------
  90382. >    That item again? Jeff, that is a pretty shoddy thing, rather short
  90383. >on facts, which Chuck put out last summer. I hope you can a) read carefully
  90384. >the material from Columbia too, and b) run your own tests.
  90385. >    Joe D.
  90386. >
  90387. >
  90388.  
  90389. No, Joe, it's an updated version that explains the behavior of
  90390. Columbia University's Stochastic Telepathic Kermit Hyperprotocol,
  90391. something Columbia has not been able to do.
  90392.  
  90393. -- 
  90394. Chuck Forsberg WA7KGX caf@omen.COM      503-621-3406 FAX:-3735
  90395.    Omen Technology Inc      "The High Reliability Software"
  90396. Author of YMODEM, ZMODEM, Professional-YAM, ZCOMM, GSZ and DSZ
  90397. TeleGodzilla BBS: 503-621-3746  FTP: ftp.cs.pdx.edu pub/zmodem
  90398.  
  90399. From postmaster@columbia.edu Sat Feb 18 15:35:21 1995
  90400. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28322
  90401.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 18 Feb 1995 13:57:23 -0500
  90402. Received: by apakabar.cc.columbia.edu id AA06852
  90403.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 18 Feb 1995 13:57:22 -0500
  90404. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!usceast!usceast!not-for-mail
  90405. From: woo@usceast.cs.scarolina.edu (Seung-Chul Woo)
  90406. Newsgroups: comp.protocols.kermit.misc
  90407. Subject: where to put 'ATL0' to lower volumn in kermit?
  90408. Date: 18 Feb 1995 10:35:21 -0500
  90409. Organization: University of South Carolina - Columbia - Computer Science
  90410. Lines: 14
  90411. Message-Id: <3i543p$cu9@poplar.cs.scarolina.edu>
  90412. Nntp-Posting-Host: poplar.cs.scarolina.edu
  90413. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  90414.  
  90415. Hello netters,
  90416.  
  90417. I hope this is a right place to post.
  90418. I want to mute my modem speaker, I can not find a proper place to
  90419. put 'ATL0' to in .kermrc file.
  90420.  
  90421. I've tried several commands in 'set dial something' in vain.
  90422.  
  90423. Thank you.
  90424.  
  90425. - Seungchul Woo
  90426.  
  90427.   E-Mail: woo@cs.scarolina.edu
  90428.  
  90429.  
  90430. From postmaster@columbia.edu Sat Feb 18 18:53:05 1995
  90431. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28363
  90432.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 18 Feb 1995 13:57:50 -0500
  90433. Received: by apakabar.cc.columbia.edu id AA06880
  90434.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 18 Feb 1995 13:57:49 -0500
  90435. Path: news.columbia.edu!panix!news.mathworks.com!news.alpha.net!uwm.edu!uwvax!trappist.cs.wisc.edu!zakarian
  90436. From: zakarian@trappist.cs.wisc.edu (Armand Zakarian)
  90437. Newsgroups: comp.protocols.kermit.misc
  90438. Subject: Re: MS Kermit and ICMPs
  90439. Date: 18 Feb 1995 18:53:05 GMT
  90440. Organization: U of Wisconsin CS Dept
  90441. Lines: 32
  90442. Distribution: usa
  90443. Message-Id: <3i5fmh$gkr@spool.cs.wisc.edu>
  90444. References: <3i37sg$qnj@spool.cs.wisc.edu> <1995Feb17.214654.42091@cc.usu.edu>
  90445. Nntp-Posting-Host: trappist.cs.wisc.edu
  90446. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  90447.  
  90448. In article <1995Feb17.214654.42091@cc.usu.edu>,
  90449. Joe Doupnik <jrd@cc.usu.edu> wrote:
  90450. >In article <3i37sg$qnj@spool.cs.wisc.edu>, zakarian@trappist.cs.wisc.edu (Armand Zakarian) writes:
  90451. >> I think the MS Kermit documentation mentions that it should
  90452. >> respond to pings.  It doesn't seem to (MS Kermit 3.14 over SLIP).
  90453. >> Not only that, but Kermit reboots the machine when pinged
  90454. >> with a 1000 bytes packet. 
  90455. >---------------
  90456. >    MS-DOS Kermit v3.14 running on my desktop (jrd.usu.edu), as
  90457. >pinged (pung?) across the local site via Ethernet. I have no ready
  90458. >way of using SLIP, but I might caution that SLIP's inherent max
  90459. >packet length is only 1000 bytes. Maybe your SLIP driver is not quite
  90460. >what it should be?
  90461. >    Joe D.
  90462. >--------------
  90463. [...]
  90464.  
  90465. Happens with both slip8250 from the Kermit distribution and
  90466. P. Tattam's slipper.   I just tried pinging with 500 byte 
  90467. packets and machine locked hard with terrible sounds coming
  90468. from the speaker.
  90469.  
  90470. It's quite possible that something in my configuration/hardware
  90471. is causing this behavior.  Anyone else running SLIP care to
  90472. try it?
  90473.  
  90474. BTW, are you sure about the 1000 byte packet length limit in
  90475. SLIP.  It seems weird they wouldn't support ethernet-size
  90476. packets.  And my term server says MTU is 1460 when entering
  90477. SLIP mode.
  90478. -- 
  90479. Armand Zakarian
  90480.  
  90481. From postmaster@columbia.edu Tue Feb 14 21:43:59 1995
  90482. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28429
  90483.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 18 Feb 1995 13:58:33 -0500
  90484. Received: by apakabar.cc.columbia.edu id AA06922
  90485.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 18 Feb 1995 13:58:32 -0500
  90486. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!in1.uu.net!nntp.cac.washington.edu!trieste.stat.washington.edu!neal
  90487. From: neal@trieste.stat.washington.edu (Phil Neal)
  90488. Newsgroups: comp.protocols.kermit.misc
  90489. Subject: kermit  on irix 5.2 ?
  90490. Date: 14 Feb 1995 21:43:59 GMT
  90491. Organization: U. Washington Dept. of Statistics
  90492. Lines: 19
  90493. Message-Id: <3hr86v$4r1@news.u.washington.edu>
  90494. Nntp-Posting-Host: trieste.stat.washington.edu
  90495. X-Newsreader: TIN [version 1.2 PL2]
  90496. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  90497.  
  90498.  
  90499. Dear kermit people,
  90500.  
  90501. Has anybody ported kermit to SGI machines running
  90502. Irix 5.2 ? If so, can I get the binaries and source ?
  90503.  
  90504. Thanks,
  90505. Phil
  90506. neal@stat.washington.edu
  90507.  
  90508. --
  90509. ----------------------------------------------------------------
  90510. Phil Neal, Systems Programmer, Statistics Department GN-22
  90511. University of Washington, Seattle, Wa. 98195 USA  | 206-685-1627
  90512. http://www.stat.washington.edu/phil/
  90513. ----------------------------------------------------------------
  90514. "Reading snow is like listening to music. 
  90515.  To describe what you've read is like explaining music in writing."
  90516.    --- Smilla. In "Smilla's Sense of Snow" by Peter Hoeg ---
  90517.  
  90518. From news@columbia.edu Wed Feb 15 16:42:29 1995
  90519. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20344
  90520.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 18 Feb 1995 22:27:47 -0500
  90521. Received: by apakabar.cc.columbia.edu id AA27929
  90522.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 18 Feb 1995 22:27:45 -0500
  90523. Newsgroups: comp.protocols.kermit.misc
  90524. Path: news.columbia.edu!sol.ctr.columbia.edu!news.msfc.nasa.gov!cs.utk.edu!gatech!swrinde!cs.utexas.edu!news.sprintlink.net!unvax.union.edu!news
  90525. From: "Mary P. McKnight" <mcknighm@unvax.union.edu>
  90526. Subject: Kermit 3.14 and Winsock
  90527. Message-Id: <1995Feb15.164229.6472@unvax.union.edu>
  90528. Sender: news@unvax.union.edu (System PRIVILEGED Account USENET News System)
  90529. Organization: Union College, Schenectady, NY
  90530. Date: Wed, 15 Feb 1995 16:42:29 GMT
  90531. Lines: 26
  90532. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  90533.  
  90534. I have been attempting to get Kermit 3.14 (using TCP/IP) to work thru
  90535. Windows 3.1.  I can get it to work outside of Windows without any
  90536. problems.  However, from within Windows I get the following error
  90537. message:
  90538.  
  90539.  Unable to ARP resolve gateway 149.106.1.1
  90540.   Cannot reach name server 192.52.218.45
  90541.   trying name ted
  90542.  Unable to ARP resolve gateway 149.106.1.1
  90543.   Cannot reach name server 192.52.218.2
  90544.  Cannot resolve address of host ted
  90545.  
  90546. However, if I close down Trumpet Winsock (but with winpkt still
  90547. running), Kermit works fine.
  90548.  
  90549. Can someone please explain to me what's going on?  I need to have
  90550. Winsock running for applications other than Kermit so I can't keep
  90551. closing it down.
  90552.  
  90553. Thanks in advance for any help.
  90554.  
  90555. Mary McKnight
  90556. Office of Computer Services
  90557. Union College
  90558. Schenectady, NY 12308
  90559. mcknighm@unvax.union.edu
  90560.  
  90561. From news@columbia.edu Sun Feb 19 04:07:19 1995
  90562. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21915
  90563.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 18 Feb 1995 23:07:24 -0500
  90564. Received: by apakabar.cc.columbia.edu id AA00642
  90565.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 18 Feb 1995 23:07:22 -0500
  90566. Path: news.columbia.edu!watsun.cc.columbia.edu!jrd
  90567. From: jrd@watsun.cc.columbia.edu (Joe R. Doupnik)
  90568. Newsgroups: comp.protocols.kermit.misc
  90569. Subject: Re: MS-Kermit 3.14 mode line won't stay off.
  90570. Date: 19 Feb 1995 04:07:19 GMT
  90571. Organization: Columbia University
  90572. Lines: 37
  90573. Distribution: usa
  90574. Message-Id: <3i6g5n$ju@apakabar.cc.columbia.edu>
  90575. References: <3i4qtu$smk@ulowell.uml.edu>
  90576. Nntp-Posting-Host: watsun.cc.columbia.edu
  90577. Keywords: kermit_3.14 mode_line.
  90578. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  90579.  
  90580. In article <3i4qtu$smk@ulowell.uml.edu>,
  90581. Mark Becker <mbecker@jupiter.cs.uml.edu> wrote:
  90582. >I'm using Kermit 3.14 to talk to a DEC Alpha running OSF/1 in VT-100 mode via
  90583. >a serial port at 14.4K baud.  My hardware is an 80386/16 running DOS-5.  Most
  90584. >of the times things work well.
  90585. >
  90586. >However, Kermit occasionally flips it's mode line on.  This is distracting.  I
  90587. >set it off.  It comes back on again.  I set it off.. it comes back on.
  90588. >
  90589. >That mode line does not scroll the full display.  So whenever some text pager
  90590. >sets the mode line on, the cursor gets stuck on that line and all thats seen
  90591. >are lines flying by in a one-line buffer.
  90592. >
  90593. >There don't seem to be any options on 'set mode-line off'.  Maybe there should
  90594. >be something along the lines of 'set kermit-mode-line-off' and permit that
  90595. >bottom line to scroll with the rest of the display?
  90596. >
  90597. --------------
  90598.     The host is driving the cursor to line 25 explicity, by direct
  90599. addressing. That means the host now owns the status line. The cure is
  90600. to correct the host to not do that, as they say. MSK reports its screen
  90601. size via Telnet options upon request, and that size excludes the status
  90602. line. So I think you may have to dig into your host's termcap/terminfo
  90603. material to discover the error there.
  90604.     Joe D.
  90605. x
  90606. x
  90607. x
  90608. x
  90609. x
  90610. x
  90611. x
  90612. x
  90613. x
  90614.  
  90615.  
  90616.  
  90617.  
  90618. From news@columbia.edu Sat Feb 18 09:48:02 1995
  90619. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21925
  90620.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 18 Feb 1995 23:07:32 -0500
  90621. Received: by apakabar.cc.columbia.edu id AA00651
  90622.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 18 Feb 1995 23:07:31 -0500
  90623. Path: news.columbia.edu!sol.ctr.columbia.edu!spool.mu.edu!uwm.edu!news.alpha.net!news.mathworks.com!uunet!in1.uu.net!tymix.Tymnet.COM!tardis.Tymnet.COM!tardis.Tymnet.COM!not-for-mail
  90624. From: jms@tardis.Tymnet.COM (Joe Smith)
  90625. Newsgroups: comp.protocols.kermit.misc
  90626. Subject: Re: Kermit through Tymenet????
  90627. Date: 18 Feb 1995 01:48:02 -0800
  90628. Organization: MCI Data Services, TYMNET Global Network Operations
  90629. Lines: 39
  90630. Message-Id: <3i4foi$j7q@tardis.Tymnet.COM>
  90631. References: <3hoqsj$bfv@solar.sky.net>
  90632. Nntp-Posting-Host: tardis.tymnet.com
  90633. Summary: TYMNET thruput is 1900 cps
  90634. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  90635.  
  90636. In article <3hoqsj$bfv@solar.sky.net> racerx@solar.sky.net (Ken Pearce) writes:
  90637. >Is there an inherent problem with kermit through tymenet (which I'm told
  90638. >is an X.25 packet switching network)???????
  90639.  
  90640. TYMNET is a character-switched network that is compatible with packet-switched
  90641. networks such as X.25.  It is usually used to connect async terminals to
  90642. async or X.25 hosts, or to connect an X.25 source to an X.25 destination.
  90643.  
  90644. >I'm getting maximum throughput of 258bytes/sec even though my packet
  90645. >sizes are set to 1024.
  90646.  
  90647. I get 921 characters per second from my PC to a UNIX host when I connect
  90648. to TYMNET at 9600 baud.
  90649.  
  90650. When going from one X.25 host to another (UNIX to UNIX), I get a transfer
  90651. rate of 1875 to 1925 characters per second.  That is pretty much the max, 
  90652. since TYMNET has a limit of 2000 characters per second and X.25 has some
  90653. overhead.
  90654.  
  90655. >Any clues??
  90656.  
  90657. ; This is Joe Smith's .kermrc for KERMIT version 5A(190)
  90658. set file type binary    ;For UNIX to AmigaDOS (but not for MS-DOS)
  90659. set file name literal    ;To preserve upper/lower case AmigaDOS file names
  90660. define alpha set network x.25, set host 3106011111, connect
  90661. define beta  set network x.25, set host 3106022222, connect
  90662. set block 3        ;Use CRC
  90663. set window 3        ;Sliding windows - 3 slots
  90664. set send packet 3000    ;3KB packets
  90665. set rec packet 3000
  90666. set file display fullscreen
  90667. set control unprefix all    ; Disable prefixing of control characters
  90668. set control prefix 0 1 13 16 17 19    ; ^@ ^A ^M ^P ^Q ^S
  90669. set control prefix 128 129 141 144 145 147
  90670. -- 
  90671. Joe Smith     MCI Data and Information Services, TYMNET Operations Tech Support
  90672. <jms@tymnet.com> 2560 N 1st St, 5046/746, San Jose, CA 95131 (408)922-6220 v854
  90673. CA license plate: "POPJ P,"  36-bits forever! (4 Tymshare PDP-10s still going!)
  90674. Humorous disclaimer: "My Amiga 3000 speaks for me."
  90675.  
  90676. From news@columbia.edu Tue Feb 14 10:07:15 1995
  90677. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22641
  90678.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 18 Feb 1995 23:29:13 -0500
  90679. Received: by apakabar.cc.columbia.edu id AA02233
  90680.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 18 Feb 1995 23:29:12 -0500
  90681. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!news.intercon.com!panix!news.mathworks.com!udel!news.sprintlink.net!cs.utexas.edu!math.ohio-state.edu!jussieu.fr!citi2.fr!univ-lyon1.fr!swidir.switch.ch!scsing.switch.ch!news.belwue.de!news.uni-freiburg.de!MPI4.IMMUNBIO.MPG.DE!GARTMANN
  90682. From: gartmann@immunbio.mpg.de (Christoph Gartmann)
  90683. Newsgroups: comp.protocols.kermit.misc
  90684. Subject: C-Kermit & automatic receive?
  90685. Date: 14 Feb 1995 10:07:15 GMT
  90686. Organization: Max-Planck-Institut fuer Immunbiologie
  90687. Lines: 23
  90688. Message-Id: <3hpvcj$53m@n.ruf.uni-freiburg.de>
  90689. Reply-To: gartmann@immunbio.mpg.de
  90690. Nntp-Posting-Host: mpi4.immunbio.mpg.de
  90691. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  90692.  
  90693. Hello,
  90694.  
  90695. in a former version of Kermit for DOS there was a feature implemented that
  90696. did the following:
  90697.   During a normal terminal session Kermit switched automatically into
  90698.   RECEIVE when a certain escape sequence was sent from the remote host.
  90699.   So this escape sequence did the same as if the user pressed the escape
  90700.   character followed by a C and then entered RECEIVE followed by Return
  90701.   and finally issued a CONNECT and hit Return.
  90702. Now I am using C-Kermit 5.A(190) under VAX-VMS and I would like to implement
  90703. the same functionality. Is there anybody that has already done this, perhaps
  90704. on some other platform? Or if someone still has the DOS-version and could
  90705. send me the relevant piece of code for comparison? Any hints are appreciated.
  90706.  
  90707. Regards,
  90708.    Christoph Gartmann
  90709.  
  90710. +----------------------------------------------------------------------------+
  90711. | Max-Planck-Institut fuer      Phone   : +49-761-5108-465   Fax: -221       |
  90712. | Immunbiologie                 PSI     : PSI%(0262)45050160374::GARTMANN    |
  90713. | Postfach 1169                 Internet: gartmann@immunbio.mpg.de           |
  90714. | D-79011  Freiburg, FRG                                                     |
  90715. +----------- Do you know MENUE, the user environment for OpenVMS? -----------+
  90716.  
  90717. From news@columbia.edu Sun Feb 19 03:43:12 1995
  90718. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23171
  90719.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 18 Feb 1995 23:41:46 -0500
  90720. Received: by apakabar.cc.columbia.edu id AA02922
  90721.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 18 Feb 1995 23:41:44 -0500
  90722. Path: news.columbia.edu!panix!news.mathworks.com!news.kei.com!travelers.mail.cornell.edu!newstand.syr.edu!forbin.syr.edu!ejrasiel
  90723. From: ejrasiel@forbin.syr.edu (Ethan J. Rasiel)
  90724. Newsgroups: comp.protocols.kermit.misc
  90725. Subject: binary file conversion
  90726. Date: 19 Feb 1995 03:43:12 GMT
  90727. Organization: Syracuse University
  90728. Lines: 29
  90729. Message-Id: <3i6eog$44p@newstand.syr.edu>
  90730. Nntp-Posting-Host: forbin.syr.edu
  90731. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  90732.  
  90733. Some time ago I downloaded several .zip files from an ftp site that,
  90734. upon examination, were in some sort of modified format.  It seemed to
  90735. be something akin to uuencode.  I posted to several newsgroups trying
  90736. to find out how to convert these files back to normal, and received a
  90737. reply indicating that the files were in kermit format.  Can someone
  90738. tell me how to convert these files, using either c-kermit or
  90739. pc-kermit?  I have examined the documentation and find no reference to
  90740. this encoding mechanism.  
  90741.  
  90742. Following is an example header:
  90743.  
  90744. This file is in BINARY format, created by ROBINTON at 29-JAN-1995
  90745. 16:35:24.
  90746. 155061 bytes.  Checksum = 14EE XCRC = 8AFA CRC16 = E51E.
  90747. [*BINARY*128]
  90748. PK^C^D^T`^B`^H`^!~+w^]~G?)i^=;``%T~
  90749. ``^H```COCO.DOC~,^={s^ZK%V~g}D~p^]2~X%I~6t^G
  90750. !^I~I~>~6z{~"^Q
  90751. %[~1^Dj@~v~ux^T3^I$~"ZE^U]YH~&~7~w~;o%^WVV^I~]~>~]~3%N~0-AU>O%^~
  90752. g
  90753.  
  90754.  
  90755. I would prefer to do this locally, ie, without actually transferring
  90756. the files from one place to another.  I have already done that, and
  90757. have copes of the files both on unix and dos boxes.
  90758.  
  90759. Thanks for any assistance.
  90760.  
  90761. Ethan
  90762.  
  90763. From news@columbia.edu Tue Feb 14 19:16:16 1995
  90764. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28558
  90765.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 19 Feb 1995 01:39:41 -0500
  90766. Received: by apakabar.cc.columbia.edu id AA09164
  90767.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 19 Feb 1995 01:39:39 -0500
  90768. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!news.intercon.com!udel!news.mathworks.com!news.duke.edu!news-server.ncren.net!concert!ais.com!bruce
  90769. From: bruce@ais.com
  90770. Newsgroups: comp.protocols.kermit.misc
  90771. Subject: Re: Using MS kermit with Open VMS kermit
  90772. Message-Id: <1995Feb15.001617.7251@ais.com>
  90773. Date: 15 Feb 95 00:16:16 EST
  90774. References: <D3xF9q.8Ay@actcom.co.il> <1995Feb13.085147.41528@cc.usu.edu>
  90775. Organization: Applied Information Systems, Chapel Hill, NC
  90776. Lines: 47
  90777. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  90778.  
  90779. In article <1995Feb13.085147.41528@cc.usu.edu>, jrd@cc.usu.edu (Joe Doupnik) writes:
  90780. > In article <D3xF9q.8Ay@actcom.co.il>, tat@actcom.co.il (Ram Gura) writes:
  90781. >> Hi There.
  90782. >> I was trying to transmit binary file from an Open VMS system
  90783. >> to MS DOS system and back to the VMS.
  90784. >> On the VMS , I use Kermit_32, On the MS DOS I use Kermit 3.11
  90785. >> There are no errors during the transmission, but back at the
  90786. >> VMS system, the file can't function. It probably has changed some
  90787. >> how.
  90788. >> 
  90789. >> Does anyone have any suggestions ?
  90790. >> Thank you
  90791. >> Ram Gura
  90792. > ------------------
  90793. >     a) SET FILE TYPE BINARY on the transmitting and receiving Kermits.
  90794. >        Kermit-32 must have this stated for transmission and reception.
  90795. >     b) Please, please, replace obsolete Kermit-32 with C Kermit for VMS.
  90796. >     c) MS-DOS Kermit current release is v3.14, so please update that one
  90797. >        too.
  90798. >     All Columbia Kermits are available from kermit.columbia.edu.
  90799. >     Joe D.
  90800.  
  90801. Not knowing what type of binary file, I'd warn you that doing a SET FILE
  90802. TYPE BINARY on both sides may not correctly create the file on VMS.  The
  90803. problem is that Kermit-32 wants to create such a file with VARYING record
  90804. lengths;  if the file in question is an .EXE file or a .OLB file, the
  90805. result won't be useable (VMS expects these to be fixed-length records of
  90806. 512 bytes).  You are also likely to have problems transferring object
  90807. (.OBJ) files, because of problems with determining record delimiters when
  90808. transferring between PC and VAX and back (this operation will obliterate
  90809. the record boundaries and won't restore them properly).  The best approach
  90810. is to avoid transferring .OBJ files at all, and just transfer .OLB and
  90811. .EXE files, being sure to SET FILE TYPE FIXED on the VMS side and SET FILE
  90812. TYPE BINARY on the PC.
  90813.  
  90814. I'd echo Joe's comment about replacing Kermit-32 with C-Kermit.  It's a
  90815. much better program - much better throughput and many more options,
  90816. including the ability to transfer .OBJ files between VAXes by using the
  90817. SET FILE TYPE LABELLED command.  (You still can't transfer raw .OBJ files
  90818. from the VAX to the PC and back - you need to put them in some kind of
  90819. archive, either .OLB or .ZIP, first).  If you are transferring .OLB or
  90820. .EXE files, be sure to use SET FILE TYPE IMAGE on the VAX end - C-Kermit
  90821. doesn't have SET FILE TYPE FIXED and this is the closest equivalent.
  90822.  
  90823. Good luck,
  90824.  
  90825. Bruce C. Wright
  90826.  
  90827. From news@columbia.edu Wed Feb 15 15:27:49 1995
  90828. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29693
  90829.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 19 Feb 1995 02:19:08 -0500
  90830. Received: by apakabar.cc.columbia.edu id AA10868
  90831.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 19 Feb 1995 02:19:07 -0500
  90832. Newsgroups: comp.protocols.kermit.misc
  90833. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!in1.uu.net!news.mathworks.com!news.alpha.net!uwm.edu!news.moneng.mei.com!howland.reston.ans.net!ix.netcom.com!netcom.com!helios
  90834. From: helios@netcom.com (Thomas David Nichols)
  90835. Subject: Re: How to send "ctrl-c" inside a C-Kermit script.
  90836. Message-Id: <heliosD41sAE.FAq@netcom.com>
  90837. Organization: Heliotrope Quality Systems
  90838. X-Newsreader: TIN [version 1.2 PL1]
  90839. References: <3hpk6s$grr@csgrad.cs.vt.edu>
  90840. Date: Wed, 15 Feb 1995 15:27:49 GMT
  90841. Lines: 32
  90842. Sender: helios@netcom18.netcom.com
  90843. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  90844.  
  90845. :     .
  90846. : output ADTD xxx xxxx\13
  90847. :     .
  90848. :     .
  90849. : input {username:}
  90850. : output chrisye\13
  90851. :     .
  90852. :     .
  90853. : output slip foo.foo.edu     ; setup my slip here.
  90854. : connect
  90855. : end
  90856. :  
  90857. :      At this point, the slip connection was setup, but I have to type
  90858. : "ctrl-\c" to get back C-Kermit prompt in order to run "slattach". If I
  90859. : run "slattach" without get back C-Kermit prompt first, the connection is
  90860. : droped. 
  90861. :     What I want to know, if there is a way let the kemit script to  
  90862. : sent out "ctrl-\c" automaticlly after setuping the slip connection?
  90863.  
  90864. You can "output" any character with the "\" format, for instance \13 for
  90865. CTRL-M (carriage return).  CTRL-C is \3 (I can't tell whether you want
  90866. CTRL-C or CTRL-\, which would have a different value, followed by "c").
  90867.  
  90868. However, it looks to me as though you are trying to give the command to
  90869. C-Kermit, not to the distant machine.  In that case "output" is not
  90870. what you want.  In fact, I don't think you want to connect at all before
  90871. you run "slattach".  Why not continue the script with "run slattach" and
  90872. connect later?  If you need to wait for a message that the slip
  90873. connection is ok, you can use "input" the same way you did before sending
  90874. your username.
  90875. -- 
  90876. David Nichols  <helios@netcom.com>  Heliotrope Quality Systems
  90877.  
  90878. From news@columbia.edu Sun Feb 19 05:37:14 1995
  90879. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00799
  90880.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 19 Feb 1995 02:50:31 -0500
  90881. Received: by apakabar.cc.columbia.edu id AA12022
  90882.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 19 Feb 1995 02:50:29 -0500
  90883. Path: news.columbia.edu!panix!news.mathworks.com!news.kei.com!nntp.et.byu.edu!netline-fddi.jpl.nasa.gov!hudson.lm.com!godot.cc.duq.edu!duq3.cc.duq.edu!FABRY8208
  90884. From: FABRY8208@duq3.cc.duq.edu (Fabry Jennifer)
  90885. Newsgroups: comp.protocols.kermit.misc
  90886. Subject: help i'm kermit retarded
  90887. Date: 19 Feb 1995 05:37:14 GMT
  90888. Organization: Duquesne University, Pittsburgh, PA
  90889. Lines: 16
  90890. Message-Id: <3i6lea$gbr@godot.cc.duq.edu>
  90891. Nntp-Posting-Host: duq3.cc.duq.edu
  90892. Summary: i need kermit assistance...please!
  90893. X-Newsreader: TIN [version 1.2 PL2 [VAX/VMS]]
  90894. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  90895.  
  90896.     Hi...My name is jen and I'm Kermit illiterate.
  90897.     Hopefully, some of you nice people can help me.  Here's my prob.
  90898.  
  90899.     1.) Someone sent me pictures but I can't view them because they are
  90900.         in this scrambled character text...I have no clue how to view
  90901.         them....please help...but keep in mind...I know nothing so take
  90902.         me thru it in pre-schooler terms...thanks.
  90903.  
  90904.     2.) When i send mail...it tells people it's from Cat Fabry.  How 
  90905.         do I change it so it says Jennifer Fabry instead?
  90906.  
  90907.     Thanks...Hope you're all not laughing at my stupidity...but ya gotta
  90908.     learn sometime....thanks.     
  90909.  
  90910.  
  90911.  
  90912.  
  90913. From news@columbia.edu Sun Feb 19 05:58:39 1995
  90914. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01740
  90915.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 19 Feb 1995 03:19:25 -0500
  90916. Received: by apakabar.cc.columbia.edu id AA13181
  90917.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 19 Feb 1995 03:19:22 -0500
  90918. Newsgroups: comp.protocols.kermit.misc
  90919. Path: news.columbia.edu!panix!news.mathworks.com!uunet!omen!caf
  90920. From: caf@omen.COM (Chuck Forsberg WA7KGX)
  90921. Subject: Re: How to resume zmodem ?
  90922. Organization: Omen Technology INC, Portland Rain Forest
  90923. Date: Sun, 19 Feb 1995 05:58:39 GMT
  90924. Message-Id: <D48GLr.KEr@omen.COM>
  90925. References: <jzeroD45Ep1.28r@netcom.com>
  90926. Lines: 14
  90927. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  90928.  
  90929. In article <jzeroD45Ep1.28r@netcom.com> jzero@netcom.com (Jim Nakamura) writes:
  90930. >
  90931. >Sometimes a zmodem transfer will stall for some reason.  Under kermit,
  90932. >when I restart the zmodem transfer, it starts retransmitting the file
  90933. >from the very beginning instead of continuing where it stopped.  Is 
  90934. >there a way around this?
  90935.  
  90936. Get a more complete ZMODEM implementation.
  90937.  
  90938. -- 
  90939. Chuck Forsberg WA7KGX caf@omen.COM      503-621-3406 FAX:-3735
  90940.    Omen Technology Inc      "The High Reliability Software"
  90941. Author of YMODEM, ZMODEM, Professional-YAM, ZCOMM, GSZ and DSZ
  90942. TeleGodzilla BBS: 503-621-3746  FTP: ftp.cs.pdx.edu pub/zmodem
  90943.  
  90944. From news@columbia.edu Wed Feb 15 16:41:22 1995
  90945. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01918
  90946.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 19 Feb 1995 03:24:30 -0500
  90947. Received: by apakabar.cc.columbia.edu id AA13345
  90948.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 19 Feb 1995 03:24:29 -0500
  90949. Newsgroups: comp.protocols.kermit.misc
  90950. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!news.sprintlink.net!sunserver.insinc.net!cuugnet!shelterw
  90951. From: shelterw@cuug.ab.ca (Xinnian Li)
  90952. Subject: Need help with Kermit on RISC 6000
  90953. Message-Id: <D41vz9.3p5@cuug.ab.ca>
  90954. Organization: Calgary UNIX User's Group
  90955. X-Newsreader: TIN [version 1.2 PL2]
  90956. Date: Wed, 15 Feb 1995 16:41:22 GMT
  90957. Lines: 17
  90958. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  90959.  
  90960.  
  90961. Hi, kermit user guru:
  90962.  
  90963. I am using kermit to transfer files between a RISC 6000 and
  90964. a PC home computer. There is no trouble for downloading and
  90965. uploading text files. However, problems occur when I intend
  90966. to tranfer binary files (.zip, .exe, etc). I did set file
  90967. type as binary on RISC for this type of transfers. 
  90968.  
  90969. Any advice and help on this stupid question ?
  90970.  
  90971. thanks a lot.
  90972. -- 
  90973.  
  90974. =========================================================
  90975. | Xinnian Li              | Tel:  (403)-279-7662 (O)    | 
  90976. | Engineering Group (R&D) |       (403)-258-3567 (H)    | 
  90977.  
  90978. From news@columbia.edu Wed Feb 15 23:09:29 1995
  90979. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06301
  90980.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 19 Feb 1995 05:38:49 -0500
  90981. Received: by apakabar.cc.columbia.edu id AA18198
  90982.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 19 Feb 1995 05:38:47 -0500
  90983. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!swiss.ans.net!newsgate.advantis.net!news-m01.ny.us.ibm.net!news
  90984. From: rsande@ibm.net
  90985. Newsgroups: comp.protocols.kermit.misc
  90986. Subject: RFD: comp.dcom.mainframe.hydra
  90987. Followup-To: news.groups
  90988. Date: 15 Feb 1995 23:09:29 GMT
  90989. Lines: 86
  90990. Message-Id: <3hu1j9$fr0@news-s01.ny.us.ibm.net>
  90991. Reply-To: rsande@ibm.net
  90992. Nntp-Posting-Host: slip6-17.fl.us.ibm.net
  90993. X-Newsreader: IBM NewsReader/2 v1.07
  90994. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  90995.  
  90996. Followup-To: news.groups
  90997.  
  90998.                    Request for Discussion (RFD)
  90999.  
  91000.     Newsgroup      : comp.dcom.mainframe.hydra                              
  91001.  
  91002.     Status         : unmoderated
  91003.     Distribution   : Worldwide
  91004.     Summary        : Discussion and technical collaboration for the JDS 
  91005.                      MicroProcessing line of HYDRA 3270 mainframe 
  91006.                      protocol converters including configuration,
  91007.                      problem solving techniques, file transfer 
  91008.                      capabilities, terminal, modem, & printer connection
  91009.                      techniques, custom software programming, operating 
  91010.                      system considerations, and various suggestions for 
  91011.                      unique mainframe dial-up applications. 
  91012.  
  91013.     Proponent      : Rick Sande (rsande@ibm.net)
  91014.  
  91015.  
  91016.     This is a formal request for discussion on the creation of an
  91017.     unmoderated newsgroup, comp.dcom.mainframe.hydra
  91018.  
  91019.     This RFD has been posted in accordance with the Guidelines for Newsgroup
  91020.     Creation. The RFD is being posted to the following relevant news groups:
  91021.  
  91022.                   news.announce.newgroups
  91023.                   news.groups
  91024.                   comp.terminals
  91025.                   bit.listserv.ibm-main
  91026.                   bit.listserv.opers-l
  91027.                   comp.protocols.ibm
  91028.                   comp.unix.large
  91029.                   comp.dcom.lans.misc
  91030.                   comp.dcom.lans.token-ring
  91031.                   comp.dcom.modems
  91032.                   comp.protocols.kermit.misc
  91033.                   bit.listserv.ibm7171
  91034.  
  91035.  
  91036.    Discussion will take place in news.groups
  91037.  
  91038.  
  91039.                                CHARTER
  91040.  
  91041.   The comp.sys.dcom.mainframe.hydra newsgroup will be open to discussion of 
  91042.   technical aspects and practical usage of the HYDRA 3270 mainframe 
  91043.   protocol converters manufactured by JDS MicroProcessing. 
  91044.  
  91045.   Specific subjects will include but are not limited to:
  91046.   
  91047.   Modem Configuration for proper dial-up support to mainframe applications
  91048.   Building and exchange of custom terminal definitions amongst members
  91049.   Simultaneous operation of terminal & 328x printer on a single connection
  91050.   (Token ring) Lan to Mainframe connectivity.
  91051.   Utilizing M/F DASD space as a 2nd PC Disk drive with HYDRANET software
  91052.   Hardware trouble shooting and various other "gotchas"
  91053.   System Generation examples for VM/VSE/MVS/MVT VTAM CICS applications.
  91054.   Tech Bulletin information re-posted with permission from JDSM 
  91055.   Microcode upgrade & regression procedures
  91056.   Various security considerations for classified mainframe environments
  91057.   Data-routing and connection to other host types (non-ibm-3270)
  91058.  
  91059.                           RATIONALE 
  91060.  
  91061.   The group comp.dcom.mainframe.hydra is mainly concerned with nuts & 
  91062.   bolts discussion on the topic of "getting the most out of your hardware" 
  91063.   allowing members to freely exchange suggestions and configuration 
  91064.   samples to those less knowledgeable of the product. 
  91065.  
  91066.                         PROCEDURE 
  91067.  
  91068.   After a discussion period of 21 - 30 days, which should take 
  91069.   place in the news.groups newsgroup, if there are no overwhelming
  91070.   objections to this proposed new group, there will be a call for 
  91071.   votes (CFV) posted to the same groups as this RFD, the voting 
  91072.   period will be at least 21 days. If the group passes by 
  91073.   receiving 100 more YES votes than NO votes and at least twice as 
  91074.   many YES votes as NO votes, the new group will be created. 
  91075.  
  91076.  
  91077.   Thank you for your time. 
  91078.  
  91079.   Rick Sande                  rsande@ibm.net 
  91080.  
  91081.  
  91082.  
  91083. From news@columbia.edu Sun Feb 19 10:47:32 1995
  91084. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05452
  91085.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 19 Feb 1995 07:07:43 -0500
  91086. Received: by apakabar.cc.columbia.edu id AA03773
  91087.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 19 Feb 1995 07:07:41 -0500
  91088. Path: news.columbia.edu!panix!news.mathworks.com!hookup!swrinde!pipex!sunic!nic.tip.net!news.bahnhof.se!news.bahnhof.se!not-for-mail
  91089. From: marvi@bahnhof.se (Markus Hdrnvi)
  91090. Newsgroups: comp.protocols.kermit.misc
  91091. Subject: Hardware req. for MS-KERMIT?
  91092. Date: 19 Feb 1995 10:47:32 -0000
  91093. Organization: Bahnhof Internet Access
  91094. Lines: 6
  91095. Message-Id: <3i77k4$ku4@sunny.bahnhof.se>
  91096. Nntp-Posting-Host: sunny.bahnhof.se
  91097. X-Newsreader: TIN [version 1.2 PL2]
  91098. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  91099.  
  91100. What are the hardware requirements for Ms-kermit? I need to get a second 
  91101. computer and I would like to use my c-kermit scripts that I have on my 
  91102. main computer. Will a 286 do it?
  91103.  
  91104. //Markus
  91105.  
  91106.  
  91107. From news@columbia.edu Sun Feb 19 07:43:42 1995
  91108. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26540
  91109.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 19 Feb 1995 07:34:32 -0500
  91110. Received: by apakabar.cc.columbia.edu id AA04764
  91111.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 19 Feb 1995 07:34:30 -0500
  91112. Path: news.columbia.edu!panix!news.mathworks.com!hookup!swrinde!pipex!sunic!news.funet.fi!zippo.uwasa.fi!uwasa.fi!ts
  91113. From: ts@uwasa.fi (Timo Salmi)
  91114. Newsgroups: comp.protocols.kermit.misc
  91115. Subject: Latin1 strife for Finnish 8-bit emulation
  91116. Date: 19 Feb 1995 07:43:42 GMT
  91117. Organization: University of Vaasa
  91118. Lines: 61
  91119. Distribution: world
  91120. Message-Id: <3i6sre$cpi@zippo.uwasa.fi>
  91121. Nntp-Posting-Host: uwasa.fi
  91122. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  91123.  
  91124. ;MIXED.CMD setup by prof. Timo Salmi Sun 19-Feb-95 09:34:14
  91125.  
  91126. ; Set on the new Finnish 8-bit terminal emulation which the Finnish
  91127. ; computer centres jointly decided to adopt in Finland.
  91128. ;
  91129. ; This is needed since the Unix latin1 works differently than
  91130. ; "advertised". I have no idea why this is the way it is,
  91131. ; but this works for me, with the documented exception.
  91132.  
  91133. set terminal bytesize 8-bit
  91134. set terminal character-set latin1
  91135.  
  91136. set translation input on
  91137.  
  91138. ;In my view the German u does not belong to the Finnish alphabet
  91139. set translation input \154 \94    ; Show U" as ^ (caret)
  91140. set translation input \129 \126   ; Show u" as ~ (tilde)
  91141. set translation input  \24 \129   ; Show ascii  24 as u"
  91142. set translation input \239 \154   ; Show ascii 239 as U"
  91143.  
  91144. ; Alter what is shown for Finnish 8-bit Unix characters
  91145. set translation input \235 \132   ; Show ascii 235 as a"
  91146. set translation input \159 \148   ; Show ascii 159 as o"
  91147. set translation input \238 \134   ; Show ascii 238 as a'
  91148. set translation input  \30 \142   ; Show ascii  30 as A"
  91149. set translation input \251 \153   ; Show ascii 251 as O"
  91150. set translation input  \31 \143   ; Show ascii  31 as A'
  91151.  
  91152. ; Here we have a problem
  91153. ;
  91154. ; Alter what is shown for Finnish 8-bit Unix characters.
  91155. ; Latin1 161 is supposed to be inverted ?, but it is not.
  91156. ; Latin1 163 is supposed to be pound sterling, but it is not.
  91157. ; What is more this translation does not work! The output on the
  91158. ; screen remains unchanged and shows wrong characters.
  91159. set translation input  \161 \168  ; Show dec 161 as inverted ?
  91160. set translation input  \163 \156  ; Show dec 163 as inverted pound sterling
  91161.  
  91162. ; Keyboard redefinitions for Finnish 8-bit Unix characters
  91163. set key \132 \235                 ; Key a" sends dec 235
  91164. set key \148 \159                 ; Key o" sends dec 159
  91165. set key \134 \238                 ; Key a' sends dec 238
  91166. set key \142 \30                  ; Key A" sends dec 30
  91167. set key \153 \251                 ; Key O" sends dec 251
  91168. set key \143 \31                  ; Key A' sends dec 31
  91169.  
  91170. ; Keyboard redefinitions for other 8-bit Unix characters
  91171. set key \129 \252                 ; Key U" sends dec 252
  91172. set key \154 \220                 ; Key u" sends dec 220
  91173. set key \168 \161                 ; alt-1-6-8 sends dec 161 (works)
  91174. set key \156 \163                 ; alt-1-5-6 sends dec 163 (works)
  91175.  
  91176. ; --------------------  End of MIXED.CMD ---------------------------
  91177.  
  91178.    All the best, Timo
  91179.  
  91180. ..................................................................
  91181. Prof. Timo Salmi      Co-moderator of comp.archives.msdos.announce
  91182. Moderating at garbo.uwasa.fi anonymous FTP archives  193.166.120.5
  91183. Department of Accounting and Business Finance; University of Vaasa
  91184. Internet: ts@uwasa.fi   BBS +(358)-61-3170972; FIN-65101,  Finland
  91185.  
  91186. From news@columbia.edu Mon Feb 13 14:35:45 1995
  91187. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09662
  91188.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 19 Feb 1995 07:50:13 -0500
  91189. Received: by apakabar.cc.columbia.edu id AA05284
  91190.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 19 Feb 1995 07:50:11 -0500
  91191. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!udel!gatech!concert!lester.appstate.edu!xx.acs.appstate.edu!rob
  91192. From: rob@xx.acs.appstate.edu (Rob Norris)
  91193. Newsgroups: comp.protocols.kermit.misc
  91194. Subject: Re: Using MS kermit with Open VMS kermit
  91195. Date: 13 Feb 1995 14:35:45 GMT
  91196. Organization: Appalachian State University
  91197. Lines: 19
  91198. Message-Id: <3hnqo1$ldf@lester.appstate.edu>
  91199. References: <D3xF9q.8Ay@actcom.co.il>
  91200. Nntp-Posting-Host: xx.acs.appstate.edu
  91201. Keywords: VMS, Kermit, Binary
  91202. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  91203.  
  91204. tat@actcom.co.il (Ram Gura) writes:
  91205.  
  91206. >Hi There.
  91207. >I was trying to transmit binary file from an Open VMS system
  91208. >to MS DOS system and back to the VMS.
  91209. >On the VMS , I use Kermit_32, On the MS DOS I use Kermit 3.11
  91210. >There are no errors during the transmission, but back at the
  91211. >VMS system, the file can't function. It probably has changed some
  91212. >how.
  91213.  
  91214. >Does anyone have any suggestions ?
  91215. >Thank you
  91216. >Ram Gura
  91217.  
  91218. We had the same problems here.  Went to C-Kermit on VMS. No problems now.
  91219. --
  91220. Rob Norris
  91221. Appalachian State University    | (704) 262-6079
  91222. Academic Computing Services    | rob@acs.appstate.edu
  91223.  
  91224. From news@columbia.edu Thu Feb 16 01:41:32 1995
  91225. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10897
  91226.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 19 Feb 1995 07:57:03 -0500
  91227. Received: by apakabar.cc.columbia.edu id AA05557
  91228.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 19 Feb 1995 07:57:02 -0500
  91229. Newsgroups: comp.protocols.kermit.misc
  91230. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!news.intercon.com!udel!news.mathworks.com!news.alpha.net!uwm.edu!vixen.cso.uiuc.edu!howland.reston.ans.net!ix.netcom.com!netcom.com!salad
  91231. From: salad@netcom.com (just me)
  91232. Subject: Zmodem with Kermit....
  91233. Message-Id: <saladD42Kp9.K24@netcom.com>
  91234. Organization: NETCOM On-line Communication Services (408 261-4700 guest)
  91235. X-Newsreader: TIN [version 1.2 PL1]
  91236. Date: Thu, 16 Feb 1995 01:41:32 GMT
  91237. Lines: 16
  91238. Sender: salad@netcom7.netcom.com
  91239. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  91240.  
  91241. We are using the telnet features of ckermit 5A(190) on several unix platforms
  91242. to connect to a modem server.
  91243.  
  91244. I was told that 190 could redirect the I/O so you could use protocols such as
  91245. zmodem. The problem is how?               
  91246.  
  91247. I assumed you could use the ! shell command, but that doesn't work. Sorry for
  91248. a newbie question like this, but after going through the faq and other online
  91249. info, I couldn't find how to do this.
  91250.  
  91251.  
  91252. Thanks,
  91253. Alan Narup
  91254. IDS - Los Angeles
  91255.  
  91256. salad@netcom.com
  91257.  
  91258. From news@columbia.edu Wed Feb 15 10:47:35 1995
  91259. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11678
  91260.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 19 Feb 1995 08:28:01 -0500
  91261. Received: by apakabar.cc.columbia.edu id AA06820
  91262.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 19 Feb 1995 08:28:00 -0500
  91263. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!news.intercon.com!panix!news.mathworks.com!uunet!in1.uu.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  91264. From: jrd@cc.usu.edu (Joe Doupnik)
  91265. Newsgroups: comp.protocols.kermit.misc
  91266. Subject: Re: Kermit 3.14 and Winsock
  91267. Message-Id: <1995Feb15.164735.41824@cc.usu.edu>
  91268. Date: 15 Feb 95 16:47:35 MDT
  91269. References: <1995Feb15.164229.6472@unvax.union.edu>
  91270. Organization: Utah State University
  91271. Lines: 28
  91272. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  91273.  
  91274. In article <1995Feb15.164229.6472@unvax.union.edu>, "Mary P. McKnight" <mcknighm@unvax.union.edu> writes:
  91275. > I have been attempting to get Kermit 3.14 (using TCP/IP) to work thru
  91276. > Windows 3.1.  I can get it to work outside of Windows without any
  91277. > problems.  However, from within Windows I get the following error
  91278. > message:
  91279. >  Unable to ARP resolve gateway 149.106.1.1
  91280. >   Cannot reach name server 192.52.218.45
  91281. >   trying name ted
  91282. >  Unable to ARP resolve gateway 149.106.1.1
  91283. >   Cannot reach name server 192.52.218.2
  91284. >  Cannot resolve address of host ted
  91285. > However, if I close down Trumpet Winsock (but with winpkt still
  91286. > running), Kermit works fine.
  91287. > Can someone please explain to me what's going on?  I need to have
  91288. > Winsock running for applications other than Kermit so I can't keep
  91289. > closing it down.
  91290. ------------------
  91291.     Never try to run two protocol stacks for the same protocol over
  91292. the same board at the same time. We warn of this in the docs and frequently
  91293. on the net. DOS/Windows is not a nifty multitasking system with a real
  91294. kernel and embedded TCP/IP stack that apps can share.
  91295.     To run two such stacks side by side you'll need two boards and
  91296. two IP addresses. Anything less is entirely up to you and not without
  91297. risk.
  91298.     Joe D.
  91299.  
  91300. From news@columbia.edu Thu Feb 16 03:27:38 1995
  91301. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12935
  91302.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 19 Feb 1995 09:14:41 -0500
  91303. Received: by apakabar.cc.columbia.edu id AA08506
  91304.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 19 Feb 1995 09:14:40 -0500
  91305. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!news.intercon.com!udel!news.mathworks.com!newshost.marcam.com!zip.eecs.umich.edu!newsxfer.itd.umich.edu!jobone!fiesta.srl.ford.com!pt9201.ped.pto.ford.com!pt9212.ped.pto.ford.com!bowman
  91306. From: bowman@pt9212.ped.pto.ford.com (Brian Bowman)
  91307. Newsgroups: comp.protocols.kermit.misc
  91308. Subject: kermit missing ckucon.c
  91309. Date: 16 Feb 1995 03:27:38 GMT
  91310. Organization: Ford Motor Co., Powertrain Electronics
  91311. Lines: 7
  91312. Message-Id: <3hugna$glj@pt9201.ped.pto.ford.com>
  91313. Nntp-Posting-Host: pt9212.ped.pto.ford.com
  91314. X-Newsreader: TIN [version 1.2 PL2]
  91315. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  91316.  
  91317. I seem to be missing ckucon.c from my kermit package.  Can sombody mail
  91318. me the latest version of this file so I can finish my compilation.
  91319.  
  91320.  
  91321. Thanks in advance,
  91322. Brian Bowman
  91323. bowman@sys2.ped.pto.ford.com
  91324.  
  91325. From news@columbia.edu Fri Feb 17 01:34:11 1995
  91326. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16826
  91327.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 19 Feb 1995 11:01:59 -0500
  91328. Received: by apakabar.cc.columbia.edu id AA14465
  91329.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 19 Feb 1995 11:01:58 -0500
  91330. Newsgroups: comp.protocols.kermit.misc
  91331. Path: news.columbia.edu!sol.ctr.columbia.edu!spool.mu.edu!uwm.edu!news.alpha.net!news.mathworks.com!uunet!in1.uu.net!hearst.acc.Virginia.EDU!murdoch!fulton.seas.Virginia.EDU!esh6h
  91332. From: esh6h@fulton.seas.Virginia.EDU (Erik Hatcher)
  91333. Subject: Re: Hangup the connection automatically?
  91334. X-Nntp-Posting-Host: fulton.seas.virginia.edu
  91335. Message-Id: <D44F0z.3Ct@murdoch.acc.Virginia.EDU>
  91336. Sender: usenet@murdoch.acc.Virginia.EDU
  91337. Organization: University of Virginia
  91338. References: <3huanr$8gh@geraldo.cc.utexas.edu> <1995Feb16.081514.41886@cc.usu.edu>
  91339. Date: Fri, 17 Feb 1995 01:34:11 GMT
  91340. Lines: 33
  91341. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  91342.  
  91343. In article <1995Feb16.081514.41886@cc.usu.edu>,
  91344. Joe Doupnik <jrd@cc.usu.edu> wrote:
  91345. >In article <3huanr$8gh@geraldo.cc.utexas.edu>, nksung@fiat.gslis.utexas.edu (Nackil Sung) writes:
  91346. >> Is it possible to set up Kermit so that a session disconnects 
  91347. >> automatically after a certain period of idle time?       I'm a librarian 
  91348. >> developing an interface which access remote bibliographic databases through 
  91349. >> TCP/IP.  Students usually search a particular database and leave without 
  91350. >> exiting completely.  This usually causes confusion for the next student 
  91351. >> who wants to use the different database.   
  91352. >> Can you help me?   Thanx in advance.
  91353. >> 
  91354. >> Nackil
  91355. >----------
  91356. >    I'm sorry but an inactivity timer is not in MS-DOS Kermit. Your
  91357. >larger host might be able to provide that function, however. After using
  91358. >a few library computer programs I can understand why some people will
  91359. >leave with the system fully active. Locally the library public machines
  91360. >have no exit from their canned menu system, and the frontend of some
  91361. >of the info retrieval services seem to have no exit either. So we give
  91362. >up and run away. Perhaps if your system had an obvious exit choice then
  91363. >folks would use it at least part of the time.
  91364. >    Joe D.
  91365.  
  91366. How about a hot key macro that exits the current scenario and
  91367. returns to the main menu?  Then label the stations (either on
  91368. the terminal or on the computer display) what the hot key is.
  91369.  
  91370.     Erik
  91371. --
  91372. Erik Hatcher                           + "But every now and then we just have
  91373. http://fulton.seas.virginia.edu/~esh6h |  to howl with the wolves." 
  91374.                                        |        - Werner Heisenberg
  91375. ---------------------------------------+-------------------------------------
  91376.  
  91377. From news@columbia.edu Sun Feb 19 16:58:14 1995
  91378. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19607
  91379.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 19 Feb 1995 12:16:43 -0500
  91380. Received: by apakabar.cc.columbia.edu id AA19024
  91381.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 19 Feb 1995 12:16:39 -0500
  91382. Path: news.columbia.edu!panix!bloom-beacon.mit.edu!spool.mu.edu!vms.csd.mu.edu!5603LIUL
  91383. From: 5603liul@vmsa.csd.mu.edu
  91384. Newsgroups: comp.protocols.kermit.misc
  91385. Subject: How can I get rid of bell sound?
  91386. Date: 19 Feb 1995 16:58:14 GMT
  91387. Organization: Marquette University - Computer Services
  91388. Lines: 7
  91389. Message-Id: <0098C370.28AC5993@vms.csd.mu.edu>
  91390. Reply-To: 5603liul@vmsa.csd.mu.edu
  91391. Nntp-Posting-Host: vmse.csd.mu.edu
  91392. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  91393.  
  91394. Dear netters:
  91395.  
  91396.     I wonder how I can get rid of the annoying bell sounds.
  91397. I tried set bell off,  it does't work. Thanks.
  91398.  
  91399.  
  91400. David
  91401.  
  91402. From news@columbia.edu Sun Feb 19 07:05:58 1995
  91403. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04536
  91404.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 20 Feb 1995 03:41:49 -0500
  91405. Received: by apakabar.cc.columbia.edu id AA19774
  91406.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 20 Feb 1995 03:41:48 -0500
  91407. Path: news.columbia.edu!sol.ctr.columbia.edu!spool.mu.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  91408. From: jrd@cc.usu.edu (Joe Doupnik)
  91409. Newsgroups: comp.protocols.kermit.misc
  91410. Subject: Re: binary file conversion
  91411. Message-Id: <1995Feb19.130559.42187@cc.usu.edu>
  91412. Date: 19 Feb 95 13:05:58 MDT
  91413. References: <3i6eog$44p@newstand.syr.edu>
  91414. Organization: Utah State University
  91415. Lines: 34
  91416. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  91417.  
  91418. In article <3i6eog$44p@newstand.syr.edu>, ejrasiel@forbin.syr.edu (Ethan J. Rasiel) writes:
  91419. > Some time ago I downloaded several .zip files from an ftp site that,
  91420. > upon examination, were in some sort of modified format.  It seemed to
  91421. > be something akin to uuencode.  I posted to several newsgroups trying
  91422. > to find out how to convert these files back to normal, and received a
  91423. > reply indicating that the files were in kermit format.  Can someone
  91424. > tell me how to convert these files, using either c-kermit or
  91425. > pc-kermit?  I have examined the documentation and find no reference to
  91426. > this encoding mechanism.  
  91427. > Following is an example header:
  91428. > This file is in BINARY format, created by ROBINTON at 29-JAN-1995
  91429. > 16:35:24.
  91430. > 155061 bytes.  Checksum = 14EE XCRC = 8AFA CRC16 = E51E.
  91431. > [*BINARY*128]
  91432. > PK^C^D^T`^B`^H`^!~+w^]~G?)i^=;``%T~
  91433. > ``^H```COCO.DOC~,^={s^ZK%V~g}D~p^]2~X%I~6t^G
  91434. > !^I~I~>~6z{~"^Q
  91435. > %[~1^Dj@~v~ux^T3^I$~"ZE^U]YH~&~7~w~;o%^WVV^I~]~>~]~3%N~0-AU>O%^~
  91436. > g
  91437. > I would prefer to do this locally, ie, without actually transferring
  91438. > the files from one place to another.  I have already done that, and
  91439. > have copes of the files both on unix and dos boxes.
  91440. > Thanks for any assistance.
  91441. > Ethan
  91442. ------------
  91443.     That's nothing to do with Kermit. PK looks rather like Phil Katz,
  91444. of PKZIP fame. 
  91445.     Joe D.
  91446.  
  91447. From news@columbia.edu Sun Feb 19 07:09:22 1995
  91448. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04553
  91449.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 20 Feb 1995 03:42:01 -0500
  91450. Received: by apakabar.cc.columbia.edu id AA19778
  91451.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 20 Feb 1995 03:41:59 -0500
  91452. Path: news.columbia.edu!sol.ctr.columbia.edu!spool.mu.edu!uwm.edu!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  91453. From: jrd@cc.usu.edu (Joe Doupnik)
  91454. Newsgroups: comp.protocols.kermit.misc
  91455. Subject: Re: help i'm kermit retarded
  91456. Message-Id: <1995Feb19.130922.42188@cc.usu.edu>
  91457. Date: 19 Feb 95 13:09:22 MDT
  91458. References: <3i6lea$gbr@godot.cc.duq.edu>
  91459. Organization: Utah State University
  91460. Lines: 23
  91461. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  91462.  
  91463. In article <3i6lea$gbr@godot.cc.duq.edu>, FABRY8208@duq3.cc.duq.edu (Fabry Jennifer) writes:
  91464. >     Hi...My name is jen and I'm Kermit illiterate.
  91465. >     Hopefully, some of you nice people can help me.  Here's my prob.
  91466. >     1.) Someone sent me pictures but I can't view them because they are
  91467. >         in this scrambled character text...I have no clue how to view
  91468. >         them....please help...but keep in mind...I know nothing so take
  91469. >         me thru it in pre-schooler terms...thanks.
  91470. >     2.) When i send mail...it tells people it's from Cat Fabry.  How 
  91471. >         do I change it so it says Jennifer Fabry instead?
  91472. >     Thanks...Hope you're all not laughing at my stupidity...but ya gotta
  91473. >     learn sometime....thanks.     
  91474. --------
  91475. Dear il (oops, Jen),
  91476.     1. No help because essentially no information.
  91477.     2. Your mailer creates the name in the mailer header. See your
  91478. Univ Computer Center admin for assistance on that.
  91479.     3. Never let another person into your account to "help." If you
  91480. do then you are a sucker being taken. Change your password NOW, and close
  91481. off your account to outsiders.
  91482.     Joe D. 
  91483.  
  91484. From news@columbia.edu Sun Feb 19 07:10:21 1995
  91485. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04562
  91486.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 20 Feb 1995 03:42:21 -0500
  91487. Received: by apakabar.cc.columbia.edu id AA19802
  91488.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 20 Feb 1995 03:42:20 -0500
  91489. Path: news.columbia.edu!sol.ctr.columbia.edu!spool.mu.edu!uwm.edu!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  91490. From: jrd@cc.usu.edu (Joe Doupnik)
  91491. Newsgroups: comp.protocols.kermit.misc
  91492. Subject: Re: Hardware req. for MS-KERMIT?
  91493. Message-Id: <1995Feb19.131021.42189@cc.usu.edu>
  91494. Date: 19 Feb 95 13:10:21 MDT
  91495. References: <3i77k4$ku4@sunny.bahnhof.se>
  91496. Organization: Utah State University
  91497. Lines: 10
  91498. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  91499.  
  91500. In article <3i77k4$ku4@sunny.bahnhof.se>, marvi@bahnhof.se (Markus Hdrnvi) writes:
  91501. > What are the hardware requirements for Ms-kermit? I need to get a second 
  91502. > computer and I would like to use my c-kermit scripts that I have on my 
  91503. > main computer. Will a 286 do it?
  91504. > //Markus
  91505. ---------
  91506.     An 8088 without a hard drive will do, provided it runs DOS and has
  91507. enough memory.
  91508.     Joe D.
  91509.  
  91510. From news@columbia.edu Sun Feb 19 07:13:17 1995
  91511. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04567
  91512.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 20 Feb 1995 03:42:31 -0500
  91513. Received: by apakabar.cc.columbia.edu id AA19808
  91514.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 20 Feb 1995 03:42:30 -0500
  91515. Path: news.columbia.edu!sol.ctr.columbia.edu!spool.mu.edu!uwm.edu!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  91516. From: jrd@cc.usu.edu (Joe Doupnik)
  91517. Newsgroups: comp.protocols.kermit.misc
  91518. Subject: Re: ZMODEM VS KERMIT
  91519. Message-Id: <1995Feb19.131317.42190@cc.usu.edu>
  91520. Date: 19 Feb 95 13:13:17 MDT
  91521. References: <3i83hi$omg@sirio.cineca.it>
  91522. Distribution: world
  91523. Organization: Utah State University
  91524. Lines: 9
  91525. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  91526.  
  91527. In article <3i83hi$omg@sirio.cineca.it>, TREVISANELLO@UDUNIV.CC.UNIUD.IT (TREVISANELLO ARRIGO) writes:
  91528. > j'm connected with university trough my modem and telephon line. The only way
  91529. > to exchange file with the university computer ( openVMS) is kermit, that is
  91530. > very slow. How can i make a fast connection? Is it possibile to install zmodem
  91531. > on openVMS and how?  Thanks Arrigo
  91532. ------------
  91533.     Please obtain and read the list's FAQ, file FAQ.TXT in directory
  91534. kermit on kermit.columbia.edu.
  91535.     Joe D.
  91536.  
  91537. From news@columbia.edu Sun Feb 19 07:14:53 1995
  91538. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04577
  91539.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 20 Feb 1995 03:42:48 -0500
  91540. Received: by apakabar.cc.columbia.edu id AA19818
  91541.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 20 Feb 1995 03:42:47 -0500
  91542. Path: news.columbia.edu!sol.ctr.columbia.edu!spool.mu.edu!uwm.edu!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  91543. From: jrd@cc.usu.edu (Joe Doupnik)
  91544. Newsgroups: comp.protocols.kermit.misc
  91545. Subject: Re: How can I get rid of bell sound?
  91546. Message-Id: <1995Feb19.131453.42192@cc.usu.edu>
  91547. Date: 19 Feb 95 13:14:53 MDT
  91548. References: <0098C370.28AC5993@vms.csd.mu.edu>
  91549. Organization: Utah State University
  91550. Lines: 13
  91551. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  91552.  
  91553. In article <0098C370.28AC5993@vms.csd.mu.edu>, 5603liul@vms.csd.mu.edu writes:
  91554. > Dear netters:
  91555. >     I wonder how I can get rid of the annoying bell sounds.
  91556. > I tried set bell off,  it does't work. Thanks.
  91557. > David
  91558. --------------
  91559.     Which Kermit, which operating mode?
  91560.     SET BELL OFF does work on MS-DOS Kermit, and for Connect mode
  91561. you also have the choice of a visual bell (screen flash).
  91562.     Joe D.
  91563.  
  91564. From news@columbia.edu Thu Feb 16 15:28:33 1995
  91565. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06866
  91566.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 20 Feb 1995 04:35:54 -0500
  91567. Received: by apakabar.cc.columbia.edu id AA22039
  91568.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 20 Feb 1995 04:35:53 -0500
  91569. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!solaris.cc.vt.edu!news.mathworks.com!news.alpha.net!uwm.edu!spool.mu.edu!vms.csd.mu.edu!5603LIUL
  91570. From: 5603liul@vmsa.csd.mu.edu
  91571. Newsgroups: comp.protocols.kermit.misc
  91572. Subject: How to get rid of the conflict of ^]?
  91573. Date: 16 Feb 1995 15:28:33 GMT
  91574. Organization: Marquette University - Computer Services
  91575. Lines: 12
  91576. Message-Id: <0098C108.21F102EC@vms.csd.mu.edu>
  91577. Reply-To: 5603liul@vmsa.csd.mu.edu
  91578. Nntp-Posting-Host: vmsb.csd.mu.edu
  91579. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  91580.  
  91581. Dear Netters:
  91582.  
  91583.    I found out a very bad situation with kermit is that
  91584. you excape back to kermit command mode using ^]. How ever
  91585. telnet's escape characters are also ^]. Any one know hoe
  91586. to resovle this conflict? ALso how can I get the scan code
  91587. of my keyboard?
  91588.  
  91589.     Thanks.
  91590.  
  91591.  
  91592.     David
  91593.  
  91594. From news@columbia.edu Mon Feb 20 09:19:00 1995
  91595. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06895
  91596.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 20 Feb 1995 04:36:32 -0500
  91597. Received: by apakabar.cc.columbia.edu id AA22062
  91598.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 20 Feb 1995 04:36:32 -0500
  91599. Path: news.columbia.edu!panix!news.mathworks.com!news.kei.com!travelers.mail.cornell.edu!newstand.syr.edu!forbin.syr.edu!ejrasiel
  91600. From: ejrasiel@forbin.syr.edu (Ethan J. Rasiel)
  91601. Newsgroups: comp.protocols.kermit.misc
  91602. Subject: Re: binary file conversion
  91603. Date: 20 Feb 1995 09:19:00 GMT
  91604. Organization: Syracuse University
  91605. Lines: 30
  91606. Message-Id: <3i9mq4$ect@newstand.syr.edu>
  91607. References: <3i6eog$44p@newstand.syr.edu> <1995Feb19.172319.42231@cc.usu.edu> <3i8sna$3rk@newstand.syr.edu> <1995Feb19.211951.42247@cc.usu.edu>
  91608. Nntp-Posting-Host: forbin.syr.edu
  91609. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  91610.  
  91611. In article <1995Feb19.211951.42247@cc.usu.edu>,
  91612. Joe Doupnik <jrd@cc.usu.edu> wrote:
  91613.  
  91614. >    I too tried to think of common compression/wrapper utilities which
  91615. >would lead to this, and failed. But it finally dawned on me what happened:
  91616. >someone MAILed the raw binary file and Email chopped the high bit plus
  91617. >inflicting goodness knows what other damage. It's a common mistake by 
  91618. >beginners. Point the people at uuencode programs for use with Email.
  91619. >    Joe D.
  91620.  
  91621. Sounds like a good theory, but 2 things come to mind:
  91622.  
  91623. 1) Is it possible to mail to an ftp site? 
  91624.  
  91625. 2) The person who uploaded one of these files mentioned in an text
  91626. file along with the file that even though it was 17 megs on the site,
  91627. it was really only 10 megs.  uuencoded files increase in size
  91628. similarly, since data that took up 8 bits now only had 7.
  91629.  
  91630. My hope was that the extra data was not chopped off and lost, but
  91631. encoded back into the file itself, just as uuencode does.  If that was
  91632. so, it should be possible to do the reverse.  
  91633.  
  91634. Either way, one thing is certain: this mess was indeed the result of a
  91635. "beginner". I tend to use a more derogatory word :-)
  91636.  
  91637. Ethan
  91638.  
  91639.  
  91640.  
  91641.  
  91642. From news@columbia.edu Thu Feb 16 02:15:13 1995
  91643. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07086
  91644.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 20 Feb 1995 04:40:44 -0500
  91645. Received: by apakabar.cc.columbia.edu id AA22330
  91646.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 20 Feb 1995 04:40:43 -0500
  91647. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!gatech!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  91648. From: jrd@cc.usu.edu (Joe Doupnik)
  91649. Newsgroups: comp.protocols.kermit.misc
  91650. Subject: Re: Hangup the connection automatically?
  91651. Message-Id: <1995Feb16.081514.41886@cc.usu.edu>
  91652. Date: 16 Feb 95 08:15:13 MDT
  91653. References: <3huanr$8gh@geraldo.cc.utexas.edu>
  91654. Organization: Utah State University
  91655. Lines: 20
  91656. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  91657.  
  91658. In article <3huanr$8gh@geraldo.cc.utexas.edu>, nksung@fiat.gslis.utexas.edu (Nackil Sung) writes:
  91659. > Is it possible to set up Kermit so that a session disconnects 
  91660. > automatically after a certain period of idle time?       I'm a librarian 
  91661. > developing an interface which access remote bibliographic databases through 
  91662. > TCP/IP.  Students usually search a particular database and leave without 
  91663. > exiting completely.  This usually causes confusion for the next student 
  91664. > who wants to use the different database.   
  91665. > Can you help me?   Thanx in advance.
  91666. > Nackil
  91667. ----------
  91668.     I'm sorry but an inactivity timer is not in MS-DOS Kermit. Your
  91669. larger host might be able to provide that function, however. After using
  91670. a few library computer programs I can understand why some people will
  91671. leave with the system fully active. Locally the library public machines
  91672. have no exit from their canned menu system, and the frontend of some
  91673. of the info retrieval services seem to have no exit either. So we give
  91674. up and run away. Perhaps if your system had an obvious exit choice then
  91675. folks would use it at least part of the time.
  91676.     Joe D.
  91677.  
  91678. From news@columbia.edu Mon Feb 20 17:25:30 1995
  91679. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00638
  91680.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 20 Feb 1995 12:25:42 -0500
  91681. Received: by apakabar.cc.columbia.edu id AA04908
  91682.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 20 Feb 1995 12:25:38 -0500
  91683. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  91684. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  91685. Newsgroups: comp.protocols.kermit.misc
  91686. Subject: Re: kermit  on irix 5.2 ?
  91687. Date: 20 Feb 1995 17:25:30 GMT
  91688. Organization: Columbia University
  91689. Lines: 38
  91690. Message-Id: <3iajaa$4p4@apakabar.cc.columbia.edu>
  91691. References: <3hr86v$4r1@news.u.washington.edu>
  91692. Nntp-Posting-Host: watsun.cc.columbia.edu
  91693. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  91694.  
  91695. In article <3hr86v$4r1@news.u.washington.edu>,
  91696. Phil Neal <neal@trieste.stat.washington.edu> wrote:
  91697. >Has anybody ported kermit to SGI machines running
  91698. >Irix 5.2 ? If so, can I get the binaries and source ?
  91699. >
  91700. anonymous ftp to kermit.columbia edu, directory kermit/archives,
  91701. binary mode, file cko190.tar.Z (or .gz for gunzip).  Uncompress,
  91702. untar, read the instructions at the top of the makefile, and then
  91703. give the appropriate "make" command, which should produce an
  91704. executable called "wermit", in your case "make irix51ypc".
  91705.  
  91706. Try it out and if it's OK, install it as "kermit" in the desired
  91707. location, such as /usr/local/bin.  Read the ckuins.doc file for
  91708. additional installation instructions.
  91709.  
  91710. Please be sure to also order the manual, since it shows you how
  91711. to use the softare and how to get the most out of it, and sales of
  91712. the manual are the primary source of income that pays for our work.
  91713.  
  91714.   Frank da Cruz and Christine M. Gianone, "Using C-Kermit", Digital Press /
  91715.   Butterworth-Heinemann, Woburn, MA, 1993, 514 pages, ISBN 1-55558-108-0
  91716.  
  91717.   US single-copy price: $36.95; quantity discounts available.  Available in
  91718.   computer bookstores or directly from Columbia University:
  91719.  
  91720.     Kermit Development and Distribution
  91721.     Columbia University Academic Information Systems
  91722.     612 West 115th Street
  91723.     New York, NY  10025  USA
  91724.     Telephone: (USA) 212 854-3703
  91725.  
  91726.   Domestic and overseas orders accepted.  Price: $36.95 (US, Canada, and
  91727.   Mexico), $47 elsewhere.  Orders may be paid by MasterCard or Visa, or
  91728.   prepaid by check in US dollars.  Add $35 bank fee for checks not drawn on
  91729.   a US bank.  Price includes shipping.  Do not include sales tax.
  91730.   Inquire about quantity discounts.
  91731.  
  91732. - Frank
  91733.  
  91734. From news@columbia.edu Mon Feb 20 17:31:22 1995
  91735. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01201
  91736.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 20 Feb 1995 12:31:35 -0500
  91737. Received: by apakabar.cc.columbia.edu id AA05615
  91738.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 20 Feb 1995 12:31:32 -0500
  91739. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  91740. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  91741. Newsgroups: comp.protocols.kermit.misc
  91742. Subject: Re: Need help with Kermit on RISC 6000
  91743. Date: 20 Feb 1995 17:31:22 GMT
  91744. Organization: Columbia University
  91745. Lines: 45
  91746. Message-Id: <3iajla$5ev@apakabar.cc.columbia.edu>
  91747. References: <D41vz9.3p5@cuug.ab.ca>
  91748. Nntp-Posting-Host: watsun.cc.columbia.edu
  91749. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  91750.  
  91751. In article <D41vz9.3p5@cuug.ab.ca>, Xinnian Li <shelterw@cuug.ab.ca> wrote:
  91752. >I am using kermit to transfer files between a RISC 6000 and
  91753. >a PC home computer. There is no trouble for downloading and
  91754. >uploading text files. However, problems occur when I intend
  91755. >to tranfer binary files (.zip, .exe, etc). I did set file
  91756. >type as binary on RISC for this type of transfers. 
  91757. >
  91758. >Any advice and help on this stupid question ?
  91759. >
  91760. Read the documentation?
  91761.  
  91762. For those who prefer not to read the documentation, the following short
  91763. excerpt is reproduced from the FAQ (kermit.columbia.edu:kermit/FAQ.TXT):
  91764.  
  91765. Kermit transfers files in text mode by default.  This means that record
  91766. formats and character sets are likely to be converted.  You can tell Kermit
  91767. to skip all conversions and transfer the file literally, as-is, with the
  91768. command:
  91769.  
  91770.   SET FILE TYPE BINARY
  91771.  
  91772. Normally, it is sufficient to give this command to the FILE SENDER before
  91773. giving it the SEND command.  But there are some exceptions to this rule:
  91774.  
  91775.  1. One or both Kermits do not support "Attribute packets" (or they are
  91776.     disabled).  This is true of many of the commercial and shareware
  91777.     Kermit implementations.  Cure: tell BOTH Kermits to use binary mode.
  91778.  
  91779.  2. You are using some combination of C-Kermit 5A(190) or later, MS-DOS
  91780.     Kermit 3.14 or later, or IBM Mainframe Kermit 4.3.1 or later in
  91781.     client server mode.  In this case, it is the CLIENT's file type setting,
  91782.     rather than the file sender's, that prevails.  Cure: tell the CLIENT
  91783.     to SET FILE TYPE BINARY, or to be extra sure, tell them both.
  91784.  
  91785.  3. You are sending the file from VMS C-Kermit, which is unique among
  91786.     Kermit programs in its ability to automatically switch between text
  91787.     and binary mode based on the file's characteristics.  VMS C-Kermit
  91788.     ignores SET FILE TYPE BINARY and SET FILE TYPE TEXT when sending
  91789.     files, and instead uses binary mode if the file's record format is
  91790.     Fixed, and text mode otherwise.  However, some binary files, notably
  91791.     VMS ZIP files, are stored using a "text-style" record format
  91792.     (Stream_LF), so Kermit sends them in text mode.  You can override
  91793.     this by telling it to SET FILE TYPE IMAGE.
  91794.  
  91795. - Frank
  91796.  
  91797. From news@columbia.edu Thu Feb 16 17:59:04 1995
  91798. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02132
  91799.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 20 Feb 1995 12:43:24 -0500
  91800. Received: by apakabar.cc.columbia.edu id AA06886
  91801.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 20 Feb 1995 12:43:22 -0500
  91802. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!news.intercon.com!panix!news.mathworks.com!uunet!nwnexus!news1.halcyon.com!chinook!ken
  91803. From: ken@chinook.halcyon.com (Ken Pizzini)
  91804. Newsgroups: comp.protocols.kermit.misc
  91805. Subject: Re: How to get rid of the conflict of ^]?
  91806. Date: 16 Feb 1995 17:59:04 GMT
  91807. Organization: What, me?
  91808. Lines: 19
  91809. Message-Id: <3i03p8$6s0@news1.halcyon.com>
  91810. References: <0098C108.21F102EC@vms.csd.mu.edu>
  91811. Nntp-Posting-Host: chinook.halcyon.com
  91812. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  91813.  
  91814. In article <0098C108.21F102EC@vms.csd.mu.edu>,
  91815.  <5603liul@vms.csd.mu.edu> wrote:
  91816. >   I found out a very bad situation with kermit is that
  91817. >you excape back to kermit command mode using ^]. How ever
  91818. >telnet's escape characters are also ^]. Any one know hoe
  91819. >to resovle this conflict? ALso how can I get the scan code
  91820. >of my keyboard?
  91821.  
  91822. Three solutions:
  91823.     1: by using "^]^]" you can have Kermit send the escape
  91824.        character on through so that Telnet can see it;
  91825.     2: use "set escape 28" to change the Kermit escape
  91826.        character to "^\";
  91827.     3: use telnet's "set escape" command.
  91828.  
  91829. To get the scan code of a key on your keyboard, use Kermit's
  91830. "show key" command.
  91831.  
  91832.         --Ken Pizzini
  91833.  
  91834. From news@columbia.edu Mon Feb 20 17:55:39 1995
  91835. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02963
  91836.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 20 Feb 1995 12:55:54 -0500
  91837. Received: by apakabar.cc.columbia.edu id AA08220
  91838.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 20 Feb 1995 12:55:51 -0500
  91839. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  91840. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  91841. Newsgroups: comp.protocols.kermit.misc
  91842. Subject: Re: How to get rid of the conflict of ^]?
  91843. Date: 20 Feb 1995 17:55:39 GMT
  91844. Organization: Columbia University
  91845. Lines: 26
  91846. Message-Id: <3ial2r$806@apakabar.cc.columbia.edu>
  91847. References: <0098C108.21F102EC@vms.csd.mu.edu>
  91848. Nntp-Posting-Host: watsun.cc.columbia.edu
  91849. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  91850.  
  91851. In article <0098C108.21F102EC@vms.csd.mu.edu>,
  91852.  <5603liul@vms.csd.mu.edu> wrote:
  91853. >I found out a very bad situation with kermit is that
  91854. >you excape back to kermit command mode using ^]. How ever
  91855. >telnet's escape characters are also ^]. Any one know hoe
  91856. >to resovle this conflict?
  91857. >
  91858. Anyone who has read the manual, or even who has looked at
  91859. the popup help screen for ^] should be able to help you.
  91860.  
  91861. Ctrl-] (may differ on non-USA keyboards; e.g. on German
  91862. keyboards it is Strg-+) is Kermit's escape character,
  91863. which is, indeed, just like UNIX telnet's.  And, like UNIX
  91864. telnet, Kermit will send one copy of its escape character
  91865. if you type two of them in a row.
  91866.  
  91867. For further details, listen Guy Steele's hit song,
  91868. "Ctrl-Uparrow C"...
  91869.  
  91870. > Also how can I get the scan code of my keyboard?
  91871. >
  91872. You mean, how can you find out the scan code of a particular
  91873. key?  At the MS-Kermit prompt, type "show key" and then press
  91874. the desired key or key combination.
  91875.  
  91876. - Frank
  91877.  
  91878. From news@columbia.edu Mon Feb 20 18:00:24 1995
  91879. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03360
  91880.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 20 Feb 1995 13:00:38 -0500
  91881. Received: by apakabar.cc.columbia.edu id AA08876
  91882.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 20 Feb 1995 13:00:35 -0500
  91883. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  91884. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  91885. Newsgroups: comp.protocols.kermit.misc
  91886. Subject: Re: Kermit for SUN/OS ?
  91887. Date: 20 Feb 1995 18:00:24 GMT
  91888. Organization: Columbia University
  91889. Lines: 11
  91890. Message-Id: <3ialbo$8kt@apakabar.cc.columbia.edu>
  91891. References: <3i2624F4cp@uni-erlangen.de>
  91892. Nntp-Posting-Host: watsun.cc.columbia.edu
  91893. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  91894.  
  91895. In article <3i2624F4cp@uni-erlangen.de>,
  91896. Thomas Rusch <da213@fim.uni-erlangen.de> wrote:
  91897. >Auf welcher FTP-Site finde ich die C-Quelle fur Kermit fur SUN/OS
  91898. >
  91899. Die FTP-Site fuer C-Kermit und alle andere Kermit-Software ist:
  91900.  
  91901.   kermit.columbia.edu [128.59.39.2]
  91902.  
  91903. Sie koennen die C-Quelle fuer C-Kermit in kermit/f/cku190.tar.Z.
  91904.  
  91905. - Frank
  91906.  
  91907. From news@columbia.edu Mon Feb 20 18:06:07 1995
  91908. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03841
  91909.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 20 Feb 1995 13:06:20 -0500
  91910. Received: by apakabar.cc.columbia.edu id AA09482
  91911.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 20 Feb 1995 13:06:16 -0500
  91912. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  91913. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  91914. Newsgroups: comp.protocols.kermit.misc
  91915. Subject: Re: where to put 'ATL0' to lower volumn in kermit?
  91916. Date: 20 Feb 1995 18:06:07 GMT
  91917. Organization: Columbia University
  91918. Lines: 22
  91919. Message-Id: <3ialmf$97p@apakabar.cc.columbia.edu>
  91920. References: <3i543p$cu9@poplar.cs.scarolina.edu>
  91921. Nntp-Posting-Host: watsun.cc.columbia.edu
  91922. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  91923.  
  91924. In article <3i543p$cu9@poplar.cs.scarolina.edu>,
  91925. Seung-Chul Woo <woo@usceast.cs.scarolina.edu> wrote:
  91926. >I hope this is a right place to post.
  91927. >I want to mute my modem speaker, I can not find a proper place to
  91928. >put 'ATL0' to in .kermrc file.
  91929. >I've tried several commands in 'set dial something' in vain.
  91930. >
  91931. Try this:
  91932.  
  91933.   set dial dial-command ATL0DT%s\{13}
  91934.  
  91935. This will turn off your modem's speaker every time you give a
  91936. DIAL command.
  91937.  
  91938. Or if you just want to send the command to your modem at some
  91939. particular time, e.g. before dialing:
  91940.  
  91941.   output ATL0\13
  91942.  
  91943. etc.  There are many variations on this.
  91944.  
  91945. - Frank
  91946.  
  91947. From news@columbia.edu Mon Feb 20 18:11:38 1995
  91948. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04407
  91949.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 20 Feb 1995 13:12:08 -0500
  91950. Received: by apakabar.cc.columbia.edu id AA10151
  91951.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 20 Feb 1995 13:12:05 -0500
  91952. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  91953. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  91954. Newsgroups: comp.protocols.kermit.misc
  91955. Subject: Re: Kermit for SUN/OS ?
  91956. Date: 20 Feb 1995 18:11:38 GMT
  91957. Organization: Columbia University
  91958. Lines: 10
  91959. Message-Id: <3iam0q$9s8@apakabar.cc.columbia.edu>
  91960. References: <3i2624F4cp@uni-erlangen.de> <3ialbo$8kt@apakabar.cc.columbia.edu>
  91961. Nntp-Posting-Host: watsun.cc.columbia.edu
  91962. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  91963.  
  91964. In article <3ialbo$8kt@apakabar.cc.columbia.edu>,
  91965. Frank da Cruz <fdc@watsun.cc.columbia.edu> wrote:
  91966. >...
  91967. >Sie koennen die C-Quelle fuer C-Kermit in kermit/f/cku190.tar.Z.
  91968. >
  91969. Oops:
  91970.  
  91971. Sie koennen die C-Quelle fuer C-Kermit in kermit/archives/cku190.tar.Z.
  91972.                                                  ^^^^^^^^
  91973. - Frank
  91974.  
  91975. From news@columbia.edu Sun Feb 19 21:00:17 1995
  91976. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18677
  91977.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 20 Feb 1995 16:45:09 -0500
  91978. Received: by apakabar.cc.columbia.edu id AA00925
  91979.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 20 Feb 1995 16:44:57 -0500
  91980. Path: news.columbia.edu!sol.ctr.columbia.edu!spool.mu.edu!bloom-beacon.mit.edu!news.kei.com!travelers.mail.cornell.edu!newstand.syr.edu!forbin.syr.edu!ejrasiel
  91981. From: ejrasiel@forbin.syr.edu (Ethan J. Rasiel)
  91982. Newsgroups: comp.protocols.kermit.misc
  91983. Subject: Re: binary file conversion
  91984. Date: 19 Feb 1995 21:00:17 GMT
  91985. Organization: Syracuse University
  91986. Lines: 54
  91987. Message-Id: <3i8bh1$pji@newstand.syr.edu>
  91988. References: <3i6eog$44p@newstand.syr.edu> <1995Feb19.130559.42187@cc.usu.edu>
  91989. Nntp-Posting-Host: forbin.syr.edu
  91990. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  91991.  
  91992. In article <1995Feb19.130559.42187@cc.usu.edu>,
  91993. Joe Doupnik <jrd@cc.usu.edu> wrote:
  91994. >In article <3i6eog$44p@newstand.syr.edu>, ejrasiel@forbin.syr.edu (Ethan J. Rasiel) writes:
  91995. >> Some time ago I downloaded several .zip files from an ftp site that,
  91996. >> upon examination, were in some sort of modified format.  It seemed to
  91997. >> be something akin to uuencode.  I posted to several newsgroups trying
  91998. >> to find out how to convert these files back to normal, and received a
  91999. >> reply indicating that the files were in kermit format.  Can someone
  92000. >> tell me how to convert these files, using either c-kermit or
  92001. >> pc-kermit?  I have examined the documentation and find no reference to
  92002. >> this encoding mechanism.  
  92003. >> 
  92004. >> Following is an example header:
  92005. >> 
  92006. >> This file is in BINARY format, created by ROBINTON at 29-JAN-1995
  92007. >> 16:35:24.
  92008. >> 155061 bytes.  Checksum = 14EE XCRC = 8AFA CRC16 = E51E.
  92009. >> [*BINARY*128]
  92010. >> PK^C^D^T`^B`^H`^!~+w^]~G?)i^=;``%T~
  92011. >> ``^H```COCO.DOC~,^={s^ZK%V~g}D~p^]2~X%I~6t^G
  92012. >> !^I~I~>~6z{~"^Q
  92013. >> %[~1^Dj@~v~ux^T3^I$~"ZE^U]YH~&~7~w~;o%^WVV^I~]~>~]~3%N~0-AU>O%^~
  92014. >> g
  92015. >> 
  92016. >> 
  92017. >> I would prefer to do this locally, ie, without actually transferring
  92018. >> the files from one place to another.  I have already done that, and
  92019. >> have copes of the files both on unix and dos boxes.
  92020. >> 
  92021. >> Thanks for any assistance.
  92022. >> 
  92023. >> Ethan
  92024. >------------
  92025. >    That's nothing to do with Kermit. PK looks rather like Phil Katz,
  92026. >of PKZIP fame. 
  92027. >    Joe D.
  92028.  
  92029.  
  92030. It has the PK header because it was originally a zip file.  What has
  92031. happened is that all the 8 bit characters were converted to 7 bit
  92032. characters, and all the 7 bit characters were left alone.  Some else
  92033. sent me email suggesting that this is something kermit does to send 8
  92034. bit files over a 7 bit connection.  It might not have anything to do
  92035. with kermit, but at least 1 person thought it did, so I posted the
  92036. question to this group.  Here is the email I got, reprinted without
  92037. persmission:
  92038.  
  92039. >The file looks to be encoded according to kermit's rules, although kermit
  92040. >would normally decode.  ^ means exclusive or with X'40' and ' means
  92041. >add X'80'.  There are special rules for encoding ^ and ' and there may be
  92042. >repeat count codes as well.  It's not an obvious code for storing files,
  92043. >though.
  92044.  
  92045. Ethan
  92046.  
  92047. From news@columbia.edu Fri Feb 17 06:24:19 1995
  92048. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19384
  92049.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 20 Feb 1995 16:53:15 -0500
  92050. Received: by apakabar.cc.columbia.edu id AA01616
  92051.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 20 Feb 1995 16:53:13 -0500
  92052. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!swiss.ans.net!newsgate.advantis.net!news-m01.ny.us.ibm.net!news
  92053. From: jaltman@ibm.net
  92054. Newsgroups: comp.protocols.kermit.misc
  92055. Subject: Re: c-kermit for os/2..SLIP?
  92056. Date: 17 Feb 1995 06:24:19 GMT
  92057. Lines: 12
  92058. Message-Id: <3i1fej$151o@news-s01.ny.us.ibm.net>
  92059. References: <3hqtj4$g8c@news2.delphi.com>
  92060. Reply-To: jaltman@ibm.net
  92061. Nntp-Posting-Host: slip36-148.il.us.ibm.net
  92062. X-Newsreader: IBM NewsReader/2 v1.09
  92063. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  92064.  
  92065. In <3hqtj4$g8c@news2.delphi.com>, BUSHEYA@news.delphi.com (BUSHEYA@DELPHI.COM) writes:
  92066. >Heeeelllpp! I just got a slip connection to my university's VAX via a 
  92067. >data link thru a annex server.... I thought C-kermit could provide a SLIP 
  92068. >connection..... Can it?
  92069.  
  92070. C-Kermit cannot provide a SLIP connection.  For a SLIP connection you need 
  92071. something like WARP's Internet Access Kit.
  92072.  
  92073. After you have a working SLIP connection, C-Kermit for OS/2 will provide you
  92074. with a very solid Telnet client which can be used over any TCP/IP network.
  92075.  
  92076.  
  92077.  
  92078. From news@columbia.edu Sun Feb 17 04:04:47 1995
  92079. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19706
  92080.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 20 Feb 1995 16:55:37 -0500
  92081. Received: by apakabar.cc.columbia.edu id AA01759
  92082.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 20 Feb 1995 16:55:17 -0500
  92083. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!news.intercon.com!panix!news.mathworks.com!uunet!in1.uu.net!news.sprintlink.net!howland.reston.ans.net!nntp.crl.com!crl12.crl.com!not-for-mail
  92084. From: dgrisner@crl.com (David G. Risner)
  92085. Newsgroups: comp.protocols.kermit.misc
  92086. Subject: Printing from scripts
  92087. Date: 16 Feb 1995 20:04:47 -0800
  92088. Organization: CRL Dialup Internet Access    (415) 705-6060  [Login: guest]
  92089. Lines: 7
  92090. Message-Id: <3i178v$9nb@crl12.crl.com>
  92091. Nntp-Posting-Host: crl12.crl.com
  92092. X-Newsreader: TIN [version 1.2 PL2]
  92093. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  92094.  
  92095. How does one print from within a script?
  92096.  
  92097. Thanks,
  92098. David G. Risner
  92099. dgrisner@crl.com
  92100. Anaheim, CA
  92101.  
  92102.  
  92103. From news@columbia.edu Mon Feb 20 23:39:30 1995
  92104. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26056
  92105.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 20 Feb 1995 18:39:38 -0500
  92106. Received: by apakabar.cc.columbia.edu id AA10759
  92107.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 20 Feb 1995 18:39:36 -0500
  92108. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  92109. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  92110. Newsgroups: comp.protocols.kermit.misc
  92111. Subject: Re: binary file conversion
  92112. Date: 20 Feb 1995 23:39:30 GMT
  92113. Organization: Columbia University
  92114. Lines: 53
  92115. Message-Id: <3ib97i$ag2@apakabar.cc.columbia.edu>
  92116. References: <3i6eog$44p@newstand.syr.edu> <1995Feb19.130559.42187@cc.usu.edu> <3i8bh1$pji@newstand.syr.edu>
  92117. Nntp-Posting-Host: watsun.cc.columbia.edu
  92118. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  92119.  
  92120. In article <3i8bh1$pji@newstand.syr.edu>,
  92121. Ethan J. Rasiel <ejrasiel@forbin.syr.edu> wrote:
  92122. .....
  92123. >>> [*BINARY*128]
  92124. >>> PK^C^D^T`^B`^H`^!~+w^]~G?)i^=;``%T~
  92125. >>> ``^H```COCO.DOC~,^={s^ZK%V~g}D~p^]2~X%I~6t^G
  92126. >
  92127. >It has the PK header because it was originally a zip file.  What has
  92128. >happened is that all the 8 bit characters were converted to 7 bit
  92129. >characters, and all the 7 bit characters were left alone.  Some else
  92130. >sent me email suggesting that this is something kermit does to send 8
  92131. >bit files over a 7 bit connection.
  92132. >
  92133. Yes, but the receiving Kermit program -- if it is implements the Kermit
  92134. protocol correctly -- puts the data back the way it was originally before
  92135. writing it to the file.
  92136.  
  92137. >It might not have anything to do
  92138. >with kermit, but at least 1 person thought it did, so I posted the
  92139. >question to this group.  Here is the email I got, reprinted without
  92140. >permission:
  92141. >>The file looks to be encoded according to kermit's rules, although kermit
  92142. >>would normally decode.  ^ means exclusive or with X'40'
  92143.  
  92144. Actually, the "#" character is normally used for this.  The user would have
  92145. to go out of her way to change the control prefix in order to achieve this
  92146. effect.
  92147.  
  92148. >>...and ' means add X'80'.
  92149.  
  92150. Normally the "&" character is used for this.  Again, the user would have to
  92151. take extraordinary measures to change this.
  92152.  
  92153. >>There are special rules for encoding ^ and ' and
  92154. >>there may be repeat count codes as well.  It's not an obvious code for
  92155. >>storing files, though.
  92156.  
  92157. It wasn't meant to be.
  92158.  
  92159. If the complaint is that the file was transferred with "kermit" and the
  92160. results were as shown above, then the most likely explanation is that a
  92161. faulty Kermit implementation was used on one or both ends.  A less likely
  92162. explanation is that (a) a faulty implementation was used on only one end
  92163. AND (b) the user changed all sorts of defaults in order to get the file
  92164. stored in the manner it was.
  92165.  
  92166. A third explanation is that the file really does not look the way we see
  92167. it above at all, but the excerpt above is the result of "typing" a binary
  92168. file on a computer whose terminal (console) driver displays control
  92169. characters in ^X notation and 8-bit characters in ~X notation.  Hmmm, sort
  92170. of like MS-DOS Kermit's SET DEBUG SESSION display...
  92171.  
  92172. - Frank
  92173.  
  92174. From news@columbia.edu Sat Feb 18 02:20:36 1995
  92175. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29136
  92176.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 20 Feb 1995 19:34:12 -0500
  92177. Received: by apakabar.cc.columbia.edu id AA15331
  92178.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 20 Feb 1995 19:34:10 -0500
  92179. Newsgroups: comp.protocols.kermit.misc
  92180. Path: news.columbia.edu!sol.ctr.columbia.edu!news.msfc.nasa.gov!news.larc.nasa.gov!night.primate.wisc.edu!caen!hearst.acc.Virginia.EDU!murdoch!fulton.seas.Virginia.EDU!esh6h
  92181. From: esh6h@fulton.seas.Virginia.EDU (Erik Hatcher)
  92182. Subject: Re: Hangup the connection automatically?
  92183. X-Nntp-Posting-Host: fulton.seas.virginia.edu
  92184. Message-Id: <D46BuC.6t@murdoch.acc.Virginia.EDU>
  92185. Sender: usenet@murdoch.acc.Virginia.EDU
  92186. Organization: University of Virginia
  92187. References: <3huanr$8gh@geraldo.cc.utexas.edu> <1995Feb16.081514.41886@cc.usu.edu> <D44F0z.3Ct@murdoch.acc.Virginia.EDU> <1995Feb17.093953.42006@cc.usu.edu>
  92188. Date: Sat, 18 Feb 1995 02:20:36 GMT
  92189. Lines: 48
  92190. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  92191.  
  92192. In article <1995Feb17.093953.42006@cc.usu.edu>,
  92193. Joe Doupnik <jrd@cc.usu.edu> wrote:
  92194. >In article <D44F0z.3Ct@murdoch.acc.Virginia.EDU>, esh6h@fulton.seas.Virginia.EDU (Erik Hatcher) writes:
  92195. >> In article <1995Feb16.081514.41886@cc.usu.edu>,
  92196. >> Joe Doupnik <jrd@cc.usu.edu> wrote:
  92197. >>>In article <3huanr$8gh@geraldo.cc.utexas.edu>, nksung@fiat.gslis.utexas.edu (Nackil Sung) writes:
  92198. >>>> Is it possible to set up Kermit so that a session disconnects 
  92199. >>>> automatically after a certain period of idle time?       I'm a librarian 
  92200. >>>> developing an interface which access remote bibliographic databases through 
  92201. >>>> TCP/IP.  Students usually search a particular database and leave without 
  92202. >>>> exiting completely.  This usually causes confusion for the next student 
  92203. >>>> who wants to use the different database.   
  92204. >>>> Can you help me?   Thanx in advance.
  92205. >>>> 
  92206. >>>> Nackil
  92207. >>>----------
  92208. >>>    I'm sorry but an inactivity timer is not in MS-DOS Kermit. Your
  92209. >>>larger host might be able to provide that function, however. After using
  92210. >>>a few library computer programs I can understand why some people will
  92211. >>>leave with the system fully active. Locally the library public machines
  92212. >>>have no exit from their canned menu system, and the frontend of some
  92213. >>>of the info retrieval services seem to have no exit either. So we give
  92214. >>>up and run away. Perhaps if your system had an obvious exit choice then
  92215. >>>folks would use it at least part of the time.
  92216. >>>    Joe D.
  92217. >> 
  92218. >> How about a hot key macro that exits the current scenario and
  92219. >> returns to the main menu?  Then label the stations (either on
  92220. >> the terminal or on the computer display) what the hot key is.
  92221. >> 
  92222. >>     Erik
  92223. >--------------
  92224. >    Hot keys imply TSRs and other bad things.
  92225. >    Poorly written library access software is the problem, and
  92226. >that problem is widely spread. It's rather embarassing that the info
  92227. >retrieval folks lag sooo far behind.
  92228. >    Joe D.
  92229.  
  92230. I was misunderstood.  If the connections are being made by Kermit
  92231. then define a key to be the escape key inside the driving Kermit
  92232. script.  Maybe I'm misunderstanding the application though.
  92233.  
  92234.     Erik
  92235. --
  92236. Erik Hatcher                           + "But every now and then we just have
  92237. http://fulton.seas.virginia.edu/~esh6h |  to howl with the wolves." 
  92238.                                        |        - Werner Heisenberg
  92239. ---------------------------------------+-------------------------------------
  92240.  
  92241. From news@columbia.edu Fri Feb 17 09:16:09 1995
  92242. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02760
  92243.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 20 Feb 1995 20:40:46 -0500
  92244. Received: by apakabar.cc.columbia.edu id AA20553
  92245.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 20 Feb 1995 20:40:45 -0500
  92246. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!in1.uu.net!EU.net!dkuug!eunet.no!nuug!telepost.no!oslonett.no!oslonett.no!not-for-mail
  92247. From: sven@OSLONETT.NO (Sven Andreassen)
  92248. Newsgroups: comp.protocols.kermit.misc
  92249. Subject: Re: Kermit and Windows 95
  92250. Date: 17 Feb 1995 10:16:09 +0100
  92251. Organization: Oslonett public access
  92252. Lines: 28
  92253. Message-Id: <bLtGlml41DOP076yn@OSLONETT.NO>
  92254. References: <3honer$ld4@lastactionhero.rs.itd.umich.edu>
  92255.  <1995Feb14.073049.41656@cc.usu.edu>
  92256. Nntp-Posting-Host: hasle.oslonett.no
  92257. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  92258.  
  92259. In article <1995Feb14.073049.41656@cc.usu.edu>,
  92260. jrd@cc.usu.edu (Joe Doupnik) wrote:
  92261. > > Does anyone know if
  92262. > > I can run Kermit using Windows 95 built in TCP/IP?  These are all virutal mode
  92263. > > drivers and as such should be available in all DOS session run under Windows. 
  92264. > > I just have no idea what to do to make Kermit find them.  Thanks for your help.
  92265. > ----------------
  92266. > Why do people keep trying these things, sigh.
  92267.  
  92268. Well, maybe they actually need to make Kermit work with newer 
  92269. versions of Windows....  I had a similar question, (conserning WFW 3.11),
  92270. and got help from this conference.
  92271.  
  92272. I guess this question will pop up from time to time until Kermit 
  92273. becomes winsock-compatible one way or another.  TCP/IP has grown 
  92274. to be the major Network protocol, and most TCP/IP applications 
  92275. made theese days are winsock-compatible.  If the Kermit developers
  92276. wants to keep its strong position in PC-LAN communication, I belive
  92277. they have to make their product winsock-compatible.
  92278.  
  92279. When that is said, I will add that thousands of people ae 
  92280. greatful that Kermit is made available as freeware. If the 
  92281. developing costs are too high to make a windows version of Kermit, 
  92282. making newer versions shareware should cover those costs.
  92283.  
  92284. Best regards.
  92285.  
  92286. Sven Andreassen.
  92287.  
  92288. From news@columbia.edu Sun Feb 21 01:45:25 1995
  92289. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03497
  92290.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 20 Feb 1995 20:58:47 -0500
  92291. Received: by apakabar.cc.columbia.edu id AA22011
  92292.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 20 Feb 1995 20:58:45 -0500
  92293. Path: news.columbia.edu!panix!news.mathworks.com!news.kei.com!ddsw1!not-for-mail
  92294. From: les@MCS.COM (Leslie Mikesell)
  92295. Newsgroups: comp.protocols.kermit.misc
  92296. Subject: Re: Kermit 3.14 and Winsock
  92297. Date: 20 Feb 1995 19:45:25 -0600
  92298. Organization: /usr/lib/news/organi[sz]ation
  92299. Lines: 25
  92300. Message-Id: <3ibgjl$pjo@Mercury.mcs.com>
  92301. References: <1995Feb15.164229.6472@unvax.union.edu> <3i2ru6$4ua@infa.central.susx.ac.uk>
  92302. Nntp-Posting-Host: mercury.mcs.com
  92303. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  92304.  
  92305. In article <3i2ru6$4ua@infa.central.susx.ac.uk>,
  92306. Leila Burrell-Davis <leilabd@central.susx.ac.uk> wrote:
  92307. >Mary P. McKnight (mcknighm@unvax.union.edu) wrote:
  92308. >% I have been attempting to get Kermit 3.14 (using TCP/IP) to work thru
  92309. >% Windows 3.1.  I can get it to work outside of Windows without any
  92310. >% problems.  However, from within Windows I get the following error
  92311. >% message:
  92312. >
  92313. >You can get pktmux from SimTel mirrors - it's got a whacking great
  92314. >manual. (Its home site was ftp.cc.rl.ac.uk:/pub/pcsupp/network/pktmux
  92315. >last time I looked.) 
  92316.  
  92317. There is something that looks remarkably like a native windows version
  92318. of kermit with both com port and winsock support available from:
  92319. kaiwan.kaiwan.com:/user/wwarthen/kmw080.zip  (16 bit) and
  92320. kaiwan.kaiwan.com:/user/wwarthen/kmn080.zip  (32 bit NT).
  92321.  
  92322. It doesn't have scripting yet but most of the other kermit functions
  92323. appear to be there.  I hope there aren't any ugly copyright issues
  92324. that affect this version later.  At the moment the only restriction
  92325. on redistribution seems to be that you have to keep the original
  92326. files together.
  92327.  
  92328. Les Mikesell
  92329.   les@mcs.com
  92330.  
  92331. From news@columbia.edu Sun Feb 19 21:16:57 1995
  92332. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04106
  92333.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 20 Feb 1995 21:08:42 -0500
  92334. Received: by apakabar.cc.columbia.edu id AA22820
  92335.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 20 Feb 1995 21:08:41 -0500
  92336. Path: news.columbia.edu!sol.ctr.columbia.edu!spool.mu.edu!bloom-beacon.mit.edu!news.kei.com!news.mathworks.com!uunet!in1.uu.net!ulowell.uml.edu!neptune.cs.uml.edu!mbecker
  92337. From: mbecker@neptune.cs.uml.edu (Mark Becker)
  92338. Newsgroups: comp.protocols.kermit.misc
  92339. Subject: Re [2]: MS-Kermit 3.14 mode line won't stay off.
  92340. Followup-To: comp.protocols.kermit.misc
  92341. Date: 19 Feb 1995 21:16:57 GMT
  92342. Organization: UMass-Lowell Computer Science
  92343. Lines: 33
  92344. Sender: mbecker@neptune.cs.uml.edu
  92345. Distribution: usa
  92346. Message-Id: <3i8cg9$c6k@ulowell.uml.edu>
  92347. References: <3i4qtu$smk@ulowell.uml.edu> <3i6g5n$ju@apakabar.cc.columbia.edu>
  92348. Nntp-Posting-Host: neptune.cs.uml.edu
  92349. Keywords: kermit_3.14 mode_line.
  92350. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  92351.  
  92352. In article <3i6g5n$ju@apakabar.cc.columbia.edu> jrd@watsun.cc.columbia.edu
  92353.   (Joe R. Doupnik) writes:
  92354. >--------------
  92355. >    The host is driving the cursor to line 25 explicity, by direct
  92356. >addressing. That means the host now owns the status line. The cure is
  92357. >to correct the host to not do that, as they say. MSK reports its screen
  92358. >size via Telnet options upon request, and that size excludes the status
  92359. >line.
  92360.  
  92361. I don't have a VT-100 terminal to compare with.  Two questions:
  92362.  
  92363.  a) Does the VT-100 have a 25th line?
  92364.  b) If (a) == "Yes" then does that line scroll up with the rest of them if the
  92365.     cursor is directed there?  Or does the cursor 'stick' to the 25th line?
  92366.  
  92367. > So I think you may have to dig into your host's termcap/terminfo
  92368. > material to discover the error there.
  92369.  
  92370. I did try setting up a TERMCAP environment variable (the troublesome machine
  92371. is a dual Alpha running OSF/1) but not all software seems to acknowledge that.
  92372.  
  92373. Before I dig deeper into things (like terminfo and /etc/termcap and whatever
  92374. else I have to fix for this), I'd like to know about (a) and (b) above.
  92375.  
  92376. >    Joe D.
  92377. >
  92378.  
  92379. Thanks for your time -
  92380.  
  92381. Mark
  92382. +----------------------------------------+--------------------------+
  92383. | Mark Becker    <mbecker@cs.uml.edu>     | #include <std.disclaimer>|
  92384. +----------------------------------------+--------------------------+
  92385.  
  92386. From news@columbia.edu Fri Feb 17 14:24:37 1995
  92387. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08694
  92388.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 20 Feb 1995 22:45:27 -0500
  92389. Received: by apakabar.cc.columbia.edu id AA00346
  92390.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 20 Feb 1995 22:45:26 -0500
  92391. Newsgroups: comp.protocols.kermit.misc
  92392. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!news.mathworks.com!news.alpha.net!uwm.edu!news.moneng.mei.com!howland.reston.ans.net!ix.netcom.com!netcom.com!jzero
  92393. From: jzero@netcom.com (Jim Nakamura)
  92394. Subject: How to resume zmodem ?
  92395. Message-Id: <jzeroD45Ep1.28r@netcom.com>
  92396. Organization: NETCOM On-line Communication Services (408 261-4700 guest)
  92397. Date: Fri, 17 Feb 1995 14:24:37 GMT
  92398. Lines: 8
  92399. Sender: jzero@netcom3.netcom.com
  92400. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  92401.  
  92402.  
  92403. Sometimes a zmodem transfer will stall for some reason.  Under kermit,
  92404. when I restart the zmodem transfer, it starts retransmitting the file
  92405. from the very beginning instead of continuing where it stopped.  Is 
  92406. there a way around this?
  92407.  
  92408. -- 
  92409. jzero@netcom.com
  92410.  
  92411. From news@columbia.edu Tue Feb 21 02:03:44 1995
  92412. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14386
  92413.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 21 Feb 1995 00:23:51 -0500
  92414. Received: by apakabar.cc.columbia.edu id AA08108
  92415.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 21 Feb 1995 00:23:49 -0500
  92416. Newsgroups: comp.protocols.kermit.misc
  92417. Path: news.columbia.edu!panix!news.mathworks.com!uunet!in1.uu.net!omen!caf
  92418. From: caf@omen.COM (Chuck Forsberg WA7KGX)
  92419. Subject: Re: ZMODEM VS KERMIT
  92420. Organization: Omen Technology INC, Portland Rain Forest
  92421. Date: Tue, 21 Feb 1995 02:03:44 GMT
  92422. Message-Id: <D4Bv29.Fnt@omen.COM>
  92423. References: <3i83hi$omg@sirio.cineca.it> <1995Feb19.131317.42190@cc.usu.edu>
  92424. Lines: 25
  92425. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  92426.  
  92427. In article <1995Feb19.131317.42190@cc.usu.edu> jrd@cc.usu.edu (Joe Doupnik) writes:
  92428. >In article <3i83hi$omg@sirio.cineca.it>, TREVISANELLO@UDUNIV.CC.UNIUD.IT (TREVISANELLO ARRIGO) writes:
  92429. >> j'm connected with university trough my modem and telephon line. The only way
  92430. >> to exchange file with the university computer ( openVMS) is kermit, that is
  92431. >> very slow. How can i make a fast connection? Is it possibile to install zmodem
  92432. >> on openVMS and how?  Thanks Arrigo
  92433. >------------
  92434. >    Please obtain and read the list's FAQ, file FAQ.TXT in directory
  92435. >kermit on kermit.columbia.edu.
  92436. >    Joe D.
  92437.  
  92438.  
  92439. ZMODEM transfer programs for VMS are available on the FTP site,
  92440. TeleGodzilla, and other places as rzsz.tlb.  Be sure to use binary
  92441. mode for the transfer!
  92442.  
  92443. The FAQ Kermit author Joe D. recommends refers to the discredited
  92444. Columbia Kermit News "True Life Benchmarks".  To be fair, please
  92445. download knewstru.zip from the FTP site to get a second opinion.
  92446.  
  92447. -- 
  92448. Chuck Forsberg WA7KGX caf@omen.COM      503-621-3406 FAX:-3735
  92449.    Omen Technology Inc      "The High Reliability Software"
  92450. Author of YMODEM, ZMODEM, Professional-YAM, ZCOMM, GSZ and DSZ
  92451. TeleGodzilla BBS: 503-621-3746  FTP: ftp.cs.pdx.edu pub/zmodem
  92452.  
  92453. From news@columbia.edu Fri Feb 17 03:36:31 1995
  92454. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14695
  92455.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 21 Feb 1995 00:28:25 -0500
  92456. Received: by apakabar.cc.columbia.edu id AA08420
  92457.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 21 Feb 1995 00:28:24 -0500
  92458. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!in1.uu.net!news.sprintlink.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  92459. From: jrd@cc.usu.edu (Joe Doupnik)
  92460. Newsgroups: comp.protocols.kermit.misc
  92461. Subject: Re: Ansi Emulation and MSK! PLEASE HELP!! PLEASE :)
  92462. Message-Id: <1995Feb17.093632.42004@cc.usu.edu>
  92463. Date: 17 Feb 95 09:36:31 MDT
  92464. References: <3i0qgo$3bb@newshost.fiu.edu>
  92465. Organization: Utah State University
  92466. Lines: 29
  92467. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  92468.  
  92469. In article <3i0qgo$3bb@newshost.fiu.edu>, michaell@serss0.fiu.edu (Mike R. Langevin) writes:
  92470. > --
  92471. > Hi Great Kermit Guru's! I need some help, with what might be a bit simple 
  92472. > for you great wise ones! (oh, hail the great kermit guru's! :) 
  92473. > I have found that kermit supports VT102 remote printing under ANSI. 
  92474. > However, the online program I am TELNETing to with kermit asks the remote 
  92475. > caller (aka Kermit) if it is VT102. If I set the term to VT102 the 
  92476. > program detects that it is an I am able to use it with remote printing but
  92477. > I don't receive the correct ANSI characters.  (aka where I should get a block
  92478. > i get a U with two dots above it, etc). However, if I set term to ANSI  I 
  92479. > get the right characters (aka blocks when im suppose to get blocks and 
  92480. > lines when i should get lines) but the program doesn't send the remote 
  92481. > print codes because it thinks I am a standard ANSI terminal with no 
  92482. > support for VT102 codes. The problem I face is I need to be able to 
  92483. > either see the proper ANSI characters in VT102 or I need to be able to 
  92484. > lie to the Online program and tell it I am in VT102 when Im really in 
  92485. > ANSI. I did see the SET Telnet Term-type and tryed setting it to VT102 
  92486. > but it didnt work. (perhaps i didnt do it right "SET TELNET TERM-TYPE VT102")
  92487. -------------
  92488.     You are twisting the wrong knob. What the other end is doing is
  92489. sending IBM PC Code Page glyphs yet you have the terminal emulation character
  92490. set of Latin1. SET TERM CHAR TRANSPARENT to go to the currently active Code
  92491. Page in the display adapter.
  92492.     These matters are explained in the user's manual, the book "Using
  92493. MS-DOS Kermit", details on the MSK Help screen.
  92494.     Joe D.
  92495.  
  92496. From news@columbia.edu Fri Feb 17 03:39:53 1995
  92497. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14717
  92498.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 21 Feb 1995 00:28:29 -0500
  92499. Received: by apakabar.cc.columbia.edu id AA08425
  92500.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 21 Feb 1995 00:28:29 -0500
  92501. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!in1.uu.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  92502. From: jrd@cc.usu.edu (Joe Doupnik)
  92503. Newsgroups: comp.protocols.kermit.misc
  92504. Subject: Re: Hangup the connection automatically?
  92505. Message-Id: <1995Feb17.093953.42006@cc.usu.edu>
  92506. Date: 17 Feb 95 09:39:53 MDT
  92507. References: <3huanr$8gh@geraldo.cc.utexas.edu> <1995Feb16.081514.41886@cc.usu.edu> <D44F0z.3Ct@murdoch.acc.Virginia.EDU>
  92508. Organization: Utah State University
  92509. Lines: 35
  92510. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  92511.  
  92512. In article <D44F0z.3Ct@murdoch.acc.Virginia.EDU>, esh6h@fulton.seas.Virginia.EDU (Erik Hatcher) writes:
  92513. > In article <1995Feb16.081514.41886@cc.usu.edu>,
  92514. > Joe Doupnik <jrd@cc.usu.edu> wrote:
  92515. >>In article <3huanr$8gh@geraldo.cc.utexas.edu>, nksung@fiat.gslis.utexas.edu (Nackil Sung) writes:
  92516. >>> Is it possible to set up Kermit so that a session disconnects 
  92517. >>> automatically after a certain period of idle time?       I'm a librarian 
  92518. >>> developing an interface which access remote bibliographic databases through 
  92519. >>> TCP/IP.  Students usually search a particular database and leave without 
  92520. >>> exiting completely.  This usually causes confusion for the next student 
  92521. >>> who wants to use the different database.   
  92522. >>> Can you help me?   Thanx in advance.
  92523. >>> 
  92524. >>> Nackil
  92525. >>----------
  92526. >>    I'm sorry but an inactivity timer is not in MS-DOS Kermit. Your
  92527. >>larger host might be able to provide that function, however. After using
  92528. >>a few library computer programs I can understand why some people will
  92529. >>leave with the system fully active. Locally the library public machines
  92530. >>have no exit from their canned menu system, and the frontend of some
  92531. >>of the info retrieval services seem to have no exit either. So we give
  92532. >>up and run away. Perhaps if your system had an obvious exit choice then
  92533. >>folks would use it at least part of the time.
  92534. >>    Joe D.
  92535. > How about a hot key macro that exits the current scenario and
  92536. > returns to the main menu?  Then label the stations (either on
  92537. > the terminal or on the computer display) what the hot key is.
  92538. >     Erik
  92539. --------------
  92540.     Hot keys imply TSRs and other bad things.
  92541.     Poorly written library access software is the problem, and
  92542. that problem is widely spread. It's rather embarassing that the info
  92543. retrieval folks lag sooo far behind.
  92544.     Joe D.
  92545.  
  92546. From news@columbia.edu Fri Feb 17 03:41:01 1995
  92547. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14748
  92548.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 21 Feb 1995 00:29:23 -0500
  92549. Received: by apakabar.cc.columbia.edu id AA08471
  92550.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 21 Feb 1995 00:29:22 -0500
  92551. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!in1.uu.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  92552. From: jrd@cc.usu.edu (Joe Doupnik)
  92553. Newsgroups: comp.protocols.kermit.misc
  92554. Subject: Re: Printing from scripts
  92555. Message-Id: <1995Feb17.094101.42007@cc.usu.edu>
  92556. Date: 17 Feb 95 09:41:01 MDT
  92557. References: <3i178v$9nb@crl12.crl.com>
  92558. Organization: Utah State University
  92559. Lines: 6
  92560. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  92561.  
  92562. In article <3i178v$9nb@crl12.crl.com>, dgrisner@crl.com (David G. Risner) writes:
  92563. > How does one print from within a script?
  92564. --------------
  92565.     Print what?
  92566.     RUN COPY filename PRN  works, of course.
  92567.     Joe D.
  92568.  
  92569. From news@columbia.edu Fri Feb 17 19:03:34 1995
  92570. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18779
  92571.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 21 Feb 1995 01:34:24 -0500
  92572. Received: by apakabar.cc.columbia.edu id AA12029
  92573.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 21 Feb 1995 01:34:22 -0500
  92574. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!in1.uu.net!news.sprintlink.net!howland.reston.ans.net!pipex!lyra.csx.cam.ac.uk!sunsite.doc.ic.ac.uk!susx.ac.uk!leilabd
  92575. From: leilabd@central.susx.ac.uk (Leila Burrell-Davis)
  92576. Newsgroups: comp.protocols.kermit.misc
  92577. Subject: Re: Kermit 3.14 and Winsock
  92578. Date: 17 Feb 1995 19:03:34 GMT
  92579. Organization: Computing Service, University of Sussex, UK
  92580. Lines: 22
  92581. Message-Id: <3i2ru6$4ua@infa.central.susx.ac.uk>
  92582. References: <1995Feb15.164229.6472@unvax.union.edu>
  92583. Nntp-Posting-Host: solx2.central.susx.ac.uk
  92584. X-Newsreader: TIN [version 1.2 PL2]
  92585. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  92586.  
  92587. Mary P. McKnight (mcknighm@unvax.union.edu) wrote:
  92588. % I have been attempting to get Kermit 3.14 (using TCP/IP) to work thru
  92589. % Windows 3.1.  I can get it to work outside of Windows without any
  92590. % problems.  However, from within Windows I get the following error
  92591. % message:
  92592.  
  92593. You should read the documentation that comes with Kermit in the
  92594. networks subdirectory. Basically, Kermit won't work over the same
  92595. stack as Trumpet Winsock at the same time. However, we have had good
  92596. results running the two over pktmux, but it's a bit hairy and I'm
  92597. sometimes amazed that it works at all. 
  92598.  
  92599. You can get pktmux from SimTel mirrors - it's got a whacking great
  92600. manual. (Its home si
  92601. e was ftp.cc.rl.ac.uk:/pub/pcsupp/network/pktmux
  92602. last time I looked.) 
  92603.  
  92604. Leila
  92605. -- 
  92606. Leila Burrell-Davis, Computing Service, University of Sussex, Brighton, UK
  92607. Tel:  +44 (0) 1273 678390            Fax:  +44 (0) 1273 678470
  92608. Email: L.Burrell-Davis@sussex.ac.uk
  92609. For PGP Public Key: finger leilabd@solx1.central.susx.ac.uk 
  92610.  
  92611. From news@columbia.edu Fri Feb 17 22:27:28 1995
  92612. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01548
  92613.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 21 Feb 1995 07:17:49 -0500
  92614. Received: by apakabar.cc.columbia.edu id AA01187
  92615.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 21 Feb 1995 07:17:48 -0500
  92616. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!news.mathworks.com!hookup!swrinde!howland.reston.ans.net!news.sprintlink.net!zebu.heurikon.com!uwvax!trappist.cs.wisc.edu!zakarian
  92617. From: zakarian@trappist.cs.wisc.edu (Armand Zakarian)
  92618. Newsgroups: comp.protocols.kermit.misc
  92619. Subject: MS Kermit and ICMPs
  92620. Date: 17 Feb 1995 22:27:28 GMT
  92621. Organization: U of Wisconsin CS Dept
  92622. Lines: 8
  92623. Distribution: usa
  92624. Message-Id: <3i37sg$qnj@spool.cs.wisc.edu>
  92625. Nntp-Posting-Host: trappist.cs.wisc.edu
  92626. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  92627.  
  92628. I think the MS Kermit documentation mentions that it should
  92629. respond to pings.  It doesn't seem to (MS Kermit 3.14 over SLIP).
  92630. Not only that, but Kermit reboots the machine when pinged
  92631. with a 1000 bytes packet. 
  92632.  
  92633. Is this supposed to work?  Just curious.
  92634. -- 
  92635. Armand Zakarian
  92636.  
  92637. From news@columbia.edu Tue Feb 21 18:49:53 1995
  92638. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23964
  92639.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 21 Feb 1995 13:54:44 -0500
  92640. Received: by apakabar.cc.columbia.edu id AA05516
  92641.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 21 Feb 1995 13:54:39 -0500
  92642. Path: news.columbia.edu!panix!news.mathworks.com!udel!news.sprintlink.net!howland.reston.ans.net!spool.mu.edu!vms.csd.mu.edu!5603LIUL
  92643. From: 5603liul@vmsa.csd.mu.edu
  92644. Newsgroups: comp.protocols.kermit.misc
  92645. Subject: How to hangup properly?
  92646. Date: 21 Feb 1995 18:49:53 GMT
  92647. Organization: Marquette University - Computer Services
  92648. Lines: 14
  92649. Message-Id: <0098C512.167BE437@vms.csd.mu.edu>
  92650. Reply-To: 5603liul@vmsa.csd.mu.edu
  92651. Nntp-Posting-Host: vmse.csd.mu.edu
  92652. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  92653.  
  92654. Dear netters:
  92655.  
  92656.     I use MS-kermit to dial out. MS-kermit is a great
  92657. communication software to use. But I have a little
  92658. problem with my setup. Each time, when I logout from
  92659. my host machine, my screen will be full of junk 
  92660. characters. I guess I didn't hangup properly.
  92661.  
  92662.     How should I setup my kermit to do the hangup?
  92663.  
  92664.     Thanks.
  92665.  
  92666.  
  92667. David
  92668.  
  92669. From news@columbia.edu Tue Feb 21 19:19:56 1995
  92670. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25424
  92671.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 21 Feb 1995 14:20:15 -0500
  92672. Received: by apakabar.cc.columbia.edu id AA08234
  92673.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 21 Feb 1995 14:20:10 -0500
  92674. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  92675. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  92676. Newsgroups: comp.protocols.kermit.misc
  92677. Subject: Re: How to hangup properly?
  92678. Date: 21 Feb 1995 19:19:56 GMT
  92679. Organization: Columbia University
  92680. Lines: 19
  92681. Message-Id: <3idecs$80b@apakabar.cc.columbia.edu>
  92682. References: <0098C512.167BE437@vms.csd.mu.edu>
  92683. Nntp-Posting-Host: watsun.cc.columbia.edu
  92684. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  92685.  
  92686. In article <0098C512.167BE437@vms.csd.mu.edu>,
  92687.  <5603liul@vms.csd.mu.edu> wrote:
  92688. >I use MS-kermit to dial out. MS-kermit is a great
  92689. >communication software to use. But I have a little
  92690. >problem with my setup. Each time, when I logout from
  92691. >my host machine, my screen will be full of junk 
  92692. >characters. I guess I didn't hangup properly.
  92693. >
  92694. On the contrary, it sounds as if you did hang up properly.
  92695. The burst of junk is typical behavior from modems when
  92696. the connection is hung up from the other end, which is
  92697. usually what happens when you log out from the remote
  92698. host or service.
  92699.  
  92700. In MS-DOS Kermit 3.14, you can also "set carrier on",
  92701. which should have the effect of popping you back to the
  92702. MS-Kermit> prompt as soon as carrier drops.
  92703.  
  92704. - Frank
  92705.  
  92706. From news@columbia.edu Fri Feb 17 15:46:54 1995
  92707. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07660
  92708.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 21 Feb 1995 17:13:37 -0500
  92709. Received: by apakabar.cc.columbia.edu id AA26673
  92710.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 21 Feb 1995 17:13:34 -0500
  92711. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  92712. From: jrd@cc.usu.edu (Joe Doupnik)
  92713. Newsgroups: comp.protocols.kermit.misc
  92714. Subject: Re: MS Kermit and ICMPs
  92715. Message-Id: <1995Feb17.214654.42091@cc.usu.edu>
  92716. Date: 17 Feb 95 21:46:54 MDT
  92717. References: <3i37sg$qnj@spool.cs.wisc.edu>
  92718. Distribution: usa
  92719. Organization: Utah State University
  92720. Lines: 37
  92721. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  92722.  
  92723. In article <3i37sg$qnj@spool.cs.wisc.edu>, zakarian@trappist.cs.wisc.edu (Armand Zakarian) writes:
  92724. > I think the MS Kermit documentation mentions that it should
  92725. > respond to pings.  It doesn't seem to (MS Kermit 3.14 over SLIP).
  92726. > Not only that, but Kermit reboots the machine when pinged
  92727. > with a 1000 bytes packet. 
  92728. > Is this supposed to work?  Just curious.
  92729. > -- 
  92730. > Armand Zakarian
  92731. ---------------
  92732.     MS-DOS Kermit v3.14 running on my desktop (jrd.usu.edu), as
  92733. pinged (pung?) across the local site via Ethernet. I have no ready
  92734. way of using SLIP, but I might caution that SLIP's inherent max
  92735. packet length is only 1000 bytes. Maybe your SLIP driver is not quite
  92736. what it should be?
  92737.     Joe D.
  92738. --------------
  92739. $ multinet ping /data=1000 jrd.usu.edu
  92740. PING JRD.USU.EDU (129.123.1.45): 1000 data bytes
  92741. 1008 bytes from 129.123.1.45: icmp_seq=0 time=11 ms
  92742. 1008 bytes from 129.123.1.45: icmp_seq=1 time=5 ms
  92743. 1008 bytes from 129.123.1.45: icmp_seq=2 time=6 ms
  92744. 1008 bytes from 129.123.1.45: icmp_seq=3 time=7 ms
  92745. 1008 bytes from 129.123.1.45: icmp_seq=4 time=6 ms
  92746. 1008 bytes from 129.123.1.45: icmp_seq=5 time=6 ms
  92747. 1008 bytes from 129.123.1.45: icmp_seq=6 time=7 ms
  92748. 1008 bytes from 129.123.1.45: icmp_seq=7 time=6 ms
  92749. 1008 bytes from 129.123.1.45: icmp_seq=8 time=6 ms
  92750. 1008 bytes from 129.123.1.45: icmp_seq=9 time=5 ms
  92751. 1008 bytes from 129.123.1.45: icmp_seq=10 time=5 ms
  92752. - Cancel -
  92753.  
  92754.  
  92755. ----JRD.USU.EDU PING Statistics----
  92756. 11 packets transmitted, 11 packets received, 0% packet loss
  92757. round-trip (ms)  min/avg/max = 5/6/11
  92758.  
  92759.  
  92760. From news@columbia.edu Fri Feb 17 15:52:02 1995
  92761. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07684
  92762.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 21 Feb 1995 17:13:42 -0500
  92763. Received: by apakabar.cc.columbia.edu id AA26690
  92764.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 21 Feb 1995 17:13:39 -0500
  92765. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  92766. From: jrd@cc.usu.edu (Joe Doupnik)
  92767. Newsgroups: comp.protocols.kermit.misc
  92768. Subject: Re: Ansi Emulation and MSK! PLEASE HELP!! PLEASE :)
  92769. Message-Id: <1995Feb17.215202.42092@cc.usu.edu>
  92770. Date: 17 Feb 95 21:52:02 MDT
  92771. References: <3i0qgo$3bb@newshost.fiu.edu> <1995Feb17.093632.42004@cc.usu.edu> <3i372u$mk8@newshost.fiu.edu>
  92772. Organization: Utah State University
  92773. Lines: 61
  92774. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  92775.  
  92776. In article <3i372u$mk8@newshost.fiu.edu>, michaell@serss0.fiu.edu (Mike R. Langevin) writes:
  92777. > Joe Doupnik (jrd@cc.usu.edu) wrote:
  92778. > : In article <3i0qgo$3bb@newshost.fiu.edu>, michaell@serss0.fiu.edu 
  92779. >          (Mike R. Langevin) writes:
  92780. > : > 
  92781. > : > 
  92782. > : > --
  92783. > : > Hi Great Kermit Guru's! I need some help, with what might be a bit simple 
  92784. > : > for you great wise ones! (oh, hail the great kermit guru's! :) 
  92785. > : > 
  92786. > : > I have found that kermit supports VT102 remote printing under ANSI. 
  92787. > : > However, the online program I am TELNETing to with kermit asks the remote 
  92788. > : > caller (aka Kermit) if it is VT102. If I set the term to VT102 the 
  92789. > : > program detects that it is an I am able to use it with remote printing but
  92790. > : > I don't receive the correct ANSI characters.  (aka where I should get a 
  92791. >     block
  92792. > : > i get a U with two dots above it, etc). However, if I set term to ANSI  I 
  92793. > : > get the right characters (aka blocks when im suppose to get blocks and 
  92794. > : > lines when i should get lines) but the program doesn't send the remote 
  92795. > : > print codes because it thinks I am a standard ANSI terminal with no 
  92796. > : > support for VT102 codes. The problem I face is I need to be able to 
  92797. > : > either see the proper ANSI characters in VT102 or I need to be able to 
  92798. > : > lie to the Online program and tell it I am in VT102 when Im really in 
  92799. > : > ANSI. I did see the SET Telnet Term-type and tryed setting it to VT102 
  92800. > : > but it didnt work. (perhaps i didnt do it right "SET TELNET TERM-TYPE 
  92801. >     VT102")
  92802. > : -------------
  92803. > :     You are twisting the wrong knob. What the other end is doing is
  92804. > : sending IBM PC Code Page glyphs yet you have the terminal emulation character
  92805. > : set of Latin1. SET TERM CHAR TRANSPARENT to go to the currently active Code
  92806. > : Page in the display adapter.
  92807. > :     These matters are explained in the user's manual, the book "Using
  92808. > : MS-DOS Kermit", details on the MSK Help screen.
  92809. > :     Joe D.
  92810. > --
  92811. > No, Unfortunatly, that isn't it. But it was close. I did read the Using 
  92812. > Ms-dos Kermit and that was the first (ok the third) thing I tried. I'm still 
  92813. > getting the wrong characters. But instead of U's with two dots Im getting 
  92814. > triangles and upside down U's and other neat (ok not so neat 
  92815. > characters)..I checked the code page on my PC and it is set to 437 and I 
  92816. > checked the code page on the PC running the online program it is also 437.
  92817. > Any other suggestions?
  92818. > Please help :)
  92819. -----------
  92820.     Ok, I have not the slightest idea of what the host is sending.
  92821. One more guess then two suggestions. The guess is the host is sending bytes
  92822. with the high bit set to a 7-bit terminal kind, and the high bits get
  92823. lost (yielding funny stuff from the first 32 bytes in the PC display
  92824. adapter Code Page).
  92825.     The suggestions are:
  92826.     Use a VT320 emulation, and if that does not work for you then
  92827.     Send me a session log with come added commentary on what the
  92828. screen ought to look like in places. Please uuencode because it's a
  92829. binary file, and send directly to me at jrd@cc.usu.edu. Details about
  92830. your end of interest would be useful too (what terminal kind during
  92831. the log, MSK version number, anything else you think is helpful).
  92832.     Joe D. 
  92833.  
  92834. From news@columbia.edu Sat Feb 18 16:18:29 1995
  92835. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10805
  92836.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 21 Feb 1995 18:08:57 -0500
  92837. Received: by apakabar.cc.columbia.edu id AA02395
  92838.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 21 Feb 1995 18:08:54 -0500
  92839. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!news.mathworks.com!news.alpha.net!pacifier!pacifier!not-for-mail
  92840. From: mikef@pacifier.com (Mike Freeman)
  92841. Newsgroups: comp.protocols.kermit.misc
  92842. Subject: Re: Using MS kermit with Open VMS kermit
  92843. Date: 18 Feb 1995 08:18:29 -0800
  92844. Organization: none
  92845. Lines: 30
  92846. Message-Id: <3i56kl$28k@pacifier.com>
  92847. References: <D3xF9q.8Ay@actcom.co.il> <1995Feb13.085147.41528@cc.usu.edu> <1995Feb15.001617.7251@ais.com>
  92848. Nntp-Posting-Host: pacifier.com
  92849. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  92850.  
  92851. In article <1995Feb15.001617.7251@ais.com>,  <bruce@ais.com> wrote:
  92852. >
  92853. >archive, either .OLB or .ZIP, first).  If you are transferring .OLB or
  92854. >.EXE files, be sure to use SET FILE TYPE IMAGE on the VAX end - C-Kermit
  92855. >doesn't have SET FILE TYPE FIXED and this is the closest equivalent.
  92856. >
  92857. I beg to differ.  On C-Kermit for Vax/VMS systems, a
  92858.  
  92859. SET FILE TYPE BINARY
  92860.  
  92861. command produces fixed-length-record files, just as a
  92862.  
  92863.  
  92864. SET FILE TYPE FIXED
  92865.  
  92866. does in Kermit-32.  Furthermore, the default record-length for the
  92867. fixed-length records produced by binary mode in C-Kermit is 512
  92868. bytes as it is for type "FIXED" in Kermit32.  This is what VMS
  92869. expects for .EXE files.
  92870.  
  92871. One thing I neglected to point out in my earlier post was kindly
  92872. pointed out by another gentleman:  Kermit-32's BINARY mode produces
  92873. variable-length-record files and one must use a program like
  92874. VAR2FIX (and perhaps then Joe Meadows's FILE utility) to produce
  92875. files acceptable to VMS.
  92876.  
  92877. -- 
  92878. Mike Freeman            |       Internet: mikef@pacifier.com
  92879. GEnie: M.FREEMAN11      |       Amateur Radio Callsign: K7UIJ
  92880. ... Virtue is its own punishment.
  92881.  
  92882. From news@columbia.edu Sat Feb 18 17:20:06 1995
  92883. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14648
  92884.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 21 Feb 1995 19:01:56 -0500
  92885. Received: by apakabar.cc.columbia.edu id AA07250
  92886.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 21 Feb 1995 19:01:54 -0500
  92887. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!news.mathworks.com!news.kei.com!nntp.et.byu.edu!netline-fddi.jpl.nasa.gov!nntp-server.caltech.edu!lbliao
  92888. From: lbliao@alumni.caltech.edu (lbliao)
  92889. Newsgroups: comp.protocols.kermit.misc
  92890. Subject: AUTOMATING KERMIT DOWNLOADING AND UPLOADING DURING NIGHT
  92891. Date: 18 Feb 1995 17:20:06 GMT
  92892. Organization: California Institute of Technology, Alumni Association
  92893. Lines: 14
  92894. Message-Id: <3i5a86$l81@gap.cco.caltech.edu>
  92895. Nntp-Posting-Host: alumni.caltech.edu
  92896. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  92897.  
  92898. Dear Netters,
  92899.  
  92900. I have an account that only has a quota of 1Meg. During the day I download
  92901. files into various directories in a directory structure. During the night
  92902. I want to write an automated script that will move various files to various
  92903. directories. In short I am lookig for script or looking for kermit commands
  92904. and example scripts that can do that. I also have a Z-modem. zs -y allows
  92905. transfer w/o going to the PC's zmodem and manually down-loading.
  92906.  
  92907. Please tell me how to do this.
  92908.  
  92909. Lily Liao
  92910.  
  92911.  
  92912.  
  92913. From news@columbia.edu Sun Feb 22 01:44:17 1995
  92914. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23191
  92915.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 21 Feb 1995 21:41:23 -0500
  92916. Received: by apakabar.cc.columbia.edu id AA20676
  92917.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 21 Feb 1995 21:41:21 -0500
  92918. Path: news.columbia.edu!panix!news.mathworks.com!news.duke.edu!godot.cc.duq.edu!hudson.lm.com!news.pop.psu.edu!psuvax1!news.ecn.bgu.edu!feenix.metronet.com!fohnix.metronet.com!not-for-mail
  92919. From: jhuber@fohnix.metronet.com (Joseph Huber)
  92920. Newsgroups: comp.protocols.kermit.misc
  92921. Subject: Re: ZMODEM VS KERMIT
  92922. Date: 21 Feb 1995 19:44:17 -0600
  92923. Organization: Texas Metronet Communications Services, Dallas TX
  92924. Lines: 10
  92925. Message-Id: <3ie4th$6ij@fohnix.metronet.com>
  92926. References: <3i83hi$omg@sirio.cineca.it> <1995Feb19.131317.42190@cc.usu.edu> <D4Bv29.Fnt@omen.COM>
  92927. Nntp-Posting-Host: fohnix.metronet.com
  92928. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  92929.  
  92930. In article <D4Bv29.Fnt@omen.COM> caf@omen.COM (Chuck Forsberg WA7KGX) writes:
  92931. >The FAQ Kermit author Joe D. recommends refers to the discredited
  92932. >Columbia Kermit News "True Life Benchmarks". 
  92933.  
  92934. Just how and by whom was "True Life Benchmarks" discredited?  
  92935.  
  92936. -- 
  92937. Joe Huber
  92938. jhuber@metronet.com
  92939. 817-557-3186
  92940.  
  92941. From news@columbia.edu Sat Feb 18 10:25:54 1995
  92942. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27429
  92943.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 21 Feb 1995 23:02:24 -0500
  92944. Received: by apakabar.cc.columbia.edu id AA26677
  92945.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 21 Feb 1995 23:02:22 -0500
  92946. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  92947. From: jrd@cc.usu.edu (Joe Doupnik)
  92948. Newsgroups: comp.protocols.kermit.misc
  92949. Subject: Re: MS Kermit and ICMPs
  92950. Message-Id: <1995Feb18.162554.42132@cc.usu.edu>
  92951. Date: 18 Feb 95 16:25:54 MDT
  92952. References: <3i37sg$qnj@spool.cs.wisc.edu> <1995Feb17.214654.42091@cc.usu.edu> <3i5fmh$gkr@spool.cs.wisc.edu>
  92953. Distribution: usa
  92954. Organization: Utah State University
  92955. Lines: 43
  92956. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  92957.  
  92958. In article <3i5fmh$gkr@spool.cs.wisc.edu>, zakarian@trappist.cs.wisc.edu (Armand Zakarian) writes:
  92959. > In article <1995Feb17.214654.42091@cc.usu.edu>,
  92960. > Joe Doupnik <jrd@cc.usu.edu> wrote:
  92961. >>In article <3i37sg$qnj@spool.cs.wisc.edu>, zakarian@trappist.cs.wisc.edu (Armand Zakarian) writes:
  92962. >>> I think the MS Kermit documentation mentions that it should
  92963. >>> respond to pings.  It doesn't seem to (MS Kermit 3.14 over SLIP).
  92964. >>> Not only that, but Kermit reboots the machine when pinged
  92965. >>> with a 1000 bytes packet. 
  92966. >>---------------
  92967. >>    MS-DOS Kermit v3.14 running on my desktop (jrd.usu.edu), as
  92968. >>pinged (pung?) across the local site via Ethernet. I have no ready
  92969. >>way of using SLIP, but I might caution that SLIP's inherent max
  92970. >>packet length is only 1000 bytes. Maybe your SLIP driver is not quite
  92971. >>what it should be?
  92972. >>    Joe D.
  92973. >>--------------
  92974. > [...]
  92975. > Happens with both slip8250 from the Kermit distribution and
  92976. > P. Tattam's slipper.   I just tried pinging with 500 byte 
  92977. > packets and machine locked hard with terrible sounds coming
  92978. > from the speaker.
  92979. > It's quite possible that something in my configuration/hardware
  92980. > is causing this behavior.  Anyone else running SLIP care to
  92981. > try it?
  92982. > BTW, are you sure about the 1000 byte packet length limit in
  92983. > SLIP.  It seems weird they wouldn't support ethernet-size
  92984. > packets.  And my term server says MTU is 1460 when entering
  92985. > SLIP mode.
  92986. --------------------
  92987.     The odds are improving that your machine has serious configuration
  92988. problems. Look for IRQ conflicts and overlap of i/o PORTs. Also ensure
  92989. that you do not ask MSK to open a real serial port because that can
  92990. clobber an existing driver.
  92991.     Yes, I am positive about SLIP's MTU. Not only that but 1460 is
  92992. not a proper MTU for full sized Ethernet packets; it is a proper largest
  92993. MSS (TCP Segment Size) however. For Ethernet MTU is 1500, the max number
  92994. of bytes in a DIX/BlueBook/Ethernet_II frame (those afflicted with 802.2
  92995. headers get less). SLIP MTU is 1000 (plus a few bytes best omitted).
  92996.     SLIP8250 in the Kermit distribution works. I helped write it.
  92997.     Joe D.
  92998.  
  92999. From news@columbia.edu Mon Feb 20 23:41:34 1995
  93000. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27568
  93001.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 21 Feb 1995 23:06:09 -0500
  93002. Received: by apakabar.cc.columbia.edu id AA27060
  93003.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 21 Feb 1995 23:06:07 -0500
  93004. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!vixen.cso.uiuc.edu!uwm.edu!msunews!harbinger.cc.monash.edu.au!news.cs.su.oz.au!metro!OzEmail!bprior
  93005. From: bprior@ozemail.com.au (Bruce Prior)
  93006. Newsgroups: comp.protocols.kermit.misc
  93007. Subject: AS/400 to Unix Dialup File Transfer
  93008. Date: 20 Feb 1995 23:41:34 GMT
  93009. Organization: OzEmail Pty Ltd - Australia
  93010. Lines: 23
  93011. Message-Id: <3ib9bf$ci7@oznet03.ozemail.com.au>
  93012. Nntp-Posting-Host: shell01.ozemail.com.au
  93013. X-Newsreader: TIN [version 1.2 PL2]
  93014. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  93015.  
  93016. [ Article crossposted from comp.protocols.ibm ]
  93017. [ Author was Bruce Prior ]
  93018. [ Posted on 19 Feb 1995 23:40:06 GMT ]
  93019.  
  93020. Can anyone please let me know of a cheap and simple way of implementing
  93021. dialup file transfer from an AS/400 to an AT&T GIS Unix system. The
  93022. central Unix box does NOT have SNA, APPC, LU6.2, etc, etc, but DOES have
  93023. Kermit, FTP (via SLIP/PPP terminal server), X.400, SNMP, UUCP, etc. The
  93024. AS/400 systems do NOT have a terminal server or a router, but some have
  93025. attached PCs. I know that AS/400 now comes with TCP/IP, and I also know
  93026. that the IBM implementation does not come with SLIP or PPP. I also know
  93027. that Kermit is not available for AS/400. Can someone set me straight on
  93028. this? 
  93029.  
  93030. The solution offered must be inexpensive (ie. less than say US $1000 per 
  93031. site over 5 sites.)
  93032.  
  93033. Please reply to the email address below.
  93034.  
  93035. Thanks in Advance, Paul Leopardi for Bruce Prior and Fergus Ryder
  93036. paull@sydney.dialix.oz.au
  93037. TIAS PO Box 387 Bondi Jn NSW 2022 Australia
  93038. Ph: +61-2-353-1000 Fax: +61-2-353-1009
  93039.  
  93040. From news@columbia.edu Wed Feb 22 04:45:39 1995
  93041. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02082
  93042.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 22 Feb 1995 00:17:48 -0500
  93043. Received: by apakabar.cc.columbia.edu id AA03008
  93044.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 22 Feb 1995 00:17:46 -0500
  93045. Newsgroups: comp.protocols.kermit.misc
  93046. Path: news.columbia.edu!panix!news.mathworks.com!uunet!olivea!charnel.ecst.csuchico.edu!psgrain!rainrgnews0!europa.com!bscott
  93047. From: bscott@europa.com (Benjamin J. Scott)
  93048. Subject: C-kermit Linux bug in thermometer
  93049. Message-Id: <D4Dx83.CKA@europa.com>
  93050. Sender: usenet@europa.com (Usenet News Poster Address)
  93051. Nntp-Posting-Host: thetics.europa.com
  93052. Organization: Europa |||| Portland, OR
  93053. X-Newsreader: TIN [version 1.2 PL2]
  93054. Date: Wed, 22 Feb 1995 04:45:39 GMT
  93055. Lines: 17
  93056. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  93057.  
  93058. Hi,
  93059. I have run C-Kermit 5A (190) from several different versions of Linux,
  93060. and have found an annoying bug. When I do file transfers using the full
  93061. screen gauge everything works fine until the transfers are done then the
  93062. screen scrolling locks up. I can ^Z out of kermit and run "reset" to get
  93063. the vidio back to normal but with things over-writing each other at the
  93064. bottom of the screen it is hard to see what I am doing :-) . My TERM is
  93065. set to "console" and I don't have any terminals hooked to the machine to
  93066. test other types.
  93067.  
  93068.      Thanx!
  93069.  
  93070.  
  93071. =*=*=*=*=*=*=*=*******************=========================*=*=*=*=*=*=*=*=
  93072. bscott@europa.com   *  It's always something!  *  Windoze95..96..97..98... 
  93073.                     |           -Gilda Radner  |  ...Coming Real Soon Now. 
  93074.  Linux ==>> :-)     *                          *    -LemmingWare inc. [tm]
  93075.  
  93076. From news@columbia.edu Sun Feb 19 01:40:00 1995
  93077. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03318
  93078.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 22 Feb 1995 00:41:31 -0500
  93079. Received: by apakabar.cc.columbia.edu id AA04568
  93080.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 22 Feb 1995 00:41:28 -0500
  93081. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!tymix.Tymnet.COM!tardis.Tymnet.COM!tardis.Tymnet.COM!not-for-mail
  93082. From: jms@tardis.Tymnet.COM (Joe Smith)
  93083. Newsgroups: comp.protocols.kermit.misc
  93084. Subject: Re: Sliding windows - only one is used?
  93085. Date: 18 Feb 1995 17:40:00 -0800
  93086. Organization: MCI Data Services, TYMNET Global Network Operations
  93087. Lines: 55
  93088. Message-Id: <3i67hg$a0d@tardis.Tymnet.COM>
  93089. References: <3hn07m$4dl@israel-info.datasrv.co.il>
  93090. Nntp-Posting-Host: tardis.tymnet.com
  93091. Summary: Sender sees 1.5 window slots in use, receiver sees 1 when going is good.
  93092. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  93093.  
  93094. In article <3hn07m$4dl@israel-info.datasrv.co.il> winter@zeus.datasrv.co.il (4th Dimension) writes:
  93095. >I'm using MS-Kermit 3.14, PL3 on my PC, talking to C-Kermit 5A(190) on the
  93096. >remote Sun. When I start MSK, I load the FAST macro to get maximum thruput.
  93097. >Transfer of data is pretty fast, except that I never see more than one window
  93098. >used out of the three.
  93099. >Is this a bug, a feature, or am I doing something wrong?
  93100.  
  93101. It means that everything is working properly.
  93102.  
  93103. I have used kermit on a networks where the round-trip delay was 3/4th of the
  93104. amount of time required to send a 960 byte packet at 9600 baud.  Watching the
  93105. lights I saw the following:
  93106.   1) RD light on solid for 1.0 seconds.
  93107.   2) SD light blips immediately after end of packet as ACK is sent.
  93108.   3) Both lights out for 0.75 seconds as ACK wends it way through network,
  93109.      eventually getting to the remote host, which immediately sends next
  93110.      packet, and that packet takes a significant amount of time to make
  93111.      its way all the way to my end.
  93112.  
  93113. The delay through the network was causing the thruput to be pretty bad.
  93114. Switching to 3000 byte packets helped, but not by much.  Without sliding
  93115. windows (or with window slots set to 1), kermit was still operating in
  93116. half-duplex mode.
  93117.  
  93118. Then I switched to a version of kermit that handled sliding windows.
  93119. Setting the number of window slots to be anything above 1 made all the
  93120. difference.  The receiving end saw a continuous stream of packets;
  93121. the RD light was on solid.  It reported only 1 window slot in use because
  93122. all the incoming packets had good checksums; it did not have to buffer up
  93123. any partial or out-of-order packets.
  93124.  
  93125. The sending end saw 1.75 window slots in use.  That is, it sent out the first
  93126. packet, and because sliding windows were in use, started sending out the
  93127. second packet even though the ACK for the first packet had not arrived yet.
  93128. About three quarters of the way through the second packet was when the ACK
  93129. did arrive.  When kermit got ready to send the third packet, it saw that the
  93130. first packet had been ACKed, the only one packet was outstanding waiting for
  93131. its ACK, and the window size was big enough to allow it to send out another
  93132. one.
  93133.  
  93134. If I were to try to run kermit between a machine in Europe and one in the US,
  93135. I would expect to see 3 or more window slots in use, as reported by the
  93136. sending kermit.  As long as the packets all arrived with good checksums, the
  93137. receiving kermit should say that it had only one window slot in use.
  93138.  
  93139. Summary: Setting the number of window slots to be greater than 1 at both
  93140. ends makes a big difference in transfer speed.  You should expect the
  93141. receiving kermit to report that only 1 of the window slots was actually
  93142. used.
  93143.     -Joe
  93144. -- 
  93145. Joe Smith     MCI Data and Information Services, TYMNET Operations Tech Support
  93146. <jms@tymnet.com> 2560 N 1st St, 5046/746, San Jose, CA 95131 (408)922-6220 v854
  93147. CA license plate: "POPJ P,"  36-bits forever! (4 Tymshare PDP-10s still going!)
  93148. Humorous disclaimer: "My Amiga 3000 speaks for me."
  93149.  
  93150. From news@columbia.edu Sun Feb 19 18:44:02 1995
  93151. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15237
  93152.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 22 Feb 1995 05:59:07 -0500
  93153. Received: by apakabar.cc.columbia.edu id AA18005
  93154.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 22 Feb 1995 05:59:07 -0500
  93155. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!math.ohio-state.edu!jussieu.fr!univ-lyon1.fr!serra.unipi.it!sirio.cineca.it!gopher
  93156. From: TREVISANELLO@UDUNIV.CC.UNIUD.IT (TREVISANELLO ARRIGO)
  93157. Newsgroups: comp.protocols.kermit.misc
  93158. Subject: ZMODEM VS KERMIT
  93159. Date: 19 Feb 1995 18:44:02 GMT
  93160. Organization: UNIVERSITY OF UDINE (ITALY) - COMPUTER CENTER
  93161. Lines: 4
  93162. Distribution: world
  93163. Message-Id: <3i83hi$omg@sirio.cineca.it>
  93164. Nntp-Posting-Host: uduniv.cc.uniud.it
  93165. X-News-Reader: VMS NEWS 1.24
  93166. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  93167.  
  93168. j'm connected with university trough my modem and telephon line. The only way
  93169. to exchange file with the university computer ( openVMS) is kermit, that is
  93170. very slow. How can i make a fast connection? Is it possibile to install zmodem
  93171. on openVMS and how?  Thanks Arrigo
  93172.  
  93173. From news@columbia.edu Tue Feb 21 20:19:05 1995
  93174. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10363
  93175.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 22 Feb 1995 07:04:33 -0500
  93176. Received: by apakabar.cc.columbia.edu id AA03423
  93177.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 22 Feb 1995 07:04:32 -0500
  93178. Path: news.columbia.edu!panix!news.mathworks.com!hookup!swrinde!pipex!sunic!news.funet.fi!zippo.uwasa.fi!uwasa.fi!ts
  93179. From: ts@uwasa.fi (Timo Salmi)
  93180. Newsgroups: comp.protocols.kermit.misc
  93181. Subject: Re: Latin1 strife for Finnish 8-bit emulation
  93182. Date: 21 Feb 1995 20:19:05 GMT
  93183. Organization: University of Vaasa
  93184. Lines: 34
  93185. Distribution: world
  93186. Message-Id: <3idhrp$9ov@zippo.uwasa.fi>
  93187. References: <3i6sre$cpi@zippo.uwasa.fi> <3ia59h$m9p@kvarkki.ee.tut.fi>
  93188. Nntp-Posting-Host: uwasa.fi
  93189. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  93190.  
  93191. In article <3ia59h$m9p@kvarkki.ee.tut.fi> kaukasoi@ee.tut.fi (Kaukasoina Petri) writes:
  93192. :Timo Salmi <ts@uwasa.fi> wrote:
  93193. :>set terminal bytesize 8-bit
  93194. :>set terminal character-set latin1
  93195. :
  93196. :These two lines are all you need to use ISO Latin 8859-1. Maybe you
  93197. :could elaborate your extra translations?
  93198.  
  93199. Have you actually tried just these with MsKermit 3.14 from an MS-DOS
  93200. PC over a modem connection to a Unix host?  Likewise, have you
  93201. actually tried to edit a 8-bit ascii file with MicroEMACS over that
  93202. connection?
  93203.  
  93204. :Your script is full of strange translations without explanation. For
  93205. :example you change the letter D (A-umlaut) to send control code 30 and
  93206. :then you want to see D when you get control code 30:
  93207. :
  93208. :>set key \142 \30                  ; Key A" sends dec 30
  93209. :>set translation input  \30 \142   ; Show ascii  30 as A"
  93210. :
  93211. :I am very interested to know why you need those translations.
  93212.  
  93213. Yes. So am I. SO AM I!!!  I am a bit frustrated of hearing how it
  93214. should work, but no one having set up the new Finnish convention
  93215. being able to demonstrate it work over the said conditions in actual
  93216. practice.
  93217.  
  93218.    All the best, Timo
  93219.  
  93220. ..................................................................
  93221. Prof. Timo Salmi      Co-moderator of comp.archives.msdos.announce
  93222. Moderating at garbo.uwasa.fi anonymous FTP archives  193.166.120.5
  93223. Department of Accounting and Business Finance; University of Vaasa
  93224. Internet: ts@uwasa.fi   BBS +(358)-61-3170972; FIN-65101,  Finland
  93225.  
  93226. From news@columbia.edu Mon Feb 20 23:32:43 1995
  93227. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22540
  93228.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 22 Feb 1995 08:53:50 -0500
  93229. Received: by apakabar.cc.columbia.edu id AA09110
  93230.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 22 Feb 1995 08:53:48 -0500
  93231. Path: news.columbia.edu!sol.ctr.columbia.edu!usenet.ucs.indiana.edu!vixen.cso.uiuc.edu!uwm.edu!news.alpha.net!news.mathworks.com!newshost.marcam.com!news.kei.com!simtel!vtc.tacom.army.mil!news1.oakland.edu!rcsuna.gmr.com!hobbes.tad.eds.com!maverick.tad.eds.com!news-admin@tad.eds.com
  93232. From: rlemire@csd.can.eds.com (Robert Lemire)
  93233. Newsgroups: comp.protocols.kermit.misc
  93234. Subject: ioctl causes side affects with hp-ux x29server
  93235. Date: 20 Feb 1995 23:32:43 GMT
  93236. Organization: EDS of Canada
  93237. Lines: 20
  93238. Message-Id: <3ib8qr$2qe@maverick.tad.eds.com>
  93239. Nntp-Posting-Host: boswg09.mtl.can.eds.com
  93240. X-Newsreader: WinVN 0.91.3
  93241. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  93242.  
  93243. We use kermit to transfer files from PC to hp-ux using the x.25 network.
  93244. When the PC accesses hp-ux it instructs kermit to enter server mode. 
  93245. It is at this point that kermit issues ioctl() calls which has the affect 
  93246. of generating a command to the PAD.  Set PAD parameter 3 to 127, forward
  93247. packets on ALL characters.  We would like to keep our setting of 2, which
  93248. forwards only on reception of <cr>.  The x.25 support is provide by hp.
  93249. I have been told this is generated by the command "stty -icanon".  I 
  93250. do not know which ioctl() appears to be generating this.
  93251.  
  93252. 1) I would like to know which ioctl() call is generating this?  We have
  93253. traced it from the x.25 side and it appears to be the second or third 
  93254. TCSETA ioctl() call.
  93255.  
  93256. 2) I am trying to test this theory out in a little C test program ( get 
  93257. pty, call ioctl ) but cannot get results since I have not programmed 
  93258. down to the unix device level.  A little skeleton program would be very 
  93259. appreciated.
  93260.  
  93261.  
  93262. thanks a million...
  93263.  
  93264. From news@columbia.edu Sun Feb 19 09:59:53 1995
  93265. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24615
  93266.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 22 Feb 1995 09:26:26 -0500
  93267. Received: by apakabar.cc.columbia.edu id AA12138
  93268.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 22 Feb 1995 09:26:22 -0500
  93269. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!news.intercon.com!udel!news.mathworks.com!newshost.marcam.com!charnel.ecst.csuchico.edu!psgrain!rainrgnews0!news.teleport.com!news.teleport.com!not-for-mail
  93270. From: sysone@teleport.com (FIGHT THE POWER)
  93271. Newsgroups: comp.protocols.kermit.misc
  93272. Subject: IBM 3278 to UNIX via Kermit...?
  93273. Date: 19 Feb 1995 01:59:53 -0800
  93274. Organization: Teleport - Portland's Public Access (503) 220-1016
  93275. Lines: 16
  93276. Message-Id: <3i74qp$no0@linda.teleport.com>
  93277. Nntp-Posting-Host: linda.teleport.com
  93278. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  93279.  
  93280.     Greetings to the Kermit community. I am seeking advice
  93281. regarding accessing a UNIX (FreeBSD specifically) system from an
  93282. IBM 3278 system via a telnet-type connection. I know virtually
  93283. nothing of the logistics regarding this type of connection but I
  93284. _am_ aware of the problems of full-screen buffering vs.
  93285. character-at-a-time common to IBM <-> other-system connections.
  93286. Does there exist a Kermit flavor for the IBM which can assist in
  93287. connecting? Pointers to a relevant Kermit and document(s) would
  93288. be most appreciated. Thank you.
  93289.     Reply here or via email to <sysone@teleport.com>
  93290.     Signed, Another Happy MSKermit User :-)
  93291. -- 
  93292. The worst sin towards our fellow creatures is not to hate them,
  93293. but to be indifferent to them; thats the essence of inhumanity.
  93294. - Bernard Shaw, _The Devil's Disciple_, 1897. {Finger for PGP
  93295. key/info}  sysone@teleport.com  http://www.teleport.com/~sysone
  93296.  
  93297. From news@columbia.edu Wed Feb 22 11:59:20 1995
  93298. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27253
  93299.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 22 Feb 1995 10:03:14 -0500
  93300. Received: by apakabar.cc.columbia.edu id AA15026
  93301.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 22 Feb 1995 10:03:13 -0500
  93302. Newsgroups: comp.protocols.kermit.misc
  93303. Path: news.columbia.edu!panix!news.mathworks.com!uunet!omen!caf
  93304. From: caf@omen.COM (Chuck Forsberg WA7KGX)
  93305. Subject: Re: ZMODEM VS KERMIT
  93306. Organization: Omen Technology INC, Portland Rain Forest
  93307. Date: Wed, 22 Feb 1995 11:59:20 GMT
  93308. Message-Id: <D4EHAw.8MM@omen.COM>
  93309. References: <1995Feb19.131317.42190@cc.usu.edu> <D4Bv29.Fnt@omen.COM> <3ie4th$6ij@fohnix.metronet.com>
  93310. Lines: 15
  93311. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  93312.  
  93313. In article <3ie4th$6ij@fohnix.metronet.com> jhuber@fohnix.metronet.com (Joseph Huber) writes:
  93314. >In article <D4Bv29.Fnt@omen.COM> caf@omen.COM (Chuck Forsberg WA7KGX) writes:
  93315. >>The FAQ Kermit author Joe D. recommends refers to the discredited
  93316. >>Columbia Kermit News "True Life Benchmarks". 
  93317. >
  93318. >Just how and by whom was "True Life Benchmarks" discredited?  
  93319.  
  93320. Get knewstru.zip from ftp.cs.pdx.edu pub/zmodem and read it.
  93321. If you don't have FTP the file is also on TeleGodzilla.
  93322.  
  93323. -- 
  93324. Chuck Forsberg WA7KGX caf@omen.COM      503-621-3406 FAX:-3735
  93325.    Omen Technology Inc      "The High Reliability Software"
  93326. Author of YMODEM, ZMODEM, Professional-YAM, ZCOMM, GSZ and DSZ
  93327. TeleGodzilla BBS: 503-621-3746  FTP: ftp.cs.pdx.edu pub/zmodem
  93328.  
  93329. From news@columbia.edu Sun Feb 19 11:17:48 1995
  93330. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00861
  93331.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 22 Feb 1995 10:51:01 -0500
  93332. Received: by apakabar.cc.columbia.edu id AA19297
  93333.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 22 Feb 1995 10:50:57 -0500
  93334. Path: news.columbia.edu!sol.ctr.columbia.edu!s-cwis.unomaha.edu!news.mtholyoke.edu!nntp.et.byu.edu!news.kei.com!hookup!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  93335. From: jrd@cc.usu.edu (Joe Doupnik)
  93336. Newsgroups: comp.protocols.kermit.misc
  93337. Subject: Re: Re [2]: MS-Kermit 3.14 mode line won't stay off.
  93338. Message-Id: <1995Feb19.171748.42230@cc.usu.edu>
  93339. Date: 19 Feb 95 17:17:48 MDT
  93340. References: <3i4qtu$smk@ulowell.uml.edu> <3i6g5n$ju@apakabar.cc.columbia.edu> <3i8cg9$c6k@ulowell.uml.edu>
  93341. Followup-To: comp.protocols.kermit.misc
  93342. Distribution: usa
  93343. Organization: Utah State University
  93344. Lines: 44
  93345. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  93346.  
  93347. In article <3i8cg9$c6k@ulowell.uml.edu>, mbecker@neptune.cs.uml.edu (Mark Becker) writes:
  93348. > In article <3i6g5n$ju@apakabar.cc.columbia.edu> jrd@watsun.cc.columbia.edu
  93349. >   (Joe R. Doupnik) writes:
  93350. >>--------------
  93351. >>    The host is driving the cursor to line 25 explicity, by direct
  93352. >>addressing. That means the host now owns the status line. The cure is
  93353. >>to correct the host to not do that, as they say. MSK reports its screen
  93354. >>size via Telnet options upon request, and that size excludes the status
  93355. >>line.
  93356. > I don't have a VT-100 terminal to compare with.  Two questions:
  93357. >  a) Does the VT-100 have a 25th line?
  93358.  
  93359.     Yes, it's status line.
  93360.  
  93361. >  b) If (a) == "Yes" then does that line scroll up with the rest of them if the
  93362. >     cursor is directed there?  Or does the cursor 'stick' to the 25th line?
  93363.     
  93364.     No, the status line is never part of the rest of the screen.
  93365.     May I direct you to cryptic doc file MSVIBM.VT, copy in kermit/a
  93366.     on watsun.cc.columbia.edu. Compare what the host sends (LOG
  93367.     SESSION) with that doc.
  93368.     
  93369.     Joe D.
  93370.  
  93371. >> So I think you may have to dig into your host's termcap/terminfo
  93372. >> material to discover the error there.
  93373. > I did try setting up a TERMCAP environment variable (the troublesome machine
  93374. > is a dual Alpha running OSF/1) but not all software seems to acknowledge that.
  93375. > Before I dig deeper into things (like terminfo and /etc/termcap and whatever
  93376. > else I have to fix for this), I'd like to know about (a) and (b) above.
  93377. >>    Joe D.
  93378. >>
  93379. > Thanks for your time -
  93380. > Mark
  93381. > +----------------------------------------+--------------------------+
  93382. > | Mark Becker    <mbecker@cs.uml.edu>     | #include <std.disclaimer>|
  93383. > +----------------------------------------+--------------------------+
  93384.  
  93385. From news@columbia.edu Sun Feb 19 11:23:19 1995
  93386. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00939
  93387.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 22 Feb 1995 10:51:30 -0500
  93388. Received: by apakabar.cc.columbia.edu id AA19349
  93389.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 22 Feb 1995 10:51:28 -0500
  93390. Path: news.columbia.edu!sol.ctr.columbia.edu!s-cwis.unomaha.edu!news.mtholyoke.edu!nntp.et.byu.edu!news.kei.com!hookup!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  93391. From: jrd@cc.usu.edu (Joe Doupnik)
  93392. Newsgroups: comp.protocols.kermit.misc
  93393. Subject: Re: binary file conversion
  93394. Message-Id: <1995Feb19.172319.42231@cc.usu.edu>
  93395. Date: 19 Feb 95 17:23:19 MDT
  93396. References: <3i6eog$44p@newstand.syr.edu> <1995Feb19.130559.42187@cc.usu.edu> <3i8bh1$pji@newstand.syr.edu>
  93397. Organization: Utah State University
  93398. Lines: 63
  93399. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  93400.  
  93401. In article <3i8bh1$pji@newstand.syr.edu>, ejrasiel@forbin.syr.edu (Ethan J. Rasiel) writes:
  93402. > In article <1995Feb19.130559.42187@cc.usu.edu>,
  93403. > Joe Doupnik <jrd@cc.usu.edu> wrote:
  93404. >>In article <3i6eog$44p@newstand.syr.edu>, ejrasiel@forbin.syr.edu (Ethan J. Rasiel) writes:
  93405. >>> Some time ago I downloaded several .zip files from an ftp site that,
  93406. >>> upon examination, were in some sort of modified format.  It seemed to
  93407. >>> be something akin to uuencode.  I posted to several newsgroups trying
  93408. >>> to find out how to convert these files back to normal, and received a
  93409. >>> reply indicating that the files were in kermit format.  Can someone
  93410. >>> tell me how to convert these files, using either c-kermit or
  93411. >>> pc-kermit?  I have examined the documentation and find no reference to
  93412. >>> this encoding mechanism.  
  93413. >>> 
  93414. >>> Following is an example header:
  93415. >>> 
  93416. >>> This file is in BINARY format, created by ROBINTON at 29-JAN-1995
  93417. >>> 16:35:24.
  93418. >>> 155061 bytes.  Checksum = 14EE XCRC = 8AFA CRC16 = E51E.
  93419. >>> [*BINARY*128]
  93420. >>> PK^C^D^T`^B`^H`^!~+w^]~G?)i^=;``%T~
  93421. >>> ``^H```COCO.DOC~,^={s^ZK%V~g}D~p^]2~X%I~6t^G
  93422. >>> !^I~I~>~6z{~"^Q
  93423. >>> %[~1^Dj@~v~ux^T3^I$~"ZE^U]YH~&~7~w~;o%^WVV^I~]~>~]~3%N~0-AU>O%^~
  93424. >>> g
  93425. >>> 
  93426. >>> 
  93427. >>> I would prefer to do this locally, ie, without actually transferring
  93428. >>> the files from one place to another.  I have already done that, and
  93429. >>> have copes of the files both on unix and dos boxes.
  93430. >>> 
  93431. >>> Thanks for any assistance.
  93432. >>> 
  93433. >>> Ethan
  93434. >>------------
  93435. >>    That's nothing to do with Kermit. PK looks rather like Phil Katz,
  93436. >>of PKZIP fame. 
  93437. >>    Joe D.
  93438. > It has the PK header because it was originally a zip file.  What has
  93439. > happened is that all the 8 bit characters were converted to 7 bit
  93440. > characters, and all the 7 bit characters were left alone.  Some else
  93441. > sent me email suggesting that this is something kermit does to send 8
  93442. > bit files over a 7 bit connection.  It might not have anything to do
  93443. > with kermit, but at least 1 person thought it did, so I posted the
  93444. > question to this group.  Here is the email I got, reprinted without
  93445. > persmission:
  93446. >>The file looks to be encoded according to kermit's rules, although kermit
  93447. >>would normally decode.  ^ means exclusive or with X'40' and ' means
  93448. >>add X'80'.  There are special rules for encoding ^ and ' and there may be
  93449. >>repeat count codes as well.  It's not an obvious code for storing files,
  93450. >>though.
  93451. > Ethan
  93452. -----------------
  93453.     Those aren't the methods of the Kermit protocol, and there just
  93454. isn't a way of seeing the internal encoding unless the receiving Kermit
  93455. is badly broken (the capabilities negotiation failed and things are
  93456. misunderstood on both ends).
  93457.     I don't know what else to suggest, aside from the obvious of
  93458. trying to get a clean copy of the original file. 
  93459.     Joe D.
  93460.  
  93461. From news@columbia.edu Wed Feb 22 16:40:21 1995
  93462. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09448
  93463.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 22 Feb 1995 12:37:43 -0500
  93464. Received: by apakabar.cc.columbia.edu id AA29532
  93465.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 22 Feb 1995 12:37:38 -0500
  93466. Path: news.columbia.edu!panix!news.mathworks.com!newshost.marcam.com!charnel.ecst.csuchico.edu!olivea!nntp.msstate.edu!nntp.memphis.edu!stim.stim.tec.tn.us!ceddlemon
  93467. Newsgroups: comp.protocols.kermit.misc
  93468. Subject: Re: Using K 3.14 with Windows 3.1
  93469. Message-Id: <1995Feb22.104021.1@stim.stim.tec.tn.us>
  93470. From: ceddlemon@stim.stim.tec.tn.us
  93471. Date: 22 Feb 95 10:40:21 -0600
  93472. References: <21FEB95.19484729@shrsys.hslc.org>
  93473. Nntp-Posting-Host: tecvax.stim.tec.tn.us
  93474. Lines: 34
  93475. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  93476.  
  93477. In article <21FEB95.19484729@shrsys.hslc.org>, gormley@shrsys.hslc.org writes:
  93478. > I'm trying to use v 3.14 of Kermit, calling it from an icon in MS-Windows 3.1.
  93479. > Each time I attempt to do so, I get a 40 character screen, and can't seem to
  93480. > change it back to 80 column.
  93481.  
  93482. ... can't comment on this.
  93483. > I've followed all the instructions in the 2nd edition of USING MS-KERMIT, but
  93484. > that only covers up to Windows 3.0.  Kermit runs properly if I click on the
  93485. > MS-DOS icon, change to the Kermit directory, and execute the program at that
  93486. > point.
  93487.  
  93488. Just a thought here ... use the PIF editor and see if the "initial" or 
  93489. "startup" directory is set to be in the same directory where you have 
  93490. KERMIT installed.  I think I had to set mine at C:\KERMIT to get it to 
  93491. startup up in Windows correctly.  
  93492.  
  93493. There may be an environmental variable that needs setting to take care of this 
  93494. on bootup.  ie. something like: SET KERMIT=C:\KERMIT      
  93495.  
  93496. Hmmmm ... I'll take a look at the KERMIT books and DOCs this weekend.  
  93497.  
  93498. <snip> 
  93499.  
  93500. > I'm running a 386 with 4MB RAM.  Program Manager says I'm running in 386
  93501. > enhanced mode.
  93502.  
  93503. I started with this setup ... a bit sluggish at times ... but certainly 
  93504. workable.  
  93505.  
  93506. Hope this helps!
  93507.  
  93508. Charles   ceddlemon@stim.tec.tn.us
  93509.  
  93510. From news@columbia.edu Mon Feb 20 01:53:46 1995
  93511. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10159
  93512.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 22 Feb 1995 12:47:12 -0500
  93513. Received: by apakabar.cc.columbia.edu id AA00690
  93514.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 22 Feb 1995 12:47:07 -0500
  93515. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!in1.uu.net!news.mathworks.com!news.kei.com!travelers.mail.cornell.edu!newstand.syr.edu!forbin.syr.edu!ejrasiel
  93516. From: ejrasiel@forbin.syr.edu (Ethan J. Rasiel)
  93517. Newsgroups: comp.protocols.kermit.misc
  93518. Subject: Re: binary file conversion
  93519. Date: 20 Feb 1995 01:53:46 GMT
  93520. Organization: Syracuse University
  93521. Lines: 44
  93522. Message-Id: <3i8sna$3rk@newstand.syr.edu>
  93523. References: <3i6eog$44p@newstand.syr.edu> <1995Feb19.130559.42187@cc.usu.edu> <3i8bh1$pji@newstand.syr.edu> <1995Feb19.172319.42231@cc.usu.edu>
  93524. Nntp-Posting-Host: forbin.syr.edu
  93525. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  93526.  
  93527. In article <1995Feb19.172319.42231@cc.usu.edu>,
  93528. Joe Doupnik <jrd@cc.usu.edu> wrote:
  93529.  
  93530. >    Those aren't the methods of the Kermit protocol, and there just
  93531. >isn't a way of seeing the internal encoding unless the receiving Kermit
  93532. >is badly broken (the capabilities negotiation failed and things are
  93533. >misunderstood on both ends).
  93534. >    I don't know what else to suggest, aside from the obvious of
  93535. >trying to get a clean copy of the original file. 
  93536. >    Joe D.
  93537.  
  93538.  
  93539. Hmmm, I guess I'm barking up the wrong tree then.  The thing is, files
  93540. of this type have popped up occasionally on different ftp sites,
  93541. uploaded by different people.  So I'm lead to believe that this is not
  93542. the result of something going wrong with software, but rather human
  93543. error in encoding a file when it was not necessary.  In every case I
  93544. have tried to contact the uploader, but never have I succeeded.  
  93545.  
  93546. If this file wasn't produced by kermit, the question remains: what
  93547. did?  I've checked the comp.compression faq, the only faq I could
  93548. think of that could be relevent.  I have also downloaded every decoder
  93549. I could fine but none works.  I wonder if this might have been
  93550. produced on a different architechture than pc entirely.  Perhaps
  93551. macintosh, or a vax or somesuch.
  93552.  
  93553. Here again is an example header, just in case someone missed it in a
  93554. previous post.  Any ideas out there before I cash in my chips and go
  93555. home?  This might be the first time I could not figure out a computer
  93556. related question like this, with the resources of the net behind me...
  93557.  
  93558. This file is in BINARY format, created by MORGANIS at 14-FEB-1995
  93559. 18:28:40.10336
  93560. 854 bytes.  Checksum = 3524 XCRC = 5291 CRC16 = 32D5.
  93561. [*BINARY*128]PK
  93562. ^C^D^T`^B`^H`~E^QG^^%T.~=~u%D^Q^A`%R^S^A`^I```DEARJ.EXE^L%[%I?~S%O^_~G?;l3~L~\~W
  93563. ~L~M07r~_%V;~g%X~d&W^R^[*~w~\C^HQ~tutH^R%R~&Cn^R~e~*%PJ%R>%Z%D$%U~l~w~{^W~^~o~G~
  93564. c~ux~?%^%O~g~[~Y~7^\R^H``^T^H~cd~3~!~"%M^\`~@^M%<~C^VA^A~`^J%T~Mvw~1%F`%P^L^T`~
  93565.  
  93566.  
  93567. Thanks again...
  93568.  
  93569. Ethan
  93570.  
  93571.  
  93572. From news@columbia.edu Wed Feb 22 18:44:53 1995
  93573. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13751
  93574.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 22 Feb 1995 13:45:10 -0500
  93575. Received: by apakabar.cc.columbia.edu id AA06279
  93576.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 22 Feb 1995 13:45:08 -0500
  93577. Path: news.columbia.edu!watsun.cc.columbia.edu!pepmnt
  93578. From: pepmnt@watsun.cc.columbia.edu (John Chandler)
  93579. Newsgroups: comp.protocols.kermit.misc
  93580. Subject: Re: IBM 3278 to UNIX via Kermit...?
  93581. Date: 22 Feb 1995 18:44:53 GMT
  93582. Organization: Columbia University
  93583. Lines: 12
  93584. Message-Id: <3ig0n5$62g@apakabar.cc.columbia.edu>
  93585. References: <3i74qp$no0@linda.teleport.com>
  93586. Nntp-Posting-Host: watsun.cc.columbia.edu
  93587. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  93588.  
  93589. It's not clear what you mean by "assist" in connecting to a Unix system.
  93590. If your IBM system has telnet capability at all, it should have a TELNET
  93591. command that does all you need to connect.  There is no way to avoid the
  93592. requirement that you hit the ENTER key in order to transmit something to
  93593. the Unix host, so what are you looking for?  Surely, you don't want to
  93594. have a "script" that automatically supplies the userid and password for
  93595. logging on (that's easy to do, but a big security risk)??  I suppose, if
  93596. you really wanted that, and were connecting to the IBM system from a PC
  93597. running Kermit as the terminal emulator, you could have a script in the
  93598. PC Kermit to do that sort of thing, but I presume you're after something
  93599. else...
  93600.                     John Chandler
  93601.  
  93602. From news@columbia.edu Sun Feb 19 15:19:51 1995
  93603. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23331
  93604.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 22 Feb 1995 16:03:53 -0500
  93605. Received: by apakabar.cc.columbia.edu id AA19448
  93606.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 22 Feb 1995 16:03:51 -0500
  93607. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  93608. From: jrd@cc.usu.edu (Joe Doupnik)
  93609. Newsgroups: comp.protocols.kermit.misc
  93610. Subject: Re: binary file conversion
  93611. Message-Id: <1995Feb19.211951.42247@cc.usu.edu>
  93612. Date: 19 Feb 95 21:19:51 MDT
  93613. References: <3i6eog$44p@newstand.syr.edu> <1995Feb19.130559.42187@cc.usu.edu> <3i8bh1$pji@newstand.syr.edu> <1995Feb19.172319.42231@cc.usu.edu> <3i8sna$3rk@newstand.syr.edu>
  93614. Organization: Utah State University
  93615. Lines: 51
  93616. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  93617.  
  93618. In article <3i8sna$3rk@newstand.syr.edu>, ejrasiel@forbin.syr.edu (Ethan J. Rasiel) writes:
  93619. > In article <1995Feb19.172319.42231@cc.usu.edu>,
  93620. > Joe Doupnik <jrd@cc.usu.edu> wrote:
  93621. >>    Those aren't the methods of the Kermit protocol, and there just
  93622. >>isn't a way of seeing the internal encoding unless the receiving Kermit
  93623. >>is badly broken (the capabilities negotiation failed and things are
  93624. >>misunderstood on both ends).
  93625. >>    I don't know what else to suggest, aside from the obvious of
  93626. >>trying to get a clean copy of the original file. 
  93627. >>    Joe D.
  93628. > Hmmm, I guess I'm barking up the wrong tree then.  The thing is, files
  93629. > of this type have popped up occasionally on different ftp sites,
  93630. > uploaded by different people.  So I'm lead to believe that this is not
  93631. > the result of something going wrong with software, but rather human
  93632. > error in encoding a file when it was not necessary.  In every case I
  93633. > have tried to contact the uploader, but never have I succeeded.  
  93634. > If this file wasn't produced by kermit, the question remains: what
  93635. > did?  I've checked the comp.compression faq, the only faq I could
  93636. > think of that could be relevent.  I have also downloaded every decoder
  93637. > I could fine but none works.  I wonder if this might have been
  93638. > produced on a different architechture than pc entirely.  Perhaps
  93639. > macintosh, or a vax or somesuch.
  93640. > Here again is an example header, just in case someone missed it in a
  93641. > previous post.  Any ideas out there before I cash in my chips and go
  93642. > home?  This might be the first time I could not figure out a computer
  93643. > related question like this, with the resources of the net behind me...
  93644. > This file is in BINARY format, created by MORGANIS at 14-FEB-1995
  93645. > 18:28:40.10336
  93646. > 854 bytes.  Checksum = 3524 XCRC = 5291 CRC16 = 32D5.
  93647. > [*BINARY*128]PK
  93648. > ^C^D^T`^B`^H`~E^QG^^%T.~=~u%D^Q^A`%R^S^A`^I```DEARJ.EXE^L%[%I?~S%O^_~G?;l3~L~\~W
  93649. > ~L~M07r~_%V;~g%X~d&W^R^[*~w~\C^HQ~tutH^R%R~&Cn^R~e~*%PJ%R>%Z%D$%U~l~w~{^W~^~o~G~
  93650. > c~ux~?%^%O~g~[~Y~7^\R^H``^T^H~cd~3~!~"%M^\`~@^M%<~C^VA^A~`^J%T~Mvw~1%F`%P^L^T`~
  93651. > Thanks again...
  93652. > Ethan
  93653. -----------
  93654.     I too tried to think of common compression/wrapper utilities which
  93655. would lead to this, and failed. But it finally dawned on me what happened:
  93656. someone MAILed the raw binary file and Email chopped the high bit plus
  93657. inflicting goodness knows what other damage. It's a common mistake by 
  93658. beginners. Point the people at uuencode programs for use with Email.
  93659.     Joe D.
  93660.  
  93661. From news@columbia.edu Tue Feb 21 19:35:04 1995
  93662. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08797
  93663.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 22 Feb 1995 20:27:30 -0500
  93664. Received: by apakabar.cc.columbia.edu id AA15546
  93665.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 22 Feb 1995 20:27:28 -0500
  93666. Newsgroups: comp.protocols.kermit.misc
  93667. Path: news.columbia.edu!sol.ctr.columbia.edu!hamblin.math.byu.edu!news.byu.edu!nntp.et.byu.edu!news.mtholyoke.edu!uhog.mit.edu!news.mathworks.com!newshost.marcam.com!zip.eecs.umich.edu!caen!hearst.acc.Virginia.EDU!murdoch!fulton.seas.Virginia.EDU!esh6h
  93668. From: esh6h@fulton.seas.Virginia.EDU (Erik Hatcher)
  93669. Subject: Z-modem called from C-Kermit [VAX/VMS]??
  93670. X-Nntp-Posting-Host: fulton.seas.virginia.edu
  93671. Message-Id: <D4D7qH.4nw@murdoch.acc.Virginia.EDU>
  93672. Sender: usenet@murdoch.acc.Virginia.EDU
  93673. Organization: University of Virginia
  93674. Date: Tue, 21 Feb 1995 19:35:04 GMT
  93675. Lines: 28
  93676. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  93677.  
  93678. I know this is blasphemy!  I'm a Kermit fan
  93679. and I wouldn't be asking this if it wasn't necessary.
  93680.  
  93681. I need to transfer a file to a site using
  93682. Procomm Plus for Windows and I've tried with Kermit
  93683. and it doesn't seem to be working right.  It sends
  93684. about 48% of a 1.2meg file and then starts dying for
  93685. no apparent reason.
  93686.  
  93687. I would like to attempt to transfer using Z-modem,
  93688. but the Z-modem must be called from within Kermit.
  93689. I know this can be done but I can't seem to locate
  93690. a version of Z-modem that is designed to be called
  93691. this way.
  93692.  
  93693. I'm running on a VAX system running the VMS O/S.
  93694.  
  93695. If anyone has any suggestions on getting the regular
  93696. Kermit transfer to work, or on locating the
  93697. right Z-modem program, let me know.
  93698.  
  93699. Much thanks,
  93700.     Erik
  93701. --
  93702. Erik Hatcher                           + "But every now and then we just have
  93703. http://fulton.seas.virginia.edu/~esh6h |  to howl with the wolves." 
  93704.                                        |        - Werner Heisenberg
  93705. ---------------------------------------+-------------------------------------
  93706.  
  93707. From news@columbia.edu Mon Feb 20 16:39:26 1995
  93708. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10948
  93709.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 22 Feb 1995 21:25:51 -0500
  93710. Received: by apakabar.cc.columbia.edu id AA20075
  93711.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 22 Feb 1995 21:25:47 -0500
  93712. Path: news.columbia.edu!panix!news.mathworks.com!hookup!swrinde!howland.reston.ans.net!Germany.EU.net!netmbx.de!CNB.CompuNet.DE!zrz.TU-Berlin.DE!math.fu-berlin.de!fu-berlin.de!news.dfn.de!gs.dfn.de!fauern!news.unibw-muenchen.de!news
  93713. From: Peter Schmolck <p41bsmk@rz.unibw-muenchen.de>
  93714. Newsgroups: comp.protocols.kermit.misc
  93715. Subject: Re: Kermit and Windows 95
  93716. Date: 20 Feb 1995 16:39:26 GMT
  93717. Organization: University of the Federal Armed Forces Munich
  93718. Lines: 30
  93719. Message-Id: <3iagju$1sj@infosrv.rz.unibw-muenchen.de>
  93720. References: <3honer$ld4@lastactionhero.rs.itd.umich.edu>
  93721. Nntp-Posting-Host: peacockv.paed.unibw-muenchen.de
  93722. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  93723.  
  93724. James Klaas <jklaas@umich.edu> wrote:
  93725. >
  93726. > I read all the network stuff on how to run Kermit over a network in MS-DOS,
  93727. > but I really didn't find anything that could help me out.  Does anyone know if
  93728. > I can run Kermit using Windows 95 built in TCP/IP?  These are all virutal mode
  93729. > drivers and as such should be available in all DOS session run under Windows. 
  93730. > I just have no idea what to do to make Kermit find them.  Thanks for your help.
  93731.  
  93732. According to the following excerpt from: 
  93733.    ftp://newdev.harvard.edu/pub/ndis3pkt/readme 
  93734.  
  93735. "Ndis3pkt.386 is a Windows VxD (Virtual Device) which provides a
  93736. packet driver interface on top of NDIS version 3.  It allows packet
  93737. driver applications to be used in a WfWG 3.11 (and, theoretically,
  93738. Chicago) without loading any real-mode software components.  Ndis3pkt
  93739. ^^^^^^^^
  93740. performs all the VM (virtual machine) switching required to insure that
  93741. the correct application receives packet upcalls, i.e., it includes the
  93742. functionality of winpkt.  In addition, ndis3pkt is willing to deliver
  93743. the same packet type (and even the same packet) to multiple clients
  93744. in multiple VMs.  An optional tcp multiplexor allow several tcp stacks
  93745. to exist on the same IP address under certain circumstances."
  93746.  
  93747.    ftp://newdev.harvard.edu/pub/ndis3pkt/ndis3pkt.386
  93748.  
  93749. might do it. I have not yet installed it (under WfW 3.11), and would
  93750. be interested myself to hear from somebody who has installed it.
  93751.  
  93752.  
  93753.  
  93754. From news@columbia.edu Thu Feb 16 16:16:04 1995
  93755. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12049
  93756.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 22 Feb 1995 21:54:42 -0500
  93757. Received: by apakabar.cc.columbia.edu id AA22435
  93758.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 22 Feb 1995 21:54:38 -0500
  93759. Path: news.columbia.edu!panix!news.mathworks.com!news.alpha.net!uwm.edu!vixen.cso.uiuc.edu!howland.reston.ans.net!swrinde!ihnp4.ucsd.edu!dog.ee.lbl.gov!news.cs.utah.edu!cc.usu.edu!jrd
  93760. From: jrd@cc.usu.edu (Joe Doupnik)
  93761. Newsgroups: comp.protocols.kermit.misc
  93762. Subject: Re: C-Kermit & automatic receive?
  93763. Message-Id: <1995Feb16.221604.41980@cc.usu.edu>
  93764. Date: 16 Feb 95 22:16:04 MDT
  93765. References: <3hpvcj$53m@n.ruf.uni-freiburg.de> <1995Feb15.101840.41776@cc.usu.edu> <1995Feb16.093944.398@gems.vcu.edu>
  93766. Organization: Utah State University
  93767. Lines: 26
  93768. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  93769.  
  93770. In article <1995Feb16.093944.398@gems.vcu.edu>, agnew@gems.vcu.edu (Brainwave Surfer) writes:
  93771. > In article <1995Feb15.101840.41776@cc.usu.edu>, jrd@cc.usu.edu (Joe Doupnik) writes:
  93772. >> In article <3hpvcj$53m@n.ruf.uni-freiburg.de>, gartmann@immunbio.mpg.de (Christoph Gartmann) writes:
  93773. >>> Hello,
  93774. >>> 
  93775. >> --------------
  93776. >> UPDATE: THE APC ESCAPE SEQUENCE
  93777. >> 
  93778. >> The handling of the CSI ? 34 h / l escape sequences by the VT220 and VT320
  93779. >> terminal emulators changed between versions 3.12 and 3.13 in order to support
  93780. >> Hebrew VT220/320/420 terminal emulation, and because DEC software such as
  93781. >> DECforms expects to use these sequences to control screen-writing direction.
  93782. > Is there a way to disable this?  this seems to have broken our Wordperfect
  93783. > office screens on VMS, the screen write backwards, and we've been going
  93784. > nuts over this off and on...  Our secretaries have been using kermit 3.12,
  93785. > we switched over to a lan, and they all got 3.13 and we thought it was the
  93786. > lan.  it may be, but for a quickie look, can the disabling be done?
  93787. ---------------
  93788.     The way to solve the problem (since we can't disable something
  93789. which is no longer present in the code) is to put the new APC commands
  93790. into WordPerfect. Please do see the release docs for MSK 3.14 and the
  93791. WP/VMS docs.
  93792.     Joe D.
  93793.  
  93794. From news@columbia.edu Thu Feb 16 21:20:05 1995
  93795. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24514
  93796.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 23 Feb 1995 01:47:40 -0500
  93797. Received: by apakabar.cc.columbia.edu id AA09078
  93798.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 23 Feb 1995 01:47:39 -0500
  93799. Path: news.columbia.edu!panix!news.mathworks.com!uhog.mit.edu!news.mtholyoke.edu!hopper.acm.org!natinst.com!xenon.brooks.af.mil!usenet
  93800. From: perry@indium.brooks.af.mil (David Perry)
  93801. Newsgroups: comp.protocols.kermit.misc
  93802. Subject: Kermit identifier ESC sequence?
  93803. Date: 16 Feb 1995 21:20:05 GMT
  93804. Organization: Brooks AFB, TX
  93805. Lines: 20
  93806. Distribution: world
  93807. Message-Id: <3i0fi5$5dv@xenon.brooks.af.mil>
  93808. Reply-To: perry@indium.brooks.af.mil
  93809. Nntp-Posting-Host: xenon.brooks.af.mil
  93810. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  93811.  
  93812.  
  93813. This may sound like a strange questions, but with the DOS
  93814. version of Kermit (3.12), is there a way for a host to 
  93815. send an escape sequence to the Kermit emulator such that
  93816. Kermit will reply with some kind of string which indentifies
  93817. itself as being a Kermit emulator?
  93818.  
  93819. We have some programmers who are writing an application and
  93820. would like to query the connecting terminal to find out
  93821. if it is an emulator, and if so which emulator.
  93822.  
  93823. Thanks for any help.
  93824. ---
  93825. ---------------------------------------------------------------------
  93826. David W. Perry
  93827. Computer Sciences Corp.  
  93828. Brooks AFB, TX
  93829. perry@indium.brooks.af.mil
  93830.  
  93831.  
  93832.  
  93833. From news@columbia.edu Mon Feb 20 13:26:09 1995
  93834. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02155
  93835.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 23 Feb 1995 05:37:04 -0500
  93836. Received: by apakabar.cc.columbia.edu id AA17451
  93837.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 23 Feb 1995 05:37:02 -0500
  93838. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!panix!news.mathworks.com!news.alpha.net!uwm.edu!vixen.cso.uiuc.edu!howland.reston.ans.net!math.ohio-state.edu!jussieu.fr!oleane!pipex!sunic!news.funet.fi!news.cc.tut.fi!kvarkki.ee.tut.fi!not-for-mail
  93839. From: kaukasoi@ee.tut.fi (Kaukasoina Petri)
  93840. Newsgroups: comp.protocols.kermit.misc
  93841. Subject: Re: Latin1 strife for Finnish 8-bit emulation
  93842. Date: 20 Feb 1995 15:26:09 +0200
  93843. Organization: Tampere University of Technology
  93844. Lines: 31
  93845. Distribution: world
  93846. Message-Id: <3ia59h$m9p@kvarkki.ee.tut.fi>
  93847. References: <3i6sre$cpi@zippo.uwasa.fi>
  93848. Nntp-Posting-Host: kvarkki.ee.tut.fi
  93849. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  93850.  
  93851. Timo Salmi <ts@uwasa.fi> wrote:
  93852. >; Set on the new Finnish 8-bit terminal emulation which the Finnish
  93853. >; computer centres jointly decided to adopt in Finland.
  93854.  
  93855. Well, some universities decided to adopt ISO Latin 8859-1. It is a
  93856. character set for West European languages, not only Finnish.
  93857.  
  93858. >set terminal bytesize 8-bit
  93859. >set terminal character-set latin1
  93860.  
  93861. These two lines are all you need to use ISO Latin 8859-1. Maybe you
  93862. could elaborate your extra translations?
  93863.  
  93864. For example:
  93865.  
  93866. >;In my view the German u does not belong to the Finnish alphabet
  93867.  
  93868. No it does not, but it belongs to Latin1 and there are lots of
  93869. people in Finland who have letter u-umlaut in their name. Why do you
  93870. want to change it to tilde? Latin1 contains both characters.
  93871.  
  93872. Your script is full of strange translations without explanation. For
  93873. example you change the letter D (A-umlaut) to send control code 30 and
  93874. then you want to see D when you get control code 30:
  93875.  
  93876. >set key \142 \30                  ; Key A" sends dec 30
  93877. >set translation input  \30 \142   ; Show ascii  30 as A"
  93878.  
  93879. I am very interested to know why you need those translations.
  93880.  
  93881. -Petri
  93882.  
  93883. From news@columbia.edu Mon Feb 20 15:30:35 1995
  93884. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02534
  93885.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 23 Feb 1995 05:51:48 -0500
  93886. Received: by apakabar.cc.columbia.edu id AA18011
  93887.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 23 Feb 1995 05:51:47 -0500
  93888. Path: news.columbia.edu!sol.ctr.columbia.edu!usenet.ucs.indiana.edu!vixen.cso.uiuc.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  93889. From: jrd@cc.usu.edu (Joe Doupnik)
  93890. Newsgroups: comp.protocols.kermit.misc
  93891. Subject: Re: Ansi character emulation in VT102, PLEASE HELP.
  93892. Message-Id: <1995Feb20.213038.42385@cc.usu.edu>
  93893. Date: 20 Feb 95 21:30:35 MDT
  93894. References: <3ib1v3$8m2@newshost.fiu.edu>
  93895. Organization: Utah State University
  93896. Lines: 36
  93897. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  93898.  
  93899. In article <3ib1v3$8m2@newshost.fiu.edu>, michaell@solix.fiu.edu (Mike R. Langevin) writes:
  93900. > --
  93901. >     Hi there, I am trying to configure my VT102 emmulation to show 
  93902. > the same characters that are shown when I use ANSI emmulation. (Why might
  93903. > you ask).  Because the Host software I am connecting to sends out a 
  93904. > ESC[c (which i understand is VT102 "What do you support") In VT102 
  93905. > emmulation kermit responds with ESC[6c but in ANSI it does not. I need 
  93906. > kermit to respond with the ESC[6c but I also need kermit to display the 
  93907. > correct characters presently I am setting:
  93908. > SET TERM VT102
  93909. > SET TERM CHAR TRANSPARENT
  93910. >  
  93911. > and both the host and I are using CP 437. The host sends a character that 
  93912. > looks like a block and i get what looks like a upside-down U.  However 
  93913. > all is fine in ANSI mode. I checked all the settings in SHOW TERM and 
  93914. > SHOW COM and set all the VT102 settings to the same as they were in ANSI. 
  93915. > But still no avail. I still get the wrong characters..PLEASE HELP BEFORE 
  93916. > I GO BALD..
  93917. > mike@panther.fiu.edu
  93918. > or
  93919. > michaell@solix.fiu.edu
  93920. ----------
  93921.     VT100's are 7 bit devices, yet your host is sending an 8-bit code
  93922. to judge by your description (values are useful here rather than just visual
  93923. appearance, LOG SESSION to capture the binaries). VT220's and above support
  93924. 8-bit incoming bytes. Try SET TERM VT320.
  93925.     ESC [ c  is a request for device attributes, and the reponses
  93926. change according to terminal type. It's a DEC function. MS-DOS Kermit
  93927. responds the same as if it were a VT100. See manual text file msvibm.vt
  93928. for details on this item.
  93929.     Joe D.
  93930.  
  93931. From news@columbia.edu Mon Feb 20 15:41:06 1995
  93932. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02551
  93933.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 23 Feb 1995 05:52:11 -0500
  93934. Received: by apakabar.cc.columbia.edu id AA18027
  93935.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 23 Feb 1995 05:52:11 -0500
  93936. Path: news.columbia.edu!sol.ctr.columbia.edu!usenet.ucs.indiana.edu!vixen.cso.uiuc.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  93937. From: jrd@cc.usu.edu (Joe Doupnik)
  93938. Newsgroups: comp.protocols.kermit.misc
  93939. Subject: Re: MS Kermit and ICMPs
  93940. Message-Id: <1995Feb20.214106.42386@cc.usu.edu>
  93941. Date: 20 Feb 95 21:41:06 MDT
  93942. References: <3i37sg$qnj@spool.cs.wisc.edu> <1995Feb17.214654.42091@cc.usu.edu> <3i5fmh$gkr@spool.cs.wisc.edu> <1995Feb18.162554.42132@cc.usu.edu>
  93943. Distribution: usa
  93944. Organization: Utah State University
  93945. Lines: 71
  93946. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  93947.  
  93948. In article <1995Feb18.162554.42132@cc.usu.edu>, jrd@cc.usu.edu (Joe Doupnik) writes:
  93949. > In article <3i5fmh$gkr@spool.cs.wisc.edu>, zakarian@trappist.cs.wisc.edu (Armand Zakarian) writes:
  93950. >> In article <1995Feb17.214654.42091@cc.usu.edu>,
  93951. >> Joe Doupnik <jrd@cc.usu.edu> wrote:
  93952. >>>In article <3i37sg$qnj@spool.cs.wisc.edu>, zakarian@trappist.cs.wisc.edu (Armand Zakarian) writes:
  93953. >>>> I think the MS Kermit documentation mentions that it should
  93954. >>>> respond to pings.  It doesn't seem to (MS Kermit 3.14 over SLIP).
  93955. >>>> Not only that, but Kermit reboots the machine when pinged
  93956. >>>> with a 1000 bytes packet. 
  93957. >>>---------------
  93958. >>>    MS-DOS Kermit v3.14 running on my desktop (jrd.usu.edu), as
  93959. >>>pinged (pung?) across the local site via Ethernet. I have no ready
  93960. >>>way of using SLIP, but I might caution that SLIP's inherent max
  93961. >>>packet length is only 1000 bytes. Maybe your SLIP driver is not quite
  93962. >>>what it should be?
  93963. >>>    Joe D.
  93964. >>>--------------
  93965. >> [...]
  93966. >> 
  93967. >> Happens with both slip8250 from the Kermit distribution and
  93968. >> P. Tattam's slipper.   I just tried pinging with 500 byte 
  93969. >> packets and machine locked hard with terrible sounds coming
  93970. >> from the speaker.
  93971. >> 
  93972. >> It's quite possible that something in my configuration/hardware
  93973. >> is causing this behavior.  Anyone else running SLIP care to
  93974. >> try it?
  93975. >> 
  93976. >> BTW, are you sure about the 1000 byte packet length limit in
  93977. >> SLIP.  It seems weird they wouldn't support ethernet-size
  93978. >> packets.  And my term server says MTU is 1460 when entering
  93979. >> SLIP mode.
  93980. > --------------------
  93981. >     The odds are improving that your machine has serious configuration
  93982. > problems. Look for IRQ conflicts and overlap of i/o PORTs. Also ensure
  93983. > that you do not ask MSK to open a real serial port because that can
  93984. > clobber an existing driver.
  93985. >     Yes, I am positive about SLIP's MTU. Not only that but 1460 is
  93986. > not a proper MTU for full sized Ethernet packets; it is a proper largest
  93987. > MSS (TCP Segment Size) however. For Ethernet MTU is 1500, the max number
  93988. > of bytes in a DIX/BlueBook/Ethernet_II frame (those afflicted with 802.2
  93989. > headers get less). SLIP MTU is 1000 (plus a few bytes best omitted).
  93990. >     SLIP8250 in the Kermit distribution works. I helped write it.
  93991. >     Joe D.
  93992. --------------
  93993.     Adding more to my own message, but delayed sufficiently to escape
  93994. critisism for following up myself...
  93995.     Reproducing your situation here shows no Ping response. That's a
  93996. bug, a minor and nearly harmless one but still a bug. I'll try to see if
  93997. I can patch it, but no promises. The bug is SLIP lacks a MAC address
  93998. (Ethernet address kind of thing) and the code constantly checks for NULL
  93999. values. Well, one place did but should have checked for SLIP conditions
  94000. first, and that killed an outgoing ICMP reply for SLIP only. Working around
  94001. that item here is a test with ping ICMP packets small enough to fit into a 
  94002. SLIP frame:
  94003.  
  94004. $ ping -s slip.usu.edu 950
  94005. PING slip.usu.edu: 950 data bytes
  94006. 958 bytes from slip.usu.edu (129.123.240.2): icmp_seq=0. time=2160. ms
  94007. 958 bytes from slip.usu.edu (129.123.240.2): icmp_seq=1. time=2160. ms
  94008. 958 bytes from slip.usu.edu (129.123.240.2): icmp_seq=2. time=2170. ms
  94009.     etc
  94010.  
  94011.     I also did massive file transfers (massive in the sense of time,
  94012. file sizes only 250KB or so) back and forth with no trouble. This is
  94013. using SLIP8250.COM shipped with MSK, and using no flow control at all.
  94014. Thus the crashing and burning you experience is not seen here and again
  94015. I suggest that your machine's configuration probably needs attention.
  94016.     Also, I strongly recommend keeping MSS's and MTU's small enough
  94017. to avoid IP fragmentation; it's bad news.
  94018.     Joe D.
  94019.  
  94020. From news@columbia.edu Wed Feb 22 18:50:51 1995
  94021. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03976
  94022.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 23 Feb 1995 06:29:01 -0500
  94023. Received: by apakabar.cc.columbia.edu id AA25142
  94024.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 23 Feb 1995 06:28:58 -0500
  94025. Path: news.columbia.edu!sol.ctr.columbia.edu!newsxfer.itd.umich.edu!agate!dog.ee.lbl.gov!overload.lbl.gov!lll-winken.llnl.gov!fnnews.fnal.gov!uwm.edu!uwvax!trappist.cs.wisc.edu!zakarian
  94026. From: zakarian@trappist.cs.wisc.edu (Armand Zakarian)
  94027. Newsgroups: comp.protocols.kermit.misc
  94028. Subject: Re: Using K 3.14 with Windows 3.1
  94029. Date: 22 Feb 1995 18:50:51 GMT
  94030. Organization: U of Wisconsin CS Dept
  94031. Lines: 10
  94032. Message-Id: <3ig12b$s3f@spool.cs.wisc.edu>
  94033. References: <21FEB95.19484729@shrsys.hslc.org>
  94034. Nntp-Posting-Host: trappist.cs.wisc.edu
  94035. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  94036.  
  94037. In article <21FEB95.19484729@shrsys.hslc.org>, gormley@shrsys.hslc.org writes:
  94038. > I'm trying to use v 3.14 of Kermit, calling it from an icon in MS-Windows 3.1.
  94039. > Each time I attempt to do so, I get a 40 character screen, and can't seem to
  94040. > change it back to 80 column.
  94041.  
  94042.  
  94043. Try deleting every line that contains `kermit' from the dosapp.ini
  94044. file located in your Windows directory.
  94045. -- 
  94046. Armand Zakarian
  94047.  
  94048. From news@columbia.edu Mon Feb 20 21:35:31 1995
  94049. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07277
  94050.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 23 Feb 1995 07:55:10 -0500
  94051. Received: by apakabar.cc.columbia.edu id AA05158
  94052.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 23 Feb 1995 07:55:09 -0500
  94053. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!news.intercon.com!panix!news.mathworks.com!usenet.eel.ufl.edu!usenet.fiu.edu!isis.fiu.edu!solix!michaell
  94054. From: michaell@solix.fiu.edu (Mike R. Langevin)
  94055. Newsgroups: comp.protocols.kermit.misc
  94056. Subject: Ansi character emulation in VT102, PLEASE HELP.
  94057. Date: 20 Feb 1995 21:35:31 GMT
  94058. Organization: Florida International University
  94059. Lines: 29
  94060. Message-Id: <3ib1v3$8m2@newshost.fiu.edu>
  94061. Nntp-Posting-Host: solix-gw.fiu.edu
  94062. X-Newsreader: TIN [version 1.2 PL2]
  94063. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  94064.  
  94065.  
  94066.  
  94067. --
  94068.  
  94069.     Hi there, I am trying to configure my VT102 emmulation to show 
  94070. the same characters that are shown when I use ANSI emmulation. (Why might
  94071. you ask).  Because the Host software I am connecting to sends out a 
  94072. ESC[c (which i understand is VT102 "What do you support") In VT102 
  94073. emmulation kermit responds with ESC[6c but in ANSI it does not. I need 
  94074. kermit to respond with the ESC[6c but I also need kermit to display the 
  94075. correct characters presently I am setting:
  94076. SET TERM VT102
  94077. SET TERM CHAR TRANSPARENT
  94078.  
  94079. and both the host and I are using CP 437. The host sends a character that 
  94080. looks like a block and i get what looks like a upside-down U.  However 
  94081. all is fine in ANSI mode. I checked all the settings in SHOW TERM and 
  94082. SHOW COM and set all the VT102 settings to the same as they were in ANSI. 
  94083. But still no avail. I still get the wrong characters..PLEASE HELP BEFORE 
  94084. I GO BALD..
  94085.  
  94086.  
  94087. mike@panther.fiu.edu
  94088. or
  94089. michaell@solix.fiu.edu
  94090.  
  94091.  
  94092. Thanks a million and a half.
  94093.  
  94094.  
  94095. From news@columbia.edu Thu Feb 23 15:42:12 1995
  94096. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17745
  94097.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 23 Feb 1995 10:42:21 -0500
  94098. Received: by apakabar.cc.columbia.edu id AA17592
  94099.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 23 Feb 1995 10:42:20 -0500
  94100. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  94101. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  94102. Newsgroups: comp.protocols.kermit.misc
  94103. Subject: Re: Kermit identifier ESC sequence?
  94104. Date: 23 Feb 1995 15:42:12 GMT
  94105. Organization: Columbia University
  94106. Lines: 36
  94107. Message-Id: <3iiack$h5m@apakabar.cc.columbia.edu>
  94108. References: <3i0fi5$5dv@xenon.brooks.af.mil>
  94109. Nntp-Posting-Host: watsun.cc.columbia.edu
  94110. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  94111.  
  94112. In article <3i0fi5$5dv@xenon.brooks.af.mil>,
  94113. David Perry <perry@indium.brooks.af.mil> wrote:
  94114. >
  94115. >This may sound like a strange questions, but with the DOS
  94116. >version of Kermit (3.12), is there a way for a host to 
  94117. >send an escape sequence to the Kermit emulator such that
  94118. >Kermit will reply with some kind of string which indentifies
  94119. >itself as being a Kermit emulator?
  94120. >
  94121. No.
  94122.  
  94123. >We have some programmers who are writing an application and
  94124. >would like to query the connecting terminal to find out
  94125. >if it is an emulator, and if so which emulator.
  94126. >
  94127. We have added this capability to later versions of Kermit.
  94128. Version 3.14 is the first one in which it is fully
  94129. implemented.  If:
  94130.  
  94131.  (1) The host sends the ENQ (Ctrl-E) character, AND
  94132.  
  94133.  (2) Kermit has been told to "set terminal answerback on",
  94134.  
  94135. THEN Kermit will respond with an identification string
  94136. that looks like this:
  94137.  
  94138.   MS-DOS-KERMIT 314_VT320<CR>
  94139.  
  94140. where "314" is the version (which will increase over
  94141. time), "VT320" is the active terminal emulation (which
  94142. can vary), and <CR> is a carriage return.  You can also
  94143. set up Kermit to append additional text to this message,
  94144. before the CR.  For additional details, see the
  94145. KERMIT.UPD file that comes with MS-DOS Kermit 3.14.
  94146.  
  94147. - Frank
  94148.  
  94149. From news@columbia.edu Wed Feb 22 04:06:03 1995
  94150. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01473
  94151.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 23 Feb 1995 14:06:02 -0500
  94152. Received: by apakabar.cc.columbia.edu id AA07992
  94153.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 23 Feb 1995 14:05:58 -0500
  94154. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!news.alpha.net!uwm.edu!news.moneng.mei.com!howland.reston.ans.net!news.cac.psu.edu!news.pop.psu.edu!hudson.lm.com!netline-fddi.jpl.nasa.gov!nntp.et.byu.edu!news.provo.novell.com!news.cs.utah.edu!cc.usu.edu!jrd
  94155. From: jrd@cc.usu.edu (Joe Doupnik)
  94156. Newsgroups: comp.protocols.kermit.misc
  94157. Subject: Re: Remove unwanted lines from a file
  94158. Message-Id: <1995Feb22.100603.42567@cc.usu.edu>
  94159. Date: 22 Feb 95 10:06:03 MDT
  94160. References: <3idoq0$mde@nrcnet0.nrc.ca>
  94161. Organization: Utah State University
  94162. Lines: 21
  94163. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  94164.  
  94165. In article <3idoq0$mde@nrcnet0.nrc.ca>, Bradley Pick <BPICK@CISTI.LAN.NRC.CA> writes:
  94166. > Hi,
  94167. > I am using MS-DOS kermit and I am trying to read the contents of one text file and write it to a second file.
  94168. > When reading the first file I want to quit writing to the second file when I reach a line that contains "XXXXX".
  94169. > I can do the part of reading and writing to a new file, but no the part of stop writing when I reach the line that contains "XXXXX"
  94170. >  
  94171. > Any help is appreciated
  94172. > Thanks
  94173. > Brad
  94174. > BPICK@CISTI.LAN.NRC.CA
  94175. ----------
  94176. Brad,
  94177.     I am having difficulty understanding what you are doing. Could
  94178. you be much more explicit please? Also, you need to press the Enter key
  94179. before reaching column 80 because the lines are not wrapped by the world
  94180. (your News message is largely chopped off on the right side).
  94181.     Joe D.
  94182.  
  94183. From news@columbia.edu Wed Feb 22 04:14:12 1995
  94184. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01496
  94185.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 23 Feb 1995 14:06:18 -0500
  94186. Received: by apakabar.cc.columbia.edu id AA08031
  94187.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 23 Feb 1995 14:06:17 -0500
  94188. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!news.alpha.net!uwm.edu!vixen.cso.uiuc.edu!howland.reston.ans.net!news.cac.psu.edu!news.pop.psu.edu!hudson.lm.com!netline-fddi.jpl.nasa.gov!nntp.et.byu.edu!news.provo.novell.com!news.cs.utah.edu!cc.usu.edu!jrd
  94189. From: jrd@cc.usu.edu (Joe Doupnik)
  94190. Newsgroups: comp.protocols.kermit.misc
  94191. Subject: Re: Using K 3.14 with Windows 3.1
  94192. Message-Id: <1995Feb22.101412.42568@cc.usu.edu>
  94193. Date: 22 Feb 95 10:14:12 MDT
  94194. References: <21FEB95.19484729@shrsys.hslc.org>
  94195. Organization: Utah State University
  94196. Lines: 41
  94197. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  94198.  
  94199. In article <21FEB95.19484729@shrsys.hslc.org>, gormley@shrsys.hslc.org writes:
  94200. > I'm trying to use v 3.14 of Kermit, calling it from an icon in MS-Windows 3.1.
  94201. > Each time I attempt to do so, I get a 40 character screen, and can't seem to
  94202. > change it back to 80 column.
  94203.  
  94204.     Most often this happens when an INPUT or OUTPUT is echoing host
  94205. text and the host sends ESC [ m to reset visual attributes. Outside of
  94206. Connect mode (scripts are NOT running in Connect mode) DOS handles the i/o
  94207. and ANSI.SYS treats the above command as one to switch to 40 column mode.
  94208. SET INPUT ECHO OFF will stop this echoing.
  94209.     If this is not your problem then I recommend doing a careful 
  94210. inspection of your system's memory management. Please do read the MSK
  94211. release docs for hints on this matter.
  94212.  
  94213. > I've followed all the instructions in the 2nd edition of USING MS-KERMIT, but
  94214. > that only covers up to Windows 3.0.  Kermit runs properly if I click on the
  94215. > MS-DOS icon, change to the Kermit directory, and execute the program at that
  94216. > point.
  94217. > I connect to a VAX using ODI packet drivers; Kermit works fine from the DOS
  94218. > prompt, or by clicking on the DOS prompt icon and manually executing it, but
  94219. > not if I execute it from an icon, whether the icon calls KERMIT.EXE or
  94220. > KERMIT.PIF.
  94221.     Please read the docs accompanying the v3.14 MSK release. This will
  94222. help you configure the lan driver part. Btw, ODI is not a Packet Driver,
  94223. despite the natural temptation to use "packet driver" as a blanket term.
  94224. Lan driver or packet handler are more suitable terms, if we are groping
  94225. for such. I'll bet you did not run ODIPKT + WINPKT on top of ODI before 
  94226. attempting to run Kermit in Windows.
  94227.  
  94228. > I'm running a 386 with 4MB RAM.  Program Manager says I'm running in 386
  94229. > enhanced mode.
  94230.     4MB? You are really pushing the small-memory limit. The smallest
  94231. I recommend is 16MB these days, but 8MB will do in a pinch for some folks.
  94232.     Joe D.
  94233.  
  94234. > Dennis
  94235. > GORMLEY@HSLC.ORG
  94236.  
  94237. From news@columbia.edu Thu Feb 23 19:21:21 1995
  94238. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02491
  94239.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 23 Feb 1995 14:21:30 -0500
  94240. Received: by apakabar.cc.columbia.edu id AA09653
  94241.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 23 Feb 1995 14:21:28 -0500
  94242. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  94243. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  94244. Newsgroups: comp.protocols.kermit.misc
  94245. Subject: Re: Remove unwanted lines from a file
  94246. Date: 23 Feb 1995 19:21:21 GMT
  94247. Organization: Columbia University
  94248. Lines: 34
  94249. Message-Id: <3iin7h$9dj@apakabar.cc.columbia.edu>
  94250. References: <3idoq0$mde@nrcnet0.nrc.ca> <1995Feb22.100603.42567@cc.usu.edu>
  94251. Nntp-Posting-Host: watsun.cc.columbia.edu
  94252. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  94253.  
  94254. In article <3idoq0$mde@nrcnet0.nrc.ca>,
  94255. Bradley Pick <BPICK@CISTI.LAN.NRC.CA> writes:
  94256. > I am using MS-DOS kermit and I am trying to read the contents of one
  94257. > text file and write it to a second file.  When reading the first file I
  94258. > want to quit writing to the second file when I reach a line that
  94259. > contains "XXXXX".  I can do the part of reading and writing to a new
  94260. > file, but no the part of stop writing when I reach the line that
  94261. > contains "XXXXX"
  94262. >  
  94263. MS-DOS Kermit 3.14 (but not earlier releases) has string functions you can
  94264. use for things like this.  In particular, \findex(pattern,string,pos)
  94265. looks for "pattern" in "string" starting at position "pos".  Here's a
  94266. sample script program:
  94267.  
  94268.   open read oofa.txt
  94269.   if fail stop 1 Can't open input file
  94270.   open write oofa.new
  94271.   if fail stop 1 Can't open output file
  94272.   :LOOP
  94273.   read \%a
  94274.   if fail goto done
  94275.   if > \fsubstr(XXXXX,\%a,1) 0 goto done
  94276.   write file \%a\13\10
  94277.   goto loop
  94278.   :DONE
  94279.   close read
  94280.   close write
  94281.   
  94282. MS-DOS Kermit's new string (and other) functions are listed in the
  94283. KERMIT.UPD file that comes with MS-DOS Kermit 3.14, and they are
  94284. compatible with the ones in C-Kermit 5A, which are documented in the
  94285. script programming chapter of "Using C-Kermit".
  94286.  
  94287. - Frank
  94288.  
  94289. From news@columbia.edu Tue Feb 21 15:24:01 1995
  94290. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02909
  94291.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 23 Feb 1995 14:28:31 -0500
  94292. Received: by apakabar.cc.columbia.edu id AA10350
  94293.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 23 Feb 1995 14:28:29 -0500
  94294. Newsgroups: comp.protocols.kermit.misc
  94295. Path: news.columbia.edu!sol.ctr.columbia.edu!usenet.ucs.indiana.edu!vixen.cso.uiuc.edu!howland.reston.ans.net!spool.mu.edu!caen!crl.dec.com!crl.dec.com!pa.dec.com!mrnews.mro.dec.com!janix.mfr.dec.com!mfrfms.enet.dec.com!ring
  94296. From: ring@mfrfms.enet.dec.com ()
  94297. Subject: looking for a simple kermit script
  94298. Message-Id: <1995Feb21.152401.26629@janix.mfr.dec.com>
  94299. Lines: 15
  94300. Sender: news@janix.mfr.dec.com (SDSC USENET News System)
  94301. Reply-To: ring@mfrfms.enet.dec.com ()
  94302. Organization: Digital Equipment Corporation
  94303. X-Newsreader: mxrn 6.18-12
  94304. Date: Tue, 21 Feb 1995 15:24:01 GMT
  94305. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  94306.  
  94307.  
  94308. Hi,
  94309.  
  94310. I'm looking for a simple kermit script doing an automatic binary file transfer
  94311. from one node to a other node(both unix, once a day).I would like to add the
  94312. UNIX script in my crontab,for calling a kermit script (dialing, logging in,
  94313. getting the remote file, logoff and hangup).
  94314.  
  94315. Any pointers are welcome. 
  94316.  
  94317. P.S.: I'm getting the Kermit "bible" in a few weeks, but I need a solution now.
  94318.  
  94319. ----------
  94320. Georg Ring  
  94321. RING@MFRFMS.enet.dec.com
  94322.  
  94323. From news@columbia.edu Wed Feb 22 22:27:36 1995
  94324. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19602
  94325.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 23 Feb 1995 18:56:27 -0500
  94326. Received: by apakabar.cc.columbia.edu id AA08889
  94327.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 23 Feb 1995 18:56:25 -0500
  94328. Path: news.columbia.edu!sol.ctr.columbia.edu!math.ohio-state.edu!cs.utexas.edu!news.sprintlink.net!howland.reston.ans.net!torn!nott!nrcnet0.nrc.ca!ratilal
  94329. From: Bradley Pick <BPICK@cisti.lan.nrc.ca>
  94330. Newsgroups: comp.protocols.kermit.misc
  94331. Subject: Re: Remove unwanted lines from a file
  94332. Date: 22 Feb 1995 22:27:36 GMT
  94333. Organization: National Research Council, Canada
  94334. Lines: 42
  94335. Message-Id: <3igdoo$qeq@nrcnet0.nrc.ca>
  94336. References: <3idoq0$mde@nrcnet0.nrc.ca>
  94337. Nntp-Posting-Host: 132.246.156.55
  94338. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  94339.  
  94340. Bradley Pick <BPICK@CISTI.LAN.NRC.CA> wrote:
  94341. >
  94342. > Hi,
  94343. > I am using MS-DOS kermit and I am trying to read the contents of one text file and write it to a second file.
  94344. > When reading the first file I want to quit writing to the second file when I reach a line that contains "XXXXX".
  94345. > I can do the part of reading and writing to a new file, but no the part of stop writing when I reach the line that contains "XXXXX"
  94346. >  
  94347. > Any help is appreciated
  94348. > Thanks
  94349. > Brad
  94350. > BPICK@CISTI.LAN.NRC.CA
  94351.  
  94352. Since my first message was very vague I will try again.
  94353.  
  94354. I'm using MS-DOS KERMIT 3.14 to write a script that will log onto 
  94355. one system,capture a file back to my pc and then have it sent to 
  94356. another account for processing.
  94357.  
  94358. The problem that I have is that after I capture the file back to my
  94359. pc I have to strip away the bottom lines of the file before I send
  94360. it out again.
  94361.  
  94362. There are approx. 4 lines at the end of every capture that I need
  94363. removed before uploading.
  94364.  
  94365. The first line starts with
  94366.     ALL REQUESTS HAVE BEEN PRINTED.
  94367. This line and the remaining lines need to be removed.
  94368.  
  94369. My first plan was to read and write the contents of my captured file
  94370. to a second file, but stop writing(copying) to the second file when 
  94371. I encountered the line "ALL REQUESTS HAVE BEEN PRINTED".
  94372.  
  94373. Is there a way of comparing a defined macro to this string ?
  94374. Am I on the right track or is there a better solution?
  94375.  
  94376. Thanks
  94377. Brad
  94378.  
  94379. From news@columbia.edu Thu Feb 23 18:03:23 1995
  94380. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23385
  94381.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 24 Feb 1995 07:52:56 -0500
  94382. Received: by apakabar.cc.columbia.edu id AA09079
  94383.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 24 Feb 1995 07:52:55 -0500
  94384. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!news.alpha.net!uwm.edu!daffy!uwvax!trappist.cs.wisc.edu!zakarian
  94385. From: zakarian@trappist.cs.wisc.edu (Armand Zakarian)
  94386. Newsgroups: comp.protocols.kermit.misc
  94387. Subject: Re: control prefixing: uploads/downloads???
  94388. Date: 23 Feb 1995 18:03:23 GMT
  94389. Organization: U of Wisconsin CS Dept
  94390. Lines: 20
  94391. Message-Id: <3iiilb$n03@spool.cs.wisc.edu>
  94392. References: <3ii5ng$l1o@cronkite.ocis.temple.edu>
  94393. Nntp-Posting-Host: trappist.cs.wisc.edu
  94394. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  94395.  
  94396. In article <3ii5ng$l1o@cronkite.ocis.temple.edu>,
  94397. Cyber Flunk <tito@jedi.cis.temple.edu> wrote:
  94398.  
  94399. [...]
  94400. >phenomenon.  The set of control prefix characters which work fine for
  94401. >downloads do not work for uploads.  That is, if I download files from
  94402. [...]
  94403. >    I'm using MSKermit 3.13 at home and the school's unix box is
  94404. >using C-Kermit 5A(190).  The connection at school is made with a 14.4
  94405. >modem which is directly connected to a Cisco terminal server which
  94406. >goes directly onto the ethernet on which the host is located.  (Yes, I
  94407. >am prefixing 30, the escape char. for Cisco terminal servers.)
  94408. >
  94409.  
  94410. In the same environment as yours I've found that I also need
  94411. to prefix ^O and ^V (plus same with 8th bit set) for uploads
  94412. to work.
  94413.  
  94414. -- 
  94415. Armand Zakarian
  94416.  
  94417. From news@columbia.edu Fri Feb 24 12:25:03 1995
  94418. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24281
  94419.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 24 Feb 1995 08:22:05 -0500
  94420. Received: by apakabar.cc.columbia.edu id AA10652
  94421.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 24 Feb 1995 08:22:03 -0500
  94422. Path: news.columbia.edu!panix!news.mathworks.com!newshost.marcam.com!charnel.ecst.csuchico.edu!psgrain!news.teleport.com!news.teleport.com!not-for-mail
  94423. From: sysone@teleport.com (FIGHT THE POWER)
  94424. Newsgroups: comp.protocols.kermit.misc
  94425. Subject: Re: IBM 3278 to UNIX via Kermit...?
  94426. Date: 24 Feb 1995 04:25:03 -0800
  94427. Organization: Teleport - Portland's Public Access (503) 220-1016
  94428. Lines: 57
  94429. Message-Id: <3ikj6v$op@kelly.teleport.com>
  94430. References: <3i74qp$no0@linda.teleport.com> <3ig0n5$62g@apakabar.cc.columbia.edu>
  94431. Nntp-Posting-Host: kelly.teleport.com
  94432. Summary: Recasting my question...
  94433. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  94434.  
  94435. In article <3ig0n5$62g@apakabar.cc.columbia.edu>,
  94436. John Chandler <pepmnt@watsun.cc.columbia.edu> wrote:
  94437. >It's not clear what you mean by "assist" in connecting to a Unix system.
  94438. >If your IBM system has telnet capability at all, it should have a TELNET
  94439. >command that does all you need to connect.  There is no way to avoid the
  94440. >requirement that you hit the ENTER key in order to transmit something to
  94441. >the Unix host, so what are you looking for?  Surely, you don't want to
  94442. >have a "script" that automatically supplies the userid and password for
  94443. >logging on (that's easy to do, but a big security risk)??  I suppose, if
  94444. >you really wanted that, and were connecting to the IBM system from a PC
  94445. >running Kermit as the terminal emulator, you could have a script in the
  94446. >PC Kermit to do that sort of thing, but I presume you're after something
  94447. >else...
  94448. >                    John Chandler
  94449.  
  94450.     Oops. I guess I didn't phrase that quite right. Here goes
  94451. again. I must point out, however, that I'm attempting to help
  94452. someone else unravel this problem, and I don't have first-hand
  94453. IBM experience. Having made that warning...
  94454.  
  94455.     Suppose I have an account on an IBM mainframe, and I can
  94456. log in/out, handle files &c. with a reasonable level of
  94457. competence. Suppose also that I have the means to connect to a
  94458. remote UNIX system at some other site -- perhaps by using a
  94459. TCP/IP internet. I'm interested in connecting to my UNIX account
  94460. to read mail from friends and to access an unrestricted USENET
  94461. feed.
  94462.     I run into a problem when I try to log onto the remote
  94463. system though: It doesn't know how to deal with my IBM system.
  94464. For one thing, it can't find a TERMCAP or TERMINFO entry to match
  94465. my machine (it says it's looking for a ....3278 entry).
  94466.     Another problem is that IBMs like to buffer things a
  94467. line-at-a-time or a screen-at-a-time. This is a problem when
  94468. trying to "talk" to a UNIX system which deals with individual
  94469. characters: How do I access my mail and news on the UNIX end if
  94470. my mail and news readers are full-screen programs expecting
  94471. characters to be sent as soon as I press each key?
  94472.     Someone told me about something called "ANET" which would
  94473. allow me to connect to a remote UNIX system. What's that?
  94474.  
  94475.     Anyway, this roughly summarizes the situation. I'm not
  94476. worried about session automation, and I'm definitely NOT planning
  94477. to store my password on any machine, local or remote.
  94478.     So is there some flavor of TELNET available to facilitate
  94479. this kind of connection? Is the buffering-protocol conversion
  94480. insurmountable? Does there exist a Kermit flavor to help with
  94481. this? Will ANET help? Will a TERMCAP/TERMINFO entry help if I can
  94482. get it for the UNIX system?
  94483.     Thanks again in advance for any advice... I hope I
  94484. managed to communicate the nature of the problem this time. (To
  94485. anyone who's answered via email, I have sent separate replies
  94486. also. I appreciate your time.)
  94487. -- 
  94488. The worst sin towards our fellow creatures is not to hate them,
  94489. but to be indifferent to them; thats the essence of inhumanity.
  94490. - Bernard Shaw, _The Devil's Disciple_, 1897. {Finger for PGP
  94491. key/info}  sysone@teleport.com  http://www.teleport.com/~sysone
  94492.  
  94493. From news@columbia.edu Thu Feb 23 14:22:40 1995
  94494. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14865
  94495.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 24 Feb 1995 13:11:55 -0500
  94496. Received: by apakabar.cc.columbia.edu id AA07373
  94497.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 24 Feb 1995 13:11:53 -0500
  94498. Path: news.columbia.edu!sol.ctr.columbia.edu!spool.mu.edu!howland.reston.ans.net!news.cac.psu.edu!news.pop.psu.edu!hudson.lm.com!newsfeed.pitt.edu!dsinc!netnews.upenn.edu!cronkite.ocis.temple.edu!jedi.cis.temple.edu!tito
  94499. From: tito@jedi.cis.temple.edu (Cyber Flunk)
  94500. Newsgroups: comp.protocols.kermit.misc
  94501. Subject: control prefixing: uploads/downloads???
  94502. Date: 23 Feb 1995 14:22:40 GMT
  94503. Organization: Temple University, Academic Computer Services
  94504. Lines: 24
  94505. Message-Id: <3ii5ng$l1o@cronkite.ocis.temple.edu>
  94506. Nntp-Posting-Host: jedi.cis.temple.edu
  94507. X-Newsreader: Tin 1.1 PL5
  94508. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  94509.  
  94510.  
  94511. Hello Folks,
  94512.  
  94513.     In my efforts to optimize my kermit transfers as per the
  94514. recommendations in the faq, I've come across a strange and annoying
  94515. phenomenon.  The set of control prefix characters which work fine for
  94516. downloads do not work for uploads.  That is, if I download files from
  94517. the school's remote unix host, everything works swell.  When I try to
  94518. upload, however, the transfer invariably dies on the first packet.
  94519. I'm reasonably certain that this is a control character prefix issue
  94520. as I can upload without problems using all the same settings except
  94521. those concerning control character prefixing.  
  94522.  
  94523.     I'm using MSKermit 3.13 at home and the school's unix box is
  94524. using C-Kermit 5A(190).  The connection at school is made with a 14.4
  94525. modem which is directly connected to a Cisco terminal server which
  94526. goes directly onto the ethernet on which the host is located.  (Yes, I
  94527. am prefixing 30, the escape char. for Cisco terminal servers.)
  94528.  
  94529.     Any help anyone can suggest would be really appreciated!
  94530.     Thanks!
  94531.  
  94532.     Tito
  94533.  
  94534.  
  94535. From news@columbia.edu Thu Feb 23 21:11:46 1995
  94536. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25660
  94537.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 24 Feb 1995 15:40:48 -0500
  94538. Received: by apakabar.cc.columbia.edu id AA21747
  94539.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 24 Feb 1995 15:40:43 -0500
  94540. Path: news.columbia.edu!sol.ctr.columbia.edu!newsxfer.itd.umich.edu!caen!hookup!swrinde!howland.reston.ans.net!news.sprintlink.net!news.umkc.edu!torgo.umkc.edu!user
  94541. From: samurdock@cctr.umkc.edu (Scott Murdock)
  94542. Newsgroups: comp.protocols.kermit.misc
  94543. Subject: Re: ZMODEM VS KERMIT
  94544. Date: Thu, 23 Feb 1995 15:11:46 -0600
  94545. Organization: UMKC Network Operations
  94546. Lines: 17
  94547. Message-Id: <samurdock-2302951511460001@torgo.umkc.edu>
  94548. References: <3i83hi$omg@sirio.cineca.it> <1995Feb19.131317.42190@cc.usu.edu> <D4Bv29.Fnt@omen.COM> <3ie4th$6ij@fohnix.metronet.com>
  94549. Nntp-Posting-Host: torgo.umkc.edu
  94550. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  94551.  
  94552. In article <3ie4th$6ij@fohnix.metronet.com>, jhuber@fohnix.metronet.com
  94553. (Joseph Huber) wrote:
  94554.  
  94555. > In article <D4Bv29.Fnt@omen.COM> caf@omen.COM (Chuck Forsberg WA7KGX) writes:
  94556. > >The FAQ Kermit author Joe D. recommends refers to the discredited
  94557. > >Columbia Kermit News "True Life Benchmarks". 
  94558. > Just how and by whom was "True Life Benchmarks" discredited?  
  94559. > -- 
  94560.  
  94561.  
  94562. I downloaded and looked at the document last night (a sad attempt at a
  94563. multimedia document, I might add), and after reading the whole thing,
  94564. guess who 
  94565. it turns out the author is?  Chuck Forsberg.  He did the discrediting himself.  
  94566. Wow, now there's an unbiased claim that "True Life Benchmarks" was discredited!
  94567.  
  94568. From news@columbia.edu Fri Feb 24 20:41:31 1995
  94569. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25749
  94570.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 24 Feb 1995 15:41:44 -0500
  94571. Received: by apakabar.cc.columbia.edu id AA21835
  94572.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 24 Feb 1995 15:41:41 -0500
  94573. Path: news.columbia.edu!watsun.cc.columbia.edu!pepmnt
  94574. From: pepmnt@watsun.cc.columbia.edu (John Chandler)
  94575. Newsgroups: comp.protocols.kermit.misc
  94576. Subject: Re: IBM 3278 to UNIX via Kermit...?
  94577. Date: 24 Feb 1995 20:41:31 GMT
  94578. Organization: Columbia University
  94579. Lines: 32
  94580. Message-Id: <3ilg9r$l9t@apakabar.cc.columbia.edu>
  94581. References: <3i74qp$no0@linda.teleport.com> <3ig0n5$62g@apakabar.cc.columbia.edu> <3ikj6v$op@kelly.teleport.com>
  94582. Nntp-Posting-Host: watsun.cc.columbia.edu
  94583. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  94584.  
  94585. In article <3ikj6v$op@kelly.teleport.com>,
  94586. FIGHT THE POWER <sysone@teleport.com> wrote:
  94587. >    I run into a problem when I try to log onto the remote
  94588. >system though: It doesn't know how to deal with my IBM system.
  94589. >For one thing, it can't find a TERMCAP or TERMINFO entry to match
  94590. >my machine (it says it's looking for a ....3278 entry).
  94591.  
  94592. That should be only a minor detail in an overall dismal picture.
  94593. Your terminal is, in effect, an EBCDIC terminal, and the Unix
  94594. system simply can't manipulate it effectively in ASCII.
  94595.  
  94596. >    Another problem is that IBMs like to buffer things a
  94597. >line-at-a-time or a screen-at-a-time. This is a problem when
  94598. >trying to "talk" to a UNIX system which deals with individual
  94599. >characters:
  94600.  
  94601. That shouldn't be a problem.  Your IBM's TELNET program should
  94602. define an "escape" character, perhaps a back-quote, that tells
  94603. it to suppress the carriage return on transmission when that
  94604. character is the last printable character before ENTER.  You
  94605. should look at the documentation.
  94606.  
  94607. >    Someone told me about something called "ANET" which would
  94608. >allow me to connect to a remote UNIX system. What's that?
  94609.  
  94610. Beats me.
  94611.  
  94612. >Does there exist a Kermit flavor to help with
  94613. >this?
  94614.  
  94615. No.
  94616.             John Chandler
  94617.  
  94618. From news@columbia.edu Tue Feb 21 19:48:47 1995
  94619. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11820
  94620.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 24 Feb 1995 19:59:02 -0500
  94621. Received: by apakabar.cc.columbia.edu id AA13768
  94622.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 24 Feb 1995 19:59:01 -0500
  94623. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!in1.uu.net!newsfeed.pitt.edu!dsinc!news.ee.vill.edu!shrsys.hslc.org!gormley
  94624. From: gormley@shrsys.hslc.org
  94625. Newsgroups: comp.protocols.kermit.misc
  94626. Subject: Using K 3.14 with Windows 3.1
  94627. Date: 21 FEB 95 19:48:47 GMT
  94628. Organization: MIT PLASMA FUSION CENTER
  94629. Lines: 22
  94630. Message-Id: <21FEB95.19484729@shrsys.hslc.org>
  94631. Nntp-Posting-Host: shrsys.hslc.org
  94632. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  94633.  
  94634. I'm trying to use v 3.14 of Kermit, calling it from an icon in MS-Windows 3.1.
  94635. Each time I attempt to do so, I get a 40 character screen, and can't seem to
  94636. change it back to 80 column.
  94637.  
  94638. I've followed all the instructions in the 2nd edition of USING MS-KERMIT, but
  94639. that only covers up to Windows 3.0.  Kermit runs properly if I click on the
  94640. MS-DOS icon, change to the Kermit directory, and execute the program at that
  94641. point.
  94642.  
  94643. I connect to a VAX using ODI packet drivers; Kermit works fine from the DOS
  94644. prompt, or by clicking on the DOS prompt icon and manually executing it, but
  94645. not if I execute it from an icon, whether the icon calls KERMIT.EXE or
  94646. KERMIT.PIF.
  94647.  
  94648. I'm running a 386 with 4MB RAM.  Program Manager says I'm running in 386
  94649. enhanced mode.
  94650.  
  94651. Dennis
  94652. GORMLEY@HSLC.ORG
  94653.  
  94654.  
  94655.  
  94656.  
  94657. From news@columbia.edu Wed Feb 22 11:59:20 1995
  94658. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04363
  94659.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 25 Feb 1995 18:58:52 -0500
  94660. Received: by apakabar.cc.columbia.edu id AA06475
  94661.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 25 Feb 1995 18:58:51 -0500
  94662. Newsgroups: comp.protocols.kermit.misc
  94663. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!omen!caf
  94664. From: caf@omen.COM (Chuck Forsberg WA7KGX)
  94665. Subject: Re: ZMODEM VS KERMIT
  94666. Organization: Omen Technology INC, Portland Rain Forest
  94667. Date: Wed, 22 Feb 1995 11:59:20 GMT
  94668. Message-Id: <D4EHAw.8MM@omen.COM>
  94669. References: <1995Feb19.131317.42190@cc.usu.edu> <D4Bv29.Fnt@omen.COM> <3ie4th$6ij@fohnix.metronet.com>
  94670. Lines: 15
  94671. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  94672.  
  94673. In article <3ie4th$6ij@fohnix.metronet.com> jhuber@fohnix.metronet.com (Joseph Huber) writes:
  94674. >In article <D4Bv29.Fnt@omen.COM> caf@omen.COM (Chuck Forsberg WA7KGX) writes:
  94675. >>The FAQ Kermit author Joe D. recommends refers to the discredited
  94676. >>Columbia Kermit News "True Life Benchmarks". 
  94677. >
  94678. >Just how and by whom was "True Life Benchmarks" discredited?  
  94679.  
  94680. Get knewstru.zip from ftp.cs.pdx.edu pub/zmodem and read it.
  94681. If you don't have FTP the file is also on TeleGodzilla.
  94682.  
  94683. -- 
  94684. Chuck Forsberg WA7KGX caf@omen.COM      503-621-3406 FAX:-3735
  94685.    Omen Technology Inc      "The High Reliability Software"
  94686. Author of YMODEM, ZMODEM, Professional-YAM, ZCOMM, GSZ and DSZ
  94687. TeleGodzilla BBS: 503-621-3746  FTP: ftp.cs.pdx.edu pub/zmodem
  94688.  
  94689. From news@columbia.edu Sun Feb 26 00:36:21 1995
  94690. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08084
  94691.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 25 Feb 1995 20:43:43 -0500
  94692. Received: by apakabar.cc.columbia.edu id AA01548
  94693.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 25 Feb 1995 20:43:41 -0500
  94694. Newsgroups: comp.protocols.kermit.misc
  94695. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!agate!library.ucla.edu!csulb.edu!csus.edu!netcom.com!taliesin
  94696. From: taliesin@netcom.com (Glenn R. Stone)
  94697. Subject: Re: ZMODEM VS KERMIT
  94698. Message-Id: <taliesinD4L0CL.8Cz@netcom.com>
  94699. Organization: The Group W Bench
  94700. References: <3i83hi$omg@sirio.cineca.it> <1995Feb19.131317.42190@cc.usu.edu> <D4Bv29.Fnt@omen.COM>
  94701. Date: Sun, 26 Feb 1995 00:36:21 GMT
  94702. Lines: 39
  94703. Sender: taliesin@netcom10.netcom.com
  94704. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  94705.  
  94706. In <D4Bv29.Fnt@omen.COM> caf@omen.COM (Chuck Forsberg WA7KGX) writes:
  94707.  
  94708. #In article <1995Feb19.131317.42190@cc.usu.edu> jrd@cc.usu.edu (Joe Doupnik) writes:
  94709. #>In article <3i83hi$omg@sirio.cineca.it>, TREVISANELLO@UDUNIV.CC.UNIUD.IT (TREVISANELLO ARRIGO) writes:
  94710. #>> j'm connected with university trough my modem and telephon line. The only way
  94711. #>> to exchange file with the university computer ( openVMS) is kermit, that is
  94712. #>> very slow. How can i make a fast connection? Is it possibile to install zmodem
  94713. #>> on openVMS and how?  Thanks Arrigo
  94714. #>------------
  94715. #>    Please obtain and read the list's FAQ, file FAQ.TXT in directory
  94716. #>kermit on kermit.columbia.edu.
  94717. #>    Joe D.
  94718.  
  94719.  
  94720. #ZMODEM transfer programs for VMS are available on the FTP site,
  94721. #TeleGodzilla, and other places as rzsz.tlb.  Be sure to use binary
  94722. #mode for the transfer!
  94723.  
  94724. #The FAQ Kermit author Joe D. recommends refers to the discredited
  94725. #Columbia Kermit News "True Life Benchmarks".  To be fair, please
  94726. #download knewstru.zip from the FTP site to get a second opinion.
  94727.  
  94728. #-- 
  94729. #Chuck Forsberg WA7KGX caf@omen.COM      503-621-3406 FAX:-3735
  94730. #   Omen Technology Inc      "The High Reliability Software"
  94731. #Author of YMODEM, ZMODEM, Professional-YAM, ZCOMM, GSZ and DSZ
  94732. #TeleGodzilla BBS: 503-621-3746  FTP: ftp.cs.pdx.edu pub/zmodem
  94733.  
  94734. Sounds like a blatant attempt at commerciality.... 
  94735.  
  94736. get this drek offa my usenet.  I'll pay the $35 for the book if I can get
  94737. free support like Frank and Joe have been providing of late... oh, and
  94738. does Pro-YAM support X.25, networks, anything like that?  (rhetorical 
  94739. question, don't answer)
  94740.  
  94741. Stay on your panzy bbs'en where you belong, Forsberg.
  94742.  
  94743. warp eight bot, kermit kinda guy...
  94744.  
  94745.  
  94746. From news@columbia.edu Wed Feb 22 10:55:07 1995
  94747. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09382
  94748.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 25 Feb 1995 21:18:21 -0500
  94749. Received: by apakabar.cc.columbia.edu id AA03879
  94750.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 25 Feb 1995 21:18:17 -0500
  94751. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!hookup!swrinde!howland.reston.ans.net!pipex!sunic!news.funet.fi!news.cc.tut.fi!kvarkki.ee.tut.fi!not-for-mail
  94752. From: kaukasoi@ee.tut.fi (Kaukasoina Petri)
  94753. Newsgroups: comp.protocols.kermit.misc
  94754. Subject: Re: Latin1 strife for Finnish 8-bit emulation
  94755. Date: 22 Feb 1995 12:55:07 +0200
  94756. Organization: Tampere University of Technology
  94757. Lines: 20
  94758. Distribution: world
  94759. Message-Id: <3if56b$plh@kvarkki.ee.tut.fi>
  94760. References: <3i6sre$cpi@zippo.uwasa.fi> <3ia59h$m9p@kvarkki.ee.tut.fi> <3idhrp$9ov@zippo.uwasa.fi>
  94761. Nntp-Posting-Host: kvarkki.ee.tut.fi
  94762. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  94763.  
  94764. Timo Salmi <ts@uwasa.fi> wrote:
  94765.  
  94766. >:>set terminal bytesize 8-bit
  94767. >:>set terminal character-set latin1
  94768. >
  94769. >Have you actually tried just these with MsKermit 3.14 from an MS-DOS
  94770. >PC over a modem connection to a Unix host?
  94771.  
  94772. Yes, all the time. Everything works just fine, including the 8 bit
  94773. characters.
  94774.  
  94775. > Likewise, have you
  94776. >actually tried to edit a 8-bit ascii file with MicroEMACS over that
  94777. >connection?
  94778.  
  94779. I just tried it. I found uemacs still installed at finsun.csc.fi and it
  94780. worked ok. Maybe there is something wrong in your uemacs or your unix
  94781. terminal parameters?
  94782.  
  94783. -Petri
  94784.  
  94785. From news@columbia.edu Sun Feb 26 03:07:43 1995
  94786. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11476
  94787.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 25 Feb 1995 22:12:29 -0500
  94788. Received: by apakabar.cc.columbia.edu id AA07317
  94789.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 25 Feb 1995 22:12:28 -0500
  94790. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!psuvax1!news.ecn.bgu.edu!feenix.metronet.com!fohnix.metronet.com!not-for-mail
  94791. From: jhuber@fohnix.metronet.com (Joseph Huber)
  94792. Newsgroups: comp.protocols.kermit.misc
  94793. Subject: Re: ZMODEM VS KERMIT
  94794. Date: 25 Feb 1995 21:07:43 -0600
  94795. Organization: Texas Metronet Communications Services, Dallas TX
  94796. Lines: 13
  94797. Message-Id: <3ior9v$sg3@fohnix.metronet.com>
  94798. References: <samurdock-2302951511460001@torgo.umkc.edu> <3im0uq$eo@fohnix.metronet.com> <D4L2Gr.1u2@omen.COM>
  94799. Nntp-Posting-Host: fohnix.metronet.com
  94800. Keywords: KERMIT ZMODEM FAIRNESS BENCHMARKS
  94801. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  94802.  
  94803. In article <D4L2Gr.1u2@omen.COM> caf@omen.COM (Chuck Forsberg WA7KGX) writes:
  94804. >What's with the "sad attempt at a multimedia document" comment about
  94805. >anyway?  Huber must be stuck in an ivory tower somewhere if he thinks
  94806.           ^^^^^
  94807. >there is a single electronic multimedia document format that all Netnews
  94808. >readers and BBS/FTP foragers can easily access.
  94809.  
  94810. I didn't make the comment about the multimedia document.
  94811.  
  94812. -- 
  94813. Joe Huber
  94814. jhuber@metronet.com
  94815. 817-557-3186
  94816.  
  94817. From news@columbia.edu Wed Feb 22 16:40:21 1995
  94818. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13534
  94819.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 25 Feb 1995 23:06:53 -0500
  94820. Received: by apakabar.cc.columbia.edu id AA10876
  94821.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 25 Feb 1995 23:06:50 -0500
  94822. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!news.mathworks.com!newshost.marcam.com!charnel.ecst.csuchico.edu!olivea!nntp.msstate.edu!nntp.memphis.edu!stim.stim.tec.tn.us!ceddlemon
  94823. Newsgroups: comp.protocols.kermit.misc
  94824. Subject: Re: Using K 3.14 with Windows 3.1
  94825. Message-Id: <1995Feb22.104021.1@stim.stim.tec.tn.us>
  94826. From: ceddlemon@stim.stim.tec.tn.us
  94827. Date: 22 Feb 95 10:40:21 -0600
  94828. References: <21FEB95.19484729@shrsys.hslc.org>
  94829. Nntp-Posting-Host: tecvax.stim.tec.tn.us
  94830. Lines: 34
  94831. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  94832.  
  94833. In article <21FEB95.19484729@shrsys.hslc.org>, gormley@shrsys.hslc.org writes:
  94834. > I'm trying to use v 3.14 of Kermit, calling it from an icon in MS-Windows 3.1.
  94835. > Each time I attempt to do so, I get a 40 character screen, and can't seem to
  94836. > change it back to 80 column.
  94837.  
  94838. ... can't comment on this.
  94839. > I've followed all the instructions in the 2nd edition of USING MS-KERMIT, but
  94840. > that only covers up to Windows 3.0.  Kermit runs properly if I click on the
  94841. > MS-DOS icon, change to the Kermit directory, and execute the program at that
  94842. > point.
  94843.  
  94844. Just a thought here ... use the PIF editor and see if the "initial" or 
  94845. "startup" directory is set to be in the same directory where you have 
  94846. KERMIT installed.  I think I had to set mine at C:\KERMIT to get it to 
  94847. startup up in Windows correctly.  
  94848.  
  94849. There may be an environmental variable that needs setting to take care of this 
  94850. on bootup.  ie. something like: SET KERMIT=C:\KERMIT      
  94851.  
  94852. Hmmmm ... I'll take a look at the KERMIT books and DOCs this weekend.  
  94853.  
  94854. <snip> 
  94855.  
  94856. > I'm running a 386 with 4MB RAM.  Program Manager says I'm running in 386
  94857. > enhanced mode.
  94858.  
  94859. I started with this setup ... a bit sluggish at times ... but certainly 
  94860. workable.  
  94861.  
  94862. Hope this helps!
  94863.  
  94864. Charles   ceddlemon@stim.tec.tn.us
  94865.  
  94866. From news@columbia.edu Wed Feb 22 04:06:03 1995
  94867. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18130
  94868.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 26 Feb 1995 00:46:47 -0500
  94869. Received: by apakabar.cc.columbia.edu id AA17662
  94870.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 26 Feb 1995 00:46:44 -0500
  94871. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!news.mathworks.com!news.alpha.net!uwm.edu!news.moneng.mei.com!howland.reston.ans.net!news.cac.psu.edu!news.pop.psu.edu!hudson.lm.com!netline-fddi.jpl.nasa.gov!nntp.et.byu.edu!news.provo.novell.com!news.cs.utah.edu!cc.usu.edu!jrd
  94872. From: jrd@cc.usu.edu (Joe Doupnik)
  94873. Newsgroups: comp.protocols.kermit.misc
  94874. Subject: Re: Remove unwanted lines from a file
  94875. Message-Id: <1995Feb22.100603.42567@cc.usu.edu>
  94876. Date: 22 Feb 95 10:06:03 MDT
  94877. References: <3idoq0$mde@nrcnet0.nrc.ca>
  94878. Organization: Utah State University
  94879. Lines: 21
  94880. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  94881.  
  94882. In article <3idoq0$mde@nrcnet0.nrc.ca>, Bradley Pick <BPICK@CISTI.LAN.NRC.CA> writes:
  94883. > Hi,
  94884. > I am using MS-DOS kermit and I am trying to read the contents of one text file and write it to a second file.
  94885. > When reading the first file I want to quit writing to the second file when I reach a line that contains "XXXXX".
  94886. > I can do the part of reading and writing to a new file, but no the part of stop writing when I reach the line that contains "XXXXX"
  94887. >  
  94888. > Any help is appreciated
  94889. > Thanks
  94890. > Brad
  94891. > BPICK@CISTI.LAN.NRC.CA
  94892. ----------
  94893. Brad,
  94894.     I am having difficulty understanding what you are doing. Could
  94895. you be much more explicit please? Also, you need to press the Enter key
  94896. before reaching column 80 because the lines are not wrapped by the world
  94897. (your News message is largely chopped off on the right side).
  94898.     Joe D.
  94899.  
  94900. From news@columbia.edu Wed Feb 22 04:14:12 1995
  94901. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18144
  94902.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 26 Feb 1995 00:47:00 -0500
  94903. Received: by apakabar.cc.columbia.edu id AA17670
  94904.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 26 Feb 1995 00:46:59 -0500
  94905. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!news.mathworks.com!news.alpha.net!uwm.edu!vixen.cso.uiuc.edu!howland.reston.ans.net!news.cac.psu.edu!news.pop.psu.edu!hudson.lm.com!netline-fddi.jpl.nasa.gov!nntp.et.byu.edu!news.provo.novell.com!news.cs.utah.edu!cc.usu.edu!jrd
  94906. From: jrd@cc.usu.edu (Joe Doupnik)
  94907. Newsgroups: comp.protocols.kermit.misc
  94908. Subject: Re: Using K 3.14 with Windows 3.1
  94909. Message-Id: <1995Feb22.101412.42568@cc.usu.edu>
  94910. Date: 22 Feb 95 10:14:12 MDT
  94911. References: <21FEB95.19484729@shrsys.hslc.org>
  94912. Organization: Utah State University
  94913. Lines: 41
  94914. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  94915.  
  94916. In article <21FEB95.19484729@shrsys.hslc.org>, gormley@shrsys.hslc.org writes:
  94917. > I'm trying to use v 3.14 of Kermit, calling it from an icon in MS-Windows 3.1.
  94918. > Each time I attempt to do so, I get a 40 character screen, and can't seem to
  94919. > change it back to 80 column.
  94920.  
  94921.     Most often this happens when an INPUT or OUTPUT is echoing host
  94922. text and the host sends ESC [ m to reset visual attributes. Outside of
  94923. Connect mode (scripts are NOT running in Connect mode) DOS handles the i/o
  94924. and ANSI.SYS treats the above command as one to switch to 40 column mode.
  94925. SET INPUT ECHO OFF will stop this echoing.
  94926.     If this is not your problem then I recommend doing a careful 
  94927. inspection of your system's memory management. Please do read the MSK
  94928. release docs for hints on this matter.
  94929.  
  94930. > I've followed all the instructions in the 2nd edition of USING MS-KERMIT, but
  94931. > that only covers up to Windows 3.0.  Kermit runs properly if I click on the
  94932. > MS-DOS icon, change to the Kermit directory, and execute the program at that
  94933. > point.
  94934. > I connect to a VAX using ODI packet drivers; Kermit works fine from the DOS
  94935. > prompt, or by clicking on the DOS prompt icon and manually executing it, but
  94936. > not if I execute it from an icon, whether the icon calls KERMIT.EXE or
  94937. > KERMIT.PIF.
  94938.     Please read the docs accompanying the v3.14 MSK release. This will
  94939. help you configure the lan driver part. Btw, ODI is not a Packet Driver,
  94940. despite the natural temptation to use "packet driver" as a blanket term.
  94941. Lan driver or packet handler are more suitable terms, if we are groping
  94942. for such. I'll bet you did not run ODIPKT + WINPKT on top of ODI before 
  94943. attempting to run Kermit in Windows.
  94944.  
  94945. > I'm running a 386 with 4MB RAM.  Program Manager says I'm running in 386
  94946. > enhanced mode.
  94947.     4MB? You are really pushing the small-memory limit. The smallest
  94948. I recommend is 16MB these days, but 8MB will do in a pinch for some folks.
  94949.     Joe D.
  94950.  
  94951. > Dennis
  94952. > GORMLEY@HSLC.ORG
  94953.  
  94954. From news@columbia.edu Sun Feb 26 01:22:01 1995
  94955. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26720
  94956.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 26 Feb 1995 05:04:57 -0500
  94957. Received: by apakabar.cc.columbia.edu id AA28919
  94958.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 26 Feb 1995 05:04:55 -0500
  94959. Newsgroups: comp.protocols.kermit.misc
  94960. Path: news.columbia.edu!sol.ctr.columbia.edu!news.msfc.nasa.gov!news.larc.nasa.gov!lll-winken.llnl.gov!uwm.edu!news.alpha.net!solaris.cc.vt.edu!hookup!newshost.marcam.com!uunet!in1.uu.net!omen!caf
  94961. From: caf@omen.COM (Chuck Forsberg WA7KGX)
  94962. Subject: Re: ZMODEM VS KERMIT
  94963. Organization: Omen Technology INC, Portland Rain Forest
  94964. Date: Sun, 26 Feb 1995 01:22:01 GMT
  94965. Message-Id: <D4L2Gr.1u2@omen.COM>
  94966. Keywords: KERMIT ZMODEM FAIRNESS BENCHMARKS
  94967. References: <3ie4th$6ij@fohnix.metronet.com> <samurdock-2302951511460001@torgo.umkc.edu> <3im0uq$eo@fohnix.metronet.com>
  94968. Lines: 44
  94969. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  94970.  
  94971. In article <3im0uq$eo@fohnix.metronet.com> jhuber@fohnix.metronet.com (Joseph Huber) writes:
  94972. >samurdock@cctr.umkc.edu (Scott Murdock) writes:
  94973. >>(Joseph Huber) wrote:
  94974. >>>caf@omen.COM (Chuck Forsberg WA7KGX) writes:
  94975. >>>>The FAQ Kermit author Joe D. recommends refers to the discredited
  94976. >>>>Columbia Kermit News "True Life Benchmarks". 
  94977. >>> Just how and by whom was "True Life Benchmarks" discredited?  
  94978. >>I downloaded and looked at the document [which discredits TLB]
  94979. >>last night (a sad attempt at a
  94980. >>multimedia document, I might add), and after reading the whole thing, guess
  94981. >>who it turns out the author is?  Chuck Forsberg.  He did the discrediting
  94982. >>himself.  Wow, now there's an unbiased claim that "True Life Benchmarks" was
  94983. >>discredited! 
  94984. >
  94985. >In addition, from what I was able to read, this "report" is woefully
  94986. >incomplete. How someone could claim that this report discredits "True Life
  94987. >Benchmarks" is beyond me.
  94988.  
  94989. What's with the "sad attempt at a multimedia document" comment about
  94990. anyway?  Huber must be stuck in an ivory tower somewhere if he thinks
  94991. there is a single electronic multimedia document format that all Netnews
  94992. readers and BBS/FTP foragers can easily access.  At least I haven't
  94993. received any complaints from people who can't print out the text portion.
  94994.  
  94995. Yes, Joe, the knewstru.zip article at ftp.cs.pdx.edu pub/zmodem could be
  94996. considered incomplete.  Joe, if you compare it with the earlier version
  94997. you will note that a number of topics have been left out for the sake of
  94998. brevity.
  94999.  
  95000. The bottom line for credibility remains: Kermit developer Frank da Cruz
  95001. did his benchmarks in secret.  I invited Frank da Cruz and all the Kermit
  95002. partisans to attend the Protocol Shootout so they could assure themselves
  95003. the tests were fair.  The careful reader of knewstru.zip will note that
  95004. the Shootout was covered by two independent computer periodicals.
  95005.  
  95006. When it comes to credibility, the question is: Why has Columbia University
  95007. not offered to repeat the their tests under the public scrutiny that was
  95008. present at Omen's Protocol Shootout?  What is there to hide?
  95009.  
  95010. -- 
  95011. Chuck Forsberg WA7KGX caf@omen.COM      503-621-3406 FAX:-3735
  95012.    Omen Technology Inc      "The High Reliability Software"
  95013. Author of YMODEM, ZMODEM, Professional-YAM, ZCOMM, GSZ and DSZ
  95014. TeleGodzilla BBS: 503-621-3746  FTP: ftp.cs.pdx.edu pub/zmodem
  95015.  
  95016. From news@columbia.edu Sun Feb 26 10:11:48 1995
  95017. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03776
  95018.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 26 Feb 1995 20:42:31 -0500
  95019. Received: by apakabar.cc.columbia.edu id AA06771
  95020.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 26 Feb 1995 20:42:30 -0500
  95021. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  95022. From: jrd@cc.usu.edu (Joe Doupnik)
  95023. Newsgroups: comp.protocols.kermit.misc
  95024. Subject: Re: Kermit command-line puzzle
  95025. Message-Id: <1995Feb26.161148.43012@cc.usu.edu>
  95026. Date: 26 Feb 95 16:11:48 MDT
  95027. References: <D4ML0C.EH1@echelon.nl>
  95028. Organization: Utah State University
  95029. Lines: 30
  95030. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  95031.  
  95032. In article <D4ML0C.EH1@echelon.nl>, kees@echelon.nl (Kees Hendrikse) writes:
  95033. > I would like to assign a value to a variable before reading in the
  95034. > customized ini-file when startting MS-Kermit. However: if I start
  95035. > kermit this way:
  95036. >     kermit -f inifile def some_var value; stay
  95037. > value is assigned to some_var after reading inifile, and if I start
  95038. > kermit this way:
  95039. >     kermit def some_var value; take inifile; stay
  95040. > some_var holds 'value ; take inifile'.
  95041. > I know I could use a DOS environment variable, but I'd prefer to set
  95042. > some_var on the command-line. Any suggestions?
  95043. ------------
  95044.     The MS-DOS Kermit command line is interpreted internally as
  95045. a macro. That means commas separate the commands within that macro;
  95046. i.e., commas stand for the Enter key we would have pressed if saying
  95047. the same commands at the Kermit prompt.
  95048.     Semicolons are either data if not preceeded by whitespace or
  95049. the start of a line, or are comment introducers if preceeded ... And
  95050. comments work only in Take files, not in Macros where they are always
  95051. data. [Quiz on Friday so I hope you all took notes.]
  95052.         Now if you think all this is getting a triffle obscure may I
  95053. warmly recommend a few days with either Perl or Sendmail, and then
  95054. a week's vacation to recover.
  95055.     Joe D.
  95056.     You want commas up there.
  95057.  
  95058. From news@columbia.edu Sun Feb 26 07:05:03 1995
  95059. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06454
  95060.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 26 Feb 1995 21:36:30 -0500
  95061. Received: by apakabar.cc.columbia.edu id AA10820
  95062.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 26 Feb 1995 21:36:26 -0500
  95063. Path: news.columbia.edu!sol.ctr.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  95064. From: jrd@cc.usu.edu (Joe Doupnik)
  95065. Newsgroups: comp.protocols.kermit.misc
  95066. Subject: Re: MS-Kermit -- Speed of "Output" vs. "Write"
  95067. Message-Id: <1995Feb26.130503.42997@cc.usu.edu>
  95068. Date: 26 Feb 95 13:05:03 MDT
  95069. References: <3ip18p$qml@panix.com> <1995Feb26.104422.42986@cc.usu.edu> <3iqhhe$rm0@panix.com>
  95070. Organization: Utah State University
  95071. Lines: 24
  95072. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  95073.  
  95074. In article <3iqhhe$rm0@panix.com>, mgflax@panix.com (Marshall G. Flax) writes:
  95075. > In article <1995Feb26.104422.42986@cc.usu.edu>,
  95076. > Joe Doupnik <jrd@cc.usu.edu> wrote:
  95077. >>    The OUTPUT command has a minimum interval of 1ms between sent
  95078. >>bytes. The reason is the primary use of OUTPUT is to setup modems, and
  95079. >>many modems are intolerant of back to back bytes in this mode. Thus
  95080. >>the program defaults to a small but normally satisfactory pause without
  95081. >>the user having to give yet another command to control the modem.
  95082. >>    In addition, the OUTPUT command looks for and displays modem
  95083. >>responses as it goes, and that can add extra time between bytes.
  95084. > Let me then rephrase my question.  I'm interested in using ms-kermit to
  95085. > send singe characters over an asynch line without any output delay
  95086. > except for that provided by xon/xoff flow control.  Any suggestions?
  95087. ------------
  95088.     Only two that I can think of, given the state of information in
  95089. the thread so far.
  95090.     1. Give up the patch file and change the source code yourself.
  95091.     2. Use some other async comms driver.
  95092.     We designed MS-DOS Kermit to be a coherent communications program
  95093. rather than a set of drop-in comms drivers. This means we fit the program
  95094. to the perceived major uses of it, realizing that not everyone can be
  95095. satisfied.
  95096.     Joe D.
  95097.  
  95098. From news@columbia.edu Sun Feb 26 02:48:00 1995
  95099. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07283
  95100.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 26 Feb 1995 22:02:09 -0500
  95101. Received: by apakabar.cc.columbia.edu id AA12685
  95102.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 26 Feb 1995 22:02:04 -0500
  95103. Path: news.columbia.edu!sol.ctr.columbia.edu!ucsnews!newshub.sdsu.edu!ihnp4.ucsd.edu!swrinde!sgiblab!rahul.net!a2i!dold.a2i!dold
  95104. From: Clarence Dold <dold@rahul.net>
  95105. Newsgroups: comp.protocols.kermit.misc
  95106. Subject: Re: Throughput with MSKermit 3.13?
  95107. Date: 26 Feb 1995 02:48:00 GMT
  95108. Organization: a2i network
  95109. Lines: 20
  95110. Message-Id: <3ioq50$5n@hustle.rahul.net>
  95111. References: <3im6is$a2p@hydra.acs.ttu.edu>
  95112. Nntp-Posting-Host: foxtrot.rahul.net
  95113. Nntp-Posting-User: dold
  95114. X-Newsreader: TIN [version 1.2 PL2]
  95115. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  95116.  
  95117. Michael J. Mettler (mmettler@ttmath.ttu.edu) wrote:
  95118. : I recently purchased a USR Sportster 14.4 modem to do some
  95119. : work from home.  I am using MSKermit 3.13 and doing a lot of
  95120. : downloading of compressed files.  What kind of speed should I
  95121. : be getting?  I can only get up to about 1500-1600 cps (as
  95122.  
  95123. Pre-compressed files max out, theoretically, at about 1680cps, regardless of
  95124. protocol.  That's all the bits that will fit on a 14.4 modem.
  95125.  
  95126. Text files may transfer at 3000 or so, using Kermit.  This must be what your
  95127. friend is seeing.
  95128.  
  95129. --
  95130. ---
  95131. Clarence A Dold - dold@rahul.net
  95132.                 - Pope Valley & Napa CA.
  95133. -- 
  95134. ---
  95135. Clarence A Dold - dold@rahul.net
  95136.                 - Pope Valley & Napa CA.
  95137.  
  95138. From news@columbia.edu Sat Feb 25 21:50:44 1995
  95139. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08637
  95140.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 26 Feb 1995 22:37:17 -0500
  95141. Received: by apakabar.cc.columbia.edu id AA15800
  95142.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 26 Feb 1995 22:37:15 -0500
  95143. Path: news.columbia.edu!sol.ctr.columbia.edu!ucsnews!newshub.sdsu.edu!ihnp4.ucsd.edu!swrinde!howland.reston.ans.net!news.sprintlink.net!news.cais.com!news
  95144. From: jfb@bedroom.kevin.net (Jason F. McBrayer)
  95145. Newsgroups: comp.protocols.kermit.misc
  95146. Subject: cmsg cancel <jfbyqquxxuxvzc@bedroom.kevin.net>
  95147. Control: cancel <jfbyqquxxuxvzc@bedroom.kevin.net>
  95148. Date: 25 Feb 1995 16:50:44 -0500
  95149. Organization: Capital Area Internet Service info@cais.com 703-448-4470
  95150. Lines: 1
  95151. Message-Id: <jfbyqquxxuxuve@bedroom.kevin.net>
  95152. Nntp-Posting-Host: bedroom.kevin.net
  95153. X-Newsreader: (ding) Gnus v0.23
  95154. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  95155.  
  95156. This is a cancel message from jfb@bedroom.kevin.net (Jason F. McBrayer).
  95157.  
  95158. From news@columbia.edu Thu Feb 23 14:22:40 1995
  95159. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14586
  95160.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 27 Feb 1995 20:13:51 -0500
  95161. Received: by apakabar.cc.columbia.edu id AA04214
  95162.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 27 Feb 1995 20:13:49 -0500
  95163. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!news.kei.com!nntp.et.byu.edu!netline-fddi.jpl.nasa.gov!hudson.lm.com!newsfeed.pitt.edu!dsinc!netnews.upenn.edu!cronkite.ocis.temple.edu!jedi.cis.temple.edu!tito
  95164. From: tito@jedi.cis.temple.edu (Cyber Flunk)
  95165. Newsgroups: comp.protocols.kermit.misc
  95166. Subject: control prefixing: uploads/downloads???
  95167. Date: 23 Feb 1995 14:22:40 GMT
  95168. Organization: Temple University, Academic Computer Services
  95169. Lines: 24
  95170. Message-Id: <3ii5ng$l1o@cronkite.ocis.temple.edu>
  95171. Nntp-Posting-Host: jedi.cis.temple.edu
  95172. X-Newsreader: Tin 1.1 PL5
  95173. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  95174.  
  95175.  
  95176. Hello Folks,
  95177.  
  95178.     In my efforts to optimize my kermit transfers as per the
  95179. recommendations in the faq, I've come across a strange and annoying
  95180. phenomenon.  The set of control prefix characters which work fine for
  95181. downloads do not work for uploads.  That is, if I download files from
  95182. the school's remote unix host, everything works swell.  When I try to
  95183. upload, however, the transfer invariably dies on the first packet.
  95184. I'm reasonably certain that this is a control character prefix issue
  95185. as I can upload without problems using all the same settings except
  95186. those concerning control character prefixing.  
  95187.  
  95188.     I'm using MSKermit 3.13 at home and the school's unix box is
  95189. using C-Kermit 5A(190).  The connection at school is made with a 14.4
  95190. modem which is directly connected to a Cisco terminal server which
  95191. goes directly onto the ethernet on which the host is located.  (Yes, I
  95192. am prefixing 30, the escape char. for Cisco terminal servers.)
  95193.  
  95194.     Any help anyone can suggest would be really appreciated!
  95195.     Thanks!
  95196.  
  95197.     Tito
  95198.  
  95199.  
  95200. From news@columbia.edu Wed Feb 22 18:50:51 1995
  95201. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16019
  95202.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 27 Feb 1995 20:48:51 -0500
  95203. Received: by apakabar.cc.columbia.edu id AA07106
  95204.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 27 Feb 1995 20:48:49 -0500
  95205. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!news.sprintlink.net!howland.reston.ans.net!vixen.cso.uiuc.edu!uwm.edu!uwvax!trappist.cs.wisc.edu!zakarian
  95206. From: zakarian@trappist.cs.wisc.edu (Armand Zakarian)
  95207. Newsgroups: comp.protocols.kermit.misc
  95208. Subject: Re: Using K 3.14 with Windows 3.1
  95209. Date: 22 Feb 1995 18:50:51 GMT
  95210. Organization: U of Wisconsin CS Dept
  95211. Lines: 10
  95212. Message-Id: <3ig12b$s3f@spool.cs.wisc.edu>
  95213. References: <21FEB95.19484729@shrsys.hslc.org>
  95214. Nntp-Posting-Host: trappist.cs.wisc.edu
  95215. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  95216.  
  95217. In article <21FEB95.19484729@shrsys.hslc.org>, gormley@shrsys.hslc.org writes:
  95218. > I'm trying to use v 3.14 of Kermit, calling it from an icon in MS-Windows 3.1.
  95219. > Each time I attempt to do so, I get a 40 character screen, and can't seem to
  95220. > change it back to 80 column.
  95221.  
  95222.  
  95223. Try deleting every line that contains `kermit' from the dosapp.ini
  95224. file located in your Windows directory.
  95225. -- 
  95226. Armand Zakarian
  95227.  
  95228. From news@columbia.edu Tue Feb 28 15:48:27 1995
  95229. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26668
  95230.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 28 Feb 1995 10:48:34 -0500
  95231. Received: by apakabar.cc.columbia.edu id AA11397
  95232.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 28 Feb 1995 10:48:33 -0500
  95233. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  95234. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  95235. Newsgroups: comp.protocols.kermit.misc
  95236. Subject: Re: control prefixing: uploads/downloads???
  95237. Date: 28 Feb 1995 15:48:27 GMT
  95238. Organization: Columbia University
  95239. Lines: 17
  95240. Message-Id: <3ivgkb$b3v@apakabar.cc.columbia.edu>
  95241. References: <3ii5ng$l1o@cronkite.ocis.temple.edu>
  95242. Nntp-Posting-Host: watsun.cc.columbia.edu
  95243. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  95244.  
  95245. In article <3ii5ng$l1o@cronkite.ocis.temple.edu>,
  95246. <tito@jedi.cis.temple.edu> wrote:
  95247. >In my efforts to optimize my kermit transfers as per the
  95248. >recommendations in the faq, I've come across a strange and annoying
  95249. >phenomenon.  The set of control prefix characters which work fine for
  95250. >downloads do not work for uploads.
  95251. >
  95252. It may be annoying, but it's not strange.  Nowhere is it written that
  95253. data connections are symmetrical.  It is probably the rule, rather than
  95254. the exception, that data flows easily in one direction (usually towards
  95255. the terminal) but not in the other (towards the host).  Not only for
  95256. reasons of transparency -- i.e. which control and/or 8-bit characters
  95257. can pass through unscathed -- but also buffering, flow control, and so
  95258. on.  The minimum set of prefixed control characters in one direction is
  95259. almost never the same as in the other.
  95260.  
  95261. - Frank
  95262.  
  95263. From news@columbia.edu Thu Feb 23 18:03:23 1995
  95264. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00536
  95265.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 28 Feb 1995 11:29:32 -0500
  95266. Received: by apakabar.cc.columbia.edu id AA15534
  95267.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 28 Feb 1995 11:29:30 -0500
  95268. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!solaris.cc.vt.edu!news.mathworks.com!news.alpha.net!uwm.edu!daffy!uwvax!trappist.cs.wisc.edu!zakarian
  95269. From: zakarian@trappist.cs.wisc.edu (Armand Zakarian)
  95270. Newsgroups: comp.protocols.kermit.misc
  95271. Subject: Re: control prefixing: uploads/downloads???
  95272. Date: 23 Feb 1995 18:03:23 GMT
  95273. Organization: U of Wisconsin CS Dept
  95274. Lines: 20
  95275. Message-Id: <3iiilb$n03@spool.cs.wisc.edu>
  95276. References: <3ii5ng$l1o@cronkite.ocis.temple.edu>
  95277. Nntp-Posting-Host: trappist.cs.wisc.edu
  95278. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  95279.  
  95280. In article <3ii5ng$l1o@cronkite.ocis.temple.edu>,
  95281. Cyber Flunk <tito@jedi.cis.temple.edu> wrote:
  95282.  
  95283. [...]
  95284. >phenomenon.  The set of control prefix characters which work fine for
  95285. >downloads do not work for uploads.  That is, if I download files from
  95286. [...]
  95287. >    I'm using MSKermit 3.13 at home and the school's unix box is
  95288. >using C-Kermit 5A(190).  The connection at school is made with a 14.4
  95289. >modem which is directly connected to a Cisco terminal server which
  95290. >goes directly onto the ethernet on which the host is located.  (Yes, I
  95291. >am prefixing 30, the escape char. for Cisco terminal servers.)
  95292. >
  95293.  
  95294. In the same environment as yours I've found that I also need
  95295. to prefix ^O and ^V (plus same with 8th bit set) for uploads
  95296. to work.
  95297.  
  95298. -- 
  95299. Armand Zakarian
  95300.  
  95301. From news@columbia.edu Mon Feb 27 01:57:33 1995
  95302. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02547
  95303.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 28 Feb 1995 11:47:25 -0500
  95304. Received: by apakabar.cc.columbia.edu id AA17182
  95305.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 28 Feb 1995 11:47:23 -0500
  95306. Path: news.columbia.edu!sol.ctr.columbia.edu!news.msfc.nasa.gov!news.larc.nasa.gov!lerc.nasa.gov!magnus.acs.ohio-state.edu!math.ohio-state.edu!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  95307. From: jrd@cc.usu.edu (Joe Doupnik)
  95308. Newsgroups: comp.protocols.kermit.misc
  95309. Subject: Re: Hardware for ms-kermit?
  95310. Message-Id: <1995Feb27.075733.43059@cc.usu.edu>
  95311. Date: 27 Feb 95 07:57:33 MDT
  95312. References: <3irk39$4m4@sunny.bahnhof.se>
  95313. Organization: Utah State University
  95314. Lines: 13
  95315. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  95316.  
  95317. In article <3irk39$4m4@sunny.bahnhof.se>, marvi@bahnhof.se (Markus Hdrnvi) writes:
  95318. > What would I need for kind of machine to run MS-Kermit? This is me "test" 
  95319. > when I'm going to buy a second PC. I have to be able to run some sort of 
  95320. > Kermit (running ckermit on my os/2 machine).
  95321. -----------
  95322.     Supplementing my previous reply...
  95323.     One thing to watch is the sub notebook sized computers. Our
  95324. experience has been that some vendors remove vital motherboard hardware 
  95325. found in all full PCs (the timer chip in particular) and Kermit cannot run.
  95326. Such machines are not fully "IBM PC" compatible.
  95327.     Finally, please don't use an internal modem. Use an external modem
  95328. and avoid much grief from interface design mistakes.
  95329.         Joe D.
  95330.  
  95331. From news@columbia.edu Sun Feb 26 21:00:12 1995
  95332. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06259
  95333.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 28 Feb 1995 12:21:16 -0500
  95334. Received: by apakabar.cc.columbia.edu id AA20732
  95335.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 28 Feb 1995 12:21:14 -0500
  95336. Newsgroups: comp.protocols.kermit.misc
  95337. Path: news.columbia.edu!sol.ctr.columbia.edu!news.msfc.nasa.gov!news.larc.nasa.gov!lll-winken.llnl.gov!uwm.edu!cs.utexas.edu!news.sprintlink.net!EU.net!sun4nl!echelon!kees
  95338. From: kees@echelon.nl (Kees Hendrikse)
  95339. Subject: Kermit command-line puzzle
  95340. Organization: Echelon Consultancy, Enschede, The Netherlands
  95341. Date: Sun, 26 Feb 1995 21:00:12 GMT
  95342. Message-Id: <D4ML0C.EH1@echelon.nl>
  95343. Lines: 21
  95344. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  95345.  
  95346. I would like to assign a value to a variable before reading in the
  95347. customized ini-file when startting MS-Kermit. However: if I start
  95348. kermit this way:
  95349.  
  95350.     kermit -f inifile def some_var value; stay
  95351.  
  95352. value is assigned to some_var after reading inifile, and if I start
  95353. kermit this way:
  95354.  
  95355.     kermit def some_var value; take inifile; stay
  95356.  
  95357. some_var holds 'value ; take inifile'.
  95358.  
  95359. I know I could use a DOS environment variable, but I'd prefer to set
  95360. some_var on the command-line. Any suggestions?
  95361.  
  95362. -- 
  95363. Kees Hendrikse                                | email:   kees@echelon.nl
  95364.                                               |
  95365. ECHELON consultancy and software development  | phone: +31 (0)53 836 585
  95366. PO Box 545, 7500AM Enschede, The Netherlands  | fax:   +31 (0)53 337 415
  95367.  
  95368. From news@columbia.edu Tue Feb 28 02:16:11 1995
  95369. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08188
  95370.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 28 Feb 1995 12:52:42 -0500
  95371. Received: by apakabar.cc.columbia.edu id AA23956
  95372.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 28 Feb 1995 12:52:39 -0500
  95373. Path: news.columbia.edu!panix!news.mathworks.com!news.alpha.net!uwm.edu!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  95374. From: jrd@cc.usu.edu (Joe Doupnik)
  95375. Newsgroups: comp.protocols.kermit.misc
  95376. Subject: Re: MSDOS-KERMIT 3.14 & ESC Remapping
  95377. Message-Id: <1995Feb28.081612.43163@cc.usu.edu>
  95378. Date: 28 Feb 95 08:16:11 MDT
  95379. References: <Tim_Helmstetter.17.2F532A95@radian.com>
  95380. Organization: Utah State University
  95381. Lines: 22
  95382. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  95383.  
  95384. In article <Tim_Helmstetter.17.2F532A95@radian.com>, Tim_Helmstetter@radian.com writes:
  95385. > Help Once Again!
  95386. > I am using MSKERMIT 3.14 connecting to a U6000 and then thru Information 
  95387. > Services (IS) to an Unisys 1100. My problem is that IS expects ESC 1->0 
  95388. > cooresponding to F1->F10. When I remap F1->F10 in Kermit to \271 or \2701 or 
  95389. > \27 1 Kermit bounces to the Command prompt. I have tried SET ESC \28 but the 
  95390. > same thing happens. I have also tried writing a macro which outputs ESC and 
  95391. > then outputs 1->0 but the same thing happens. I am pretty sure I am just not 
  95392. > understanding this properly. Can Anyone help?
  95393. ------------
  95394.     There is an easy solution. First, to remove some confusion about
  95395. terminology the "Kermit Connect mode escape code" is an ASCII control
  95396. code which gets one out of Connect mode. It is not necessarily the ASCII
  95397. code for ESC (decimal 27); the default is Control-], decimal 29. Best to
  95398. leave SET ESCAPE alone.
  95399.     Numbers represented in backslash form can have more than two digits
  95400. after the slash, so \271 is decimal 271, not ESC 1. To separate \27 from
  95401. the following ASCII 1 use notation  \{27}1. The curly braces restrict
  95402. the span of the number-seeker routine which is analyzing the backslash
  95403. material. Alternatively, \27\31 does the same job in pure numeric form.
  95404.         Joe D.
  95405.  
  95406. From news@columbia.edu Thu Feb 23 05:53:35 1995
  95407. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15299
  95408.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 28 Feb 1995 21:41:49 -0500
  95409. Received: by apakabar.cc.columbia.edu id AA02418
  95410.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 28 Feb 1995 21:41:47 -0500
  95411. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!panix!news.mathworks.com!news.duke.edu!news-server.ncren.net!concert!ais.com!bruce
  95412. From: bruce@ais.com
  95413. Newsgroups: comp.protocols.kermit.misc
  95414. Subject: Re: Re [2]: MS-Kermit 3.14 mode line won't stay off.
  95415. Message-Id: <1995Feb23.105335.7299@ais.com>
  95416. Date: 23 Feb 95 10:53:35 EST
  95417. References: <3i4qtu$smk@ulowell.uml.edu> <3i6g5n$ju@apakabar.cc.columbia.edu> <3i8cg9$c6k@ulowell.uml.edu>
  95418. Followup-To: comp.protocols.kermit.misc
  95419. Distribution: usa
  95420. Organization: Applied Information Systems, Chapel Hill, NC
  95421. Lines: 46
  95422. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  95423.  
  95424. In article <3i8cg9$c6k@ulowell.uml.edu>, mbecker@neptune.cs.uml.edu (Mark Becker) writes:
  95425. > In article <3i6g5n$ju@apakabar.cc.columbia.edu> jrd@watsun.cc.columbia.edu
  95426. >   (Joe R. Doupnik) writes:
  95427. >>--------------
  95428. >>    The host is driving the cursor to line 25 explicity, by direct
  95429. >>addressing. That means the host now owns the status line. The cure is
  95430. >>to correct the host to not do that, as they say. MSK reports its screen
  95431. >>size via Telnet options upon request, and that size excludes the status
  95432. >>line.
  95433. > I don't have a VT-100 terminal to compare with.  Two questions:
  95434. >  a) Does the VT-100 have a 25th line?
  95435.  
  95436. No.  But VT320's and above do have a 25th status line.  On VT420's and
  95437. above, the 25th line can be used as either a status line (logically a
  95438. separate display window) or as part of the main display window.   The
  95439. VT420 can also be configured with more lines, for example, a 36-line mode,
  95440. but the more dense displays get rather unreadable because the monitor
  95441. itself is still the same size as the other low-end VT monitors.
  95442.  
  95443. >  b) If (a) == "Yes" then does that line scroll up with the rest of them if the
  95444. >     cursor is directed there?  Or does the cursor 'stick' to the 25th line?
  95445.  
  95446. On the VT420's and above, if you have selected the 25th line to be part
  95447. of the main display, then it will scroll with the other 24 lines on the
  95448. display.  If you have selected the 25th line to be a status line, then
  95449. it will not scroll with the other 24 lines on the display.
  95450.  
  95451. The normal behavior for the DEC VT-class terminals if a cursor sequence tries
  95452. to place the cursor on any line beyond the end of the main display window
  95453. (that is, on the 25th line or below in most cases) is to place the cursor
  95454. at the same column position on the last line of the window (the 24th line
  95455. in most cases).  As I understand Kermit's behavior, it isn't strictly
  95456. compatible with the DEC hardware;  but there are other terminals out there
  95457. that do behave similarly to Kermit.
  95458.  
  95459. I wouldn't be surprised if the problem is that some of the software is
  95460. doing a terminal type query and setting itself up according to what it
  95461. receives from that - there's a fair amount of software in the DEC world
  95462. that does that (even though you're theoretically supposed to take the
  95463. OS's word for the terminal type).
  95464.  
  95465. Good luck,
  95466.  
  95467. Bruce C. Wright
  95468.  
  95469. From news@columbia.edu Thu Feb 23 21:11:46 1995
  95470. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28238
  95471.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 1 Mar 1995 12:11:41 -0500
  95472. Received: by apakabar.cc.columbia.edu id AA28506
  95473.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 1 Mar 1995 12:11:40 -0500
  95474. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!in1.uu.net!news.sprintlink.net!news.umkc.edu!torgo.umkc.edu!user
  95475. From: samurdock@cctr.umkc.edu (Scott Murdock)
  95476. Newsgroups: comp.protocols.kermit.misc
  95477. Subject: Re: ZMODEM VS KERMIT
  95478. Date: Thu, 23 Feb 1995 15:11:46 -0600
  95479. Organization: UMKC Network Operations
  95480. Lines: 17
  95481. Message-Id: <samurdock-2302951511460001@torgo.umkc.edu>
  95482. References: <3i83hi$omg@sirio.cineca.it> <1995Feb19.131317.42190@cc.usu.edu> <D4Bv29.Fnt@omen.COM> <3ie4th$6ij@fohnix.metronet.com>
  95483. Nntp-Posting-Host: torgo.umkc.edu
  95484. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  95485.  
  95486. In article <3ie4th$6ij@fohnix.metronet.com>, jhuber@fohnix.metronet.com
  95487. (Joseph Huber) wrote:
  95488.  
  95489. > In article <D4Bv29.Fnt@omen.COM> caf@omen.COM (Chuck Forsberg WA7KGX) writes:
  95490. > >The FAQ Kermit author Joe D. recommends refers to the discredited
  95491. > >Columbia Kermit News "True Life Benchmarks". 
  95492. > Just how and by whom was "True Life Benchmarks" discredited?  
  95493. > -- 
  95494.  
  95495.  
  95496. I downloaded and looked at the document last night (a sad attempt at a
  95497. multimedia document, I might add), and after reading the whole thing,
  95498. guess who 
  95499. it turns out the author is?  Chuck Forsberg.  He did the discrediting himself.  
  95500. Wow, now there's an unbiased claim that "True Life Benchmarks" was discredited!
  95501.  
  95502. From news@columbia.edu Mon Feb 27 15:27:18 1995
  95503. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29489
  95504.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 1 Mar 1995 12:28:03 -0500
  95505. Received: by apakabar.cc.columbia.edu id AA00541
  95506.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 1 Mar 1995 12:27:58 -0500
  95507. Path: news.columbia.edu!sol.ctr.columbia.edu!news.msfc.nasa.gov!news.larc.nasa.gov!lerc.nasa.gov!magnus.acs.ohio-state.edu!math.ohio-state.edu!cs.utexas.edu!swrinde!gatech!news-feed-1.peachnet.edu!insosf1.infonet.net!usenet.ee.pdx.edu!not-for-mail
  95508. From: rkwee@ee.pdx.edu (Roland Kwee)
  95509. Newsgroups: comp.protocols.kermit.misc
  95510. Subject: Made a script to start SLIP
  95511. Date: 27 Feb 1995 07:27:18 -0800
  95512. Lines: 258
  95513. Message-Id: <3isr0m$gi0@cruella.ee.pdx.edu>
  95514. Nntp-Posting-Host: cruella.ee.pdx.edu
  95515. Summary: A dialin script that gets the IP number and starts slip
  95516. Keywords: SLIP linux script
  95517. X-Newsreader: NN version 6.5.0 #4 (NOV)
  95518. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  95519.  
  95520. Hi Folks,
  95521.  
  95522. I made a Kermit script that automates dialing into a SLIP server,
  95523. taking the IP number it assigns to you, starting SLIP, doing the
  95524. routing commands. It even takes care of disconnecting through
  95525. killing the slattach process and exiting Kermit.
  95526.  
  95527. It is for Linux, but it should work on other Unixes with only slight
  95528. changes (esp. in the slattach and route command syntax). I also made
  95529. a version for DOS, which I will upload if there is an interest for it.
  95530.  
  95531. When using the script, make sure you change the site-specific settings,
  95532. such as DIAL BPA (must match an entry in your dial directory).
  95533.  
  95534. It asks for your password twice (to guard against typing mistakes) and
  95535. remembers it for 'retry', this is a macro that restarts the script,
  95536. needed if you hit a busy signal.
  95537.  
  95538. Please let me know if you find any flaws, or have other comments.
  95539.  
  95540. --Roland Kwee          <rolandkwee@acm.org>
  95541. -------------------------------------
  95542.  
  95543.  
  95544. #!/usr/bin/kermit
  95545. # slip.bpa   Roland Kwee   Jan. 12, 1995
  95546. # Kermit or shell script or to log in and make a SLIP connection.
  95547. # Usage: kermit -y slip.bpa, or simply: ./slip.bpa
  95548. #      or, if the .kermrc inits bother you: ./slip.bpa -Y
  95549. # Tested: Linux, C-Kermit 5A(190)-1994 
  95550. #         Shiva LanRover/8E, version 3.0.1
  95551.  
  95552. ####################################################################
  95553. # COPYRIGHT (C) 1995 BY ROLAND KWEE (ROLANDKWEE@ACM.ORG).
  95554. # USE OF THIS SOFTWARE IS RESTRICTED TO THOSE WHO ARE
  95555. # LEGALLY AUTHORIZED TO RUN KERMIT:)
  95556. # USE OF THIS SOFTWARE IS AT YOUR OWN RISK!
  95557. ####################################################################
  95558.  
  95559. # for debugging:
  95560. set input echo on # show modem chat
  95561. log session log # store i/o data to file
  95562. #log debug log    # store i/o data and Kermit internal data to file
  95563. #set take echo on # show lines of this script
  95564. #set take error on # terminate script on syntax or execution errors
  95565. #set macro echo on 
  95566. #set macro error on
  95567.  
  95568. assign retry take \v(cmdfile) # Note: GOTO won't work here.
  95569.  
  95570. if = \Flength(\%p) 0 goto ask
  95571. if equal \%p \%x goto dial
  95572. :ask
  95573.  
  95574. assign %d /dev/ttyS2 # device, line
  95575. assign %s 38400      # bitrate modem<-RS232->computer
  95576. assign %h bpa8       # host name as in the dialing directory
  95577. assign %u Roland     # Username
  95578. #      %p password
  95579. #      %x scratch
  95580. #      %r remote IP
  95581. #      %l local IP
  95582.  
  95583. # Collect the password without echo. Exit if mis-typed.
  95584. set line \%d # Don't ask password if the line isn't free.
  95585. if failure stop 1 Serial port is not available.
  95586. echo About to make a SLIP connection to: \%h
  95587. echo User: \%u
  95588. askq \%p Password:
  95589. askq \%x Re-type the password:
  95590. if not equal \%p \%x stop 1 You misspelled it. Start over.
  95591.  
  95592. :dial
  95593.  
  95594. # Collect the password without echo. Exit if mis-typed.
  95595. #echo About to make a SLIP connection to system: \%h
  95596. #echo User: \%u
  95597. #askq \%p Password:
  95598. #askq \%x Re-type the password:
  95599. #if not equal \%p \%x end 1 You misspelled it. Start over.
  95600.  
  95601. # Initialize my Kermit and modem:
  95602. #take /usr/kermit/kermrc
  95603. set modem hayes
  95604. set carrier auto
  95605. #run /usr/kermit/localtty \%d
  95606. # slattach/dip may have left the serial port in raw mode, clean up:
  95607. run stty sane <\%d
  95608. set line  \%d
  95609. set speed \%s
  95610. set dial dial-command atdt%s\13 # Assumes TOUCH-TONE phone line.
  95611. set dial directory /usr/kermit/dial.dir # Kermit's phone book.
  95612. set dial display on # ON or OFF at your convenience.
  95613. #set dial prefix 9 # For dialing from the BPA phone system.
  95614. set dial init-string AT&FL0M0&H3S7=90S40=124\13
  95615. set flow-control rts/cts
  95616. set dial mnp-enable on
  95617. set dial timeout 90
  95618. set input case ignore
  95619. set input silence 0 # Just observe the timeouts specified in the script.
  95620. echo Kermit setup done.
  95621.  
  95622. # Dial.
  95623. dial \%h
  95624. if failure end 1 Could not connect with the remote modem. Try 'retry' later
  95625.  
  95626. # Clear the input buffer. It is a 256-byte circular buffer.
  95627. echo Dialing done.
  95628. clear
  95629.  
  95630. # Get a prompt. Sometimes you need to press Enter more than once.
  95631. wait 5 # Wait a little before starting with asking for a shell prompt.
  95632. echo \13Waiting done.\13
  95633. output \13
  95634. input 1 Userid:
  95635. xif failure {echo \13retry1\13, output \13, input 1 Userid}
  95636. xif failure {echo \13retry2\13, output \13, input 1 Userid}
  95637. xif failure {echo \13retry3\13, output \13, input 1 Userid}
  95638. if failure end 1 No username prompt at remote system.
  95639.  
  95640. # Username.
  95641. wait 2
  95642. echo \13Waiting done(username)\13
  95643. output \%u\13
  95644. input 5 Password?
  95645. if failure end 1 No password prompt at remote system.
  95646.  
  95647. # Password.
  95648. #wait 1
  95649. echo \13Waiting done(password)\13
  95650. output \%p\13
  95651. input 5 >
  95652. if failure end 1 No shell prompt at remote system. Login refused?
  95653.  
  95654. # Protocol.
  95655. wait 1
  95656. output slip\13
  95657.  
  95658. # Remote IP address.
  95659. input 5 {My address is }
  95660. if failure end 1 (My address is)
  95661. clear input-buffer
  95662. input 5 \,
  95663. if failure end 1 (My address is...)
  95664. assign %x \Feval(\Findex(\44, \v(input))-1) # \44 = comma; length of IP addr
  95665. assign \%r \Fsubstring(\v(input), 1, \%x)
  95666.  
  95667. # Local IP address.
  95668. input 5 {Your address is }
  95669. if failure end 1 (Your address is)
  95670. clear input-buffer
  95671. input 5 \,
  95672. if failure end 1 (Your address is...)
  95673. assign %x \Feval(\Findex(\44, \v(input))-1) # \44 = comma; length of IP addr
  95674. assign \%l \Fsubstring(\v(input), 1, \%x)
  95675.  
  95676. # Guard against programming errors in this script before launching slattach.
  95677. if < \Flength(\%l) 4 end 1 Invalid local IP
  95678. if < \Flength(\%r) 4 end 1 Invalid remote IP
  95679.  
  95680. # Change the line discipline to SLIP.
  95681. run /sbin/slattach -v -p slip -s \%s \%d &
  95682. wait 5 # There is no way to find out when slattach is done.
  95683. # Configure the SLIP interface.
  95684. run /sbin/ifconfig sl0 \%l pointopoint \%r netmask 255.255.0.0 mtu 1006
  95685. # Add to the routing table.
  95686. run /sbin/route add -net       53.1.0.0   sl0
  95687. run /sbin/route add default gw 53.1.1.2   sl0
  95688. #run /sbin/route add -net       53.160.0.0 sl0
  95689.  
  95690. # Test the new SLIP connection.
  95691. run ping -c 1 53.1.1.2 # test IP
  95692. #because of slattach, the INPUT won't work anymore
  95693. #input 30 {1 packets received}
  95694. #if not failure echo SLIP CONNECTION WORKS
  95695. run ping -c 1 brick.bpa.gov # test DNS
  95696.  
  95697. # Note that now slattach controls the port. Kermit is only needed so that
  95698. # the lock file isn't stale.
  95699. # The modem will hangup when both Kermit and Slattach are killed.
  95700. # The method below uses the SUSPEND command, so it only works with 
  95701. # login shells that have job control. Most Bourne shells don't work.
  95702. echo +=========================+
  95703. echo | Use 'fg' to disconnect. |
  95704. echo +=========================+
  95705. set suspend on
  95706. suspend # Put Kermit in the background.
  95707.  
  95708. # Starting point after 'fg'.
  95709. run killslattach \%d
  95710. wait 2
  95711. run stty sane <\%d
  95712. exit # This puts Kermit away.
  95713.  
  95714. ============================ End of Kermit script. ================
  95715.  
  95716. This is what the killslattach script should look like:
  95717. --------------cut here---------------cut here-----------------
  95718. #!/bin/sh
  95719. # killslattach, to kill the slattach background job
  95720. # Roland Kwee   Jan. 13, 1995
  95721. # This script takes one command-line argument: the device file.
  95722. set -x
  95723.  
  95724. # Function to parse the first word, containing the PID
  95725. f(){ PID=$1 }
  95726.  
  95727. PS=`ps|grep slattach.*$1|grep -v grep`
  95728. #echo process: $PS
  95729. f $PS
  95730. kill -INT $PID # This kills slattach and restores the line mode.
  95731.  
  95732. # Further normalize the serial line.
  95733. localtty /dev/ttyS2
  95734. stty sane </dev/ttyS2
  95735. --------------cut here---------------cut here-----------------
  95736.  
  95737. This is what the localtty program looks like:
  95738. --------------cut here---------------cut here-----------------
  95739. /* localtty.c   Roland Kwee   Feb. 12, 1995
  95740.    Build with: gcc -o localtty localtty.c
  95741.    Usage: localtty /dev/ttyS2
  95742.    This program sets the CLOCAL flag without which on some systems 
  95743.    Kermit's SET LINE  would not work.
  95744.  */
  95745. #include <stdio.h>
  95746. #include <stdlib.h>
  95747. #include <fcntl.h>
  95748. #include <termios.h>
  95749. #include <unistd.h>
  95750.  
  95751. void syserr(char *s){
  95752.     fprintf(stderr, "system error: %s\n", s);
  95753.     exit(-1);
  95754. }
  95755.  
  95756. main(int argc, char *argv[]){
  95757.     int fd;
  95758.     struct termios tbuf;
  95759.  
  95760.     if(argc<2){
  95761.         fprintf(stderr, "localtty <dev>\n");
  95762.         exit(-1);
  95763.     }
  95764.  
  95765.     fd=open(argv[1], O_RDWR|O_NONBLOCK);
  95766.     if(fd== -1){
  95767.         fprintf(stderr, "Could not open device: %s\n", argv[1]);
  95768.         exit(-1);
  95769.     }
  95770.  
  95771.     if(tcgetattr(fd, &tbuf)== -1) syserr("tcgetattr()");
  95772.     tbuf.c_cflag |= CLOCAL;
  95773.     if(tcsetattr(fd, TCSANOW, &tbuf)== -1) syserr("tcsetattr()");
  95774.  
  95775.     exit(0);
  95776. }
  95777. --------------cut here---------------cut here-----------------
  95778.  
  95779. From news@columbia.edu Wed Mar  1 16:55:48 1995
  95780. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05372
  95781.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 1 Mar 1995 13:59:15 -0500
  95782. Received: by apakabar.cc.columbia.edu id AA09280
  95783.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 1 Mar 1995 13:59:13 -0500
  95784. Newsgroups: comp.protocols.kermit.misc
  95785. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!howland.reston.ans.net!ix.netcom.com!netcom.com!helios
  95786. From: helios@netcom.com (Thomas David Nichols)
  95787. Subject: Re: Throughput with MSKermit 3.13?
  95788. Message-Id: <heliosD4rtp1.44u@netcom.com>
  95789. Organization: Heliotrope Quality Systems
  95790. X-Newsreader: TIN [version 1.2 PL1]
  95791. References: <3iqqgd$rm1@ns2-1.CC.Lehigh.EDU>
  95792. Date: Wed, 1 Mar 1995 16:55:48 GMT
  95793. Lines: 13
  95794. Sender: helios@netcom13.netcom.com
  95795. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  95796.  
  95797. ky04@Lehigh.EDU wrote:
  95798. :  How do you get 1680cps? With packetlength 1000, I get 1000cps or so.
  95799.  
  95800. My guess is that you have not removed prefixing from any control 
  95801. characters.  This is being discussed in some other threads, and it is in 
  95802. the distribution files.  I get 1060 cps with the default (all codes 
  95803. prefixed) and close to 1500 with a small set of prefixes.
  95804.  
  95805.  
  95806.  
  95807.  
  95808. -- 
  95809. David Nichols  <helios@netcom.com>  Heliotrope Quality Systems
  95810.  
  95811. From news@columbia.edu Thu Feb 23 22:15:52 1995
  95812. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06490
  95813.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 1 Mar 1995 14:18:53 -0500
  95814. Received: by apakabar.cc.columbia.edu id AA11495
  95815.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 1 Mar 1995 14:18:50 -0500
  95816. Newsgroups: comp.protocols.kermit.misc
  95817. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!news.mathworks.com!zombie.ncsc.mil!cs.umd.edu!haven.umd.edu!purdue!mozo.cc.purdue.edu!news.physics.purdue.edu!london.physics.purdue.edu!korty
  95818. From: korty@london.physics.purdue.edu (Andrew J. Korty)
  95819. Subject: Re: control prefixing: uploads/downloads???
  95820. Message-Id: <D4H4IH.64E@physics.purdue.edu>
  95821. Sender: usenet@physics.purdue.edu (News Administration)
  95822. Organization: Physics Department, Purdue University
  95823. References: <3ii5ng$l1o@cronkite.ocis.temple.edu>
  95824. Date: Thu, 23 Feb 1995 22:15:52 GMT
  95825. Lines: 29
  95826. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  95827.  
  95828. In article <3ii5ng$l1o@cronkite.ocis.temple.edu>,
  95829. Cyber Flunk <tito@jedi.cis.temple.edu> wrote:
  95830. >
  95831. >    In my efforts to optimize my kermit transfers as per the
  95832. >recommendations in the faq, I've come across a strange and annoying
  95833. >phenomenon.  The set of control prefix characters which work fine for
  95834. >downloads do not work for uploads.  That is, if I download files from
  95835. >the school's remote unix host, everything works swell.  When I try to
  95836. >upload, however, the transfer invariably dies on the first packet.
  95837. >I'm reasonably certain that this is a control character prefix issue
  95838. >as I can upload without problems using all the same settings except
  95839. >those concerning control character prefixing.  
  95840. >
  95841. >    Tito
  95842.  
  95843. Yes, I've had exactly that happen with me, too.  Although the Purdue
  95844. University Computing Center refuses to agree with me, I find that the
  95845. necessary control prefixing for my configuration is to prefix none of
  95846. the characters when downloading, but to prefix character 255 when
  95847. uploading.  I don't know what this character means, so I have dubbed
  95848. it the "send-three-packets-and-die character," because that is the
  95849. command it seems to send to the terminal server.  
  95850.  
  95851. Unfortunately, the way I solved this problem was by trial and error.
  95852. I just prefixed all the characters, and then unprefixed them one by
  95853. one until I got an error.  So, this rather tedious solution is the one
  95854. I suggest.  Good luck!
  95855.  
  95856. Andy
  95857.  
  95858. From news@columbia.edu Fri Feb 24 07:38:18 1995
  95859. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04121
  95860.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 1 Mar 1995 22:31:45 -0500
  95861. Received: by apakabar.cc.columbia.edu id AA25944
  95862.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 1 Mar 1995 22:31:43 -0500
  95863. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!panix!cmcl2!yale.edu!news.ycc.yale.edu!morpheus!gam
  95864. From: Greg Mouning <gam@minerva.cis.yale.edu>
  95865. Newsgroups: comp.protocols.kermit.misc
  95866. Subject: Re: Kermit 3.14 and Winsock
  95867. Date: Fri, 24 Feb 1995 02:38:18 -0500
  95868. Organization: Yale University
  95869. Lines: 55
  95870. Message-Id: <Pine.SOL.3.91.950224022329.23775A-100000@morpheus>
  95871. References: <1995Feb15.164229.6472@unvax.union.edu> <3i2ru6$4ua@infa.central.susx.ac.uk> <3ibgjl$pjo@Mercury.mcs.com>
  95872. Nntp-Posting-Host: morpheus.cis.yale.edu
  95873. Mime-Version: 1.0
  95874. Content-Type: TEXT/PLAIN; charset=US-ASCII
  95875. X-Sender: gam@morpheus
  95876. In-Reply-To: <3ibgjl$pjo@Mercury.mcs.com> 
  95877. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  95878.  
  95879. Hello,
  95880.  
  95881. I just downloaded a copy of Kermit for Windows and it works
  95882. very well.  Terminal emulation and file transfers were successful.
  95883. Finally, a true (native) Windows version of Kermit.
  95884.  
  95885. According to the manual Wayne Warthen says:
  95886.  
  95887. The following limitations exist in the current version of Kermit for 
  95888. Windows:
  95889.  
  95890.     *    There is no scripting facility yet.
  95891.     *    There is no ability to direct terminal output to a 
  95892.         printer yet.
  95893.     *    File handling options are currently very limited. All 
  95894.         received files overlay existing files and files are always 
  95895.         downloaded to the current directory.
  95896.     *    No session logging capabilities exist yet.
  95897.  
  95898. Even without these features I find this to be a very good package.
  95899.  
  95900. Thanks Mr. Warthen, I look forward to your improvements.
  95901.  
  95902. Greg Mouning
  95903. gam@yalevm.cis.yale.edu
  95904.  
  95905.  On 20 Feb 1995, Leslie Mikesell wrote:
  95906.  
  95907. > In article <3i2ru6$4ua@infa.central.susx.ac.uk>,
  95908. > Leila Burrell-Davis <leilabd@central.susx.ac.uk> wrote:
  95909. > >Mary P. McKnight (mcknighm@unvax.union.edu) wrote:
  95910. > >% I have been attempting to get Kermit 3.14 (using TCP/IP) to work thru
  95911. > >% Windows 3.1.  I can get it to work outside of Windows without any
  95912. > >% problems.  However, from within Windows I get the following error
  95913. > >% message:
  95914. > >
  95915. > >You can get pktmux from SimTel mirrors - it's got a whacking great
  95916. > >manual. (Its home site was ftp.cc.rl.ac.uk:/pub/pcsupp/network/pktmux
  95917. > >last time I looked.) 
  95918. > There is something that looks remarkably like a native windows version
  95919. > of kermit with both com port and winsock support available from:
  95920. > kaiwan.kaiwan.com:/user/wwarthen/kmw080.zip  (16 bit) and
  95921. > kaiwan.kaiwan.com:/user/wwarthen/kmn080.zip  (32 bit NT).
  95922. > It doesn't have scripting yet but most of the other kermit functions
  95923. > appear to be there.  I hope there aren't any ugly copyright issues
  95924. > that affect this version later.  At the moment the only restriction
  95925. > on redistribution seems to be that you have to keep the original
  95926. > files together.
  95927. > Les Mikesell
  95928. >   les@mcs.com
  95929.  
  95930. From news@columbia.edu Fri Feb 24 12:25:03 1995
  95931. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05612
  95932.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 1 Mar 1995 23:16:17 -0500
  95933. Received: by apakabar.cc.columbia.edu id AA29105
  95934.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 1 Mar 1995 23:16:14 -0500
  95935. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!olivea!charnel.ecst.csuchico.edu!psgrain!news.teleport.com!news.teleport.com!not-for-mail
  95936. From: sysone@teleport.com (FIGHT THE POWER)
  95937. Newsgroups: comp.protocols.kermit.misc
  95938. Subject: Re: IBM 3278 to UNIX via Kermit...?
  95939. Date: 24 Feb 1995 04:25:03 -0800
  95940. Organization: Teleport - Portland's Public Access (503) 220-1016
  95941. Lines: 57
  95942. Message-Id: <3ikj6v$op@kelly.teleport.com>
  95943. References: <3i74qp$no0@linda.teleport.com> <3ig0n5$62g@apakabar.cc.columbia.edu>
  95944. Nntp-Posting-Host: kelly.teleport.com
  95945. Summary: Recasting my question...
  95946. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  95947.  
  95948. In article <3ig0n5$62g@apakabar.cc.columbia.edu>,
  95949. John Chandler <pepmnt@watsun.cc.columbia.edu> wrote:
  95950. >It's not clear what you mean by "assist" in connecting to a Unix system.
  95951. >If your IBM system has telnet capability at all, it should have a TELNET
  95952. >command that does all you need to connect.  There is no way to avoid the
  95953. >requirement that you hit the ENTER key in order to transmit something to
  95954. >the Unix host, so what are you looking for?  Surely, you don't want to
  95955. >have a "script" that automatically supplies the userid and password for
  95956. >logging on (that's easy to do, but a big security risk)??  I suppose, if
  95957. >you really wanted that, and were connecting to the IBM system from a PC
  95958. >running Kermit as the terminal emulator, you could have a script in the
  95959. >PC Kermit to do that sort of thing, but I presume you're after something
  95960. >else...
  95961. >                    John Chandler
  95962.  
  95963.     Oops. I guess I didn't phrase that quite right. Here goes
  95964. again. I must point out, however, that I'm attempting to help
  95965. someone else unravel this problem, and I don't have first-hand
  95966. IBM experience. Having made that warning...
  95967.  
  95968.     Suppose I have an account on an IBM mainframe, and I can
  95969. log in/out, handle files &c. with a reasonable level of
  95970. competence. Suppose also that I have the means to connect to a
  95971. remote UNIX system at some other site -- perhaps by using a
  95972. TCP/IP internet. I'm interested in connecting to my UNIX account
  95973. to read mail from friends and to access an unrestricted USENET
  95974. feed.
  95975.     I run into a problem when I try to log onto the remote
  95976. system though: It doesn't know how to deal with my IBM system.
  95977. For one thing, it can't find a TERMCAP or TERMINFO entry to match
  95978. my machine (it says it's looking for a ....3278 entry).
  95979.     Another problem is that IBMs like to buffer things a
  95980. line-at-a-time or a screen-at-a-time. This is a problem when
  95981. trying to "talk" to a UNIX system which deals with individual
  95982. characters: How do I access my mail and news on the UNIX end if
  95983. my mail and news readers are full-screen programs expecting
  95984. characters to be sent as soon as I press each key?
  95985.     Someone told me about something called "ANET" which would
  95986. allow me to connect to a remote UNIX system. What's that?
  95987.  
  95988.     Anyway, this roughly summarizes the situation. I'm not
  95989. worried about session automation, and I'm definitely NOT planning
  95990. to store my password on any machine, local or remote.
  95991.     So is there some flavor of TELNET available to facilitate
  95992. this kind of connection? Is the buffering-protocol conversion
  95993. insurmountable? Does there exist a Kermit flavor to help with
  95994. this? Will ANET help? Will a TERMCAP/TERMINFO entry help if I can
  95995. get it for the UNIX system?
  95996.     Thanks again in advance for any advice... I hope I
  95997. managed to communicate the nature of the problem this time. (To
  95998. anyone who's answered via email, I have sent separate replies
  95999. also. I appreciate your time.)
  96000. -- 
  96001. The worst sin towards our fellow creatures is not to hate them,
  96002. but to be indifferent to them; thats the essence of inhumanity.
  96003. - Bernard Shaw, _The Devil's Disciple_, 1897. {Finger for PGP
  96004. key/info}  sysone@teleport.com  http://www.teleport.com/~sysone
  96005.  
  96006. From news@columbia.edu Fri Feb 24 20:23:03 1995
  96007. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21318
  96008.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 3 Mar 1995 03:16:07 -0500
  96009. Received: by apakabar.cc.columbia.edu id AA13247
  96010.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 3 Mar 1995 03:16:05 -0500
  96011. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!panix!news.mathworks.com!news.alpha.net!pacifier!pacifier!not-for-mail
  96012. From: mikef@pacifier.com (Mike Freeman)
  96013. Newsgroups: comp.protocols.kermit.misc
  96014. Subject: Re: binary file conversion
  96015. Date: 24 Feb 1995 12:23:03 -0800
  96016. Organization: none
  96017. Lines: 31
  96018. Message-Id: <3ilf78$9i1@pacifier.com>
  96019. References: <3i6eog$44p@newstand.syr.edu> <3i8sna$3rk@newstand.syr.edu> <1995Feb19.211951.42247@cc.usu.edu> <3i9mq4$ect@newstand.syr.edu>
  96020. Nntp-Posting-Host: pacifier.com
  96021. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  96022.  
  96023. In article <3i9mq4$ect@newstand.syr.edu>,
  96024. Ethan J. Rasiel <ejrasiel@forbin.syr.edu> wrote:
  96025. >
  96026. >Sounds like a good theory, but 2 things come to mind:
  96027. >
  96028. >1) Is it possible to mail to an ftp site? 
  96029. >
  96030. Yes, if one uses an ftpmail server to gain access to ftp sites
  96031. via E-mail.
  96032. >
  96033. >2) The person who uploaded one of these files mentioned in an text
  96034. >file along with the file that even though it was 17 megs on the site,
  96035. >it was really only 10 megs.  uuencoded files increase in size
  96036. >similarly, since data that took up 8 bits now only had 7.
  96037. >
  96038. Sounds to me like the person uploading the file(s) forgot to set
  96039. his/her ftp program to image or binary mode before uploading the
  96040. file(s).  This would most definitely result in larger uploaded files
  96041. than the originals.  You'd have to look thru the RFC's to find the conventions
  96042. for ftp ASCII transfers in order to reverse them.  Even then, I'm afraid,
  96043. it would be a lost cause as, as Professor Dupnik says, the high-bit of
  96044. characters would be chopped off.
  96045.  
  96046. I'd notify the keepers of the various ftp sites of the broken files
  96047. so said files can be zapped!
  96048.  
  96049. Good luck!
  96050. -- 
  96051. Mike Freeman            |       Internet: mikef@pacifier.com
  96052. GEnie: M.FREEMAN11      |       Amateur Radio Callsign: K7UIJ
  96053. ... Take my advice; I certainly don't use it!
  96054.  
  96055. From news@columbia.edu Fri Feb 24 21:21:11 1995
  96056. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24505
  96057.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 3 Mar 1995 04:49:35 -0500
  96058. Received: by apakabar.cc.columbia.edu id AA16510
  96059.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 3 Mar 1995 04:49:34 -0500
  96060. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!tymix.Tymnet.COM!tardis.Tymnet.COM!tardis.Tymnet.COM!not-for-mail
  96061. From: jms@tardis.Tymnet.COM (Joe Smith)
  96062. Newsgroups: comp.protocols.kermit.misc
  96063. Subject: Re: Re [2]: MS-Kermit 3.14 mode line won't stay off.
  96064. Date: 24 Feb 1995 13:21:11 -0800
  96065. Organization: MCI Data Services, TYMNET Global Network Operations
  96066. Lines: 27
  96067. Message-Id: <3ilik7$fi8@tardis.Tymnet.COM>
  96068. References: <3i6g5n$ju@apakabar.cc.columbia.edu> <3i8cg9$c6k@ulowell.uml.edu> <1995Feb19.171748.42230@cc.usu.edu>
  96069. Nntp-Posting-Host: tardis.tymnet.com
  96070. Summary: When did line 25 first show up?
  96071. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  96072.  
  96073. >In article <3i8cg9$c6k@ulowell.uml.edu>, mbecker@neptune.cs.uml.edu (Mark Becker) writes:
  96074. >>  a) Does the VT-100 have a 25th line?
  96075. In article <1995Feb19.171748.42230@cc.usu.edu> jrd@cc.usu.edu (Joe Doupnik) writes:
  96076. >    Yes, it's status line.
  96077.  
  96078. Question: Which terminal from DEC first had the 25th line?
  96079.  
  96080. The VT100 did not have it; it was limited to 24 lines only.
  96081. Same for the VT102, VT105, VT106, VT125, VT180.
  96082.  
  96083. I'm not sure if the VT220 had it, but I'm fairly sure that the VT3xx
  96084. and VT4xx terminals do.
  96085.  
  96086.   (Technical nit pick: Actually, the VT100 could display more than
  96087.   just 24 lines; it could display 23 and 2 halves.  During smooth
  96088.   scrolling, the bottom half of the previous line 1 would be visible,
  96089.   lines 2-24 fully visible, and the top half of the new line 25 just
  96090.   starting to come into view.  But since this was a transient condition,
  96091.   it doesn't count as a full 25 lines on screen at the same time.)
  96092.  
  96093.     -Joe
  96094.  
  96095. -- 
  96096. Joe Smith     MCI Data and Information Services, TYMNET Operations Tech Support
  96097. <jms@tymnet.com> 2560 N 1st St, 5046/746, San Jose, CA 95131 (408)922-6220 v854
  96098. CA license plate: "POPJ P,"  36-bits forever! (4 Tymshare PDP-10s still going!)
  96099. Humorous disclaimer: "My Amiga 3000 speaks for me."
  96100.  
  96101. From news@columbia.edu Sun Feb 25 01:25:46 1995
  96102. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02921
  96103.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 3 Mar 1995 08:11:37 -0500
  96104. Received: by apakabar.cc.columbia.edu id AA02177
  96105.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 3 Mar 1995 08:11:35 -0500
  96106. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!gatech!psuvax1!news.ecn.bgu.edu!feenix.metronet.com!fohnix.metronet.com!not-for-mail
  96107. From: jhuber@fohnix.metronet.com (Joseph Huber)
  96108. Newsgroups: comp.protocols.kermit.misc
  96109. Subject: Re: ZMODEM VS KERMIT
  96110. Date: 24 Feb 1995 19:25:46 -0600
  96111. Organization: Texas Metronet Communications Services, Dallas TX
  96112. Lines: 21
  96113. Message-Id: <3im0uq$eo@fohnix.metronet.com>
  96114. References: <D4Bv29.Fnt@omen.COM> <3ie4th$6ij@fohnix.metronet.com> <samurdock-2302951511460001@torgo.umkc.edu>
  96115. Nntp-Posting-Host: fohnix.metronet.com
  96116. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  96117.  
  96118. samurdock@cctr.umkc.edu (Scott Murdock) writes:
  96119. >(Joseph Huber) wrote:
  96120. >>caf@omen.COM (Chuck Forsberg WA7KGX) writes:
  96121. >>>The FAQ Kermit author Joe D. recommends refers to the discredited
  96122. >>>Columbia Kermit News "True Life Benchmarks". 
  96123. >> Just how and by whom was "True Life Benchmarks" discredited?  
  96124. >I downloaded and looked at the document [which discredits TLB]
  96125. >last night (a sad attempt at a
  96126. >multimedia document, I might add), and after reading the whole thing, guess
  96127. >who it turns out the author is?  Chuck Forsberg.  He did the discrediting
  96128. >himself.  Wow, now there's an unbiased claim that "True Life Benchmarks" was
  96129. >discredited! 
  96130.  
  96131. In addition, from what I was able to read, this "report" is woefully
  96132. incomplete. How someone could claim that this report discredits "True Life
  96133. Benchmarks" is beyond me.
  96134.  
  96135. -- 
  96136. Joe Huber
  96137. jhuber@metronet.com
  96138. 817-557-3186
  96139.  
  96140. From news@columbia.edu Sat Feb 25 04:46:52 1995
  96141. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10366
  96142.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 3 Mar 1995 10:38:55 -0500
  96143. Received: by apakabar.cc.columbia.edu id AA08608
  96144.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 3 Mar 1995 10:38:53 -0500
  96145. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!usc!howland.reston.ans.net!news.cac.psu.edu!ppp108.cac.psu.edu!rab166
  96146. From: rab166@psu.edu (Ron Burkett)
  96147. Newsgroups: comp.protocols.kermit.misc
  96148. Subject: what talk program to use with kemit
  96149. Date: Sat, 25 Feb 1995 04:46:52 GMT
  96150. Organization: CAC
  96151. Lines: 11
  96152. Message-Id: <rab166.8.2F4EB63B@psu.edu>
  96153. Nntp-Posting-Host: ppp108.cac.psu.edu
  96154. X-Authinfo-User: rab166@psu.edu
  96155. X-Newsreader: Trumpet for Windows [Version 1.0 Rev B]
  96156. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  96157.  
  96158. I was wondering what talk clients run well with kermit.....i've been trying to 
  96159. find one for my sister at IUP, and i am only familiar with winsock 
  96160. applications as of thats what we use here at Penn State.  I really don't know 
  96161. anymore information about what platform she is running on so any information 
  96162. even if its quite broad will help.  Oh....and i'm refering to talk 
  96163. programs...not irc.  
  96164.  
  96165. -thanks
  96166.  
  96167. -Ron Burkett
  96168.  TheKing@psu.edu
  96169.  
  96170. From news@columbia.edu Sat Feb 25 03:01:48 1995
  96171. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10813
  96172.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 3 Mar 1995 10:44:36 -0500
  96173. Received: by apakabar.cc.columbia.edu id AA08980
  96174.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 3 Mar 1995 10:44:04 -0500
  96175. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!panix!news.mathworks.com!udel!gatech!howland.reston.ans.net!usc!nic-nac.CSU.net!news.Cerritos.edu!news.Arizona.EDU!math.arizona.edu!noao!ncar!newshost.lanl.gov!news.ttu.edu!ttmath!mmettler
  96176. From: mmettler@ttmath.ttu.edu (Michael J. Mettler)
  96177. Newsgroups: comp.protocols.kermit.misc
  96178. Subject: Throughput with MSKermit 3.13?
  96179. Date: 25 Feb 1995 03:01:48 GMT
  96180. Organization: Texas Tech Mathematics Dept.
  96181. Lines: 14
  96182. Message-Id: <3im6is$a2p@hydra.acs.ttu.edu>
  96183. Nntp-Posting-Host: ttmath.ttu.edu
  96184. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  96185.  
  96186. I recently purchased a USR Sportster 14.4 modem to do some
  96187. work from home.  I am using MSKermit 3.13 and doing a lot of
  96188. downloading of compressed files.  What kind of speed should I
  96189. be getting?  I can only get up to about 1500-1600 cps (as
  96190. reported by MSKermit in 'show statistics'), but a friend of
  96191. mine claims to be getting twice that (with same CPU, connecting
  96192. to the same Unix machine, the same software, and the same modem
  96193. speed (though a different brand)).  I've looked at his kermit
  96194. initialization files and they seem the same as mine.  Any 
  96195. ideas?  
  96196.  
  96197. Thanks.
  96198.  
  96199. Michael J. Mettler
  96200.  
  96201. From news@columbia.edu Fri Mar  3 15:19:32 1995
  96202. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11863
  96203.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 3 Mar 1995 10:59:41 -0500
  96204. Received: by apakabar.cc.columbia.edu id AA10328
  96205.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 3 Mar 1995 10:59:39 -0500
  96206. Newsgroups: comp.protocols.kermit.misc
  96207. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!howland.reston.ans.net!ix.netcom.com!netcom.com!helios
  96208. From: helios@netcom.com (Thomas David Nichols)
  96209. Subject: Re: It's been asked a million times before...
  96210. Message-Id: <heliosD4vEKK.9xy@netcom.com>
  96211. Organization: Heliotrope Quality Systems
  96212. X-Newsreader: TIN [version 1.2 PL1]
  96213. References: <D4tqAJ.I0p@utnetw.utoledo.edu>
  96214. Date: Fri, 3 Mar 1995 15:19:32 GMT
  96215. Lines: 7
  96216. Sender: helios@netcom9.netcom.com
  96217. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  96218.  
  96219. When I need to receive zmodem during an MS-Kermit session, I escape to 
  96220. control mode and call macro "sz" which contains "run zmodem ..."
  96221. according to the instructions that came with the zmodem program.  I
  96222. saw a suggestion to define a key to call the macro if you use it often.
  96223.  
  96224. -- 
  96225. David Nichols  <helios@netcom.com>  Heliotrope Quality Systems
  96226.  
  96227. From news@columbia.edu Fri Mar  3 20:54:45 1995
  96228. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00343
  96229.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 3 Mar 1995 15:55:19 -0500
  96230. Received: by apakabar.cc.columbia.edu id AA09941
  96231.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 3 Mar 1995 15:55:13 -0500
  96232. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  96233. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  96234. Newsgroups: comp.protocols.kermit.misc
  96235. Subject: Re: Throughput with MSKermit 3.13?
  96236. Date: 3 Mar 1995 20:54:45 GMT
  96237. Organization: Columbia University
  96238. Lines: 26
  96239. Message-Id: <3j7vml$9l6@apakabar.cc.columbia.edu>
  96240. References: <3im6is$a2p@hydra.acs.ttu.edu>
  96241. Nntp-Posting-Host: watsun.cc.columbia.edu
  96242. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  96243.  
  96244. In article <3im6is$a2p@hydra.acs.ttu.edu>,
  96245. Michael J. Mettler <mmettler@ttmath.ttu.edu> wrote:
  96246. >I recently purchased a USR Sportster 14.4 modem to do some
  96247. >work from home.  I am using MSKermit 3.13 and doing a lot of
  96248. >downloading of compressed files.  What kind of speed should I
  96249. >be getting?  I can only get up to about 1500-1600 cps (as
  96250. >reported by MSKermit in 'show statistics')
  96251. >
  96252. If you're transferring precompressed files (such as ZIP files),
  96253. that will be about tops for a V.32bis (14400 bps) connection,
  96254. no matter what protocol you use.  You evidently have already
  96255. tuned Kermit for peak performance, and so do not need to be
  96256. directed to the FAQ for hints on this subject.
  96257.  
  96258. >... but a friend of mine claims to be getting twice that (with
  96259. >same CPU, connecting to the same Unix machine, the same
  96260. >software, and the same modem speed (though a different brand)).
  96261. >I've looked at his kermit initialization files and they seem
  96262. >the same as mine.  Any ideas?
  96263. >
  96264. Evidently your friend is transferring files that are not
  96265. precompressed, in which case your modem's and/or Kermit's
  96266. built-in compression work to increase the effective transfer
  96267. rate.
  96268.  
  96269. - Frank
  96270.  
  96271. From news@columbia.edu Fri Mar  3 21:00:26 1995
  96272. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00837
  96273.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 3 Mar 1995 16:00:54 -0500
  96274. Received: by apakabar.cc.columbia.edu id AA10427
  96275.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 3 Mar 1995 16:00:51 -0500
  96276. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  96277. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  96278. Newsgroups: comp.protocols.kermit.misc
  96279. Subject: Re: what talk program to use with kemit
  96280. Date: 3 Mar 1995 21:00:26 GMT
  96281. Organization: Columbia University
  96282. Lines: 24
  96283. Message-Id: <3j801a$a4m@apakabar.cc.columbia.edu>
  96284. References: <rab166.8.2F4EB63B@psu.edu>
  96285. Nntp-Posting-Host: watsun.cc.columbia.edu
  96286. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  96287.  
  96288. In article <rab166.8.2F4EB63B@psu.edu>, Ron Burkett <rab166@psu.edu> wrote:
  96289. >I was wondering what talk clients run well with kermit.....i've been trying
  96290. >to find one for my sister at IUP, and i am only familiar with winsock
  96291. >applications as of thats what we use here at Penn State.  I really don't know
  96292. >anymore information about what platform she is running on so any information
  96293. >even if its quite broad will help.
  96294. >
  96295. Kermit gives you a terminal emulator to a host or service.  The talk
  96296. application is on the host or service that you are connecting to with Kermit.
  96297. Fancy ones divide the screen into two (or more) windows, one for each party.
  96298. To do this, they send screen-control escape sequences to the terminal --
  96299. in this case to Kermit.  So the only things you need to know are (a) what
  96300. talk applications are available on your host or service (which you would
  96301. find out from your local support people at IUP), and (b) how to make sure
  96302. your host or service is using a terminal type, such as VT100 or VT320,
  96303. that is supported by Kermit.
  96304.  
  96305. Kermit's VT emulation is excellent, so talk clients that exercise advanced
  96306. VT terminal features will work better with Kermit than with most other
  96307. emulators.
  96308.  
  96309. Talk clients generally have names like "talk", "chat", or "phone".
  96310.  
  96311. - Frank
  96312.  
  96313. From news@columbia.edu Sun Feb 26 11:23:02 1995
  96314. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07614
  96315.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 3 Mar 1995 17:35:31 -0500
  96316. Received: by apakabar.cc.columbia.edu id AA20637
  96317.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 3 Mar 1995 17:35:27 -0500
  96318. Path: news.columbia.edu!panix!bloom-beacon.mit.edu!gatech!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  96319. From: jrd@cc.usu.edu (Joe Doupnik)
  96320. Newsgroups: comp.protocols.kermit.misc
  96321. Subject: Re: Throughput with MSKermit 3.13?
  96322. Message-Id: <1995Feb26.172302.43018@cc.usu.edu>
  96323. Date: 26 Feb 95 17:23:02 MDT
  96324. References: <3iqqgd$rm1@ns2-1.CC.Lehigh.EDU>
  96325. Organization: Utah State University
  96326. Lines: 45
  96327. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  96328.  
  96329. In article <3iqqgd$rm1@ns2-1.CC.Lehigh.EDU>, ky04@Lehigh.EDU writes:
  96330. > In article <3ioq50$5n@hustle.rahul.net>, Clarence Dold <dold@rahul.net> writes:
  96331. >>Michael J. Mettler (mmettler@ttmath.ttu.edu) wrote:
  96332. >>: I recently purchased a USR Sportster 14.4 modem to do some
  96333. >>: work from home.  I am using MSKermit 3.13 and doing a lot of
  96334. >>: downloading of compressed files.  What kind of speed should I
  96335. >>: be getting?  I can only get up to about 1500-1600 cps (as
  96336. >>
  96337. >>Pre-compressed files max out, theoretically, at about 1680cps, regardless of
  96338. >>protocol.  That's all the bits that will fit on a 14.4 modem.
  96339. >>
  96340. >>Text files may transfer at 3000 or so, using Kermit.  This must be what your
  96341. >>friend is seeing.
  96342. >>
  96343. >  How do you get 1680cps? With packetlength 1000, I get 1000cps or so.
  96344. > What parameters should I tune. The max speed on the mainframe is 38400, and
  96345. > Kermit reports 20% efficiency.                            
  96346. > ky04@lehigh.edu            
  96347. -----------------
  96348.     Two possibilities come to mind, assuming that you have reviewed
  96349. the advice given in the distribution material (if not get the MSK 3.14
  96350. set binary file kermit/bin/msvibm.zip from kermit.columbia.edu).
  96351.     First, you may not be using sliding windows. SET WINDOW 4 is a nice
  96352. value, on both ends of the conversation.
  96353.     Second, the other end has to play along, and you don't indicate
  96354. what it might be. If it is say ancient Kermit-32 then run, don't walk,
  96355. to your system administrator and get C Kermit 5A(190) installed on that
  96356. VAX. [Grab from above, directory kermit/c-kermit, stuff is ready to go
  96357. for many systems.] If the other end is a BBS of some kind then the quality
  96358. of the Kermit program there is often (too often) pretty terrible, and we
  96359. do offer "the real thing" as MSK-LITE for BBS use. 
  96360.     As a reminder about modem numbers, that 38,400 bps value is the
  96361. maximum rate at which data flows between the modem and the computer, 
  96362. irrespective of the data rate on the telco wires. If the modems connect
  96363. at say 2400 bps then that's the bottleneck. Also, Kermit doesn't know
  96364. what the telco speed happens to be, so the efficiency value is computed at
  96365. the modem<->computer data rate; inflate by the ratio of local/telco bps.
  96366. For example, a 9600 bps connection and a 38,400 bps "DTE" speed would yield
  96367. an apparent efficiency of 25% (38400 / 9600 = 4) under ideal conditions.
  96368.     I can't say more without knowing what's on the other end of the wire.
  96369.  
  96370.     May I also remind readers to grab the list's FAQ which is file
  96371. FAQ.TXT (upper case) in directory kermit on kermit.columbia.edu. Many
  96372. questions are pre-answered in it.
  96373.     Joe D.
  96374.  
  96375. From news@columbia.edu Sun Feb 26 11:07:11 1995
  96376. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07638
  96377.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 3 Mar 1995 17:35:49 -0500
  96378. Received: by apakabar.cc.columbia.edu id AA20620
  96379.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 3 Mar 1995 17:35:48 -0500
  96380. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  96381. From: jrd@cc.usu.edu (Joe Doupnik)
  96382. Newsgroups: comp.protocols.kermit.misc
  96383. Subject: Re: VT emulation  problems
  96384. Message-Id: <1995Feb26.170712.43017@cc.usu.edu>
  96385. Date: 26 Feb 95 17:07:11 MDT
  96386. References: <3iqsam$3aj1@ns2-1.CC.Lehigh.EDU>
  96387. Organization: Utah State University
  96388. Lines: 22
  96389. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  96390.  
  96391. In article <3iqsam$3aj1@ns2-1.CC.Lehigh.EDU>, ky04@Lehigh.EDU writes:
  96392. > The problems arise with graphics when emulating VT320 terminals. I dial out
  96393. > to work to use MATLAB, in which I can set  terminal as KERMIT. I have 
  96394. > comm software which  uses MSKERM314.
  96395. > Wheb I display graphics, I can't see plot at all: 
  96396. > I only see codes on the screen.
  96397. > Kermit gives a message "NO GRAPHICS, NO NETWORK" at start. How do I correct
  96398. > this problem. 
  96399. > I checked SHOW TERM which gives, among other things:
  96400. > Term video writing: direct
  96401. > display: regular, 7-bits
  96402. > term controls: 7-bits
  96403. > term code-page: CP437
  96404. --------------
  96405.     You have the "medium" edition which is shrunk in size by omitting
  96406. those features above. Please do read the docs accompanying the distribution.
  96407. Grab the quick-start distribution binary file kermit/bin/msvibm.zip from
  96408. kermit.columbia.edu. For all features use the full edition.
  96409.     Joe D.
  96410.  
  96411. From news@columbia.edu Sat Feb 25 15:55:28 1995
  96412. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13433
  96413.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 3 Mar 1995 19:07:43 -0500
  96414. Received: by apakabar.cc.columbia.edu id AA29908
  96415.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 3 Mar 1995 19:07:41 -0500
  96416. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!swiss.ans.net!gatech!udel!news.mathworks.com!news.kei.com!world!blanket.mitre.org!linus.mitre.org!news.mitre.org!mwunix!jcmorris
  96417. From: jcmorris@mwunix.mitre.org (Joe Morris)
  96418. Newsgroups: comp.protocols.kermit.misc
  96419. Subject: Re: IBM 3278 to UNIX via Kermit...?
  96420. Date: 25 Feb 1995 15:55:28 GMT
  96421. Organization: The MITRE Corporation
  96422. Lines: 48
  96423. Message-Id: <3injtg$5n0@reuters2.mitre.org>
  96424. References: <3i74qp$no0@linda.teleport.com> <3ig0n5$62g@apakabar.cc.columbia.edu> <3ikj6v$op@kelly.teleport.com>
  96425. Nntp-Posting-Host: mwunix.mitre.org
  96426. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  96427.  
  96428. sysone@teleport.com (FIGHT THE POWER) writes:
  96429.  
  96430. >    Suppose I have an account on an IBM mainframe, and I can
  96431. >log in/out, handle files &c. with a reasonable level of
  96432. >competence. Suppose also that I have the means to connect to a
  96433. >remote UNIX system at some other site -- perhaps by using a
  96434. >TCP/IP internet. I'm interested in connecting to my UNIX account
  96435. >to read mail from friends and to access an unrestricted USENET
  96436. >feed.
  96437. >    I run into a problem when I try to log onto the remote
  96438. >system though: It doesn't know how to deal with my IBM system.
  96439. >For one thing, it can't find a TERMCAP or TERMINFO entry to match
  96440. >my machine (it says it's looking for a ....3278 entry).
  96441. >    Another problem is that IBMs like to buffer things a
  96442. >line-at-a-time or a screen-at-a-time. This is a problem when
  96443. >trying to "talk" to a UNIX system which deals with individual
  96444. >characters: How do I access my mail and news on the UNIX end if
  96445. >my mail and news readers are full-screen programs expecting
  96446. >characters to be sent as soon as I press each key?
  96447. >    Someone told me about something called "ANET" which would
  96448. >allow me to connect to a remote UNIX system. What's that?
  96449.  
  96450. The problem is that (if you're using the IBM TCP/IP program) it
  96451. doesn't cleanly handle a typical UNIX remote host connection if
  96452. the distant machine is doing anything other than generic TTY
  96453. emulation.  In particular, there is no mechanism for the remote
  96454. system to send screen orders (cursor addressing, highlight, clear
  96455. screen, etc.) and there is no mechanism to tell the distant host 
  96456. when you use a local editing key such as cursor up/down/left/right
  96457. or edit/delete.  The remote system is reading the terminal type that
  96458. your local TELNET command sent is during option negotiation when
  96459. you established the connection, but finds nothing in its TERMCAP
  96460. (or TERMINFO) data base to tell it what to do.  The buffering mode
  96461. used by 327x terminals also conflicts with the full-duplex character
  96462. mode expected by UNIX (and other) systems.
  96463.  
  96464. If your IBM host is running VM, there is a rework of the TELNET
  96465. interface that was done by a user and provides at least the
  96466. ability to respond to VT100 screen orders that are sent by
  96467. the distant UNIX host.  I'm no longer in the IBM mainframe world
  96468. and can't remember the name of the person who did it, but if you
  96469. check with the IBM sysprog at your shop ask him to look around
  96470. on VMSHARE for references.  The work may have been done at CUNY.
  96471. If he doesn't have access to VMSHARE ask him to check with other
  96472. contacts in SHARE; if the shop doesn't belong to SHARE, or if
  96473. the IBM system is running MVS/TSO, I can't help you.
  96474.  
  96475. Joe Morris / MITRE
  96476.  
  96477. From news@columbia.edu Sun Feb 26 04:49:29 1995
  96478. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09758
  96479.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 3 Mar 1995 23:43:31 -0500
  96480. Received: by apakabar.cc.columbia.edu id AA23813
  96481.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 3 Mar 1995 23:43:30 -0500
  96482. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!in1.uu.net!panix!not-for-mail
  96483. From: mgflax@panix.com (Marshall G. Flax)
  96484. Newsgroups: comp.protocols.kermit.misc
  96485. Subject: MS-Kermit -- Speed of "Output" vs. "Write"
  96486. Date: 25 Feb 1995 23:49:29 -0500
  96487. Organization: Currently, _extremely_ disorganized
  96488. Lines: 13
  96489. Message-Id: <3ip18p$qml@panix.com>
  96490. Nntp-Posting-Host: panix.com
  96491. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  96492.  
  96493. I'm working on an application in which I am sending single characters
  96494. out a com port with the "Output" command.  But it seems to be a full
  96495. order of magnitude slower than sending text with the "transmit" or "write"
  96496. commands.  Am I doing something wrong?  (I have tried "set output pacing"
  96497. without success.)
  96498.  
  96499. Thanks in advance
  96500.  
  96501. marshall
  96502.  
  96503.  
  96504. -- 
  96505.                   [Marshall G. Flax -- mgflax@panix.com]
  96506.  
  96507. From news@columbia.edu Sun Feb 26 13:50:13 1995
  96508. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18795
  96509.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 4 Mar 1995 03:11:04 -0500
  96510. Received: by apakabar.cc.columbia.edu id AA08049
  96511.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 4 Mar 1995 03:11:00 -0500
  96512. Path: news.columbia.edu!news.cs.columbia.edu!sol.ctr.columbia.edu!news.mindlink.net!agate!hpg30a.csc.cuhk.hk!chan1372
  96513. From: chan1372@cs.cuhk.hk (3/06)z)
  96514. Newsgroups: comp.protocols.kermit.misc
  96515. Subject: Re: How to get rid of the conflict of ^]?
  96516. Date: 26 Feb 1995 13:50:13 GMT
  96517. Organization: The Chinese University of Hong Kong
  96518. Lines: 36
  96519. Message-Id: <3iq0ul$92c@hpg30a.csc.cuhk.hk>
  96520. References: <0098C108.21F102EC@vms.csd.mu.edu>
  96521. Nntp-Posting-Host: @137.189.4.24
  96522. X-Newsreader: TIN [version 1.2 PL2]
  96523. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  96524.  
  96525. 5603liul@vms.csd.mu.edu wrote:
  96526.  
  96527. :-)    I found out a very bad situation with kermit is that you excape back
  96528. :-) to  kermit  command  mode using ^]. How ever telnet's escape characters
  96529. :-) are also ^]. Any one know hoe to resovle this conflict? ALso how can  I
  96530. :-) get the scan code of my keyboard?
  96531.  
  96532.  
  96533.     By the way, I have another question related to the escape
  96534. character.
  96535.  
  96536.     I do not mind what key the escape character are binded to. But,
  96537. every time I hit the escape character, I see a full-screen help screen.
  96538. How can I supress it ?
  96539.  
  96540.     I tried use 'set escape' without success. Seems that Kermit
  96541. will check if the key is 'suitable' to do that.  I want to set Ctrl-F10
  96542. as the escape key (too bad, I do not want to use ^\ or ^] or others.)
  96543. Any idea ?
  96544.  
  96545.  
  96546. Regards,
  96547. Chan Wai Ming.
  96548. --
  96549. *******************************************************************************
  96550. * 9q6l&a'} / E-mail address      ::=  chan1372@cs.cuhk.hk                     *
  96551. * "W"`"Q$F&W / IRC nick          ::=  WMChan                                  *
  96552. *******************************************************************************
  96553. * 3/06)z            \  _____________  /  Chan Wai Ming, Miriam                *
  96554. * -;4d$$$e$j>G      = |             | =  The Chinese University of Hong Kong  *
  96555. * 9q$l-p:b(t        = | /-\|/-\|/.. | =  Computer Science                     *
  96556. * %|&~/Z            / |_____________| \  Year 4 (Undergraduate)               *
  96557. *                     ^^^^^ Intelligent                                       *
  96558. *                            Chinese-English Translator ;)                    *
  96559. *******************************************************************************
  96560.  
  96561.  
  96562. From news@columbia.edu Sun Feb 26 04:44:22 1995
  96563. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14804
  96564.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 4 Mar 1995 14:48:46 -0500
  96565. Received: by apakabar.cc.columbia.edu id AA27058
  96566.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 4 Mar 1995 14:48:44 -0500
  96567. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  96568. From: jrd@cc.usu.edu (Joe Doupnik)
  96569. Newsgroups: comp.protocols.kermit.misc
  96570. Subject: Re: MS-Kermit -- Speed of "Output" vs. "Write"
  96571. Message-Id: <1995Feb26.104422.42986@cc.usu.edu>
  96572. Date: 26 Feb 95 10:44:22 MDT
  96573. References: <3ip18p$qml@panix.com>
  96574. Organization: Utah State University
  96575. Lines: 15
  96576. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  96577.  
  96578. In article <3ip18p$qml@panix.com>, mgflax@panix.com (Marshall G. Flax) writes:
  96579. > I'm working on an application in which I am sending single characters
  96580. > out a com port with the "Output" command.  But it seems to be a full
  96581. > order of magnitude slower than sending text with the "transmit" or "write"
  96582. > commands.  Am I doing something wrong?  (I have tried "set output pacing"
  96583. > without success.)
  96584. ----------
  96585.     The OUTPUT command has a minimum interval of 1ms between sent
  96586. bytes. The reason is the primary use of OUTPUT is to setup modems, and
  96587. many modems are intolerant of back to back bytes in this mode. Thus
  96588. the program defaults to a small but normally satisfactory pause without
  96589. the user having to give yet another command to control the modem.
  96590.     In addition, the OUTPUT command looks for and displays modem
  96591. responses as it goes, and that can add extra time between bytes.
  96592.     Joe D.
  96593.  
  96594. From news@columbia.edu Sun Feb 26 04:50:20 1995
  96595. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14809
  96596.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 4 Mar 1995 14:48:48 -0500
  96597. Received: by apakabar.cc.columbia.edu id AA27063
  96598.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 4 Mar 1995 14:48:47 -0500
  96599. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  96600. From: jrd@cc.usu.edu (Joe Doupnik)
  96601. Newsgroups: comp.protocols.kermit.misc
  96602. Subject: Re: How to get rid of the conflict of ^]?
  96603. Message-Id: <1995Feb26.105020.42987@cc.usu.edu>
  96604. Date: 26 Feb 95 10:50:20 MDT
  96605. References: <0098C108.21F102EC@vms.csd.mu.edu> <3iq0ul$92c@hpg30a.csc.cuhk.hk>
  96606. Organization: Utah State University
  96607. Lines: 28
  96608. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  96609.  
  96610. In article <3iq0ul$92c@hpg30a.csc.cuhk.hk>, chan1372@cs.cuhk.hk (3/06)z) writes:
  96611. > 5603liul@vms.csd.mu.edu wrote:
  96612. > :-)    I found out a very bad situation with kermit is that you excape back
  96613. > :-) to  kermit  command  mode using ^]. How ever telnet's escape characters
  96614. > :-) are also ^]. Any one know hoe to resovle this conflict? ALso how can  I
  96615. > :-) get the scan code of my keyboard?
  96616. >     By the way, I have another question related to the escape
  96617. > character.
  96618. >     I do not mind what key the escape character are binded to. But,
  96619. > every time I hit the escape character, I see a full-screen help screen.
  96620. > How can I supress it ?
  96621. >     I tried use 'set escape' without success. Seems that Kermit
  96622. > will check if the key is 'suitable' to do that.  I want to set Ctrl-F10
  96623. > as the escape key (too bad, I do not want to use ^\ or ^] or others.)
  96624. > Any idea ?
  96625. ----------------
  96626.     The "escape" key from Connect mode is a regular ASCII control code.
  96627. Special IBM-PC keyboard items such as Control F10 are not accepted, nor is
  96628. even F10. However, keyboard verb \Kexit does the same job and can be
  96629. assigned to whichever key combination you wish; by default this is assigned
  96630. to ALT-x. Pressing the "escape" key brings down a short menu offering to take 
  96631. action depending on the next key pressed.
  96632.         Joe D.
  96633.  
  96634. From news@columbia.edu Sun Feb 26 18:33:18 1995
  96635. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15327
  96636.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 4 Mar 1995 15:01:34 -0500
  96637. Received: by apakabar.cc.columbia.edu id AA28142
  96638.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 4 Mar 1995 15:01:32 -0500
  96639. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!swiss.ans.net!solaris.cc.vt.edu!news.mathworks.com!panix!not-for-mail
  96640. From: mgflax@panix.com (Marshall G. Flax)
  96641. Newsgroups: comp.protocols.kermit.misc
  96642. Subject: Re: MS-Kermit -- Speed of "Output" vs. "Write"
  96643. Date: 26 Feb 1995 13:33:18 -0500
  96644. Organization: Currently, _extremely_ disorganized
  96645. Lines: 19
  96646. Message-Id: <3iqhhe$rm0@panix.com>
  96647. References: <3ip18p$qml@panix.com> <1995Feb26.104422.42986@cc.usu.edu>
  96648. Nntp-Posting-Host: panix.com
  96649. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  96650.  
  96651. In article <1995Feb26.104422.42986@cc.usu.edu>,
  96652. Joe Doupnik <jrd@cc.usu.edu> wrote:
  96653. >    The OUTPUT command has a minimum interval of 1ms between sent
  96654. >bytes. The reason is the primary use of OUTPUT is to setup modems, and
  96655. >many modems are intolerant of back to back bytes in this mode. Thus
  96656. >the program defaults to a small but normally satisfactory pause without
  96657. >the user having to give yet another command to control the modem.
  96658. >    In addition, the OUTPUT command looks for and displays modem
  96659. >responses as it goes, and that can add extra time between bytes.
  96660.  
  96661. Let me then rephrase my question.  I'm interested in using ms-kermit to
  96662. send singe characters over an asynch line without any output delay
  96663. except for that provided by xon/xoff flow control.  Any suggestions?
  96664.  
  96665. Thanks!
  96666.  
  96667. marshall
  96668. -- 
  96669.                   [Marshall G. Flax -- mgflax@panix.com]
  96670.  
  96671. From news@columbia.edu Sun Feb 26 21:06:21 1995
  96672. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21265
  96673.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 4 Mar 1995 17:10:40 -0500
  96674. Received: by apakabar.cc.columbia.edu id AA07433
  96675.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 4 Mar 1995 17:10:38 -0500
  96676. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!gatech!newsfeed.pitt.edu!dsinc!netnews.upenn.edu!netnews.CC.Lehigh.EDU!Lehigh.EDU!not-for-mail
  96677. From: ky04@Lehigh.EDU
  96678. Newsgroups: comp.protocols.kermit.misc
  96679. Subject: Re: Throughput with MSKermit 3.13?
  96680. Date: 26 Feb 1995 16:06:21 -0500
  96681. Lines: 22
  96682. Message-Id: <3iqqgd$rm1@ns2-1.CC.Lehigh.EDU>
  96683. Nntp-Posting-Host: ns2-1.cc.lehigh.edu
  96684. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  96685.  
  96686. In article <3ioq50$5n@hustle.rahul.net>, Clarence Dold <dold@rahul.net> writes:
  96687. >Michael J. Mettler (mmettler@ttmath.ttu.edu) wrote:
  96688. >: I recently purchased a USR Sportster 14.4 modem to do some
  96689. >: work from home.  I am using MSKermit 3.13 and doing a lot of
  96690. >: downloading of compressed files.  What kind of speed should I
  96691. >: be getting?  I can only get up to about 1500-1600 cps (as
  96692. >
  96693. >Pre-compressed files max out, theoretically, at about 1680cps, regardless of
  96694. >protocol.  That's all the bits that will fit on a 14.4 modem.
  96695. >
  96696. >Text files may transfer at 3000 or so, using Kermit.  This must be what your
  96697. >friend is seeing.
  96698. >
  96699.  How do you get 1680cps? With packetlength 1000, I get 1000cps or so.
  96700. What parameters should I tune. The max speed on the mainframe is 38400, and
  96701. Kermit reports 20% efficiency.                            
  96702. ky04@lehigh.edu            
  96703.  
  96704.  
  96705.  
  96706.  
  96707.  
  96708.  
  96709. From news@columbia.edu Sun Feb 26 21:37:26 1995
  96710. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21282
  96711.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 4 Mar 1995 17:10:48 -0500
  96712. Received: by apakabar.cc.columbia.edu id AA07449
  96713.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 4 Mar 1995 17:10:48 -0500
  96714. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!gatech!newsfeed.pitt.edu!dsinc!netnews.upenn.edu!netnews.CC.Lehigh.EDU!Lehigh.EDU!not-for-mail
  96715. From: ky04@Lehigh.EDU
  96716. Newsgroups: comp.protocols.kermit.misc
  96717. Subject: VT emulation  problems
  96718. Date: 26 Feb 1995 16:37:26 -0500
  96719. Lines: 25
  96720. Message-Id: <3iqsam$3aj1@ns2-1.CC.Lehigh.EDU>
  96721. Nntp-Posting-Host: ns2-1.cc.lehigh.edu
  96722. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  96723.  
  96724. The problems arise with graphics when emulating VT320 terminals. I dial out
  96725. to work to use MATLAB, in which I can set  terminal as KERMIT. I have 
  96726. comm software which  uses MSKERM314.
  96727.  
  96728.  
  96729. Wheb I display graphics, I can't see plot at all: 
  96730. I only see codes on the screen.
  96731. Kermit gives a message "NO GRAPHICS, NO NETWORK" at start. How do I correct
  96732. this problem. 
  96733.  
  96734. I checked SHOW TERM which gives, among other things:
  96735. Term video writing: direct
  96736. display: regular, 7-bits
  96737. term controls: 7-bits
  96738. term code-page: CP437
  96739.  
  96740. Thanks for for any help.
  96741.  
  96742.                             
  96743. ky04@lehigh.edu            
  96744.  
  96745.  
  96746.  
  96747.  
  96748.  
  96749.  
  96750. From news@columbia.edu Sat Mar  4 20:59:44 1995
  96751. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25584
  96752.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 4 Mar 1995 18:57:56 -0500
  96753. Received: by apakabar.cc.columbia.edu id AA14751
  96754.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 4 Mar 1995 18:57:55 -0500
  96755. Path: news.columbia.edu!sol.ctr.columbia.edu!news.msfc.nasa.gov!cs.utk.edu!gatech!psuvax1!news.cc.swarthmore.edu!netnews.upenn.edu!netnews.CC.Lehigh.EDU!Lehigh.EDU!not-for-mail
  96756. From: reh3@Lehigh.EDU
  96757. Newsgroups: comp.protocols.kermit.misc
  96758. Subject: waitfor command ?
  96759. Date: 4 Mar 1995 15:59:44 -0500
  96760. Lines: 14
  96761. Message-Id: <3jakc0$l77@ns2-1.CC.Lehigh.EDU>
  96762. Nntp-Posting-Host: ns2-1.cc.lehigh.edu
  96763. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  96764.  
  96765. hi,
  96766.  
  96767.     i am using ms-kermit 3.14.  is there a command for use in a script which
  96768.     will wait for something, other than a certain amount of time?
  96769.  
  96770.     i am trying to connect from my pc to and annex terminal server through an
  96771.     adi box.  my problem is that sometimes it takes several seconds for the
  96772.     annex to respond.  right now i have a script that waits for several
  96773.     seconds, but if the annex does not respond, it connects anyway.  i am only
  96774.     modifing the original script, and did not write it.
  96775.  
  96776.     thanks in advance.
  96777.  
  96778.                                                 Ryan Hope
  96779.  
  96780. From news@columbia.edu Mon Feb 27 04:23:05 1995
  96781. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26318
  96782.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 4 Mar 1995 19:17:13 -0500
  96783. Received: by apakabar.cc.columbia.edu id AA16045
  96784.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 4 Mar 1995 19:17:11 -0500
  96785. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!sunic!nic.tip.net!news.bahnhof.se!news.bahnhof.se!not-for-mail
  96786. From: marvi@bahnhof.se (Markus Hdrnvi)
  96787. Newsgroups: comp.protocols.kermit.misc
  96788. Subject: Hardware for ms-kermit?
  96789. Date: 27 Feb 1995 04:23:05 -0000
  96790. Organization: Bahnhof Internet Access
  96791. Lines: 8
  96792. Message-Id: <3irk39$4m4@sunny.bahnhof.se>
  96793. Nntp-Posting-Host: sunny.bahnhof.se
  96794. X-Newsreader: TIN [version 1.2 PL2]
  96795. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  96796.  
  96797. What would I need for kind of machine to run MS-Kermit? This is me "test" 
  96798. when I'm going to buy a second PC. I have to be able to run some sort of 
  96799. Kermit (running ckermit on my os/2 machine).
  96800.  
  96801. Will a 286 do it?
  96802.  
  96803. //Markus
  96804.  
  96805.  
  96806. From news@columbia.edu Thu Mar  2 13:47:59 1995
  96807. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17632
  96808.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 5 Mar 1995 03:46:03 -0500
  96809. Received: by apakabar.cc.columbia.edu id AA13543
  96810.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 5 Mar 1995 03:46:00 -0500
  96811. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!udel!gatech!swrinde!cs.utexas.edu!sdd.hp.com!hplabs!hplextra!hplb!hpwin055.uksr!steveh
  96812. From: steveh@hpwina21.uksr.hp.com (Stephen Hulbert)
  96813. Newsgroups: comp.protocols.kermit.misc
  96814. Subject: kermit and spider ports
  96815. Date: 2 Mar 1995 13:47:59 -0000
  96816. Organization: Hewlett Packard UKRC
  96817. Lines: 36
  96818. Distribution: world
  96819. Message-Id: <3j4iaf$ma@hpwina21.uksr.hp.com>
  96820. Reply-To: steveh@hpwin061.uksr.hp.com
  96821. Nntp-Posting-Host: hpwina21.uksr.hp.com
  96822. X-Newsreader: mxrn 6.18-16
  96823. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  96824.  
  96825.  
  96826. Hello Kermit People,
  96827.  
  96828. I am an HP-UX user using HP's kermit.  I want to automate a connection from
  96829. my machine to a remote machine which consists of the following steps:
  96830.  
  96831. 1)  Set serial line and speed
  96832. 2)  connect
  96833.  
  96834. at this point I am connected to a spider
  96835.  
  96836. 3)  open hayes
  96837. 4)  atdtnnnnnnnn   (nnnnnnnn being the phone number)
  96838. 5)  login when connected (optional)
  96839.  
  96840.  
  96841.  
  96842. It is the spider port which is the problem.  Kermit 'script' text appears to
  96843. assume that a connection has already been made (unlike uucp chat scripts).
  96844.  
  96845. One thought I had was to connect via 'cu' first, then switch to using kermit.
  96846. I've tried this as follows:
  96847.  
  96848. 1) cu to the remote machine and do a kermit -r
  96849. 2) do a ~!sh to get back to my machine
  96850. 3) remove the /usr/spool/uucp/LCK files
  96851. 4) kermit setting line and speed
  96852. 5) send a file
  96853.  
  96854. Unfortunately, I just get %T%T%T% rather than the file transfer. If I do
  96855. a connect though, that works.
  96856.  
  96857. Any ideas?
  96858.  
  96859.  
  96860. Steve.
  96861.  
  96862. From news@columbia.edu Mon Feb 27 01:17:24 1995
  96863. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19308
  96864.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 5 Mar 1995 17:43:29 -0500
  96865. Received: by apakabar.cc.columbia.edu id AA12055
  96866.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 5 Mar 1995 17:43:26 -0500
  96867. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!in1.uu.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  96868. From: jrd@cc.usu.edu (Joe Doupnik)
  96869. Newsgroups: comp.protocols.kermit.misc
  96870. Subject: Re: Hardware for ms-kermit?
  96871. Message-Id: <1995Feb27.071724.43054@cc.usu.edu>
  96872. Date: 27 Feb 95 07:17:24 MDT
  96873. References: <3irk39$4m4@sunny.bahnhof.se>
  96874. Organization: Utah State University
  96875. Lines: 12
  96876. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  96877.  
  96878. In article <3irk39$4m4@sunny.bahnhof.se>, marvi@bahnhof.se (Markus Hdrnvi) writes:
  96879. > What would I need for kind of machine to run MS-Kermit? This is me "test" 
  96880. > when I'm going to buy a second PC. I have to be able to run some sort of 
  96881. > Kermit (running ckermit on my os/2 machine).
  96882. > Will a 286 do it?
  96883. -------------
  96884.     An 8088 XT (without hard disk too) will do for MS-DOS Kermit.
  96885. It's not Kermit that constrains your choices but rather the other things
  96886. you will do with the machine. Given the low cost of motherboards it is 
  96887. difficult to recommend anything less than a 486.
  96888.     Joe D. 
  96889.  
  96890. From news@columbia.edu Thu Mar  2 03:29:19 1995
  96891. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22049
  96892.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 5 Mar 1995 18:50:49 -0500
  96893. Received: by apakabar.cc.columbia.edu id AA16999
  96894.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 5 Mar 1995 18:50:47 -0500
  96895. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!udel!gatech!swrinde!howland.reston.ans.net!news.cac.psu.edu!psuvm!hdk
  96896. Organization: Penn State University
  96897. Date: Thu, 2 Mar 1995 08:29:19 EST
  96898. From: H. D. Knoble <HDK@psuvm.psu.edu>
  96899. Message-Id: <95061.082919HDK@psuvm.psu.edu>
  96900. Newsgroups: comp.protocols.kermit.misc
  96901. Subject: Re: Kermit Bell
  96902. References: <3j2cmb$93m@pacifier.com> <1995Mar1.155254.43312@cc.usu.edu>
  96903. Lines: 26
  96904. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  96905.  
  96906. In article <1995Mar1.155254.43312@cc.usu.edu>, jrd@cc.usu.edu (Joe Doupnik)
  96907. says:
  96908.  
  96909. >In article <3j2cmb$93m@pacifier.com>, mikef@pacifier.com (Mike Freeman)
  96910. >writes:
  96911. >>
  96912. >> Hi, Kermiteers!
  96913. >>
  96914. >> Using Ms-Kermit V3.14 Patch-level 3 talking to C-Kermit 5A(190) on a UNIX
  96915. >> box via dial-up connection, I notice that if C-Kermit is in Server mode,
  96916. >> if I escape back to Ms-Kermit and do a SEND, the PC bell beeps upon
  96917. >> completion of the transfer.  However, if one does a GET, the bell does
  96918. >> *not* beep upon completion of the transfer.  Is there a way (short of
  96919. >> writing a macro with "echo \007" in it to do the GET) to make the
  96920. >> behavior symmetrical, that is, make my PC beep at the end of *both* SENDs
  96921. >> and GETs or RECEIVEs?
  96922. >-----------
  96923. >        That's odd. For me the default is to sound the bell for all such
  96924. >commands, and to not sound it if SET BELL OFF has been stated.
  96925. >        A guess: you are running a disk cache program, say smartdrive,
  96926. >which takes over the machine in detail while flushing buffers to real
  96927. >disk. That could do worse than clobber DOS bells (and that's what is
  96928. >used at the end of file transfers). If so, del c:\dos\smartdrive.*.
  96929. >        Joe D.
  96930. Joe,  Are you saying MS-Kermit and DOS 6.x SMARDRV.EXE are not
  96931.       compatible?
  96932.  
  96933. From news@columbia.edu Mon Mar  6 00:00:55 1995
  96934. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22643
  96935.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 5 Mar 1995 19:01:06 -0500
  96936. Received: by apakabar.cc.columbia.edu id AA17741
  96937.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 5 Mar 1995 19:01:02 -0500
  96938. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  96939. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  96940. Newsgroups: comp.protocols.kermit.misc
  96941. Subject: Re: kermit and spider ports
  96942. Date: 6 Mar 1995 00:00:55 GMT
  96943. Organization: Columbia University
  96944. Lines: 59
  96945. Distribution: world
  96946. Message-Id: <3jdjbn$ha1@apakabar.cc.columbia.edu>
  96947. References: <3j4iaf$ma@hpwina21.uksr.hp.com>
  96948. Nntp-Posting-Host: watsun.cc.columbia.edu
  96949. Cc: 
  96950.  
  96951. In article <3j4iaf$ma@hpwina21.uksr.hp.com>,
  96952. Stephen Hulbert <steveh@hpwin061.uksr.hp.com> wrote:
  96953. >I am an HP-UX user using HP's kermit.
  96954. >
  96955. You mean Columbia University's C-Kermit 4E(072) from 1989, which HP
  96956. was distributing with HP-UX through version 9.xx.  The current version of
  96957. C-Kermit is 5A(190).
  96958.  
  96959. >I want to automate a connection from
  96960. >my machine to a remote machine which consists of the following steps:
  96961. >...
  96962. >It is the spider port which is the problem.  Kermit 'script' text appears to
  96963. >assume that a connection has already been made (unlike uucp chat scripts).
  96964. >
  96965. The current version of C-Kermit has a full-blown script programming language
  96966. that will let you do anything you want, including multi-stage connection
  96967. processes like the one you describe.
  96968.  
  96969. Please upgrade to the current version of C-Kermit, consult the documentation
  96970. about how to write script programs, and then if you have any further problems,
  96971. contact technical support in the normal fashion.  To get C-Kermit 5A(190):
  96972.  
  96973. anonymous ftp to kermit.columbia edu, directory kermit/archives,
  96974. binary mode, file cku190.tar.Z (or .gz for gunzip).  Uncompress,
  96975. untar, read the instructions at the top of the makefile, and then
  96976. give the appropriate "make" command, for example:
  96977.  
  96978.   make linux
  96979.   make solaris2x
  96980.   make hpux90
  96981.  
  96982. which should produce an executable called "wermit".  Try it out
  96983. and if it's OK, install it as "kermit" in the desired location,
  96984. such as /usr/local/bin.  Read the ckuins.doc file for additional
  96985. installation instructions.
  96986.  
  96987. Please be sure to also order the manual, since it shows you how
  96988. to use the software and how to get the most out of it, and sales of
  96989. the manual are the primary source of income that pays for our work.
  96990.  
  96991.   Frank da Cruz and Christine M. Gianone, "Using C-Kermit", Digital Press /
  96992.   Butterworth-Heinemann, Woburn, MA, 1993, 514 pages, ISBN 1-55558-108-0
  96993.  
  96994.   US single-copy price: $36.95; quantity discounts available.  Available in
  96995.   computer bookstores or directly from Columbia University:
  96996.  
  96997.     Kermit Development and Distribution
  96998.     Columbia University Academic Information Systems
  96999.     612 West 115th Street
  97000.     New York, NY  10025  USA
  97001.     Telephone: (USA) 212 854-3703
  97002.  
  97003.   Domestic and overseas orders accepted.  Price: $36.95 (US, Canada, and
  97004.   Mexico), $47 elsewhere.  Orders may be paid by MasterCard or Visa, or
  97005.   prepaid by check in US dollars.  Add $35 bank fee for checks not drawn on
  97006.   a US bank.  Price includes shipping.  Do not include sales tax.
  97007.   Inquire about quantity discounts.
  97008.  
  97009. - Frank
  97010.  
  97011. From news@columbia.edu Sun Mar  5 23:50:37 1995
  97012. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26085
  97013.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 5 Mar 1995 20:27:23 -0500
  97014. Received: by apakabar.cc.columbia.edu id AA24215
  97015.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 5 Mar 1995 20:27:21 -0500
  97016. Path: news.columbia.edu!panix!news.mathworks.com!news.kei.com!eff!news.umbc.edu!haven.umd.edu!hecate.umd.edu!jph
  97017. From: jph@astro.umd.edu (J. Patrick Harrington)
  97018. Newsgroups: comp.protocols.kermit.misc
  97019. Subject: Kermit with PCMCIA modems?
  97020. Date: 5 Mar 1995 23:50:37 GMT
  97021. Organization: U. of Maryland @ College Park, Astronomy
  97022. Lines: 12
  97023. Distribution: na
  97024. Message-Id: <3jdiod$qa1@umd5.umd.edu>
  97025. Nntp-Posting-Host: juno.astro.umd.edu
  97026. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  97027.  
  97028.     I have been running kermit 3.13 on my OmniBook 300
  97029. with an various external modems and serial links to unix
  97030. boxes with no problems. Recently I have tried using a
  97031. Megahertz PCMCIA modem (XJ2144 -- 14400bps) in slot A of
  97032. the OmniBook, but kermit does not seem to recognize it.
  97033. Is this a known problem, or is there some setting that
  97034. will work?  Someone suggested that I shoud try another
  97035. communications program, as these modems are supposed to
  97036. work with the OB 300 notebooks. I would welcome any ideas.
  97037.  
  97038.                      Pat Harrington
  97039.  
  97040.  
  97041. From news@columbia.edu Thu Mar  2 14:56:30 1995
  97042. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29420
  97043.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 5 Mar 1995 21:36:49 -0500
  97044. Received: by apakabar.cc.columbia.edu id AA29078
  97045.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 5 Mar 1995 21:36:47 -0500
  97046. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!news.kei.com!ub!newserve!bb09320
  97047. From: bb09320@bingsuns.cc.binghamton.edu (Mark Garcia)
  97048. Newsgroups: comp.protocols.kermit.misc
  97049. Subject: ^^<< WINDOWS Kermit >>^^  FTP sites?
  97050. Date: 2 Mar 1995 14:56:30 GMT
  97051. Organization: Binghamton University, Binghamton, NY
  97052. Lines: 18
  97053. Message-Id: <3j4mau$s3h@bingnet1.cc.binghamton.edu>
  97054. Nntp-Posting-Host: 128.226.1.2
  97055. X-Newsreader: TIN [version 1.2 PL2]
  97056. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  97057.  
  97058. Greetings :))
  97059.  
  97060.     Is there any FTP sites that I can download a version of Kermit
  97061. for windows?  I 'd appreciate any and all help.
  97062.  
  97063. --
  97064. M    M    A    RRRRR    K     K
  97065. MM\   /MM      A A      R    R  K    K
  97066. M  M M  M     A   A     R   R   K   K
  97067. M   M   M    A     A    R---    K KK
  97068. M   +   M   A ===== A   R   R   K   K
  97069. M       M   A       A   R    R  K    K
  97070. M       M   A       A   R    R  K    K
  97071.  
  97072. Address:
  97073.     Mark Garcia
  97074.     Binghamton University
  97075. E-Mail: bb09320@bingsuns.cc.binghamton.edu
  97076.  
  97077. From news@columbia.edu Mon Feb 27 21:29:10 1995
  97078. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01357
  97079.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 5 Mar 1995 22:24:50 -0500
  97080. Received: by apakabar.cc.columbia.edu id AA02832
  97081.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 5 Mar 1995 22:24:46 -0500
  97082. Path: news.columbia.edu!news.cs.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!gatech!news-feed-1.peachnet.edu!news.duke.edu!news.mathworks.com!newshost.marcam.com!zip.eecs.umich.edu!panix!panix3.panix.com!mpollak
  97083. From: Michael Pollak <mpollak@panix.com>
  97084. Newsgroups: comp.protocols.kermit.misc
  97085. Subject: Adding second line to "output"
  97086. Date: Mon, 27 Feb 1995 16:29:10 -0500
  97087. Organization: PANIX Public Access Internet and Unix, NYC
  97088. Lines: 12
  97089. Message-Id: <Pine.SUN.3.91.950227162658.4585A-100000@panix3.panix.com>
  97090. Nntp-Posting-Host: panix3.panix.com
  97091. Mime-Version: 1.0
  97092. Content-Type: TEXT/PLAIN; charset=US-ASCII
  97093. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  97094.  
  97095.  
  97096. My mskermit.ini file is currently set to dial a number, thus
  97097. output atdt7414444/13
  97098.  
  97099. but I do I lot of my connecting at night, and so I'd like to shut off the 
  97100. modem's sound, by having it type "atm."  But I can't seem to get it to do 
  97101. both -- either I can output atm, or atdt7414444/13.  Any suggestions 
  97102. would be appreciated.
  97103.  
  97104. __________________________________________________________________________
  97105. Michael Pollak................New York City..............mpollak@panix.com
  97106.  
  97107.  
  97108. From news@columbia.edu Tue Feb 28 07:11:32 1995
  97109. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05101
  97110.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 5 Mar 1995 23:58:57 -0500
  97111. Received: by apakabar.cc.columbia.edu id AA09331
  97112.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 5 Mar 1995 23:58:54 -0500
  97113. Path: news.columbia.edu!panix!news.mathworks.com!hookup!swrinde!howland.reston.ans.net!math.ohio-state.edu!magnus.acs.ohio-state.edu!csn!csnnews!gweisz
  97114. From: gweisz@csn.net (Gideon Weisz)
  97115. Newsgroups: comp.protocols.kermit.misc
  97116. Subject: is there a hebrew MSKermit 3.14?
  97117. Date: 28 Feb 1995 07:11:32 GMT
  97118. Organization: Colorado Supernet
  97119. Lines: 4
  97120. Message-Id: <3iuib4$3mr@news-2.csn.net>
  97121. Nntp-Posting-Host: 199.117.27.22
  97122. X-Newsreader: TIN [version 1.2 PL2]
  97123. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  97124.  
  97125.  
  97126. a great hebrew adaptation/package was developed for mskermit 3.13
  97127. is there any work of that kind (or achievement) for 3.14?
  97128. thanks, gideon
  97129.  
  97130. From news@columbia.edu Thu Mar  2 15:43:32 1995
  97131. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10613
  97132.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 6 Mar 1995 01:33:43 -0500
  97133. Received: by apakabar.cc.columbia.edu id AA15153
  97134.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 6 Mar 1995 01:33:41 -0500
  97135. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!newshost.marcam.com!uunet!psinntp!barilvm!news.datasrv.co.il!zeus.datasrv.co.il!winter
  97136. From: winter@zeus.datasrv.co.il (4th Dimension)
  97137. Newsgroups: comp.protocols.kermit.misc
  97138. Subject: Why can't I use 14.4K
  97139. Date: 2 Mar 1995 15:43:32 GMT
  97140. Organization: Fourth Dimension Software
  97141. Lines: 37
  97142. Message-Id: <3j4p34$foj@israel-info.datasrv.co.il>
  97143. Nntp-Posting-Host: zeus.datasrv.co.il
  97144. X-Newsreader: TIN [version 1.2 PL2]
  97145. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  97146.  
  97147. Hi,
  97148. I've just compiled C-Kermit 5A(190) with the following flags
  97149.     gmake sunos41gcc \
  97150.    "KFLAGS=-DBPS_14K -DBPS_28K -DBPS_57K -DCK_WREFRESH -DCK_PCT_BAR"
  97151.  
  97152. and the compile/link went fine. However, if in my .kermrc I have
  97153.  
  97154.    set speed 14400
  97155.  
  97156. then kermit complains
  97157.  
  97158.    ?Unsupported line speed - 14400
  97159.  
  97160. If I type 'set speed ?' I get:
  97161.  
  97162. set speed ? Transmission rate for /dev/cua0 in bits per
  97163. second, one of the following:
  97164.  110                1200               14400              150
  97165.  19200              200                2400               28800
  97166.  300                3600               38400              4800
  97167.  50                 57600              600                7200
  97168.  
  97169. When I connect, the modem connects with 14400, so I get a message
  97170.  
  97171.  To cancel: type your interrupt character (normally Ctrl-C).
  97172.  Can't change speed to 14400
  97173.  Call complete.
  97174.  
  97175. Mind you, it's just an annoyance, everything works fine.
  97176.  
  97177. Any idea? I my tty port setup screwed up?
  97178.  
  97179. Thanks,
  97180.  
  97181. /* Amir J. Katz         email:   winter@datasrv.co.il               */
  97182. /* 4th Dimension Software, LTD., Tel-Aviv, ISRAEL                   */
  97183. /* "When I die, I'm leaving my body to science fiction" (S. Wright) */
  97184.  
  97185. From news@columbia.edu Mon Mar  6 07:17:59 1995
  97186. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12136
  97187.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 6 Mar 1995 02:18:08 -0500
  97188. Received: by apakabar.cc.columbia.edu id AA17015
  97189.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 6 Mar 1995 02:18:06 -0500
  97190. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  97191. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  97192. Newsgroups: comp.protocols.kermit.misc
  97193. Subject: Re: is there a hebrew MSKermit 3.14?
  97194. Date: 6 Mar 1995 07:17:59 GMT
  97195. Organization: Columbia University
  97196. Lines: 14
  97197. Message-Id: <3jecv7$gj5@apakabar.cc.columbia.edu>
  97198. References: <3iuib4$3mr@news-2.csn.net>
  97199. Nntp-Posting-Host: watsun.cc.columbia.edu
  97200. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  97201.  
  97202. In article <3iuib4$3mr@news-2.csn.net>, Gideon Weisz <gweisz@csn.net> wrote:
  97203. >
  97204. >a great hebrew adaptation/package was developed for mskermit 3.13
  97205. >is there any work of that kind (or achievement) for 3.14?
  97206. >thanks, gideon
  97207.  
  97208.  
  97209. Hebrew modes are built into the standard distributions of MS-DOS Kermit 3.14 
  97210. and OS/2 C-Kermit 5A(190) and above.
  97211.  
  97212. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  97213. "C-Kermit: available on more platforms than any other communications software."
  97214. "Kermit FTP: sending files whenever and wherever they are needed."
  97215.   OS/2 version 5A(190): ftp://kermit.columbia.edu/kermit/archives/cko190.zip 
  97216.  
  97217. From news@columbia.edu Mon Mar  6 07:22:34 1995
  97218. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12323
  97219.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 6 Mar 1995 02:22:48 -0500
  97220. Received: by apakabar.cc.columbia.edu id AA17180
  97221.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 6 Mar 1995 02:22:46 -0500
  97222. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  97223. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  97224. Newsgroups: comp.protocols.kermit.misc
  97225. Subject: Re: Why can't I use 14.4K
  97226. Date: 6 Mar 1995 07:22:34 GMT
  97227. Organization: Columbia University
  97228. Lines: 29
  97229. Message-Id: <3jed7q$gol@apakabar.cc.columbia.edu>
  97230. References: <3j4p34$foj@israel-info.datasrv.co.il>
  97231. Nntp-Posting-Host: watsun.cc.columbia.edu
  97232. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  97233.  
  97234. In article <3j4p34$foj@israel-info.datasrv.co.il>,
  97235. 4th Dimension <winter@zeus.datasrv.co.il> wrote:
  97236.  
  97237. >When I connect, the modem connects with 14400, so I get a message
  97238. >
  97239. > To cancel: type your interrupt character (normally Ctrl-C).
  97240. > Can't change speed to 14400
  97241. > Call complete.
  97242. >
  97243.  
  97244. While C-Kermit supports a line speed of 14400, it is not universally
  97245. supported by all hardware.  This is probably the case with your Sun.
  97246.  
  97247. On the other hand, since everything works fine without the line speed
  97248. switch it means that your modem is not changing the line speed to 14400,
  97249. so neither should C-Kermit.
  97250.  
  97251. Use:
  97252.     set dial speed-matching off
  97253.  
  97254. to disable the speed switch.
  97255.  
  97256.  
  97257.  
  97258.  
  97259. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  97260. "C-Kermit: available on more platforms than any other communications software."
  97261. "Kermit FTP: sending files whenever and wherever they are needed."
  97262.   OS/2 version 5A(190): ftp://kermit.columbia.edu/kermit/archives/cko190.zip 
  97263.  
  97264. From news@columbia.edu Mon Feb 27 13:30:26 1995
  97265. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14038
  97266.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 6 Mar 1995 03:12:35 -0500
  97267. Received: by apakabar.cc.columbia.edu id AA18711
  97268.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 6 Mar 1995 03:12:34 -0500
  97269. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!swiss.ans.net!gatech!newsfeed.pitt.edu!hudson.lm.com!netline-fddi.jpl.nasa.gov!nntp.et.byu.edu!news.provo.novell.com!news.cs.utah.edu!cc.usu.edu!jrd
  97270. From: jrd@cc.usu.edu (Joe Doupnik)
  97271. Newsgroups: comp.protocols.kermit.misc
  97272. Subject: Re: Adding second line to "output"
  97273. Message-Id: <1995Feb27.193027.43132@cc.usu.edu>
  97274. Date: 27 Feb 95 19:30:26 MDT
  97275. References: <Pine.SUN.3.91.950227162658.4585A-100000@panix3.panix.com>
  97276. Organization: Utah State University
  97277. Lines: 14
  97278. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  97279.  
  97280. In article <Pine.SUN.3.91.950227162658.4585A-100000@panix3.panix.com>, Michael Pollak <mpollak@panix.com> writes:
  97281. > My mskermit.ini file is currently set to dial a number, thus
  97282. > output atdt7414444/13
  97283. > but I do I lot of my connecting at night, and so I'd like to shut off the 
  97284. > modem's sound, by having it type "atm."  But I can't seem to get it to do 
  97285. > both -- either I can output atm, or atdt7414444/13.  Any suggestions 
  97286. > would be appreciated.
  97287. -----------------
  97288.     AT commands are terminated with a carriage return, the \13 you
  97289. see above. Notice that you've typed the slash the wrong way. You can
  97290. simply add another output command to send  atm\13.
  97291.     Joe D.
  97292.  
  97293. From news@columbia.edu Thu Mar  2 03:29:48 1995
  97294. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14227
  97295.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 6 Mar 1995 03:18:40 -0500
  97296. Received: by apakabar.cc.columbia.edu id AA19055
  97297.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 6 Mar 1995 03:18:37 -0500
  97298. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!udel!gatech!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  97299. From: jrd@cc.usu.edu (Joe Doupnik)
  97300. Newsgroups: comp.protocols.kermit.misc
  97301. Subject: Re: Kermit Bell
  97302. Message-Id: <1995Mar2.092948.43364@cc.usu.edu>
  97303. Date: 2 Mar 95 09:29:48 MDT
  97304. References: <3j2cmb$93m@pacifier.com> <1995Mar1.155254.43312@cc.usu.edu> <95061.082919HDK@psuvm.psu.edu>
  97305. Organization: Utah State University
  97306. Lines: 35
  97307. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  97308.  
  97309. In article <95061.082919HDK@psuvm.psu.edu>, H. D. Knoble <HDK@psuvm.psu.edu> writes:
  97310. > In article <1995Mar1.155254.43312@cc.usu.edu>, jrd@cc.usu.edu (Joe Doupnik)
  97311. > says:
  97312. >>In article <3j2cmb$93m@pacifier.com>, mikef@pacifier.com (Mike Freeman)
  97313. >>writes:
  97314. >>>
  97315. >>> Hi, Kermiteers!
  97316. >>>
  97317. >>> Using Ms-Kermit V3.14 Patch-level 3 talking to C-Kermit 5A(190) on a UNIX
  97318. >>> box via dial-up connection, I notice that if C-Kermit is in Server mode,
  97319. >>> if I escape back to Ms-Kermit and do a SEND, the PC bell beeps upon
  97320. >>> completion of the transfer.  However, if one does a GET, the bell does
  97321. >>> *not* beep upon completion of the transfer.  Is there a way (short of
  97322. >>> writing a macro with "echo \007" in it to do the GET) to make the
  97323. >>> behavior symmetrical, that is, make my PC beep at the end of *both* SENDs
  97324. >>> and GETs or RECEIVEs?
  97325. >>-----------
  97326. >>        That's odd. For me the default is to sound the bell for all such
  97327. >>commands, and to not sound it if SET BELL OFF has been stated.
  97328. >>        A guess: you are running a disk cache program, say smartdrive,
  97329. >>which takes over the machine in detail while flushing buffers to real
  97330. >>disk. That could do worse than clobber DOS bells (and that's what is
  97331. >>used at the end of file transfers). If so, del c:\dos\smartdrive.*.
  97332. >>        Joe D.
  97333. > Joe,  Are you saying MS-Kermit and DOS 6.x SMARDRV.EXE are not
  97334. >       compatible?
  97335. --------
  97336.     I said what I said above. I haven't the slightest idea of what
  97337. "compatible" means in this circumstance. But it does not take an advanced
  97338. degree to understand the troubles which an ensue to comms programs if the 
  97339. machine is taken out of action for extended milliseconds to chat with disk.
  97340. In a general sense, the fewer things loaded on the machine the fewer troubles
  97341. one is likely to have.
  97342.     Joe D.
  97343.  
  97344. From news@columbia.edu Tue Feb 28 09:53:36 1995
  97345. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15225
  97346.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 6 Mar 1995 03:52:57 -0500
  97347. Received: by apakabar.cc.columbia.edu id AA19914
  97348.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 6 Mar 1995 03:52:55 -0500
  97349. Newsgroups: comp.protocols.kermit.misc
  97350. Path: news.columbia.edu!panix!news.mathworks.com!newshost.marcam.com!charnel.ecst.csuchico.edu!psgrain!rainrgnews0!europa.com!bscott
  97351. From: bscott@europa.com (Benjamin J. Scott)
  97352. Subject: Linux C-kermit scroll fixed
  97353. Message-Id: <D4pFHD.7Fy@europa.com>
  97354. Sender: usenet@europa.com (Usenet News Poster Address)
  97355. Nntp-Posting-Host: thetics.europa.com
  97356. Organization: Europa |||| Portland, OR
  97357. X-Newsreader: TIN [version 1.2 PL2]
  97358. Date: Tue, 28 Feb 1995 09:53:36 GMT
  97359. Lines: 20
  97360. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  97361.  
  97362. Thank you to those who E-Mailed me. I downloaded the C-Kermit 
  97363. source and recompiled it since the premade binary was the one
  97364. giving me trouble. However, Kermit would not even compile with 
  97365. ncurses 1.8.6, which was what I had. It turned out that 1.8.7
  97366. is out now and that did the trick.  
  97367.  
  97368.  
  97369. BTW the problem was that the scrolling would lock up after a full
  97370. screen (thermometer) type file transfer was completed. I ran "reset"
  97371. to return it to normal. With the new ncurses this problem has vanished.
  97372.  
  97373.  
  97374.                     \  It's always something!  /  Coming soon (promise!)
  97375. bscott@europa.com   |         -Gilda Radner    |         
  97376.                     |                          |  Windoze95..96..97..98...
  97377.  Finger ---- PGP    |        Linux Now         |         -LemmingWare [tm]
  97378.  
  97379.  
  97380.  
  97381.  
  97382.  
  97383. From news@columbia.edu Thu Mar  2 17:25:17 1995
  97384. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05262
  97385.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 6 Mar 1995 10:42:20 -0500
  97386. Received: by apakabar.cc.columbia.edu id AA24414
  97387.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 6 Mar 1995 10:42:18 -0500
  97388. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!udel!gatech!newsxfer.itd.umich.edu!jobone!fiesta.srl.ford.com!eccdb1.pms.ford.com!usenet
  97389. From: Madhu Raj Koka <mkoka@sl0476.srl.ford.com>
  97390. Newsgroups: comp.protocols.kermit.misc
  97391. Subject: [Q] Kermit Binary Transfer Problem
  97392. Date: 2 Mar 1995 17:25:17 GMT
  97393. Organization: ECC at Ford Motor Company, Dearborn Michigan
  97394. Lines: 45
  97395. Message-Id: <3j4v1t$478@eccdb1.pms.ford.com>
  97396. Nntp-Posting-Host: sl0476.srl.ford.com
  97397. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  97398.  
  97399. Hi Guys,
  97400.  
  97401. I am a kind of novice kermit. So please bear with me.
  97402.  
  97403. I am using ProComm ver 1.0 ( old stuff !) for windows to dial up to
  97404. my HP 725 running UNIX. I select the protocol to be kermit in ProComm.
  97405.  
  97406. Text transfers are working fine. But binary is where the snag is.
  97407. On my host (HP) I invoke kermit. Set file type to binary. What I get
  97408. is a "Bad Check Sum" error when I try to send a binary file. 
  97409.  
  97410. On my HP the kermit parameter are as below ( from SHOW ) :
  97411. --------------------------------------------------------------
  97412. C-Kermit, 4E(072) 24 Jan 89, HP 9000 Series HP-UX, Communications Parameters:
  97413.  Line: /dev/tty, speed: -1, mode: remote, modem-dialer: direct
  97414.  Bits: 8, parity: none, duplex: full, flow: xon/xoff, handshake: none
  97415. Terminal emulation: 7 bits
  97416.  
  97417. Protocol Parameters:   Send    Receive
  97418.  Timeout:               10        7
  97419.  Padding:                0        0        Block Check:      1
  97420.  Pad Character:          0        0        Delay:            5
  97421.  Packet Start:           1        1        Max Retries:     10
  97422.  Packet End:            13       13
  97423.  Packet Length:         90       90
  97424.  Length Limit:        2048     1024
  97425.  
  97426. File parameters:
  97427.  File Names:   converted      Debugging Log:    none
  97428.  File Type:    binary         Packet Log:       none
  97429.  File Warning: off            Session Log:      none
  97430.  File Display: on             Transaction Log:  none
  97431.  
  97432. File Byte Size: 8, Incomplete File Disposition: discard, Init file: .kermrc
  97433. --------------------------------------------------------------
  97434.  
  97435. On my PC I tried to "match" these parameters in kermit options. But
  97436. no use for binary transfer !
  97437.  
  97438. Any thoughts are appreciated.
  97439.  
  97440. madhu
  97441.  
  97442. PS : ( I got a copy of MSKERMIT now. Will it make life any easier ? If so
  97443. at what settings. )
  97444.  
  97445. From news@columbia.edu Mon Mar  6 10:52:33 1995
  97446. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05922
  97447.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 6 Mar 1995 10:52:33 -0500
  97448. Received: by apakabar.cc.columbia.edu id AA25264
  97449.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 6 Mar 1995 10:52:31 -0500
  97450. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!swiss.ans.net!gatech!news-feed-1.peachnet.edu!news.duke.edu!godot.cc.duq.edu!hudson.lm.com!fs7.ece.cmu.edu!news.radian.com.!radian.com!Tim_Helmstetter
  97451. From: Tim_Helmstetter@radian.com
  97452. Newsgroups: comp.protocols.kermit.misc
  97453. Subject: MSDOS-KERMIT 3.14 & ESC Remapping
  97454. Date: Tue, 28 Feb 1995 07:47:43
  97455. Organization: Radian Corporation, Austin, TX, USA
  97456. Lines: 22
  97457. Message-Id: <Tim_Helmstetter.17.2F532A95@radian.com>
  97458. Nntp-Posting-Host: 129.160.17.246
  97459. X-Newsreader: Trumpet for Windows [Version 1.0 Rev Final Beta #8]
  97460. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  97461.  
  97462. Help Once Again!
  97463.  
  97464. I am using MSKERMIT 3.14 connecting to a U6000 and then thru Information 
  97465. Services (IS) to an Unisys 1100. My problem is that IS expects ESC 1->0 
  97466. cooresponding to F1->F10. When I remap F1->F10 in Kermit to \271 or \2701 or 
  97467. \27 1 Kermit bounces to the Command prompt. I have tried SET ESC \28 but the 
  97468. same thing happens. I have also tried writing a macro which outputs ESC and 
  97469. then outputs 1->0 but the same thing happens. I am pretty sure I am just not 
  97470. understanding this properly. Can Anyone help?
  97471.  
  97472. P.S. I would like to subscribe to the newsletter but do not remember how to do 
  97473. that. 
  97474.  
  97475. Thank-you for your patience!!!!
  97476.  
  97477.  
  97478.  |~~~~~\  /~~\  |~~~~~\ |~|  /~~\  |~\_|~|      Tim Helmstetter, Sys. Analyst
  97479.  |  ~  / / /\ \ | [<>] || | / /\ \ | \ \ |      Helmstetter_Tim@radian.com 
  97480.  |_|~|_\/_|~~|_\|_____/ |_|/_|~~|_\|_|\__|      Box 201088 Austin, TX 78720 
  97481.  C   O   R   P   O   R   A   T   I   O   N      All opinions are just that...
  97482.                                                         opinions!!!
  97483. --KAB26305.784571010/zippy.radian.com--
  97484.  
  97485. From news@columbia.edu Mon Mar  6 16:05:55 1995
  97486. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07311
  97487.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 6 Mar 1995 11:06:14 -0500
  97488. Received: by apakabar.cc.columbia.edu id AA26519
  97489.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 6 Mar 1995 11:06:10 -0500
  97490. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  97491. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  97492. Newsgroups: comp.protocols.kermit.misc
  97493. Subject: Re: Kermit with PCMCIA modems?
  97494. Date: 6 Mar 1995 16:05:55 GMT
  97495. Organization: Columbia University
  97496. Lines: 39
  97497. Distribution: na
  97498. Message-Id: <3jfbt3$prt@apakabar.cc.columbia.edu>
  97499. References: <3jdiod$qa1@umd5.umd.edu>
  97500. Nntp-Posting-Host: watsun.cc.columbia.edu
  97501. Cc: 
  97502.  
  97503. In article <3jdiod$qa1@umd5.umd.edu>,
  97504. J. Patrick Harrington <jph@astro.umd.edu> wrote:
  97505. >    I have been running kermit 3.13 on my OmniBook 300
  97506. >with an various external modems and serial links to unix
  97507. >boxes with no problems. Recently I have tried using a
  97508. >Megahertz PCMCIA modem (XJ2144 -- 14400bps) in slot A of
  97509. >the OmniBook, but kermit does not seem to recognize it.
  97510. >Is this a known problem, or is there some setting that
  97511. >will work?  Someone suggested that I shoud try another
  97512. >communications program, as these modems are supposed to
  97513. >work with the OB 300 notebooks. I would welcome any ideas.
  97514. >
  97515. There is no guarantee that Kermit or any other software
  97516. will work with this (or any other) particular combination.
  97517. Some modem cards, particularly PCMCIA ones, are so
  97518. idiosyncratic that they work only with special software
  97519. that has been specifically adapted for them.  Some don't
  97520. work at all.
  97521.  
  97522. Having said that, it is still quite likely that you can
  97523. make this combination work by (a) following whatever
  97524. directions come with your modem to eliminate address and/or
  97525. interrupt conflicts (good luck), and (b) upgrading from
  97526. MS-DOS Kermit 3.13 to 3.14, and (c) reading section 6 of
  97527. the KERMIT.BWR file that comes with MS-DOS Kermit 3.14.
  97528.  
  97529. Let's face it -- the PC was never designed to handle all
  97530. the responsibilities that have been foisted upon it over
  97531. the last 10 years.  The average PC of today is overladen
  97532. with memory, CD-ROM drives, Sound Blasters, network boards,
  97533. serial ports, mice, internal data/fax boards, and who knows
  97534. what else -- more devices than there are interrupts to
  97535. handle them and drivers all sharing the same memory and
  97536. pulling the rug out from under each other willy nilly, and
  97537. so almost anybody who attempts to add a device to a PC is
  97538. going to experience interrupt and/or address conflicts or
  97539. mismatches, or worse.  It's a miracle that PCs work at all.
  97540.  
  97541. - Frank
  97542.  
  97543. From news@columbia.edu Mon Mar  6 16:13:06 1995
  97544. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07854
  97545.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 6 Mar 1995 11:13:10 -0500
  97546. Received: by apakabar.cc.columbia.edu id AA27204
  97547.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 6 Mar 1995 11:13:09 -0500
  97548. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  97549. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  97550. Newsgroups: comp.protocols.kermit.misc
  97551. Subject: Re: is there a hebrew MSKermit 3.14?
  97552. Date: 6 Mar 1995 16:13:06 GMT
  97553. Organization: Columbia University
  97554. Lines: 35
  97555. Message-Id: <3jfcaj$qi2@apakabar.cc.columbia.edu>
  97556. References: <3iuib4$3mr@news-2.csn.net>
  97557. Nntp-Posting-Host: watsun.cc.columbia.edu
  97558. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  97559.  
  97560. In article <3iuib4$3mr@news-2.csn.net>, Gideon Weisz <gweisz@csn.net> wrote:
  97561. >a great hebrew adaptation/package was developed for mskermit 3.13
  97562. >is there any work of that kind (or achievement) for 3.14?
  97563. >
  97564. Yes, an even greater one.  Just look in the HEBREW directory of MS-DOS
  97565. 3.14 Kermit diskette (or ZIP file).  Some of the improvements in v3.14
  97566. include: a public domain Hebrew font is packaged on the diskette, automatic
  97567. switching of keyboard modes (English / Hebrew) is supported with a complete
  97568. Hebrew key map provided, etc, and there is now thorough documentation in
  97569. the HEBREW.DOC file.  Here is the READ.ME file from the HEBREW directory:
  97570.  
  97571. USING MS-DOS KERMIT WITH THE HEBREW ALPHABET
  97572.  
  97573. This directory contains the supplementary Hebrew files for MS-DOS Kermit:
  97574.  
  97575.    READ.ME      - This file
  97576.    HEBREW.DOC   - Documentation of Kermit's Hebrew features
  97577.    HEBREW.INI   - Hebrew initialization file for Kermit
  97578.    HEBREW.HLP   - Short explanation of HEBREW.INI
  97579.    CP862.TBL    - IBM PC Hebrew code page table
  97580.    ISO88598.TBL - ISO 8859-8 Latin/Hebrew alphabet table
  97581.    HEBREW7.TBL  - Hebrew-7 table   
  97582.    KEYMAP.PS    - PostScript picture of Hebrew keyboard layout
  97583.  
  97584. For details, read the HEBREW.DOC file.  The associated Hebrew font is
  97585. in the PCFONTS directory, and the HFONT macro loads the Hebrew font.
  97586. The font requires EGA, VGA, or higher graphics adapter.
  97587.  
  97588.   NOTE: Hebrew support works best when used on a normal 25x80 screen.
  97589.   See PCFONTS\READ.ME for further information.
  97590.  
  97591. (End of READ.ME)
  97592.  
  97593.  
  97594.  
  97595.  
  97596. From news@columbia.edu Tue Feb 28 14:02:16 1995
  97597. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07890
  97598.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 6 Mar 1995 11:13:54 -0500
  97599. Received: by apakabar.cc.columbia.edu id AA27246
  97600.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 6 Mar 1995 11:13:52 -0500
  97601. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!swiss.ans.net!gatech!swrinde!cs.utexas.edu!uwm.edu!news.alpha.net!news.mathworks.com!uhog.mit.edu!news.mtholyoke.edu!nntp.et.byu.edu!news.byu.edu!hamblin.math.byu.edu!park.uvsc.edu!not-for-mail
  97602. From: rwitmer@lanai.Eyring.COM (Robert Witmer)
  97603. Newsgroups: comp.protocols.kermit.misc
  97604. Subject: Missing tail end of session.log?
  97605. Date: 28 Feb 1995 07:02:16 -0700
  97606. Organization: Eyring Corporation
  97607. Lines: 30
  97608. Message-Id: <3ivad8$81d@lanai.Eyring.COM>
  97609. Nntp-Posting-Host: eyring.com
  97610. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  97611.  
  97612. I am running C-Kermit 5A on a Unix workstation and have
  97613. a kermit script file.  It starts out with 
  97614.  
  97615. log session
  97616.  
  97617. and when I review the log and watch the screen I can
  97618. see everything except the last few commands of the script.
  97619.  
  97620. Is there some kermit command which will dump the buffers
  97621. which are displaying the logs and the interactive session?
  97622.  
  97623. I have at the end of the script, 
  97624.  
  97625. # Last few things to do...
  97626. ...  <- a few commands to run on remote system.
  97627. clear
  97628. #Now logout from remote system.
  97629. output logout\13
  97630. pause 5
  97631. hangup
  97632. quit
  97633.  
  97634. I see most of the session, down to those last few commands,
  97635. but I don't see all of those last few commands.  The script
  97636. just returns and the last part of the log is missing.
  97637.  
  97638. Any ideas?  Thanks in advance.
  97639.  
  97640. -Bob Witmer
  97641.  
  97642.  
  97643. From news@columbia.edu Mon Mar  6 16:22:36 1995
  97644. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08468
  97645.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 6 Mar 1995 11:22:58 -0500
  97646. Received: by apakabar.cc.columbia.edu id AA28242
  97647.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 6 Mar 1995 11:22:52 -0500
  97648. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  97649. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  97650. Newsgroups: comp.protocols.kermit.misc
  97651. Subject: Re: Why can't I use 14.4K
  97652. Date: 6 Mar 1995 16:22:36 GMT
  97653. Organization: Columbia University
  97654. Lines: 23
  97655. Message-Id: <3jfcsc$rht@apakabar.cc.columbia.edu>
  97656. References: <3j4p34$foj@israel-info.datasrv.co.il>
  97657. Nntp-Posting-Host: watsun.cc.columbia.edu
  97658. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  97659.  
  97660. In article <3j4p34$foj@israel-info.datasrv.co.il>,
  97661. 4th Dimension <winter@zeus.datasrv.co.il> wrote:
  97662. >I've just compiled C-Kermit 5A(190) with the following flags
  97663. >    gmake sunos41gcc \
  97664. >   "KFLAGS=-DBPS_14K -DBPS_28K -DBPS_57K -DCK_WREFRESH -DCK_PCT_BAR"
  97665. >
  97666. >and the compile/link went fine. However, if in my .kermrc I have
  97667. >   set speed 14400
  97668. >then kermit complains
  97669. >   ?Unsupported line speed - 14400
  97670. >
  97671. The reason the sunos41xxx makefile entries do not define the symbols
  97672. -DBPS_14K -DBPS_28K -DBPS_57K is that the underlying operating system
  97673. (SunOS 4.1.x) does not support these speeds.  Look in
  97674. /usr/include/sys/ttydev.h and you can see for yourself.
  97675.  
  97676. You don't need 14400 and 28800 if your modem supports speed buffering
  97677. (most modern modems do).  Just set the modem's interface speed to
  97678. 38400 (the highest speed supported by SunOS 4.1.x) and lock it there,
  97679. then tell C-Kermit to "set speed 38400", "set dial speed-matching
  97680. off".  Also be sure to use RTS/CTS flow control.
  97681.  
  97682. - Frank
  97683.  
  97684. From news@columbia.edu Mon Mar  6 16:27:54 1995
  97685. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08859
  97686.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 6 Mar 1995 11:28:04 -0500
  97687. Received: by apakabar.cc.columbia.edu id AA28695
  97688.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 6 Mar 1995 11:28:00 -0500
  97689. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  97690. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  97691. Newsgroups: comp.protocols.kermit.misc
  97692. Subject: Re: [Q] Kermit Binary Transfer Problem
  97693. Date: 6 Mar 1995 16:27:54 GMT
  97694. Organization: Columbia University
  97695. Lines: 25
  97696. Message-Id: <3jfd6a$s0j@apakabar.cc.columbia.edu>
  97697. References: <3j4v1t$478@eccdb1.pms.ford.com>
  97698. Nntp-Posting-Host: watsun.cc.columbia.edu
  97699. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  97700.  
  97701. In article <3j4v1t$478@eccdb1.pms.ford.com>,
  97702. Madhu Raj Koka  <mkoka@sl0476.srl.ford.com> wrote:
  97703. >I am using ProComm ver 1.0 ( old stuff !) for windows to dial up to
  97704. >my HP 725 running UNIX. I select the protocol to be kermit in ProComm.
  97705. >Text transfers are working fine. But binary is where the snag is.
  97706. >On my host (HP) I invoke kermit. Set file type to binary. What I get
  97707. >is a "Bad Check Sum" error when I try to send a binary file. 
  97708. >...
  97709. >PS : ( I got a copy of MSKERMIT now. Will it make life any easier ? If so
  97710. >at what settings. )
  97711. >
  97712. That's the ticket.  You should also be running a more recent version of
  97713. Kermit on the HP -- version 4E is also very old stuff.
  97714.  
  97715. In any case, it should be sufficient to tell both Kermit programs to
  97716. "set file type binary" -- that should ensure correct binary-mode transfers 
  97717. in both directions.  For further information, please consult the manuals,
  97718. and also the sections on binary transfers in the FAQ:
  97719.  
  97720.   ftp://kermit.columbia.edu/kermit/FAQ.TXT
  97721.  
  97722. If you still have trouble after that, send email to kermit@columbia.edu
  97723. describing the problem in detail.
  97724.  
  97725. - Frank
  97726.  
  97727. From news@columbia.edu Mon Mar  6 16:31:18 1995
  97728. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09164
  97729.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 6 Mar 1995 11:31:24 -0500
  97730. Received: by apakabar.cc.columbia.edu id AA29106
  97731.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 6 Mar 1995 11:31:22 -0500
  97732. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  97733. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  97734. Newsgroups: comp.protocols.kermit.misc
  97735. Subject: Re: Missing tail end of session.log?
  97736. Date: 6 Mar 1995 16:31:18 GMT
  97737. Organization: Columbia University
  97738. Lines: 22
  97739. Message-Id: <3jfdcm$sd4@apakabar.cc.columbia.edu>
  97740. References: <3ivad8$81d@lanai.eyring.com>
  97741. Nntp-Posting-Host: watsun.cc.columbia.edu
  97742. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  97743.  
  97744. In article <3ivad8$81d@lanai.eyring.com>,
  97745. Robert Witmer <rwitmer@lanai.Eyring.COM> wrote:
  97746. >I am running C-Kermit 5A on a Unix workstation and have
  97747. >a kermit script file.  It starts out with 
  97748. >  log session 
  97749. >and when I review the log and watch the screen I can
  97750. >see everything except the last few commands of the script.
  97751. >Is there some kermit command which will dump the buffers
  97752. >which are displaying the logs and the interactive session?
  97753. >
  97754. CLOSE SESSION?
  97755.  
  97756. - Frank
  97757. x
  97758. x
  97759. x
  97760. x
  97761. x
  97762. x
  97763. x
  97764.  
  97765.  
  97766.  
  97767. From news@columbia.edu Mon Mar  6 18:27:34 1995
  97768. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20855
  97769.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 6 Mar 1995 14:19:38 -0500
  97770. Received: by apakabar.cc.columbia.edu id AA16891
  97771.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 6 Mar 1995 14:19:28 -0500
  97772. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  97773. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  97774. Newsgroups: comp.protocols.kermit.misc
  97775. Subject: Re: MSDOS-KERMIT 3.14 & ESC Remapping
  97776. Date: 6 Mar 1995 18:27:34 GMT
  97777. Organization: Columbia University
  97778. Lines: 24
  97779. Message-Id: <3jfk6m$b6p@apakabar.cc.columbia.edu>
  97780. References: <Tim_Helmstetter.17.2F532A95@radian.com>
  97781. Nntp-Posting-Host: watsun.cc.columbia.edu
  97782. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  97783.  
  97784. In article <Tim_Helmstetter.17.2F532A95@radian.com>,
  97785.  <Tim_Helmstetter@radian.com> wrote:
  97786. >I am using MSKERMIT 3.14 connecting to a U6000 and then thru Information 
  97787. >Services (IS) to an Unisys 1100. My problem is that IS expects ESC 1->0 
  97788. >cooresponding to F1->F10. When I remap F1->F10 in Kermit to \271 or \2701 or 
  97789. >\27 1 Kermit bounces to the Command prompt.
  97790. >
  97791. As shown in the user manual, "Using MS-DOS Kermit", 2nd edition, p.211,
  97792. Table 17-2, "MS-DOS Kermit Backslash Notation", the way to do this is:
  97793.  
  97794.   set key \nnn \{27}1
  97795.  
  97796. Otherwise, Kermit has no way of knowing what you mean.  You could
  97797. also use:
  97798.  
  97799.   set key \nnn \27\48
  97800.  
  97801. >P.S. I would like to subscribe to the newsletter but do not remember how to
  97802. >do that. 
  97803. >
  97804. There is still time.  Send email containing your complete postal address to
  97805. knews@columbia.edu.
  97806.  
  97807. - Frank
  97808.  
  97809. From news@columbia.edu Thu Mar  2 17:37:30 1995
  97810. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10863
  97811.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 6 Mar 1995 18:58:40 -0500
  97812. Received: by apakabar.cc.columbia.edu id AA25833
  97813.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 6 Mar 1995 18:58:38 -0500
  97814. Newsgroups: comp.protocols.kermit.misc
  97815. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!udel!gatech!swrinde!howland.reston.ans.net!news.sprintlink.net!malgudi.oar.net!utnetw.utoledo.edu!jupiter!crszczub
  97816. From: crszczub@cse.utoledo.edu (craig szczublewski)
  97817. Subject: It's been asked a million times before...
  97818. Message-Id: <D4tqAJ.I0p@utnetw.utoledo.edu>
  97819. Sender: news@utnetw.utoledo.edu (News Manager)
  97820. Organization: University of Toledo
  97821. X-Newsreader: TIN [version 1.2 PL0]
  97822. Date: Thu, 2 Mar 1995 17:37:30 GMT
  97823. Lines: 20
  97824. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  97825.  
  97826. But I'll ask it again (since I lost the thread from so long ago)
  97827.  
  97828. how do I send/receive a file zmodem/xmodem/ymodem/etc through kermit
  97829. on a unix based system.  I have a site I need to upload files to, but It
  97830. only has zmodem (no kermit) and I want to use kermit to connect to it from
  97831. an AIX box.  Posted a while back was a solution that was in the form of a
  97832. macro that called sz from a shell command.  Does anyone know how to do
  97833. this?  
  97834.  
  97835. thank you in advance
  97836.  
  97837. --
  97838.   +---------------------------+      +------------------------------------+
  97839.   |     Craig Szczublewski    |+     |  crszczub@jupiter.cse.utoledo.edu  |+
  97840.   |    Unique Systems, Inc.   ||     |   4gen!unique!craig%uunet.uu.net   ||
  97841.   | 5610 Monroe St. Suite 210 ||     |------------------------------------||
  97842.   |     Sylvania, OH 43560    ||     | A few munce ugo i cudn't evin spel || 
  97843.   |       (419) 882-1113      ||     |      injunear, now i ar won.       ||
  97844.   +---------------------------+|     +------------------------------------+|
  97845.    +---------------------------+      +------------------------------------+
  97846.  
  97847. From news@columbia.edu Tue Feb 28 09:42:47 1995
  97848. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17723
  97849.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 6 Mar 1995 21:21:19 -0500
  97850. Received: by apakabar.cc.columbia.edu id AA08690
  97851.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 6 Mar 1995 21:21:16 -0500
  97852. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!in1.uu.net!gatech!howland.reston.ans.net!news.moneng.mei.com!uwm.edu!src.honeywell.com!recnews-2.4
  97853. From: hadden@src.honeywell.com (George D. Hadden)
  97854. Newsgroups: comp.protocols.kermit.misc
  97855. Subject: funny new Bios2 option
  97856. Date: 28 Feb 1995 15:42:54 -0600
  97857. Organization: mailEnteringNews @ Honeywell Technology Center
  97858. Lines: 36
  97859. Sender: daemon@src.honeywell.com
  97860. Message-Id: <9502282142.AA10700@skylab.src.honeywell.com>
  97861. Nntp-Posting-Host: moon.src.honeywell.com
  97862. X-Received: from skylab.src.honeywell.com by src.honeywell.com (4.1/smail2.6.3/SRCv0.25);
  97863.     Tue, 28 Feb 95 15:42:48 CST id AA00382  for comp.protocols.kermit.misc  at 
  97864. Posted-Date: Tue, 28 Feb 95 15:42:47 CST
  97865. Received-Date: Tue, 28 Feb 95 15:42:48 CST
  97866. X-Received: by skylab.src.honeywell.com (4.1/SMI-3.2)
  97867.     id AA10700; Tue, 28 Feb 95 15:42:47 CST
  97868. X-To: comp.protocols.kermit.misc
  97869. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  97870.  
  97871.  
  97872. i have a new pcmcia modem which behaves differently wrt kermit than my old
  97873. one did.
  97874.  
  97875. in response to:
  97876.  
  97877.     set port 2
  97878.  
  97879. kermit responds:
  97880.  
  97881.     This port operates through the Bios
  97882.  
  97883. and, in response to:
  97884.  
  97885.     set speed 19200
  97886.  
  97887. kermit responds:
  97888.  
  97889.     Unimplemented baud rate
  97890.  
  97891. neither of these responses occured before.  the modem actually WILL respond
  97892. at 19200 if i first set it to 4800, then to 19200 (go figure!).  this bios
  97893. thing bothers me though.  kermit offers me COM1 through COM4, Bios1 through
  97894. Bios4, 1 through 4, NetBios, and UB-Net1.  (this may be a result of my
  97895. newly installed windows for workgroups.  i'm NOT networked, however.)
  97896.  
  97897. any idea what's going on?  
  97898.  
  97899. thanks in advance,
  97900.  
  97901. -geo
  97902. ---
  97903. George D. Hadden, Research Fellow (612)951-7769(voice), (612)951-7438(fax)
  97904. Honeywell Technology Center, 3660 Technology Drive, Minneapolis, MN 55418
  97905. hadden@src.honeywell.com
  97906.  
  97907.  
  97908. From news@columbia.edu Tue Feb 28 09:00:23 1995
  97909. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21944
  97910.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 6 Mar 1995 22:49:59 -0500
  97911. Received: by apakabar.cc.columbia.edu id AA15389
  97912.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 6 Mar 1995 22:49:57 -0500
  97913. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!swiss.ans.net!gatech!news-feed-1.peachnet.edu!news.duke.edu!news.mathworks.com!uhog.mit.edu!news.mtholyoke.edu!nntp.et.byu.edu!news.provo.novell.com!news.cs.utah.edu!cc.usu.edu!jrd
  97914. From: jrd@cc.usu.edu (Joe Doupnik)
  97915. Newsgroups: comp.protocols.kermit.misc
  97916. Subject: Re: C-Kermit script - responding to a hung system
  97917. Message-Id: <1995Feb28.150023.43218@cc.usu.edu>
  97918. Date: 28 Feb 95 15:00:23 MDT
  97919. References: <3ivo01$6hh@gateway.dircsa.org.au>
  97920. Organization: Utah State University
  97921. Lines: 37
  97922. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  97923.  
  97924. In article <3ivo01$6hh@gateway.dircsa.org.au>, arthur@gateway.dircsa.org.au (Arthur Marsh) writes:
  97925. > I have the following script running under C-Kermit 5A (190) on
  97926. > a Unixware 1.1.2 machine through a fully hardware handshaking
  97927. > cable to a TBBS system with its ports set for null-modem,
  97928. > hardware-handshaking operation.
  97929. > It works fine when the TBBS system is running or powered down
  97930. > or deliberately off-line, as the low DTR on the TBBS side is
  97931. > wired through to DCD on the Unixware side.
  97932. > However, if the TBBS system is hung with DTR high, the script
  97933. > connects, then blocks waiting to send the initial \13 character.
  97934. > Is there any way to test for this situation and exit cleanly 
  97935. > with an error message if this occurs?
  97936. > set flow rts/cts
  97937. > SET COMMAND BYTESIZE 8
  97938. > SET TERMINAL BYTESIZE 8
  97939. > SET TERMINAL CHARACTER-SET TRANSPARENT
  97940. > SET CARRIER ON 1
  97941. > SET QUIET ON
  97942. > ; \%a was 4, 
  97943. > def \%a 4
  97944. > echo 
  97945. > echo Attempting to connect to Common Ground...
  97946. > :tryagain
  97947. > set line /dev/tty\%a
  97948.     Perhaps you would do better with the hardware flow control port
  97949.     /dev/tty00h or equivalent.
  97950.         As Frank has commented extensively, Unix has rotten serial comms
  97951. support and the system may well not do hardware flow control properly nor
  97952. easily. I recall that my UW 1.1.3 system does RTS/CTS control ok with the
  97953. "h" port. You should also play with the SET CARRIER option to get around
  97954. sensing and waiting for it in the initial stages of things. I wish I could
  97955. help more but I avoid modems on my Unix machine.
  97956.     Joe D.
  97957.  
  97958. From news@columbia.edu Mon Mar  6 20:56:20 1995
  97959. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22446
  97960.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 6 Mar 1995 23:00:49 -0500
  97961. Received: by apakabar.cc.columbia.edu id AA16263
  97962.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 6 Mar 1995 23:00:48 -0500
  97963. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!udel!gatech!swrinde!sdd.hp.com!hplabs!hplextra!hplb!hpwin055.uksr!not-for-mail
  97964. From: danielh@hpber002.swiss.hp.com  (Daniel Huber)
  97965. Newsgroups: comp.protocols.kermit.misc
  97966. Subject: How to debug Kermit scripts?
  97967. Date: 6 Mar 1995 20:56:20 GMT
  97968. Organization: Swiss Response Center
  97969. Lines: 24
  97970. Message-Id: <3jfstk$b6p@hpwin055.uksr.hp.com>
  97971. Nntp-Posting-Host: hpber199.swiss.hp.com
  97972. X-Newsreader: TIN [UNIX 1.3 310394BETA PL0]
  97973. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  97974.  
  97975. I'd like to debug Kermit scripts OUTPUT/INPUT handling.
  97976.  
  97977. Any idea how this could be done without having kermit executing a dial
  97978. command?
  97979.  
  97980. Eg.  connecting kermit with a set line command to another pty, where I could
  97981. type the responses by myself?
  97982.  
  97983. How to do that?
  97984.  
  97985. Any pointers?
  97986.  
  97987. Thanks a lot!
  97988.  
  97989. Daniel
  97990.  
  97991.  
  97992.  
  97993. -- 
  97994. Daniel Huber, RCO, HP Niederwangen (8700), Switzerland
  97995. SMTP: danielh@hpber199.swiss.hp.com (or Daniel_Huber@hp8700.desk.hp.com)
  97996. X.400: /G=Daniel/S=Huber/OU=HP8700/O=HP/P=HP/A=ArCom/C=CH/
  97997. If a train station is where a train stops, then what's a workstation?
  97998. --- Opinions Expressed Above Are My Owns ---
  97999.  
  98000. From news@columbia.edu Sun Mar  5 23:35:15 1995
  98001. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24587
  98002.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 6 Mar 1995 23:49:29 -0500
  98003. Received: by apakabar.cc.columbia.edu id AA19915
  98004.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 6 Mar 1995 23:49:28 -0500
  98005. Path: news.columbia.edu!sol.ctr.columbia.edu!ucsnews!newshub.sdsu.edu!ihnp4.ucsd.edu!swrinde!howland.reston.ans.net!news.sprintlink.net!news.bluesky.net!udel!news.mathworks.com!panix!panix3.panix.com!mpollak
  98006. From: Michael Pollak <mpollak@panix.com>
  98007. Newsgroups: comp.protocols.kermit.misc
  98008. Subject: Where can I download the most recent Kermit?
  98009. Date: Sun, 5 Mar 1995 18:35:15 -0500
  98010. Organization: PANIX Public Access Internet and Unix, NYC
  98011. Lines: 7
  98012. Message-Id: <Pine.SUN.3.91.950305183417.26062B-100000@panix3.panix.com>
  98013. Nntp-Posting-Host: panix3.panix.com
  98014. Mime-Version: 1.0
  98015. Content-Type: TEXT/PLAIN; charset=US-ASCII
  98016. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  98017.  
  98018.  
  98019. Subject line says it all, as it has been doubtless said before.  Thanks 
  98020. for your help.
  98021.  
  98022. __________________________________________________________________________
  98023. Michael Pollak................New York City..............mpollak@panix.com
  98024.  
  98025.  
  98026. From news@columbia.edu Mon Mar  6 15:53:32 1995
  98027. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25730
  98028.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 7 Mar 1995 00:07:27 -0500
  98029. Received: by apakabar.cc.columbia.edu id AA21520
  98030.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 7 Mar 1995 00:07:22 -0500
  98031. Newsgroups: comp.protocols.kermit.misc
  98032. Path: news.columbia.edu!sol.ctr.columbia.edu!math.ohio-state.edu!uwm.edu!vixen.cso.uiuc.edu!howland.reston.ans.net!ix.netcom.com!netcom.com!helios
  98033. From: helios@netcom.com (Thomas David Nichols)
  98034. Subject: Re: Where can I download the most recent Kermit?
  98035. Message-Id: <heliosD51058.KH8@netcom.com>
  98036. Organization: Heliotrope Quality Systems
  98037. X-Newsreader: TIN [version 1.2 PL1]
  98038. References: <Pine.SUN.3.91.950305183417.26062B-100000@panix3.panix.com>
  98039. Date: Mon, 6 Mar 1995 15:53:32 GMT
  98040. Lines: 6
  98041. Sender: helios@netcom5.netcom.com
  98042. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  98043.  
  98044. By WWW, http://www.columbia.edu/kermit
  98045.  
  98046. Can't find my notes for anonymous ftp address, but I think it was
  98047. kermit.columbia.edu
  98048. -- 
  98049. David Nichols  <helios@netcom.com>  Heliotrope Quality Systems
  98050.  
  98051. From news@columbia.edu Tue Feb 28 15:41:27 1995
  98052. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28955
  98053.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 7 Mar 1995 00:59:20 -0500
  98054. Received: by apakabar.cc.columbia.edu id AA24935
  98055.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 7 Mar 1995 00:59:17 -0500
  98056. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  98057. From: jrd@cc.usu.edu (Joe Doupnik)
  98058. Newsgroups: comp.protocols.kermit.misc
  98059. Subject: Re: funny new Bios2 option
  98060. Message-Id: <1995Feb28.214127.43255@cc.usu.edu>
  98061. Date: 28 Feb 95 21:41:27 MDT
  98062. References: <9502282142.AA10700@skylab.src.honeywell.com>
  98063. Organization: Utah State University
  98064. Lines: 45
  98065. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  98066.  
  98067. In article <9502282142.AA10700@skylab.src.honeywell.com>, hadden@src.honeywell.com (George D. Hadden) writes:
  98068. > i have a new pcmcia modem which behaves differently wrt kermit than my old
  98069. > one did.
  98070. > in response to:
  98071. >     set port 2
  98072. > kermit responds:
  98073. >     This port operates through the Bios
  98074.  
  98075.     Then, as the Kermit docs explain, it failed to pass muster as a
  98076. real legit serial port. Hence the Bios is used and that is a terrible
  98077. pathway. In short, the modem isn't working properly, and with PCMCIA
  98078. that is not unusual. I recommend you chat with the vendors involved.
  98079.  
  98080. > and, in response to:
  98081. >     set speed 19200
  98082. > kermit responds:
  98083. >     Unimplemented baud rate
  98084. > neither of these responses occured before.  the modem actually WILL respond
  98085. > at 19200 if i first set it to 4800, then to 19200 (go figure!).  this bios
  98086. > thing bothers me though.  kermit offers me COM1 through COM4, Bios1 through
  98087. > Bios4, 1 through 4, NetBios, and UB-Net1.  (this may be a result of my
  98088. > newly installed windows for workgroups.  i'm NOT networked, however.)
  98089.     Sure, the networking is available if you have the underlying network
  98090. stack. That's all it means.
  98091.     Joe D.
  98092.  
  98093. > any idea what's going on?  
  98094. > thanks in advance,
  98095. > -geo
  98096. > ---
  98097. > George D. Hadden, Research Fellow (612)951-7769(voice), (612)951-7438(fax)
  98098. > Honeywell Technology Center, 3660 Technology Drive, Minneapolis, MN 55418
  98099. > hadden@src.honeywell.com
  98100.  
  98101. From news@columbia.edu Mon Mar  6 17:26:07 1995
  98102. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04015
  98103.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 7 Mar 1995 03:01:09 -0500
  98104. Received: by apakabar.cc.columbia.edu id AA01161
  98105.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 7 Mar 1995 03:01:07 -0500
  98106. Path: news.columbia.edu!sol.ctr.columbia.edu!spool.mu.edu!uwm.edu!news.alpha.net!news.mathworks.com!udel!gatech!ncar!newshost.lanl.gov!news.ttu.edu!news
  98107. From: David Coons <d.coons@ttu.edu>
  98108. Newsgroups: comp.protocols.kermit.misc
  98109. Subject: Re: Looking for FAQ
  98110. Date: 6 Mar 1995 17:26:07 GMT
  98111. Organization: Texas Tech Academic Computing Services
  98112. Lines: 4
  98113. Message-Id: <3jfgjf$7pp@hydra.acs.ttu.edu>
  98114. References: <3j47i6$13cu@news.cuny.edu>
  98115. Nntp-Posting-Host: dcoons.acs.ttu.edu
  98116. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  98117.  
  98118. > I was wondering if you folks know if there is a FAQ for this group.
  98119. > If so how would I be able to obtain it.
  98120.  
  98121. Try ftp://kermit.columbia.edu//kermit/e/faq.txt
  98122.  
  98123. From news@columbia.edu Thu Mar  2 07:37:53 1995
  98124. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04264
  98125.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 7 Mar 1995 03:08:57 -0500
  98126. Received: by apakabar.cc.columbia.edu id AA01446
  98127.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 7 Mar 1995 03:08:56 -0500
  98128. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!zombie.ncsc.mil!paladin.american.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  98129. From: jrd@cc.usu.edu (Joe Doupnik)
  98130. Newsgroups: comp.protocols.kermit.misc
  98131. Subject: Re: [Q] Kermit Binary Transfer Problem
  98132. Message-Id: <1995Mar2.133753.43390@cc.usu.edu>
  98133. Date: 2 Mar 95 13:37:53 MDT
  98134. References: <3j4v1t$478@eccdb1.pms.ford.com>
  98135. Organization: Utah State University
  98136. Lines: 28
  98137. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  98138.  
  98139. In article <3j4v1t$478@eccdb1.pms.ford.com>, Madhu Raj Koka <mkoka@sl0476.srl.ford.com> writes:
  98140. > Hi Guys,
  98141. > I am a kind of novice kermit. So please bear with me.
  98142. > I am using ProComm ver 1.0 ( old stuff !) for windows to dial up to
  98143. > my HP 725 running UNIX. I select the protocol to be kermit in ProComm.
  98144.  
  98145.     Yup, ancient, and we don't support ProComm.
  98146.  
  98147. > Text transfers are working fine. But binary is where the snag is.
  98148. > On my host (HP) I invoke kermit. Set file type to binary. What I get
  98149. > is a "Bad Check Sum" error when I try to send a binary file. 
  98150. > On my HP the kermit parameter are as below ( from SHOW ) :
  98151. > --------------------------------------------------------------
  98152. > C-Kermit, 4E(072) 24 Jan 89, HP 9000 Series HP-UX, Communications Parameters:
  98153.  
  98154.     Oh my. That is truely ancient. Please, oh please, update the HP
  98155. to use C Kermit 5A(190).
  98156.  
  98157. > PS : ( I got a copy of MSKERMIT now. Will it make life any easier ? If so
  98158. > at what settings. )
  98159.  
  98160.     a) You must be joking. b) Please do read the manual and the release 
  98161. docs. We have taken pains to pre-answer the question.
  98162.     Good luck with the new toy(s, when you get C Kermit too).
  98163.     Joe D.
  98164.  
  98165. From news@columbia.edu Wed Mar  1 07:51:01 1995
  98166. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04272
  98167.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 7 Mar 1995 03:09:01 -0500
  98168. Received: by apakabar.cc.columbia.edu id AA01450
  98169.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 7 Mar 1995 03:09:00 -0500
  98170. Newsgroups: comp.protocols.kermit.misc
  98171. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!swiss.ans.net!gatech!swrinde!cs.utexas.edu!uwm.edu!lll-winken.llnl.gov!ames!news.hawaii.edu!mpg.phys.hawaii.edu!tony
  98172. From: tony@mpg.phys.hawaii.edu (Antonio Querubin)
  98173. Subject: compatibility with OS/2 COMTCP?
  98174. X-Nntp-Posting-Host: mpg.phys.hawaii.edu
  98175. Message-Id: <D4r4H1.5A4@news.hawaii.edu>
  98176. Sender: news@news.hawaii.edu
  98177. Organization: University of Hawaii
  98178. X-Newsreader: TIN [version 1.2 PL2]
  98179. Date: Wed, 1 Mar 1995 07:51:01 GMT
  98180. Lines: 10
  98181. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  98182.  
  98183. The Internet Access Kit that comes with OS/2 Warp has a COM port to Telnet
  98184. redirector called COMTCP.  While I have been able to get it to work with
  98185. some terminal emulators, MS-Kermit (3.14) isn't one of them.  I've tried
  98186. specifying both the hardware COM ports and the BIOS ports in MS-Kermit and
  98187. neither works.  Has anyone else been able to get MS-Kermit to work with 
  98188. COMTCP?
  98189.  
  98190. --
  98191. Antonio Querubin  
  98192. tony@mpg.phys.hawaii.edu / ah6bw@uhm.ampr.org
  98193.  
  98194. From news@columbia.edu Wed Mar  1 17:59:39 1995
  98195. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09860
  98196.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 7 Mar 1995 05:55:45 -0500
  98197. Received: by apakabar.cc.columbia.edu id AA07406
  98198.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 7 Mar 1995 05:55:44 -0500
  98199. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!in1.uu.net!news.mathworks.com!news.alpha.net!pacifier!pacifier!not-for-mail
  98200. From: mikef@pacifier.com (Mike Freeman)
  98201. Newsgroups: comp.protocols.kermit.misc
  98202. Subject: Kermit Bell
  98203. Date: 1 Mar 1995 09:59:39 -0800
  98204. Organization: Pacifier BBS, Vancouver, Wa.  ((206) 693-0325)
  98205. Lines: 18
  98206. Message-Id: <3j2cmb$93m@pacifier.com>
  98207. Nntp-Posting-Host: pacifier.com
  98208. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  98209.  
  98210.  
  98211. Hi, Kermiteers!
  98212.  
  98213. Using Ms-Kermit V3.14 Patch-level 3 talking to C-Kermit 5A(190) on a UNIX 
  98214. box via dial-up connection, I notice that if C-Kermit is in Server mode, 
  98215. if I escape back to Ms-Kermit and do a SEND, the PC bell beeps upon 
  98216. completion of the transfer.  However, if one does a GET, the bell does 
  98217. *not* beep upon completion of the transfer.  Is there a way (short of 
  98218. writing a macro with "echo \007" in it to do the GET) to make the 
  98219. behavior symmetrical, that is, make my PC beep at the end of *both* SENDs 
  98220. and GETs or RECEIVEs?
  98221.  
  98222. Thanks in advance.
  98223.  
  98224. -- 
  98225. Mike Freeman            |       Internet: mikef@pacifier.com
  98226. GEnie: M.FREEMAN11      |       Amateur Radio Callsign: K7UIJ
  98227. ... Take my advice; I certainly don't use it!
  98228.  
  98229. From news@columbia.edu Thu Mar  2 23:03:19 1995
  98230. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21894
  98231.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 7 Mar 1995 07:28:03 -0500
  98232. Received: by apakabar.cc.columbia.edu id AA22917
  98233.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 7 Mar 1995 07:27:59 -0500
  98234. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!uunet!news.sprintlink.net!nwnexus!news1.halcyon.com!chinook!ken
  98235. From: ken@chinook.halcyon.com (Ken Pizzini)
  98236. Newsgroups: comp.protocols.kermit.misc
  98237. Subject: Re: It's been asked a million times before...
  98238. Date: 2 Mar 1995 23:03:19 GMT
  98239. Organization: What, me?
  98240. Lines: 13
  98241. Message-Id: <3j5irn$88i@news1.halcyon.com>
  98242. References: <D4tqAJ.I0p@utnetw.utoledo.edu>
  98243. Nntp-Posting-Host: chinook.halcyon.com
  98244. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  98245.  
  98246. In article <D4tqAJ.I0p@utnetw.utoledo.edu>,
  98247. craig szczublewski <crszczub@cse.utoledo.edu> wrote:
  98248. >how do I send/receive a file zmodem/xmodem/ymodem/etc through kermit
  98249. >on a unix based system.  I have a site I need to upload files to, but It
  98250. >only has zmodem (no kermit) and I want to use kermit to connect to it from
  98251. >an AIX box.  Posted a while back was a solution that was in the form of a
  98252. >macro that called sz from a shell command.  Does anyone know how to do
  98253. >this?  
  98254.  
  98255. In the C-Kermit 5A(190) distribution there is a ckurzsz.ini script which
  98256. does this kind of thing.
  98257.  
  98258.         --Ken Pizzini
  98259.  
  98260. From news@columbia.edu Tue Mar  7 09:07:42 1995
  98261. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15427
  98262.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 7 Mar 1995 07:55:55 -0500
  98263. Received: by apakabar.cc.columbia.edu id AA24139
  98264.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 7 Mar 1995 07:55:53 -0500
  98265. Path: news.columbia.edu!panix!news.mathworks.com!usenet.eel.ufl.edu!news-feed-1.peachnet.edu!insosf1.infonet.net!usenet.ee.pdx.edu!not-for-mail
  98266. From: rkwee@ee.pdx.edu (Roland Kwee)
  98267. Newsgroups: comp.protocols.kermit.misc
  98268. Subject: Made SLIP script for DOS
  98269. Date: 7 Mar 1995 01:07:42 -0800
  98270. Lines: 98
  98271. Message-Id: <3jh7ou$2bi@cruella.ee.pdx.edu>
  98272. Nntp-Posting-Host: cruella.ee.pdx.edu
  98273. Summary: Automates making a SLIP connection; contains instructions and hints.
  98274. Keywords: slip dialin telnet dos packet-driver
  98275. X-Newsreader: NN version 6.5.0 #4 (NOV)
  98276. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  98277.  
  98278.  
  98279. Here is a Kermit script to setup SLIP under MS/DOS. Although
  98280. it really works, it is of limited usefulness for the following
  98281. reasons:
  98282.  
  98283. 1) Setting up SLIP under DOS is pretty simple. Just put the
  98284. packet-driver SLIP8250.COM (included in the PC/Kermit distribution)
  98285. in the autoexec.bat file. This allows normal Kermit access to
  98286. BBS-es AND slip access. The SLIP access uses the special interrupt
  98287. to communicate with the packet-driver. To actually use SLIP,
  98288. use Kermit to dial into the SLIP service provider and start the remote
  98289. slip. Then, either quit Kermit and start on your home PC either
  98290. FTP, ping, mosaic, or telnet. Kermit can be used as telnet by
  98291. issuing a series of SET TCP/IP  commands.
  98292.  
  98293. 2) Many TCP/IP applications on DOS use special TCP/IP driver software
  98294. such as LanManager, NetBeui, Winsock, etc. This posting ONLY refers
  98295. to applications that use the packet driver. For Winsock, etc, you
  98296. should NOT use the packet driver, unless your Winsock says otherwise.
  98297.  
  98298. 3) For netsurfing, I would suggest forget about DOS/Windows and
  98299. use Linux or FreeBSD. Due to the sophistication of DOS/Win, these are
  98300. almost as good as Unix, and at least as complex to set up. The free
  98301. Unixes have also a lower price, and more and better versions of ftp,
  98302. Mosaic, lynx, mail, news, etc (better price/quality ratio). A week or
  98303. so ago I posted a Kermit script to start SLIP on Linux.
  98304.  
  98305. 4) Note that the script below does NOT have the automatic login 
  98306. and redial features from my Linux script. If you want those, just
  98307. copy them from the Linux script (and modify to suit). You do not
  98308. need the slattach and route sections from the Linux script.
  98309.  
  98310. OK, if you still use DOS, here is the kermit script.
  98311.  
  98312. Good Luck, Roland    <RolandKwee@ACM.org>
  98313. --
  98314.  
  98315. ; slipbpa.tak    Roland Kwee   Feb 8, 1995
  98316. ; Make sure you study the script and change things according
  98317. ; to your com port, modem, phone#, etc.
  98318.  
  98319. echo Setting up Kermit for SLIP
  98320.  
  98321. set port com1
  98322.  
  98323. ; use the highest speed to communicate with the modem, to
  98324. ; keep up with compressed data rates:
  98325. set speed 38400
  98326.  
  98327. echo Initializing the BlackBox modem 32144.
  98328.  
  98329. ; reset modem to factory defaults, echo on, full responses, answer:
  98330. output at&fe1x4s0=1\13
  98331. pause 1
  98332.  
  98333. ; turn the annoying speaker off:
  98334. :output atl0m0\13
  98335.  
  98336. ; hardware flow control (required for slip):
  98337. output at\Q1S7=90\13
  98338. set flow-control RTS/CTS
  98339.  
  98340. ; Network settings (verify with your system administrator): 
  98341. set tcp/ip address 1.1.20.90
  98342. set tcp/ip broadcast 1.1.255.255
  98343. set tcp/ip subnetmask 255.255.0.0
  98344. set tcp/ip primary-nameserver 1.160.11.34
  98345. set tcp/ip gateway 1.1.1.2
  98346. set tcp/ip domain net.surf.gov
  98347.  
  98348. ; Make connection, the entry must be in the file DIALUPS.TXT:
  98349. dial slipprovider
  98350.  
  98351. ; Handle the other side manually. Could be automated.
  98352. connect
  98353.  
  98354. ; When the modems connect: log in, start the remote slip, escape
  98355. ; back to your local Kermit prompt.
  98356.  
  98357. ; If you want to run Mosaic or some other application than Kermit
  98358. ; over the SLIP connection, uncomment this exit:
  98359. ; exit
  98360.  
  98361. ; If you want to use Kermit to telnet into a remote host over SLIP,
  98362. ; this section does that:
  98363.  
  98364. ; Change from dialin mode to telnet mode using the packet-driver interrupt:
  98365. set port tcp/ip
  98366. ; If no name server is running, use the numeric form:
  98367. ;set tcp/ip host cpu.domain.gov
  98368. set tcp/ip host 1.160.1.254
  98369. ; In telnet mode, flow control is not needed.
  98370. set flow none
  98371. connect
  98372.  
  98373. ; To end the SLIP session and hangup the phone, just start Kermit
  98374. ; again, but not in telnet mode, and issue the HANGUP command from
  98375. ; the KErmit command prompt. 
  98376.  
  98377. From news@columbia.edu Wed Mar  1 09:52:54 1995
  98378. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16450
  98379.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 7 Mar 1995 08:14:35 -0500
  98380. Received: by apakabar.cc.columbia.edu id AA24901
  98381.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 7 Mar 1995 08:14:34 -0500
  98382. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  98383. From: jrd@cc.usu.edu (Joe Doupnik)
  98384. Newsgroups: comp.protocols.kermit.misc
  98385. Subject: Re: Kermit Bell
  98386. Message-Id: <1995Mar1.155254.43312@cc.usu.edu>
  98387. Date: 1 Mar 95 15:52:54 MDT
  98388. References: <3j2cmb$93m@pacifier.com>
  98389. Organization: Utah State University
  98390. Lines: 20
  98391. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  98392.  
  98393. In article <3j2cmb$93m@pacifier.com>, mikef@pacifier.com (Mike Freeman) writes:
  98394. > Hi, Kermiteers!
  98395. > Using Ms-Kermit V3.14 Patch-level 3 talking to C-Kermit 5A(190) on a UNIX 
  98396. > box via dial-up connection, I notice that if C-Kermit is in Server mode, 
  98397. > if I escape back to Ms-Kermit and do a SEND, the PC bell beeps upon 
  98398. > completion of the transfer.  However, if one does a GET, the bell does 
  98399. > *not* beep upon completion of the transfer.  Is there a way (short of 
  98400. > writing a macro with "echo \007" in it to do the GET) to make the 
  98401. > behavior symmetrical, that is, make my PC beep at the end of *both* SENDs 
  98402. > and GETs or RECEIVEs?
  98403. -----------
  98404.     That's odd. For me the default is to sound the bell for all such
  98405. commands, and to not sound it if SET BELL OFF has been stated. 
  98406.     A guess: you are running a disk cache program, say smartdrive,
  98407. which takes over the machine in detail while flushing buffers to real
  98408. disk. That could do worse than clobber DOS bells (and that's what is
  98409. used at the end of file transfers). If so, del c:\dos\smartdrive.*.
  98410.     Joe D.
  98411.  
  98412. From news@columbia.edu Tue Mar  7 14:18:37 1995
  98413. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19915
  98414.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 7 Mar 1995 09:18:55 -0500
  98415. Received: by apakabar.cc.columbia.edu id AA29757
  98416.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 7 Mar 1995 09:18:53 -0500
  98417. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  98418. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  98419. Newsgroups: comp.protocols.kermit.misc
  98420. Subject: Re: C-Kermit script - responding to a hung system
  98421. Date: 7 Mar 1995 14:18:37 GMT
  98422. Organization: Columbia University
  98423. Lines: 28
  98424. Message-Id: <3jhpvt$t18@apakabar.cc.columbia.edu>
  98425. References: <3ivo01$6hh@gateway.dircsa.org.au> <1995Feb28.150023.43218@cc.usu.edu>
  98426. Nntp-Posting-Host: watsun.cc.columbia.edu
  98427. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  98428.  
  98429. In article <3ivo01$6hh@gateway.dircsa.org.au>, arthur@gateway.dircsa.org.au (Arthur Marsh) writes:
  98430. > I have the following script running under C-Kermit 5A (190) on
  98431. > a Unixware 1.1.2 machine through a fully hardware handshaking
  98432. > cable to a TBBS system with its ports set for null-modem,
  98433. > hardware-handshaking operation.
  98434. > It works fine when the TBBS system is running or powered down
  98435. > or deliberately off-line, as the low DTR on the TBBS side is
  98436. > wired through to DCD on the Unixware side.
  98437. > However, if the TBBS system is hung with DTR high, the script
  98438. > connects, then blocks waiting to send the initial \13 character.
  98439. In other words DTR is up, which is wired to DCD on the UnixWare
  98440. side, so the SET LINE (open) succeeds, but you can't send a character
  98441. because you are not getting its RTS signal, which is cross-wired to
  98442. CTS.  How about this:
  98443.  
  98444.   WAIT 10 CTS
  98445.   IF FAIL STOP 1 Flow control deadlock
  98446.  
  98447. I'm not certain that modem-signal support is available in the
  98448. UnixWare version of C-Kermit, but it is, this should do the trick.
  98449. If it isn't, maybe it can be added if the underlying support is
  98450. there in OS.  To check, just type "show modem" at the UnixWare
  98451. C-Kermit> prompt.
  98452.  
  98453. - Frank
  98454.  
  98455. From news@columbia.edu Tue Mar  7 15:15:31 1995
  98456. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23266
  98457.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 7 Mar 1995 10:15:42 -0500
  98458. Received: by apakabar.cc.columbia.edu id AA05115
  98459.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 7 Mar 1995 10:15:41 -0500
  98460. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  98461. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  98462. Newsgroups: comp.protocols.kermit.misc
  98463. Subject: Re: How to debug Kermit scripts?
  98464. Date: 7 Mar 1995 15:15:31 GMT
  98465. Organization: Columbia University
  98466. Lines: 33
  98467. Message-Id: <3jhtaj$4ul@apakabar.cc.columbia.edu>
  98468. References: <3jfstk$b6p@hpwin055.uksr.hp.com>
  98469. Nntp-Posting-Host: watsun.cc.columbia.edu
  98470. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  98471.  
  98472. In article <3jfstk$b6p@hpwin055.uksr.hp.com>,
  98473. Daniel Huber <danielh@hpber002.swiss.hp.com> wrote:
  98474. >I'd like to debug Kermit scripts OUTPUT/INPUT handling.
  98475. >Any idea how this could be done without having kermit executing a dial
  98476. >command?  Eg.  connecting kermit with a set line command to another pty,
  98477. >where I could type the responses by myself?
  98478. >
  98479. There are many ways to do this.  First, you should do by hand whatever
  98480. it is that you want to automate, and LOG SESSION during the process to
  98481. record exactly what characters come in from the host.  This will help
  98482. you to write your INPUT statements.
  98483.  
  98484. Then test your script on an actual session, using SET INPUT ECHO ON
  98485. and LOG SESSION.  If it works, you're done.
  98486.  
  98487. If it doesn't work, and you can't figure out what is wrong by looking at
  98488. the screen or the (second) session log, then:
  98489.  
  98490.  a. If your computer has two serial ports, connect them together with
  98491.     a null modem cable.  Run Kermit in CONNECT mode on one and run your
  98492.     script on the other.
  98493.  
  98494.  b. Or connect two computers back-to-back with a null modem cable.
  98495.  
  98496. On the computer that is in CONNECT mode, it is convenient to use SET KEY
  98497. to program the remote computer's responses to keystrokes, for speed and
  98498. to eliminate typing errors.
  98499.  
  98500. Also note that C-Kermit's INPUT and OUTPUT commands also work in REMOTE
  98501. mode, so if you are accessing your UNIX host from a terminal or emulator,
  98502. you can also test your script on the "console".
  98503.  
  98504. - Frank
  98505.  
  98506. From news@columbia.edu Tue Mar  7 17:34:56 1995
  98507. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04943
  98508.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 7 Mar 1995 13:17:21 -0500
  98509. Received: by apakabar.cc.columbia.edu id AA22115
  98510.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 7 Mar 1995 13:17:16 -0500
  98511. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  98512. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  98513. Newsgroups: comp.protocols.kermit.misc
  98514. Subject: Re: compatibility with OS/2 COMTCP?
  98515. Date: 7 Mar 1995 17:34:56 GMT
  98516. Organization: Columbia University
  98517. Lines: 30
  98518. Message-Id: <3ji5g0$hcf@apakabar.cc.columbia.edu>
  98519. References: <D4r4H1.5A4@news.hawaii.edu>
  98520. Nntp-Posting-Host: watsun.cc.columbia.edu
  98521. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  98522.  
  98523. In article <D4r4H1.5A4@news.hawaii.edu>,
  98524. Antonio Querubin <tony@mpg.phys.hawaii.edu> wrote:
  98525. >The Internet Access Kit that comes with OS/2 Warp has a COM port to Telnet
  98526. >redirector called COMTCP.  While I have been able to get it to work with
  98527. >some terminal emulators, MS-Kermit (3.14) isn't one of them.  I've tried
  98528. >specifying both the hardware COM ports and the BIOS ports in MS-Kermit and
  98529. >neither works.  Has anyone else been able to get MS-Kermit to work with 
  98530. >COMTCP?
  98531. >
  98532. I just tried it and wasn't able to get it to work either.
  98533.  
  98534. However, if you are willing to spend some money for Ray Gwinn's SIO drivers
  98535. then you could use Ray Gwinn's SIO package to provide lightning fast Fossil
  98536. support for MS-DOS Kermit and then map a Telnet session to a DOS Com port
  98537. using OS/2 services.
  98538.  
  98539. On the other hand, you could always be using C-Kermit for OS/2 5A(190)
  98540. which is designed as a real OS/2 32-bit application.  It provides most
  98541. of the features that MS-DOS Kermit has except for VT320 and Tek terminals.
  98542. But it also has many OS/2 specific features such as support for long
  98543. filenames, REXX scripting, PM Clipboard copy/paste, Mouse support during
  98544. terminal sessions, and much more.
  98545.  
  98546. C-Kermit for OS/2 may be retrieved from ftp kermit.columbia.edu
  98547. in /kermit/archives/cko190.zip.
  98548.  
  98549. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  98550. "C-Kermit: available on more platforms than any other communications software."
  98551. "Kermit FTP: sending files whenever and wherever they are needed."
  98552.   OS/2 version 5A(190): ftp://kermit.columbia.edu/kermit/archives/cko190.zip 
  98553.  
  98554. From news@columbia.edu Tue Mar  7 16:30:50 1995
  98555. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08543
  98556.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 7 Mar 1995 14:16:47 -0500
  98557. Received: by apakabar.cc.columbia.edu id AA28232
  98558.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 7 Mar 1995 14:16:45 -0500
  98559. Path: news.columbia.edu!sol.ctr.columbia.edu!newsxfer.itd.umich.edu!zip.eecs.umich.edu!newshost.marcam.com!news.mathworks.com!zombie.ncsc.mil!news.duke.edu!eff!news.umbc.edu!haven.umd.edu!hecate.umd.edu!astro.umd.edu!jph
  98560. From: jph@astro.umd.edu (J. Patrick Harrington)
  98561. Newsgroups: comp.protocols.kermit.misc
  98562. Subject: Re: Kermit with PCMCIA modems?
  98563. Date: 7 Mar 1995 16:30:50 GMT
  98564. Organization: U.of Maryland, College Park, Astronomy
  98565. Lines: 47
  98566. Distribution: na
  98567. Message-Id: <3ji1nq$94d@umd5.umd.edu>
  98568. References: <3jdiod$qa1@umd5.umd.edu> <3jfbt3$prt@apakabar.cc.columbia.edu>
  98569. Nntp-Posting-Host: juno.astro.umd.edu
  98570. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  98571.  
  98572. In article <3jfbt3$prt@apakabar.cc.columbia.edu>, fdc@watsun.cc.columbia.edu (Frank da Cruz) writes:
  98573. |> In article <3jdiod$qa1@umd5.umd.edu>,
  98574. |> J. Patrick Harrington <jph@astro.umd.edu> wrote:
  98575. |> >    I have been running kermit 3.13 on my OmniBook 300
  98576. |> >with an various external modems and serial links to unix
  98577. |> >boxes with no problems. Recently I have tried using a
  98578. |> >Megahertz PCMCIA modem (XJ2144 -- 14400bps) in slot A of
  98579. |> >the OmniBook, but kermit does not seem to recognize it.
  98580. |> >Is this a known problem, or is there some setting that
  98581. |> >will work?
  98582. |>>
  98583. |> There is no guarantee that Kermit or any other software
  98584. |> will work with this (or any other) particular combination.
  98585. |> Some modem cards, particularly PCMCIA ones, are so
  98586. |> idiosyncratic that they work only with special software
  98587. |> that has been specifically adapted for them.  Some don't
  98588. |> work at all. 
  98589.              
  98590.  ---- good advice deleted ----
  98591.  
  98592. |> .... and drivers all sharing the same memory and
  98593. |> pulling the rug out from under each other willy nilly, and
  98594. |> so almost anybody who attempts to add a device to a PC is
  98595. |> going to experience interrupt and/or address conflicts or
  98596. |> mismatches, or worse.  It's a miracle that PCs work at all.
  98597. |> 
  98598. |> - Frank
  98599.  
  98600.     Amen!
  98601.  
  98602.     I *have* been able to get my Megahertz XJ2144 PCMCIA
  98603. modem to work properly with the OmniBook 300, and I just
  98604. wanted to clear this issue up and not leave the impression
  98605. that there is a fundamental problem with this combination.
  98606.     I believe what happened is the following: I have been
  98607. using OBMAX on the OB300 to free up enough space to run some
  98608. favorite DOS programs. When OBMAX has removed some of the
  98609. drivers, even if "install=d:\omnibook\obcic.exe /GEN 1" is
  98610. in the config.sys file, I could not find the modem. However,
  98611. with the standard boot to windows (and with "set port 2" in
  98612. kermit) there is no problem. 
  98613.     The XJ2144 does have a tendency to emit a sort of "static"
  98614. sound while running, but this happens on the HP100LX also.
  98615.     Thanks to all who provided suggestions.
  98616.  
  98617.                      Pat Harrington
  98618.  
  98619.  
  98620. From news@columbia.edu Tue Mar  7 06:04:46 1995
  98621. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13601
  98622.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 7 Mar 1995 15:25:17 -0500
  98623. Received: by apakabar.cc.columbia.edu id AA05329
  98624.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 7 Mar 1995 15:25:14 -0500
  98625. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  98626. From: jrd@cc.usu.edu (Joe Doupnik)
  98627. Newsgroups: comp.protocols.kermit.misc
  98628. Subject: Re: Made SLIP script for DOS
  98629. Message-Id: <1995Mar7.120446.43897@cc.usu.edu>
  98630. Date: 7 Mar 95 12:04:46 MDT
  98631. References: <3jh7ou$2bi@cruella.ee.pdx.edu>
  98632. Organization: Utah State University
  98633. Lines: 37
  98634. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  98635.  
  98636. In article <3jh7ou$2bi@cruella.ee.pdx.edu>, rkwee@ee.pdx.edu (Roland Kwee) writes:
  98637. > Here is a Kermit script to setup SLIP under MS/DOS. Although
  98638. > it really works, it is of limited usefulness for the following
  98639. > reasons:
  98640. > 1) Setting up SLIP under DOS is pretty simple. Just put the
  98641. > packet-driver SLIP8250.COM (included in the PC/Kermit distribution)
  98642. > in the autoexec.bat file. This allows normal Kermit access to
  98643.  
  98644.     Actually in autoexec.bat is a bad place. One needs to dial
  98645. and login to the remote host first, then start SLIP frames. 
  98646.  
  98647. > BBS-es AND slip access. The SLIP access uses the special interrupt
  98648. > to communicate with the packet-driver. To actually use SLIP,
  98649.  
  98650.     Terminology: SLIP8250 *is* a Packet Driver. Applications reach
  98651. Packet Drivers though an interrupt between 0x60 and 0x7f.
  98652.  
  98653. > use Kermit to dial into the SLIP service provider and start the remote
  98654. > slip. Then, either quit Kermit and start on your home PC either
  98655. > FTP, ping, mosaic, or telnet. Kermit can be used as telnet by
  98656. > issuing a series of SET TCP/IP  commands.
  98657. > 2) Many TCP/IP applications on DOS use special TCP/IP driver software
  98658. > such as LanManager, NetBeui, Winsock, etc. This posting ONLY refers
  98659.  
  98660.     More terminology. Lan Man uses NetBEUI; it's not a TCP/IP
  98661. stack. SLIP is strictly IP. NetBIOS may be run over the top of a number
  98662. of protocol stacks, including TCP/IP (so-called RFC-NetBIOS).
  98663.  
  98664. > to applications that use the packet driver. For Winsock, etc, you
  98665. > should NOT use the packet driver, unless your Winsock says otherwise.
  98666.  
  98667.     SLIP8250 *is* a Packet Driver, which does SLIP work. If you have only
  98668. telco lines for comms then it's either that or PPP to move TCP/IP traffic.
  98669.     Joe D.
  98670.  
  98671. From news@columbia.edu Thu Mar  2 10:46:52 1995
  98672. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27467
  98673.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 7 Mar 1995 18:47:28 -0500
  98674. Received: by apakabar.cc.columbia.edu id AA26208
  98675.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 7 Mar 1995 18:47:26 -0500
  98676. Path: news.columbia.edu!sol.ctr.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!seismo!ukma!news.cuny.edu!news
  98677. From: ea8qc@qcvaxa.acc.qc.edu
  98678. Newsgroups: comp.protocols.kermit.misc
  98679. Subject: Looking for FAQ
  98680. Date: Thu,  2 Mar 95 10:46:52 GMT
  98681. Organization: Queens College, CUNY
  98682. Lines: 5
  98683. Distribution: w
  98684. Message-Id: <3j47i6$13cu@news.cuny.edu>
  98685. Nntp-Posting-Host: qcvaxa.acc.qc.edu
  98686. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  98687.  
  98688. Hi
  98689. I was wondering if you folks know if there is a FAQ for this group.
  98690. If so how would I be able to obtain it.
  98691. TIA
  98692. Louis Bianchi
  98693.  
  98694. From news@columbia.edu Fri Mar  3 00:46:09 1995
  98695. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28737
  98696.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 7 Mar 1995 19:08:45 -0500
  98697. Received: by apakabar.cc.columbia.edu id AA28154
  98698.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 7 Mar 1995 19:08:43 -0500
  98699. Newsgroups: comp.protocols.kermit.misc
  98700. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!news.duke.edu!news-feed-1.peachnet.edu!gatech!howland.reston.ans.net!ix.netcom.com!netcom.com!zen
  98701. From: zen@netcom.com (DEVRAJ URS)
  98702. Subject: KERMIT for SUN OS 5.3 (Solaris 2.3) Needed
  98703. Message-Id: <zenD4uA4x.LJD@netcom.com>
  98704. Organization: NETCOM On-line Communication Services (408 261-4700 guest)
  98705. X-Newsreader: TIN [version 1.2 PL1]
  98706. Date: Fri, 3 Mar 1995 00:46:09 GMT
  98707. Lines: 12
  98708. Sender: zen@netcom16.netcom.com
  98709. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  98710.  
  98711. Hello Netters
  98712. Where can I get a copy of Kermit for SUN OS 5.3 (Solaris 2.3)
  98713. ?
  98714.  
  98715. Thanks
  98716. dev
  98717.  
  98718. -- 
  98719. Devraj Urs   ( Dev )
  98720. Systems Integrator
  98721. Practical Technology
  98722. zen@netcom.com
  98723. Compuserve: 74143,312
  98724. (714) 521 4678
  98725.  
  98726.  
  98727. From news@columbia.edu Fri Mar  3 02:57:47 1995
  98728. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18359
  98729.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 8 Mar 1995 01:02:17 -0500
  98730. Received: by apakabar.cc.columbia.edu id AA25890
  98731.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 8 Mar 1995 01:02:15 -0500
  98732. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!news.mathworks.com!zombie.ncsc.mil!news.duke.edu!convex!cs.utexas.edu!math.ohio-state.edu!news.acns.nwu.edu!news    
  98733. From: bwk722@lulu.acns.nwu.edu (Kenneth W. Bueltmann, Jr.)
  98734. Newsgroups: comp.protocols.kermit.misc
  98735. Subject: can anyone help me with my solaris2 kermit connection?
  98736. Date: 3 Mar 1995 02:57:47 GMT
  98737. Organization: Northwestern University, Evanston, IL.   USA
  98738. Lines: 81
  98739. Message-Id: <3j60jb$3sf@news.acns.nwu.edu>
  98740. Reply-To: bwk722@lulu.acns.nwu.edu
  98741. Nntp-Posting-Host: lucky136.acns.nwu.edu
  98742. Mime-Version: 1.0
  98743. X-Newsreader: WinVN 0.93.11
  98744. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  98745.  
  98746. Dear all, currently fighting with kermit, trying to establish a 
  98747. connection.  Dialing works fine, can't connect, error results below for 
  98748. hardwire.  Also enclosed are the settings, please help me out, I know 
  98749. that this must be a simple fix.
  98750. Using SUNsparc1, solaris2.3, usr28.8 sportster,serial port A.
  98751.                 TIA, Ken
  98752.  
  98753. -Kermit 5A(189), 30 June 93, SunOS 4.1 (BSD)
  98754. Type ? or HELP for help
  98755. SOLARIS-DEV>connect
  98756. Connecting to /dev/cua/a, speed 19200.
  98757. The escape character is Ctrl-\ (ASCII 28, FS)
  98758. Type the escape character followed by C to get back,
  98759. or followed by ? to see other options.
  98760.  
  98761. Communications disconnect 
  98762. Can't read character: Operation would block
  98763. (Back at multitude)
  98764. SOLARIS-DEV>
  98765.  
  98766. C-Kermit 5A(189), 30 June 93, SunOS 4.1 (BSD)
  98767. Communications Parameters:
  98768.  Line: /dev/cua/a, speed: 19200, mode: local, modem: courier
  98769.  Terminal bits: 8, parity: none, duplex: full, flow: rts/cts, handshake: 
  98770. none
  98771.  Carrier: auto, lockfile: /var/spool/locks/LCK..a
  98772.  Escape character: 28 (^\)
  98773.  
  98774. Protocol Parameters:   Send    Receive
  98775.  Timeout (used= 7):      7       10        Server Timeout:   0
  98776.  Padding:                0        0        Block Check:      2
  98777.  Pad Character:          0        0        Delay:            5
  98778.  Packet Start:           1        1        Max Retries:     10
  98779.  Packet End:            13       13
  98780.  Packet Length:       2048     2048     
  98781.  Maximum Length:      9024     9024        Window Size:      3 set, 0 
  98782. used
  98783.  Buffer Size:         9065     9065        Locking-Shift:    enabled, not 
  98784. used
  98785.  
  98786. File parameters:        Attributes:       on
  98787.  Names:   literal       Debugging Log:    none
  98788.  Type:    binary        Packet Log:       none  Longest filename: 255
  98789.  Collide: backup        Session Log:      none  Longest pathname: 1024
  98790.  Display: serial        Transaction Log:  none
  98791.  
  98792. File Byte Size: 8, Incomplete Files: discard, Init file: .kermrc
  98793.  
  98794. Communications Parameters:
  98795.  Line: /dev/cua/a, speed: 19200, mode: local, modem: courier
  98796.  Terminal bits: 8, parity: none, duplex: full, flow: rts/cts, handshake: 
  98797. none
  98798.  Carrier: auto, lockfile: /var/spool/locks/LCK..a
  98799.  Escape character: 28 (^\)
  98800.  
  98801.  Dial directory: (none)
  98802.  Dial hangup: on, dial modem-hangup: on
  98803.  Dial kermit-spoof: off, dial display: off
  98804.  Dial speed-matching: on, dial mnp-enable: off
  98805.  Dial init-string: ATQ0S2=43X4&M4\{13}
  98806.  Dial dial-command: ATD%s\{13}
  98807.  Dial prefix: (none)
  98808.  Dial timeout: 0 (auto), Redial number: (none)
  98809.  
  98810. Modem signals unavailable
  98811.  
  98812. Command bytesize:  7 bits
  98813.  Terminal bytesize: 8 bits
  98814.  Terminal echo: remote
  98815.  Terminal locking-shift: off
  98816.  Terminal newline-mode:  off
  98817.  Terminal cr-display:    normal
  98818.  Terminal character-set: transparent
  98819.  CONNECT-mode escape character: 28 (Ctrl-\, FS)
  98820.  Suspend: on
  98821.  
  98822. -- 
  98823. Kenneth W. Bueltmann, Jr.
  98824. Northwestern University, Evanston, IL.   USA
  98825. bwk722@lulu.acns.nwu.edu
  98826.  
  98827.  
  98828. From news@columbia.edu Fri Mar  3 05:01:40 1995
  98829. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19696
  98830.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 8 Mar 1995 01:43:56 -0500
  98831. Received: by apakabar.cc.columbia.edu id AA28210
  98832.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 8 Mar 1995 01:43:53 -0500
  98833. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!munnari.oz.au!news.unimelb.EDU.AU!ucsvc.ucs.unimelb.edu.au!jonathan
  98834. From: jonathan@ucsvc.ucs.unimelb.edu.au
  98835. Newsgroups: comp.protocols.kermit.misc
  98836. Subject: C-Kermit 5A(190) ACCVIO.
  98837. Message-Id: <1995Mar3.160140.7722@ucsvc.ucs.unimelb.edu.au>
  98838. Date: 3 Mar 95 16:01:40 +1100
  98839. Organization: The University of Melbourne
  98840. Lines: 52
  98841. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  98842.  
  98843. I am running C-Kermit 5A(190) on OpenVMS VAX v5.5-2.  With a relatively
  98844. trivial script, C-Kermit gets an ACCVIO.  This only occurs if the SMTP
  98845. test being performed is unsuccessful - a successful test causes no
  98846. problem.  Is this a known bug (with bugfix?)?  ... or am I missing
  98847. something here?
  98848.  
  98849. Advice appreciated.
  98850.  
  98851. Jonathan.
  98852. --------------------------------------------------------------------------------
  98853. Jonathan Ridler,                     Telephone:  +61 3 344 7994
  98854. Information Technology Services,     Fax:        +61 3 347 4803
  98855. The University of Melbourne,         Internet: jonathan@ucsvc.its.unimelb.edu.au
  98856. Parkville, Vic., AUSTRALIA, 3052.    X.121:    050523343000305::jonathan
  98857. --------------------------------------------------------------------------------
  98858.  
  98859. $ type smtp.cmd
  98860. ; KERMIT command file to test SMTP port.
  98861. ; Thanks to Aaron Leonard @ TGV Inc.
  98862. set host testbox 25
  98863. input 3 220     ; wait 3 secs for 220 banner
  98864. if failure  goto  test_again
  98865. ECHO SMTP responded as expected.
  98866. QUIT
  98867. ;
  98868. :test_again
  98869. ECHO SMTP did not respond - testing again.
  98870. set host testbox 25
  98871. input 10 220    ; wait 10 secs for 220 banner
  98872. if failure  goto  smtp_dead
  98873. ECHO SMTP responded as expected.
  98874. QUIT
  98875. ;
  98876. :smtp_dead
  98877. ECHO SMTP is NOT responding!
  98878. QUIT
  98879.  
  98880. $ kermit smtp.cmd
  98881. Executing SYS_SYSROOT:[KERMIT]CKERMIT.INI;3 for VMS...
  98882. Good Afternoon!
  98883.  Trying 128.250.111.1...
  98884. SMTP did not respond - testing again.
  98885. %SYSTEM-F-ACCVIO, access violation, reason mask=00, virtual address=00000000, PC
  98886. =0007FA31, PSL=03C00000
  98887. %TRACE-F-TRACEBACK, symbolic stack dump follows
  98888. module name     routine name                     line       rel PC    abs PC
  98889.  
  98890. CKUUS7          setlin                           8438      00000211  0007FA31
  98891. CKUUS3          doprm                            7133      0000026D  0007AB61
  98892. CKUUSR          docmd                            8056      0000207D  00069C3D
  98893. CKUUS5          parser                           7013      0000066A  0004EDFA
  98894. CKCMAI          main                             6657      00000302  0004D702
  98895.  
  98896. From news@columbia.edu Fri Mar  3 15:10:50 1995
  98897. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24080
  98898.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 8 Mar 1995 04:00:44 -0500
  98899. Received: by apakabar.cc.columbia.edu id AA03378
  98900.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 8 Mar 1995 04:00:42 -0500
  98901. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!usc!sdd.hp.com!hplabs!hplextra!hplb!hpwin055.uksr!not-for-mail
  98902. From: danielh@hpber002.swiss.hp.com  (Daniel Huber)
  98903. Newsgroups: comp.protocols.kermit.misc
  98904. Subject: Kermit script wanted
  98905. Date: 3 Mar 1995 15:10:50 GMT
  98906. Organization: Swiss Response Center
  98907. Lines: 32
  98908. Message-Id: <3j7bhq$435@hpwin055.uksr.hp.com>
  98909. Nntp-Posting-Host: hpber199.swiss.hp.com
  98910. X-Newsreader: TIN [UNIX 1.3 310394BETA PL0]
  98911. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  98912.  
  98913. Hi there,
  98914.  
  98915. Running kermit 5A(188) (by the way, is this an old version?),
  98916. I'm searching for kermit script examples (I'm not that good in programming
  98917. ;-). The scripts should contain:
  98918.  
  98919. - error handling (output/input chatting with remote)
  98920. - self executing script
  98921. - self documented
  98922. - good for learning kermit scripts
  98923.  
  98924. In fact, I would like to make the simple script I have done for a paging
  98925. service more foolproof and include error handling. However, if somebody
  98926. already has written a IXO or ::number::message:: like kermit script, this
  98927. would be very appreciated (I know tpage, but I will not have perl available
  98928. on the machines I will install this script)
  98929.  
  98930. Could somebody please give me a pointer?
  98931.  
  98932. Thanks a lot
  98933.  
  98934. Regards
  98935.  
  98936. Daniel
  98937.  
  98938.  
  98939. -- 
  98940. Daniel Huber, RCO, HP Niederwangen (8700), Switzerland
  98941. SMTP: danielh@hpber199.swiss.hp.com (or Daniel_Huber@hp8700.desk.hp.com)
  98942. X.400: /G=Daniel/S=Huber/OU=HP8700/O=HP/P=HP/A=ArCom/C=CH/
  98943. If a train station is where a train stops, then what's a workstation?
  98944. --- Opinions Expressed Above Are My Owns ---
  98945.  
  98946. From news@columbia.edu Fri Mar  3 15:13:15 1995
  98947. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24671
  98948.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 8 Mar 1995 04:13:41 -0500
  98949. Received: by apakabar.cc.columbia.edu id AA03748
  98950.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 8 Mar 1995 04:13:40 -0500
  98951. Newsgroups: comp.protocols.kermit.misc
  98952. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!usc!hookup!swrinde!howland.reston.ans.net!ix.netcom.com!netcom.com!helios
  98953. From: helios@netcom.com (Thomas David Nichols)
  98954. Subject: Re: ^^<< WINDOWS Kermit >>^^  FTP sites?
  98955. Message-Id: <heliosD4vEA3.9H8@netcom.com>
  98956. Organization: Heliotrope Quality Systems
  98957. X-Newsreader: TIN [version 1.2 PL1]
  98958. References: <3j4mau$s3h@bingnet1.cc.binghamton.edu>
  98959. Date: Fri, 3 Mar 1995 15:13:15 GMT
  98960. Lines: 9
  98961. Sender: helios@netcom9.netcom.com
  98962. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  98963.  
  98964. Mark Garcia (bb09320@bingsuns.cc.binghamton.edu) wrote:
  98965. :     Is there any FTP sites that I can download a version of Kermit
  98966. : for windows?  I 'd appreciate any and all help.
  98967.  
  98968. MS-Kermit comes with a pif file and instructions for running in a DOS
  98969. window.  See thread "Kermit 3.14 and Winsock" for a native-Windows
  98970. clone if you dare.  I haven't tried it.
  98971. -- 
  98972. David Nichols  <helios@netcom.com>  Heliotrope Quality Systems
  98973.  
  98974. From news@columbia.edu Sat Mar  4 03:09:55 1995
  98975. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05587
  98976.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 8 Mar 1995 08:51:14 -0500
  98977. Received: by apakabar.cc.columbia.edu id AA28373
  98978.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 8 Mar 1995 08:51:12 -0500
  98979. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!swiss.ans.net!solaris.cc.vt.edu!news.mathworks.com!panix!panix3.panix.com!mpollak
  98980. From: Michael Pollak <mpollak@panix.com>
  98981. Newsgroups: comp.protocols.kermit.misc
  98982. Subject: Getting Kermit up to zmodem speed
  98983. Date: Fri, 3 Mar 1995 22:09:55 -0500
  98984. Organization: PANIX Public Access Internet and Unix, NYC
  98985. Lines: 18
  98986. Message-Id: <Pine.SUN.3.91.950303220619.26369A-100000@panix3.panix.com>
  98987. Nntp-Posting-Host: panix3.panix.com
  98988. Mime-Version: 1.0
  98989. Content-Type: TEXT/PLAIN; charset=US-ASCII
  98990. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  98991.  
  98992.  
  98993. I was told that if I put the following lines in my MSKERMIT.INI file it 
  98994. would download as fast as zmodem:
  98995.  
  98996. set send packet-length 9024
  98997. set receive packet-length 9024
  98998. set block 3
  98999.  
  99000. But instead I get two lines of error message, saying
  99001.  
  99002. ?Choose a decimal number from 20 to 94 (normal) or to 2000 (long)
  99003. ?Choose a decimal number from 20 to 94 (normal) or to 2000 (long)
  99004.  
  99005. What am I doing wrong and how can I fix it?  Any help would be appreciated.
  99006.  
  99007. __________________________________________________________________________
  99008. Michael Pollak................New York City..............mpollak@panix.com
  99009.  
  99010.  
  99011. From news@columbia.edu Sun Mar  4 03:16:37 1995
  99012. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05674
  99013.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 8 Mar 1995 08:53:43 -0500
  99014. Received: by apakabar.cc.columbia.edu id AA28509
  99015.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 8 Mar 1995 08:53:41 -0500
  99016. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!swiss.ans.net!solaris.cc.vt.edu!news.mathworks.com!panix!not-for-mail
  99017. From: mgflax@panix.com (Marshall G. Flax)
  99018. Newsgroups: comp.protocols.kermit.misc
  99019. Subject: Re: Getting Kermit up to zmodem speed
  99020. Date: 3 Mar 1995 22:16:37 -0500
  99021. Organization: Currently, _extremely_ disorganized
  99022. Lines: 23
  99023. Message-Id: <3j8m2l$kpo@panix.com>
  99024. References: <Pine.SUN.3.91.950303220619.26369A-100000@panix3.panix.com>
  99025. Nntp-Posting-Host: panix.com
  99026. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  99027.  
  99028. In article <Pine.SUN.3.91.950303220619.26369A-100000@panix3.panix.com>,
  99029. Michael Pollak  <mpollak@panix.com> wrote:
  99030. >
  99031. >I was told that if I put the following lines in my MSKERMIT.INI file it 
  99032. >would download as fast as zmodem:
  99033. >
  99034. >set send packet-length 9024
  99035. >set receive packet-length 9024
  99036. >set block 3
  99037. >
  99038. >But instead I get two lines of error message, saying
  99039. >
  99040. >?Choose a decimal number from 20 to 94 (normal) or to 2000 (long)
  99041. >?Choose a decimal number from 20 to 94 (normal) or to 2000 (long)
  99042. >
  99043. >What am I doing wrong and how can I fix it?  Any help would be appreciated.
  99044.  
  99045. Sounds like an old version of kermit.  In general, it's good to post
  99046. the version you're using when experiencing problems.
  99047.  
  99048. marshall
  99049. -- 
  99050.                   [Marshall G. Flax -- mgflax@panix.com]
  99051.  
  99052. From news@columbia.edu Wed Mar  8 14:29:57 1995
  99053. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07681
  99054.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 8 Mar 1995 09:30:12 -0500
  99055. Received: by apakabar.cc.columbia.edu id AA01907
  99056.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 8 Mar 1995 09:30:10 -0500
  99057. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  99058. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  99059. Newsgroups: comp.protocols.kermit.misc
  99060. Subject: Re: Looking for FAQ
  99061. Date: 8 Mar 1995 14:29:57 GMT
  99062. Organization: Columbia University
  99063. Lines: 20
  99064. Distribution: w
  99065. Message-Id: <3jkf15$1q3@apakabar.cc.columbia.edu>
  99066. References: <3j47i6$13cu@news.cuny.edu>
  99067. Nntp-Posting-Host: watsun.cc.columbia.edu
  99068. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  99069.  
  99070. In article <3j47i6$13cu@news.cuny.edu>,  <ea8qc@qcvaxa.acc.qc.edu> wrote:
  99071. >I was wondering if you folks know if there is a FAQ for this group.
  99072. >If so how would I be able to obtain it.
  99073. >
  99074. Yes:
  99075.  
  99076.   ftp://kermit.columbia.edu/faq.txt
  99077.  
  99078. It also goes by various other names, which are all links to the same file:
  99079.  
  99080.   ftp://kermit.columbia.edu/e/faq.txt
  99081.   ftp://kermit.columbia.edu/fAQ.TXT
  99082.  
  99083. etc.  It is also accessible on the Web:
  99084.  
  99085.   http://www.columbia.edu/kermit
  99086.  
  99087. and then select "Further information".
  99088.  
  99089. - Frank
  99090.  
  99091. From news@columbia.edu Wed Mar  8 14:32:38 1995
  99092. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07849
  99093.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 8 Mar 1995 09:32:52 -0500
  99094. Received: by apakabar.cc.columbia.edu id AA02140
  99095.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 8 Mar 1995 09:32:48 -0500
  99096. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  99097. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  99098. Newsgroups: comp.protocols.kermit.misc
  99099. Subject: Re: KERMIT for SUN OS 5.3 (Solaris 2.3) Needed
  99100. Date: 8 Mar 1995 14:32:38 GMT
  99101. Organization: Columbia University
  99102. Lines: 41
  99103. Message-Id: <3jkf66$22e@apakabar.cc.columbia.edu>
  99104. References: <zenD4uA4x.LJD@netcom.com>
  99105. Nntp-Posting-Host: watsun.cc.columbia.edu
  99106. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  99107.  
  99108. In article <zenD4uA4x.LJD@netcom.com>, DEVRAJ URS <zen@netcom.com> wrote:
  99109. >Where can I get a copy of Kermit for SUN OS 5.3 (Solaris 2.3)
  99110. >
  99111. anonymous ftp to kermit.columbia edu, directory kermit/archives,
  99112. binary mode, file cku190.tar.Z (or .gz for gunzip).  Uncompress,
  99113. untar, read the instructions at the top of the makefile, and then
  99114. give the appropriate "make" command, for example:
  99115.  
  99116.   make solaris2x   (for Sun compiler)
  99117.   make solaris2xg  (for GCC)
  99118.  
  99119. which should produce an executable called "wermit".  Try it out
  99120. and if it's OK, install it as "kermit" in the desired location,
  99121. such as /usr/local/bin.  Read the ckuins.doc file for additional
  99122. installation instructions.
  99123.  
  99124. Please be sure to also order the manual, since it shows you how
  99125. to use the software and how to get the most out of it, and sales of
  99126. the manual are the primary source of income that pays for our work.
  99127.  
  99128.   Frank da Cruz and Christine M. Gianone, "Using C-Kermit", Digital
  99129.   Press / Butterworth-Heinemann, Woburn, MA, 1993, 514 pages, ISBN
  99130.   1-55558-108-0
  99131.  
  99132.   US single-copy price: $36.95; quantity discounts available.
  99133.   Available in computer bookstores or directly from Columbia
  99134.   University:
  99135.  
  99136.     Kermit Development and Distribution
  99137.     Columbia University Academic Information Systems
  99138.     612 West 115th Street
  99139.     New York, NY  10025  USA
  99140.     Telephone: (USA) 212 854-3703
  99141.  
  99142.   Domestic and overseas orders accepted.  Price: $36.95 (US, Canada, and
  99143.   Mexico), $47 elsewhere.  Orders may be paid by MasterCard or Visa, or
  99144.   prepaid by check in US dollars.  Add $35 bank fee for checks not drawn on
  99145.   a US bank.  Price includes shipping.  Do not include sales tax.
  99146.   Inquire about quantity discounts.
  99147.  
  99148. - Frank
  99149.  
  99150. From news@columbia.edu Wed Mar  8 14:38:03 1995
  99151. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08086
  99152.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 8 Mar 1995 09:38:14 -0500
  99153. Received: by apakabar.cc.columbia.edu id AA02752
  99154.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 8 Mar 1995 09:38:12 -0500
  99155. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  99156. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  99157. Newsgroups: comp.protocols.kermit.misc
  99158. Subject: Re: can anyone help me with my solaris2 kermit connection?
  99159. Date: 8 Mar 1995 14:38:03 GMT
  99160. Organization: Columbia University
  99161. Lines: 24
  99162. Message-Id: <3jkfgb$2ln@apakabar.cc.columbia.edu>
  99163. References: <3j60jb$3sf@news.acns.nwu.edu>
  99164. Nntp-Posting-Host: watsun.cc.columbia.edu
  99165. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  99166.  
  99167. In article <3j60jb$3sf@news.acns.nwu.edu>,
  99168. Kenneth W. Bueltmann, Jr. <bwk722@lulu.acns.nwu.edu> wrote:
  99169. >Dear all, currently fighting with kermit, trying to establish a 
  99170. >connection.  Dialing works fine, can't connect, error results below for 
  99171. >hardwire.  Also enclosed are the settings, please help me out, I know 
  99172. >that this must be a simple fix.
  99173. >Using SUNsparc1, solaris2.3, usr28.8 sportster,serial port A.
  99174. >...
  99175. >C-Kermit 5A(189), 30 June 93, SunOS 4.1 (BSD)
  99176. >
  99177. Say no more.  Solaris != SunOS.
  99178.  
  99179. You are running (a) an out of date version of Kermit, and (b) the
  99180. wrong version.  Please pick up version 5A(190) from kermit.columbia.edu,
  99181. and then build it for Solaris, not for SunOS.  See the instructions at
  99182. the top of the makefile, and also read the ckuins.doc file for further
  99183. installation instructions, and also be sure to read the Solaris section
  99184. of the ckuker.bwr file for voluminous notes about problems with Solaris
  99185. 2.3 (which mostly boil down to installing every Solaris patch you can
  99186. get your hands on).
  99187.  
  99188. Btw, preliminary reports about C-Kermit on Solaris 2.4 are good.
  99189.  
  99190. - Frank
  99191.  
  99192. From news@columbia.edu Wed Mar  8 14:46:01 1995
  99193. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08514
  99194.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 8 Mar 1995 09:46:11 -0500
  99195. Received: by apakabar.cc.columbia.edu id AA03371
  99196.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 8 Mar 1995 09:46:07 -0500
  99197. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  99198. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  99199. Newsgroups: comp.protocols.kermit.misc
  99200. Subject: Re: Kermit script wanted
  99201. Date: 8 Mar 1995 14:46:01 GMT
  99202. Organization: Columbia University
  99203. Lines: 69
  99204. Message-Id: <3jkfv9$38s@apakabar.cc.columbia.edu>
  99205. References: <3j7bhq$435@hpwin055.uksr.hp.com>
  99206. Nntp-Posting-Host: watsun.cc.columbia.edu
  99207. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  99208.  
  99209. In article <3j7bhq$435@hpwin055.uksr.hp.com>,
  99210. Daniel Huber <danielh@hpber002.swiss.hp.com> wrote:
  99211. >Running kermit 5A(188) (by the way, is this an old version?),
  99212. >I'm searching for kermit script examples (I'm not that good in programming
  99213. >;-). The scripts should contain:
  99214. >
  99215. >- error handling (output/input chatting with remote)
  99216. >- self executing script
  99217. >- self documented
  99218. >- good for learning kermit scripts
  99219. >
  99220. Please, if you want to learn how to write Kermit scripts, use the
  99221. C-Kermit book.  There are three chapters that show you everything,
  99222. step by step.  Every technique that you need to use is explained and
  99223. illustrated by example.  Would you try to program in C or Pascal or
  99224. Perl without looking at a manual?  Would you try to make a TeX document
  99225. without ever looking at the TeX book?
  99226.  
  99227. Sorry to keep responding to so many messages this way, but (a) we put
  99228. a lot of work into these books and they answer most of the questions
  99229. posted on this list, and (b) sales of the books are what pay for the
  99230. software you are using.
  99231.  
  99232. Daniel, you can get an idea of how to write Kermit scripts by looking
  99233. at what is right under your nose: the ckermit.ini (.kermrc) file that
  99234. is distributed with C-Kermit.  As far as pagers are concerned,
  99235. scripts for handling alphanumeric pagers were posted to this list,
  99236. if I recall correctly, and one was also published in the previous issue
  99237. of DEC Professional.  For numeric pagers, see the hints in the FAQ,
  99238. ftp://kermit.columbia.edu/faq.txt.
  99239.  
  99240. The C-Kermit manual is available in both English and German editions:
  99241.  
  99242.   Frank da Cruz and Christine M. Gianone, "Using C-Kermit", Digital Press /
  99243.   Butterworth-Heinemann, Woburn, MA, 1993, 514 pages, ISBN 1-55558-108-0
  99244.  
  99245.   US single-copy price: $36.95; quantity discounts available.  Available in
  99246.   computer bookstores or directly from Columbia University:
  99247.  
  99248.     Kermit Development and Distribution
  99249.     Columbia University Academic Information Systems
  99250.     612 West 115th Street
  99251.     New York, NY  10025  USA
  99252.     Telephone: (USA) 212 854-3703
  99253.  
  99254.   Domestic and overseas orders accepted.  Price: $36.95 (US, Canada, and
  99255.   Mexico), $47 elsewhere.  Orders may be paid by MasterCard or Visa, or
  99256.   prepaid by check in US dollars.  Add $35 bank fee for checks not drawn on
  99257.   a US bank.  Price includes shipping.  Do not include sales tax.
  99258.   Inquire about quantity discounts.
  99259.  
  99260.   You can also order by phone from the publisher, Digital Press /
  99261.   Butterworth-Heinemann, with MasterCard, Visa, or American Express:
  99262.  
  99263.     +1 800 366-2665 (Woburn, Massachusetts office for USA & Canada)
  99264.     +1 800 665-1148 (Logan Bros, Winnepeg, Manitoba office for Canada)
  99265.     +44 993 58521   (Rushden, England office for Europe)
  99266.     +61 2 372-5511  (Chatswood, NSW office for Australia & New Zealand)
  99267.     +65 220-3684    (Singapore office for Asia)
  99268.  
  99269.   A German-language edition is also available:
  99270.  
  99271.     Frank da Cruz and Christine M. Gianone, "C-Kermit - Einfuehrung und
  99272.     Referenz", Verlag Heinz Heise, Hannover, Germany (1994).
  99273.     ISBN 3-88229-023-4.  Deutsch von Gisbert W. Selke.  Price: DM 90,00.  
  99274.     Verlag Heinz Heise GmbH & Co. KG, Helstorfer Strasse 7, D-30625 Hannover.
  99275.     Tel. +49 (05 11) 53 52-0, Fax. +49 (05 11) 53 53-1 29.
  99276.  
  99277. - Frank
  99278.  
  99279. From news@columbia.edu Wed Mar  8 14:53:52 1995
  99280. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08927
  99281.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 8 Mar 1995 09:54:06 -0500
  99282. Received: by apakabar.cc.columbia.edu id AA04063
  99283.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 8 Mar 1995 09:54:01 -0500
  99284. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  99285. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  99286. Newsgroups: comp.protocols.kermit.misc
  99287. Subject: Re: Getting Kermit up to zmodem speed
  99288. Date: 8 Mar 1995 14:53:52 GMT
  99289. Organization: Columbia University
  99290. Lines: 39
  99291. Message-Id: <3jkge0$3uk@apakabar.cc.columbia.edu>
  99292. References: <Pine.SUN.3.91.950303220619.26369A-100000@panix3.panix.com>
  99293. Nntp-Posting-Host: watsun.cc.columbia.edu
  99294. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  99295.  
  99296. In article <Pine.SUN.3.91.950303220619.26369A-100000@panix3.panix.com>,
  99297. Michael Pollak  <mpollak@panix.com> wrote:
  99298. >I was told that if I put the following lines in my MSKERMIT.INI file it 
  99299. >would download as fast as zmodem:
  99300. >
  99301. >set send packet-length 9024
  99302. >set receive packet-length 9024
  99303. >set block 3
  99304. >
  99305. Yes, you can download with Kermit as fast as (or faster than) Zmodem,
  99306. but the directions above are oversimplified.  In general (assuming we are
  99307. talking about dialup connections using modern modems), the following elements
  99308. are necessary:
  99309.  
  99310.   1. Hardware flow control
  99311.   2. Long packets (but 9024 is overkill -- 1000 or 2000 should be enough)
  99312.   3. Sliding windows ("set window 4" or thereabouts)
  99313.   4. Control-character unprefixing (makes a difference for ZIP files, etc)
  99314.  
  99315. See our FAQ for further information:
  99316.  
  99317.   ftp://kermit.columbia.edu/kermit/faq.txt
  99318.  
  99319. >But instead I get two lines of error message, saying
  99320. >
  99321. >?Choose a decimal number from 20 to 94 (normal) or to 2000 (long)
  99322. >?Choose a decimal number from 20 to 94 (normal) or to 2000 (long)
  99323. >
  99324. It looks like you are using either an ancient version of Kermit, or else
  99325. some other (non-Kermit) software.  The current version of Kermit for PCs
  99326. is MS-DOS Kermit 3.14, January 1995.  The current version of C-Kermit is
  99327. 5A(190), October 1994.
  99328.  
  99329. By the way, something is wrong with News here, and delivery of messages
  99330. is delayed by a long time -- about a week.  If all the messages that I am
  99331. replying to have already been long since answered, my apologies for the
  99332. duplications.
  99333.  
  99334. - Frank
  99335.  
  99336. From news@columbia.edu Wed Mar  8 14:37:06 1995
  99337. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16622
  99338.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 8 Mar 1995 11:32:47 -0500
  99339. Received: by apakabar.cc.columbia.edu id AA13280
  99340.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 8 Mar 1995 11:32:43 -0500
  99341. Newsgroups: comp.protocols.kermit.misc
  99342. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!swrinde!pipex!uknet!newsfeed.ed.ac.uk!ainews!aisb!simonpe
  99343. From: simonpe@aisb.ed.ac.uk (Simon Perkins)
  99344. Subject: Lost messages while interacting with Kermit
  99345. Message-Id: <D54Lxv.M06@aisb.ed.ac.uk>
  99346. Sender: news@aisb.ed.ac.uk (Network News Administrator)
  99347. Reply-To: Simon.Perkins@ed.ac.uk
  99348. Organization: Dept of AI, University of Edinburgh, Scotland
  99349. Date: Wed, 8 Mar 1995 14:37:06 GMT
  99350. Lines: 14
  99351. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  99352.  
  99353. I am using C-Kermit 5A(190) on UNIX in local mode.
  99354.  
  99355. While I am interacting with Kermit directly (i.e. while the C-Kermit>
  99356. prompt is up), characters that get set by a remote host to the kermit
  99357. terminal screen seem to just get lost. When I reconnect they don't
  99358. reappear again as I seem to remeber they did on MS-DOS Kermit. Is
  99359. there anyway of not losing this information?
  99360.  
  99361. -- 
  99362. Simon Perkins                             simonpe@aisb.ed.ac.uk
  99363.  
  99364. Dept. of AI,
  99365. Edinburgh University.
  99366. --------------------------------------------------------------------
  99367.  
  99368. From news@columbia.edu Sat Mar  4 14:04:25 1995
  99369. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28158
  99370.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 8 Mar 1995 14:00:42 -0500
  99371. Received: by apakabar.cc.columbia.edu id AA27303
  99372.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 8 Mar 1995 14:00:40 -0500
  99373. Newsgroups: comp.protocols.kermit.misc
  99374. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!gatech!howland.reston.ans.net!ix.netcom.com!netcom.com!helios
  99375. From: helios@netcom.com (Thomas David Nichols)
  99376. Subject: Re: Kermit 3.14 and busy signal
  99377. Message-Id: <heliosD4x5rE.440@netcom.com>
  99378. Organization: Heliotrope Quality Systems
  99379. X-Newsreader: TIN [version 1.2 PL1]
  99380. References: <3j75d8$s2c@lastactionhero.rs.itd.umich.edu>
  99381. Date: Sat, 4 Mar 1995 14:04:25 GMT
  99382. Lines: 13
  99383. Sender: helios@netcom11.netcom.com
  99384. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  99385.  
  99386. Alex Hamlin (hamlin@emuvax.emich.edu) wrote:
  99387. : I just upgraded to ms kermit 3.14 and so far it seems like an large
  99388. : improvement.
  99389. : However I have found that it no longer seems to understand a busy
  99390. : signal.  When calling a busy number it just lets the tone continue
  99391. : without hanging up.
  99392.  
  99393. Your modem is responsible for recognizing the busy signal and sending 
  99394. text to the Kermit script.  Check the new modem initializing strings 
  99395. against the old ones.  You need something like E1X4 to check for busy and 
  99396. echo the result, but it may vary from model to model.
  99397. -- 
  99398. David Nichols  <helios@netcom.com>  Heliotrope Quality Systems
  99399.  
  99400. From news@columbia.edu Sat Mar  4 14:17:27 1995
  99401. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28278
  99402.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 8 Mar 1995 14:01:58 -0500
  99403. Received: by apakabar.cc.columbia.edu id AA27398
  99404.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 8 Mar 1995 14:01:57 -0500
  99405. Newsgroups: comp.protocols.kermit.misc
  99406. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!panix!news.mathworks.com!udel!gatech!howland.reston.ans.net!ix.netcom.com!netcom.com!helios
  99407. From: helios@netcom.com (Thomas David Nichols)
  99408. Subject: Re: Getting Kermit up to zmodem speed
  99409. Message-Id: <heliosD4x6D4.4ns@netcom.com>
  99410. Organization: Heliotrope Quality Systems
  99411. X-Newsreader: TIN [version 1.2 PL1]
  99412. References: <Pine.SUN.3.91.950303220619.26369A-100000@panix3.panix.com> <3j8m2l$kpo@panix.com>
  99413. Date: Sat, 4 Mar 1995 14:17:27 GMT
  99414. Lines: 19
  99415. Sender: helios@netcom11.netcom.com
  99416. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  99417.  
  99418. Marshall G. Flax (mgflax@panix.com) wrote:
  99419. : In article <Pine.SUN.3.91.950303220619.26369A-100000@panix3.panix.com>,
  99420. : >What am I doing wrong and how can I fix it?  Any help would be appreciated.
  99421.  
  99422. : Sounds like an old version of kermit.  In general, it's good to post
  99423. : the version you're using when experiencing problems.
  99424.  
  99425. To save Joe some typing :-)
  99426. Start by getting the latest version of MSKermit and read the 
  99427. documentation.  It tells you more than you need to know about the 
  99428. settings.  It also tells you how to buy the book.
  99429. As a preview, the advantage to long packets is that the overhead of 
  99430. checking for errors is about the same, so the fewer times you need 
  99431. it, the less is slows you down.  Going from 90 to 1000-byte packets 
  99432. eliminates most of the overhead.  Going longer than 1000 can't save more 
  99433. than 100% of the remaining overhead, so it becomes less important than 
  99434. other things you can adjust.
  99435. -- 
  99436. David Nichols  <helios@netcom.com>  Heliotrope Quality Systems
  99437.  
  99438. From news@columbia.edu Sat Mar  4 14:08:39 1995
  99439. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28839
  99440.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 8 Mar 1995 14:09:28 -0500
  99441. Received: by apakabar.cc.columbia.edu id AA28186
  99442.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 8 Mar 1995 14:09:25 -0500
  99443. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!swiss.ans.net!gatech!ncar!newshost.lanl.gov!news.ttu.edu!news
  99444. From: d.coons@ttu.edu (David Coons)
  99445. Newsgroups: comp.protocols.kermit.misc
  99446. Subject: Re: Kermit 3.14 and busy signal
  99447. Date: 4 Mar 1995 14:08:39 GMT
  99448. Organization: Texas Tech University
  99449. Lines: 10
  99450. Message-Id: <3j9s97$pbd@hydra.acs.ttu.edu>
  99451. References: <3j75d8$s2c@lastactionhero.rs.itd.umich.edu>
  99452. Nntp-Posting-Host: accs04-1.ttu.edu
  99453. X-Newsreader: WinVN 0.92.6+
  99454. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  99455.  
  99456. >I just upgraded to ms kermit 3.14 and so far it seems like an large
  99457. >improvement.
  99458. >However I have found that it no longer seems to understand a busy
  99459. >signal.  When calling a busy number it just lets the tone continue
  99460. >without hanging up.
  99461.  
  99462. It's your modem's job to detect a busy, not Kermit's. If your modem type is
  99463. in the \MODEMS subdirectory, add a SET MODEM ________ to MSCUSTOM.INI.
  99464. Otherwise, you'll have to OUTPUT a string to the modem to let it detect a
  99465. busy. The ATXn command controls this on most modems.
  99466.  
  99467. From news@columbia.edu Sat Mar  4 21:55:56 1995
  99468. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14389
  99469.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 8 Mar 1995 17:51:20 -0500
  99470. Received: by apakabar.cc.columbia.edu id AA15776
  99471.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 8 Mar 1995 17:51:14 -0500
  99472. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!panix!news.mathworks.com!udel!gatech!howland.reston.ans.net!nntp.crl.com!crl5.crl.com!dgrisner
  99473. From: "David G. Risner" <dgrisner@crl5.crl.com>
  99474. Newsgroups: comp.protocols.kermit.misc
  99475. Subject: Re: waitfor command ?
  99476. Date: Sat, 4 Mar 1995 13:55:56 -0800
  99477. Organization: CRL Dialup Internet Access
  99478. Lines: 15
  99479. Message-Id: <Pine.SUN.3.91.950304135416.14852A-100000@crl5.crl.com>
  99480. References: <3jakc0$l77@ns2-1.CC.Lehigh.EDU>
  99481. Nntp-Posting-Host: crl5.crl.com
  99482. Mime-Version: 1.0
  99483. Content-Type: TEXT/PLAIN; charset=US-ASCII
  99484. In-Reply-To: <3jakc0$l77@ns2-1.CC.Lehigh.EDU> 
  99485. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  99486.  
  99487. I beleive what you are looking for is the INPUT command.  For MS-Kermit 
  99488. the syntax is:
  99489.  
  99490.   INPUT [timeout] String to wait for
  99491.  
  99492. This waits for the specified anmount of time, or the default time if 
  99493. there is not time specified, for the string to come over the COM port, 
  99494. telnet session, etc.
  99495.  
  99496. -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  99497. David G. Risner                                      dgrisner@crl.com
  99498. Southwestern University School of Law Library
  99499. Los Angeles, CA
  99500. -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  99501.  
  99502.  
  99503. From news@columbia.edu Thu Mar  9 08:03:10 1995
  99504. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10734
  99505.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 9 Mar 1995 03:26:58 -0500
  99506. Received: by apakabar.cc.columbia.edu id AA26232
  99507.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 9 Mar 1995 03:26:56 -0500
  99508. Path: news.columbia.edu!panix!news.mathworks.com!solaris.cc.vt.edu!hookup!swrinde!cs.utexas.edu!news.sprintlink.net!EU.net!news.eunet.fi!KremlSun!kiae!relcom!newsserv
  99509. From: "Andrey V. Glukhov" <andrey@ennet.krasnoyarsk.su>
  99510. Newsgroups: comp.protocols.kermit.misc
  99511. Subject: Can't open the file in kermit script
  99512. Date: Thu, 09 Mar 95 15:03:10 +0700
  99513. Distribution: world
  99514. Organization: Commercial bank "Enisey"
  99515. Message-Id: <AA-OhNlqf3@ennet.krasnoyarsk.su>
  99516. Sender: news-service@kiae.su
  99517. Reply-To: andrey@ennet.krasnoyarsk.su
  99518. X-Return-Path: kiae!ennet.krasnoyarsk.su!andrey
  99519. Lines: 36
  99520. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  99521.  
  99522. Hi, all
  99523.  
  99524. I have some problems with kermit script programming.
  99525. My C-Kermit version is 5A(189).
  99526.  
  99527. set count \ffiles(*.test)
  99528. echo total of files: \v(count)
  99529. :loop
  99530. assign \%m \fnext(*.test)
  99531. echo \%m
  99532. ;open read \%m
  99533. ;close read
  99534. if count goto loop
  99535. quit
  99536.  
  99537. The result of playing the script above is:
  99538.  
  99539. total of files: 5
  99540. 1.test
  99541. 2.test
  99542. 3.test
  99543. 4.test
  99544. 5.test
  99545.  
  99546. The result of playing the same script without semicolons
  99547. is different. Why?
  99548.  
  99549. total of files: 5
  99550. 1.test
  99551. 1.test
  99552. 1.test
  99553. 1.test
  99554. 1.test
  99555.  
  99556. Best regards, Andrey Glukhov
  99557.  
  99558.  
  99559. From news@columbia.edu Wed Mar  8 10:55:34 1995
  99560. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13664
  99561.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 9 Mar 1995 07:47:43 -0500
  99562. Received: by apakabar.cc.columbia.edu id AA18565
  99563.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 9 Mar 1995 07:47:42 -0500
  99564. Newsgroups: comp.protocols.kermit.misc
  99565. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!usenet.eel.ufl.edu!news-feed-1.peachnet.edu!gatech!howland.reston.ans.net!ix.netcom.com!netcom.com!jzero
  99566. From: jzero@netcom.com (Jim Nakamura)
  99567. Subject: Re: How do you exit Server mode?
  99568. Message-Id: <jzeroD54Bon.Hsv@netcom.com>
  99569. Organization: NETCOM On-line Communication Services (408 261-4700 guest)
  99570. References: <D51Ep6.EpH@freenet.buffalo.edu>
  99571. Date: Wed, 8 Mar 1995 10:55:34 GMT
  99572. Lines: 23
  99573. Sender: jzero@netcom11.netcom.com
  99574. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  99575.  
  99576. ba177@freenet.buffalo.edu (Lawrence Puente) writes:
  99577.  
  99578.  
  99579. | Ok, here's what I do and everything works up until the last step:
  99580.  
  99581. | 1) From the Buffalo Freenet menus I choose Send File/Kermit Server
  99582. | 2) The Freenet enters server mode and tells me to escape to my kermit
  99583. |    and issue a GET command.
  99584. | 3) I invoke KERLITE (MS-DOS Kermit 3.14)
  99585. | 4) I SET various options and GET the file (this part works).
  99586. | 5) I type EXIT.  The Freenet is still in server mode!!
  99587. |    I've tried BYE, FINISH, and various other commands but they either
  99588. |    do nothing, or hang up my line.
  99589.  
  99590. | How do I tell the Freenet site to exit the server mode?
  99591. | --Lawrence.
  99592. | -- 
  99593.  
  99594.     After GET(ting) the file, type finish.  Then esc back
  99595.     to Freenet's kermit.  Now type quit.
  99596.  
  99597. -- 
  99598. jzero@netcom.com
  99599.  
  99600. From news@columbia.edu Thu Mar  9 14:14:41 1995
  99601. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25090
  99602.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 9 Mar 1995 09:14:55 -0500
  99603. Received: by apakabar.cc.columbia.edu id AA23945
  99604.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 9 Mar 1995 09:14:52 -0500
  99605. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  99606. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  99607. Newsgroups: comp.protocols.kermit.misc
  99608. Subject: Re: Can't open the file in kermit script
  99609. Date: 9 Mar 1995 14:14:41 GMT
  99610. Organization: Columbia University
  99611. Lines: 42
  99612. Message-Id: <3jn2gh$nbu@apakabar.cc.columbia.edu>
  99613. References: <AA-OhNlqf3@ennet.krasnoyarsk.su>
  99614. Nntp-Posting-Host: watsun.cc.columbia.edu
  99615. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  99616.  
  99617. In article <AA-OhNlqf3@ennet.krasnoyarsk.su>,
  99618. Andrey V. Glukhov <andrey@ennet.krasnoyarsk.su> wrote:
  99619. >Hi, all
  99620. >
  99621. >I have some problems with kermit script programming.
  99622. >My C-Kermit version is 5A(189).
  99623. >
  99624. >set count \ffiles(*.test)
  99625. >echo total of files: \v(count)
  99626. >:loop
  99627. >assign \%m \fnext(*.test)
  99628. >echo \%m
  99629. >;open read \%m
  99630. >;close read
  99631. >if count goto loop
  99632. >quit
  99633. >
  99634. From the ckcker.bwr file:
  99635.  
  99636. The following script program:
  99637.  
  99638.   set count \ffiles(oofa.*)
  99639.   :loop
  99640.   send \fnextfile()
  99641.   if count goto loop
  99642.  
  99643. does not work as expected.  The SEND command (and any other command that
  99644. parses a filename, including TAKE) implicitly calls the same internal function
  99645. that \ffiles() calls, and thus destroys the file list set up in the first
  99646. line.  To accomplish this type of operation: (1) give the wild filespec to
  99647. \ffiles(); (2) loop through the file list and assign each filename to an array
  99648. element; (3) use the array of filenames in subsequent file-related commands.
  99649. Example:
  99650.  
  99651.   asg \%n \ffiles(\%1)
  99652.   declare \&f[\%n]
  99653.   for \%i 1 \%n 1 { asg \&f[\%i] \fnextfile() }
  99654.   for \%i 1 \%n 1 { -
  99655.     send \&f[\%i] -
  99656.   }
  99657.  
  99658. - Frank
  99659.  
  99660. From news@columbia.edu Mon Mar  6 20:15:11 1995
  99661. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28887
  99662.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 10 Mar 1995 04:24:34 -0500
  99663. Received: by apakabar.cc.columbia.edu id AA27385
  99664.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 10 Mar 1995 04:24:33 -0500
  99665. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!swiss.ans.net!gatech!swrinde!cs.utexas.edu!utnut!nott!nrcnet0.nrc.ca!ratilal
  99666. From: Bradley Pick <BPICK@cisti.lan.nrc.ca>
  99667. Newsgroups: comp.protocols.kermit.misc
  99668. Subject: KERMIT-370 version 4.2.5 for IBM
  99669. Date: 6 Mar 1995 20:15:11 GMT
  99670. Organization: National Research Council, Canada
  99671. Lines: 5
  99672. Message-Id: <3jfqgf$s4t@nrcnet0.nrc.ca>
  99673. Nntp-Posting-Host: 132.246.156.55
  99674. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  99675.  
  99676. Can Kermit-370 version 4.2.5 for IBM mainframes receive mail from
  99677. MS-DOS KERMIT?
  99678.  
  99679. Thanks
  99680. Brad
  99681.  
  99682. From news@columbia.edu Mon Mar  6 20:26:13 1995
  99683. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28923
  99684.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 10 Mar 1995 04:25:44 -0500
  99685. Received: by apakabar.cc.columbia.edu id AA27426
  99686.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 10 Mar 1995 04:25:43 -0500
  99687. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!news.intercon.com!panix!news.mathworks.com!udel!gatech!howland.reston.ans.net!math.ohio-state.edu!sdd.hp.com!hplabs!hplextra!hplb!hpwin055.uksr!danielh
  99688. From: danielh@hpber002.swiss.hp.com  (Daniel Huber)
  99689. Newsgroups: comp.protocols.kermit.misc
  99690. Subject: Case construct in Kermit script?
  99691. Date: 6 Mar 1995 20:26:13 GMT
  99692. Organization: Swiss Response Center
  99693. Lines: 62
  99694. Message-Id: <3jfr55$atl@hpwin055.uksr.hp.com>
  99695. Nntp-Posting-Host: hpber199.swiss.hp.com
  99696. X-Newsreader: TIN [version 1.2 021193BETA PL3]
  99697. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  99698.  
  99699. Kermit script programming:
  99700.  
  99701. Beside case - like branches in Kermit scripts I'd like to use 
  99702. other stuff.
  99703.  
  99704. Has anybody written a Kermit (5A 188) script containing command line
  99705. processing (with error handling), case contructs like the one outlined below,
  99706. or any other, more sophisticated Kermit script programming examples?
  99707.  
  99708. At the end, I'd like to write a pager kermit script which handles errors
  99709. from the paging service correctly..
  99710.  
  99711. Here is an example of such a case construct:
  99712.  
  99713. ;
  99714. ; some initial stuff comes first...
  99715. ;
  99716. ;
  99717. :once_again
  99718. dial \m(telepage)
  99719. output ::\m(pagernumber)::\m(message)::
  99720. ;
  99721. ; now how do I do this?
  99722. ;
  99723. case input
  99724.         00~OK)              goto OK         ; call accepted
  99725.         10~sNOT~sOK)            goto 10_NOK     ; protocoll error
  99726.         11~sNOT~sOK)            goto 11_NOK     ; message too long
  99727.         ...
  99728.                         ; other error codes come here
  99729.         ...
  99730.         ...
  99731.         55~sNOT~sOK              sleep 30 -
  99732.                 hangup -
  99733.                 goto once_again       ; network overload
  99734. done
  99735.  
  99736. :11_NOK
  99737. echo protocol error
  99738. hangup
  99739. goto end
  99740. :11_NOK
  99741. echo protocol error
  99742. hangup
  99743. goto end
  99744. ...
  99745. ...
  99746. :end
  99747. exit
  99748.  
  99749. (I'm not that good in programming.....)
  99750.  
  99751. Any pointers and other help is greatly appreciated...
  99752.  
  99753. Daniel
  99754.  
  99755. -- 
  99756. Daniel Huber, RCO, HP Niederwangen (8700), Switzerland
  99757. SMTP: danielh@hpber199.swiss.hp.com (or Daniel_Huber@hp8700.desk.hp.com)
  99758. X.400: /G=Daniel/S=Huber/OU=HP8700/O=HP/P=HP/A=ArCom/C=CH/
  99759. If a train station is where a train stops, then what's a workstation?
  99760. --- Opinions Expressed Above Are My Owns ---
  99761.  
  99762. From news@columbia.edu Tue Feb 28 10:09:52 1995
  99763. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29422
  99764.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 10 Mar 1995 04:38:44 -0500
  99765. Received: by apakabar.cc.columbia.edu id AA27911
  99766.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 10 Mar 1995 04:38:43 -0500
  99767. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!swrinde!cs.utexas.edu!math.ohio-state.edu!jussieu.fr!univ-lyon1.fr!swidir.switch.ch!scsing.switch.ch!news.dfn.de!Radio-MSU.net!news.uni-stuttgart.de!uni-regensburg.de!fauern!news.unibw-muenchen.de!p41bsmk
  99768. From: p41bsmk@kommsrv.rz.unibw-muenchen.de (Peter Schmolck)
  99769. Newsgroups: comp.protocols.kermit.misc
  99770. Subject: MS-K and ndis3pkt.386 - broadcast problem
  99771. Date: 28 Feb 1995 10:09:52 GMT
  99772. Organization: University of the Federal Armed Forces Munich
  99773. Lines: 29
  99774. Message-Id: <3iuspg$jr9@infosrv.rz.unibw-muenchen.de>
  99775. Nntp-Posting-Host: kommsrv.rz.unibw-muenchen.de
  99776. X-Newsreader: NN version 6.5.0 #5 (NOV)
  99777. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  99778.  
  99779. I have tested Dan Lancini's ndis3 virtual packet driver (available from:
  99780. ftp://newdev.harvard.edu/pub/ndis3pkt) under WfW 3.11. It is easily
  99781. configurable and seems to work smoothly, allowing multiple packet driver
  99782. clients, even together with TCPIP32 winsocket clients at the same time (if
  99783. one assigns two different IP addresses for winsocket and packet clients). 
  99784. One of its advantages over my current solution with Odi stack and
  99785. Packet-Mux is that it preserves conventional memory. 
  99786.  
  99787. However there exists a problem due to the fact, as Dan Lancini explained
  99788. to me, that under NDIS3, clients always see their own broadcasts. Under
  99789. packet drivers, they usually do not. They send a broadcast looking for
  99790. others with their own address, and under NDIS3, see their own broadcast
  99791. and complain. NCSA telnet issues an error message but it works
  99792. nevertheless, MS-Kermit 3.13 doesn't seem to send broadcasts, and works
  99793. fine. MS-Kermit 3.14, however, stops to go ahead in this situation. 
  99794.  
  99795. Is there a possibility to turn off broadcast messages in 3.14?
  99796.  
  99797. Thanking you in advance 
  99798.  
  99799. Peter
  99800.  
  99801. P.S. If you respond to my question, could you please CC to my email 
  99802. address, because our news stuff here lags several days.
  99803. --
  99804. Peter Schmolck                                p41bsmk@rz.unibw-muenchen.de
  99805. Department of Education                       Phone :     +49-89-6004-2056
  99806. Univ. of the Federal Armed Forces Munich      Fax   :     +49-89-6004-3968
  99807. 85577 NEUBIBERG, GERMANY    
  99808.  
  99809. From news@columbia.edu Tue Mar  7 03:28:59 1995
  99810. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01472
  99811.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 10 Mar 1995 07:10:12 -0500
  99812. Received: by apakabar.cc.columbia.edu id AA15915
  99813.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 10 Mar 1995 07:10:10 -0500
  99814. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!news.intercon.com!panix!news.mathworks.com!udel!gatech!howland.reston.ans.net!news.sprintlink.net!pulsar.sky.net!solar.sky.net!racerx
  99815. From: racerx@solar.sky.net (Ken Pearce)
  99816. Newsgroups: comp.protocols.kermit.misc
  99817. Subject: Script guru help needed...
  99818. Date: 7 Mar 1995 03:28:59 GMT
  99819. Organization: SkyNET Corporation
  99820. Lines: 1
  99821. Message-Id: <3jgjts$i4s@pulsar.sky.net>
  99822. Nntp-Posting-Host: solar.sky.net
  99823. X-Newsreader: TIN [version 1.2 PL2]
  99824. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  99825.  
  99826.  
  99827.  
  99828. From news@columbia.edu Fri Mar 10 15:57:37 1995
  99829. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18091
  99830.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 10 Mar 1995 10:57:54 -0500
  99831. Received: by apakabar.cc.columbia.edu id AA02147
  99832.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 10 Mar 1995 10:57:47 -0500
  99833. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  99834. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  99835. Newsgroups: comp.protocols.kermit.misc
  99836. Subject: Re: Case construct in Kermit script?
  99837. Date: 10 Mar 1995 15:57:37 GMT
  99838. Organization: Columbia University
  99839. Lines: 53
  99840. Message-Id: <3jpsth$22k@apakabar.cc.columbia.edu>
  99841. References: <3jfr55$atl@hpwin055.uksr.hp.com>
  99842. Nntp-Posting-Host: watsun.cc.columbia.edu
  99843. Cc: 
  99844.  
  99845. In article <3jfr55$atl@hpwin055.uksr.hp.com>,
  99846. Daniel Huber <danielh@hpber002.swiss.hp.com> wrote:
  99847. >Has anybody written a Kermit (5A 188) script containing command line
  99848. >processing (with error handling), case contructs like the one outlined below,
  99849. >or any other, more sophisticated Kermit script programming examples?
  99850. >
  99851. You can accomplish a case-like statement very easily in Kermit's
  99852. script programming language using GOTO (or, more efficiently in version
  99853. 190), FORWARD, because the GOTO (or FORWARD) target can be a variable.
  99854. First, look at the simple example in ckermod.ini (.mykermrc):
  99855.  
  99856. forward \v(system)
  99857.  
  99858. :UNIX                           ; UNIX, all versions...
  99859. ...
  99860. end ; or FORWARD someplace below...
  99861.  
  99862. :VMS
  99863. ...
  99864. end ; or FORWARD someplace below...
  99865.  
  99866. etc.  In this case, we know all the values of \v(system), so we can make
  99867. a "case label" for each one.
  99868.  
  99869. To apply this technique to script programming, use the MINPUT command,
  99870. which was added in edit 190, and which takes a list of items to look for,
  99871. rather than just one item (read about it in the ckcker.upd file):
  99872.  
  99873.   MINPUT 30 {00 OK} {10 NOT OK} {11 NOT OK} ... {55 NOT OK}
  99874.   IF FAILURE END 1 No valid response from pager in 30 seconds.
  99875.   FORWARD PAGER_\v(minput) ; concatenate MINPUT response number with PAGER_
  99876.   :PAGER_1                 ; here is the first CASE label
  99877.      ; commands for this response
  99878.      FORWARD DONE          ; this is like BREAK in C
  99879.   :PAGER_2                 ; second CASE label
  99880.      ; commands for this response
  99881.      FORWARD DONE
  99882.   ...
  99883.   :PAGER_55
  99884.      ; commands for this response
  99885.  
  99886.   :DONE
  99887.  
  99888. Note that there is no DEFAULT clause, as in C.  You have to make sure that
  99889. you never GOTO (FORWARD) a nonexistent label.  Not a big deal in this 
  99890. example, because you already know what all the valid responses from MINPUT
  99891. will be.  In other applications, you might have to do some prechecking,
  99892. as in this example from ckermit.ini:
  99893.  
  99894.   IF NOT = 0 \findex(\v(system),OS/2:Macintosh:Amiga:Atari_ST) -
  99895.     FORWARD files
  99896.  
  99897. - Frank
  99898.  
  99899. From news@columbia.edu Fri Mar 10 12:15:48 1995
  99900. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19616
  99901.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 10 Mar 1995 11:20:03 -0500
  99902. Received: by apakabar.cc.columbia.edu id AA04376
  99903.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 10 Mar 1995 11:20:00 -0500
  99904. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!udel!gatech!concert!hearst.acc.Virginia.EDU!gems.vcu.edu!agnew
  99905. From: agnew@gems.vcu.edu (Brainwave Surfer)
  99906. Newsgroups: comp.protocols.kermit.misc
  99907. Subject: Re: Remap Scroll Lock key?
  99908. Message-Id: <1995Mar10.081548.528@gems.vcu.edu>
  99909. Date: 10 Mar 95 08:15:48 -0400
  99910. References: <3jls9l$1sr@boris.eden.com> <1995Mar9.133443.44166@cc.usu.edu>
  99911. Organization: Medical College of Virginia
  99912. Lines: 17
  99913. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  99914.  
  99915. In article <1995Mar9.133443.44166@cc.usu.edu>, jrd@cc.usu.edu (Joe Doupnik) writes:
  99916. > In article <3jls9l$1sr@boris.eden.com>, glharlan@eden.com (gordon harlan) writes:
  99917. >> how can i remap the scroll lock key, i get no scan code from it, but i 
  99918. >> know old PCLink could do it.
  99919. > -------------
  99920. >     You can't. Scroll Lock is hidden deep within the system Bios and
  99921.  
  99922. What you may be looking for is control-s for stop scrolling,
  99923. control-q for start scrolling.  That it?
  99924.  
  99925. JIm
  99926.  
  99927.          /^^^\   \ /   Jim Agnew         | AGNEW@RUBY.VCU.EDU  (Internet)
  99928.         /      >  ||   Neurosurgery,     | AGNEW@VCUVAX        (Bitnet)
  99929.    /\_/     '   \  /   MCV-VCU           | This disc will self destruct in
  99930.  /________________>    Richmond, VA, USA | five seconds.  Good luck, Jim..."
  99931.  
  99932.  
  99933. From news@columbia.edu Mon Mar  6 23:56:39 1995
  99934. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20358
  99935.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 10 Mar 1995 19:30:17 -0500
  99936. Received: by apakabar.cc.columbia.edu id AA15447
  99937.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 10 Mar 1995 19:30:15 -0500
  99938. Newsgroups: comp.protocols.kermit.misc
  99939. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!swiss.ans.net!gatech!psuvax1!uwm.edu!lll-winken.llnl.gov!ames!news.hawaii.edu!mpg.phys.hawaii.edu!tony
  99940. From: tony@mpg.phys.hawaii.edu (Antonio Querubin)
  99941. Subject: Re: Why can't I use 14.4K
  99942. X-Nntp-Posting-Host: mpg.phys.hawaii.edu
  99943. Message-Id: <D51MIF.BIv@news.hawaii.edu>
  99944. Sender: news@news.hawaii.edu
  99945. Organization: University of Hawaii
  99946. X-Newsreader: TIN [version 1.2 PL2]
  99947. References: <3j4p34$foj@israel-info.datasrv.co.il> <3jfcsc$rht@apakabar.cc.columbia.edu>
  99948. Date: Mon, 6 Mar 1995 23:56:39 GMT
  99949. Lines: 14
  99950. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  99951.  
  99952. Frank da Cruz (fdc@watsun.cc.columbia.edu) wrote:
  99953.  
  99954. : You don't need 14400 and 28800 if your modem supports speed buffering
  99955. : (most modern modems do).  Just set the modem's interface speed to
  99956. : 38400 (the highest speed supported by SunOS 4.1.x) and lock it there,
  99957.  
  99958. I've found on our Sun 4/330 that SunOS 4.1.3 can't keep up with a modem at 
  99959. 38400.  Too many lost characters between the modem to the serial port.  
  99960. I have to throttle the modem (a V.34) back to 19200.  The original poster 
  99961. might have to do the same.
  99962.  
  99963. --
  99964. Antonio Querubin  
  99965. tony@mpg.phys.hawaii.edu / ah6bw@uhm.ampr.org
  99966.  
  99967. From news@columbia.edu Tue Mar  7 09:44:28 1995
  99968. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21031
  99969.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 10 Mar 1995 19:47:19 -0500
  99970. Received: by apakabar.cc.columbia.edu id AA16416
  99971.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 10 Mar 1995 19:47:18 -0500
  99972. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!news.intercon.com!panix!news.mathworks.com!udel!gatech!howland.reston.ans.net!math.ohio-state.edu!jussieu.fr!univ-lyon1.fr!swidir.switch.ch!scsing.switch.ch!news.belwue.de!news.uni-freiburg.de!MPI1.IMMUNBIO.MPG.DE!GARTMANN
  99973. From: gartmann@immunbio.mpg.de (Christoph Gartmann)
  99974. Newsgroups: comp.protocols.kermit.misc
  99975. Subject: Re: C-Kermit 5A(190) ACCVIO.
  99976. Date: 7 Mar 1995 09:44:28 GMT
  99977. Organization: Max-Planck-Institut fuer Immunbiologie
  99978. Lines: 22
  99979. Message-Id: <3jh9ts$h0i@n.ruf.uni-freiburg.de>
  99980. References: <1995Mar3.160140.7722@ucsvc.ucs.unimelb.edu.au>
  99981. Reply-To: gartmann@immunbio.mpg.de
  99982. Nntp-Posting-Host: mpi1.immunbio.mpg.de
  99983. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  99984.  
  99985. In article <1995Mar3.160140.7722@ucsvc.ucs.unimelb.edu.au>, jonathan@ucsvc.ucs.unimelb.edu.au writes:
  99986.  
  99987. >I am running C-Kermit 5A(190) on OpenVMS VAX v5.5-2.  With a relatively
  99988. >trivial script, C-Kermit gets an ACCVIO.  This only occurs if the SMTP
  99989. >test being performed is unsuccessful - a successful test causes no
  99990. >problem.  Is this a known bug (with bugfix?)?  ... or am I missing
  99991. >something here?
  99992.  
  99993. I had a similar problem. After all I found that C-Kermit will crash when it
  99994. tries to send characters while it already receives data in a script. Thus,
  99995. you'll have to ensure that your script doesn't send any commands while there
  99996. are still characters arriving.
  99997.  
  99998. Regards,
  99999.    Christoph Gartmann
  100000.  
  100001. +----------------------------------------------------------------------------+
  100002. | Max-Planck-Institut fuer      Phone   : +49-761-5108-465   Fax: -221       |
  100003. | Immunbiologie                 PSI     : PSI%(0262)45050160374::GARTMANN    |
  100004. | Postfach 1169                 Internet: gartmann@immunbio.mpg.de           |
  100005. | D-79011  Freiburg, FRG                                                     |
  100006. +----------- Do you know MENUE, the user environment for OpenVMS? -----------+
  100007.  
  100008. From news@columbia.edu Tue Mar  7 07:59:36 1995
  100009. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21624
  100010.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 10 Mar 1995 20:03:56 -0500
  100011. Received: by apakabar.cc.columbia.edu id AA17300
  100012.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 10 Mar 1995 20:03:54 -0500
  100013. Newsgroups: comp.protocols.kermit.misc
  100014. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!tadpole.com!news.dell.com!swrinde!howland.reston.ans.net!ix.netcom.com!netcom.com!jzero
  100015. From: jzero@netcom.com (Jim Nakamura)
  100016. Subject: Re: It's been asked a million times before...
  100017. Message-Id: <jzeroD528vD.CFI@netcom.com>
  100018. Organization: NETCOM On-line Communication Services (408 261-4700 guest)
  100019. References: <D4tqAJ.I0p@utnetw.utoledo.edu>
  100020. Date: Tue, 7 Mar 1995 07:59:36 GMT
  100021. Lines: 25
  100022. Sender: jzero@netcom8.netcom.com
  100023. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  100024.  
  100025. crszczub@cse.utoledo.edu (craig szczublewski) writes:
  100026.  
  100027. | But I'll ask it again (since I lost the thread from so long ago)
  100028.  
  100029. | how do I send/receive a file zmodem/xmodem/ymodem/etc through kermit
  100030. | on a unix based system.  I have a site I need to upload files to, but It
  100031. | only has zmodem (no kermit) and I want to use kermit to connect to it from
  100032. | an AIX box.  Posted a while back was a solution that was in the form of a
  100033. | macro that called sz from a shell command.  Does anyone know how to do
  100034. | this?  
  100035.  
  100036. | thank you in advance
  100037.  
  100038. I got this from someone else on this newsgroup (don't remember who) to
  100039. be added to .kermrc :
  100040.  
  100041.  
  100042. define rz !rz -e \%1 \%2 \%3 <&\v(ttyfd) >&\v(ttyfd)
  100043. define sz !sz -e \%1 \%2 \%3 <&\v(ttyfd) >&\v(ttyfd)
  100044. define sb !sb -e \%1 \%2 \%3 <&\v(ttyfd) >&\v(ttyfd)
  100045. define rb !rb -e \%1 \%2 \%3 <&\v(ttyfd) >&\v(ttyfd)
  100046. define sx !sx -e \%1 \%2 \%3 <&\v(ttyfd) >&\v(ttyfd)
  100047. define rx !rx -e \%1 \%2 \%3 <&\v(ttyfd) >&\v(ttyfd)
  100048. -- 
  100049. jzero@netcom.com
  100050.  
  100051. From news@columbia.edu Sat Mar  4 17:40:43 1995
  100052. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24868
  100053.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 10 Mar 1995 21:38:13 -0500
  100054. Received: by apakabar.cc.columbia.edu id AA23403
  100055.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 10 Mar 1995 21:38:11 -0500
  100056. Control: cancel <1995Feb26.184656.24442@lafn.org>
  100057. Newsgroups: comp.protocols.kermit.misc
  100058. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!howland.reston.ans.net!ix.netcom.com!netcomsv!netcomsv!lafn.org!lafn.org!ac388
  100059. From: ac388@lafn.org
  100060. Subject: cancel
  100061. Message-Id: <1995Mar4.174043.23707@lafn.org>
  100062. Sender: news@lafn.org
  100063. Nntp-Posting-Host: lafn.org
  100064. Organization: Los Angeles Free-Net
  100065. Date: Sat, 4 Mar 1995 17:40:43 GMT
  100066. Approved: news@lafn.org
  100067. Lines: 3
  100068. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  100069.  
  100070. Article cancelled from nr
  100071. -- 
  100072. cdl [ac388@lafn.org] ...
  100073.  
  100074. From news@columbia.edu Mon Mar  6 21:07:52 1995
  100075. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03423
  100076.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 11 Mar 1995 00:34:21 -0500
  100077. Received: by apakabar.cc.columbia.edu id AA04256
  100078.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 11 Mar 1995 00:34:17 -0500
  100079. Newsgroups: comp.protocols.kermit.misc
  100080. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!swiss.ans.net!gatech!newsfeed.pitt.edu!dsinc!ub!freenet.buffalo.edu!ba177
  100081. From: ba177@freenet.buffalo.edu (Lawrence Puente)
  100082. Subject: How do you exit Server mode?
  100083. Message-Id: <D51Ep6.EpH@freenet.buffalo.edu>
  100084. Sender: nntp@acsu.buffalo.edu
  100085. Nntp-Posting-Host: freenet.buffalo.edu
  100086. Reply-To: ba177@freenet.buffalo.edu (Lawrence Puente)
  100087. Organization: State University of New York At Buffalo, NY (USA)
  100088. Date: Mon, 6 Mar 1995 21:07:52 GMT
  100089. Lines: 15
  100090. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  100091.  
  100092.  
  100093. Ok, here's what I do and everything works up until the last step:
  100094.  
  100095. 1) From the Buffalo Freenet menus I choose Send File/Kermit Server
  100096. 2) The Freenet enters server mode and tells me to escape to my kermit
  100097.    and issue a GET command.
  100098. 3) I invoke KERLITE (MS-DOS Kermit 3.14)
  100099. 4) I SET various options and GET the file (this part works).
  100100. 5) I type EXIT.  The Freenet is still in server mode!!
  100101.    I've tried BYE, FINISH, and various other commands but they either
  100102.    do nothing, or hang up my line.
  100103.  
  100104. How do I tell the Freenet site to exit the server mode?
  100105. --Lawrence.
  100106. -- 
  100107.  
  100108. From news@columbia.edu Tue Mar  7 21:06:05 1995
  100109. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08149
  100110.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 11 Mar 1995 01:56:05 -0500
  100111. Received: by apakabar.cc.columbia.edu id AA07740
  100112.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 11 Mar 1995 01:56:04 -0500
  100113. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!EU.net!news.sprintlink.net!pulsar.sky.net!solar.sky.net!racerx
  100114. From: racerx@solar.sky.net (Ken Pearce)
  100115. Newsgroups: comp.protocols.kermit.misc
  100116. Subject: Script guru help needed...
  100117. Date: 7 Mar 1995 21:06:05 GMT
  100118. Organization: SkyNET Corporation
  100119. Lines: 14
  100120. Message-Id: <3jihrt$mt7@pulsar.sky.net>
  100121. Nntp-Posting-Host: solar.sky.net
  100122. X-Newsreader: TIN [version 1.2 PL2]
  100123. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  100124.  
  100125. How come my script commands work fine when I enter them by hand but won't
  100126. when the script executes them?  Is there a timing issue?  Do I need to
  100127. use "expect-send" sequences so that the script knows when to send the
  100128. next command?
  100129.  
  100130. My script (or the significant lines) look like:
  100131.  
  100132.     script -- kermit~s~055i~s~055x~s~055e~s1000
  100133.         get filename.ext
  100134.  
  100135. This works if I type the command, it doesn't when the script executes.
  100136.  
  100137. Thanks in advance...
  100138. racerx
  100139.  
  100140. From news@columbia.edu Tue Mar  7 22:02:59 1995
  100141. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09225
  100142.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 11 Mar 1995 02:35:58 -0500
  100143. Received: by apakabar.cc.columbia.edu id AA09066
  100144.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 11 Mar 1995 02:35:57 -0500
  100145. Newsgroups: comp.protocols.kermit.misc
  100146. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!swiss.ans.net!gatech!swrinde!elroy.jpl.nasa.gov!lll-winken.llnl.gov!ames!news.hawaii.edu!news
  100147. From: Antonio Querubin <tony@mpg.phys.hawaii.edu>
  100148. Subject: Re: compatibility with OS/2 COMTCP?
  100149. In-Reply-To: <199503071546.AA24988@watsun.cc.columbia.edu>
  100150. X-Nntp-Posting-Host: mpg.phys.hawaii.edu
  100151. Content-Type: TEXT/PLAIN; charset=US-ASCII
  100152. Message-Id: <Pine.SUN.3.90.950307114107.2035B-100000@mpg.phys.hawaii.edu>
  100153. Sender: news@news.hawaii.edu
  100154. Organization: University of Hawaii
  100155. References: <D4r4H1.5A4@news.hawaii.edu> <199503071546.AA24988@watsun.cc.columbia.edu>
  100156. Mime-Version: 1.0
  100157. Date: Tue, 7 Mar 1995 22:02:59 GMT
  100158. Lines: 27
  100159. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  100160.  
  100161. On Tue, 7 Mar 1995, Jeffrey Altman wrote:
  100162.  
  100163. > I just tried it and wasn't able to get it to work either.
  100164. > However, if you are willing to spend some money for Ray Gwinn's SIO drivers
  100165. > then you could use Ray Gwinn's SIO package to provide lightning fast Fossil
  100166. > support for MS-DOS Kermit and then map a Telnet session to a DOS Com port 
  100167. > using OS/2 services.
  100168.  
  100169. But the point here is that MS-Kermit should be able to work with COMTCP 
  100170. as long as it does the I/O through the BIOS so that COMTCP can intercept 
  100171. it.  Other terminal emulators work with COMTCP.  If they can why can't 
  100172. MS-Kermit?  
  100173.  
  100174. I have existing DOS applications that depend on MS-Kermit scripts to 
  100175. perform downloads.  It would be nice to keep everything all running in 
  100176. the same DOS session and not have to generate a different CMD file and 
  100177. C-Kermit script just because I'm running under OS/2.
  100178.  
  100179. And as for MS-Kermit and SIO, why even deal with the FOSSIL interface when
  100180. I could probably use VMODEM (never tried VMODEM with MS-Kermit though)? 
  100181. Either way though SIO costs money.  COMTCP is free with the OS/2 IAK.  I
  100182. just want it to work with MS-Kermit.  So...  is the problem with COMTCP or
  100183. with MS-Kermit?  Documentation for COMTCP is virtually non-existent yet it
  100184. works as one would expect a Comm port - Telnet redirector should. 
  100185. Ms-Kermit appears to be one of the exceptions. 
  100186.  
  100187.  
  100188. From news@columbia.edu Sat Mar 11 17:56:54 1995
  100189. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01080
  100190.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 11 Mar 1995 12:56:58 -0500
  100191. Received: by apakabar.cc.columbia.edu id AA05237
  100192.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 11 Mar 1995 12:56:57 -0500
  100193. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  100194. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  100195. Newsgroups: comp.protocols.kermit.misc
  100196. Subject: Re: compatibility with OS/2 COMTCP?
  100197. Date: 11 Mar 1995 17:56:54 GMT
  100198. Organization: Columbia University
  100199. Lines: 72
  100200. Message-Id: <3jso96$53j@apakabar.cc.columbia.edu>
  100201. References: <D4r4H1.5A4@news.hawaii.edu> <199503071546.AA24988@watsun.cc.columbia.edu> <Pine.SUN.3.90.950307114107.2035B-100000@mpg.phys.hawaii.edu>
  100202. Nntp-Posting-Host: watsun.cc.columbia.edu
  100203. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  100204.  
  100205. In article <Pine.SUN.3.90.950307114107.2035B-100000@mpg.phys.hawaii.edu>,
  100206. Antonio Querubin  <tony@mpg.phys.hawaii.edu> wrote:
  100207. >On Tue, 7 Mar 1995, Jeffrey Altman wrote:
  100208. >> However, if you are willing to spend some money for Ray Gwinn's SIO drivers
  100209. >> then you could use Ray Gwinn's SIO package to provide lightning fast Fossil
  100210. >> support for MS-DOS Kermit and then map a Telnet session to a DOS Com port 
  100211. >> using OS/2 services.
  100212. >
  100213. >But the point here is that MS-Kermit should be able to work with COMTCP 
  100214. >as long as it does the I/O through the BIOS so that COMTCP can intercept 
  100215. >it.  Other terminal emulators work with COMTCP.  If they can why can't 
  100216. >MS-Kermit?  
  100217.  
  100218. I can't help you here.
  100219.  
  100220. >I have existing DOS applications that depend on MS-Kermit scripts to 
  100221. >perform downloads.  It would be nice to keep everything all running in 
  100222. >the same DOS session and not have to generate a different CMD file and 
  100223. >C-Kermit script just because I'm running under OS/2.
  100224.  
  100225. The script languages for MS-DOS Kermit and C-Kermit (in the latest versions)
  100226. are nearly identical.  That should not be breaking issue.  And where you
  100227. do have differences they can easily be handled by checking the \v(program)
  100228. variable.
  100229.  
  100230. >And as for MS-Kermit and SIO, why even deal with the FOSSIL interface when
  100231. >I could probably use VMODEM (never tried VMODEM with MS-Kermit though)? 
  100232. >Either way though SIO costs money.  COMTCP is free with the OS/2 IAK.  I
  100233. >just want it to work with MS-Kermit.  So...  is the problem with COMTCP or
  100234. >with MS-Kermit?  Documentation for COMTCP is virtually non-existent yet it
  100235. >works as one would expect a Comm port - Telnet redirector should. 
  100236. >Ms-Kermit appears to be one of the exceptions. 
  100237.  
  100238. You don't understand the interactions of the various components.
  100239.  
  100240. COMTCP works by intercepting the BIOS software interrupts for the COM port.
  100241. It then calls a DOS Device driver (VDOSTCP.SYS) which in turn is just an 
  100242. interface to a Virtual Device (VDOSTCP.VDD) which then calls a monitor
  100243. (VDOSCTL.EXE) which eventually speaks to the real IP protocol stack.
  100244. Great if it works.  Obviously it doesn't with MS-DOS Kermit.
  100245.  
  100246. So if you want to use MS-DOS Kermit what else can you do?
  100247.  
  100248. Well, Ray Gwinn's SIO package provides several tools.
  100249.  
  100250. Lets's start with the serial ports.
  100251.  
  100252. SIO.SYS is an OS/2 serial port driver which can create a virtual COM port
  100253. which can be monitored by VMODEM.EXE.  Anything sent to this virtual COM
  100254. port will insteadbe redirected to the IP protocol stack via a Telnet 
  100255. session.
  100256.  
  100257. Now the question is how do you communicate between MS-DOS Kermit and SIO.SYS.
  100258. Well, there are two interfaces that Ray provides.  First is VSIO.SYS which
  100259. provides a virtualized 16550 UART for the virtual COM port.  The second is
  100260. VX00.SYS, a fossil interface which has zero overhead in communicating with
  100261. the SIO.SYS driver since it doesn't have to worry about simulating hardware.
  100262.  
  100263. Now you tell me, which one do you want to use given that MS-DOS Kermit
  100264. supports both a 16550 and Fossil?  
  100265.  
  100266. I choose the Fossil interface.  No overhead, and MS-DOS Kermit will have
  100267. serial performance equal to OS/2 applications when handling serial devices.
  100268.  
  100269.  
  100270.  
  100271.  
  100272.  
  100273. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  100274. "C-Kermit: available on more platforms than any other communications software."
  100275. "Kermit FTP: sending files whenever and wherever they are needed."
  100276.   OS/2 version 5A(190): ftp://kermit.columbia.edu/kermit/archives/cko190.zip 
  100277.  
  100278. From news@columbia.edu Wed Mar  8 03:15:10 1995
  100279. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01455
  100280.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 11 Mar 1995 13:00:30 -0500
  100281. Received: by apakabar.cc.columbia.edu id AA05446
  100282.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 11 Mar 1995 13:00:28 -0500
  100283. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!swiss.ans.net!gatech!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  100284. From: jrd@cc.usu.edu (Joe Doupnik)
  100285. Newsgroups: comp.protocols.kermit.misc
  100286. Subject: Re: compatibility with OS/2 COMTCP?
  100287. Message-Id: <1995Mar8.091510.43993@cc.usu.edu>
  100288. Date: 8 Mar 95 09:15:10 MDT
  100289. References: <D4r4H1.5A4@news.hawaii.edu> <199503071546.AA24988@watsun.cc.columbia.edu> <Pine.SUN.3.90.950307114107.2035B-100000@mpg.phys.hawaii.edu>
  100290. Organization: Utah State University
  100291. Lines: 26
  100292. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  100293.  
  100294. In article <Pine.SUN.3.90.950307114107.2035B-100000@mpg.phys.hawaii.edu>, Antonio Querubin <tony@mpg.phys.hawaii.edu> writes:
  100295. > On Tue, 7 Mar 1995, Jeffrey Altman wrote:
  100296. >> I just tried it and wasn't able to get it to work either.
  100297. >> 
  100298. >> However, if you are willing to spend some money for Ray Gwinn's SIO drivers
  100299. >> then you could use Ray Gwinn's SIO package to provide lightning fast Fossil
  100300. >> support for MS-DOS Kermit and then map a Telnet session to a DOS Com port 
  100301. >> using OS/2 services.
  100302. > But the point here is that MS-Kermit should be able to work with COMTCP 
  100303. > as long as it does the I/O through the BIOS so that COMTCP can intercept 
  100304. > it.  Other terminal emulators work with COMTCP.  If they can why can't 
  100305. > MS-Kermit?
  100306.     <part omitted>  
  100307.     This discussion is rather short on informational material and
  100308. long on complaints. I have not seen COMTCP so I have on idea of what
  100309. things it does or wants. Suffice it to say MSK does work fine with BIOS
  100310. ports, and with Int 14h shims of various kinds for various networks.
  100311. My only guess is COMTCP expects a certain, unstated, sequence of events
  100312. from the application program before it will work "properly" (whatever
  100313. that might mean in your situation).
  100314.     Without COMTCP at hand (I have OS/2 2.10 and its TCP/IP stack)
  100315. there is nothing more I can say on the matter. Further hints would be
  100316. welcomed.
  100317.     Joe D.
  100318.  
  100319. From news@columbia.edu Sat Mar 11 05:07:05 1995
  100320. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03749
  100321.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 11 Mar 1995 14:03:39 -0500
  100322. Received: by apakabar.cc.columbia.edu id AA09009
  100323.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 11 Mar 1995 14:03:37 -0500
  100324. Path: news.columbia.edu!panix!news.mathworks.com!usenet.eel.ufl.edu!news-feed-1.peachnet.edu!gatech!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  100325. From: jrd@cc.usu.edu (Joe Doupnik)
  100326. Newsgroups: comp.protocols.kermit.misc
  100327. Subject: Re: MS-Kermit v3.14 missing duplicating characters
  100328. Message-Id: <1995Mar11.110705.44383@cc.usu.edu>
  100329. Date: 11 Mar 95 11:07:05 MDT
  100330. References: <3jqf6p$j2g@xmission.xmission.com>
  100331. Organization: Utah State University
  100332. Lines: 35
  100333. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  100334.  
  100335. In article <3jqf6p$j2g@xmission.xmission.com>, fozz@xmission.xmission.com (Fozziliny Moo) writes:
  100336. > I'm running MS-Kermit v3.14 on a new PC that I just bought. It is a 
  100337. > 486DX2-80. The serial UART is a 16550. I have a 28.8 (v.fc) modem 
  100338. > connected to COM2 via DB25 connector. 
  100339. > Initially I ran Kermit "straight out of the box" and said SET PORT COM2
  100340. > and SET SPEED 115200. When I do a connect and try to key in AT commands,
  100341. > this happens:
  100342. > I type AT
  100343. > I get ATT or just A
  100344. > Typing in ATDT5551234 comes out like
  100345. > ATDDT5551134
  100346. > Here are the strategies I've tried to resolve this problem:
  100347. > Bumped the baud rate of the serial port to 57600, 28800, 14400, 9600, and 
  100348. > 2400. No effect. Made use I was using hardware handshaking with the modem.
  100349. > No effect.
  100350. > Now- I use Trumpet Winsock in Windows and I don't seem to have any problems
  100351. > communicating with the modem at 115200 with Trumpets internal serial driver.
  100352. > I can also use the Windows Terminal program (ugh) and communicate flawlessly.
  100353. > But as a loyal user of MS-Kermit, I'd rather not be tied to these 
  100354. > apps. 
  100355. ------------
  100356.     Gee, I dunno. It it the sending or receiving end, I wonder. If you
  100357. ATDTnumber and it dials ok yet the screen shows dups then it's the receiving
  100358. end. In such a case I'd say replace the serial cable with a better and shorter
  100359. one. I'd also be suspicious of 16550A class UARTs implemented on big square
  100360. chips because some have noted snafus. Insert here the ususal comments about
  100361. avoiding hardware conflicts and helpful TSRs, and not configuring the machine
  100362. for too much speed (wait states, similar), etc.
  100363.     Joe D.
  100364.  
  100365. From news@columbia.edu Wed Mar  8 05:02:58 1995
  100366. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05182
  100367.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 11 Mar 1995 14:47:52 -0500
  100368. Received: by apakabar.cc.columbia.edu id AA11526
  100369.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 11 Mar 1995 14:47:51 -0500
  100370. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!swiss.ans.net!gatech!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  100371. From: jrd@cc.usu.edu (Joe Doupnik)
  100372. Newsgroups: comp.protocols.kermit.misc
  100373. Subject: Re: How do you exit Server mode?
  100374. Message-Id: <1995Mar8.110258.44008@cc.usu.edu>
  100375. Date: 8 Mar 95 11:02:58 MDT
  100376. References: <D51Ep6.EpH@freenet.buffalo.edu>
  100377. Organization: Utah State University
  100378. Lines: 26
  100379. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  100380.  
  100381. In article <D51Ep6.EpH@freenet.buffalo.edu>, ba177@freenet.buffalo.edu (Lawrence Puente) writes:
  100382. > Ok, here's what I do and everything works up until the last step:
  100383. > 1) From the Buffalo Freenet menus I choose Send File/Kermit Server
  100384. > 2) The Freenet enters server mode and tells me to escape to my kermit
  100385. >    and issue a GET command.
  100386. > 3) I invoke KERLITE (MS-DOS Kermit 3.14)
  100387. > 4) I SET various options and GET the file (this part works).
  100388. > 5) I type EXIT.  The Freenet is still in server mode!!
  100389. >    I've tried BYE, FINISH, and various other commands but they either
  100390. >    do nothing, or hang up my line.
  100391. > How do I tell the Freenet site to exit the server mode?
  100392. > --Lawrence.
  100393. ------------
  100394.     Send FINISH to end Kermit protocol mode, then Connect to resume
  100395. interactive conversation. BYE does FINISH and logs out. It's all in the
  100396. manual and the HELP screen. Kermit-Lite has no Connect mode so you can't
  100397. talk interactively through it.
  100398.     It's possible that you or the BBS has turned off recognition of 
  100399. FIN/BYE  (a DISABLE command) on their Kermit, and that leaves you with only 
  100400. hanging up your end. If this were the case you'd need to tell the BBS 
  100401. operator to fix their end.
  100402.     So what Kermit were you using on your desktop?
  100403.         Joe D.
  100404.  
  100405. From news@columbia.edu Sat Mar 11 03:17:10 1995
  100406. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07549
  100407.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 11 Mar 1995 15:37:43 -0500
  100408. Received: by apakabar.cc.columbia.edu id AA14331
  100409.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 11 Mar 1995 15:37:41 -0500
  100410. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!newshost.marcam.com!usc!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  100411. From: jrd@cc.usu.edu (Joe Doupnik)
  100412. Newsgroups: comp.protocols.kermit.misc
  100413. Subject: Re: MS-K and ndis3pkt.386 - broadcast problem
  100414. Message-Id: <1995Mar11.091710.44366@cc.usu.edu>
  100415. Date: 11 Mar 95 09:17:10 MDT
  100416. References: <3iuspg$jr9@infosrv.rz.unibw-muenchen.de>
  100417. Organization: Utah State University
  100418. Lines: 40
  100419. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  100420.  
  100421. In article <3iuspg$jr9@infosrv.rz.unibw-muenchen.de>, p41bsmk@kommsrv.rz.unibw-muenchen.de (Peter Schmolck) writes:
  100422. > I have tested Dan Lancini's ndis3 virtual packet driver (available from:
  100423. > ftp://newdev.harvard.edu/pub/ndis3pkt) under WfW 3.11. It is easily
  100424. > configurable and seems to work smoothly, allowing multiple packet driver
  100425. > clients, even together with TCPIP32 winsocket clients at the same time (if
  100426. > one assigns two different IP addresses for winsocket and packet clients). 
  100427. > One of its advantages over my current solution with Odi stack and
  100428. > Packet-Mux is that it preserves conventional memory. 
  100429. > However there exists a problem due to the fact, as Dan Lancini explained
  100430. > to me, that under NDIS3, clients always see their own broadcasts. Under
  100431. > packet drivers, they usually do not. They send a broadcast looking for
  100432. > others with their own address, and under NDIS3, see their own broadcast
  100433. > and complain. NCSA telnet issues an error message but it works
  100434. > nevertheless, MS-Kermit 3.13 doesn't seem to send broadcasts, and works
  100435. > fine. MS-Kermit 3.14, however, stops to go ahead in this situation. 
  100436. > Is there a possibility to turn off broadcast messages in 3.14?
  100437. > Thanking you in advance 
  100438. > Peter
  100439. > P.S. If you respond to my question, could you please CC to my email 
  100440. > address, because our news stuff here lags several days.
  100441. > --
  100442. > Peter Schmolck                                p41bsmk@rz.unibw-muenchen.de
  100443. > Department of Education                       Phone :     +49-89-6004-2056
  100444. > Univ. of the Federal Armed Forces Munich      Fax   :     +49-89-6004-3968
  100445. > 85577 NEUBIBERG, GERMANY    
  100446. ---------------
  100447.     All ARP requests are physical layer broadcast frames. They must be
  100448. since the purpose is to find the hardware address of a station on the local
  100449. wire. In addition, MSK 3.14 will ARP for its own IP address to detect
  100450. duplicate IP addresses. Thus all TCP/IP stacks send ARPs on Ethernet, and
  100451. they can't really avoid doing so. 
  100452.     The cure is to stop the stupid local echoing in NDIS. It's that
  100453. simple.
  100454.     Joe D.
  100455.  
  100456.  
  100457. From news@columbia.edu Sat Mar 11 03:18:26 1995
  100458. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07835
  100459.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 11 Mar 1995 15:38:40 -0500
  100460. Received: by apakabar.cc.columbia.edu id AA14384
  100461.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 11 Mar 1995 15:38:39 -0500
  100462. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!newshost.marcam.com!usc!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  100463. From: jrd@cc.usu.edu (Joe Doupnik)
  100464. Newsgroups: comp.protocols.kermit.misc
  100465. Subject: Re: unix kermit server timeout
  100466. Message-Id: <1995Mar11.091826.44367@cc.usu.edu>
  100467. Date: 11 Mar 95 09:18:26 MDT
  100468. References: <3jpcqg$ko8@berlioz.crs4.it>
  100469. Organization: Utah State University
  100470. Lines: 9
  100471. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  100472.  
  100473. In article <3jpcqg$ko8@berlioz.crs4.it>, Francesco Ruggiero <ruggiero@vol.it> writes:
  100474. > Hi
  100475. > I want to put a  time limit on the server ( for example an hour ).
  100476. > How can I set this ?
  100477. ----------------
  100478.     Manual time. SET SERVER ? to see options, including timeout.
  100479.     Joe D. 
  100480.  
  100481. From news@columbia.edu Sat Mar 11 03:21:22 1995
  100482. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07925
  100483.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 11 Mar 1995 15:39:00 -0500
  100484. Received: by apakabar.cc.columbia.edu id AA14401
  100485.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 11 Mar 1995 15:38:57 -0500
  100486. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!usenet.eel.ufl.edu!news-feed-1.peachnet.edu!gatech!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  100487. From: jrd@cc.usu.edu (Joe Doupnik)
  100488. Newsgroups: comp.protocols.kermit.misc
  100489. Subject: Re: Prefixing KERMIT ESC sequences
  100490. Message-Id: <1995Mar11.092122.44369@cc.usu.edu>
  100491. Date: 11 Mar 95 09:21:22 MDT
  100492. References: <Tim_Helmstetter.18.2F606022@radian.com>
  100493. Organization: Utah State University
  100494. Lines: 20
  100495. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  100496.  
  100497. In article <Tim_Helmstetter.18.2F606022@radian.com>, Tim_Helmstetter@radian.com writes:
  100498. > HELP!
  100499. > I am running an appl. called MAPPER on a Unisys U6000 UNIX box. MAPPER has a 
  100500. > function called OUV (Output User Variable) which displays the contents of a 
  100501. > user variable on the screen. I would like to use this function to send escape 
  100502. > codes back to KERMIT. I have defined a variable <cmd>= ESC[?5i to enter 
  100503. > autoprint. My problem is that the OUV <cmd> function displays [?5i on the 
  100504. > screen and is not interpreted by Kermit. Am I supposed to prefix this sequence 
  100505. > so KERMIT knows to interpret the following escape sequence and not just 
  100506. > display it on the screen?
  100507.     Chances are excellent that your host is not sending the ESC byte.
  100508. Turn on MSK Connect mode debugging by SET DEBUG ON and view the material
  100509. sent by the host. Or use LOG SESSION to see the bytes in binary form.
  100510.  
  100511. > P.S> When I type SET PRINTER PRN in command mode I get a screen full of what 
  100512. > looks like the tail end of a macro definition, but the printer is reset to 
  100513. > PRN. Why do I get this screen dump
  100514.     Works ok here. I can't say why you'd get a screenfull of garbage.
  100515. Any hints?
  100516.     Joe D.
  100517.  
  100518. From news@columbia.edu Thu Mar  9 02:01:59 1995
  100519. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10325
  100520.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 11 Mar 1995 16:09:02 -0500
  100521. Received: by apakabar.cc.columbia.edu id AA15915
  100522.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 11 Mar 1995 16:09:01 -0500
  100523. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  100524. From: jrd@cc.usu.edu (Joe Doupnik)
  100525. Newsgroups: comp.protocols.kermit.misc
  100526. Subject: Re: How do I script a [CTRL-P]???
  100527. Message-Id: <1995Mar9.080200.44117@cc.usu.edu>
  100528. Date: 9 Mar 95 08:01:59 MDT
  100529. References: <3jle9u$23i@pulsar.sky.net>
  100530. Organization: Utah State University
  100531. Lines: 20
  100532. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  100533.  
  100534. In article <3jle9u$23i@pulsar.sky.net>, racerx@solar.sky.net (Ken Pearce) writes:
  100535. > When I manually attach to a remote system using kermit (on a Vax),
  100536. > my WAN equipment dictates that I must hit a CTRL-P (control p) to
  100537. > break my current WAN connection so that I may re-establish another.
  100538. > Typing this on the keyboard (vt420) works fine!
  100539. > What is the syntax for scripting this???
  100540. > I've tried        script -- ~o20       and     script -- \^p
  100541. > but no luck.
  100542. > Thanks In Advance,
  100543. > racerx
  100544. ---------------
  100545.     SHOW KEY<enter>, press Control-P, see Kermit decimal code \16.
  100546. This is in the manual and docs.
  100547.     Joe D.
  100548.  
  100549. From news@columbia.edu Wed Mar  8 17:57:02 1995
  100550. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10330
  100551.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 11 Mar 1995 16:09:03 -0500
  100552. Received: by apakabar.cc.columbia.edu id AA15931
  100553.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 11 Mar 1995 16:09:03 -0500
  100554. Path: news.columbia.edu!sol.ctr.columbia.edu!news.msfc.nasa.gov!elroy.jpl.nasa.gov!decwrl!enews.sgi.com!news.igc.apc.org!cdp!scott
  100555. From: Scott Weikart <scott@igc.apc.org>
  100556. Newsgroups: comp.protocols.kermit.misc
  100557. Subject: Re: Why can't I use 14.4K
  100558. Message-Id: <APC&1'0'8a49eaa3'e42@igc.apc.org>
  100559. References: <3j4p34$foj@israel-info.datasrv.co.il>
  100560. Date: Wed, 08 Mar 1995 09:57:02 -0800 (PST)
  100561. X-Gateway: notes@igc.apc.org
  100562. Lines: 118
  100563. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  100564.  
  100565. >I've found on our Sun 4/330 that SunOS 4.1.3 can't keep up with a modem at 
  100566. >38400.  Too many lost characters between the modem to the serial port.  
  100567. >I have to throttle the modem (a V.34) back to 19200.  The original poster 
  100568. >might have to do the same.
  100569.  
  100570. Here's a way to speedup SparcStations ability to handle higher data rates on
  100571. the builtin serial ports.
  100572.  
  100573. -scott
  100574.  
  100575. /* 10:03 AM  Jul 11, 1994 por adar0@routers.com en igc:comp.sun.admin */
  100576. /* ---------- "SunOS patches req'd for PPP/SLIP" ---------- */
  100577.  
  100578. Netters,
  100579. There has been a number of questions over the last several months about the
  100580. which patches (if any) are required on SunOS 4.1.x systems to make PPP and/or
  100581. SLIP reliable.  I've assembled responses from several individuals and
  100582. summarized them in the note below.  Thanks to all who responded.  If there
  100583. are any questions, please send them via email direct.
  100584. Enjoy,
  100585. Rich Adamson
  100586. adar0@routers.com
  100587.  
  100588. Sun Workstation OS Patches for Serial Ports
  100589. -------------------------------------------
  100590.  
  100591. Author: Rich Adamson 
  100592.     (adar0@routers.com)
  100593.     The Router Exchange, Inc.
  100594. Date:     July 11, 1994
  100595.  
  100596. There has been a lot of discussion in various news groups relative to the
  100597. possible need to apply Operating System patches to SunOS 4.1.x systems in
  100598. order to have pppd function reliably.  The note you are reading should 
  100599. help explain the technical need for these patches.  This note applies to 
  100600. all versions of SunOS 4.1.x, including the current shipment of 4.1.3_U1 
  100601. from Sun.  The patch required is:
  100602.     For SunOS 4.1.x systems,
  100603.         Sunsolve1.sun.com   /pub/patches/100513-04.tar.Z
  100604.     For SunOS 4.1.3_U1 systems,
  100605.         Sunsolve1.sun.com   /pub/patches/101621-02.tar.Z
  100606.     (Note:  These have also been available on
  100607.         cs.columbia.edu  /archives/mirror3/sun-patches/100513-04.tar.gz
  100608.         watserv1.waterloo.edu  /sun_patches/100513-04.tar.Z)
  100609.  
  100610. Either patch will require rebuilding the kernel to incorporate the fix.
  100611.  
  100612. Technical Detail:
  100613. -----------------
  100614. Most of the inservice Sun workstations use a Z85C30 Integrated Circuit to
  100615. handle built-in serial ports.  The Z85C30 generates a system interrupt for 
  100616. each incoming character.  Therefore for each baud rate noted in the table 
  100617. below, system interrupts will occur at the following approximate rates:
  100618.  
  100619.     Serial Port
  100620.           Speed    Interrupts Occur
  100621.     -----------    -----------------------
  100622.      9,600 baud    every 1040 microseconds
  100623.     19,200 baud    every  520    "
  100624.     38,400 baud    every  260    "
  100625.     76,800 baud    every  130    "
  100626.  
  100627. A typical IPC or IPX workstation cannot handle system interrupts any faster
  100628. than about 19,200 baud while an SS5 workstation is limited to about 38,400
  100629. baud.  The ability of a system to handle higher baud rates is directly 
  100630. related to the speed of the system processor and other higher priority
  100631. system level activity.
  100632.  
  100633. As each incoming character arrives on a Sun built-in serial port, an 
  100634. interrupt is generated by the Z85C30.  The system processor responds to this
  100635. interrupt taking the character from the Z85C30 and placing it in a ring
  100636. buffer.  The ring buffer is essentially emptied by the pppd application,
  100637. and then passed to whatever application (eg, telnet, ftp, mail) it was
  100638. destined for.
  100639.  
  100640. If the built-in serial port is set to a speed that is faster than what the
  100641. system interrupt structure is capable of handling, silo overflows will occur.
  100642. If the application (pppd) is not allowed sufficient processing time to 
  100643. empty the ring buffer, then ring buffer overruns will occur.
  100644.  
  100645. The Request-to-Send (RTS) and Clear-to-Send (CTS) pins on an RS232 serial
  100646. interface cable are used to provide hardware flow control of OUTGOING data
  100647. from the Sun to the modem.  There are no equivalent pins defined on the 
  100648. RS232 serial interface to provide incoming hardware flow control.  Although
  100649. the patches noted above are often referred to as RTSCTS hardware flow 
  100650. control fixes, the patches actually do not implement any form of incoming 
  100651. "hardware" flow control.  Rather the patches deal with the efficiency of 
  100652. handling internal system interrupts and the size of the ring buffer used 
  100653. as temporary incoming data storage.
  100654.  
  100655. Incoming data flow control (or lack thereof) can be easily seen by
  100656. initiating a large file transfer into the Sun via the pppd serial port, 
  100657. and while the transfer is occuring, initiate another process to 'find' a 
  100658. file or simply execute a 'df' command to produce other activity on the 
  100659. same system.  You will either notice an interruption and long delay in 
  100660. the incoming ftp data, or system logged errors such as the silo overflow 
  100661. and/or ring buffer overruns.  The long delay is typically TCP/IP timeouts
  100662. and error recovery processing.  Without the patch, the ppp session can be
  100663. dropped or blown off-line in unpredicable ways.
  100664.  
  100665.  
  100666. Summary:
  100667. --------
  100668. Sun workstations running pppd can operate very reliably, however the
  100669. reliability decreases as the built-in serial port speed increases.  This
  100670. is a function of the SunOS system, not pppd.  The best that current 
  100671. 14.4kb async modems with compression can accomplish is about 19.2kb 
  100672. effective throughput, therefore setting a Sun workstation's serial
  100673. port to 19.2kb is very close to the most efficient speed possible for
  100674. both the Sun system and modem, with the Sun patches noted above installed.
  100675. Without the patches, a built-in serial port speed of 7,200 or 9,600 baud
  100676. is likely to be the maximum speed for reliable operation before TCP/IP 
  100677. retransmissions and silo overflows occur.  Your mileage may vary.
  100678.  
  100679. If speeds above 19.2kb are required, add-on SBus serial cards are available
  100680. from various sources that can sustain higher baud rates then the built-in
  100681. ports.  This author has no direct experience with these add-on cards.
  100682.  
  100683.  
  100684. From news@columbia.edu Thu Mar  9 07:34:42 1995
  100685. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10335
  100686.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 11 Mar 1995 16:09:06 -0500
  100687. Received: by apakabar.cc.columbia.edu id AA15935
  100688.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 11 Mar 1995 16:09:05 -0500
  100689. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!gatech!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  100690. From: jrd@cc.usu.edu (Joe Doupnik)
  100691. Newsgroups: comp.protocols.kermit.misc
  100692. Subject: Re: Remap Scroll Lock key?
  100693. Message-Id: <1995Mar9.133443.44166@cc.usu.edu>
  100694. Date: 9 Mar 95 13:34:42 MDT
  100695. References: <3jls9l$1sr@boris.eden.com>
  100696. Organization: Utah State University
  100697. Lines: 9
  100698. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  100699.  
  100700. In article <3jls9l$1sr@boris.eden.com>, glharlan@eden.com (gordon harlan) writes:
  100701. > how can i remap the scroll lock key, i get no scan code from it, but i 
  100702. > know old PCLink could do it.
  100703. -------------
  100704.     You can't. Scroll Lock is hidden deep within the system Bios and
  100705. not revealed to applications. Kermit does not play systems stealing games
  100706. to intercept below the keyboard Bios, nor is there a need to do so. Leave it
  100707. alone is my advice for you.
  100708.     Joe D.
  100709.  
  100710. From news@columbia.edu Wed Mar  8 23:23:42 1995
  100711. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10340
  100712.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 11 Mar 1995 16:09:10 -0500
  100713. Received: by apakabar.cc.columbia.edu id AA15940
  100714.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 11 Mar 1995 16:09:09 -0500
  100715. Path: news.columbia.edu!sol.ctr.columbia.edu!ucsnews!newshub.sdsu.edu!nic-nac.CSU.net!charnel.ecst.csuchico.edu!olivea!hookup!newshost.marcam.com!news.mathworks.com!news.duke.edu!news-feed-1.peachnet.edu!gatech!swrinde!howland.reston.ans.net!news.sprintlink.net!pulsar.sky.net!solar.sky.net!racerx
  100716. From: racerx@solar.sky.net (Ken Pearce)
  100717. Newsgroups: comp.protocols.kermit.misc
  100718. Subject: How do I script a [CTRL-P]???
  100719. Date: 8 Mar 1995 23:23:42 GMT
  100720. Organization: SkyNET Corporation
  100721. Lines: 15
  100722. Message-Id: <3jle9u$23i@pulsar.sky.net>
  100723. Nntp-Posting-Host: solar.sky.net
  100724. X-Newsreader: TIN [version 1.2 PL2]
  100725. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  100726.  
  100727. When I manually attach to a remote system using kermit (on a Vax),
  100728. my WAN equipment dictates that I must hit a CTRL-P (control p) to
  100729. break my current WAN connection so that I may re-establish another.
  100730.  
  100731. Typing this on the keyboard (vt420) works fine!
  100732.  
  100733. What is the syntax for scripting this???
  100734.  
  100735. I've tried        script -- ~o20       and     script -- \^p
  100736.  
  100737. but no luck.
  100738.  
  100739. Thanks In Advance,
  100740.  
  100741. racerx
  100742.  
  100743. From news@columbia.edu Fri Mar 10 15:21:30 1995
  100744. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10345
  100745.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 11 Mar 1995 16:09:18 -0500
  100746. Received: by apakabar.cc.columbia.edu id AA15946
  100747.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 11 Mar 1995 16:09:17 -0500
  100748. Path: news.columbia.edu!sol.ctr.columbia.edu!newsxfer.itd.umich.edu!gatech!news-feed-1.peachnet.edu!news.duke.edu!eff!news.umbc.edu!cs.umd.edu!newsfeed.gsfc.nasa.gov!ELF!schieb
  100749. From: schieb@shark.gsfc.nasa.gov (Brian D. Schieber)
  100750. Newsgroups: comp.protocols.kermit.misc
  100751. Subject: UNIX Kermiting help needed....
  100752. Date: 10 Mar 1995 15:21:30 GMT
  100753. Organization: NASA Goddard Space Flight Center -- Greenbelt, Maryland USA
  100754. Lines: 32
  100755. Distribution: na
  100756. Message-Id: <3jpqpq$6av@post.gsfc.nasa.gov>
  100757. Reply-To: schieb@shark.gsfc.nasa.gov (Brian D. Schieber)
  100758. Nntp-Posting-Host: shark-f.gsfc.nasa.gov
  100759. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  100760.  
  100761. Hi,
  100762.  I'm trying to use C-KERMIT to download some data.  What I have
  100763. to do is:
  100764.  
  100765. 1. from my UNIX machine, telnet to another
  100766. 2. call the data site using a modem pool connected to the 
  100767.    machine from (1).
  100768. 3. download a data set.
  100769.  
  100770. As I understand it (and I really don't) I need to use KERMIT to 
  100771. TELNET to the 2nd UNIX machine then call from that telnet connection,
  100772. then SOMEHOW get the KERMIT session I started from to receive a
  100773. data file from the machine I'm modem connected to.
  100774.  
  100775. I need to understand this better and would LOVE a kermit script
  100776. that I can work from.... I can't even find any KERMIT docs on
  100777. my SOLARIS machine....anybody have docs online??
  100778.  
  100779.  
  100780. -- 
  100781.  
  100782. Thanks,
  100783. --Brian
  100784.  
  100785. | Brian D. Schieber 
  100786. | SeaDAS/SeaWiFS Projects 
  100787. | Laboratory for Hydrospheric Processes 
  100788. | NASA/Goddard Space Flight Center 
  100789. | Code 971/GSC, Greenbelt, MD 20771
  100790. | schieb@shark.gsfc.nasa.gov 
  100791. | http://shark.gsfc.nasa.gov/~schieb/home_page.html/
  100792.  
  100793.  
  100794. From news@columbia.edu Sat Mar 11 16:09:25 1995
  100795. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10356
  100796.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 11 Mar 1995 16:09:25 -0500
  100797. Received: by apakabar.cc.columbia.edu id AA15955
  100798.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 11 Mar 1995 16:09:24 -0500
  100799. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!uhog.mit.edu!nntp.club.cc.cmu.edu!cantaloupe.srv.cs.cmu.edu!fs7.ece.cmu.edu!news.radian.com.!radian.com!Tim_Helmstetter
  100800. From: Tim_Helmstetter@radian.com
  100801. Newsgroups: comp.protocols.kermit.misc
  100802. Subject: Prefixing KERMIT ESC sequences
  100803. Date: Fri, 10 Mar 1995 08:17:12
  100804. Organization: Radian Corporation, Austin, TX, USA
  100805. Lines: 21
  100806. Message-Id: <Tim_Helmstetter.18.2F606022@radian.com>
  100807. Nntp-Posting-Host: 129.160.17.246
  100808. X-Newsreader: Trumpet for Windows [Version 1.0 Rev Final Beta #8]
  100809. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  100810.  
  100811. HELP!
  100812. I am running an appl. called MAPPER on a Unisys U6000 UNIX box. MAPPER has a 
  100813. function called OUV (Output User Variable) which displays the contents of a 
  100814. user variable on the screen. I would like to use this function to send escape 
  100815. codes back to KERMIT. I have defined a variable <cmd>= ESC[?5i to enter 
  100816. autoprint. My problem is that the OUV <cmd> function displays [?5i on the 
  100817. screen and is not interpreted by Kermit. Am I supposed to prefix this sequence 
  100818. so KERMIT knows to interpret the following escape sequence and not just 
  100819. display it on the screen?
  100820.  
  100821. P.S> When I type SET PRINTER PRN in command mode I get a screen full of what 
  100822. looks like the tail end of a macro definition, but the printer is reset to 
  100823. PRN. Why do I get this screen dump
  100824.  
  100825.  
  100826.  |~~~~~\  /~~\  |~~~~~\ |~|  /~~\  |~\_|~|      Tim Helmstetter, Sys. Analyst
  100827.  |  ~  / / /\ \ | [<>] || | / /\ \ | \ \ |      Helmstetter_Tim@radian.com 
  100828.  |_|~|_\/_|~~|_\|_____/ |_|/_|~~|_\|_|\__|      Box 201088 Austin, TX 78720 
  100829.  C   O   R   P   O   R   A   T   I   O   N      All opinions are just that...
  100830.                                                         opinions!!!
  100831. --KAB26305.784571010/zippy.radian.com--
  100832.  
  100833. From news@columbia.edu Fri Mar 10 02:44:12 1995
  100834. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10365
  100835.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 11 Mar 1995 16:09:29 -0500
  100836. Received: by apakabar.cc.columbia.edu id AA15962
  100837.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 11 Mar 1995 16:09:28 -0500
  100838. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!hookup!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  100839. From: jrd@cc.usu.edu (Joe Doupnik)
  100840. Newsgroups: comp.protocols.kermit.misc
  100841. Subject: Re: PC to VT300 Keyboard Mapping
  100842. Message-Id: <1995Mar10.084413.44252@cc.usu.edu>
  100843. Date: 10 Mar 95 08:44:12 MDT
  100844. References: <3jmvjv$8e$1@mhadf.production.compuserve.com>
  100845. Organization: Utah State University
  100846. Lines: 18
  100847. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  100848.  
  100849. In article <3jmvjv$8e$1@mhadf.production.compuserve.com>, Dale Hoehne <70004.3131@CompuServe.COM> writes:
  100850. > Currently using IBM pc as terminal connections to a VAX8530 VMS system
  100851. > version 3.11 using vt300.ini .. Need to know how the f12 thru f20
  100852. > keys remap on the standard pc keyboard.. We use Wordperfect for VMS
  100853. > that require these keys
  100854. > TIA                           - Dale
  100855. -------------
  100856.     Please do read the documentation, in this case either the user's
  100857. manual, the book "Using MS-DOS Kermit" or even the technical file msvibm.vt.
  100858. Those DEC keys are all keyboard verbs and you can attach them to keys by
  100859. name, but they are not preassigned to keys in the shipped product. Use
  100860. SET KEY to tie \Kverbs to keys, use a query mark (?) for a definition to
  100861. see all the keyboard verb names on-line.
  100862.     The current release of MS-DOS Kermit is v3.14, which you may acquire
  100863. from kermit.columbia.edu, cd kermit/bin for file msvibm.zip as a quick-start
  100864. bundle.
  100865.     Joe D.
  100866.  
  100867. From news@columbia.edu Thu Mar  9 03:22:29 1995
  100868. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07698
  100869.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 12 Mar 1995 02:09:26 -0500
  100870. Received: by apakabar.cc.columbia.edu id AA15859
  100871.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 12 Mar 1995 02:09:24 -0500
  100872. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!swiss.ans.net!gatech!newsxfer.itd.umich.edu!zip.eecs.umich.edu!newshost.marcam.com!uunet!in1.uu.net!news.eden.com!matrix.eden.com!glharlan
  100873. From: glharlan@eden.com (gordon harlan)
  100874. Newsgroups: comp.protocols.kermit.misc
  100875. Subject: Remap Scroll Lock key?
  100876. Date: 9 Mar 1995 03:22:29 GMT
  100877. Organization: Adhesive Media, Inc.
  100878. Lines: 4
  100879. Message-Id: <3jls9l$1sr@boris.eden.com>
  100880. Nntp-Posting-Host: matrix.eden.com
  100881. X-Newsreader: TIN [version 1.2 PL2]
  100882. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  100883.  
  100884. how can i remap the scroll lock key, i get no scan code from it, but i 
  100885. know old PCLink could do it.
  100886.  
  100887. thanks
  100888.  
  100889. From news@columbia.edu Sat Mar 11 17:30:28 1995
  100890. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15560
  100891.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 12 Mar 1995 05:13:59 -0500
  100892. Received: by apakabar.cc.columbia.edu id AA22574
  100893.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 12 Mar 1995 05:13:58 -0500
  100894. Newsgroups: comp.protocols.kermit.misc
  100895. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!newshost.marcam.com!charnel.ecst.csuchico.edu!csusac!csus.edu!netcom.com!tstevens
  100896. From: tstevens@netcom.com (Edward Stevens)
  100897. Subject: Linux ?
  100898. Message-Id: <tstevensD5ADys.KpK@netcom.com>
  100899. Organization: NETCOM On-line Communication Services (408 261-4700 guest)
  100900. Date: Sat, 11 Mar 1995 17:30:28 GMT
  100901. Lines: 9
  100902. Sender: tstevens@netcom14.netcom.com
  100903. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  100904.  
  100905.     Where can I find the latest kermit for Linux ? Thanks.
  100906.  
  100907. Ted Stevens
  100908.  
  100909. -- 
  100910. >>>>>                  ZumaSoft (TEL) V/F 310/457-6263          <<<<<
  100911. <<<<<     OO Analysis & Design, Enterprise Modeling, Training   >>>>>
  100912. >>>>>                        tstevens@netcom.com                <<<<<
  100913. <<<<<     'Thank you for your wine, California' - Mick Jagger   >>>>>
  100914.  
  100915. From news@columbia.edu Tue Mar  7 11:42:30 1995
  100916. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21701
  100917.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 12 Mar 1995 08:03:36 -0500
  100918. Received: by apakabar.cc.columbia.edu id AA10923
  100919.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 12 Mar 1995 08:03:34 -0500
  100920. Path: news.columbia.edu!panix!news.mathworks.com!news.kei.com!ub!csn!carbon!castle!jsmithgoldsm
  100921. From: jsmithgoldsm@castle.cudenver.edu
  100922. Newsgroups: comp.protocols.kermit.misc
  100923. Subject: Re: Throughput with MSKermit 3.13?
  100924. Date: 7 Mar 95 17:42:30 MDT
  100925. Organization: University of Colorado at Denver
  100926. Lines: 33
  100927. Distribution: world
  100928. Message-Id: <1995Mar7.174230@castle.cudenver.edu>
  100929. References: <3im6is$a2p@hydra.acs.ttu.edu> <3j7vml$9l6@apakabar.cc.columbia.edu>
  100930. Nntp-Posting-Host: castle.cudenver.edu
  100931. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  100932.  
  100933. In article <3j7vml$9l6@apakabar.cc.columbia.edu>, fdc@watsun.cc.columbia.edu (Frank da Cruz) writes:
  100934. > In article <3im6is$a2p@hydra.acs.ttu.edu>,
  100935. > Michael J. Mettler <mmettler@ttmath.ttu.edu> wrote:
  100936. >>I recently purchased a USR Sportster 14.4 modem to do some
  100937. >>work from home.  I am using MSKermit 3.13 and doing a lot of
  100938. >>downloading of compressed files.  What kind of speed should I
  100939. >>be getting?  I can only get up to about 1500-1600 cps (as
  100940. >>reported by MSKermit in 'show statistics')
  100941. >>
  100942. > If you're transferring precompressed files (such as ZIP files),
  100943. > that will be about tops for a V.32bis (14400 bps) connection,
  100944. > no matter what protocol you use.  You evidently have already
  100945. > tuned Kermit for peak performance, and so do not need to be
  100946. > directed to the FAQ for hints on this subject.
  100947. >>... but a friend of mine claims to be getting twice that (with
  100948. >>same CPU, connecting to the same Unix machine, the same
  100949. >>software, and the same modem speed (though a different brand)).
  100950. >>I've looked at his kermit initialization files and they seem
  100951. >>the same as mine.  Any ideas?
  100952. >>
  100953. > Evidently your friend is transferring files that are not
  100954. > precompressed, in which case your modem's and/or Kermit's
  100955. > built-in compression work to increase the effective transfer
  100956. > rate.
  100957. > - Frank
  100958.  
  100959.  
  100960. Hi, I'm using the same modem, etc and getting about the same results, ie around
  100961. 12-1500 cps with precompressed files and up to 3000 cps with some uncompressed
  100962. files. :-) I guess that's the best that can be expected, but if anyone knows a
  100963. way to do better, let me know too. Thanks.
  100964.  
  100965. From news@columbia.edu Tue Mar  7 11:55:13 1995
  100966. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21726
  100967.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 12 Mar 1995 08:04:27 -0500
  100968. Received: by apakabar.cc.columbia.edu id AA10942
  100969.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 12 Mar 1995 08:04:27 -0500
  100970. Path: news.columbia.edu!panix!news.mathworks.com!news.kei.com!ub!csn!carbon!castle!jsmithgoldsm
  100971. From: jsmithgoldsm@castle.cudenver.edu
  100972. Newsgroups: comp.protocols.kermit.misc
  100973. Subject: PC to PC with Kermit?
  100974. Date: 7 Mar 95 17:55:13 MDT
  100975. Organization: University of Colorado at Denver
  100976. Lines: 3
  100977. Distribution: world
  100978. Message-Id: <1995Mar7.175513@castle.cudenver.edu>
  100979. Nntp-Posting-Host: castle.cudenver.edu
  100980. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  100981.  
  100982. Hi. I currently use Kermit (3.13) to access my university computer from home. I
  100983. would like to know if its possible to access another pc (using Kermit) via
  100984. modem to exchange files. How would it work? Thanks.
  100985.  
  100986. From news@columbia.edu Thu Mar  9 20:15:32 1995
  100987. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23499
  100988.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 12 Mar 1995 09:13:16 -0500
  100989. Received: by apakabar.cc.columbia.edu id AA13632
  100990.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 12 Mar 1995 09:13:15 -0500
  100991. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!swiss.ans.net!gatech!newsfeed.pitt.edu!uunet!comp.vuw.ac.nz!canterbury.ac.nz!huia!dunnmj3
  100992. From: dunnmj3@cantva.canterbury.ac.nz (Dunn Michael J)
  100993. Newsgroups: comp.protocols.kermit.misc
  100994. Subject: Uploads with Zmodem/kermit
  100995. Date: 9 Mar 1995 20:15:32 GMT
  100996. Organization: University of Canterbury
  100997. Lines: 7
  100998. Message-Id: <3jnnl4$6uv@cantua.canterbury.ac.nz>
  100999. Nntp-Posting-Host: huia.canterbury.ac.nz
  101000. X-Newsreader: TIN [version 1.2 PL1]
  101001. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  101002.  
  101003. How do you get Zmodem (sz/rz) to upload?
  101004. I have put the line redirecting std input & output to /dev/modem but I 
  101005. cant get it to work .It just hangs ?
  101006. Im using a Zyxel u-1496 at home running linux dialing into another unix 
  101007. machine. Could I need something in my .kermrc at the server end?
  101008.  
  101009. Cheers Mike Dunn
  101010.  
  101011. From news@columbia.edu Sun Mar 12 15:39:48 1995
  101012. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27811
  101013.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 12 Mar 1995 11:32:14 -0500
  101014. Received: by apakabar.cc.columbia.edu id AA19607
  101015.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 12 Mar 1995 11:32:13 -0500
  101016. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!usenet.eel.ufl.edu!eng.ufl.edu!spool.mu.edu!mnemosyne.cs.du.edu!nyx10.cs.du.edu!not-for-mail
  101017. From: gweisz@nyx10.cs.du.edu (Gideon Weisz)
  101018. Newsgroups: comp.protocols.kermit.misc
  101019. Subject: kermit 3.14/hebrew, & tin & pine
  101020. Date: 12 Mar 1995 08:39:48 -0700
  101021. Organization: Nyx, Public Access Unix @ U. of Denver Math/CS dept.
  101022. Lines: 10
  101023. Message-Id: <3jv4k4$ion@nyx10.cs.du.edu>
  101024. Nntp-Posting-Host: nyx10.cs.du.edu
  101025. X-Newsreader: TIN [version 1.2 PL2]
  101026. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  101027.  
  101028. i am running 3.14 in my pc, and routinely connecting with my internet
  101029. provider with a vt220 terminal, after having run "hebrew" in my
  101030. kermit.
  101031. telnetting etc to hebrew places works fine,
  101032. but when i am just using the tin newsreader at my access provider,
  101033. i sometimes get beeps or lines staying highlighted while others
  101034. are highlighted, when i am choosing an article, and recently
  101035. after using lynx i had some funny characters appearing occasionally,
  101036. when i was composing a letter in pine.
  101037. does this ring a bell with anyone? any advice?  thanks, gideon
  101038.  
  101039. From news@columbia.edu Sun Mar 12 03:26:43 1995
  101040. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29187
  101041.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 12 Mar 1995 12:12:11 -0500
  101042. Received: by apakabar.cc.columbia.edu id AA21378
  101043.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 12 Mar 1995 12:12:09 -0500
  101044. Path: news.columbia.edu!sol.ctr.columbia.edu!news.msfc.nasa.gov!news.larc.nasa.gov!lll-winken.llnl.gov!uwm.edu!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  101045. From: jrd@cc.usu.edu (Joe Doupnik)
  101046. Newsgroups: comp.protocols.kermit.misc
  101047. Subject: Re: PC to PC with Kermit?
  101048. Message-Id: <1995Mar12.092643.44450@cc.usu.edu>
  101049. Date: 12 Mar 95 09:26:43 MDT
  101050. References: <1995Mar7.175513@castle.cudenver.edu>
  101051. Distribution: world
  101052. Organization: Utah State University
  101053. Lines: 9
  101054. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  101055.  
  101056. In article <1995Mar7.175513@castle.cudenver.edu>, jsmithgoldsm@castle.cudenver.edu writes:
  101057. > Hi. I currently use Kermit (3.13) to access my university computer from home. I
  101058. > would like to know if its possible to access another pc (using Kermit) via
  101059. > modem to exchange files. How would it work? Thanks.
  101060. -----------
  101061.     Tell one Kermit SERVER. That starts Kermit protocol mode listening
  101062. on the selected communications channel. Please do have a look at the user's
  101063. manual (HELP screen two) which has lots of explanations of how things work.
  101064.     Joe D.
  101065.  
  101066. From news@columbia.edu Fri Mar 10 11:22:56 1995
  101067. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03247
  101068.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 12 Mar 1995 13:35:58 -0500
  101069. Received: by apakabar.cc.columbia.edu id AA28925
  101070.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 12 Mar 1995 13:35:56 -0500
  101071. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!gatech!howland.reston.ans.net!math.ohio-state.edu!jussieu.fr!univ-lyon1.fr!ghost.dsi.unimi.it!berlioz.crs4.it!usenet
  101072. From: Francesco Ruggiero <ruggiero@vol.it>
  101073. Newsgroups: comp.protocols.kermit.misc
  101074. Subject: unix kermit server timeout
  101075. Date: 10 Mar 1995 11:22:56 GMT
  101076. Organization: CRS4, Center for Adv. Studies, Research and Development in Sardinia
  101077. Lines: 13
  101078. Message-Id: <3jpcqg$ko8@berlioz.crs4.it>
  101079. Nntp-Posting-Host: vol.vol.it
  101080. Mime-Version: 1.0
  101081. Content-Type: text/plain; charset=iso-8859-1
  101082. Content-Transfer-Encoding: 7bit
  101083. X-Url: news:comp.protocols.kermit.misc
  101084. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  101085.  
  101086. Hi
  101087.  
  101088. I want to put a  time limit on the server ( for example an hour ).
  101089.  
  101090. How can I set this ?
  101091.  
  101092.  
  101093. PS:please CC:ruggiero@vol.it 
  101094. -- 
  101095.  
  101096.                       Francesco Ruggiero
  101097. =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  101098.  
  101099.  
  101100. From news@columbia.edu Fri Mar 10 21:09:45 1995
  101101. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12912
  101102.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 12 Mar 1995 16:58:38 -0500
  101103. Received: by apakabar.cc.columbia.edu id AA09650
  101104.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 12 Mar 1995 16:58:37 -0500
  101105. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!news.mathworks.com!hookup!swrinde!cs.utexas.edu!news.cs.utah.edu!news.cc.utah.edu!news.xmission.com!xmission.xmission.com!not-for-mail
  101106. From: fozz@xmission.xmission.com (Fozziliny Moo)
  101107. Newsgroups: comp.protocols.kermit.misc
  101108. Subject: MS-Kermit v3.14 missing duplicating characters
  101109. Date: 10 Mar 1995 14:09:45 -0700
  101110. Organization: XMission Public Access Internet (801 539 0900)
  101111. Lines: 33
  101112. Message-Id: <3jqf6p$j2g@xmission.xmission.com>
  101113. Nntp-Posting-Host: xmission.xmission.com
  101114. X-Newsreader: NN version 6.5.0 #1 (NOV)
  101115. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  101116.  
  101117. I'm running MS-Kermit v3.14 on a new PC that I just bought. It is a 
  101118. 486DX2-80. The serial UART is a 16550. I have a 28.8 (v.fc) modem 
  101119. connected to COM2 via DB25 connector. 
  101120.  
  101121. Initially I ran Kermit "straight out of the box" and said SET PORT COM2
  101122. and SET SPEED 115200. When I do a connect and try to key in AT commands,
  101123. this happens:
  101124.  
  101125. I type AT
  101126. I get ATT or just A
  101127.  
  101128. Typing in ATDT5551234 comes out like
  101129. ATDDT5551134
  101130.  
  101131. Here are the strategies I've tried to resolve this problem:
  101132.  
  101133. Bumped the baud rate of the serial port to 57600, 28800, 14400, 9600, and 
  101134. 2400. No effect. Made use I was using hardware handshaking with the modem.
  101135. No effect.
  101136.  
  101137. Now- I use Trumpet Winsock in Windows and I don't seem to have any problems
  101138. communicating with the modem at 115200 with Trumpets internal serial driver.
  101139. I can also use the Windows Terminal program (ugh) and communicate flawlessly.
  101140. But as a loyal user of MS-Kermit, I'd rather not be tied to these 
  101141. apps. 
  101142.  
  101143. Any ideas? Mail me and post here.
  101144.  
  101145. -Fozz
  101146. -- 
  101147. ================fozz@xmission.com==http://xmission.com/~fozz/==================
  101148. ==     ``Today could be a dream of tomorrow that you had last night. ''      ==
  101149. ======================Doran L. Barton | Fozziliny G. Moo=======================
  101150.  
  101151. From news@columbia.edu Thu Mar  9 13:25:19 1995
  101152. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15423
  101153.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 12 Mar 1995 18:17:59 -0500
  101154. Received: by apakabar.cc.columbia.edu id AA14218
  101155.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 12 Mar 1995 18:17:57 -0500
  101156. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!swiss.ans.net!cmcl2!panix!news.mathworks.com!uunet!in1.uu.net!news.inhouse.compuserve.com!news.production.compuserve.com!news
  101157. From: Dale Hoehne <70004.3131@CompuServe.COM>
  101158. Newsgroups: comp.protocols.kermit.misc
  101159. Subject: PC to VT300 Keyboard Mapping
  101160. Date: 9 Mar 1995 13:25:19 GMT
  101161. Organization: none-set
  101162. Lines: 6
  101163. Message-Id: <3jmvjv$8e$1@mhadf.production.compuserve.com>
  101164. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  101165.  
  101166. Currently using IBM pc as terminal connections to a VAX8530 VMS system
  101167. version 3.11 using vt300.ini .. Need to know how the f12 thru f20
  101168. keys remap on the standard pc keyboard.. We use Wordperfect for VMS
  101169. that require these keys
  101170.  
  101171. TIA                           - Dale
  101172.  
  101173. From news@columbia.edu Sun Mar 12 23:53:28 1995
  101174. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17442
  101175.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 12 Mar 1995 19:20:39 -0500
  101176. Received: by apakabar.cc.columbia.edu id AA17622
  101177.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 12 Mar 1995 19:20:37 -0500
  101178. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news.sprintlink.net!uunet!in1.uu.net!dziuxsolim.rutgers.edu!pilot.njin.net!not-for-mail
  101179. From: mcclain@pilot.njin.net (James M. McClain)
  101180. Newsgroups: comp.protocols.kermit.misc
  101181. Subject: Manuals
  101182. Date: 12 Mar 1995 18:53:28 -0500
  101183. Organization: Rutgers University
  101184. Lines: 15
  101185. Distribution: world
  101186. Message-Id: <3k01ho$lp4@pilot.njin.net>
  101187. Nntp-Posting-Host: pilot.njin.net
  101188. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  101189.  
  101190.  
  101191.  
  101192. I must confess being bemused at the constant drone of Frank and Joe
  101193. advising that we look first in the manual and docs -- looking there
  101194. would normally be routine, but in this case the manual and docs are
  101195. really rather daunting.  They are usually more thatn obscure and
  101196. sometimes just plain wrong.  This is why we all participate here; so
  101197. we can get the denseness explained.  I for one, when I ask a question
  101198. here, it is after several hours of studying the manual and docs.
  101199.  
  101200. My recommendation to others is that they NOT get the manuals (which
  101201. come to some $85 if data for both ends are needed) they just don't
  101202. help much.
  101203.  
  101204. Mac
  101205.  
  101206. From news@columbia.edu Mon Mar 13 14:12:25 1995
  101207. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19933
  101208.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 13 Mar 1995 09:12:31 -0500
  101209. Received: by apakabar.cc.columbia.edu id AA12417
  101210.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 13 Mar 1995 09:12:28 -0500
  101211. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  101212. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  101213. Newsgroups: comp.protocols.kermit.misc
  101214. Subject: Re: UNIX Kermiting help needed....
  101215. Date: 13 Mar 1995 14:12:25 GMT
  101216. Organization: Columbia University
  101217. Lines: 68
  101218. Distribution: na
  101219. Message-Id: <3k1js9$c3u@apakabar.cc.columbia.edu>
  101220. References: <3jpqpq$6av@post.gsfc.nasa.gov>
  101221. Nntp-Posting-Host: watsun.cc.columbia.edu
  101222. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  101223.  
  101224. In article <3jpqpq$6av@post.gsfc.nasa.gov>,
  101225. Brian D. Schieber <schieb@shark.gsfc.nasa.gov> wrote:
  101226. >I'm trying to use C-KERMIT to download some data.  What I have
  101227. >to do is:
  101228. >1. from my UNIX machine, telnet to another
  101229. >2. call the data site using a modem pool connected to the 
  101230. >   machine from (1).
  101231. >3. download a data set.
  101232. >As I understand it (and I really don't) I need to use KERMIT to 
  101233. >TELNET to the 2nd UNIX machine then call from that telnet connection,
  101234. >then SOMEHOW get the KERMIT session I started from to receive a
  101235. >data file from the machine I'm modem connected to.
  101236. >I need to understand this better and would LOVE a kermit script
  101237. >that I can work from.... I can't even find any KERMIT docs on
  101238. >my SOLARIS machine....anybody have docs online??
  101239. >
  101240. The docs are the printed manual, "Using C-Kermit", which explain
  101241. exactly what you need to do, step by step.  You need to understand
  101242. each step, as it applies to your particular connection, before you
  101243. should even think about writing -- or working from -- a script.
  101244. Somebody else's script does not know the details of your connection.
  101245. Do it by hand first, and then automate it afterwards.  The manual
  101246. shows you exactly how to do this.  Briefly:
  101247.  
  101248.  1. Start C-Kermit on the first UNIX machine.
  101249.  2. Tell it to telnet to the second UNIX machine.
  101250.  3. Log in to the 2nd UNIX machine and start Kermit there.
  101251.  4. Tell the remote Kermit program to SEND the desired file.
  101252.  5. Escape back to the first Kermit (Ctrl-\c) and tell it to RECEIVE. 
  101253.  
  101254. For greater detail, please consult the manual:
  101255.  
  101256.   Frank da Cruz and Christine M. Gianone, "Using C-Kermit", Digital Press /
  101257.   Butterworth-Heinemann, Woburn, MA, 1993, 514 pages, ISBN 1-55558-108-0
  101258.  
  101259.   US single-copy price: $36.95; quantity discounts available.  Available in
  101260.   computer bookstores or directly from Columbia University:
  101261.  
  101262.     Kermit Development and Distribution
  101263.     Columbia University Academic Information Systems
  101264.     612 West 115th Street
  101265.     New York, NY  10025  USA
  101266.     Telephone: (USA) 212 854-3703
  101267.  
  101268.   Domestic and overseas orders accepted.  Price: $36.95 (US, Canada, and
  101269.   Mexico), $47 elsewhere.  Orders may be paid by MasterCard or Visa, or
  101270.   prepaid by check in US dollars.  Add $35 bank fee for checks not drawn on
  101271.   a US bank.  Price includes shipping.  Do not include sales tax.
  101272.   Inquire about quantity discounts.
  101273.  
  101274.   You can also order by phone from the publisher, Digital Press /
  101275.   Butterworth-Heinemann, with MasterCard, Visa, or American Express:
  101276.  
  101277.     +1 800 366-2665 (Woburn, Massachusetts office for USA & Canada)
  101278.     +1 800 665-1148 (Logan Bros, Winnepeg, Manitoba office for Canada)
  101279.     +44 993 58521   (Rushden, England office for Europe)
  101280.     +61 2 372-5511  (Chatswood, NSW office for Australia & New Zealand)
  101281.     +65 220-3684    (Singapore office for Asia)
  101282.  
  101283.   A German-language edition is also available:
  101284.  
  101285.     Frank da Cruz and Christine M. Gianone, "C-Kermit - Einfuehrung und
  101286.     Referenz", Verlag Heinz Heise, Hannover, Germany (1994).
  101287.     ISBN 3-88229-023-4.  Deutsch von Gisbert W. Selke.  Price: DM 90,00.  
  101288.     Verlag Heinz Heise GmbH & Co. KG, Helstorfer Strasse 7, D-30625 Hannover.
  101289.     Tel. +49 (05 11) 53 52-0, Fax. +49 (05 11) 53 53-1 29.
  101290.  
  101291. - Frank
  101292.  
  101293. From news@columbia.edu Mon Mar 13 14:18:46 1995
  101294. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20508
  101295.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 13 Mar 1995 09:18:57 -0500
  101296. Received: by apakabar.cc.columbia.edu id AA13025
  101297.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 13 Mar 1995 09:18:56 -0500
  101298. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  101299. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  101300. Newsgroups: comp.protocols.kermit.misc
  101301. Subject: Re: PC to VT300 Keyboard Mapping
  101302. Date: 13 Mar 1995 14:18:46 GMT
  101303. Organization: Columbia University
  101304. Lines: 23
  101305. Message-Id: <3k1k86$cmq@apakabar.cc.columbia.edu>
  101306. References: <3jmvjv$8e$1@mhadf.production.compuserve.com>
  101307. Nntp-Posting-Host: watsun.cc.columbia.edu
  101308. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  101309.  
  101310. In article <3jmvjv$8e$1@mhadf.production.compuserve.com>,
  101311. Dale Hoehne  <70004.3131@CompuServe.COM> wrote:
  101312. >Currently using IBM pc as terminal connections to a VAX8530 VMS system
  101313. >version 3.11 using vt300.ini .. Need to know how the f12 thru f20
  101314. >keys remap on the standard pc keyboard.. We use Wordperfect for VMS
  101315. >that require these keys
  101316. >
  101317. (a) Please upgrade to the current version of MS-DOS Kermit, 3.14.
  101318.  
  101319. (b) Read the VT300.DOC and VT300.INI files, which explain the mappings.
  101320.  
  101321. (c) Since you will undoubtedly want to change things around (no two
  101322.     people like the same key mappings), read the manual, "Using MS-DOS
  101323.     Kermit", about key mapping.
  101324.  
  101325. (d) VMS WordPerfect comes with MS-DOS Kermit support files which do their
  101326.     own mappings.  If you set up VMS WordPerfect according to instructions,
  101327.     it will take care of everything itself.  Also read the section on
  101328.     WordPerfect in the KERMIT.BWR file that comes on the v3.14 MS-DOS Kermit
  101329.     diskette.  There are various version dependencies that you should read
  101330.     about.
  101331.  
  101332. - Frank
  101333.  
  101334. From news@columbia.edu Mon Mar 13 14:27:01 1995
  101335. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20933
  101336.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 13 Mar 1995 09:27:13 -0500
  101337. Received: by apakabar.cc.columbia.edu id AA13704
  101338.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 13 Mar 1995 09:27:10 -0500
  101339. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  101340. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  101341. Newsgroups: comp.protocols.kermit.misc
  101342. Subject: Re: MS-Kermit v3.14 missing duplicating characters
  101343. Date: 13 Mar 1995 14:27:01 GMT
  101344. Organization: Columbia University
  101345. Lines: 46
  101346. Message-Id: <3k1knl$dbh@apakabar.cc.columbia.edu>
  101347. References: <3jqf6p$j2g@xmission.xmission.com>
  101348. Nntp-Posting-Host: watsun.cc.columbia.edu
  101349. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  101350.  
  101351. In article <3jqf6p$j2g@xmission.xmission.com>,
  101352. Fozziliny Moo <fozz@xmission.xmission.com> wrote:
  101353. >I'm running MS-Kermit v3.14 on a new PC that I just bought. It is a 
  101354. >486DX2-80. The serial UART is a 16550. I have a 28.8 (v.fc) modem 
  101355. >connected to COM2 via DB25 connector. 
  101356. >Initially I ran Kermit "straight out of the box" and said SET PORT COM2
  101357. >and SET SPEED 115200. When I do a connect and try to key in AT commands,
  101358. >this happens:
  101359. >I type AT
  101360. >I get ATT or just A
  101361. >Typing in ATDT5551234 comes out like
  101362. >ATDDT5551134
  101363. >Here are the strategies I've tried to resolve this problem:
  101364. >Bumped the baud rate of the serial port to 57600, 28800, 14400, 9600, and 
  101365. >2400. No effect. Made use I was using hardware handshaking with the modem.
  101366. >No effect.
  101367. >Now- I use Trumpet Winsock in Windows and I don't seem to have any problems
  101368. >communicating with the modem at 115200 with Trumpets internal serial driver.
  101369. >I can also use the Windows Terminal program (ugh) and communicate flawlessly.
  101370. >But as a loyal user of MS-Kermit, I'd rather not be tied to these apps. 
  101371. >
  101372. Thanks.
  101373.  
  101374. The real question is:  Does the crazy echoing happen only during dialing,
  101375. or does it also happen after the connection is made?  If it happens only
  101376. during dialing, then you've got a buggy modem.  Probably you don't see the
  101377. dialing when using Trumpet Winsock, because it's all hidden behind something.
  101378.  
  101379. On the other hand, if you are also getting bad data while online, that
  101380. indicates a buggy UART and/or system bus or other system component, or
  101381. perhaps interrupt conflicts or TSR interference.  In this case, the reason
  101382. that Winsock appears to work and Kermit doesn't is that Winsock only
  101383. delivers error-corrected (by TCP and IP) data, whereas Kermit -- as a serial
  101384. communications program -- delivers each byte it receives.
  101385.  
  101386. Of course, you can also run Kermit over a SLIP driver and invoke its own
  101387. built-in TCP/IP stack.  This would eliminate the appearance of errors, but
  101388. it would not eliminate the errors themselves.  However, performance would
  101389. be quite poor, not only because of the TCP and IP overhead, but also because
  101390. of the retransmissions that would be required to overcome the errors.
  101391.  
  101392. Note that the modem's error correction probably has no relevence here, since
  101393. the errors are evidently originating from outside the connection between the
  101394. two modems.
  101395.  
  101396. - Frank
  101397.  
  101398. From news@columbia.edu Mon Mar 13 14:43:25 1995
  101399. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22108
  101400.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 13 Mar 1995 09:43:32 -0500
  101401. Received: by apakabar.cc.columbia.edu id AA15087
  101402.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 13 Mar 1995 09:43:28 -0500
  101403. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  101404. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  101405. Newsgroups: comp.protocols.kermit.misc
  101406. Subject: Re: Linux ?
  101407. Date: 13 Mar 1995 14:43:25 GMT
  101408. Organization: Columbia University
  101409. Lines: 21
  101410. Message-Id: <3k1lmd$end@apakabar.cc.columbia.edu>
  101411. References: <tstevensD5ADys.KpK@netcom.com>
  101412. Nntp-Posting-Host: watsun.cc.columbia.edu
  101413. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  101414.  
  101415. In article <tstevensD5ADys.KpK@netcom.com>,
  101416. Edward Stevens <tstevens@netcom.com> wrote:
  101417. >    Where can I find the latest kermit for Linux ? Thanks.
  101418. >
  101419. anonymous ftp to kermit.columbia edu, directory kermit/archives,
  101420. binary mode, file cku190.tar.Z (or .gz for gunzip).  Uncompress,
  101421. untar, read the instructions at the top of the makefile, and then:
  101422.  
  101423.   make linux
  101424.  
  101425. which should produce an executable called "wermit".  Try it out
  101426. and if it's OK, install it as "kermit" in the desired location,
  101427. such as /usr/local/bin.  Read the ckuins.doc file for additional
  101428. installation instructions.
  101429.  
  101430. Please be sure to also order the manual, since it shows you how
  101431. to use the software and how to get the most out of it, and sales of
  101432. the manual are the primary source of income that pays for our work.
  101433. Type "help" at the C-Kermit> prompt for further info.
  101434.  
  101435. - Frank
  101436.  
  101437. From news@columbia.edu Mon Mar 13 14:49:26 1995
  101438. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22593
  101439.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 13 Mar 1995 09:49:34 -0500
  101440. Received: by apakabar.cc.columbia.edu id AA15619
  101441.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 13 Mar 1995 09:49:31 -0500
  101442. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  101443. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  101444. Newsgroups: comp.protocols.kermit.misc
  101445. Subject: Re: kermit 3.14/hebrew, & tin & pine
  101446. Date: 13 Mar 1995 14:49:26 GMT
  101447. Organization: Columbia University
  101448. Lines: 33
  101449. Message-Id: <3k1m1m$f7t@apakabar.cc.columbia.edu>
  101450. References: <3jv4k4$ion@nyx10.cs.du.edu>
  101451. Nntp-Posting-Host: watsun.cc.columbia.edu
  101452. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  101453.  
  101454. In article <3jv4k4$ion@nyx10.cs.du.edu>,
  101455. Gideon Weisz <gweisz@nyx10.cs.du.edu> wrote:
  101456. >i am running 3.14 in my pc, and routinely connecting with my internet
  101457. >provider with a vt220 terminal, after having run "hebrew" in my
  101458. >kermit.  telnetting etc to hebrew places works fine,
  101459. >but when i am just using the tin newsreader at my access provider,
  101460. >i sometimes get beeps or lines staying highlighted while others
  101461. >are highlighted, when i am choosing an article, and recently
  101462. >after using lynx i had some funny characters appearing occasionally,
  101463. >when i was composing a letter in pine.
  101464. >
  101465. It's hard to say what is wrong without more complete evidence, but
  101466. my first four guesses would be:
  101467.  
  101468.  1. Lack of adequate flow control.  You should be using RTS/CTS
  101469.     flow control between MS-DOS Kermit and your modem, and hopefully
  101470.     (but no guarantees!) there is also adequate flow control at the
  101471.     other end of your modem connection.
  101472.  
  101473.  2. Disagreement between the host application (such as Lynx) and
  101474.     Kermit about your terminal type, such that the application is
  101475.     sending inappropriate characters or escape sequences.
  101476.  
  101477.  3. A faulty "termcap" for your terminal type, assuming your host
  101478.     is UNIX based.
  101479.  
  101480.  4. Noise.
  101481.  
  101482. So make sure your host terminal type agrees with Kermit's, and make
  101483. sure you have the flow control working right.  If the problem does
  101484. not go away, contact kermit@columbia.edu for more in-depth support.
  101485.  
  101486. - Frank
  101487.  
  101488. From news@columbia.edu Mon Mar 13 15:01:52 1995
  101489. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23270
  101490.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 13 Mar 1995 10:02:04 -0500
  101491. Received: by apakabar.cc.columbia.edu id AA16569
  101492.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 13 Mar 1995 10:01:54 -0500
  101493. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  101494. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  101495. Newsgroups: comp.protocols.kermit.misc
  101496. Subject: Re: Manuals
  101497. Date: 13 Mar 1995 15:01:52 GMT
  101498. Organization: Columbia University
  101499. Lines: 42
  101500. Message-Id: <3k1mp0$g5m@apakabar.cc.columbia.edu>
  101501. References: <3k01ho$lp4@pilot.njin.net>
  101502. Nntp-Posting-Host: watsun.cc.columbia.edu
  101503. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  101504.  
  101505. In article <3k01ho$lp4@pilot.njin.net>,
  101506. James M. McClain <mcclain@pilot.njin.net> wrote:
  101507. >I must confess being bemused at the constant drone of Frank and Joe
  101508. >advising that we look first in the manual and docs -- looking there
  101509. >would normally be routine, but in this case the manual and docs are
  101510. >really rather daunting.  They are usually more thatn obscure and
  101511. >sometimes just plain wrong.  This is why we all participate here; so
  101512. >we can get the denseness explained.  I for one, when I ask a question
  101513. >here, it is after several hours of studying the manual and docs.
  101514. >
  101515. >My recommendation to others is that they NOT get the manuals (which
  101516. >come to some $85 if data for both ends are needed) they just don't
  101517. >help much.
  101518. >
  101519. While you're at it, why don't you recommend that everybody who uses
  101520. shareware not pay for it?  And that everybody who wants to use
  101521. commercial software steal it from the computer store?
  101522.  
  101523. Usually both ends are not needed -- usually one manual suffices.
  101524. Price: $36.95.  Proceeds from manual sales are what pay for the
  101525. software you are using, just as registration fees pay for the work
  101526. of shareware authors, and retail prices pay for the work of
  101527. commercial software producers.
  101528.  
  101529. We appreciate that you study the manuals and docs before posting a
  101530. question, but that is not true for everybody.  We try to "pre-answer"
  101531. most questions in the manuals and online help and "beware" files.
  101532. We are perfectly willing to help with other questions that are not
  101533. answered in those places -- and more often than not, also with ones
  101534. that are -- as you will see by following this list for any length of
  101535. time.  And most questions that are posted to this list, and that are
  101536. sent to our email tech support address, and that are called in on the
  101537. phone, and that are faxed to us... *are* answered in the published
  101538. documentation.
  101539.  
  101540. It is not so much to ask that those who use our software help contribute
  101541. to its continued existence and growth by abiding by our wishes and
  101542. purchasing the documentation.  For questions not covered there, we are
  101543. happy to provide tech support.  And in so doing, we learn which areas
  101544. need better coverage in future editions of the documentation.
  101545.  
  101546. - Frank
  101547.  
  101548. From news@columbia.edu Mon Mar 13 15:35:49 1995
  101549. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25435
  101550.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 13 Mar 1995 10:36:05 -0500
  101551. Received: by apakabar.cc.columbia.edu id AA19148
  101552.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 13 Mar 1995 10:36:00 -0500
  101553. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  101554. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  101555. Newsgroups: comp.protocols.kermit.misc
  101556. Subject: Re: PC to PC with Kermit?
  101557. Date: 13 Mar 1995 15:35:49 GMT
  101558. Organization: Columbia University
  101559. Lines: 12
  101560. Message-Id: <3k1ool$im7@apakabar.cc.columbia.edu>
  101561. References: <1995Mar7.175513@castle.cudenver.edu>
  101562. Nntp-Posting-Host: watsun.cc.columbia.edu
  101563. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  101564.  
  101565. In article <1995Mar7.175513@castle.cudenver.edu>,
  101566.  <jsmithgoldsm@castle.cudenver.edu> wrote:
  101567. >I currently use Kermit (3.13) to access my university computer from home. I
  101568. >would like to know if its possible to access another pc (using Kermit) via
  101569. >modem to exchange files. How would it work? Thanks.
  101570. >
  101571. Covered in Chapters 10 and 11 of "Using MS-DOS Kermit".  Basically, put
  101572. your home modem in answer mode (usually via ATS0=1), put Kermit in server
  101573. mode or (more dangerously) in CTTY COMx mode.  For further details, please
  101574. read the manual -- it's all there.
  101575.  
  101576. - Frank
  101577.  
  101578. From news@columbia.edu Mon Mar 13 15:04:53 1995
  101579. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26106
  101580.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 13 Mar 1995 10:45:51 -0500
  101581. Received: by apakabar.cc.columbia.edu id AA19888
  101582.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 13 Mar 1995 10:45:50 -0500
  101583. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!news.mathworks.com!uhog.mit.edu!news.mtholyoke.edu!news.umass.edu!risky.ecs.umass.edu!alex.ecs.umass.edu!langlois
  101584. From: langlois@alex.ecs.umass.edu (Philip M. Langlois)
  101585. Newsgroups: comp.protocols.kermit.misc
  101586. Subject: Re: Linux ?
  101587. Date: 13 Mar 1995 15:04:53 GMT
  101588. Organization: University of Massachusetts, Amherst
  101589. Lines: 20
  101590. Message-Id: <3k1mul$ob6@risky.ecs.umass.edu>
  101591. References: <tstevensD5ADys.KpK@netcom.com>
  101592. Nntp-Posting-Host: alex.ecs.umass.edu
  101593. X-Newsreader: TIN [version 1.2 PL2]
  101594. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  101595.  
  101596. Edward Stevens (tstevens@netcom.com) wrote:
  101597. :     Where can I find the latest kermit for Linux ? Thanks.
  101598.  
  101599. : Ted Stevens
  101600.  
  101601. : -- 
  101602. : >>>>>                  ZumaSoft (TEL) V/F 310/457-6263          <<<<<
  101603. : <<<<<     OO Analysis & Design, Enterprise Modeling, Training   >>>>>
  101604. : >>>>>                        tstevens@netcom.com                <<<<<
  101605. : <<<<<     'Thank you for your wine, California' - Mick Jagger   >>>>>
  101606.  
  101607. I downloaded version 190 (Oct. 94) from kermit.columbia.edu. One of the subdirectories
  101608. has 'cku190.tar.gz'. The makefile has a couple of linux options..make linux, make linuxftp,
  101609. etc. I had to edit the makefile (as it mentions) to make it smaller, and I also had to
  101610. change 'lncurses' to 'lcurses' (also mentioned).
  101611.  
  101612.    If you want a binary, I think sunsite.unc.edu and its mirrors has version 189 in 
  101613. /pub/Linux/apps/comm or someting like that.
  101614.  
  101615. Phil Langlois
  101616.  
  101617. From news@columbia.edu Mon Mar 13 18:18:44 1995
  101618. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13257
  101619.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 13 Mar 1995 14:27:53 -0500
  101620. Received: by apakabar.cc.columbia.edu id AA07463
  101621.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 13 Mar 1995 14:27:50 -0500
  101622. Path: news.columbia.edu!panix!news.mathworks.com!news.duke.edu!godot.cc.duq.edu!newsfeed.pitt.edu!dsinc!ub!csn!csnnews!gweisz
  101623. From: gweisz@csn.net (Gideon Weisz)
  101624. Newsgroups: comp.protocols.kermit.misc
  101625. Subject: Re: kermit 3.14/hebrew, & tin & pine
  101626. Date: 13 Mar 1995 18:18:44 GMT
  101627. Organization: Colorado Supernet
  101628. Lines: 35
  101629. Message-Id: <3k22a4$sch@news-2.csn.net>
  101630. References: <3jv4k4$ion@nyx10.cs.du.edu> <3k1m1m$f7t@apakabar.cc.columbia.edu>
  101631. Nntp-Posting-Host: 199.117.27.22
  101632. X-Newsreader: TIN [version 1.2 PL2]
  101633. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  101634.  
  101635. Frank da Cruz (fdc@watsun.cc.columbia.edu) wrote:
  101636. : In article <3jv4k4$ion@nyx10.cs.du.edu>,
  101637. : Gideon Weisz <gweisz@nyx10.cs.du.edu> wrote:
  101638. : >i am running 3.14 in my pc, and routinely connecting with my internet
  101639. : >provider with a vt220 terminal, after having run "hebrew" in my
  101640. : >kermit.  telnetting etc to hebrew places works fine,
  101641.   LINES DELETED HERE
  101642. : >
  101643. : It's hard to say what is wrong without more complete evidence, but
  101644. : my first four guesses would be:
  101645.  
  101646. :  1. Lack of adequate flow control.  You should be using RTS/CTS
  101647. :     flow control between MS-DOS Kermit and your modem, and hopefully
  101648. :     (but no guarantees!) there is also adequate flow control at the
  101649. :     other end of your modem connection.
  101650.  
  101651. :  2. Disagreement between the host application (such as Lynx) and
  101652. :     Kermit about your terminal type, such that the application is
  101653. :     sending inappropriate characters or escape sequences.
  101654.  
  101655. :  3. A faulty "termcap" for your terminal type, assuming your host
  101656. :     is UNIX based.
  101657.  
  101658. :  4. Noise.
  101659.  
  101660. : So make sure your host terminal type agrees with Kermit's, and make
  101661. : sure you have the flow control working right.  If the problem does
  101662. : not go away, contact kermit@columbia.edu for more in-depth support.
  101663.  
  101664. : - Frank
  101665.   Thanks for the suggestions but none of the four guesses happens
  101666. to be relevant in this case. and now, a worse problem has occurred,
  101667. which i will post (see 3.14/www/hebrew bug? fix?)
  101668. meanwhile, i will see if i can get help as you suggested, from
  101669. kermit@columbia.edu     Thanks, gideon
  101670.  
  101671. From news@columbia.edu Mon Mar 13 18:20:15 1995
  101672. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13310
  101673.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 13 Mar 1995 14:28:09 -0500
  101674. Received: by apakabar.cc.columbia.edu id AA07493
  101675.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 13 Mar 1995 14:28:08 -0500
  101676. Path: news.columbia.edu!panix!news.mathworks.com!zombie.ncsc.mil!news.duke.edu!godot.cc.duq.edu!newsfeed.pitt.edu!dsinc!ub!csn!csnnews!gweisz
  101677. From: gweisz@csn.net (Gideon Weisz)
  101678. Newsgroups: comp.protocols.kermit.misc
  101679. Subject: 3.14/www/hebrew  bug? fix?
  101680. Date: 13 Mar 1995 18:20:15 GMT
  101681. Organization: Colorado Supernet
  101682. Lines: 37
  101683. Message-Id: <3k22cv$sch@news-2.csn.net>
  101684. Nntp-Posting-Host: 199.117.27.22
  101685. X-Newsreader: TIN [version 1.2 PL2]
  101686. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  101687.  
  101688.  
  101689. using mskermit 3.14 and its hebrew option, i ran into trouble twice
  101690. while doing www on lynx (though all was fine for a long time, first).
  101691. i got funny characters on the screen, suddenly, and they stayed
  101692. even after the modem hung up. they would go away when i got out of the
  101693. connect mode, but come back whenever i would connect (until i went all
  101694. the way to dos, and then kermit started normally again).
  101695. in the connect screen, i could produce this set of characters by
  101696. striking the usual keyboard keys, so the ascii numbers associated
  101697. with lowercase letters (97 and on) were producing the weird screen
  101698. characters. i could produce the very same characters by using the
  101699. usual ibm keyboard trick (ascii 97, which is normally a, can be produced
  101700. by pressing alt, and then hitting 9 and 7 on the numeric keypad before
  101701. releasing alt, etc).
  101702. pressing "a" produced a vertical shaded rectangle, with shading lines
  101703.              skewed from upper left to lower right
  101704.          "b" produced a rightward arrow
  101705.           c       a vertical two headed arrow (up/down) on an underscore
  101706.           d       left arrow
  101707.           e       down arrow
  101708.           f       degree symbol (little circle, high)
  101709.           g       plus or minus sign
  101710.           etcetera
  101711.  i know that some of these are normally control characters
  101712.  meanwhile, uppercase letters were fine
  101713.  the range from ascii 128 on (to 155) seemed fine, i noticed
  101714.  and so was the range from 224 on(to 250), i also happened to notice
  101715.  (these two ranges happen to be particularly relevant to hebrew)
  101716. THE MAIN TWO QUESTIONS:
  101717. 1) what's the cause  and, more importantly...
  101718. 2) is there any way within a kermit session
  101719. to get a fresh start?           any advice would be appreciated
  101720.                                 thanks,  gideon
  101721.  
  101722.  
  101723.  
  101724.  
  101725.  
  101726. From news@columbia.edu Mon Mar 13 19:56:51 1995
  101727. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15459
  101728.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 13 Mar 1995 14:56:58 -0500
  101729. Received: by apakabar.cc.columbia.edu id AA09600
  101730.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 13 Mar 1995 14:56:56 -0500
  101731. Path: news.columbia.edu!watsun.cc.columbia.edu!pepmnt
  101732. From: pepmnt@watsun.cc.columbia.edu (John Chandler)
  101733. Newsgroups: comp.protocols.kermit.misc
  101734. Subject: Re: KERMIT-370 version 4.2.5 for IBM
  101735. Date: 13 Mar 1995 19:56:51 GMT
  101736. Organization: Columbia University
  101737. Lines: 12
  101738. Message-Id: <3k2823$9br@apakabar.cc.columbia.edu>
  101739. References: <3jfqgf$s4t@nrcnet0.nrc.ca>
  101740. Nntp-Posting-Host: watsun.cc.columbia.edu
  101741. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  101742.  
  101743. In article <3jfqgf$s4t@nrcnet0.nrc.ca>,
  101744. Bradley Pick  <BPICK@CISTI.LAN.NRC.CA> wrote:
  101745. >Can Kermit-370 version 4.2.5 for IBM mainframes receive mail from
  101746. >MS-DOS KERMIT?
  101747.  
  101748. I assume you mean the MAIL subcommand of MSK, which works like SEND,
  101749. except that it directs the file to be sent off as e-mail upon reception.
  101750. The answer is yes.  The Kermit distribution includes a file called
  101751. IKCAUX CMD, which includes sample implementations of some Kermit-CMS
  101752. utilities, including the KERMAIL EXEC that performs the necessary
  101753. e-mail functions.  Tailor it to your needs and install.
  101754.             John Chandler
  101755.  
  101756. From news@columbia.edu Mon Mar 13 17:37:08 1995
  101757. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20489
  101758.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 13 Mar 1995 15:50:07 -0500
  101759. Received: by apakabar.cc.columbia.edu id AA14043
  101760.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 13 Mar 1995 15:50:06 -0500
  101761. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!math.ohio-state.edu!jussieu.fr!univ-lyon1.fr!swidir.switch.ch!scsing.switch.ch!news.belwue.de!news.uni-freiburg.de!MPI1.IMMUNBIO.MPG.DE!GARTMANN
  101762. From: gartmann@immunbio.mpg.de (Christoph Gartmann)
  101763. Newsgroups: comp.protocols.kermit.misc
  101764. Subject: MS-Kermit, MS-Windows & Norton Desktop
  101765. Date: 13 Mar 1995 17:37:08 GMT
  101766. Organization: Max-Planck-Institut fuer Immunbiologie
  101767. Lines: 24
  101768. Message-Id: <3k1vs4$nrl@n.ruf.uni-freiburg.de>
  101769. Reply-To: gartmann@immunbio.mpg.de
  101770. Nntp-Posting-Host: mpi1.immunbio.mpg.de
  101771. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  101772.  
  101773. Hello,
  101774.  
  101775. on a PC with three serial interfaces (COM1 for the mouse, COM2 for a line to
  101776. a host, COM4 for a modem) I experience a problem when running MS-Kermit under
  101777. Windows and the Norton desktop: when connecting to the modem I don't see
  101778. any responses from the modem on the screen. I can see the LEDs flickering
  101779. when I enter an AT command and I see the LEDs flickering when the modem is
  101780. expected to respond. But I don't see any data appear on the screen. Everything
  101781. is working fine with the COM2 port. When I start Kermit under DOS the
  101782. connection to COM4 is all right. But when I start it under Windows or under
  101783. DOS but Windows is still active I get the above problem. Using COM4 from
  101784. within the Windows-standard-Terminal program is all right, too.
  101785.  
  101786. Any ideas?
  101787.  
  101788. Regards,
  101789.    Christoph Gartmann
  101790.  
  101791. +----------------------------------------------------------------------------+
  101792. | Max-Planck-Institut fuer      Phone   : +49-761-5108-465   Fax: -221       |
  101793. | Immunbiologie                 PSI     : PSI%(0262)45050160374::GARTMANN    |
  101794. | Postfach 1169                 Internet: gartmann@immunbio.mpg.de           |
  101795. | D-79011  Freiburg, FRG                                                     |
  101796. +----------- Do you know MENUE, the user environment for OpenVMS? -----------+
  101797.  
  101798. From news@columbia.edu Mon Mar 13 19:40:24 1995
  101799. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23775
  101800.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 14 Mar 1995 03:37:29 -0500
  101801. Received: by apakabar.cc.columbia.edu id AA23167
  101802.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 14 Mar 1995 03:37:27 -0500
  101803. Path: news.columbia.edu!sol.ctr.columbia.edu!spool.mu.edu!howland.reston.ans.net!news.cac.psu.edu!news.tc.cornell.edu!newsserver.sdsc.edu!acsc.com!news.trw.com!venice!venice!not-for-mail
  101804. From: rorr@venice.sedd.trw.com (Ron Orr)
  101805. Newsgroups: comp.protocols.kermit.misc
  101806. Subject: Binary file expansion
  101807. Date: 13 Mar 1995 11:40:24 -0800
  101808. Organization: TRW Data Technologies Division, Carson CA
  101809. Lines: 15
  101810. Message-Id: <3k2738$p9s@venice.sedd.trw.com>
  101811. Nntp-Posting-Host: venice.sedd.trw.com
  101812. X-Newsreader: TIN [version 1.2 PL2]
  101813. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  101814.  
  101815. Here's an interesting problem:
  101816.  
  101817. When I download a binary file from a given bulletin board with C-Kermit(190)
  101818. OS/2 flavor the file size expands from some 16k to 24k. Needless the file,
  101819. a *.zip, is trashed. However I can download the same file on the same computer
  101820. using MS-Kermit 3.13, no problem. In both cases the transfer screen listed
  101821. the xfer as going on in binary mode.
  101822.  
  101823. I looked for obvious differences in the comm and protocol settings but found
  101824. none. The C-Kermit book didn't help much either?
  101825.  
  101826. Any suggestions?
  101827. -- 
  101828. Ronald N. Orr, TRW SEDD, PO Box 3099, Manhattan Beach CA 90266-1099
  101829. voice: (310)764-9138 fax:(310)764-3946, rorr@venice.sedd.trw.com
  101830.  
  101831. From news@columbia.edu Mon Mar 13 20:20:07 1995
  101832. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24984
  101833.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 14 Mar 1995 04:10:18 -0500
  101834. Received: by apakabar.cc.columbia.edu id AA25079
  101835.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 14 Mar 1995 04:10:16 -0500
  101836. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!newsjunkie.ans.net!fonorola!torn!news.ccs.queensu.ca!news.ccs.queensu.ca!not-for-mail
  101837. From: mike@knot.QueensU.CA (Mike Smith)
  101838. Newsgroups: comp.protocols.kermit.misc
  101839. Subject: Re: Manuals
  101840. Date: 13 Mar 1995 15:20:07 -0500
  101841. Organization: Queen's University, Kingston
  101842. Lines: 55
  101843. Distribution: world
  101844. Message-Id: <3k29dn$s9v@ccs-sparc2.queensu.ca>
  101845. References: <3k01ho$lp4@pilot.njin.net>
  101846. Nntp-Posting-Host: ccs-sparc2.ccs
  101847. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  101848.  
  101849.  
  101850. In article <3k01ho$lp4@pilot.njin.net>, mcclain@pilot.njin.net
  101851.  (James M. McClain) writes:
  101852. |> 
  101853. |> 
  101854. |> I must confess being bemused at the constant drone of Frank and Joe
  101855. |> advising that we look first in the manual and docs -- looking there
  101856. |> would normally be routine, but in this case the manual and docs are
  101857. |> really rather daunting.  They are usually more thatn obscure and
  101858. |> sometimes just plain wrong.  This is why we all participate here; so
  101859. |> we can get the denseness explained.  I for one, when I ask a question
  101860. |> here, it is after several hours of studying the manual and docs.
  101861. |> 
  101862. |> My recommendation to others is that they NOT get the manuals (which
  101863. |> come to some $85 if data for both ends are needed) they just don't
  101864. |> help much.
  101865. |> 
  101866. |> Mac
  101867.  
  101868. My experience with the Kermit books is completely opposite to Mr. McClain's.
  101869. The original book, "Kermit: A File Transfer Protocol" is worth the price
  101870. for its incredibly clear explanations of serial communications.  It was
  101871. published in 1987 so naturally it is no longer the definitive reference
  101872. for Kermit.
  101873.  
  101874. "Using MS-DOS Kermit" can be daunting but the only sections I've found
  101875. obscure are the Appendices.  However, these are mostly tables of escape
  101876. sequences for the various terminal emulations.  This is not information
  101877. that the average user needs to know.  However, I consider it a selling
  101878. point of the book that the information is there for the technician who
  101879. would otherwise have great difficulty finding these tables.
  101880.  
  101881. I also have "Using C-Kermit" but have not read that much of it.  I have
  101882. no doubt that it is well-written, I simply haven't needed to refer to it.
  101883. So based on my experience I conclude that "both ends" are not needed
  101884. for the average user.
  101885.  
  101886. Finally, the comment that the manual is "sometimes just plain wrong"
  101887. is undoubtedly true.  However, I have found *very* few outright mistakes
  101888. from my reading.  Most of the inaccuracies are because the books are
  101889. static whereas, the programs, fortunately for us, continue to evolve.
  101890. The recent features are covered well in the supplemental ".upd" and
  101891. ".bwr" files.
  101892.  
  101893. My recommendation is that anyone responsible for supporting Kermit
  101894. should buy all three books.  Anyone who is impressed by fine technical
  101895. writing and wants to understand serial communications should buy the
  101896. original.  And anyone who wants to support the Kermit effort or enjoys
  101897. exploiting the full potential of the software they use should buy either
  101898. the MS-DOS or the C-Kermit manuals depending on their platform.
  101899. -- 
  101900.  
  101901.  Mike Smith                                  mike@ccs.queensu.ca
  101902.  Queen's University                          Michael.D.Smith@QueensU.CA
  101903.  Computing and Communications Services       (613) 545-2024
  101904.  
  101905. From news@columbia.edu Tue Mar 14 09:33:45 1995
  101906. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26926
  101907.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 14 Mar 1995 05:11:57 -0500
  101908. Received: by apakabar.cc.columbia.edu id AA28472
  101909.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 14 Mar 1995 05:11:56 -0500
  101910. Path: news.columbia.edu!panix!news.mathworks.com!uunet!dziuxsolim.rutgers.edu!pilot.njin.net!not-for-mail
  101911. From: mcclain@pilot.njin.net (James M. McClain)
  101912. Newsgroups: comp.protocols.kermit.misc
  101913. Subject: More on Manuals
  101914. Date: 14 Mar 1995 04:33:45 -0500
  101915. Organization: Rutgers University
  101916. Lines: 23
  101917. Distribution: world
  101918. Message-Id: <3k3ntp$5qd@pilot.njin.net>
  101919. Nntp-Posting-Host: pilot.njin.net
  101920. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  101921.  
  101922.  
  101923.  
  101924. Frank gives us more bemusement:
  101925.  
  101926. Kermit docs make it quite clear that Kermit is not shareware or that a
  101927. user is somehow obligated to BUY the Manuals (all three of which are
  101928. needed for both ends for most sysops at $85).  Frank seems to through
  101929. in this spurious argument just to confuse - just as the docs confuse.
  101930. It would seem that the real reason to be up tight about the purchase
  101931. of the Mans is that Frank's salary come from the proceeds, not because
  101932. they are helpful.
  101933.  
  101934. Frank, I did NOT say that that docs don't contain the answers to most
  101935. of the questions asked here.  What I tried to sy was that they are
  101936. poorly written and use dense, obfuscatory gibberish so that we need
  101937. this newsgroup to find out what the hell they say.  If it matters,
  101938. please know that Chuck's zmodem docs are infact worse - totally
  101939. incomprehensable.
  101940.  
  101941. What I suggest is that rather than spend time here trying to defend
  101942. the kermit docs, why not get someone who can write to rewrite them.
  101943.  
  101944. Mac
  101945.  
  101946. From news@columbia.edu Mon Mar 13 12:06:42 1995
  101947. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23743
  101948.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 14 Mar 1995 07:04:39 -0500
  101949. Received: by apakabar.cc.columbia.edu id AA15286
  101950.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 14 Mar 1995 07:04:38 -0500
  101951. Path: news.columbia.edu!sol.ctr.columbia.edu!news.msfc.nasa.gov!elroy.jpl.nasa.gov!lll-winken.llnl.gov!uwm.edu!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  101952. From: jrd@cc.usu.edu (Joe Doupnik)
  101953. Newsgroups: comp.protocols.kermit.misc
  101954. Subject: Re: Manuals
  101955. Message-Id: <1995Mar13.180643.44641@cc.usu.edu>
  101956. Date: 13 Mar 95 18:06:42 MDT
  101957. References: <3k01ho$lp4@pilot.njin.net>
  101958. Distribution: world
  101959. Organization: Utah State University
  101960. Lines: 31
  101961. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  101962.  
  101963. In article <3k01ho$lp4@pilot.njin.net>, mcclain@pilot.njin.net (James M. McClain) writes:
  101964. > I must confess being bemused at the constant drone of Frank and Joe
  101965.     Gee, and all along I thought drones were *supposed* to be
  101966. constant. Bagpipes and such. Learn something new every day, thanks.
  101967.  
  101968. > advising that we look first in the manual and docs -- looking there
  101969. > would normally be routine, but in this case the manual and docs are
  101970. > really rather daunting.  They are usually more thatn obscure and
  101971. > sometimes just plain wrong.  This is why we all participate here; so
  101972. > we can get the denseness explained.  I for one, when I ask a question
  101973. > here, it is after several hours of studying the manual and docs.
  101974.  
  101975.     I can't comment incisively (sp?) without knowing the item(s) to 
  101976. which you refer. The books are not what I and many others would describe
  101977. as daunting or more than obscure etc. They do have a few errors, as all 
  101978. docs do, and times change to obsolete some particular features. Those
  101979. that do vanish are covered in the .UPD and .BWR files issued with each
  101980. release.
  101981.  
  101982. > My recommendation to others is that they NOT get the manuals (which
  101983. > come to some $85 if data for both ends are needed) they just don't
  101984. > help much.
  101985.     You are welcome to advise, of course, and my advice would be
  101986. the opposite because the users are better off knowing than not knowing.
  101987.     Also, it saves much wear and tear on the readership (including
  101988. me) to not have to restate the manuals <more often than necessary>. You
  101989. can save me playing back the rtfm recording by giving us a tip that you
  101990. did dig but came back with no treasure.
  101991.     Thanks and no offence taken,
  101992.     Joe D.
  101993. > Mac
  101994.  
  101995. From news@columbia.edu Tue Mar 14 12:53:13 1995
  101996. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04273
  101997.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 14 Mar 1995 08:08:22 -0500
  101998. Received: by apakabar.cc.columbia.edu id AA17965
  101999.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 14 Mar 1995 08:08:21 -0500
  102000. Newsgroups: comp.protocols.kermit.misc
  102001. Path: news.columbia.edu!panix!zip.eecs.umich.edu!newsxfer.itd.umich.edu!gatech!swrinde!pipex!uknet!gdt!bsmail!ian
  102002. From: ian@bris.ac.uk (Ian Craddock)
  102003. Subject: Re: Throughput with MSKermit 3.13?
  102004. Message-Id: <D5FL4p.8nw@info.bris.ac.uk>
  102005. Sender: usenet@ncs.bris.ac.uk (Usenet news owner)
  102006. Nntp-Posting-Host: kryten.ccr.bris.ac.uk
  102007. Organization: University of Bristol, England
  102008. X-Newsreader: TIN [version 1.2 PL2]
  102009. References: <3im6is$a2p@hydra.acs.ttu.edu> <3j7vml$9l6@apakabar.cc.columbia.edu> <1995Mar7.174230@castle.cudenver.edu>
  102010. Date: Tue, 14 Mar 1995 12:53:13 GMT
  102011. Lines: 26
  102012. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  102013.  
  102014. > >>I can only get up to about 1500-1600 cps (as
  102015. > >>reported by MSKermit in 'show statistics')
  102016. > >>
  102017. > >>... but a friend of mine claims to be getting twice that (with
  102018. > >>same CPU, connecting to the same Unix machine, the same
  102019. > >>software, and the same modem speed (though a different brand)).
  102020. > >>I've looked at his kermit initialization files and they seem
  102021. > >>the same as mine.  Any ideas?
  102022. > >>
  102023. > > Evidently your friend is transferring files that are not
  102024. > > precompressed, in which case your modem's and/or Kermit's
  102025. > > built-in compression work to increase the effective transfer
  102026. > > rate.
  102027.  
  102028. > Hi, I'm using the same modem, etc and getting about the same results, ie around
  102029. > 12-1500 cps with precompressed files and up to 3000 cps with some uncompressed
  102030. > files. :-) I guess that's the best that can be expected, but if anyone knows a
  102031. > way to do better, let me know too. Thanks.
  102032.  
  102033. And for good measure I'm using the Sportster 14400 and I acheive 1600 cps 
  102034. going up to 2000 cps for compressible files.  This strikes me as a bit
  102035. slow - is the compression algorithm used really this feeble - most compression
  102036. algorithms achieve better than x2 compression on my TeX files. 
  102037. Ian.
  102038. ian.craddock@bristol.ac.uk
  102039.  
  102040.  
  102041. From news@columbia.edu Tue Mar 14 13:54:03 1995
  102042. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06269
  102043.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 14 Mar 1995 08:54:10 -0500
  102044. Received: by apakabar.cc.columbia.edu id AA21002
  102045.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 14 Mar 1995 08:54:07 -0500
  102046. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  102047. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  102048. Newsgroups: comp.protocols.kermit.misc
  102049. Subject: Re: Binary file expansion
  102050. Date: 14 Mar 1995 13:54:03 GMT
  102051. Organization: Columbia University
  102052. Lines: 20
  102053. Message-Id: <3k475r$kg8@apakabar.cc.columbia.edu>
  102054. References: <3k2738$p9s@venice.sedd.trw.com>
  102055. Nntp-Posting-Host: watsun.cc.columbia.edu
  102056. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  102057.  
  102058. In article <3k2738$p9s@venice.sedd.trw.com>,
  102059. Ron Orr <rorr@venice.sedd.trw.com> wrote:
  102060. >When I download a binary file from a given bulletin board with C-Kermit(190)
  102061. >OS/2 flavor the file size expands from some 16k to 24k. Needless the file,
  102062. >a *.zip, is trashed. However I can download the same file on the same computer
  102063. >using MS-Kermit 3.13, no problem. In both cases the transfer screen listed
  102064. >the xfer as going on in binary mode.
  102065. >
  102066. >I looked for obvious differences in the comm and protocol settings but found
  102067. >none. The C-Kermit book didn't help much either?
  102068. >
  102069. A certain BBS implementation of Kermit is known to have this problem.
  102070. It does not implement the Kermit protocol correctly, and is confused by the
  102071. new negotiation fields in the new Kermit releases, and goes nuts.  You
  102072. *might* be able to work around the problem by telling one or both Kermit
  102073. programs to use (say) even parity.  Better yet, ask your BBS sysop to use
  102074. MS-DOS Kermit "Lite" to do its Kermit protocol transfers.  That's what it's
  102075. for.
  102076.  
  102077. - Frank
  102078.  
  102079. From news@columbia.edu Mon Mar 13 11:00:19 1995
  102080. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17271
  102081.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 14 Mar 1995 11:59:09 -0500
  102082. Received: by apakabar.cc.columbia.edu id AA05765
  102083.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 14 Mar 1995 11:59:08 -0500
  102084. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!newsjunkie.ans.net!gatech!swrinde!cs.utexas.edu!uwm.edu!nntp.msoe.edu!MSOE.Edu!harrold
  102085. Newsgroups: comp.protocols.kermit.misc
  102086. Subject: cancel <1995Mar13.154210@MSOE.Edu>
  102087. Message-Id: <1995Mar13.170019@MSOE.Edu>
  102088. From: harrold@MSOE.Edu (David Harrold)
  102089. Date: Mon, 13 Mar 95 17:00:19 CST
  102090. References: <1995Mar13.154210@MSOE.Edu>
  102091. Control: cancel <1995Mar13.154210@MSOE.Edu>
  102092. Distribution: world
  102093. Nntp-Posting-Host: 155.92.10.4
  102094. Lines: 166
  102095. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  102096.  
  102097. #! rnews 976
  102098. Newsgroups: ott.forsale
  102099. Path: uwm.edu!news.moneng.mei.com!howland.reston.ans.net!news.sprintlink.net!uunet!in1.uu.net!newsflash.concordia.ca!nstn.ns.ca!hookup!cunews!freenet.carleton.ca!FreeNet.Carleton.CA!ao015
  102100. From: ao015@FreeNet.Carleton.CA (Mark Kerzner)
  102101. Subject: For Sale: Senators vs Penguins tickets 03/19/95
  102102. Message-ID: <D5CuA2.HC4@freenet.carleton.ca>
  102103. Sender: ao015@freenet2.carleton.ca (Mark Kerzner)
  102104. Reply-To: ao015@FreeNet.Carleton.CA (Mark Kerzner)
  102105. Organization: The National Capital FreeNet
  102106. Date: Mon, 13 Mar 1995 01:18:02 GMT
  102107. Lines: 16
  102108.  
  102109.  
  102110. I have 2 tickets for the Senators-Penguins game on Sunday
  102111. March 19/95.
  102112.  
  102113. They are in section 18 
  102114. blue line) at $28.99 each
  102115.  
  102116. Reply to either ao015@freenet.carleton.ca or to sensfan@magi.com
  102117.  
  102118. Kerz.
  102119.  
  102120. --
  102121.   ********************            :::::::::::::::::::::
  102122.   *   Mark Kerzner   *            :  OTTAWA SENATORS  :
  102123.   *     "KERZ"       *            :    LOUDEST FAN    :
  102124.   ********************            :::::::::::::::::::::
  102125. #! rnews 7800
  102126. Path: uwm.edu!cs.utexas.edu!news.sprintlink.net!uunet!in1.uu.net!newsflash.concordia.ca!donald!david
  102127. From: david@donald.concordia.ca (David Gaudine)
  102128. Newsgroups: alt.fan.jen-coolest
  102129. Subject: A Grimm Fairy Tale
  102130. Date: 13 Mar 1995 19:05:40 GMT
  102131. Organization: ORGANIZATION? HERE?? You must be kidding!!
  102132. Lines: 127
  102133. Message-ID: <3k2524$76s@newsflash.concordia.ca>
  102134. NNTP-Posting-Host: donald.concordia.ca
  102135.  
  102136.  
  102137. Here it is; "A Grimm Fairy Tale", the story of a longtime Jen fan who
  102138. finally got to meet the Jen for whom afjc was named.
  102139.  
  102140. My trip started in Cambridge (Boston). Since Jen Yuan was in town the
  102141. same weekend, I left a phone message for her.  My intention was to
  102142. leave a vague message that only she would understand.  Unfortunately,
  102143. it was so vague that they didn't know it was for her.  The fact that
  102144. I didn't know how to pronounce her name didn't help.
  102145.  
  102146. Next stop Hoboken NJ.  After Jen L. performed the herculean task of
  102147. finding me a parking space in Hoboken, we went to NYC for a mini Jenvention;
  102148. 2 Jens and 3 Jen fans, not bad, except I prefer the other way around. :)
  102149. The 5 were myself, Jen L., Jen L.'s David, Jeff Berg, and Jennifah. (sp)
  102150. For all but Jennifah, this was a warmup for Mardi Gras.  The next day I went
  102151. back to NYC to Jeff Berg's office.  Upon returning to Hoboken I found that
  102152. I had left something rather important in his office; my list of addresses
  102153. and phone #'s for all the Jens I was supposed to visit!  It doesn't take
  102154. long to get from Hoboken to NYU when you're desperate. ;)
  102155.  
  102156. Next stop Philadelphia.  It's a nice place for a walking tour, since most
  102157. of the attractions are close together.  I took pictures of Jen Y in her
  102158. TD outfit; those will be among the very few Jen gifs I make.  As far as
  102159. I can remember at the moment, this was the only place where I actually
  102160. had any ice cream.  I bought a couple of small containers of B&J because
  102161. I don't think you can get that brand here (in containers); I ate it
  102162. all myself since Jen Y. was recuperating from some leftover Chinese food.
  102163.  
  102164. Then Washington, where I learned 3 things in my first 2 hours;
  102165. - Don't drive west along K street
  102166. - Don't drive west along H street
  102167. - Don't drive.
  102168. I met Jenn Biller, but Jen Hill managed to nimbly avoid me. *pout*
  102169.  
  102170. The next night I stopped in Kingston TN.  No Jens in sight! :(
  102171.  
  102172. Finally I got to New Orleans.  I found Jenn A's house right away, but nobody
  102173. was home, so I spent a couple of hours looking for them.  Most of that
  102174. time they were there, while I was elsewhere searching.  At midnight
  102175. Jenn and most of the others went out to a bar.  I decided I wasn't up to it,
  102176. so I stayed "home", along with Jenn's friend Jenny T; the best decision
  102177. I made all weekend, since Jenny T quickly became my new favourite Jen
  102178. (the first time in 15 years that I've had a favourite).  Then at 2AM
  102179. Jenn's friend Mattie, who I was supposed to stay with, picked me up
  102180. and took me to a bar for a couple of hours and then to her place.
  102181. Her boyfriend wasn't too happy;
  102182. "Let me get this straight.  It's 2am, you're going to pick up a guy you've
  102183.  never met, take him to a bar, and then take him home to sleep?"
  102184. I met him the next day and everything was ok, though he still got her to
  102185. stay at his place the remaing nights, which worked out fine for everyone.
  102186.  
  102187. Because everyone spent half the night in bars, and we had a bit of trouble
  102188. finding each other the next day, the day basically started at 3pm.
  102189. That's when I met Jen Grimm.  Jen Grimm, Ron, Jenny T, Jeff, Mattie, and
  102190. I started for the infamous French Quarter, but the first 3 on that list
  102191. ended up stopping for hair braids and tatoos.  (No, Jen Grimm didn't get
  102192. a tatoo.)  In the French quarter Mattie, the sexy one in the group (wow!),
  102193. did her best to collect some beads without showing anything, but the
  102194. guys were being picky.  At one point Jeff thought he was going to have to
  102195. rescue her from 3 marines.
  102196.  
  102197. In the evening we saw Rex "open" Mardi Gras.  Well, we didn't actually
  102198. "see" anything from where we were standing, but we were there.  Rex
  102199. asked the mayor to approve a list of rules for Mardi Gras; "No school",
  102200. "No work", etc; fortunately the Mayor, after due consideration, agreed.
  102201. Later I had my first seafood "Po-boy", and found that the rumours that
  102202. someone with my sensitive pallette couldn't eat in Louisiana were unfounded.
  102203. On our way to the restaurant, Jenny T had Jeff and I on her arms and
  102204. kept bragging to strangers "I have 2 good-looking intelligent men with me
  102205. and you don't!".  I'm not sure why she said that to the women *and* the men
  102206. that we passed.
  102207. <Jen> Did you ever see 2 more intelligent men in your life?
  102208. <Elderly woman> No, I was just going to mention that.
  102209. Later a parade passed by, and I added to my bead collection; previously
  102210. I only had what the Jens and the woman doing the hair braiding gave me.
  102211.  
  102212. That's one of the things I noticed about New Orleans; if you speak to
  102213. complete strangers, they answer.
  102214.  
  102215. On Mardi Gras itself, it was pouring rain as time for the parade approached.
  102216. We made our contributions to the local economy by buying umbrellas.
  102217. I watched the entire parade, and studied the secrets of getting people
  102218. to throw beads to me, while some of the others stayed at a party
  102219. eating crawfish.  (Interesting things... no strong taste at all, but
  102220. you burn your tongue if you lick your fingers afterwards because of the
  102221. spices in the water that stay on the shell.)
  102222.  
  102223. That afternoon Jenn, her David, Jen Grimm, Ron, and I went to some sort
  102224. of Indian wedding.  However, Jen, Ron, and I soon left and headed for
  102225. the French quarter for the afternoon.
  102226.  
  102227. Now, here's the "fairy tale" part.  On the way home, walking in the dark
  102228. along St. Charles which was almost deserted, I felt a touch on my arm
  102229. and turned to face Jen Grimm.  She took my hand and made a gesture.
  102230. When I didn't understand, she took my other hand, and before I knew it
  102231. we were dancing.  I can't remember ever dancing in my life before, so my
  102232. first dance *ever* was under the streetlights on St. Charles with Jen Grimm!
  102233. Could there be a bigger thrill for a Jen fan? :)
  102234.  
  102235. After that, anything else would be downhill, so I left the next morning. :)
  102236. I was heading for St. Louis to visit Nifer, and while checking my map
  102237. I suddenly realized for the first time that I was passing through Memphis.
  102238. Normally I notice things like that *before* I start the trip.  Naturally
  102239. I went to Graceland, though by the time I waited overnight for it to
  102240. open I didn't have time to do anything but buy souvenirs.  Then in St. Louis
  102241. I investigated the important issue that was on my mind: "Why hasn't
  102242. Nifer posted lately?"  It turned out that there was a technical reason,
  102243. we weren't being snubbed after all. :)
  102244.  
  102245. I visited a favourite non-Jen in Macomb IL, was stood up by another favourite
  102246. in PEEoria IL, and then found Jen Fausti in Chicago, she already posted
  102247. about that.  In Toledo I saw Jen Radon, and Jenny T who gave me the beads
  102248. that I'd forgotten in New Orleans.  I decided to make a run for the border,
  102249. i.e. get home from Toledo in one day.  I left at 2 PM, stopped briefly in
  102250. Guelph to see Jen Robertson, and got home at about 4:30 AM.  That's a couple
  102251. of hours later than I expected, due to a snowstorm; the most dangerous
  102252. trip of my life.  At first traffic was slow, then I tried to make up for
  102253. lost time by driving 60 MPH on a road that I could barely see.  I kept the
  102254. car pointing where I suspected the road was, and fortunately I was right.
  102255.  
  102256. Well, that's it.  I was on the road for 17 days, but it was worth it;
  102257. I got to meet Jen Grimm *and* my new personal favourite Jen! :)
  102258. -- 
  102259. -------------------------------------------------------------------------
  102260. David Gaudine, Programmer, EMC Lab                Home: (514)481-0837
  102261. Concordia University, Loyola Campus, Montreal     Work: (514)848-3118
  102262. Rarely speaking for anyone important              david@donald.concordia.ca
  102263.  
  102264. From news@columbia.edu Tue Mar 14 07:23:17 1995
  102265. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27807
  102266.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 14 Mar 1995 14:51:08 -0500
  102267. Received: by apakabar.cc.columbia.edu id AA19662
  102268.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 14 Mar 1995 14:51:07 -0500
  102269. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!newsjunkie.ans.net!howland.reston.ans.net!gatech!newsfeed.pitt.edu!uunet!news.eden.com!matrix.eden.com!glharlan
  102270. From: glharlan@eden.com (gordon harlan)
  102271. Newsgroups: comp.protocols.kermit.misc
  102272. Subject: Remap Scroll Lock key?
  102273. Date: 14 Mar 1995 07:23:17 GMT
  102274. Organization: Adhesive Media, Inc.
  102275. Lines: 9
  102276. Message-Id: <3k3g96$jvp@boris.eden.com>
  102277. Nntp-Posting-Host: matrix.eden.com
  102278. X-Newsreader: TIN [version 1.2 PL2]
  102279. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  102280.  
  102281. the new version of Procom for windows even uses the Scroll Lock key as 
  102282. your DO key in its VT320 key map, old PCLink'd do it too, so it can't be 
  102283. all THAT deeply hardcoded, and i've got PCLink installed on about 100 
  102284. systems using the Scroll Lock key as the DO key, and since PCLink is 
  102285. dead, i want to be able to take these users to kermit.
  102286.  
  102287.  
  102288. anyway, if anyone knows gimme a holler
  102289.  
  102290.  
  102291. From news@columbia.edu Tue Mar 14 16:19:54 1995
  102292. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13034
  102293.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 14 Mar 1995 17:51:54 -0500
  102294. Received: by apakabar.cc.columbia.edu id AA04477
  102295.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 14 Mar 1995 17:51:52 -0500
  102296. Path: news.columbia.edu!panix!news.mathworks.com!hookup!swrinde!howland.reston.ans.net!Germany.EU.net!nntp.gmd.de!news.rwth-aachen.de!news.rhrz.uni-bonn.de!news.uni-stuttgart.de!news.belwue.de!news.uni-freiburg.de!MPI2.IMMUNBIO.MPG.DE!GARTMANN
  102297. From: gartmann@immunbio.mpg.de (Christoph Gartmann)
  102298. Newsgroups: comp.protocols.kermit.misc
  102299. Subject: Re: MS-Kermit, MS-Windows & Norton Desktop
  102300. Date: 14 Mar 1995 16:19:54 GMT
  102301. Organization: Max-Planck-Institut fuer Immunbiologie
  102302. Lines: 38
  102303. Message-Id: <3k4fna$sgs@n.ruf.uni-freiburg.de>
  102304. References: <3k1vs4$nrl@n.ruf.uni-freiburg.de>
  102305. Reply-To: gartmann@immunbio.mpg.de
  102306. Nntp-Posting-Host: mpi2.immunbio.mpg.de
  102307. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  102308.  
  102309. In article <3k1vs4$nrl@n.ruf.uni-freiburg.de>, I (Christoph Gartmann) wrote:
  102310.  
  102311. >on a PC with three serial interfaces (COM1 for the mouse, COM2 for a line to
  102312. >a host, COM4 for a modem) I experience a problem when running MS-Kermit under
  102313. >Windows and the Norton desktop: when connecting to the modem I don't see
  102314. >any responses from the modem on the screen. I can see the LEDs flickering
  102315. >when I enter an AT command and I see the LEDs flickering when the modem is
  102316. >expected to respond. But I don't see any data appear on the screen. Everything
  102317. >is working fine with the COM2 port. When I start Kermit under DOS the
  102318. >connection to COM4 is all right. But when I start it under Windows or under
  102319. >DOS but Windows is still active I get the above problem. Using COM4 from
  102320. >within the Windows-standard-Terminal program is all right, too.
  102321. >
  102322. >Any ideas?
  102323.  
  102324. Meanwhile I have received no replies but came a bit further anyway:
  102325. In my ini script I have to use a
  102326.   SET COM4 <address> <IRQ>
  102327. in order to allow Kermit to recognize the port. And now I found out that this
  102328. setting somehow doesn't get active under Windows. When I enter the DOS-prompt
  102329. from within Windows, call Kermit together with my ini file COM4 doesn't work.
  102330. Now I leave Kermit, go back to DOS and just call Kermit once again. Now all
  102331. is fine! It is always that I have to enter Kermit twice. And both times I have
  102332. to issue the SET COM4 command. Then I tried a little .BAT file that does
  102333. excatly this: entering Kermit leaving it and entering it again. But this
  102334. is obviously not the same as doing it manually :-(
  102335.  
  102336. Thus, I would appreciate an explanation or even mor a solution.
  102337.  
  102338. Regards,
  102339.    Christoph Gartmann
  102340.  
  102341. +----------------------------------------------------------------------------+
  102342. | Max-Planck-Institut fuer      Phone   : +49-761-5108-465   Fax: -221       |
  102343. | Immunbiologie                 PSI     : PSI%(0262)45050160374::GARTMANN    |
  102344. | Postfach 1169                 Internet: gartmann@immunbio.mpg.de           |
  102345. | D-79011  Freiburg, FRG                                                     |
  102346. +----------- Do you know MENUE, the user environment for OpenVMS? -----------+
  102347.  
  102348. From news@columbia.edu Tue Mar 14 02:11:39 1995
  102349. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14656
  102350.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 15 Mar 1995 04:39:05 -0500
  102351. Received: by apakabar.cc.columbia.edu id AA10856
  102352.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 15 Mar 1995 04:39:03 -0500
  102353. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  102354. From: jrd@cc.usu.edu (Joe Doupnik)
  102355. Newsgroups: comp.protocols.kermit.misc
  102356. Subject: Re: Remap Scroll Lock key?
  102357. Message-Id: <1995Mar14.081139.44687@cc.usu.edu>
  102358. Date: 14 Mar 95 08:11:39 MDT
  102359. References: <3k3g96$jvp@boris.eden.com>
  102360. Organization: Utah State University
  102361. Lines: 12
  102362. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  102363.  
  102364. In article <3k3g96$jvp@boris.eden.com>, glharlan@eden.com (gordon harlan) writes:
  102365. > the new version of Procom for windows even uses the Scroll Lock key as 
  102366. > your DO key in its VT320 key map, old PCLink'd do it too, so it can't be 
  102367. > all THAT deeply hardcoded, and i've got PCLink installed on about 100 
  102368.  
  102369.     Wanna bet? Yes, the app has to dig beneath the Bios, trap keyboard
  102370. interrupts, and fanagle things to fake a visible key.
  102371.  
  102372. > systems using the Scroll Lock key as the DO key, and since PCLink is 
  102373. > dead, i want to be able to take these users to kermit.
  102374. > anyway, if anyone knows gimme a holler
  102375.     Joe D.
  102376.  
  102377. From news@columbia.edu Sun Mar 15 00:13:44 1995
  102378. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17074
  102379.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 15 Mar 1995 11:35:14 -0500
  102380. Received: by apakabar.cc.columbia.edu id AA21789
  102381.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 15 Mar 1995 11:35:13 -0500
  102382. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!tadpole.com!news.dell.com!swrinde!cs.utexas.edu!math.ohio-state.edu!magnus.acs.ohio-state.edu!usenet.ins.cwru.edu!news.ecn.bgu.edu!feenix.metronet.com!fohnix.metronet.com!not-for-mail
  102383. From: jhuber@fohnix.metronet.com (Joseph Huber)
  102384. Newsgroups: comp.protocols.kermit.misc
  102385. Subject: Re: More on Manuals
  102386. Date: 14 Mar 1995 18:13:44 -0600
  102387. Organization: Texas Metronet Communications Services, Dallas TX
  102388. Lines: 16
  102389. Distribution: world
  102390. Message-Id: <3k5bfo$r6q@fohnix.metronet.com>
  102391. References: <3k3ntp$5qd@pilot.njin.net>
  102392. Nntp-Posting-Host: fohnix.metronet.com
  102393. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  102394.  
  102395.  (James M. McClain) writes:
  102396. >Frank, I did NOT say that that docs don't contain the answers to most
  102397. >of the questions asked here.  What I tried to sy was that they are
  102398. >poorly written and use dense, obfuscatory gibberish so that we need
  102399. >this newsgroup to find out what the hell they say.  If it matters,
  102400. >please know that Chuck's zmodem docs are infact worse - totally
  102401. >incomprehensable.
  102402.  
  102403. Perhaps the problem is with your comprehension and not with the docs?????
  102404.  
  102405. Just out of curiosity, could you name a manual that you do find satisfactory? 
  102406.  
  102407. -- 
  102408. Joe Huber
  102409. jhuber@metronet.com
  102410. 817-557-3186
  102411.  
  102412. From news@columbia.edu Fri Mar 10 14:54:42 1995
  102413. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25743
  102414.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 15 Mar 1995 13:44:47 -0500
  102415. Received: by apakabar.cc.columbia.edu id AA03367
  102416.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 15 Mar 1995 13:44:45 -0500
  102417. Path: news.columbia.edu!panix!zip.eecs.umich.edu!newsxfer.itd.umich.edu!news.itd.umich.edu!usenet
  102418. From: hamlin@emuvax.emich.edu (Alex Hamlin)
  102419. Newsgroups: comp.protocols.kermit.misc
  102420. Subject: Dialing rotation.
  102421. Date: 10 Mar 1995 14:54:42 GMT
  102422. Organization: MHRI
  102423. Lines: 9
  102424. Sender: -Not-Authenticated-[6196]@columbia.edu
  102425. Message-Id: <3jpp7i$o27@lastactionhero.rs.itd.umich.edu>
  102426. Nntp-Posting-Host: 194.186.med.umich.edu
  102427. X-Posted-From: InterNews 1.0.5@194.186.med.umich.edu
  102428. Xdisclaimer: No attempt was made to authenticate the sender's name.
  102429. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  102430.  
  102431. Can anyone give me an idea of how to implement a dialing rotation with
  102432. kermit?  I have three numbers I call, is there a way I can have it
  102433. (MS-dos Kermit 3.14) dial the first then if it gets a busy signal, dial
  102434. a second and a third before returning to the first.
  102435.  
  102436. -B.S.
  102437. --
  102438. I don't speak for anyone but me and occasionally I don't even get to do
  102439. that.
  102440.  
  102441. From news@columbia.edu Wed Mar 15 19:03:18 1995
  102442. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26823
  102443.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 15 Mar 1995 14:03:22 -0500
  102444. Received: by apakabar.cc.columbia.edu id AA05030
  102445.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 15 Mar 1995 14:03:21 -0500
  102446. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  102447. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  102448. Newsgroups: comp.protocols.kermit.misc
  102449. Subject: Re: Dialing rotation.
  102450. Date: 15 Mar 1995 19:03:18 GMT
  102451. Organization: Columbia University
  102452. Lines: 51
  102453. Message-Id: <3k7dlm$4t3@apakabar.cc.columbia.edu>
  102454. References: <3jpp7i$o27@lastactionhero.rs.itd.umich.edu>
  102455. Nntp-Posting-Host: watsun.cc.columbia.edu
  102456. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  102457.  
  102458. In article <3jpp7i$o27@lastactionhero.rs.itd.umich.edu>,
  102459. Alex Hamlin <hamlin@emuvax.emich.edu> wrote:
  102460. >Can anyone give me an idea of how to implement a dialing rotation with
  102461. >kermit?  I have three numbers I call, is there a way I can have it
  102462. >(MS-dos Kermit 3.14) dial the first then if it gets a busy signal, dial
  102463. >a second and a third before returning to the first.
  102464. >
  102465. Make a copy of your dialing script under a different name, such as
  102466. "mydial.scr".
  102467.  
  102468. Modify this copy of the dialing script to only dial once, and to set
  102469. a variable indicating the failure reason.  For example, at the top of
  102470. the dialing script, add:
  102471.  
  102472.   define mystatus
  102473.  
  102474. and then change the BUSY section from whatever it is now, such as:
  102475.  
  102476.   :BUSY
  102477.   if < \v(count) 2 goto quit    ; Don't wait 60 seconds if tries used up.
  102478.   Echo Busy or No Carrier, will dial again in 30 seconds...
  102479.   echo Press any key to cancel...
  102480.   hangup                          ; Hang up.
  102481.   :AGAIN
  102482.   if count goto redial            ; Then go redial.
  102483.   :QUIT
  102484.   errfail {It never answers!  I give up.} ; Too many tries.
  102485.  
  102486. to something like:
  102487.  
  102488.   :BUSY
  102489.   define mystatus BUSY
  102490.   end 1
  102491.  
  102492. Then you can dial like this:
  102493.  
  102494.   set modem mydial    ; Use special dialing script
  102495.   :LOOP
  102496.   dial 7654321        ; Try first number
  102497.   if success goto OK
  102498.   if not equal "\m(mystatus)" "BUSY" goto LOOP ; or whatever...
  102499.   dial 8765432
  102500.   if success goto OK
  102501.   if not equal "\m(mystatus)" "BUSY" goto LOOP
  102502.   dial 9876543
  102503.   if fail goto LOOP
  102504.   :OK
  102505.  
  102506. This is just one of many possible ways to do this.
  102507.  
  102508. - Frank
  102509.  
  102510. From news@columbia.edu Wed Mar 15 03:12:55 1995
  102511. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29572
  102512.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 15 Mar 1995 14:47:22 -0500
  102513. Received: by apakabar.cc.columbia.edu id AA08921
  102514.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 15 Mar 1995 14:47:20 -0500
  102515. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!salliemae!europa.chnt.gtegsc.com!gatech!swrinde!cs.utexas.edu!uwm.edu!msunews!harbinger.cc.monash.edu.au!news.cs.su.oz.au!metro!socs.uts.edu.au!vnham
  102516. From: vnham@socs.uts.edu.au (Vi Nham)
  102517. Newsgroups: comp.protocols.kermit.misc
  102518. Subject: Zmodem hangup??
  102519. Date: 15 Mar 1995 03:12:55 GMT
  102520. Organization: School of Computing Sciences, UTS
  102521. Lines: 60
  102522. Message-Id: <3k5lvn$cio@woodstock.socs.uts.EDU.AU>
  102523. Nntp-Posting-Host: linus.socs.uts.edu.au
  102524. Summary: ZModem hangup while downloading from unix to ms-dos
  102525. Keywords: Zmodem Problem
  102526. X-Newsreader: NN version 6.5.0 (NOV)
  102527. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  102528.  
  102529. Hi everyone,
  102530.  
  102531. I have a weird problem which I am not sure how to solve it.
  102532.  
  102533. I am trying to download from a unix machine to a ms-dos machine, but with
  102534. no success.
  102535.  
  102536. The unix machine is running with 7bit Even parity and 1 stop bit (7e1).
  102537. and I am login at 12000 baud.
  102538.  
  102539. The problem I have is it hang up after the pc detect it is about to
  102540. receive a file using zmodem protocol.  The pc just wouldn't receive
  102541. anymore packet from the unix end.
  102542.  
  102543. I am using  " sz -be -vvv test.exe " on the unix side to send the file.
  102544.  
  102545.     -be  --> send binary file and escape all control character.
  102546.     -vvv --> capture the debug message to file.
  102547.  
  102548. Here is the capture debug message found in the unix side.  (after the
  102549. transmission has been abort.)
  102550.  
  102551. ==================================================================
  102552.  
  102553. sz 3.18 12-07-91 for V7/BSD
  102554.  
  102555. mode:1
  102556.  
  102557. Countem: 000 test.exe  1105
  102558. countem: Total 1 1105
  102559. zshhdr: f 4 ZRQINIT 0
  102560. Retry 0: Awaiting pathname nak for test.exe
  102561. Calling read: alarm=80  Readnum=2 Read returned 1 bytes errno=0
  102562. Calling read: alarm=80  Readnum=2 Read returned 1 bytes errno=0
  102563. Calling read: alarm=80  Readnum=2 Read returned 2 bytes errno=0
  102564. Calling read: alarm=80  Readnum=2 Read returned 2 bytes errno=0
  102565. Calling read: alarm=80  Readnum=2 Read returned 2 bytes errno=0
  102566. Calling read: alarm=80  Readnum=2 Read returned 2 bytes errno=0
  102567. Calling read: alarm=80  Readnum=2 Read returned 2 bytes errno=0
  102568. Calling read: alarm=80  Readnum=2 Read returned 2 bytes errno=0
  102569. Calling read: alarm=80  Readnum=2 Read returned 2 bytes errno=0
  102570. Calling read: alarm=80  Readnum=2 Read returned 2 bytes errno=0
  102571. Calling read: alarm=80  Readnum=2 Read returned 2 bytes errno=0
  102572. Calling read: alarm=80  Readnum=2 Read returned 1 bytes errno=0
  102573. Calling read: alarm=80  Readnum=2 Read returned 1 bytes errno=0
  102574. Calling read: alarm=2  Readnum=2 Read returned 1 bytes errno=0
  102575. Calling read: alarm=80  Readnum=2 Read returned 2 bytes errno=0
  102576. mode:0
  102577.  
  102578. ======================================================================
  102579.  
  102580. The error seem to complain about the path not found??
  102581.  
  102582. Can someone help me with this please?
  102583.  
  102584. Note: I will not be able to change to 8n1.  Hence I am stuck with
  102585.       7e1, is this meant I cann't run zmodem??
  102586.  
  102587. Thanks in advance for any suggestion,
  102588. Vi
  102589.  
  102590. From news@columbia.edu Wed Mar 15 06:11:24 1995
  102591. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04618
  102592.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 15 Mar 1995 15:58:20 -0500
  102593. Received: by apakabar.cc.columbia.edu id AA15100
  102594.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 15 Mar 1995 15:58:19 -0500
  102595. Path: news.columbia.edu!panix!news.mathworks.com!hookup!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  102596. From: jrd@cc.usu.edu (Joe Doupnik)
  102597. Newsgroups: comp.protocols.kermit.misc
  102598. Subject: Re: Zmodem hangup??
  102599. Message-Id: <1995Mar15.121124.44888@cc.usu.edu>
  102600. Date: 15 Mar 95 12:11:24 MDT
  102601. References: <3k5lvn$cio@woodstock.socs.uts.EDU.AU>
  102602. Organization: Utah State University
  102603. Lines: 12
  102604. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  102605.  
  102606. In article <3k5lvn$cio@woodstock.socs.uts.EDU.AU>, vnham@socs.uts.EDU.AU (Vi Nham) writes:
  102607. > Hi everyone,
  102608. > I have a weird problem which I am not sure how to solve it.
  102609. > I am trying to download from a unix machine to a ms-dos machine, but with
  102610. > no success.
  102611. ----------
  102612.     Perhaps you have chosen the wrong News group. This one is about
  102613. Kermit, not zmodem. While you are here, however, may we recommend you
  102614. try Kermit on both ends of the link; they work.
  102615.     Joe D.
  102616.  
  102617. From news@columbia.edu Wed Mar 15 14:31:51 1995
  102618. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13984
  102619.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 15 Mar 1995 18:39:14 -0500
  102620. Received: by apakabar.cc.columbia.edu id AA27114
  102621.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 15 Mar 1995 18:38:46 -0500
  102622. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!newsjunkie.ans.net!howland.reston.ans.net!news.moneng.mei.com!hookup!solaris.cc.vt.edu!news.duke.edu!eff!news.umbc.edu!cs.umd.edu!newsfeed.gsfc.nasa.gov!ELF!schieb
  102623. From: schieb@shark.gsfc.nasa.gov (Brian D. Schieber)
  102624. Newsgroups: comp.protocols.kermit.misc
  102625. Subject: Kermit challenge
  102626. Date: 15 Mar 1995 14:31:51 GMT
  102627. Organization: NASA Goddard Space Flight Center -- Greenbelt, Maryland USA
  102628. Lines: 43
  102629. Distribution: na
  102630. Message-Id: <3k6ton$lvp@post.gsfc.nasa.gov>
  102631. Reply-To: schieb@shark.gsfc.nasa.gov (Brian D. Schieber)
  102632. Nntp-Posting-Host: shark-f.gsfc.nasa.gov
  102633. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  102634.  
  102635. OK, I'm getting the manual, really.  Should arrive soon.  But I 
  102636. suspect I might have a hard time finding out what the information
  102637. I want.  
  102638.  
  102639. I'm not even sure if its possible. 
  102640.  
  102641. What I want to do is:
  102642.  
  102643. 1. run kermit190 from my Solaris (UNIX) Workstation
  102644. 2. telnet through kermit to another workstation 
  102645. 3. hit return (with the script)
  102646. 4. get the "Call, Display, or Modify?" modem pool prompt from there...
  102647. 5. say "call hayes" to connect to a modem (not sure if I can set baud)
  102648. 6. "atdt 8,xxxxxxxxxx" to a machine on the other side of the country.
  102649. 7. login, password, upload a request file
  102650. 8. wait, wait, wait
  102651. 9. escape back and open kermit to receive files
  102652. 10. cleanly quit and smile.
  102653.  
  102654. At present, once I do #2, my command in my kermit script are useless.
  102655. I guess once I telnet there I'm just disconnected from my kermit 
  102656. session... the workstation ONLY provides the "Call, Display, or Modify?"
  102657. service, and is moy only modem pool connection.
  102658.  
  102659. Can someone explain how to do the above?
  102660. How to I get machine in (2) to recognize commands from a script in (1)?
  102661.  
  102662. A similar example would be GREATLY appreciated!!
  102663.  
  102664.  
  102665. -- 
  102666.  
  102667. Thanks,
  102668. --Brian
  102669.  
  102670. | Brian D. Schieber 
  102671. | SeaDAS/SeaWiFS Projects 
  102672. | Laboratory for Hydrospheric Processes 
  102673. | NASA/Goddard Space Flight Center 
  102674. | Code 971/GSC, Greenbelt, MD 20771
  102675. | schieb@shark.gsfc.nasa.gov 
  102676. | http://shark.gsfc.nasa.gov/~schieb/home_page.html/
  102677.  
  102678.  
  102679. From news@columbia.edu Wed Mar 15 01:58:55 1995
  102680. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14015
  102681.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 15 Mar 1995 18:39:20 -0500
  102682. Received: by apakabar.cc.columbia.edu id AA26670
  102683.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 15 Mar 1995 18:33:41 -0500
  102684. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!newsjunkie.ans.net!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  102685. From: jrd@cc.usu.edu (Joe Doupnik)
  102686. Newsgroups: comp.protocols.kermit.misc
  102687. Subject: Re: MS-Kermit, MS-Windows & Norton Desktop
  102688. Message-Id: <1995Mar15.075855.44824@cc.usu.edu>
  102689. Date: 15 Mar 95 07:58:55 MDT
  102690. References: <3k1vs4$nrl@n.ruf.uni-freiburg.de> <3k4fna$sgs@n.ruf.uni-freiburg.de>
  102691. Organization: Utah State University
  102692. Lines: 38
  102693. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  102694.  
  102695. In article <3k4fna$sgs@n.ruf.uni-freiburg.de>, gartmann@immunbio.mpg.de (Christoph Gartmann) writes:
  102696. > In article <3k1vs4$nrl@n.ruf.uni-freiburg.de>, I (Christoph Gartmann) wrote:
  102697. >>on a PC with three serial interfaces (COM1 for the mouse, COM2 for a line to
  102698. >>a host, COM4 for a modem) I experience a problem when running MS-Kermit under
  102699. >>Windows and the Norton desktop: when connecting to the modem I don't see
  102700. >>any responses from the modem on the screen. I can see the LEDs flickering
  102701. >>when I enter an AT command and I see the LEDs flickering when the modem is
  102702. >>expected to respond. But I don't see any data appear on the screen. Everything
  102703. >>is working fine with the COM2 port. When I start Kermit under DOS the
  102704. >>connection to COM4 is all right. But when I start it under Windows or under
  102705. >>DOS but Windows is still active I get the above problem. Using COM4 from
  102706. >>within the Windows-standard-Terminal program is all right, too.
  102707. >>
  102708. >>Any ideas?
  102709. > Meanwhile I have received no replies but came a bit further anyway:
  102710. > In my ini script I have to use a
  102711. >   SET COM4 <address> <IRQ>
  102712. > in order to allow Kermit to recognize the port. And now I found out that this
  102713. > setting somehow doesn't get active under Windows. When I enter the DOS-prompt
  102714. > from within Windows, call Kermit together with my ini file COM4 doesn't work.
  102715. > Now I leave Kermit, go back to DOS and just call Kermit once again. Now all
  102716. > is fine! It is always that I have to enter Kermit twice. And both times I have
  102717. > to issue the SET COM4 command. Then I tried a little .BAT file that does
  102718. > excatly this: entering Kermit leaving it and entering it again. But this
  102719. > is obviously not the same as doing it manually :-(
  102720. > Thus, I would appreciate an explanation or even mor a solution.
  102721. -------------
  102722.     When Windows is active it owns the serial port hardware. It provides
  102723. a virtualized set of serial ports to the DOS box and other Windows
  102724. applications. Thus you must configure Windows to see your COM4 port, and
  102725. then Kermit will be able to access it within Windows.
  102726.     Also, please review the docs in the MS-DOS Kermit distribution set
  102727. regarding serial ports COM3 and COM4. In particular, there cannot be two
  102728. devices using the same IRQ.
  102729.     Joe D.
  102730.  
  102731. From news@columbia.edu Thu Mar 16 00:27:21 1995
  102732. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16151
  102733.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 15 Mar 1995 19:27:34 -0500
  102734. Received: by apakabar.cc.columbia.edu id AA00314
  102735.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 15 Mar 1995 19:27:27 -0500
  102736. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  102737. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  102738. Newsgroups: comp.protocols.kermit.misc
  102739. Subject: Re: Kermit challenge
  102740. Date: 16 Mar 1995 00:27:21 GMT
  102741. Organization: Columbia University
  102742. Lines: 35
  102743. Distribution: na
  102744. Message-Id: <3k80l9$9m@apakabar.cc.columbia.edu>
  102745. References: <3k6ton$lvp@post.gsfc.nasa.gov>
  102746. Nntp-Posting-Host: watsun.cc.columbia.edu
  102747. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  102748.  
  102749. In article <3k6ton$lvp@post.gsfc.nasa.gov>,
  102750. Brian D. Schieber <schieb@shark.gsfc.nasa.gov> wrote:
  102751. >What I want to do is:
  102752. >
  102753. >1. run kermit190 from my Solaris (UNIX) Workstation
  102754. >2. telnet through kermit to another workstation 
  102755.  
  102756. Instead of using TELNET, use SET NET TCP, SET HOST <host>
  102757. This will leave in Command/Script mode 
  102758.  
  102759. >3. hit return (with the script)
  102760. >4. get the "Call, Display, or Modify?" modem pool prompt from there...
  102761. >5. say "call hayes" to connect to a modem (not sure if I can set baud)
  102762. >6. "atdt 8,xxxxxxxxxx" to a machine on the other side of the country.
  102763. >7. login, password, upload a request file
  102764. >8. wait, wait, wait
  102765. >9. escape back and open kermit to receive files
  102766. >10. cleanly quit and smile.
  102767. >
  102768. >At present, once I do #2, my command in my kermit script are useless.
  102769. >I guess once I telnet there I'm just disconnected from my kermit 
  102770. >session... the workstation ONLY provides the "Call, Display, or Modify?"
  102771. >service, and is moy only modem pool connection.
  102772. x
  102773. x
  102774. x
  102775. x
  102776. x
  102777. x
  102778.  
  102779. x
  102780. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  102781. "C-Kermit: available on more platforms than any other communications software."
  102782. "Kermit FTP: sending files whenever and wherever they are needed."
  102783.   OS/2 version 5A(190): ftp://kermit.columbia.edu/kermit/archives/cko190.zip 
  102784.  
  102785. From news@columbia.edu Wed Mar 15 22:19:13 1995
  102786. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17084
  102787.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 15 Mar 1995 19:47:29 -0500
  102788. Received: by apakabar.cc.columbia.edu id AA01521
  102789.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 15 Mar 1995 19:47:22 -0500
  102790. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!news.mathworks.com!news.duke.edu!news-feed-1.peachnet.edu!gatech!howland.reston.ans.net!torn!news.ccs.queensu.ca!news.ccs.queensu.ca!not-for-mail
  102791. From: mike@knot.QueensU.CA (Mike Smith)
  102792. Newsgroups: comp.protocols.kermit.misc
  102793. Subject: Re: MS-Kermit, MS-Windows & Norton Desktop
  102794. Date: 15 Mar 1995 17:19:13 -0500
  102795. Organization: Queen's University, Kingston
  102796. Lines: 20
  102797. Message-Id: <3k7p51$snj@ccs-sparc2.queensu.ca>
  102798. References: <3k1vs4$nrl@n.ruf.uni-freiburg.de> <3k4fna$sgs@n.ruf.uni-freiburg.de> <1995Mar15.075855.44824@cc.usu.edu>
  102799. Nntp-Posting-Host: ccs-sparc2.ccs
  102800. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  102801.  
  102802.  
  102803. In article <1995Mar15.075855.44824@cc.usu.edu>, jrd@cc.usu.edu (Joe Doupnik) writes:
  102804.  
  102805. |>     When Windows is active it owns the serial port hardware. It provides
  102806. |> a virtualized set of serial ports to the DOS box and other Windows
  102807. |> applications. Thus you must configure Windows to see your COM4 port, and
  102808. |> then Kermit will be able to access it within Windows.
  102809.  
  102810. This sounds encouraging, but I recently had a Windows/Kermit complication
  102811. with a user with a modem on COM4.  Her modem would not work at all with Kermit
  102812. until we reconfigured it to use IRQ5.  Then it worked under DOS but not
  102813. Windows.  I assumed it was because we had to tell Windows to use IRQ5, so
  102814. we went into Control Panel...Ports...COM4...Advanced, changed the IRQ and
  102815. rebooted.  This did not correct the problem.  Is there something more
  102816. to configuring Windows to see the COM4 port?
  102817. -- 
  102818.  
  102819.  Mike Smith                                  mike@ccs.queensu.ca
  102820.  Queen's University                          Michael.D.Smith@QueensU.CA
  102821.  Computing and Communications Services       (613) 545-2024
  102822.  
  102823. From news@columbia.edu Wed Mar 15 16:09:04 1995
  102824. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18167
  102825.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 15 Mar 1995 20:13:55 -0500
  102826. Received: by apakabar.cc.columbia.edu id AA03026
  102827.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 15 Mar 1995 20:13:54 -0500
  102828. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!newsjunkie.ans.net!howland.reston.ans.net!spool.mu.edu!torn!news.ccs.queensu.ca!news.ccs.queensu.ca!not-for-mail
  102829. From: mike@knot.QueensU.CA (Mike Smith)
  102830. Newsgroups: comp.protocols.kermit.misc
  102831. Subject: Re: MS-Kermit, MS-Windows & Norton Desktop
  102832. Date: 15 Mar 1995 11:09:04 -0500
  102833. Organization: Queen's University, Kingston
  102834. Lines: 33
  102835. Message-Id: <3k73f0$slc@ccs-sparc2.queensu.ca>
  102836. References: <3k1vs4$nrl@n.ruf.uni-freiburg.de> <3k4fna$sgs@n.ruf.uni-freiburg.de>
  102837. Nntp-Posting-Host: ccs-sparc2.ccs
  102838. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  102839.  
  102840.  
  102841. In article <3k4fna$sgs@n.ruf.uni-freiburg.de>, gartmann@immunbio.mpg.de (Christoph Gartmann) writes:
  102842. |> In article <3k1vs4$nrl@n.ruf.uni-freiburg.de>, I (Christoph Gartmann) wrote:
  102843. |> 
  102844. |> >on a PC with three serial interfaces (COM1 for the mouse, COM2 for a line to
  102845. |> >a host, COM4 for a modem) I experience a problem when running MS-Kermit under
  102846. |> >Windows and the Norton desktop: ... details deleted...
  102847. |> >
  102848.  
  102849. |> Meanwhile I have received no replies but came a bit further anyway:
  102850. |> In my ini script I have to use a
  102851. |>   SET COM4 <address> <IRQ>
  102852. |> in order to allow Kermit to recognize the port. And now I found out that this
  102853. |> setting somehow doesn't get active under Windows. When I enter the DOS-prompt
  102854. |> from within Windows, call Kermit together with my ini file COM4 doesn't work.
  102855. |> Now I leave Kermit, go back to DOS and just call Kermit once again. Now all
  102856. |> is fine! It is always that I have to enter Kermit twice.... details deleted...
  102857.  
  102858. I wish I had a solution for you but I don't.  At Queen's, the biggest source
  102859. of frustration with Kermit is its inability to work under Windows.  More
  102860. precisely, it works just dandy for many Windows users but we get a significant
  102861. number of weird situations like the one Christopher describes.  I'm sorry
  102862. to say that the Beware file has not really helped in these cases.  If the
  102863. Kermit team has any additional hints they would be greatly appreciated.  As
  102864. it stands I often end up giving up and having the user accept that he/she
  102865. just can't run Kermit under Windows.  It is very frustrating for everyone
  102866. concerned.  Particularly since many of these users ask, "But why does program
  102867. XYZ work with my modem when Kermit can't".  I don't have an answer for them.
  102868. -- 
  102869.  
  102870.  Mike Smith                                  mike@ccs.queensu.ca
  102871.  Queen's University                          Michael.D.Smith@QueensU.CA
  102872.  Computing and Communications Services       (613) 545-2024
  102873.  
  102874. From news@columbia.edu Wed Mar 15 23:05:19 1995
  102875. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19450
  102876.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 15 Mar 1995 20:41:23 -0500
  102877. Received: by apakabar.cc.columbia.edu id AA04757
  102878.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 15 Mar 1995 20:41:21 -0500
  102879. Path: news.columbia.edu!panix!not-for-mail
  102880. From: mgflax@panix.com (Marshall G. Flax)
  102881. Newsgroups: comp.protocols.kermit.misc
  102882. Subject: Re: MS-Kermit, MS-Windows & Norton Desktop
  102883. Date: 15 Mar 1995 18:05:19 -0500
  102884. Organization: Currently, _extremely_ disorganized
  102885. Lines: 14
  102886. Message-Id: <3k7rrf$25m@panix.com>
  102887. References: <3k1vs4$nrl@n.ruf.uni-freiburg.de> <3k4fna$sgs@n.ruf.uni-freiburg.de> <1995Mar15.075855.44824@cc.usu.edu> <3k7p51$snj@ccs-sparc2.queensu.ca>
  102888. Nntp-Posting-Host: panix.com
  102889. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  102890.  
  102891. In article <3k7p51$snj@ccs-sparc2.queensu.ca>,
  102892. Mike Smith <mike@post.queensu.ca> wrote:
  102893. >
  102894. >Windows.  I assumed it was because we had to tell Windows to use IRQ5, so
  102895. >we went into Control Panel...Ports...COM4...Advanced, changed the IRQ and
  102896. >rebooted.  This did not correct the problem.  Is there something more
  102897. >to configuring Windows to see the COM4 port?
  102898.  
  102899. I believe (and it's only a memory) that Windows can't hack having a COM4
  102900. unless it also knows about COM3!
  102901.  
  102902. marshall
  102903. -- 
  102904.                   [Marshall G. Flax -- mgflax@panix.com]
  102905.  
  102906. From news@columbia.edu Thu Mar 16 05:57:41 1995
  102907. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03520
  102908.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 16 Mar 1995 02:04:57 -0500
  102909. Received: by apakabar.cc.columbia.edu id AA22049
  102910.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 16 Mar 1995 02:04:56 -0500
  102911. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!gatech!newsfeed.pitt.edu!uunet!dziuxsolim.rutgers.edu!pilot.njin.net!not-for-mail
  102912. From: jmgreen@pilot.njin.net (Jim Green)
  102913. Newsgroups: comp.protocols.kermit.misc
  102914. Subject: File Lengths
  102915. Date: 16 Mar 1995 00:57:41 -0500
  102916. Organization: Rutgers University
  102917. Lines: 22
  102918. Distribution: world
  102919. Message-Id: <3k8k0l$sai@pilot.njin.net>
  102920. Nntp-Posting-Host: pilot.njin.net
  102921. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  102922.  
  102923.  
  102924. I have noticed that file lengths are sometimes altered in my kermit
  102925. and zmodem transfers.
  102926.  
  102927. I just performed the following little experiment:
  102928.  
  102929. I FTP'd a 4999 byte ASCII file from a unix machine to my VMS VAX
  102930. I don't know how to tell the file length in VMS
  102931. I then used both ckermit and sz to transfer to my PC using Telix
  102932. Using ckermit into Telix kermit, Telix reports a file length of 5103
  102933. and the PC dir also gives 5103.
  102934. BUT
  102935. Using SZ into DSZ via Telix, Telix/DSZ reports 5148 bytes and the PC
  102936. dir gives 4999.
  102937.  
  102938. IE zmodem eventually preserved the original file length
  102939. and kermit did not.
  102940.  
  102941. Could someone explain these various numbers to me or suggest a more
  102942. definitive experiment.
  102943.  
  102944. TX ........ Jim Green ............ jmgreen@cc.snow.edu
  102945.  
  102946. From news@columbia.edu Thu Mar 16 07:11:00 1995
  102947. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03919
  102948.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 16 Mar 1995 02:11:06 -0500
  102949. Received: by apakabar.cc.columbia.edu id AA22250
  102950.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 16 Mar 1995 02:11:03 -0500
  102951. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  102952. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  102953. Newsgroups: comp.protocols.kermit.misc
  102954. Subject: Re: File Lengths
  102955. Date: 16 Mar 1995 07:11:00 GMT
  102956. Organization: Columbia University
  102957. Lines: 35
  102958. Message-Id: <3k8oa4$lms@apakabar.cc.columbia.edu>
  102959. References: <3k8k0l$sai@pilot.njin.net>
  102960. Nntp-Posting-Host: watsun.cc.columbia.edu
  102961. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  102962.  
  102963. In article <3k8k0l$sai@pilot.njin.net>,
  102964. Jim Green <jmgreen@pilot.njin.net> wrote:
  102965. >
  102966.  
  102967. >I FTP'd a 4999 byte ASCII file from a unix machine to my VMS VAX
  102968. >I don't know how to tell the file length in VMS
  102969. >I then used both ckermit and sz to transfer to my PC using Telix
  102970. >Using ckermit into Telix kermit, Telix reports a file length of 5103
  102971. >and the PC dir also gives 5103.
  102972. >BUT
  102973. >Using SZ into DSZ via Telix, Telix/DSZ reports 5148 bytes and the PC
  102974. >dir gives 4999.
  102975. >
  102976. >IE zmodem eventually preserved the original file length
  102977. >and kermit did not.
  102978.  
  102979. Because different types of computers store their TEXT files differently
  102980. file transfer protocols need to convert them when sending files between
  102981. different types of systems.
  102982.  
  102983. When you sent you file using C-Kermit you left C-Kermit in TEXT mode
  102984. therefore conversion was done which changes every LF into a CR-LF 
  102985. combination.
  102986.  
  102987. Zmodem defaults to binary mode which never does a conversion.  So you
  102988. might have difficulty reading a file that is TEXT went sent between
  102989. two different systems.
  102990.  
  102991. Kermit also has a BINARY mode, as well as several different modes to
  102992. support VMS specific File types.
  102993.  
  102994. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  102995. "C-Kermit: available on more platforms than any other communications software."
  102996. "Kermit FTP: sending files whenever and wherever they are needed."
  102997.   OS/2 version 5A(190): ftp://kermit.columbia.edu/kermit/archives/cko190.zip 
  102998.  
  102999. From news@columbia.edu Thu Mar 16 03:51:03 1995
  103000. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07212
  103001.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 16 Mar 1995 03:51:03 -0500
  103002. Received: by apakabar.cc.columbia.edu id AA26174
  103003.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 16 Mar 1995 03:51:01 -0500
  103004. Path: news.columbia.edu!sol.ctr.columbia.edu!newsxfer.itd.umich.edu!jobone!lynx.unm.edu!tesuque.cs.sandia.gov!ferrari.mst6.lanl.gov!newshost.lanl.gov!ncar!gatech!howland.reston.ans.net!news.sprintlink.net!uunet!winternet.com!host-31.dialup.winternet.com!jamess
  103005. From: jamess@winternet.com (JamesSturdevant)
  103006. Newsgroups: comp.protocols.kermit.misc
  103007. Subject: Re: Kermit challenge
  103008. Date: Wed, 15 Mar 1995 11:19:38 LOCAL
  103009. Organization: StarNet Communications, Inc
  103010. Lines: 31
  103011. Distribution: na
  103012. Message-Id: <jamess.6.003A164C@winternet.com>
  103013. References: <3k6ton$lvp@post.gsfc.nasa.gov>
  103014. Nntp-Posting-Host: host-31.dialup.winternet.com
  103015. X-Newsreader: Trumpet for Windows [Version 1.0 Rev B final beta #4]
  103016. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  103017.  
  103018. In article <3k6ton$lvp@post.gsfc.nasa.gov> schieb@shark.gsfc.nasa.gov (Brian D. Schieber) writes:
  103019.  
  103020. >What I want to do is:
  103021.  
  103022. >1. run kermit190 from my Solaris (UNIX) Workstation
  103023. >2. telnet through kermit to another workstation 
  103024.  
  103025. Don't use telnet here.  Use set host {hostname} instead.  Then input and 
  103026. output commands work fine.  Telnet is an internal macro for set host... and 
  103027. connect.
  103028.  
  103029. >3. hit return (with the script)
  103030. >4. get the "Call, Display, or Modify?" modem pool prompt from there...
  103031. >5. say "call hayes" to connect to a modem (not sure if I can set baud)
  103032. >6. "atdt 8,xxxxxxxxxx" to a machine on the other side of the country.
  103033. >7. login, password, upload a request file
  103034. >8. wait, wait, wait
  103035. >9. escape back and open kermit to receive files
  103036. >10. cleanly quit and smile.
  103037.  
  103038. >At present, once I do #2, my command in my kermit script are useless.
  103039. >I guess once I telnet there I'm just disconnected from my kermit 
  103040. >session... the workstation ONLY provides the "Call, Display, or Modify?"
  103041. >service, and is moy only modem pool connection.
  103042.  
  103043. >Can someone explain how to do the above?
  103044. >How to I get machine in (2) to recognize commands from a script in (1)?
  103045.  
  103046. >A similar example would be GREATLY appreciated!!
  103047.  
  103048. JamesS
  103049.  
  103050. From news@columbia.edu Thu Mar 16 12:31:15 1995
  103051. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17516
  103052.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 16 Mar 1995 08:02:26 -0500
  103053. Received: by apakabar.cc.columbia.edu id AA21868
  103054.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 16 Mar 1995 08:02:24 -0500
  103055. Newsgroups: comp.protocols.kermit.misc
  103056. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!pipex!uknet!pcl!chrish
  103057. From: chrish@westminster.ac.uk (Chris Holmes)
  103058. Subject: Mac Kermit and END key
  103059. Message-Id: <D5J9G3.Hy4@westminster.ac.uk>
  103060. Sender: news@westminster.ac.uk
  103061. Nntp-Posting-Host: newbadger
  103062. Organization: University of Westminster
  103063. X-Newsreader: TIN [version 1.2 PL2]
  103064. Date: Thu, 16 Mar 1995 12:31:15 GMT
  103065. Lines: 5
  103066. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  103067.  
  103068. I have been trying to get a MAC key to emulate the VT220 END key.  I can setup
  103069. PF keys by using the same syntax as MS Kermit, eg \KPF4.  However I cant seem 
  103070. to get a key to work as END.
  103071.  
  103072. Any suggestions?
  103073.  
  103074. From news@columbia.edu Thu Mar 16 13:28:42 1995
  103075. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19265
  103076.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 16 Mar 1995 08:49:09 -0500
  103077. Received: by apakabar.cc.columbia.edu id AA24508
  103078.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 16 Mar 1995 08:49:07 -0500
  103079. Newsgroups: comp.protocols.kermit.misc
  103080. Path: news.columbia.edu!panix!news.mathworks.com!newshost.marcam.com!uunet!in1.uu.net!omen!caf
  103081. From: caf@omen.com
  103082. Subject: Re: Zmodem hangup??
  103083. Organization: Omen Technology INC, Portland Rain Forest
  103084. Date: Thu, 16 Mar 1995 13:28:42 GMT
  103085. Message-Id: <D5JC3u.E7L@omen.com>
  103086. Keywords: Zmodem Problem
  103087. References: <3k5lvn$cio@woodstock.socs.uts.EDU.AU>
  103088. Lines: 39
  103089. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  103090.  
  103091. In article <3k5lvn$cio@woodstock.socs.uts.EDU.AU> vnham@socs.uts.EDU.AU (Vi Nham) writes:
  103092. >Hi everyone,
  103093. >
  103094. >I have a weird problem which I am not sure how to solve it.
  103095. >
  103096. >I am trying to download from a unix machine to a ms-dos machine, but with
  103097. >no success.
  103098. >
  103099. >The unix machine is running with 7bit Even parity and 1 stop bit (7e1).
  103100. >and I am login at 12000 baud.
  103101.  
  103102. Most ZMODEM programs will not operate over a 7-bit link.  Either you
  103103. must use ZMODEM-90(Tm) or choose another protocol such as Kermit.
  103104.  
  103105. However, unless you download mostly text files you will not be happy
  103106. with the throughput over a 7-bit link.  Even ZMODEM-90 PACK-7 mode
  103107. is about 20% slower on compressed files than an 8 bit link would allow.
  103108. So you might investigate running the link at 8 bits.
  103109.  
  103110. In many cases the fact that you log in at 7e1 does not mean you are
  103111. constrained to a 7-bit link.  You may simply have a poor ZMODEM on
  103112. your DOS machine.  Try ZCOMM and see what happens.
  103113.  
  103114.  
  103115. The ZCOMM files are available on Compuserve SCOFORUM, UNIXFORUM,
  103116. IBMCOM, Genie IBM PC RT, TeleGodzilla 503-621-3746, or ftp
  103117. Oak.oakland.edu: pub/msdos/zmodem:
  103118.  
  103119.     zcommdoc.zip zcommexe.zip zcommhlp.zip
  103120.  
  103121. The newest FTP site is ftp.cs.pdx.edu (131.252.20.12).  The pub/zmodem
  103122. directory contains the largest and most up-to-date collection of RZ/SZ,
  103123. DSZ, GSZ, ZCOMM and Professional-YAM files of any FTP site.
  103124.  
  103125. -- 
  103126. Chuck Forsberg WA7KGX caf@omen.COM      503-621-3406 FAX:-3735
  103127.    Omen Technology Inc      "The High Reliability Software"
  103128. Author of YMODEM, ZMODEM, Professional-YAM, ZCOMM, GSZ and DSZ
  103129. TeleGodzilla BBS: 503-621-3746  FTP: ftp.cs.pdx.edu pub/zmodem
  103130.  
  103131. From news@columbia.edu Thu Mar 16 13:56:17 1995
  103132. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19591
  103133.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 16 Mar 1995 08:56:22 -0500
  103134. Received: by apakabar.cc.columbia.edu id AA24868
  103135.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 16 Mar 1995 08:56:20 -0500
  103136. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  103137. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  103138. Newsgroups: comp.protocols.kermit.misc
  103139. Subject: Re: Mac Kermit and END key
  103140. Date: 16 Mar 1995 13:56:17 GMT
  103141. Organization: Columbia University
  103142. Lines: 13
  103143. Message-Id: <3k9g21$o90@apakabar.cc.columbia.edu>
  103144. References: <D5J9G3.Hy4@westminster.ac.uk>
  103145. Nntp-Posting-Host: watsun.cc.columbia.edu
  103146. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  103147.  
  103148. In article <D5J9G3.Hy4@westminster.ac.uk>,
  103149. Chris Holmes <chrish@westminster.ac.uk> wrote:
  103150. >I have been trying to get a MAC key to emulate the VT220 END key.  I can setup
  103151. >PF keys by using the same syntax as MS Kermit, eg \KPF4.  However I cant seem 
  103152. >to get a key to work as END.  Any suggestions?
  103153. >
  103154. The VT220 does not have an END key.  Maybe you are confusing the VT220 with
  103155. a PC running software (like MS-DOS Kermit) to emulate a VT220?  If so, then
  103156. maybe you mean the function that makes a rolled-back screen go back down to
  103157. the bottom?  If so, the answer is no.  Rollback in Mac Kermit is accomplished
  103158. with the mouse and scrollbar.
  103159.  
  103160. - Frank
  103161.  
  103162. From news@columbia.edu Thu Mar 16 14:22:08 1995
  103163. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22376
  103164.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 16 Mar 1995 09:39:38 -0500
  103165. Received: by apakabar.cc.columbia.edu id AA28343
  103166.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 16 Mar 1995 09:39:37 -0500
  103167. Newsgroups: comp.protocols.kermit.misc
  103168. Path: news.columbia.edu!panix!news.mathworks.com!hookup!usc!howland.reston.ans.net!ix.netcom.com!netcom.com!helios
  103169. From: helios@netcom.com (Thomas David Nichols)
  103170. Subject: Re: MS-Kermit, MS-Windows & Norton Desktop
  103171. Message-Id: <heliosD5JEKx.GCz@netcom.com>
  103172. Organization: Heliotrope Quality Systems
  103173. X-Newsreader: TIN [version 1.2 PL1]
  103174. References: <3k1vs4$nrl@n.ruf.uni-freiburg.de> <3k4fna$sgs@n.ruf.uni-freiburg.de>
  103175. Date: Thu, 16 Mar 1995 14:22:08 GMT
  103176. Lines: 25
  103177. Sender: helios@netcom21.netcom.com
  103178. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  103179.  
  103180. Christoph Gartmann (gartmann@immunbio.mpg.de) wrote:
  103181.  
  103182. : Meanwhile I have received no replies but came a bit further anyway:
  103183. : In my ini script I have to use a
  103184. :   SET COM4 <address> <IRQ>
  103185. : in order to allow Kermit to recognize the port. And now I found out that this
  103186. : setting somehow doesn't get active under Windows. When I enter the DOS-prompt
  103187. : from within Windows, call Kermit together with my ini file COM4 doesn't work.
  103188. : Now I leave Kermit, go back to DOS and just call Kermit once again. Now all
  103189. : is fine! It is always that I have to enter Kermit twice. And both times I have
  103190. : to issue the SET COM4 command. Then I tried a little .BAT file that does
  103191. : excatly this: entering Kermit leaving it and entering it again. But this
  103192. : is obviously not the same as doing it manually :-(
  103193.  
  103194. I have a similar problem, which I fix by typing "take mscustom.ini" when
  103195. I see a message about using bios4 instead of com4.  I tried testing the
  103196. port name variable in the log-on script and re-issuing the "set port" 
  103197. command, but that didn't fix the error.  I'll try re-issuing the "set 
  103198. com4" as well - thanks for the idea!
  103199.  
  103200. Even if this works, I expect to return to DOS most of the time.  MSK runs 
  103201. perfectly at 57.6 kbps under DOS, but it loses characters under Windows 
  103202. unless I slow it down.
  103203. -- 
  103204. David Nichols  <helios@netcom.com>  Heliotrope Quality Systems
  103205.  
  103206. From news@columbia.edu Thu Mar 16 01:20:09 1995
  103207. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22516
  103208.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 16 Mar 1995 09:42:50 -0500
  103209. Received: by apakabar.cc.columbia.edu id AA28552
  103210.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 16 Mar 1995 09:42:48 -0500
  103211. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  103212. From: jrd@cc.usu.edu (Joe Doupnik)
  103213. Newsgroups: comp.protocols.kermit.misc
  103214. Subject: Re: MS-Kermit, MS-Windows & Norton Desktop
  103215. Message-Id: <1995Mar16.072009.44999@cc.usu.edu>
  103216. Date: 16 Mar 95 07:20:09 MDT
  103217. References: <3k1vs4$nrl@n.ruf.uni-freiburg.de> <3k4fna$sgs@n.ruf.uni-freiburg.de> <1995Mar15.075855.44824@cc.usu.edu> <3k7p51$snj@ccs-sparc2.queensu.ca>
  103218. Organization: Utah State University
  103219. Lines: 29
  103220. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  103221.  
  103222. In article <3k7p51$snj@ccs-sparc2.queensu.ca>, mike@post.queensu.ca (Mike Smith) writes:
  103223. > In article <1995Mar15.075855.44824@cc.usu.edu>, jrd@cc.usu.edu (Joe Doupnik) writes:
  103224. > |>     When Windows is active it owns the serial port hardware. It provides
  103225. > |> a virtualized set of serial ports to the DOS box and other Windows
  103226. > |> applications. Thus you must configure Windows to see your COM4 port, and
  103227. > |> then Kermit will be able to access it within Windows.
  103228. > This sounds encouraging, but I recently had a Windows/Kermit complication
  103229. > with a user with a modem on COM4.  Her modem would not work at all with Kermit
  103230. > until we reconfigured it to use IRQ5.  Then it worked under DOS but not
  103231. > Windows.  I assumed it was because we had to tell Windows to use IRQ5, so
  103232. > we went into Control Panel...Ports...COM4...Advanced, changed the IRQ and
  103233. > rebooted.  This did not correct the problem.  Is there something more
  103234. > to configuring Windows to see the COM4 port?
  103235. ------------
  103236.     Fellas, this is a Windows configuration problem. Mr. Gates & Co
  103237. make lots of money selling Windows, and rumors have it that they even
  103238. offer Tech Support for the product. For those unable to wait and wait
  103239. on the T.S. phone line there is always the alternative of using Windows
  103240. to configure the serial port to match the hardware.
  103241.     The Kermit docs state that the nature of PC hardware is such that
  103242. IRQ wires and i/o port addresses cannot be shared. It's your job to make
  103243. that happen. The docs also explain that "COMx" is a label often misunderstood
  103244. (COMx does NOT have a particular hardware IRQ/port associated with it)
  103245. and that one needs to look slightly deeper before pinning numeric labels
  103246. on things. That's an invention by IBM when they designed the PC. 
  103247.     Joe D.
  103248.  
  103249. From news@columbia.edu Thu Mar 16 14:30:46 1995
  103250. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23618
  103251.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 16 Mar 1995 10:01:50 -0500
  103252. Received: by apakabar.cc.columbia.edu id AA00200
  103253.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 16 Mar 1995 10:01:49 -0500
  103254. Newsgroups: comp.protocols.kermit.misc
  103255. Path: news.columbia.edu!panix!news.mathworks.com!hookup!swrinde!howland.reston.ans.net!ix.netcom.com!netcom.com!helios
  103256. From: helios@netcom.com (Thomas David Nichols)
  103257. Subject: Re: Zmodem hangup??
  103258. Message-Id: <heliosD5JEzB.GyC@netcom.com>
  103259. Organization: Heliotrope Quality Systems
  103260. X-Newsreader: TIN [version 1.2 PL1]
  103261. References: <3k5lvn$cio@woodstock.socs.uts.EDU.AU>
  103262. Date: Thu, 16 Mar 1995 14:30:46 GMT
  103263. Lines: 13
  103264. Sender: helios@netcom21.netcom.com
  103265. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  103266.  
  103267. Vi Nham (vnham@socs.uts.EDU.AU) wrote:
  103268.  
  103269. : Note: I will not be able to change to 8n1.  Hence I am stuck with
  103270. :       7e1, is this meant I cann't run zmodem??
  103271.  
  103272. As I read the docs, yes.  Kermit is the only standard protocol that runs 
  103273. over 7-bit links.  However, some connections switch to 8-bit 
  103274. automatically when you need it.  You don't mention running zmodem on your 
  103275. ms-dos machine.  You aren't expecting MS-Kermit to receive the zmodem 
  103276. download, are you?  (I'll omit the obvious question of why use zmodem 
  103277. when Kermit is already running.)
  103278. -- 
  103279. David Nichols  <helios@netcom.com>  Heliotrope Quality Systems
  103280.  
  103281. From news@columbia.edu Thu Mar 16 14:39:43 1995
  103282. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23644
  103283.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 16 Mar 1995 10:02:05 -0500
  103284. Received: by apakabar.cc.columbia.edu id AA00234
  103285.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 16 Mar 1995 10:02:04 -0500
  103286. Newsgroups: comp.protocols.kermit.misc
  103287. Path: news.columbia.edu!panix!news.mathworks.com!zombie.ncsc.mil!news.duke.edu!news-feed-1.peachnet.edu!gatech!howland.reston.ans.net!ix.netcom.com!netcom.com!helios
  103288. From: helios@netcom.com (Thomas David Nichols)
  103289. Subject: Re: Kermit challenge
  103290. Message-Id: <heliosD5JFE8.Hs1@netcom.com>
  103291. Organization: Heliotrope Quality Systems
  103292. X-Newsreader: TIN [version 1.2 PL1]
  103293. References: <3k6ton$lvp@post.gsfc.nasa.gov>
  103294. Distribution: na
  103295. Date: Thu, 16 Mar 1995 14:39:43 GMT
  103296. Lines: 19
  103297. Sender: helios@netcom21.netcom.com
  103298. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  103299.  
  103300. Brian D. Schieber (schieb@shark.gsfc.nasa.gov) wrote:
  103301.  
  103302. : What I want to do is:
  103303.  
  103304. : 1. run kermit190 from my Solaris (UNIX) Workstation
  103305. : 2. telnet through kermit to another workstation 
  103306. : 3. hit return (with the script)
  103307. : 4. get the "Call, Display, or Modify?" modem pool prompt from there...
  103308.  
  103309. : At present, once I do #2, my command in my kermit script are useless.
  103310. : I guess once I telnet there I'm just disconnected from my kermit 
  103311. : session... the workstation ONLY provides the "Call, Display, or Modify?"
  103312.  
  103313. As a non-wizard, I'm not sure what you mean by "disconnected from my 
  103314. kermit session."  What message do you get?  Are you sure the network 
  103315. variables are correct for telnetting?  Does it work when you type in
  103316. the commands instead of running the script?
  103317. -- 
  103318. David Nichols  <helios@netcom.com>  Heliotrope Quality Systems
  103319.  
  103320. From news@columbia.edu Thu Mar 16 15:08:23 1995
  103321. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25197
  103322.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 16 Mar 1995 10:26:19 -0500
  103323. Received: by apakabar.cc.columbia.edu id AA02251
  103324.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 16 Mar 1995 10:26:16 -0500
  103325. Path: news.columbia.edu!panix!news.mathworks.com!solaris.cc.vt.edu!insosf1.infonet.net!newshost.marcam.com!charnel.ecst.csuchico.edu!news.xmission.com!xmission.xmission.com!not-for-mail
  103326. From: fozz@xmission.xmission.com (Fozziliny Moo)
  103327. Newsgroups: comp.protocols.kermit.misc
  103328. Subject: Re: MS-Kermit v3.14 missing duplicating characters
  103329. Date: 16 Mar 1995 08:08:23 -0700
  103330. Organization: XMission Public Access Internet (801 539 0900)
  103331. Lines: 55
  103332. Message-Id: <3k9k97$d4@xmission.xmission.com>
  103333. References: <3jqf6p$j2g@xmission.xmission.com> <3k1knl$dbh@apakabar.cc.columbia.edu>
  103334. Nntp-Posting-Host: xmission.xmission.com
  103335. X-Newsreader: NN version 6.5.0 #1 (NOV)
  103336. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  103337.  
  103338. fdc@watsun.cc.columbia.edu (Frank da Cruz) writes:
  103339.  
  103340. >>I get ATT or just A
  103341. >>Typing in ATDT5551234 comes out like
  103342. >>ATDDT5551134
  103343. >>Here are the strategies I've tried to resolve this problem:
  103344. >>Bumped the baud rate of the serial port to 57600, 28800, 14400, 9600, and 
  103345. >>2400. No effect. Made use I was using hardware handshaking with the modem.
  103346. >>No effect.
  103347. >>Now- I use Trumpet Winsock in Windows and I don't seem to have any problems
  103348. >>communicating with the modem at 115200 with Trumpets internal serial driver.
  103349. >>I can also use the Windows Terminal program (ugh) and communicate flawlessly.
  103350. >>But as a loyal user of MS-Kermit, I'd rather not be tied to these apps. 
  103351.  
  103352. >The real question is:  Does the crazy echoing happen only during dialing,
  103353. >or does it also happen after the connection is made?  If it happens only
  103354. >during dialing, then you've got a buggy modem.  Probably you don't see the
  103355. >dialing when using Trumpet Winsock, because it's all hidden behind something.
  103356.  
  103357. I bumped the modem down to 300 baud and watched the lights to see if the 
  103358. missing/duplicating characters were on the computer side or the modem side.
  103359. I used the MS-Kermit command SET LOCAL-ECHO ON so I could tell what was
  103360. supposed to be echoed back.
  103361.  
  103362. From this test, I discovered the problem is not the modem. It could be the
  103363. cable, but I doubt it (for reasons explained below).
  103364.  
  103365. >On the other hand, if you are also getting bad data while online, that
  103366. >indicates a buggy UART and/or system bus or other system component, or
  103367. >perhaps interrupt conflicts or TSR interference.  
  103368.  
  103369. I just reformatted the hard drive and installed MS-DOS v6.22 (because I had
  103370. PC-DOS v6.1 and it was corrupting my FAT table). After reinstalling Windows
  103371. I noticed that I was getting the same problems with my Windows apps- the
  103372. data being sent to the modem was either getting lost, or more often, getting
  103373. duplicated or garbled up.
  103374.  
  103375. Then I remembered seeing a line in my old SYSTEM.INI that read COM2FIFO=0 
  103376. (in the 386Enh section). It was added by the company that built the 
  103377. computer and pre-loaded the software (and that crappy PC-DOS). So I added
  103378. that to the SYSTEM.INI and my Windows comm apps now work terrific. No problems
  103379. at all. I had three FTP sessions, a Telnet session, and a WWW session all
  103380. running at the same time over this 28.8 modem. 
  103381.  
  103382. Now I know this has to do with the FIFO capabilities of the 16550 UART
  103383. on my serial port, but how do I instruct my DOS apps like MS-DOS Kermit to 
  103384. do that? Is there some kind of device driver or TSR that I can load that
  103385. will tweak the 16550 the way it needs to be tweaked or does this all mean
  103386. that there is something WRONG with the UART?
  103387.  
  103388. -Fozz
  103389. -- 
  103390. ================fozz@xmission.com==http://xmission.com/~fozz/==================
  103391. ==     ``Today could be a dream of tomorrow that you had last night. ''      ==
  103392. ======================Doran L. Barton | Fozziliny G. Moo=======================
  103393.  
  103394. From news@columbia.edu Thu Mar 16 16:31:43 1995
  103395. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01019
  103396.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 16 Mar 1995 12:00:54 -0500
  103397. Received: by apakabar.cc.columbia.edu id AA09684
  103398.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 16 Mar 1995 12:00:52 -0500
  103399. Newsgroups: comp.protocols.kermit.misc
  103400. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!pipex!uknet!pcl!chrish
  103401. From: chrish@westminster.ac.uk (Chris Holmes)
  103402. Subject: Re: Mac Kermit and END key
  103403. Message-Id: <D5JKKw.BGK@westminster.ac.uk>
  103404. Sender: news@westminster.ac.uk
  103405. Nntp-Posting-Host: newbadger
  103406. Organization: University of Westminster
  103407. X-Newsreader: TIN [version 1.2 PL2]
  103408. References: <D5J9G3.Hy4@westminster.ac.uk>
  103409. Date: Thu, 16 Mar 1995 16:31:43 GMT
  103410. Lines: 8
  103411. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  103412.  
  103413. Chris Holmes (chrish@westminster.ac.uk) wrote:
  103414. : I have been trying to get a MAC key to emulate the VT220 END key.  I can setup
  103415. : PF keys by using the same syntax as MS Kermit, eg \KPF4.  However I cant seem 
  103416. : to get a key to work as END.
  103417.  
  103418. : Any suggestions?
  103419.  
  103420. Forgot to say, its Mac Kermit 189.
  103421.  
  103422. From news@columbia.edu Thu Mar 16 23:48:34 1995
  103423. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27664
  103424.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 16 Mar 1995 18:48:39 -0500
  103425. Received: by apakabar.cc.columbia.edu id AA11791
  103426.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 16 Mar 1995 18:48:38 -0500
  103427. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  103428. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  103429. Newsgroups: comp.protocols.kermit.misc
  103430. Subject: Re: MS-Kermit v3.14 missing duplicating characters
  103431. Date: 16 Mar 1995 23:48:34 GMT
  103432. Organization: Columbia University
  103433. Lines: 39
  103434. Message-Id: <3kaioi$bgc@apakabar.cc.columbia.edu>
  103435. References: <3jqf6p$j2g@xmission.xmission.com> <3k1knl$dbh@apakabar.cc.columbia.edu> <3k9k97$d4@xmission.xmission.com>
  103436. Nntp-Posting-Host: watsun.cc.columbia.edu
  103437. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  103438.  
  103439. In article <3k9k97$d4@xmission.xmission.com>,
  103440. Fozziliny Moo <fozz@xmission.xmission.com> wrote:
  103441. >...
  103442. >Then I remembered seeing a line in my old SYSTEM.INI that read COM2FIFO=0 
  103443. >(in the 386Enh section). It was added by the company that built the 
  103444. >computer and pre-loaded the software (and that crappy PC-DOS). So I added
  103445. >that to the SYSTEM.INI and my Windows comm apps now work terrific. No problems
  103446. >at all. I had three FTP sessions, a Telnet session, and a WWW session all
  103447. >running at the same time over this 28.8 modem. 
  103448. >
  103449. >Now I know this has to do with the FIFO capabilities of the 16550 UART
  103450. >on my serial port, but how do I instruct my DOS apps like MS-DOS Kermit to 
  103451. >do that? Is there some kind of device driver or TSR that I can load that
  103452. >will tweak the 16550 the way it needs to be tweaked or does this all mean
  103453. >that there is something WRONG with the UART?
  103454. >
  103455. Anything is possible.  There are a lot of supposedly buffered UARTs that
  103456. don't buffer at all (much discussion of this in comp.dcom.modems, q.v.).
  103457.  
  103458. But you didn't say whether Kermit works now that you upgraded your system
  103459. and SYSTEM.INI.  Windows hides the actual UART from the application, and
  103460. presents it with a "virtual" (simulated) UART.  Kermit gets to see whatever
  103461. Windows lets it see.  Type SHOW COMM in Kermit, and see if reports FIFO
  103462. (buffering) capability for the port.  If not, then Windows is hiding the
  103463. UART's 16550nes from Kermit.
  103464.  
  103465. The second question is: Does Kermit work well under plain DOS, no Windows
  103466. loaded?
  103467.  
  103468. If Kermit works well under DOS but not under Windows, then you'll have to
  103469. start digging through you Windows configuration files in even greater
  103470. detail than you have already.  Even then, it is unlikely to work as well
  103471. or as fast, since, under Windows, everthing -- screen writes, port i/o
  103472. in particular -- is virtualized and simulated and thus carries a of
  103473. overhead.  I.e. Kermit doesn't have the whole computer to itself, as it
  103474. does in DOS.  Kind of like the difference between driving on a wide-open
  103475. deserted highway and the Long Island Expressway at rush hour...
  103476.  
  103477. - Frank
  103478.  
  103479. From news@columbia.edu Thu Mar 16 22:25:40 1995
  103480. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28321
  103481.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 16 Mar 1995 19:01:04 -0500
  103482. Received: by apakabar.cc.columbia.edu id AA12511
  103483.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 16 Mar 1995 19:01:02 -0500
  103484. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!torn!news.ccs.queensu.ca!news.ccs.queensu.ca!not-for-mail
  103485. From: mike@knot.QueensU.CA (Mike Smith)
  103486. Newsgroups: comp.protocols.kermit.misc
  103487. Subject: Re: MS-Kermit, MS-Windows & Norton Desktop
  103488. Date: 16 Mar 1995 17:25:40 -0500
  103489. Organization: Queen's University, Kingston
  103490. Lines: 32
  103491. Message-Id: <3kadt5$t03@ccs-sparc2.queensu.ca>
  103492. References: <3k1vs4$nrl@n.ruf.uni-freiburg.de> <3k4fna$sgs@n.ruf.uni-freiburg.de> <1995Mar15.075855.44824@cc.usu.edu> <3k7p51$snj@ccs-sparc2.queensu.ca> <1995Mar16.072009.44999@cc.usu.edu>
  103493. Nntp-Posting-Host: ccs-sparc2.ccs
  103494. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  103495.  
  103496.  
  103497. Thank you to whoever mentioned that a missing COM3 might be my problem.
  103498. To briefly restate my problem, I could not get Kermit running under Windows
  103499. to work with a modem on COM4.  Using the Control Panel...Ports...Com4...
  103500. Advanced dialogue to set the COM4 address and irq was not enough.  I had
  103501. to tell Windows there was no physical COM3 on this system by:
  103502.  
  103503.    edit \windows\system.ini
  103504.    Search for the [386Enh] section
  103505.    Add the following line
  103506.     COM3IRQ=-1
  103507.  
  103508. I placed this in the obvious spot, just before the lines describing COM4.
  103509. So in my case, the file looked like this:
  103510.  
  103511.    COM3IRQ=-1
  103512.    COM4Base=02E8
  103513.    COM4IRQ=5
  103514.  
  103515. Note that I could have added all three lines with EDIT and avoided the Control
  103516. Panels...Ports interface.
  103517.  
  103518. One final observation: Joe is right that this is a Windows configuration
  103519. problem, not a Kermit configuration problem.  But I suspect that several
  103520. users at my University are badmouthing Kermit because of this Windows
  103521. problem.  I think a few lines should be added to kermit.bwr alerting
  103522. others of this Windows snafu.
  103523. -- 
  103524.  
  103525.  Mike Smith                                  mike@ccs.queensu.ca
  103526.  Queen's University                          Michael.D.Smith@QueensU.CA
  103527.  Computing and Communications Services       (613) 545-2024
  103528.  
  103529. From news@columbia.edu Thu Mar 16 21:05:26 1995
  103530. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28847
  103531.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 16 Mar 1995 19:14:28 -0500
  103532. Received: by apakabar.cc.columbia.edu id AA13423
  103533.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 16 Mar 1995 19:14:26 -0500
  103534. Newsgroups: comp.protocols.kermit.misc
  103535. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!ix.netcom.com!netcomsv!uu3news.netcom.com!netcomsv!uucp3.netcom.com!torii!ibm.mtsac.edu!1CMC3466
  103536. From: 1CMC3466@ibm.mtsac.edu (Curtiss Cicco)
  103537. Subject: Re: Linux ?
  103538. X-Nntp-Posting-Host: 140.144.202.50
  103539. Message-Id: <17363B819.1CMC3466@ibm.mtsac.edu>
  103540. Sender: usenet@triple-i.com
  103541. Organization: Mt. San Antonio College
  103542. X-Newsreader: NNR/VM S_1.3.2
  103543. References:  <tstevensD5ADys.KpK@netcom.com>
  103544. Date: Thu, 16 Mar 1995 21:05:26 GMT
  103545. Lines: 14
  103546. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  103547.  
  103548. In article <tstevensD5ADys.KpK@netcom.com>
  103549. tstevens@netcom.com (Edward Stevens) writes:
  103550.  
  103551. >
  103552. >        Where can I find the latest kermit for Linux ? Thanks.
  103553. >
  103554. >Ted Stevens
  103555. >
  103556. >--
  103557.      You can get it at the same place where it is available for other
  103558. systems, which is at kermit.columbia.edu, and if I remember correctly
  103559. the file name is C-kermit.linux or something to that effect.
  103560.  
  103561. -Curtiss
  103562.  
  103563. From news@columbia.edu Fri Mar 17 00:35:25 1995
  103564. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01129
  103565.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 16 Mar 1995 20:02:33 -0500
  103566. Received: by apakabar.cc.columbia.edu id AA16436
  103567.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 16 Mar 1995 20:02:31 -0500
  103568. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!gatech!swrinde!sgiblab!rahul.net!a2i!dold.a2i!dold
  103569. From: Clarence Dold <dold@rahul.net>
  103570. Newsgroups: comp.protocols.kermit.misc
  103571. Subject: Re: File Lengths
  103572. Date: 17 Mar 1995 00:35:25 GMT
  103573. Organization: a2i network
  103574. Lines: 24
  103575. Distribution: world
  103576. Message-Id: <3kalgd$7eb@hustle.rahul.net>
  103577. References: <3k8k0l$sai@pilot.njin.net>
  103578. Nntp-Posting-Host: foxtrot.rahul.net
  103579. Nntp-Posting-User: dold
  103580. X-Newsreader: TIN [version 1.2 PL2]
  103581. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  103582.  
  103583. Jim Green (jmgreen@pilot.njin.net) wrote:
  103584.  
  103585. : I have noticed that file lengths are sometimes altered in my kermit
  103586. : and zmodem transfers.
  103587.  
  103588. Two things that I have noticed in changing file sizes, and I can't remember
  103589. which protocol was involved (Kermit or ZModem).
  103590.  
  103591. If you transfer a file from UNIX to MSDOS, and transfer in the "text" mode,
  103592. the output will be padded by some number of CRLF in place of LF in the
  103593. original file, whether _you_ think the original was binary or not.
  103594.  
  103595. On UNIX: wc /bin/ls
  103596.       96     440   13352 /bin/ls
  103597. After transferring in a "text" mode, ls would grow to 13448, because there
  103598. appear to be 96 lines in it.  It also wouldn't work any more ;-(
  103599.  
  103600. The other oddity that I have seen is a padding to modulo 512.  I think that
  103601. it was ZModem that was doing this.  This would leave ls as 13824.
  103602.  
  103603. -- 
  103604. ---
  103605. Clarence A Dold - dold@rahul.net
  103606.                 - Pope Valley & Napa CA.
  103607.  
  103608. From news@columbia.edu Thu Mar 16 11:24:07 1995
  103609. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01283
  103610.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 16 Mar 1995 20:05:48 -0500
  103611. Received: by apakabar.cc.columbia.edu id AA16577
  103612.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 16 Mar 1995 20:05:47 -0500
  103613. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news.sprintlink.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  103614. From: jrd@cc.usu.edu (Joe Doupnik)
  103615. Newsgroups: comp.protocols.kermit.misc
  103616. Subject: Re: File Lengths
  103617. Message-Id: <1995Mar16.172407.45066@cc.usu.edu>
  103618. Date: 16 Mar 95 17:24:07 MDT
  103619. References: <3k8k0l$sai@pilot.njin.net>
  103620. Distribution: world
  103621. Organization: Utah State University
  103622. Lines: 35
  103623. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  103624.  
  103625. In article <3k8k0l$sai@pilot.njin.net>, jmgreen@pilot.njin.net (Jim Green) writes:
  103626. > I have noticed that file lengths are sometimes altered in my kermit
  103627. > and zmodem transfers.
  103628. > I just performed the following little experiment:
  103629. > I FTP'd a 4999 byte ASCII file from a unix machine to my VMS VAX
  103630. > I don't know how to tell the file length in VMS
  103631. > I then used both ckermit and sz to transfer to my PC using Telix
  103632. > Using ckermit into Telix kermit, Telix reports a file length of 5103
  103633. > and the PC dir also gives 5103.
  103634. > BUT
  103635. > Using SZ into DSZ via Telix, Telix/DSZ reports 5148 bytes and the PC
  103636. > dir gives 4999.
  103637. > IE zmodem eventually preserved the original file length
  103638. > and kermit did not.
  103639. > Could someone explain these various numbers to me or suggest a more
  103640. > definitive experiment.
  103641. > TX ........ Jim Green ............ jmgreen@cc.snow.edu
  103642. -------------
  103643.     Most likely you got involved with binary versus text mode
  103644. transfers. If the file were really text then each of the transfer
  103645. steps should have used text as it's "mode." Text mode is stored
  103646. differently on every machine so file size is strictly a local value.
  103647. But if some steps used binary mode then raw bytes come across the
  103648. wire and the "record boundaries/end of line indicators" may/will
  103649. be all wrong. For example, Unix uses LF as eol indicators, DOS
  103650. uses CR/LF, VMS typically implies CR/LF for text, and so on. It's 
  103651. up to you to choose the mode since there is no certain way of 
  103652. distinguishing pure text from data of some kind.
  103653.     Joe D.
  103654.  
  103655. From news@columbia.edu Fri Mar 17 01:36:56 1995
  103656. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02694
  103657.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 16 Mar 1995 20:37:01 -0500
  103658. Received: by apakabar.cc.columbia.edu id AA18487
  103659.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 16 Mar 1995 20:36:59 -0500
  103660. Path: news.columbia.edu!watsun.cc.columbia.edu!ylee
  103661. From: ylee@watsun.cc.columbia.edu (Yeechang Lee)
  103662. Newsgroups: comp.protocols.kermit.misc
  103663. Subject: Re: More on Manuals
  103664. Date: 17 Mar 1995 01:36:56 GMT
  103665. Organization: Trilateral Commission, Columbia University student chapter
  103666. Lines: 12
  103667. Message-Id: <3kap3o$i1l@apakabar.cc.columbia.edu>
  103668. References: <3k3ntp$5qd@pilot.njin.net>
  103669. Reply-To: Yeechang Lee <ycl6@columbia.edu>
  103670. Nntp-Posting-Host: watsun.cc.columbia.edu
  103671. X-Disclaimer: I sure as heck don't speak for Columbia or AcIS.
  103672. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  103673.  
  103674. James M. McClain <mcclain@pilot.njin.net> says:
  103675. |If it matters, please know that Chuck's zmodem docs are infact worse -
  103676. |totally incomprehensable.
  103677.  
  103678. That's an understatement--he must've gone to school somewhere to write
  103679. as obtusely (and narcissticly) as he does.
  103680.  
  103681. Yeechang "Loyal Kermit user, and not just because I work for AcIS" Lee
  103682. --   _____________________________________________________________________
  103683.      Yeechang Lee  <ylee@columbia.edu>|Nevada Las Vegas Mission Jul'92-'94
  103684.      Columbia University/New York City|Celestial Kingdom through Taco Bell
  103685.      <a href="http://www.columbia.edu/~ylee/">Yeechang Lee's home page</a>
  103686.  
  103687. From news@columbia.edu Fri Mar 17 05:26:42 1995
  103688. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14873
  103689.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 17 Mar 1995 01:29:28 -0500
  103690. Received: by apakabar.cc.columbia.edu id AA05038
  103691.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 17 Mar 1995 01:29:26 -0500
  103692. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!swrinde!elroy.jpl.nasa.gov!lll-winken.llnl.gov!noc.near.net!sun3.ipswitch.com!ddl
  103693. From: ddl@harvard.edu (Dan Lanciani)
  103694. Newsgroups: comp.protocols.kermit.misc
  103695. Subject: Re: MS-K and ndis3pkt.386 - broadcast problem
  103696. Message-Id: <2594@sun3.IPSWITCH.COM>
  103697. Date: 17 Mar 95 05:26:42 GMT
  103698. References: <3iuspg$jr9@infosrv.rz.unibw-muenchen.de> <1995Mar11.091710.44366@cc.usu.edu>
  103699. Organization: Internet 
  103700. Lines: 65
  103701. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  103702.  
  103703. In article <1995Mar11.091710.44366@cc.usu.edu>, jrd@cc.usu.edu (Joe Doupnik) writes:
  103704. | In article <3iuspg$jr9@infosrv.rz.unibw-muenchen.de>, p41bsmk@kommsrv.rz.unibw-muenchen.de (Peter Schmolck) writes:
  103705. | > I have tested Dan Lancini's ndis3 virtual packet driver (available from:
  103706. | > ftp://newdev.harvard.edu/pub/ndis3pkt) under WfW 3.11. It is easily
  103707. | > configurable and seems to work smoothly, allowing multiple packet driver
  103708. | > clients, even together with TCPIP32 winsocket clients at the same time (if
  103709. | > one assigns two different IP addresses for winsocket and packet clients). 
  103710. | > One of its advantages over my current solution with Odi stack and
  103711. | > Packet-Mux is that it preserves conventional memory. 
  103712. | > 
  103713. | > However there exists a problem due to the fact, as Dan Lancini explained
  103714. | > to me, that under NDIS3, clients always see their own broadcasts. Under
  103715. | > packet drivers, they usually do not. They send a broadcast looking for
  103716. | > others with their own address, and under NDIS3, see their own broadcast
  103717. | > and complain. NCSA telnet issues an error message but it works
  103718. | > nevertheless, MS-Kermit 3.13 doesn't seem to send broadcasts, and works
  103719. | > fine. MS-Kermit 3.14, however, stops to go ahead in this situation. 
  103720. | > 
  103721. | > Is there a possibility to turn off broadcast messages in 3.14?
  103722. | > 
  103723. | > Thanking you in advance 
  103724. | > 
  103725. | > Peter
  103726. | > 
  103727. | > P.S. If you respond to my question, could you please CC to my email 
  103728. | > address, because our news stuff here lags several days.
  103729. | > --
  103730. | > Peter Schmolck                                p41bsmk@rz.unibw-muenchen.de
  103731. | > Department of Education                       Phone :     +49-89-6004-2056
  103732. | > Univ. of the Federal Armed Forces Munich      Fax   :     +49-89-6004-3968
  103733. | > 85577 NEUBIBERG, GERMANY    
  103734. | ---------------
  103735. |     All ARP requests are physical layer broadcast frames. They must be
  103736. | since the purpose is to find the hardware address of a station on the local
  103737. | wire. In addition, MSK 3.14 will ARP for its own IP address to detect
  103738. | duplicate IP addresses. Thus all TCP/IP stacks send ARPs on Ethernet, and
  103739. | they can't really avoid doing so. 
  103740.  
  103741. The original poster is not asking that ARPs not be used.  He is asking that
  103742. applications not foolishly assume that they will never see their own
  103743. broadcasts.  Or at least that the resulting erroneous message not be fatal.
  103744.  
  103745. |     The cure is to stop the stupid local echoing in NDIS. It's that
  103746. | simple.
  103747.  
  103748. The local echoing is not stupid at all.  There has long been confusion
  103749. about whether clients of various network interface standards will
  103750. see their own transmissions.  In some cases no loopback occurs and
  103751. in others unicast packets are looped while broadcast packets are not.
  103752. The choice is often left to the indivudual hardware driver.  NDIS3
  103753. resolves the issue once and for all by declaring that a client
  103754. will see any packet that it transmits if that packet is acceptable
  103755. to the current filter.  In other words, the fact that you sent the
  103756. packet will not influence whether you receive it.
  103757.  
  103758. Unfortunately, programs like kermit don't even bother to check the
  103759. hardware source address of received packets before complaining that
  103760. someone has stolen their IP address.  (Now that *is* a bit stupid.)
  103761. But fear not.  To accommodate programs that insist on such silly
  103762. assumptions, the latest version of ndis3pkt has an option (enabled by
  103763. default) to hide a program's own broadcasts from itself.  This should
  103764. restore peace to the post-3.14 kermit world...
  103765.  
  103766.                 Dan Lanciani
  103767.                 ddl@harvard.*
  103768.  
  103769. From news@columbia.edu Fri Mar 17 09:20:00 1995
  103770. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22526
  103771.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 17 Mar 1995 05:34:06 -0500
  103772. Received: by apakabar.cc.columbia.edu id AA15965
  103773.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 17 Mar 1995 05:34:04 -0500
  103774. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!math.ohio-state.edu!jussieu.fr!univ-lyon1.fr!swidir.switch.ch!scsing.switch.ch!news.belwue.de!news.uni-freiburg.de!MPI2.IMMUNBIO.MPG.DE!GARTMANN
  103775. From: gartmann@immunbio.mpg.de (Christoph Gartmann)
  103776. Newsgroups: comp.protocols.kermit.misc
  103777. Subject: Re: MS-Kermit, MS-Windows & Norton Desktop
  103778. Date: 17 Mar 1995 09:20:00 GMT
  103779. Organization: Max-Planck-Institut fuer Immunbiologie
  103780. Lines: 32
  103781. Message-Id: <3kbk80$dnf@n.ruf.uni-freiburg.de>
  103782. References: <3k1vs4$nrl@n.ruf.uni-freiburg.de> <3k4fna$sgs@n.ruf.uni-freiburg.de>,<1995Mar15.075855.44824@cc.usu.edu>
  103783. Reply-To: gartmann@immunbio.mpg.de
  103784. Nntp-Posting-Host: mpi2.immunbio.mpg.de
  103785. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  103786.  
  103787. In article <1995Mar15.075855.44824@cc.usu.edu>, jrd@cc.usu.edu (Joe Doupnik) writes:
  103788.  
  103789. >    When Windows is active it owns the serial port hardware. It provides
  103790. >a virtualized set of serial ports to the DOS box and other Windows
  103791. >applications. Thus you must configure Windows to see your COM4 port, and
  103792. >then Kermit will be able to access it within Windows.
  103793.  
  103794. Please note that I wrote:
  103795. >>>Using COM4 from within the Windows-standard-Terminal program is all right,
  103796. >>>too.
  103797.  
  103798. Thus, I did configure COM4 under windows! That's why I can use COM4 together
  103799. with the MS terminal program shipped allong with Windows (VT52 & VT100).
  103800.  
  103801. >    Also, please review the docs in the MS-DOS Kermit distribution set
  103802. >regarding serial ports COM3 and COM4. In particular, there cannot be two
  103803. >devices using the same IRQ.
  103804.  
  103805. Under Windows there doesn't seem to be an IRQ problem, the same under DOS.
  103806. And under DOS started from within Windows there is one but only the first
  103807. time I call Kermit. Exiting Kermit and just entering Kermit again makes
  103808. the "IRQ-problem" disappear...
  103809.  
  103810. Regards,
  103811.   Christoph Gartmann
  103812.  
  103813. +----------------------------------------------------------------------------+
  103814. | Max-Planck-Institut fuer      Phone   : +49-761-5108-465   Fax: -221       |
  103815. | Immunbiologie                 PSI     : PSI%(0262)45050160374::GARTMANN    |
  103816. | Postfach 1169                 Internet: gartmann@immunbio.mpg.de           |
  103817. | D-79011  Freiburg, FRG                                                     |
  103818. +----------- Do you know MENUE, the user environment for OpenVMS? -----------+
  103819.  
  103820. From news@columbia.edu Fri Mar 17 09:29:12 1995
  103821. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22533
  103822.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 17 Mar 1995 05:34:19 -0500
  103823. Received: by apakabar.cc.columbia.edu id AA15974
  103824.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 17 Mar 1995 05:34:18 -0500
  103825. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!math.ohio-state.edu!jussieu.fr!univ-lyon1.fr!swidir.switch.ch!scsing.switch.ch!news.belwue.de!news.uni-freiburg.de!MPI2.IMMUNBIO.MPG.DE!GARTMANN
  103826. From: gartmann@immunbio.mpg.de (Christoph Gartmann)
  103827. Newsgroups: comp.protocols.kermit.misc
  103828. Subject: Re: MS-Kermit, MS-Windows & Norton Desktop
  103829. Date: 17 Mar 1995 09:29:12 GMT
  103830. Organization: Max-Planck-Institut fuer Immunbiologie
  103831. Lines: 27
  103832. Message-Id: <3kbkp8$dnf@n.ruf.uni-freiburg.de>
  103833. References: <3k1vs4$nrl@n.ruf.uni-freiburg.de> <3k4fna$sgs@n.ruf.uni-freiburg.de> <1995Mar15.075855.44824@cc.usu.edu> <3k7p51$snj@ccs-sparc2.queensu.ca>,<1995Mar16.072009.44999@cc.usu.edu>
  103834. Reply-To: gartmann@immunbio.mpg.de
  103835. Nntp-Posting-Host: mpi2.immunbio.mpg.de
  103836. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  103837.  
  103838. In article <1995Mar16.072009.44999@cc.usu.edu>, jrd@cc.usu.edu (Joe Doupnik) writes:
  103839.  
  103840. >    The Kermit docs state that the nature of PC hardware is such that
  103841. >IRQ wires and i/o port addresses cannot be shared. It's your job to make
  103842. >that happen. The docs also explain that "COMx" is a label often misunderstood
  103843. >(COMx does NOT have a particular hardware IRQ/port associated with it)
  103844. >and that one needs to look slightly deeper before pinning numeric labels
  103845. >on things. That's an invention by IBM when they designed the PC. 
  103846.  
  103847. Ok, then in more detail: I ran MSD to check the IRQs, then checked the serial
  103848. card, set the jumpers to use COM4 and an IRQ that was free, entered Windows to
  103849. configure COM4 (Control panel), told Kermit the IRQ and address of COM4, ran
  103850. the Windows terminal program (worked fine), ran Kermit under DOS (worked fine),
  103851. only got the problem when running Kermit under Windows. Going to the DOS prompt
  103852. and entering Kermit didn't work either, but leaving Kermit and entering it
  103853. again just immediately after I left it did work. Thus, this seems quit illogic
  103854. to me...
  103855.  
  103856. Hoping for some insight
  103857.   Christoph Gartmann
  103858.  
  103859. +----------------------------------------------------------------------------+
  103860. | Max-Planck-Institut fuer      Phone   : +49-761-5108-465   Fax: -221       |
  103861. | Immunbiologie                 PSI     : PSI%(0262)45050160374::GARTMANN    |
  103862. | Postfach 1169                 Internet: gartmann@immunbio.mpg.de           |
  103863. | D-79011  Freiburg, FRG                                                     |
  103864. +----------- Do you know MENUE, the user environment for OpenVMS? -----------+
  103865.  
  103866. From news@columbia.edu Tue Mar 14 13:26:14 1995
  103867. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11845
  103868.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 17 Mar 1995 06:57:23 -0500
  103869. Received: by apakabar.cc.columbia.edu id AA02670
  103870.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 17 Mar 1995 06:57:21 -0500
  103871. Path: news.columbia.edu!panix!news.mathworks.com!hookup!swrinde!howland.reston.ans.net!Germany.EU.net!Munich.Germany.EU.net!ibm.de!aixssc.uk.ibm.com!watnews.watson.ibm.com!news.manassas.ibm.com!zoso
  103872. From: zoso@postoffice.manassas.ibm.com (Randy D Anderson)
  103873. Newsgroups: comp.protocols.kermit.misc
  103874. Subject: Kermit-CMS File Transfers
  103875. Date: 14 Mar 1995 13:26:14 GMT
  103876. Organization: Loral Federal Systems - Manassas, VA
  103877. Lines: 14
  103878. Distribution: world
  103879. Message-Id: <3k45hm$m7r@news.manassas.ibm.com>
  103880. Reply-To: zoso@lfs.loral.com
  103881. Nntp-Posting-Host: oracledbs.manassas.ibm.com
  103882. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  103883.  
  103884. Does Kermit-CMS have the capability to send APC commands to MS-Kermit
  103885. the way that C-Kermit does?  I would like to implement the 'pcsend'
  103886. and 'pcget' macros found in C-Kermit 5A(190) that invoke MS-Kermit's
  103887. TERMINALR/TERMINALS macros, but so far haven't figured out if this
  103888. is possible.  I tried echo and xecho, but the escape sequences seem
  103889. to lose something in translation.  I am running MS-Kermit 3.14, and
  103890. Kermit-CMS 4.2.5 XA, dated 7/28/92. 
  103891.  
  103892.  
  103893. -- 
  103894. Randy Anderson               
  103895. zoso@lfs.loral.com         "I'm sorry, sir - we don't have medium fries.  
  103896. Loral Federal Systems       We only have small, large, and super-size."
  103897. Manassas, VA                                       - McDonald's employee
  103898.  
  103899. From news@columbia.edu Tue Mar 14 13:33:26 1995
  103900. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11986
  103901.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 17 Mar 1995 06:57:34 -0500
  103902. Received: by apakabar.cc.columbia.edu id AA02679
  103903.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 17 Mar 1995 06:57:32 -0500
  103904. Path: news.columbia.edu!panix!news.mathworks.com!hookup!swrinde!gatech!howland.reston.ans.net!Germany.EU.net!Munich.Germany.EU.net!ibm.de!aixssc.uk.ibm.com!watnews.watson.ibm.com!news.manassas.ibm.com!zoso
  103905. From: zoso@postoffice.manassas.ibm.com (Randy D Anderson)
  103906. Newsgroups: comp.protocols.kermit.misc
  103907. Subject: Re: Manuals
  103908. Date: 14 Mar 1995 13:33:26 GMT
  103909. Organization: Loral Federal Systems - Manassas, VA
  103910. Lines: 18
  103911. Distribution: world
  103912. Message-Id: <3k45v6$m7r@news.manassas.ibm.com>
  103913. References: <3k01ho$lp4@pilot.njin.net>
  103914. Reply-To: zoso@lfs.loral.com
  103915. Nntp-Posting-Host: oracledbs.manassas.ibm.com
  103916. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  103917.  
  103918. In article <3k01ho$lp4@pilot.njin.net>, mcclain@pilot.njin.net (James M. McClain) writes:
  103919.  
  103920. |> My recommendation to others is that they NOT get the manuals (which
  103921. |> come to some $85 if data for both ends are needed) they just don't
  103922. |> help much.
  103923.  
  103924. I have to say that I find the manuals to be both clearly-written and
  103925. helpful with regard to learning Kermit.  The "Using C-Kermit" book
  103926. in particular has lots of good information which would be difficult
  103927. to find elsewhere.  "Kermit: A File Transfer Protocol" is somewhat
  103928. out of date by now, but I still found it to be a useful reference as 
  103929. well as a good introduction to data communications programming concepts.
  103930.  
  103931. -- 
  103932. Randy Anderson               
  103933. zoso@lfs.loral.com         "I'm sorry, sir - we don't have medium fries.  
  103934. Loral Federal Systems       We only have small, large, and super-size."
  103935. Manassas, VA                                       - McDonald's employee
  103936.  
  103937. From news@columbia.edu Fri Mar 17 12:28:02 1995
  103938. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00783
  103939.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 17 Mar 1995 08:39:21 -0500
  103940. Received: by apakabar.cc.columbia.edu id AA07381
  103941.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 17 Mar 1995 08:39:20 -0500
  103942. Newsgroups: comp.protocols.kermit.misc
  103943. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!ix.netcom.com!netcomsv!uu3news.netcom.com!netcom.com!theo
  103944. From: theo@netcom.com (Theo CHINO)
  103945. Subject: The Cyberspace Homeless
  103946. Message-Id: <theoD5L3yq.F1r@netcom.com>
  103947. Organization: NETCOM On-line Communication Services (408 261-4700 guest)
  103948. Distribution: Cyberspace & humans being
  103949.     Hello Cyberspace,
  103950. Date: Fri, 17 Mar 1995 12:28:02 GMT
  103951. Lines: 47
  103952. Sender: theo@netcom11.netcom.com
  103953. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  103954.  
  103955.     As I was browing the net today, I came to the conclusion that I should put
  103956. these disclaimers.
  103957.     1) This is not a scam.
  103958.     2) I am not going to repost this again.
  103959.     3) This is really a true story.
  103960.     4) My real name is Theo CHINO
  103961.  
  103962.     This morning I tried to send this message. I failed. I got reminded by the 
  103963. people at Netcom that requesting money in the Internet was not allowed. Is that not 
  103964. against the principle of free enterprise? 
  103965.     Let put it that way, I am selling a service which is "nothing" for the price 
  103966. of a dollar and a stamp. My name is Theo Chino, and I have a story to tell. My story 
  103967. is at http://saturn.uaamath.alaska.edu/~theo. I didn't want to put it on the Net, but
  103968. desperation made me do so . My problem is that I am going insane for something I did
  103969. several years ago. I am in trouble. I have a stack of bill that I can not pay. I have
  103970. no job. My profession doesn't believe in me. So I became a homeless bump on information
  103971. Superhiway.
  103972.     In a sense, I am proud to be a homeless on the Internet. I might be raising
  103973. some issues. Because this message will be posted in most of the groups, I ask you, I
  103974. beg you, Moderator, to let this message on your newsgroup. I am asking you to be open,
  103975. a let me do this request for help. 
  103976.     You might want to insult me because I am disturbing the peace and tranquillity
  103977. of the place, but this is not intended as a flame. If you want to insult me, please
  103978. email me. If you want to help, please email me. If you have a question, please email me.
  103979.     Today, I just got one of my phone line cut because I did not pay a deposit. 
  103980. Next week I will get my Internet account pull out, and so on. You might ask why I can
  103981. not get a regular job and pay my bills like everyone else. The only jobs I can hold is
  103982. as a clerk making $7.00/hr. I hold no diploma because I couldn't finish the University.
  103983. I can not work in the computer field because one of my reference decided that I wasn't
  103984. good enough. So he burn me in this town. I can not start any idea because nobody will
  103985. ever give me a loan. I can not get food stamps because I do not work at a regular job.
  103986. What I know is that I don't want to be a store clerk all my life. A I ask I for a 
  103987. little compassion and a dollar 34 to allow me to get back on my tracks.
  103988.     Thanks for letting me expressing my views.
  103989.  
  103990.     The Cyberspace Homeless.
  103991.  
  103992.  
  103993. The reasonable man adapts himself to the world;
  103994. the unreasonable one persists in trying to adapt the world to himself.
  103995. Therefore all progress depends on the unreasonable man.
  103996.                                      George Bernard Shaw
  103997. -- 
  103998. ----------------------------------------------------------------------------
  103999.    *              *  | Theo CHINO
  104000.      *               | 814 Ivy Street - Box 593, Anchorage, AK 99501
  104001.        *             | theo@netcom.com theo@mail.nlis.com
  104002.         *    *       | http://saturn.uaamath.alaska.edu/~theo
  104003.     * *         | 'A POOR lost exiled french in the Last Frontier'
  104004. -----------------------------------------------------------------------------
  104005.  
  104006. From news@columbia.edu Fri Mar 17 14:16:37 1995
  104007. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02984
  104008.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 17 Mar 1995 09:16:45 -0500
  104009. Received: by apakabar.cc.columbia.edu id AA09946
  104010.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 17 Mar 1995 09:16:44 -0500
  104011. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  104012. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  104013. Newsgroups: comp.protocols.kermit.misc
  104014. Subject: Re: Kermit-CMS File Transfers
  104015. Date: 17 Mar 1995 14:16:37 GMT
  104016. Organization: Columbia University
  104017. Lines: 26
  104018. Message-Id: <3kc5k5$9ml@apakabar.cc.columbia.edu>
  104019. References: <3k45hm$m7r@news.manassas.ibm.com>
  104020. Nntp-Posting-Host: watsun.cc.columbia.edu
  104021. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  104022.  
  104023. In article <3k45hm$m7r@news.manassas.ibm.com>,
  104024. Randy D Anderson <zoso@lfs.loral.com> wrote:
  104025. >Does Kermit-CMS have the capability to send APC commands to MS-Kermit
  104026. >the way that C-Kermit does?
  104027. >
  104028. The new version, 4.3.1, does have this capability.
  104029.  
  104030. >I would like to implement the 'pcsend'
  104031. >and 'pcget' macros found in C-Kermit 5A(190) that invoke MS-Kermit's
  104032. >TERMINALR/TERMINALS macros...
  104033. >
  104034. Actually, they don't invoke the TERMINALR/TERMINALS macros.  That was
  104035. the "old way", which no longer works.  See the KERMIT.BWR file for
  104036. details.  The new way is to send actual Kermit commands embedded in APC
  104037. escape sequences.
  104038.  
  104039. >...but so far haven't figured out if this
  104040. >is possible.  I tried echo and xecho, but the escape sequences seem
  104041. >to lose something in translation.  I am running MS-Kermit 3.14, and
  104042. >Kermit-CMS 4.2.5 XA, dated 7/28/92. 
  104043. >
  104044. Get Kermit-CMS 4.3.1 from kermit.columbia.edu, directory kermit/b,
  104045. files ik0*.* and ikc*.*.  It has an APC command.  To write macros to
  104046. use it, similar to PCSEND, etc, in C-Kermit, use REXX.
  104047.  
  104048. - Frank
  104049.  
  104050. From news@columbia.edu Fri Mar 17 02:36:17 1995
  104051. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11555
  104052.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 17 Mar 1995 11:52:25 -0500
  104053. Received: by apakabar.cc.columbia.edu id AA21207
  104054.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 17 Mar 1995 11:52:24 -0500
  104055. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!gatech!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  104056. From: jrd@cc.usu.edu (Joe Doupnik)
  104057. Newsgroups: comp.protocols.kermit.misc
  104058. Subject: Re: MS-Kermit v3.14 missing duplicating characters
  104059. Message-Id: <1995Mar17.083617.45115@cc.usu.edu>
  104060. Date: 17 Mar 95 08:36:17 MDT
  104061. References: <3jqf6p$j2g@xmission.xmission.com> <3k1knl$dbh@apakabar.cc.columbia.edu> <3k9k97$d4@xmission.xmission.com>
  104062. Organization: Utah State University
  104063. Lines: 63
  104064. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  104065.  
  104066. In article <3k9k97$d4@xmission.xmission.com>, fozz@xmission.xmission.com (Fozziliny Moo) writes:
  104067. > fdc@watsun.cc.columbia.edu (Frank da Cruz) writes:
  104068. >>>I get ATT or just A
  104069. >>>Typing in ATDT5551234 comes out like
  104070. >>>ATDDT5551134
  104071. >>>Here are the strategies I've tried to resolve this problem:
  104072. >>>Bumped the baud rate of the serial port to 57600, 28800, 14400, 9600, and 
  104073. >>>2400. No effect. Made use I was using hardware handshaking with the modem.
  104074. >>>No effect.
  104075. >>>Now- I use Trumpet Winsock in Windows and I don't seem to have any problems
  104076. >>>communicating with the modem at 115200 with Trumpets internal serial driver.
  104077. >>>I can also use the Windows Terminal program (ugh) and communicate flawlessly.
  104078. >>>But as a loyal user of MS-Kermit, I'd rather not be tied to these apps. 
  104079. >>The real question is:  Does the crazy echoing happen only during dialing,
  104080. >>or does it also happen after the connection is made?  If it happens only
  104081. >>during dialing, then you've got a buggy modem.  Probably you don't see the
  104082. >>dialing when using Trumpet Winsock, because it's all hidden behind something.
  104083. > I bumped the modem down to 300 baud and watched the lights to see if the 
  104084. > missing/duplicating characters were on the computer side or the modem side.
  104085. > I used the MS-Kermit command SET LOCAL-ECHO ON so I could tell what was
  104086. > supposed to be echoed back.
  104087. > From this test, I discovered the problem is not the modem. It could be the
  104088. > cable, but I doubt it (for reasons explained below).
  104089. >>On the other hand, if you are also getting bad data while online, that
  104090. >>indicates a buggy UART and/or system bus or other system component, or
  104091. >>perhaps interrupt conflicts or TSR interference.  
  104092. > I just reformatted the hard drive and installed MS-DOS v6.22 (because I had
  104093. > PC-DOS v6.1 and it was corrupting my FAT table). After reinstalling Windows
  104094. > I noticed that I was getting the same problems with my Windows apps- the
  104095. > data being sent to the modem was either getting lost, or more often, getting
  104096. > duplicated or garbled up.
  104097. > Then I remembered seeing a line in my old SYSTEM.INI that read COM2FIFO=0 
  104098. > (in the 386Enh section). It was added by the company that built the 
  104099. > computer and pre-loaded the software (and that crappy PC-DOS). So I added
  104100. > that to the SYSTEM.INI and my Windows comm apps now work terrific. No problems
  104101. > at all. I had three FTP sessions, a Telnet session, and a WWW session all
  104102. > running at the same time over this 28.8 modem. 
  104103. > Now I know this has to do with the FIFO capabilities of the 16550 UART
  104104. > on my serial port, but how do I instruct my DOS apps like MS-DOS Kermit to 
  104105. > do that? Is there some kind of device driver or TSR that I can load that
  104106. > will tweak the 16550 the way it needs to be tweaked or does this all mean
  104107. > that there is something WRONG with the UART?
  104108. -------
  104109. Doran,
  104110.     From all you've told us I draw the conclusion that your motherboard's
  104111. UART is broken. If it really does 16550A emulation then Kermit and Windows
  104112. would use it with no problem. But if it pretends to be a 16550A but fails
  104113. to operate correctly then both programs will get caught; this appears to
  104114. by the case at hand.
  104115.     My suggestion is insert a regular serial board in the machine to
  104116. double check that it will work fine. Also don't overtune the hardware and
  104117. thus cause system bus problems. FIFO control is done by each application
  104118. program needing the serial port; there is no supplementary driver nor TSR 
  104119. etc that will or even could help.
  104120.         Joe D.
  104121.  
  104122. From news@columbia.edu Fri Mar 17 16:26:09 1995
  104123. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13193
  104124.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 17 Mar 1995 12:16:54 -0500
  104125. Received: by apakabar.cc.columbia.edu id AA23212
  104126.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 17 Mar 1995 12:16:52 -0500
  104127. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!spool.mu.edu!usenet.eel.ufl.edu!news.mathworks.com!newshost.marcam.com!uunet!in1.uu.net!fonorola!mitel!usenet
  104128. From: colin_howell@mitel.com (Colin Howell)
  104129. Newsgroups: comp.protocols.kermit.misc
  104130. Subject: Question....Is kermit freeware???
  104131. Date: 17 Mar 1995 16:26:09 GMT
  104132. Organization: Mitel Telecom Ltd. (UK)
  104133. Lines: 24
  104134. Message-Id: <3kcd71$g6r@mitel.mitel.com>
  104135. Nntp-Posting-Host: apps_sw.mitel.com
  104136. X-Newsreader: WinVN 0.93.14
  104137. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  104138.  
  104139. Can anybody help?
  104140.  
  104141. I dare say this is a FAQ so I appologise in advance. After talking with 
  104142. several people I still don't have a definitive answer.
  104143.  
  104144. I am looking for a copy of Kermit or the source that can be compiled to 
  104145. run on a unix platform running Interactive 4.0 / 4.1. I would like to 
  104146. distribute this free with an application to enable me to carry out remote 
  104147. maintenance. It may be that there are several versions of kermit some of 
  104148. which are freeware I really don't know, if someone can answer this 
  104149. question and possibly point me in the right direction with an ftp address 
  104150. I would be most grateful.
  104151.  
  104152. Thanks for your time
  104153.  
  104154. Colin    
  104155. -- 
  104156. ==========================================================================
  104157. Colin "B" Howell             | Mitel Telecom Ltd. (UK)    +44 1753 816300
  104158.                              |
  104159. Applications Support Group   | Email: Colin_Howell@Mitel.Com     
  104160.                              |
  104161.   ====My Thoughts, Opinions And Views Are Entirely My Own....Honest!====
  104162.  
  104163.  
  104164. From news@columbia.edu Fri Mar 17 20:43:08 1995
  104165. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25516
  104166.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 17 Mar 1995 15:43:12 -0500
  104167. Received: by apakabar.cc.columbia.edu id AA10333
  104168.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 17 Mar 1995 15:43:10 -0500
  104169. Path: news.columbia.edu!watsun.cc.columbia.edu!pepmnt
  104170. From: pepmnt@watsun.cc.columbia.edu (John Chandler)
  104171. Newsgroups: comp.protocols.kermit.misc
  104172. Subject: Re: Kermit-CMS File Transfers
  104173. Date: 17 Mar 1995 20:43:08 GMT
  104174. Organization: Columbia University
  104175. Lines: 32
  104176. Message-Id: <3kcs8s$a2q@apakabar.cc.columbia.edu>
  104177. References: <3k45hm$m7r@news.manassas.ibm.com> <3kc5k5$9ml@apakabar.cc.columbia.edu>
  104178. Nntp-Posting-Host: watsun.cc.columbia.edu
  104179. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  104180.  
  104181. In article <3kc5k5$9ml@apakabar.cc.columbia.edu>,
  104182. Frank da Cruz <fdc@watsun.cc.columbia.edu> wrote:
  104183. >In article <3k45hm$m7r@news.manassas.ibm.com>,
  104184. >Randy D Anderson <zoso@lfs.loral.com> wrote:
  104185. >>Does Kermit-CMS have the capability to send APC commands to MS-Kermit
  104186. >>the way that C-Kermit does?
  104187. >>
  104188. >The new version, 4.3.1, does have this capability.
  104189. >
  104190. >>I would like to implement the 'pcsend'
  104191. >>and 'pcget' macros found in C-Kermit 5A(190) that invoke MS-Kermit's
  104192. >>TERMINALR/TERMINALS macros...
  104193. >>
  104194. >Actually, they don't invoke the TERMINALR/TERMINALS macros.  That was
  104195. >the "old way", which no longer works.
  104196.  
  104197. In fact, the CMS Kermit distribution includes a file of sample EXEC's
  104198. called ikcaux.cmd -- this contains, among other things, an obsolete
  104199. version of a PC EXEC, using TERMINALS, that incorporates both SEND and
  104200. GET functions.  The only reason it hasn't been upgraded is that no one
  104201. has complained yet.
  104202.  
  104203. >Get Kermit-CMS 4.3.1 from kermit.columbia.edu, directory kermit/b,
  104204. >files ik0*.* and ikc*.*.  It has an APC command.  To write macros to
  104205. >use it, similar to PCSEND, etc, in C-Kermit, use REXX.
  104206.  
  104207.  ... or use EXEC 2 if you prefer.  Both have mechanisms for invoking
  104208. Kermit subcommands directly.
  104209.                     John
  104210.  
  104211.  
  104212.  
  104213.  
  104214. From news@columbia.edu Fri Mar 17 15:00:10 1995
  104215. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07421
  104216.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 17 Mar 1995 19:23:17 -0500
  104217. Received: by apakabar.cc.columbia.edu id AA25774
  104218.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 17 Mar 1995 19:23:15 -0500
  104219. Newsgroups: comp.protocols.kermit.misc
  104220. Path: news.columbia.edu!panix!news.mathworks.com!news.ultranet.com!news.sprintlink.net!howland.reston.ans.net!ix.netcom.com!netcomsv!uu3news.netcom.com!netcom.com!theo
  104221. From: theo@netcom.com
  104222. Subject: cmsg cancel <theoD5L3yq.F1r@netcom.com>
  104223. Control: cancel <theoD5L3yq.F1r@netcom.com>
  104224. Sender: theo@netcom11.netcom.com
  104225. Date: Fri, 17 Mar 1995 15:00:10 GMT 
  104226. Message-Id: <cancel.theoD5L3yq.F1r@netcom.com>
  104227. Organization: Netcom Online Communication Services
  104228. Lines: 3
  104229. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  104230.  
  104231.  
  104232. Netcom news admin request this cancel
  104233.  
  104234.  
  104235. From news@columbia.edu Sat Mar 18 00:00:02 1995
  104236. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08352
  104237.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 17 Mar 1995 19:33:27 -0500
  104238. Received: by apakabar.cc.columbia.edu id AA26331
  104239.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 17 Mar 1995 19:33:26 -0500
  104240. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!math.ohio-state.edu!jussieu.fr!fdn.fr!uunet!lionel.inhouse.compuserve.com!news.inhouse.compuserve.com!news.production.compuserve.com!news
  104241. From: marci kickliter <74403.2177@CompuServe.COM>
  104242. Newsgroups: comp.protocols.kermit.misc
  104243. Subject: DOS kermit transmit pblm
  104244. Date: 18 Mar 1995 00:00:02 GMT
  104245. Organization: Sungard Financial Systems
  104246. Lines: 30
  104247. Message-Id: <3kd7q2$5o6$1@mhade.production.compuserve.com>
  104248. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  104249.  
  104250. I'm having some flaky problems using the transmit command of 
  104251. MS-DOS Kermit.
  104252.  
  104253. I have a file containing one line, an AIX command line. 
  104254.  
  104255. After logging onto AIX via Kermit, I kick off a Kermit script 
  104256. which initiates a new log file (in which I want to capture the 
  104257. output of the command I'm transmitting). The script then 
  104258. transmits the contents of the file containing the AIX command 
  104259. line. Then the script "restarts" the logging into the original 
  104260. log file.
  104261.  
  104262. Apparently the command line runs on AIX, executing a program 
  104263. which writes data to stdout. Trouble is, sometimes the output 
  104264. makes it to the screen (kermit screen) and thus to the log file; 
  104265. sometimes it does not.
  104266.  
  104267. Changing the AIX program which is initiated via the kermit 
  104268. transmit seemed to help. We added a command to it so it "slows 
  104269. down" and sleeps briefly. Now we see the stdout output from the 
  104270. program more consistently.
  104271.  
  104272.  Any ideas on why we're seeing such flaky results? Any 
  104273. suggestions? Thanks!!   marci
  104274.  
  104275. -- 
  104276. -- marcik
  104277. * "No one can take this away from me
  104278.    The martyrs and madmen I learned of in school
  104279.    Will remember my name" -- Kevin Gilbert *
  104280.  
  104281. From news@columbia.edu Sun Mar 18 01:33:10 1995
  104282. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11787
  104283.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 17 Mar 1995 21:02:59 -0500
  104284. Received: by apakabar.cc.columbia.edu id AA01454
  104285.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 17 Mar 1995 21:02:57 -0500
  104286. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news.sprintlink.net!hookup!newshost.marcam.com!uunet!dziuxsolim.rutgers.edu!pilot.njin.net!not-for-mail
  104287. From: jmgreen@pilot.njin.net (Jim Green)
  104288. Newsgroups: comp.protocols.kermit.misc
  104289. Subject: COM4
  104290. Date: 17 Mar 1995 20:33:10 -0500
  104291. Organization: Rutgers University
  104292. Lines: 25
  104293. Distribution: world
  104294. Message-Id: <3kdd8m$27s@pilot.njin.net>
  104295. Nntp-Posting-Host: pilot.njin.net
  104296. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  104297.  
  104298.  
  104299.  
  104300. Mike Smith wonders how to use Kermit with COM4.  Mike I too would like
  104301. to use MS-Kermit with COM4 and IRQ5.  In fact I have been trying to
  104302. get help for several months, but it has not been forthcomming.
  104303. Private correspondence with JRD and a carefull reading of the .BWR
  104304. file seem to say the following:
  104305.  
  104306. When the system boots BIOS first looks at 03f8 to see if there is a
  104307. serial device there (ie a UART), if there is BIOS assigns the logical
  104308. name COM1 to it.  It then looks at 02f8 and like wise if there is a
  104309. UART there, it assigns the logical name COM2.  However, if there is
  104310. NOT a UART at 03f8, but there IS at 02f8 then BIOS assigns the logical
  104311. name ***COM1*** to 03f8.  The docs further seem to say that if there
  104312. is NO UART at 03e8, but there is at 02e8, thern BIOS assigns the
  104313. logical name ***COM3*** to 02e8, instead of COM4.
  104314.  
  104315. Now, Mike, you are the one who says that the docs are clear to you, is
  104316. this what they say???  Do you believe it???
  104317.  
  104318. Oh and before Joe or Frank jump in to ask why you didn't read the docs
  104319. before you posted, let me do the honors.  And also do you own the
  104320. manuals???
  104321.  
  104322. Best wishes ....... Jim Green ............ jmgreen@cc.snow.edu
  104323.  
  104324. From news@columbia.edu Fri Mar 17 15:20:18 1995
  104325. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16377
  104326.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 17 Mar 1995 23:37:15 -0500
  104327. Received: by apakabar.cc.columbia.edu id AA09882
  104328.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 17 Mar 1995 23:37:13 -0500
  104329. Path: news.columbia.edu!panix!news.mathworks.com!news.duke.edu!convex!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  104330. From: jrd@cc.usu.edu (Joe Doupnik)
  104331. Newsgroups: comp.protocols.kermit.misc
  104332. Subject: Re: MS-Kermit, MS-Windows & Norton Desktop
  104333. Message-Id: <1995Mar17.212018.45190@cc.usu.edu>
  104334. Date: 17 Mar 95 21:20:18 MDT
  104335. References: <3k1vs4$nrl@n.ruf.uni-freiburg.de> <3k4fna$sgs@n.ruf.uni-freiburg.de>  <3kbkp8$dnf@n.ruf.uni-freiburg.de>
  104336. Organization: Utah State University
  104337. Lines: 42
  104338. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  104339.  
  104340. In article <3kbkp8$dnf@n.ruf.uni-freiburg.de>, gartmann@immunbio.mpg.de (Christoph Gartmann) writes:
  104341. > In article <1995Mar16.072009.44999@cc.usu.edu>, jrd@cc.usu.edu (Joe Doupnik) writes:
  104342. >>    The Kermit docs state that the nature of PC hardware is such that
  104343. >>IRQ wires and i/o port addresses cannot be shared. It's your job to make
  104344. >>that happen. The docs also explain that "COMx" is a label often misunderstood
  104345. >>(COMx does NOT have a particular hardware IRQ/port associated with it)
  104346. >>and that one needs to look slightly deeper before pinning numeric labels
  104347. >>on things. That's an invention by IBM when they designed the PC. 
  104348. > Ok, then in more detail: I ran MSD to check the IRQs, then checked the serial
  104349. > card, set the jumpers to use COM4 and an IRQ that was free, entered Windows to
  104350. > configure COM4 (Control panel), told Kermit the IRQ and address of COM4, ran
  104351. > the Windows terminal program (worked fine), ran Kermit under DOS (worked fine),
  104352. > only got the problem when running Kermit under Windows. Going to the DOS prompt
  104353. > and entering Kermit didn't work either, but leaving Kermit and entering it
  104354. > again just immediately after I left it did work. Thus, this seems quit illogic
  104355. > to me...
  104356. ----------------
  104357.     The insight has already been written up in the MSK release docs.
  104358. But one more time, the bare essentials of the problem.
  104359.     COMx is a logical name used for convenience and means the x'th
  104360. serial port. It does NOT mean a particular port and IRQ value.
  104361.     The Bios looks for serial ports at \03f8 and \02f8 and if found
  104362. fills in those port addresses to a table. First found first filled in.
  104363. The four table entries available represent COM1...COM4. Only a few BIOS'
  104364. search beyond these two addresses, hence COM3 and COM4 table slots are 
  104365. empty.
  104366.     A number of modem comms programs provide a table of COMx selections
  104367. together with port and IRQ numbers. Associations like this are strictly
  104368. up to the author of the program, and now you know why.
  104369.     What counts are the port and IRQ values. Tell Kermit about them
  104370. with SET COMx port irq. Tell Windows too via the Control Panel.
  104371.     Very very few programs can deduce IRQ usage. MSD and friends do
  104372. not, and all they show are the "common" usages with no testing to check.
  104373. MS-DOS Kermit can deduce, but restricts itself to IRQ 4 and 3 only to
  104374. preserve the safety of your machine. No two boards may share an IRQ;
  104375. only one device per IRQ even if the device is "unused."
  104376.     From your notes I infer that you have an IRQ conflict and it must
  104377. be resolved for normal operation. Time to pop the cover and get your fingers
  104378. cut looking at all the boards in detail.
  104379.     Joe D.
  104380.  
  104381. From news@columbia.edu Sat Mar 18 16:22:06 1995
  104382. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11528
  104383.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 18 Mar 1995 11:22:11 -0500
  104384. Received: by apakabar.cc.columbia.edu id AA28823
  104385.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 18 Mar 1995 11:22:09 -0500
  104386. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  104387. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  104388. Newsgroups: comp.protocols.kermit.misc
  104389. Subject: Re: DOS kermit transmit pblm
  104390. Date: 18 Mar 1995 16:22:06 GMT
  104391. Organization: Columbia University
  104392. Lines: 39
  104393. Message-Id: <3kf1be$s4l@apakabar.cc.columbia.edu>
  104394. References: <3kd7q2$5o6$1@mhade.production.compuserve.com>
  104395. Nntp-Posting-Host: watsun.cc.columbia.edu
  104396. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  104397.  
  104398. In article <3kd7q2$5o6$1@mhade.production.compuserve.com>,
  104399. marci kickliter  <74403.2177@CompuServe.COM> wrote:
  104400. > I'm having some flaky problems using the transmit command of 
  104401. >MS-DOS Kermit.
  104402. > I have a file containing one line, an AIX command line. 
  104403. >After logging onto AIX via Kermit, I kick off a Kermit script 
  104404. >which initiates a new log file (in which I want to capture the 
  104405. >output of the command I'm transmitting). The script then 
  104406. >transmits the contents of the file containing the AIX command 
  104407. >line. Then the script "restarts" the logging into the original 
  104408. >log file.
  104409. > Apparently the command line runs on AIX, executing a program 
  104410. >which writes data to stdout. Trouble is, sometimes the output 
  104411. >makes it to the screen (kermit screen) and thus to the log file; 
  104412. >sometimes it does not.
  104413. > Changing the AIX program which is initiated via the kermit 
  104414. >transmit seemed to help. We added a command to it so it "slows 
  104415. >down" and sleeps briefly. Now we see the stdout output from the 
  104416. >program more consistently.
  104417. >
  104418. Merci for the report, Marci.
  104419.  
  104420. The problem is that the TRANSMIT command also reads stuff back,
  104421. searching for echos, linefeeds, prompts, and suchlike, and
  104422. is therefore likely to absorb the thing you are looking for
  104423. before you get a chance to see it.
  104424.  
  104425. Instead of using TRANSMIT, you should simply OUTPUT the line.
  104426. OUTPUT sends stuff without reading anything back.  The INPUT
  104427. and OUTPUT commands are specifically designed for synchronized
  104428. interactions like this.
  104429.  
  104430. - Frank O'Cruz (one day late for St. Patricks day...)
  104431. x
  104432. x
  104433. x
  104434. x
  104435. x
  104436. x
  104437.  
  104438. From news@columbia.edu Sat Mar 18 16:43:37 1995
  104439. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12295
  104440.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 18 Mar 1995 11:43:41 -0500
  104441. Received: by apakabar.cc.columbia.edu id AA29940
  104442.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 18 Mar 1995 11:43:39 -0500
  104443. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  104444. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  104445. Newsgroups: comp.protocols.kermit.misc
  104446. Subject: Re: COM4
  104447. Date: 18 Mar 1995 16:43:37 GMT
  104448. Organization: Columbia University
  104449. Lines: 45
  104450. Message-Id: <3kf2jp$t7i@apakabar.cc.columbia.edu>
  104451. References: <3kdd8m$27s@pilot.njin.net>
  104452. Nntp-Posting-Host: watsun.cc.columbia.edu
  104453. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  104454.  
  104455. In article <3kdd8m$27s@pilot.njin.net>,
  104456. Jim Green <jmgreen@pilot.njin.net> wrote:
  104457. >...about problems using COM4...
  104458. >Oh and before Joe or Frank jump in to ask why you didn't read the docs
  104459. >before you posted, let me do the honors.  And also do you own the
  104460. >manuals???
  104461. >
  104462. Jim is frustrated by the exact same thing that is frustrating countless
  104463. people all over the world: the junky architecture of the PC and its
  104464. add-ons.  He is dissatisfied with our documentation on the subject,
  104465. particularly the KERMIT.BWR file section on COM3/COM4 and internal modems.
  104466.  
  104467. I don't blame him one bit.  I think it would be a revelation if anybody
  104468. was able to figure out the total amount of human effort -- loss of time
  104469. and productivity -- that has gone into fighting problems like this.  We
  104470. all know it's way up in the hundreds of billions of dollars.  Are PCs
  104471. really making us more productive?  It's an interesting question, a topic
  104472. for some other newsgroup, but personally, I doubt it.
  104473.  
  104474. If PCs are supposed to be for ordinary people, then how on earth do we
  104475. expect ordinary people to content with address and interrupt conflicts,
  104476. noisy buses, buggy internal modems, memory management, and all the rest?
  104477. I'm no babe in the woods when it comes to PCs, yet it took me over a month
  104478. to get my IBM PS/VP working with Ethernet board, CD-ROM drive, and one
  104479. (not two) COM ports.  Forget about sound boards, internal modems, serial
  104480. mice, joysticks, ...
  104481.  
  104482. We do our best to figure out this mess and explain it to people, and I
  104483. believe we have done more and better than most.  If anybody has additional
  104484. information or other suggestions about this sort of thing, feel free to
  104485. contribute.  For example, the item from Mike Smith the other day, showing
  104486. how to tell Windows that you had no COM3 even though you did have a COM4
  104487. was extremely helpful, and we have added it to the KERMIT.BWR file.
  104488.  
  104489. The BWR file is dense, I know.  Eventually it will be "humanized" and
  104490. folded into a new edition of the book.  People would like to look in the
  104491. BWR file and find step-by-step procedure to solve their own particular
  104492. problem.  Unfortunately that is not possible because there is an infinite
  104493. number of such problems, so you'll have to learn the underlying principles
  104494. and problems and then apply that knowledge to the problem at hand.  That's
  104495. what we have tried to do.  All suggestions for improvement are welcome.
  104496.  
  104497. Jim, hang in there.  It's not easy, it's frustrating, but it CAN be done.
  104498.  
  104499. - Frank
  104500.  
  104501. From news@columbia.edu Sat Mar 18 18:56:47 1995
  104502. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16814
  104503.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 18 Mar 1995 13:57:05 -0500
  104504. Received: by apakabar.cc.columbia.edu id AA07961
  104505.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 18 Mar 1995 13:57:03 -0500
  104506. Path: news.columbia.edu!panix!news.mathworks.com!uhog.mit.edu!sgiblab!rahul.net!a2i!dold.a2i!dold
  104507. From: Clarence Dold <dold@rahul.net>
  104508. Newsgroups: comp.protocols.kermit.misc
  104509. Subject: Re: COM4
  104510. Date: 18 Mar 1995 18:56:47 GMT
  104511. Organization: a2i network
  104512. Lines: 35
  104513. Message-Id: <3kfadf$atf@hustle.rahul.net>
  104514. References: <3kdd8m$27s@pilot.njin.net> <3kf2jp$t7i@apakabar.cc.columbia.edu>
  104515. Nntp-Posting-Host: foxtrot.rahul.net
  104516. Nntp-Posting-User: dold
  104517. X-Newsreader: TIN [version 1.2 PL2]
  104518. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  104519.  
  104520. Frank da Cruz (fdc@watsun.cc.columbia.edu) wrote:
  104521.  
  104522. : I don't blame him one bit.  I think it would be a revelation if anybody
  104523. : was able to figure out the total amount of human effort -- loss of time
  104524. : and productivity -- that has gone into fighting problems like this.  We
  104525.  
  104526. And the false trails followed after a "diagnostic", like MSD, tells a user
  104527. that certain things are true.
  104528. With regards to IRQ, the MSD.EXE might as well be hypertext, it doesn't know
  104529. much, if anything, about the hardware, especially if MSD is invoked from a
  104530. DOS shell under Windows.
  104531.  
  104532. The "first found, first used" algorithm works well, making a modem
  104533. strapped for COM4 usable in a PC that has one or two existing comm ports.
  104534. Blind Luck, and the best that a modem manufacturer can do.
  104535.  
  104536. The "unused" IRQ for the other COM2 seems to live quietly, running a
  104537. different terminal emulator, not simultaneous with Kermit.
  104538. I don't trust the setup, but the user involved is happy.
  104539.  
  104540. In order to get PCPlus^H^H^H^H^H another comm program to use Com4, he has to
  104541. run MSKermit first ;-).  Actually, I scarfed some comms utility from
  104542. somewhere that pokes the BIOS for him, but MSKermit worked, although it
  104543. whined a little about the address/IRQ being requested, on first execution.
  104544.  
  104545. When users tell me that MSKermit won't work with XXX, but the amazing,
  104546. wonderful, whats-its-name package will, I suggest to them that they are
  104547. running on borrowed time, and please don't process any financial data ;-)
  104548.  
  104549. Later you find that it "works fine", except for the occasional lockup.
  104550.  
  104551. -- 
  104552. ---
  104553. Clarence A Dold - dold@rahul.net
  104554.                 - Pope Valley & Napa CA.
  104555.  
  104556. From news@columbia.edu Sun Mar 19 12:39:36 1995
  104557. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28886
  104558.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 19 Mar 1995 09:27:17 -0500
  104559. Received: by apakabar.cc.columbia.edu id AA20778
  104560.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 19 Mar 1995 09:27:16 -0500
  104561. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!swrinde!cs.utexas.edu!news.sprintlink.net!EU.net!Belgium.EU.net!box!fel
  104562. From: fel@eunet.be (Vlaamse Esperantobond vzw)
  104563. Newsgroups: comp.protocols.kermit.misc
  104564. Subject: No connectionm with Kermit
  104565. Date: 19 Mar 1995 12:39:36 GMT
  104566. Organization: EUnet Belgium, Leuven, Belgium
  104567. Lines: 41
  104568. Message-Id: <3kh8m8$6qe@news.Belgium.EU.net>
  104569. Nntp-Posting-Host: box.eunet.be
  104570. X-Newsreader: TIN [version 1.2 PL2]
  104571. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  104572.  
  104573.  
  104574. I don't succeed in communicating with other computers using Kermit.
  104575. Can someone help?
  104576.  
  104577. I use a HP 9000/715/33 computer running under HP-UP version 9.0
  104578.  
  104579. This is my .kermrc file:
  104580.  
  104581. set line /dev/ttyd00
  104582. set speed 19200
  104583. set file type binary
  104584. set parity none
  104585. set block-check 1
  104586. set duplex full
  104587. set flow-control none
  104588. set modem-dialer hayes
  104589. log session kermitlog
  104590. connect
  104591.  
  104592.  
  104593. Afterwards I type ATDT plus the phone number. I get a normal
  104594. CONNECT 19200 message but afterwards nothing happens. I can't type
  104595. any signs (the cursor doesn't move) and I don't see any characters
  104596. from the remote computer.
  104597.  
  104598. With a PC I have no problems in communicating using the settings 8N1.
  104599. With the HP computer, but using the communication program "cu" there
  104600. are no problems either...
  104601.  
  104602. Does anyone have an idea?
  104603.  
  104604.  
  104605. --
  104606.  
  104607. ===========================================================================
  104608. Flandra Esperanto-Ligo, eldonanto de Monato, internacia magazino sendependa
  104609.        internacia libroservo (retaj mendoj akceptataj) - eldonejo 
  104610.              Frankrijklei 140, B-2000 Antwerpen, Belgio             
  104611.            Internet: fel@eunet.be - CompuServe 100272,1601
  104612. ===========================================================================
  104613.  
  104614.  
  104615. From news@columbia.edu Sun Mar 19 17:00:13 1995
  104616. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04135
  104617.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 19 Mar 1995 12:00:16 -0500
  104618. Received: by apakabar.cc.columbia.edu id AA28674
  104619.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 19 Mar 1995 12:00:15 -0500
  104620. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  104621. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  104622. Newsgroups: comp.protocols.kermit.misc
  104623. Subject: Re: No connectionm with Kermit
  104624. Date: 19 Mar 1995 17:00:13 GMT
  104625. Organization: Columbia University
  104626. Lines: 32
  104627. Message-Id: <3khnut$s00@apakabar.cc.columbia.edu>
  104628. References: <3kh8m8$6qe@news.belgium.eu.net>
  104629. Nntp-Posting-Host: watsun.cc.columbia.edu
  104630. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  104631.  
  104632. In article <3kh8m8$6qe@news.belgium.eu.net>,
  104633. Vlaamse Esperantobond vzw <fel@eunet.be> wrote:
  104634. >I don't succeed in communicating with other computers using Kermit.
  104635. >I use a HP 9000/715/33 computer running under HP-UX version 9.0...
  104636. >This is my .kermrc file...:
  104637. >
  104638. I have the EXACT SAME configuration here and it works perfectly.
  104639. You are probably running the ancient version of C-Kermit that
  104640. HP distributed with HP-UX 9.0.  My suggestion: get the current
  104641. release of C-Kermit, which knows a LOT more about HP-UX than the
  104642. old one did:
  104643.  
  104644. anonymous ftp to kermit.columbia edu, directory kermit/archives,
  104645. binary mode, file cku190.tar.Z (or .gz for gunzip).  Uncompress,
  104646. untar, read the instructions at the top of the makefile, and then
  104647. give the appropriate "make" command, for example:
  104648.  
  104649.   make hpux90 (restricted bundled compiler)
  104650.  
  104651. or:
  104652.  
  104653.   make hpux90o700 (unbundled optimizing compiler)
  104654.  
  104655. which should produce an executable called "wermit".  Try it out
  104656. and if it's OK, install it as "kermit" in the desired location,
  104657. such as /usr/local/bin.  Read the ckuins.doc file for additional
  104658. installation instructions.
  104659.  
  104660. If you have any trouble with the new version, send email to
  104661. kermit@columbia.edu.
  104662.  
  104663. - Frank
  104664.  
  104665. From news@columbia.edu Sun Mar 19 20:17:46 1995
  104666. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11285
  104667.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 19 Mar 1995 15:23:53 -0500
  104668. Received: by apakabar.cc.columbia.edu id AA11129
  104669.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 19 Mar 1995 15:23:52 -0500
  104670. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!math.ohio-state.edu!uwm.edu!news.alpha.net!news.mathworks.com!uunet!in1.uu.net!dziuxsolim.rutgers.edu!pilot.njin.net!not-for-mail
  104671. From: jmgreen@pilot.njin.net (Jim Green)
  104672. Newsgroups: comp.protocols.kermit.misc
  104673. Subject: More COM4
  104674. Date: 19 Mar 1995 15:17:46 -0500
  104675. Organization: Rutgers University
  104676. Lines: 47
  104677. Distribution: world
  104678. Message-Id: <3ki3ha$suu@pilot.njin.net>
  104679. Nntp-Posting-Host: pilot.njin.net
  104680. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  104681.  
  104682.  
  104683.  
  104684. Frank, thank you for your kind sympathy expressed in you response
  104685. to my recent post re COM4........but you didn't answer the question:
  104686.  
  104687. A carefull reading of the KERMIT.BWR file and private 
  104688.  
  104689. correspondance with Kermit gurus seem to say the following:
  104690.  
  104691. When the system boots BIOS first looks at 03f8 to see if 
  104692.  
  104693. there is a serial device there (eg a UART).  If there is, 
  104694.  
  104695. BIOS assigns the ***logical*** name COM1 to it.  It then 
  104696.  
  104697. looks at 02f8 and, like wise, if there is a UART there, 
  104698.  
  104699. it assigns the logical name COM2.
  104700.  
  104701.  
  104702.  
  104703. However, if there is NOT a UART at 03f8, but there IS at 
  104704.  
  104705. 02f8 then BIOS assigns the logical name ***COM1*** to 03f8 
  104706.  
  104707. (where COM2 would normally be found.  The Kermit docs 
  104708.  
  104709. further seem to say that if there is NO UART (or other 
  104710.  
  104711. serial device) found at 03e8, but there IS at 02e8, then 
  104712.  
  104713. BIOS assigns the logical name ***COM3*** to 02e8, instead 
  104714.  
  104715. of COM4.
  104716.  
  104717. Is this true??????????????
  104718.  
  104719.  
  104720. If it IS true, then how does the likes of Telix deal 
  104721.  
  104722. with this eventuality?????????????
  104723.  
  104724.  
  104725. Sorry for the double spacing --- I hate emacs!!!
  104726.  
  104727.  
  104728. Jim Green ............ jmgreen@cc.snow.edu
  104729.  
  104730. From news@columbia.edu Sun Mar 19 20:53:32 1995
  104731. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12677
  104732.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 19 Mar 1995 15:53:35 -0500
  104733. Received: by apakabar.cc.columbia.edu id AA12991
  104734.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 19 Mar 1995 15:53:34 -0500
  104735. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  104736. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  104737. Newsgroups: comp.protocols.kermit.misc
  104738. Subject: Re: More COM4
  104739. Date: 19 Mar 1995 20:53:32 GMT
  104740. Organization: Columbia University
  104741. Lines: 64
  104742. Message-Id: <3ki5kc$cls@apakabar.cc.columbia.edu>
  104743. References: <3ki3ha$suu@pilot.njin.net>
  104744. Nntp-Posting-Host: watsun.cc.columbia.edu
  104745. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  104746.  
  104747. In article <3ki3ha$suu@pilot.njin.net>,
  104748. Jim Green <jmgreen@pilot.njin.net> wrote:
  104749. >...but you didn't answer the question:
  104750. >
  104751. >A carefull reading of the KERMIT.BWR file and private 
  104752. >correspondance with Kermit gurus seem to say the following:
  104753. >
  104754. >When the system boots BIOS first looks at 03f8 to see if 
  104755. >there is a serial device there (eg a UART).  If there is, 
  104756. >BIOS assigns the ***logical*** name COM1 to it.  It then 
  104757. >looks at 02f8 and, like wise, if there is a UART there, 
  104758. >it assigns the logical name COM2.
  104759. >
  104760. Yes, but...  we're talking about the IBM BIOS, and since the
  104761. early 80s, every PC clone maker has had to "reverse engineer"
  104762. the IBM BIOS, so there can be no guarantees that every single
  104763. one of them does it exactly the same way.
  104764.  
  104765. >However, if there is NOT a UART at 03f8, but there IS at 
  104766. >02f8 then BIOS assigns the logical name ***COM1*** to 03f8 
  104767. >(where COM2 would normally be found.
  104768. >
  104769. Yes, that's what we say in KERMIT.BWR, verified by reality
  104770. checks on real hardware -- but obviously we have not checked
  104771. every PC clone that has ever been made.
  104772.  
  104773. >The Kermit docs 
  104774. >further seem to say that if there is NO UART (or other 
  104775. >serial device) found at 03e8, but there IS at 02e8, then 
  104776. >BIOS assigns the logical name ***COM3*** to 02e8, instead 
  104777. >of COM4.  Is this true??????????????
  104778. >
  104779. No.  Most BIOS's do not go beyond COM2.  The IBM PS/2 BIOS
  104780. was an exception, but the poor PS/2 is now "discredited" because
  104781. (I venture to say) the quality was too high, the design was
  104782. too good.  (OK, OK, there were some marketing and price issues...)
  104783.  
  104784. >If it IS true, then how does the likes of Telix deal 
  104785. >with this eventuality?????????????
  104786. >
  104787. They simply use hardwired addresses and IRQs for COM1-4, and
  104788. forge ahead.  Sometimes they provide a menu that lets you change
  104789. these items, sometimes not.
  104790.  
  104791. As we try real hard to point out, this is not necessarily a good
  104792. approach, because if the hardwired default address and IRQ are
  104793. not good guesses, and in fact belong to some other device, all
  104794. sorts of terrible things could happen.  And please remember that
  104795. ALL ports above COM2 are, by definition, configured in a
  104796. nonstandard way BECAUSE (outside of the PS/2) THERE IS NO
  104797. STANDARD.
  104798.  
  104799. Kermit software will err on the side of safety, so sometimes you
  104800. have to do a little bit of extra work to make it use COM3 and
  104801. COM4.  However, we do try to be nice -- we assume the most
  104802. widely used addresses and IRQs for COM3 and COM4 (and we even
  104803. take into account whether the machine is a PS/2 or not), but we
  104804. TEST THEM FIRST to make sure we really have UARTs there.  The
  104805. test is a safe (nondestructive) test, and if it fails there is
  104806. definitely something amiss -- or at least *different* -- in your
  104807. PC configuration, and then you have to figure out what's wrong
  104808. and fix it.  All the things we talk about in the KERMIT.BWR file.
  104809.  
  104810. - Frank
  104811.  
  104812. From news@columbia.edu Sun Mar 19 23:15:57 1995
  104813. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18147
  104814.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 19 Mar 1995 18:11:16 -0500
  104815. Received: by apakabar.cc.columbia.edu id AA22568
  104816.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 19 Mar 1995 18:11:15 -0500
  104817. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!convex!news.duke.edu!godot.cc.duq.edu!toads.pgh.pa.us!isiew
  104818. From: isiew@lis.pitt.edu (Ivan Siew)
  104819. Newsgroups: comp.protocols.kermit.misc
  104820. Subject: Source code in C for Ms-Kermit
  104821. Date: 19 Mar 1995 23:15:57 GMT
  104822. Organization: University of Pittsburgh
  104823. Lines: 9
  104824. Message-Id: <3kidvd$k76@toads.pgh.pa.us>
  104825. Nntp-Posting-Host: icarus.lis.pitt.edu
  104826. X-Newsreader: TIN [version 1.2 PL2]
  104827. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  104828.  
  104829. Hi, has anyone out there written a MS-KERMIT version in C. If so, where can
  104830. I find it with drivers and documentation. The ftp site at Columbia U only
  104831. holds the assembly version. Thanks
  104832.  
  104833. --
  104834. -------------------------------
  104835. - Ivan Siew
  104836. isiew@lis.pitt.edu
  104837. http://info.pitt.edu/~ihsst/
  104838.  
  104839. From news@columbia.edu Sun Mar 19 17:22:50 1995
  104840. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26579
  104841.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 19 Mar 1995 22:03:40 -0500
  104842. Received: by apakabar.cc.columbia.edu id AA09317
  104843.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 19 Mar 1995 22:03:37 -0500
  104844. Newsgroups: comp.protocols.kermit.misc
  104845. Path: news.columbia.edu!panix!news.mathworks.com!uhog.mit.edu!bloom-beacon.mit.edu!gatech!howland.reston.ans.net!ix.netcom.com!netcom.com!jzero
  104846. From: jzero@netcom.com (Jim Nakamura)
  104847. Subject: Re: File Lengths
  104848. Message-Id: <jzeroD5p6y2.Kxz@netcom.com>
  104849. Organization: NETCOM On-line Communication Services (408 261-4700 guest)
  104850. References: <3k8k0l$sai@pilot.njin.net> <3k8oa4$lms@apakabar.cc.columbia.edu>
  104851. Date: Sun, 19 Mar 1995 17:22:50 GMT
  104852. Lines: 47
  104853. Sender: jzero@netcom15.netcom.com
  104854. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  104855.  
  104856. jaltman@watsun.cc.columbia.edu (Jeffrey Altman) writes:
  104857.  
  104858. | In article <3k8k0l$sai@pilot.njin.net>,
  104859. | Jim Green <jmgreen@pilot.njin.net> wrote:
  104860. | >
  104861.  
  104862. | >I FTP'd a 4999 byte ASCII file from a unix machine to my VMS VAX
  104863. | >I don't know how to tell the file length in VMS
  104864. | >I then used both ckermit and sz to transfer to my PC using Telix
  104865. | >Using ckermit into Telix kermit, Telix reports a file length of 5103
  104866. | >and the PC dir also gives 5103.
  104867. | >BUT
  104868. | >Using SZ into DSZ via Telix, Telix/DSZ reports 5148 bytes and the PC
  104869. | >dir gives 4999.
  104870. | >
  104871. | >IE zmodem eventually preserved the original file length
  104872. | >and kermit did not.
  104873.  
  104874. | Because different types of computers store their TEXT files differently
  104875. | file transfer protocols need to convert them when sending files between
  104876. | different types of systems.
  104877.  
  104878. | When you sent you file using C-Kermit you left C-Kermit in TEXT mode
  104879. | therefore conversion was done which changes every LF into a CR-LF 
  104880. | combination.
  104881.  
  104882. | Zmodem defaults to binary mode which never does a conversion.  So you
  104883. | might have difficulty reading a file that is TEXT went sent between
  104884. | two different systems.
  104885.  
  104886. | Kermit also has a BINARY mode, as well as several different modes to
  104887. | support VMS specific File types.
  104888.  
  104889.     On a related note, does anyone know why when using
  104890.     sz from unix and then using sz from dos on the same
  104891.     binary file, one gets two different file sizes ??
  104892.  
  104893.     For example, if I sz a zipped file onto unix, 
  104894.     unzip works fine.  But if I copy that file to 
  104895.     dos, pkunzip freaks out saying the file is 
  104896.     corrupted.  So I have to sz the file directly
  104897.     into dos using the dos version of sz.  Then of
  104898.     course pkunzip works fine after I download the
  104899.     file.
  104900.  
  104901. -- 
  104902. jzero@netcom.com
  104903.  
  104904. From news@columbia.edu Mon Mar 20 02:48:34 1995
  104905. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09048
  104906.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 20 Mar 1995 02:48:34 -0500
  104907. Received: by apakabar.cc.columbia.edu id AA25794
  104908.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 20 Mar 1995 02:48:32 -0500
  104909. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!newsjunkie.ans.net!howland.reston.ans.net!news.sprintlink.net!gryphon.phoenix.net!phoenix.net!pana
  104910. From: pana@phoenix.net (Chuck Witbeck)
  104911. Newsgroups: comp.protocols.kermit.misc
  104912. Subject: connect 28800
  104913. Date: Mon, 20 Mar 1995 00:20:42
  104914. Organization: Phoenix Data Systems
  104915. Lines: 5
  104916. Message-Id: <pana.14.00005854@phoenix.net>
  104917. Nntp-Posting-Host: 199.3.234.81
  104918. X-Newsreader: Trumpet for Windows [Version 1.0 Rev A]
  104919. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  104920.  
  104921. I have a USR Sportster 28.8.
  104922. When I use connect I get a good connection.
  104923. When I try a connect through .kermrc I get the error "can't change speeds to 
  104924. 28800" after that it blows up. Any ideas???
  104925.  
  104926.  
  104927. From news@columbia.edu Mon Mar 20 07:51:49 1995
  104928. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11277
  104929.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 20 Mar 1995 03:49:26 -0500
  104930. Received: by apakabar.cc.columbia.edu id AA28102
  104931.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 20 Mar 1995 03:49:24 -0500
  104932. Newsgroups: alt.hypertext,comp.infosystems.www.users,comp.protocols.kermit.misc
  104933. Path: news.columbia.edu!news.media.mit.edu!bloom-beacon.mit.edu!usc!cs.utexas.edu!news.sprintlink.net!news.indirect.com!monty
  104934. From: monty@indirect.com (Jim Monty)
  104935. Subject: [?] Browser For Online Documentation
  104936. Message-Id: <D5qB6D.MJJ@indirect.com>
  104937. Sender: usenet@indirect.com (Internet Direct Admin)
  104938. Organization: Internet Direct, indirect.com
  104939. Date: Mon, 20 Mar 1995 07:51:49 GMT
  104940. X-Newsreader: TIN [version 1.2 PL2]
  104941. Lines: 38
  104942. Xref: news.columbia.edu alt.hypertext:7993 comp.infosystems.www.users:21445 comp.protocols.kermit.misc:2298
  104943. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  104944.  
  104945. [Posted to alt.hypertext, comp.infosystems.www.users, and
  104946. comp.protocols.kermit.misc.]
  104947.  
  104948. I want to create online documentation of processes that are run
  104949. interactively from the MS-DOS prompt for the benefit of the users who run
  104950. them.  I want this documentation to be readily available and easily
  104951. summoned, much like a UNIX man page.  But unlike a man page, I'd like 
  104952. this documentation to be non-linear and intuitive (i.e., hypertext).
  104953.  
  104954. Because I'm currently learning HTML, and because the World Wide Web is the
  104955. preeminent hypertext application, it makes sense to use a Web browser for
  104956. the purpose I've just described.  Is there a simple Web browser for MS-DOS
  104957. that I could use as a hypertext reader?  Ideally, this is what I would do: 
  104958.  
  104959.      o   Compile Lynx for MS-DOS.  Not DOSLYNX, which is a TurboVision-
  104960.          based clone, but the "real" UNIX/VMS Lynx browser (which I
  104961.          presume uses curses), with "vi keys", etc.
  104962.  
  104963.      o   Use a good VT-series terminal emulator like MS-DOS Kermit 3.14
  104964.          as the "interface" (if that's what one would call it).
  104965.  
  104966.      o   Seamlessly integrate the two utilities and automate the process
  104967.          of invoking them simultaneously.
  104968.  
  104969.      o   Create my online help as HTML documents, accessible from a local
  104970.          "home page" on our NetWare file server.
  104971.  
  104972. Well, do you see where I'm coming from?  Am I pipe dreaming?  Is any of 
  104973. this even remotely possible?  If not, can you suggest a solution that IS 
  104974. possible?
  104975.  
  104976. Any hints or suggestions will be greatly appreciated.  Thanks!
  104977.  
  104978.  
  104979. ---
  104980. Jim Monty
  104981. monty@indirect.com
  104982. Tempe, Arizona USA
  104983.  
  104984. From news@columbia.edu Mon Mar 20 11:21:25 1995
  104985. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17905
  104986.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 20 Mar 1995 06:35:32 -0500
  104987. Received: by apakabar.cc.columbia.edu id AA19182
  104988.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 20 Mar 1995 06:35:30 -0500
  104989. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news.sprintlink.net!psgrain!news.teleport.com!news.teleport.com!not-for-mail
  104990. From: sysone@teleport.com (FIGHT THE POWER)
  104991. Newsgroups: comp.protocols.kermit.misc
  104992. Subject: Thanks for the help...
  104993. Date: 20 Mar 1995 03:21:25 -0800
  104994. Organization: I? Organized? Right. :-)
  104995. Lines: 27
  104996. Message-Id: <3kjofl$4tq@linda.teleport.com>
  104997. Nntp-Posting-Host: linda.teleport.com
  104998. Summary: Much appreciated.
  104999. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  105000.  
  105001.     A few weeks back I posted to this forum regarding an
  105002. attempt to connect TO a U**X system FROM an IBM mainframe.
  105003. Although this wasn't a case where a Kermit flavor existed to
  105004. solve the problem (so far as I can tell), I received many helpful
  105005. responses via email and this group. With the help of these
  105006. combined insights, I was able to point someone in the direction
  105007. of a utility which, I am told, has made connection possible. I
  105008. didn't get around to replying to these responders before other
  105009. projects got away with my time. So to one and all... Thanks!
  105010.     I was pleased, but not surprised, by the response I got
  105011. to the question I posted; this forum exemplifies how a community
  105012. can develop on the Net to support an idea or issue -- or
  105013. high-quality software. To me the idea of Kermit "itself" is
  105014. inseparable from the support infrastructure -- the books on one
  105015. hand, the active Kermit community on the other. I don't know of
  105016. any other software which thrives on such a synergy of users,
  105017. developers &c., except possibly such grass-roots platforms as
  105018. Linux &c.
  105019.     Well, I'm wasting bandwidth. But I thought some positive
  105020. feedback couldn't hurt. Keep up the good work people!
  105021. -- 
  105022. Mail: <sysone@teleport.com>  Web: <http://www.teleport.com/~sysone>
  105023. -- 
  105024. Augustus was sensible that mankind is governed by names; nor was
  105025. he deceived in his expectation, that the senate and people would
  105026. submit to slavery, provided they were respectfully assured that
  105027. they still enjoyed their ancient freedom. -- Edward Gibbon, 1776
  105028.  
  105029. From news@columbia.edu Mon Mar 20 13:46:15 1995
  105030. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22999
  105031.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 20 Mar 1995 08:46:19 -0500
  105032. Received: by apakabar.cc.columbia.edu id AA27567
  105033.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 20 Mar 1995 08:46:18 -0500
  105034. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  105035. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  105036. Newsgroups: comp.protocols.kermit.misc
  105037. Subject: Re: Source code in C for Ms-Kermit
  105038. Date: 20 Mar 1995 13:46:15 GMT
  105039. Organization: Columbia University
  105040. Lines: 7
  105041. Message-Id: <3kk0v7$qtb@apakabar.cc.columbia.edu>
  105042. References: <3kidvd$k76@toads.pgh.pa.us>
  105043. Nntp-Posting-Host: watsun.cc.columbia.edu
  105044. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  105045.  
  105046. In article <3kidvd$k76@toads.pgh.pa.us>, Ivan Siew <isiew@lis.pitt.edu> wrote:
  105047. >Hi, has anyone out there written a MS-KERMIT version in C.
  105048. >
  105049. No.  Strange though it may seem, MS-DOS Kermit is written mostly in assembler.
  105050. There is no MS-DOS Kermit written in C.
  105051.  
  105052. - Frank
  105053.  
  105054. From news@columbia.edu Mon Mar 20 14:01:52 1995
  105055. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23786
  105056.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 20 Mar 1995 09:01:59 -0500
  105057. Received: by apakabar.cc.columbia.edu id AA29062
  105058.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 20 Mar 1995 09:01:57 -0500
  105059. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  105060. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  105061. Newsgroups: comp.protocols.kermit.misc
  105062. Subject: Re: connect 28800
  105063. Date: 20 Mar 1995 14:01:52 GMT
  105064. Organization: Columbia University
  105065. Lines: 50
  105066. Message-Id: <3kk1sg$sbv@apakabar.cc.columbia.edu>
  105067. References: <pana.14.00005854@phoenix.net>
  105068. Nntp-Posting-Host: watsun.cc.columbia.edu
  105069. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  105070.  
  105071. In article <pana.14.00005854@phoenix.net>,
  105072. Chuck Witbeck <pana@phoenix.net> wrote:
  105073. >I have a USR Sportster 28.8.
  105074. >When I use connect I get a good connection.
  105075. >When I try a connect through .kermrc I get the error "can't change speeds
  105076. > to 28800" after that it blows up. Any ideas???
  105077. >
  105078. This is such a Frequently Asked Question that it is time to add it to our
  105079. FAQ, ftp:/kermit.columbia.edu/kermit/faq.txt.
  105080.  
  105081. (15) WHEN C-KERMIT DIALS MY V.32BIS (OR V.34) MODEM, I GET THE ERROR
  105082.      "CAN'T CHANGE SPEED TO 14400 (OR 28800)"
  105083.  
  105084. Dialing is covered in Chapter 3 and Appendix II of "Using C-Kermit".  To
  105085. recapitulate very briefly: older modems, like the Hayes 1200 and 2400,
  105086. that did not do error correction or compression, but that could negotiate
  105087. their modulation speed, would report the modulation speed upon successful
  105088. connection, and change their interface speed to match.  Thus, the
  105089. communication software would also have to change its own interface speed,
  105090. or else the user would see only garbage.
  105091.  
  105092. Modern modems have two different speeds: the interface speed and the
  105093. modulation speed.  The interface speed can be kept constant even though
  105094. the modulation speed changes.  Or not, depending on how the modem is
  105095. configured.
  105096.  
  105097. Kermit has no way of knowing whether your modem is set up to lock its
  105098. interface speed, or to change it to match the modulation speed, and
  105099. therefore it has no way of knowing whether to believe the "CONNECT 28800"
  105100. (or whatever) message.  By default, for compatibility with the huge
  105101. installed base of older modems, it does believe, and therefore changes 
  105102. its interface speed according to the CONNECT message.
  105103.  
  105104. So if your modem's interface speed is locked (which it SHOULD be if it is
  105105. an error-correcting, data-compressing modem), you must tell Kermit NOT to
  105106. change its interface speed by giving it the command:
  105107.  
  105108.   SET DIAL SPEED-MATCHING OFF
  105109.  
  105110. Now to complicate matters, some of the newer modulations report speeds
  105111. that are not commonly supported by the host operating system, such as
  105112. 14400 and 28800.  Hence the message "Can't change speed to 14400" (or
  105113. 28800).  But even if these speeds were supported, you would not want
  105114. Kermit changing to them if the modem's interface speed was locked.  You
  105115. would still see only garbage, but you would not get the "Can't change
  105116. speed" message.
  105117.  
  105118. See pages 60-61 of "Using C-Kermit" for additional detail.
  105119.  
  105120. - Frank
  105121.  
  105122. From news@columbia.edu Mon Mar 20 15:29:57 1995
  105123. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08050
  105124.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 20 Mar 1995 12:13:38 -0500
  105125. Received: by apakabar.cc.columbia.edu id AA17871
  105126.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 20 Mar 1995 12:13:31 -0500
  105127. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!vixen.cso.uiuc.edu!uwm.edu!lll-winken.llnl.gov!enews.sgi.com!decwrl!tribune.usask.ca!canopus.cc.umanitoba.ca!newsflash.concordia.ca!nstn.ns.ca!ac.dal.ca!ctsang
  105128. Newsgroups: comp.protocols.kermit.misc
  105129. Subject: survey
  105130. Message-Id: <1995Mar20.112959.36035@ac.dal.ca>
  105131. From: ctsang@is.dal.ca (Chui Fung Tsang)
  105132. Date: 20 Mar 95 11:29:57 -0400
  105133. Nntp-Posting-Host: is.dal.ca
  105134. X-Newsreader: TIN [version 1.2 PL2]
  105135. Lines: 115
  105136. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  105137.  
  105138. From ctsang@moon.sba.dal.ca Sat Mar 18 22:01:58 1995
  105139. Date: Sat, 18 Mar 1995 21:48:56 AST
  105140. From: OLIVIA TSANG <ctsang@moon.sba.dal.ca>
  105141. To: ctsang@is.dal.ca
  105142. Subject: survey
  105143.  
  105144. From:    MOON::CTSANG       "OLIVIA TSANG" 18-MAR-1995 21:45:47.72
  105145. To:    CTSANG
  105146. CC:    
  105147. Subj:    survey
  105148.  
  105149. QUESTIONNAIRE - COMPUTER AND ENTERTAINMENT
  105150.  
  105151. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  105152.  
  105153. Hi all internet users!
  105154. My name is Olivia.  I am doing a study on how people use computers to
  105155. entertain themselves.  I would like to know how do you use computer to
  105156. (e.g. play computer games) entertain yourself.  How so these computer
  105157. entertainment activities affect you both positively and negatively?
  105158.  
  105159. Please note also:
  105160. *Questionaire answers will be kept confidentically;
  105161. * This questionaire will be posted for 8 days so please be sure to
  105162. send me the answers before March 26, 1995.
  105163.  
  105164. THANK YOU VERY MUCH FOR FILLING OUT THIS QUESTIONAIRE.  YOUR ANSWERS
  105165. ARE IMPORTANT TO MY STUDY.
  105166. ----------------------------------------------------------------------------
  105167.  
  105168. Please check the appropriate box and fill in the appropriate answer:
  105169.  
  105170. (1) Are you         [] Female    []Male
  105171.  
  105172. (2) WHat is your age?    [] Below 14    [] 14-18    []19-24
  105173.             [] 25-35    [] 36-50    [] Over 50
  105174.  
  105175. (3) Are you a student?
  105176.     []Yes
  105177.     Please specify your level of education and the program you are in.
  105178.         []Secondary school    Grade: ___________
  105179.         [] Post-secondary    Program: ___________________________
  105180.                          (e.g. Bachelor of Commerce)
  105181.         []Post-graduate        Program: ________________________________
  105182.                          (e.g. MBA)
  105183.         []Other         ____________________________________
  105184.  
  105185.     []No
  105186.  
  105187. (4) What is your present job status?
  105188.     []Contract employment        Job title: _________________________
  105189.     []Full-time employment        Job title: _________________________
  105190.     []Part-time employment        Job title: _________________________
  105191.     []Unemployed
  105192.  
  105193. (5) Do you own a computer at home?
  105194.     []Yes
  105195.     []No
  105196.  
  105197. (6) Do you have to use computer at work?
  105198.     []Yes
  105199.         Approximately how many hours per week? _____________________
  105200.     []No
  105201.  
  105202. (7) Do you use computer for entertainment purpose(s) (e.g. games, music, 
  105203.     movie, etc.)?
  105204.     []Yes 
  105205.         Please list computer entertainment activities you do and
  105206.         the length of time you spend on each activity:
  105207.  
  105208.       Entertainment activities            Hours spent on
  105209.                             activity each week
  105210.      a. ______________________________________    __________________
  105211.      b. ______________________________________    __________________
  105212.      c. ______________________________________    __________________
  105213.  
  105214. (8) Do the above computer activities help you to relax?
  105215.     []Yes
  105216.     []No
  105217.  
  105218. (9) What is(are) the effect(s), both good and bad, of the above computer
  105219.     activity(s) on you? 
  105220.     (e.g. playing computer games help me to release my frustrations but I
  105221.     may spend too much time on playing games)
  105222.     Good effects: ___________________________________________________
  105223.     _________________________________________________________________
  105224.     _________________________________________________________________
  105225.     _________________________________________________________________
  105226.     _________________________________________________________________
  105227.     Bad effects: ____________________________________________________
  105228.     _________________________________________________________________
  105229.     _________________________________________________________________
  105230.     _________________________________________________________________
  105231.     _________________________________________________________________
  105232.  
  105233. (10) Do you think that computer is a good channel for entertainment?
  105234.     []Yes
  105235.         Please explain: _________________________________________
  105236.     _________________________________________________________________
  105237.     _________________________________________________________________
  105238.     []No
  105239.  
  105240. (11) Do you have any comment on "Computer and Entertainment"?
  105241.  
  105242.     ________________________________________________________________
  105243.     ________________________________________________________________
  105244.     ________________________________________________________________
  105245.     ________________________________________________________________
  105246.     ________________________________________________________________
  105247.  
  105248.  
  105249.  
  105250.         THANK YOU VERY MUCH FOR YOUR CO-OPERATION :)
  105251.      
  105252.  
  105253.  
  105254. From news@columbia.edu Mon Mar 20 19:11:07 1995
  105255. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17142
  105256.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 20 Mar 1995 14:39:48 -0500
  105257. Received: by apakabar.cc.columbia.edu id AA03963
  105258.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 20 Mar 1995 14:39:45 -0500
  105259. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!torn!news.ccs.queensu.ca!news.ccs.queensu.ca!not-for-mail
  105260. From: mike@knot.QueensU.CA (Mike Smith)
  105261. Newsgroups: comp.protocols.kermit.misc
  105262. Subject: Re: COM4
  105263. Date: 20 Mar 1995 14:11:07 -0500
  105264. Organization: Queen's University, Kingston
  105265. Lines: 42
  105266. Distribution: world
  105267. Message-Id: <3kkk0b$9v@ccs-sparc2.queensu.ca>
  105268. References: <3kdd8m$27s@pilot.njin.net>
  105269. Nntp-Posting-Host: ccs-sparc2.ccs
  105270. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  105271.  
  105272.  
  105273. There's a bit of latency confusing this discussion, but since Jim asked
  105274. me some direct questions, I think I should respond.  Briefly, ...
  105275.  
  105276. In article <3kdd8m$27s@pilot.njin.net>, jmgreen@pilot.njin.net (Jim Green) writes:
  105277. |> Mike Smith wonders how to use Kermit with COM4.  Mike I too would like
  105278. |> to use MS-Kermit with COM4 and IRQ5.  In fact I have been trying to
  105279. |> 
  105280. |> ... stuff deleted ...
  105281. |> 
  105282. |> Now, Mike, you are the one who says that the docs are clear to you, is
  105283. |> this what they say???  Do you believe it???
  105284.  
  105285. I have said that the docs are clear and I admire the Kermit books.
  105286.  
  105287. I have read the KERMIT.BWR file several times.  As Frank observed, parts
  105288. of this file are "dense".  I learned a lot reading the section explaining
  105289. COM ports and IRQs but not enough to solve my particular problem with
  105290. COM4 and Kermit under Windows.  The solution to my COM4 problem depended
  105291. on a Windows configuration detail not included in the beware file.  Frank
  105292. has since posted that KERMIT.BWR will be updated to include that information.
  105293. I think this further confirms my faith in the documentation.  Thanks Frank.
  105294.  
  105295. |> 
  105296. |> Oh and before Joe or Frank jump in to ask why you didn't read the docs
  105297. |> before you posted, let me do the honors.  And also do you own the
  105298. |> manuals???
  105299. |>
  105300.  
  105301. I own "Using MS-DOS Kermit" and "Using C-Kermit".  I have read, but do not
  105302. own, "Kermit: A File Transfer Protocol".  It was that book which convinced
  105303. me to recommend Columbia's Kermit as the basic comm program for Queen's
  105304. University.  We started a new Internet service for students last September
  105305. and there are now approximately 10,000 registered users.  Not everyone
  105306. uses Kermit to connect to this service but thousands do.  I could not
  105307. support them without Columbia's excellent books and the help I've received
  105308. from Frank, Joe, and others in comp.protocols.kermit.misc.
  105309. -- 
  105310.  
  105311.  Mike Smith                                  mike@ccs.queensu.ca
  105312.  Queen's University                          Michael.D.Smith@QueensU.CA
  105313.  Computing and Communications Services       (613) 545-2024
  105314.  
  105315. From news@columbia.edu Mon Mar 20 17:30:11 1995
  105316. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21493
  105317.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 20 Mar 1995 15:36:54 -0500
  105318. Received: by apakabar.cc.columbia.edu id AA09596
  105319.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 20 Mar 1995 15:36:47 -0500
  105320. Path: news.columbia.edu!news.cs.columbia.edu!news.nyc.pipeline.com!newsjunkie.ans.net!howland.reston.ans.net!news.cac.psu.edu!news.pop.psu.edu!hudson.lm.com!godot.cc.duq.edu!newsfeed.pitt.edu!dsinc!netnews.upenn.edu!cronkite.ocis.temple.edu!astro.ocis.temple.edu!agwing
  105321. From: agwing@astro.ocis.temple.edu (Andrew Wing)
  105322. Newsgroups: comp.protocols.kermit.misc,comp.os.rsts
  105323. Subject: PDP-11 to PC transfer trouble
  105324. Followup-To: comp.protocols.kermit.misc
  105325. Date: 20 Mar 1995 17:30:11 GMT
  105326. Organization: Temple University, Academic Computer Services
  105327. Lines: 38
  105328. Distribution: inet
  105329. Message-Id: <3kke33$2l6@cronkite.ocis.temple.edu>
  105330. Nntp-Posting-Host: astro.ocis.temple.edu
  105331. X-Newsreader: TIN [version 1.2 PL2]
  105332. Xref: news.columbia.edu comp.protocols.kermit.misc:2304 comp.os.rsts:403
  105333. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  105334.  
  105335.  
  105336.     I'm having trouble moving a large text file from our PDP-11/44 to a
  105337. PC.
  105338.  
  105339. Background: I need to export data from an app based on the PDP-11 to Foxpro
  105340. for Windows on the PC.  The app on the PDP-11 is generating text files in an
  105341. SDF format.  The intent is for the user to run a script to transfer seven of
  105342. these files to their PC.  I have a similar setup for another app which works
  105343. fine.
  105344.  
  105345. systems:  Gateway 2000 486DX/33, DOS 5, Kermit 3.13 (patch level 21)
  105346.           DEC PDP-11/44 running RSTS 9.7, Kermit-11 vT3.60
  105347.  
  105348. symptoms: When I transfer the text files in TEXT mode, they all transfer OK
  105349. *except* the one with 795 byte lines.  The transfer starts, five packets
  105350. go by and then the process stops abruptly with no error reported.  It
  105351. appears that Kermit is having trouble negotiating a packet size since it
  105352. never 'settles down' to its standard 90 something size in the status screen.
  105353. Kermit insists that the transfer is "complete" and I end up with a blank
  105354. file on the PC.
  105355.  
  105356.     I tried setting the file type to binary and it works, only I get the
  105357. trailing nulls contained in the last cluster of the data file.  This imports
  105358. into Foxpro as a blank record.  All the other text files will transfer in
  105359. text mode OK.
  105360.     I've tried tweaking packet size, windows, attribute packets and
  105361. handshaking to no avail.  The .BWR and .INS files don't address this 
  105362. directly.  They only make a reference to problems with attribute packets
  105363. which I already disabled.
  105364.  
  105365.     What parameters do I need to set to get this file to transfer in
  105366. text mode?  TIA!
  105367.  
  105368. --
  105369. Politics is not the art of persuasion, it's the science of selfishness.
  105370.  
  105371. "Any disclaimer issued by me is subject to change without notice"
  105372. Andy Wing  Temple U. Computer Services    agwing@astro.ocis.temple.edu
  105373.  
  105374. From news@columbia.edu Mon Mar 20 16:32:25 1995
  105375. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00278
  105376.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 20 Mar 1995 17:53:35 -0500
  105377. Received: by apakabar.cc.columbia.edu id AA23071
  105378.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 20 Mar 1995 17:52:29 -0500
  105379. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!math.ohio-state.edu!jussieu.fr!univ-lyon1.fr!swidir.switch.ch!scsing.switch.ch!news.dfn.de!news.rwth-aachen.de!news.rhrz.uni-bonn.de!news.uni-stuttgart.de!news.belwue.de!news.uni-freiburg.de!MPI2.IMMUNBIO.MPG.DE!GARTMANN
  105380. From: gartmann@immunbio.mpg.de (Christoph Gartmann)
  105381. Newsgroups: comp.protocols.kermit.misc
  105382. Subject: Re: MS-Kermit, MS-Windows & Norton Desktop
  105383. Date: 20 Mar 1995 16:32:25 GMT
  105384. Organization: Max-Planck-Institut fuer Immunbiologie
  105385. Lines: 49
  105386. Message-Id: <3kkamp$qsd@n.ruf.uni-freiburg.de>
  105387. References: <3k1vs4$nrl@n.ruf.uni-freiburg.de> <3k4fna$sgs@n.ruf.uni-freiburg.de>  <3kbkp8$dnf@n.ruf.uni-freiburg.de>,<1995Mar17.212018.45190@cc.usu.edu>
  105388. Reply-To: gartmann@immunbio.mpg.de
  105389. Nntp-Posting-Host: mpi2.immunbio.mpg.de
  105390. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  105391.  
  105392. In article <1995Mar17.212018.45190@cc.usu.edu>, jrd@cc.usu.edu (Joe Doupnik) writes:
  105393.  
  105394. ...
  105395. >    What counts are the port and IRQ values. Tell Kermit about them
  105396. >with SET COMx port irq. Tell Windows too via the Control Panel.
  105397.  
  105398. I did this and that's why Kermit works under DOS and works under DOS within
  105399. Windows if I invoke it twice.
  105400.  
  105401. ...
  105402. >    From your notes I infer that you have an IRQ conflict and it must
  105403. >be resolved for normal operation. Time to pop the cover and get your fingers
  105404. >cut looking at all the boards in detail.
  105405.  
  105406. No, after all mike@post.queensu.ca (Mike Smith) gave the right hint:
  105407.  
  105408. > Thank you to whoever mentioned that a missing COM3 might be my problem.
  105409. > To briefly restate my problem, I could not get Kermit running under Windows
  105410. > to work with a modem on COM4.  Using the Control Panel...Ports...Com4...
  105411. > Advanced dialogue to set the COM4 address and irq was not enough.  I had
  105412. > to tell Windows there was no physical COM3 on this system by:
  105413. >    edit \windows\system.ini
  105414. >    Search for the [386Enh] section
  105415. >    Add the following line
  105416. >     COM3IRQ=-1
  105417. > I placed this in the obvious spot, just before the lines describing COM4.
  105418. > So in my case, the file looked like this:
  105419. >    COM3IRQ=-1
  105420. >    COM4Base=02E8
  105421. >    COM4IRQ=5
  105422.  
  105423. Since I did this everything is working fine from within Windows. By the way:
  105424. I am using IRQ 7, so no need to stick with IRQ 5 as mentioned by a previous
  105425. poster.
  105426.  
  105427. And it is definitevly a good idea to include this topic into the BWR file!
  105428.  
  105429. Regards,
  105430.    Christoph Gartmann
  105431.  
  105432. +----------------------------------------------------------------------------+
  105433. | Max-Planck-Institut fuer      Phone   : +49-761-5108-465   Fax: -221       |
  105434. | Immunbiologie                 PSI     : PSI%(0262)45050160374::GARTMANN    |
  105435. | Postfach 1169                 Internet: gartmann@immunbio.mpg.de           |
  105436. | D-79011  Freiburg, FRG                                                     |
  105437. +----------- Do you know MENUE, the user environment for OpenVMS? -----------+
  105438.  
  105439. From news@columbia.edu Mon Mar 20 18:47:25 1995
  105440. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00280
  105441.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 20 Mar 1995 17:53:37 -0500
  105442. Received: by apakabar.cc.columbia.edu id AA23083
  105443.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 20 Mar 1995 17:52:32 -0500
  105444. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news.sprintlink.net!redstone.interpath.net!mercury!saur
  105445. From: saur@mercury.interpath.net (Saurian)
  105446. Newsgroups: comp.protocols.kermit.misc
  105447. Subject: HELP: Status of term when kermit exits.
  105448. Date: 20 Mar 1995 13:47:25 -0500
  105449. Organization: Interpath -- Public Access UNIX for North Carolina
  105450. Lines: 50
  105451. Message-Id: <saur.795725006@mercury>
  105452. Nntp-Posting-Host: mercury.interpath.net
  105453. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  105454.  
  105455. I was wondering if someone could let me know the latest and
  105456. greatest UNIX version of kermit and what bugs have been fixed
  105457. since 5A(188)
  105458.  
  105459. The reason I'm asking is that I've found a bug and don't know
  105460. if it has been fixed.
  105461.  
  105462. NOTE THE FOLLOWING IS A VERY CRUDE READING FROM A NOVICE
  105463. SO PLEASE DON'T LAUGH AT ME IF I COMPLETELY MISSED SOMETHING :)
  105464.  
  105465. The problem is that the following line is in the "conres"
  105466. routine in the "ckutio" module.
  105467.  
  105468.    if (!isatty(0)) return(0);
  105469.  
  105470. Which is supposed to bypass any terminal reseting when not
  105471. called from a tty.
  105472.  
  105473. OK sounds lagit, BUT ...
  105474.  
  105475. When kermit is called from a popen from another software
  105476. package, "isatty(0)" returns a "0". If this other software
  105477. package uses CBREAK mode or some other special setup, it's
  105478. special setup will be wiped out by kermit because "conres"
  105479. never gets executed.
  105480.  
  105481. An example is the news reader "nn". "nn" can "save" to a pipe
  105482. to another software package. If you hit "nn"'s save key and
  105483. then specify the following, everything works perfectly until
  105484. kermit returns.
  105485.  
  105486.    | (kermit -v 10 -s - )
  105487.  
  105488. At which time "nn" no longer works correctly because it's
  105489. CBREAK mode has been reset.
  105490.  
  105491. Has this been fixed?
  105492.  
  105493. I'm concidering sending a copy of this to the kermit support
  105494. mail box.
  105495.  
  105496. ---
  105497.                                _________________________________________
  105498. ._______.  ___\___  | __      / _______________________________________ \
  105499. | \ | / |  _\___/_  \____     ||  Saurian: saur@mercury.interpath.net  ||
  105500. |---+---|   .---.     ___|    ||  ...................................  ||
  105501.  ___|___    |___|    | __     ||   EXODUS 4:1-5     NUMBERS 21:4-9     ||
  105502.     |       |___|    | __     ||   EXODUS 7:8-13    PSALMS 104:24-28   ||
  105503.  -------    |   |    |        ||_______________________________________||
  105504. /  | |  \   |  \|    \___     \___| Finger me for my PGP public key |___/
  105505.  
  105506. From news@columbia.edu Mon Mar 20 08:43:59 1995
  105507. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13832
  105508.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 20 Mar 1995 22:08:12 -0500
  105509. Received: by apakabar.cc.columbia.edu id AA14837
  105510.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 20 Mar 1995 22:08:06 -0500
  105511. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!gatech!udel!news.mathworks.com!newshost.marcam.com!zip.eecs.umich.edu!caen!kuhub.cc.ukans.edu!falcon.cc.ukans.edu!tdsmith
  105512. Newsgroups: comp.protocols.kermit.misc
  105513. Subject: Re: COM4
  105514. Message-Id: <1995Mar20.144359.88114@kuhub.cc.ukans.edu>
  105515. From: tdsmith@falcon.cc.ukans.edu (SMITH TROY D)
  105516. Date: 20 Mar 95 14:43:59 CST
  105517. References: <3kdd8m$27s@pilot.njin.net>
  105518. Distribution: world
  105519. Nntp-Posting-Host: falcon.cc.ukans.edu
  105520. X-Newsreader: TIN [version 1.2 PL2]
  105521. Lines: 35
  105522. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  105523.  
  105524. [snip]
  105525. Is it *absolutely* necessary for you to use com4?  I've only 3 ports, 
  105526. so I moved my mouse to com2 (required switching my 25-pin and 9-pin 
  105527. plugs around) so that I could use com3 without problems.  Later, when 
  105528. I switched my modem irq from 4 to 5, I continued to not have problems.
  105529. You do need to place some pertinent information in your mscustom.ini 
  105530. file.
  105531.  
  105532. set com3 \x3e8 5
  105533. set port com3
  105534.  
  105535. That should do it for you.  If you feel compelled to use com4 (and don't 
  105536. have a com3), replace the com3s with com4s in the above.  Somebody else 
  105537. posted a way to lie to Windows about the presence of a com3 when one is 
  105538. not available, but I don't remember which post it was.  This isn't rocket 
  105539. science, people.  I'd much rather configure Kermit than Trumpet Winsock.
  105540.  
  105541. Sorry about the snotty tone, but I'm more than a little tired of hearing 
  105542. some of the whining that goes on in this group.  Joe, Frank, Christine, 
  105543. & Co. work their butts off to give us the finest communications software 
  105544. available--please try to be a little more understanding when they ask 
  105545. to be paid for their efforts.  Where else can you get an integrated 
  105546. terminal emulation and file transfer protocol that handles so many 
  105547. character sets and yet is so incredibly robust, that has no artificial 
  105548. limits imposed on the ftp-able copy, that comes bundled with documentation, 
  105549. and has its own newsgroup dedicated to supporting its users, all without 
  105550. costing you a penny unless you find that you NEED the full documentation?  
  105551.  
  105552. C'mon, guys--there ain't no free lunch.  Download Kermit.  Use it.  If 
  105553. you find that it is the best thing since sliced bread (and it is), order 
  105554. the documentation.  $40 is cheap for something that works so well.
  105555.  
  105556. Bye, 
  105557.  
  105558. Troy Smith
  105559.  
  105560. From news@columbia.edu Tue Mar 21 02:09:26 1995
  105561. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19466
  105562.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 21 Mar 1995 00:09:41 -0500
  105563. Received: by apakabar.cc.columbia.edu id AA24398
  105564.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 21 Mar 1995 00:09:34 -0500
  105565. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!math.ohio-state.edu!news.acns.nwu.edu!uicvm.uic.edu!news.eecs.uic.edu!bert.eecs.uic.edu!aklinson
  105566. From: aklinson@bert.eecs.uic.edu (Arnatt Klinsong)
  105567. Newsgroups: comp.protocols.kermit.misc
  105568. Subject: CASE or EXPECT for c-kermit
  105569. Date: 21 Mar 1995 02:09:26 GMT
  105570. Organization: University of Illinois at Chicago
  105571. Lines: 18
  105572. Message-Id: <3klcgm$ao7@news.eecs.uic.edu>
  105573. Nntp-Posting-Host: bert.eecs.uic.edu
  105574. X-Newsreader: TIN [version 1.2 PL2]
  105575. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  105576.  
  105577.  am using ckermit 189 for Linux.
  105578. I am writing a login script in kermit. This will also perform various auto function too. my question, what is the best way to constr
  105579.  
  105580. expect {
  105581.         "DIALIN-2>"        goto dialin2
  105582.         "DIALIN-3>"        goto dialin3
  105583.         "term="                goto setterm
  105584.         "aaaa"                goto a-a
  105585.         .
  105586.         .
  105587.         nad so on...
  105588.         }
  105589.  
  105590. ckermit has "input" and "script" command, but they will only wait for one input
  105591.  
  105592. Ak
  105593. Thanks in Advance
  105594.  
  105595.  
  105596. From news@columbia.edu Mon Mar 20 16:56:49 1995
  105597. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11561
  105598.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 21 Mar 1995 08:32:21 -0500
  105599. Received: by apakabar.cc.columbia.edu id AA04236
  105600.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 21 Mar 1995 08:32:19 -0500
  105601. Newsgroups: comp.protocols.kermit.misc
  105602. Path: news.columbia.edu!news.cs.columbia.edu!news.nyc.pipeline.com!news.intercon.com!uhog.mit.edu!news.mathworks.com!zombie.ncsc.mil!news.duke.edu!godot.cc.duq.edu!hudson.lm.com!newsfeed.pitt.edu!uunet!in1.uu.net!gail.ripco.com!aklinson
  105603. From: aklinson@ripco.com (Arnatt Klinsong)
  105604. Subject: Re: Linux ?
  105605. Message-Id: <D5r0Ep.J7I@rci.ripco.com>
  105606. Sender: usenet@rci.ripco.com (Net News Admin)
  105607. Organization: Ripco Internet BBS, Chicago
  105608. X-Newsreader: TIN [version 1.2 PL2]
  105609. References: <tstevensD5ADys.KpK@netcom.com> <17363B819.1CMC3466@ibm.mtsac.edu>
  105610. Date: Mon, 20 Mar 1995 16:56:49 GMT
  105611. Lines: 32
  105612. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  105613.  
  105614. Curtiss Cicco (1CMC3466@ibm.mtsac.edu) wrote:
  105615. : In article <tstevensD5ADys.KpK@netcom.com>
  105616. : tstevens@netcom.com (Edward Stevens) writes:
  105617. :  
  105618. : >
  105619. : >        Where can I find the latest kermit for Linux ? Thanks.
  105620. : >
  105621. : >Ted Stevens
  105622. : >
  105623. : >--
  105624. :      You can get it at the same place where it is available for other
  105625. : systems, which is at kermit.columbia.edu, and if I remember correctly
  105626. : the file name is C-kermit.linux or something to that effect.
  105627. :  
  105628. : -Curtiss
  105629.  
  105630. or get a binary version of 189 at 
  105631. sunsite.unc.edu:/pub/Linux/apps/comm/ckermit-189.tar.gz
  105632.  
  105633. --
  105634. Arnatt Klinsong
  105635. aklinson@ripco.com
  105636. Home Page - http://ripco.com:8080/~aklinson/aklinson.html
  105637. ATSIST Page - http://www.nectec.or.th/bureaux/atsist/index.html
  105638.  
  105639.  
  105640.    __                            _   ,   _
  105641.   /  )               _/_ _/_    ' ) /   //
  105642.  /--/ __  ____  __.  /   /       /-<   // o ____  _   ________  _,
  105643. /  (_/ (_/ / <_(_/|_<___<__     /   ) </_<_/ / <_/_)_(_) / / <_(_)_
  105644.                                                                 /|
  105645.                                                                |/
  105646.  
  105647. From news@columbia.edu Tue Mar 21 13:19:12 1995
  105648. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12726
  105649.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 21 Mar 1995 08:52:57 -0500
  105650. Received: by apakabar.cc.columbia.edu id AA05185
  105651.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 21 Mar 1995 08:52:55 -0500
  105652. Newsgroups: comp.protocols.kermit.misc
  105653. Path: news.columbia.edu!news.cs.columbia.edu!news.nyc.pipeline.com!newsjunkie.ans.net!howland.reston.ans.net!ix.netcom.com!netcom.com!helios
  105654. From: helios@netcom.com (Thomas David Nichols)
  105655. Subject: Re: MS-Kermit, MS-Windows & Norton Desktop
  105656. Message-Id: <heliosD5sL00.Jrq@netcom.com>
  105657. Organization: Heliotrope Quality Systems
  105658. X-Newsreader: TIN [version 1.2 PL1]
  105659. References: <3k1vs4$nrl@n.ruf.uni-freiburg.de> <3k4fna$sgs@n.ruf.uni-freiburg.de> <heliosD5JEKx.GCz@netcom.com>
  105660. Date: Tue, 21 Mar 1995 13:19:12 GMT
  105661. Lines: 20
  105662. Sender: helios@netcom20.netcom.com
  105663. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  105664.  
  105665. Thomas David Nichols (helios@netcom.com) wrote:
  105666.  
  105667. : I have a similar problem, which I fix by typing "take mscustom.ini" when
  105668. : I see a message about using bios4 instead of com4.  I tried testing the
  105669. : port name variable in the log-on script and re-issuing the "set port" 
  105670. : command, but that didn't fix the error.  I'll try re-issuing the "set 
  105671. : com4" as well - thanks for the idea!
  105672.  
  105673. Reissuing both commands wasn't enough.  I have found the pattern, 
  105674. though.  It happens only the first time after I use the modem with a 
  105675. native Windows program (CompuServe Information Manager).  CIM switches 
  105676. the flow control from rts/cts to xon/off, disables data compression (MNP5 
  105677. and V.42bis), and sets max time for diagnostic tests from 255 to 0.  
  105678. Otherwise, the modem settings are untouched.  I guess Windows just 
  105679. doesn't want to give up control of COM4.  Maybe if I put the right amount 
  105680. of delay at the right place in the script it would work the first time, 
  105681. or at least the second time.  100 ms between "set com" and "set port" did 
  105682. not help when I tried it before.
  105683. -- 
  105684. David Nichols  <helios@netcom.com>  Heliotrope Quality Systems
  105685.  
  105686. From news@columbia.edu Tue Mar 21 14:05:24 1995
  105687. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13749
  105688.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 21 Mar 1995 09:05:30 -0500
  105689. Received: by apakabar.cc.columbia.edu id AA05751
  105690.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 21 Mar 1995 09:05:28 -0500
  105691. Path: news.columbia.edu!usenet
  105692. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  105693. Newsgroups: comp.protocols.kermit.misc
  105694. Subject: Re: HELP: Status of term when kermit exits.
  105695. Date: 21 Mar 1995 14:05:24 GMT
  105696. Organization: Columbia University
  105697. Lines: 68
  105698. Message-Id: <3kmmf4$5jl@apakabar.cc.columbia.edu>
  105699. References: <saur.795725006@mercury>
  105700. Nntp-Posting-Host: fdc.cc.columbia.edu
  105701. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  105702.  
  105703. In article <saur.795725006@mercury> saur@mercury.interpath.net (Saurian)  
  105704. writes:
  105705. > I was wondering if someone could let me know the latest and
  105706. > greatest UNIX version of kermit and what bugs have been fixed
  105707. > since 5A(188)
  105708. > The reason I'm asking is that I've found a bug and don't know
  105709. > if it has been fixed.
  105710. > NOTE THE FOLLOWING IS A VERY CRUDE READING FROM A NOVICE
  105711. > SO PLEASE DON'T LAUGH AT ME IF I COMPLETELY MISSED SOMETHING :)
  105712. > The problem is that the following line is in the "conres"
  105713. > routine in the "ckutio" module.
  105714. >    if (!isatty(0)) return(0);
  105715. > Which is supposed to bypass any terminal reseting when not
  105716. > called from a tty.
  105717. > OK sounds lagit, BUT ...
  105718. > When kermit is called from a popen from another software
  105719. > package, "isatty(0)" returns a "0". If this other software
  105720. > package uses CBREAK mode or some other special setup, it's
  105721. > special setup will be wiped out by kermit because "conres"
  105722. > never gets executed.
  105723. > An example is the news reader "nn". "nn" can "save" to a pipe
  105724. > to another software package. If you hit "nn"'s save key and
  105725. > then specify the following, everything works perfectly until
  105726. > kermit returns.
  105727. >    | (kermit -v 10 -s - )
  105728. > At which time "nn" no longer works correctly because it's
  105729. > CBREAK mode has been reset.
  105730. > Has this been fixed?
  105731. > I'm concidering sending a copy of this to the kermit support
  105732. > mail box.
  105733. You have.
  105734.  
  105735. If !isatty(0), then not only does Kermit not restore the terminal,
  105736. it doesn't change it in the first place.  Therefore, this problem
  105737. *should* not be happening.  We can take this offline to work on it
  105738. more detail.
  105739.  
  105740. Meanwhile, any program that puts the tty in a special mode and then
  105741. invokes other programs should be a bit more defensive.  Like the shell,
  105742. for example:
  105743.  
  105744.   $ cat blah | kermit -s -
  105745.  
  105746. The terminal is fine afterwards.
  105747.  
  105748. Third, you can give Kermit a file descriptor on the command for the
  105749. communication channel.  This prevents Kermit from opening and conditioning
  105750. the line:
  105751.  
  105752.   | kermit -l 1 -s -
  105753.  
  105754. - Frank
  105755. x
  105756. x
  105757. x
  105758. x
  105759. x
  105760. x
  105761. x
  105762. x
  105763. x
  105764. x
  105765. x
  105766.  
  105767. From news@columbia.edu Tue Mar 21 14:08:20 1995
  105768. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13847
  105769.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 21 Mar 1995 09:08:24 -0500
  105770. Received: by apakabar.cc.columbia.edu id AA05801
  105771.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 21 Mar 1995 09:08:22 -0500
  105772. Path: news.columbia.edu!usenet
  105773. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  105774. Newsgroups: comp.protocols.kermit.misc
  105775. Subject: Re: CASE or EXPECT for c-kermit
  105776. Date: 21 Mar 1995 14:08:20 GMT
  105777. Organization: Columbia University
  105778. Lines: 75
  105779. Message-Id: <3kmmkk$5l7@apakabar.cc.columbia.edu>
  105780. References: <3klcgm$ao7@news.eecs.uic.edu>
  105781. Nntp-Posting-Host: fdc.cc.columbia.edu
  105782. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  105783.  
  105784. In article <3klcgm$ao7@news.eecs.uic.edu> aklinson@bert.eecs.uic.edu (Arnatt  
  105785. Klinsong) writes:
  105786. >  am using ckermit 189 for Linux.
  105787. > I am writing a login script in kermit. This will also perform various auto  
  105788. function too. my question, what is the best way to constr
  105789. > expect {
  105790. >         "DIALIN-2>"        goto dialin2
  105791. >         "DIALIN-3>"        goto dialin3
  105792. >         "term="                goto setterm
  105793. >         "aaaa"                goto a-a
  105794. >         .
  105795. >         .
  105796. >         nad so on...
  105797. >         }
  105798. > ckermit has "input" and "script" command, but they will only wait for one  
  105799. input
  105800. A similar question was asked recently.  Here's the answer:
  105801.  
  105802. In article <3jfr55$atl@hpwin055.uksr.hp.com>,
  105803. Daniel Huber <danielh@hpber002.swiss.hp.com> wrote:
  105804. >Has anybody written a Kermit (5A 188) script containing command line
  105805. >processing (with error handling), case contructs like the one outlined  
  105806. below,
  105807. >or any other, more sophisticated Kermit script programming examples?
  105808. >
  105809. You can accomplish a case-like statement very easily in Kermit's
  105810. script programming language using GOTO (or, more efficiently in version
  105811. 190), FORWARD, because the GOTO (or FORWARD) target can be a variable.
  105812. First, look at the simple example in ckermod.ini (.mykermrc):
  105813.  
  105814. forward \v(system)
  105815.  
  105816. :UNIX                           ; UNIX, all versions...
  105817. ..
  105818. end ; or FORWARD someplace below...
  105819.  
  105820. :VMS
  105821. ..
  105822. end ; or FORWARD someplace below...
  105823.  
  105824. etc.  In this case, we know all the values of \v(system), so we can make
  105825. a "case label" for each one.
  105826.  
  105827. To apply this technique to script programming, use the MINPUT command,
  105828. which was added in edit 190, and which takes a list of items to look for,
  105829. rather than just one item (read about it in the ckcker.upd file):
  105830.  
  105831.   MINPUT 30 {00 OK} {10 NOT OK} {11 NOT OK} ... {55 NOT OK}
  105832.   IF FAILURE END 1 No valid response from pager in 30 seconds.
  105833.   FORWARD PAGER_\v(minput) ; concatenate MINPUT response number with PAGER_
  105834.   :PAGER_1                 ; here is the first CASE label
  105835.      ; commands for this response
  105836.      FORWARD DONE          ; this is like BREAK in C
  105837.   :PAGER_2                 ; second CASE label
  105838.      ; commands for this response
  105839.      FORWARD DONE
  105840.   ...
  105841.   :PAGER_55
  105842.      ; commands for this response
  105843.  
  105844.   :DONE
  105845.  
  105846. Note that there is no DEFAULT clause, as in C.  You have to make sure that
  105847. you never GOTO (FORWARD) a nonexistent label.  Not a big deal in this 
  105848. example, because you already know what all the valid responses from MINPUT
  105849. will be.  In other applications, you might have to do some prechecking,
  105850. as in this example from ckermit.ini:
  105851.  
  105852.   IF NOT = 0 \findex(\v(system),OS/2:Macintosh:Amiga:Atari_ST) -
  105853.     FORWARD files
  105854.  
  105855. - Frank
  105856.  
  105857. From news@columbia.edu Tue Mar 21 14:13:34 1995
  105858. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14517
  105859.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 21 Mar 1995 09:16:23 -0500
  105860. Received: by apakabar.cc.columbia.edu id AA06074
  105861.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 21 Mar 1995 09:14:14 -0500
  105862. Path: news.columbia.edu!usenet
  105863. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  105864. Newsgroups: comp.protocols.kermit.misc
  105865. Subject: Re: Linux ?
  105866. Date: 21 Mar 1995 14:13:34 GMT
  105867. Organization: Columbia University
  105868. Lines: 30
  105869. Message-Id: <3kmmue$5r1@apakabar.cc.columbia.edu>
  105870. References: <D5r0Ep.J7I@rci.ripco.com>
  105871. Nntp-Posting-Host: fdc.cc.columbia.edu
  105872. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  105873.  
  105874. In article <D5r0Ep.J7I@rci.ripco.com> aklinson@ripco.com (Arnatt Klinsong)  
  105875. writes:
  105876. > Curtiss Cicco (1CMC3466@ibm.mtsac.edu) wrote:
  105877. > : In article <tstevensD5ADys.KpK@netcom.com>
  105878. > : tstevens@netcom.com (Edward Stevens) writes:
  105879. > : >        Where can I find the latest kermit for Linux ? Thanks.
  105880. > :      You can get it at the same place where it is available for other
  105881. > : systems, which is at kermit.columbia.edu, and if I remember correctly
  105882. > : the file name is C-kermit.linux or something to that effect.
  105883. > or get a binary version of 189 at 
  105884. > sunsite.unc.edu:/pub/Linux/apps/comm/ckermit-189.tar.gz
  105885. No, please get Kermit software from Columbia University.  Version 5A(189)
  105886. is not current.  5A(190) is.  For Linux:
  105887.  
  105888. Anonymous ftp to kermit.columbia.edu, directory kermit/archives, binary
  105889. mode, file cku190.tar.Z (or .gz for gunzip).  Uncompress, untar,
  105890. "make linux".
  105891.  
  105892. That's all there is to it.
  105893.  
  105894. - Frank
  105895. x
  105896. x
  105897. x
  105898. x
  105899. x
  105900. x
  105901. x
  105902.  
  105903. From news@columbia.edu Tue Mar 21 14:24:05 1995
  105904. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15080
  105905.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 21 Mar 1995 09:26:46 -0500
  105906. Received: by apakabar.cc.columbia.edu id AA06799
  105907.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 21 Mar 1995 09:24:43 -0500
  105908. Path: news.columbia.edu!usenet
  105909. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  105910. Newsgroups: comp.protocols.kermit.misc
  105911. Subject: Re: PDP-11 to PC transfer trouble
  105912. Date: 21 Mar 1995 14:24:05 GMT
  105913. Organization: Columbia University
  105914. Lines: 67
  105915. Message-Id: <3kmni5$6gt@apakabar.cc.columbia.edu>
  105916. References: <3kke33$2l6@cronkite.ocis.temple.edu>
  105917. Nntp-Posting-Host: fdc.cc.columbia.edu
  105918. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  105919.  
  105920. In article <3kke33$2l6@cronkite.ocis.temple.edu>
  105921. agwing@astro.ocis.temple.edu (Andrew Wing) writes:
  105922. >I'm having trouble moving a large text file from our PDP-11/44 to a PC.
  105923. > Background: I need to export data from an app based on the PDP-11 to
  105924. > Foxpro for Windows on the PC.  The app on the PDP-11 is generating text
  105925. > files in an SDF format.  The intent is for the user to run a script to
  105926. > transfer seven of these files to their PC.  I have a similar setup for
  105927. > another app which works fine.
  105928. > systems:  Gateway 2000 486DX/33, DOS 5, Kermit 3.13 (patch level 21)
  105929. >           DEC PDP-11/44 running RSTS 9.7, Kermit-11 vT3.60
  105930. > symptoms: When I transfer the text files in TEXT mode, they all transfer
  105931. > OK *except* the one with 795 byte lines.  The transfer starts, five
  105932. > packets go by and then the process stops abruptly with no error
  105933. > reported.  It appears that Kermit is having trouble negotiating a packet
  105934. > size since it never 'settles down' to its standard 90 something size in
  105935. > the status screen.  Kermit insists that the transfer is "complete" and I
  105936. > end up with a blank file on the PC.
  105937. > I tried setting the file type to binary and it works, only I get the
  105938. > trailing nulls contained in the last cluster of the data file.  This  
  105939. imports
  105940. > into Foxpro as a blank record.  All the other text files will transfer in
  105941. > text mode OK.
  105942. >     I've tried tweaking packet size, windows, attribute packets and
  105943. > handshaking to no avail.  The .BWR and .INS files don't address this 
  105944. > directly.  They only make a reference to problems with attribute packets
  105945. > which I already disabled.
  105946. > What parameters do I need to set to get this file to transfer in
  105947. > text mode?  TIA!
  105948. I think you have probably done all you can.
  105949.  
  105950. I suspect that the problem is similar to the one in VMS Kermit-32, namely
  105951. that Kermit-11 is doing RMS record-oriented input, and its record buffer
  105952. is shorter than 795.  In binary mode, it probably uses a buffer that is
  105953. the maximum record size for RMS.
  105954.  
  105955. The author of Kermit-11 no longer maintains the program, so there's not
  105956. much we can do about it.  However, fixing this problem might be as simple
  105957. as changing the value of a symbol and rebuilding.
  105958.  
  105959. - Frank
  105960. x
  105961. x
  105962. x
  105963. x
  105964. x
  105965. x
  105966. x
  105967. x
  105968. x
  105969. x
  105970. x
  105971. x
  105972. x
  105973. x
  105974. x
  105975. x
  105976. x
  105977. x
  105978. x
  105979. x
  105980.  
  105981. From news@columbia.edu Tue Mar 21 15:01:24 1995
  105982. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17594
  105983.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 21 Mar 1995 10:03:13 -0500
  105984. Received: by apakabar.cc.columbia.edu id AA08959
  105985.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 21 Mar 1995 10:02:03 -0500
  105986. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  105987. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  105988. Newsgroups: comp.protocols.kermit.announce,comp.protocols.kermit.misc,comp.os.os2.apps,comp.os.os2.networking.tcp-ip,bit.listserv.os2-l,comp.dcom.modems
  105989. Subject: OS/2 C-Kermit 5A(191) Beta Available for Testing
  105990. Date: 21 Mar 1995 15:01:24 GMT
  105991. Organization: Columbia University
  105992. Lines: 331
  105993. Approved: fdc@columbia.edu
  105994. Message-Id: <3kmpo4$8nn@apakabar.cc.columbia.edu>
  105995. Nntp-Posting-Host: watsun.cc.columbia.edu
  105996. Keywords: OS/2, C-Kermit
  105997. Xref: news.columbia.edu comp.protocols.kermit.announce:9 comp.protocols.kermit.misc:2315 comp.os.os2.apps:73039 comp.os.os2.networking.tcp-ip:21930 bit.listserv.os2-l:28421 comp.dcom.modems:85136
  105998. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  105999.  
  106000.  
  106001. This is to announce a brief Beta testing period for OS/2 C-Kermit 5A(191).
  106002.  
  106003. If you have a Web browser, you are encouraged to read this notice in
  106004. hypertext format on the Web at the following URL, because there is a lot
  106005. more information in it (hypertext links):
  106006.  
  106007.   http://www.columbia.edu/kermit/cko191.html
  106008.  
  106009. If you are already familiar with OS/2 C-Kermit, feel free to skip past
  106010. the following fifty lines (two 24-line screens).
  106011.  
  106012. OS/2 C-Kermit is Columbia University's full-function native communication
  106013. software package for OS/2 that works uniformly over:
  106014.  
  106015.  . Serial connections, direct or dialed, all speeds.
  106016.  . TCP/IP network connections, including SLIP.
  106017.  . DECnet PATHWORKS LAT connections.
  106018.  . LAN and/or interprocess connections such as NETBIOS and Named Pipes.
  106019.  . Asynchronous communication servers.
  106020.  
  106021. Offering:
  106022.  
  106023.  . Faithful ANSI, VT220, VT102, VT100, and VT52 terminal emulations with
  106024.    all the expected add-ons -- rollback, key mapping, color control,
  106025.    printer control, Compose key, screen & session capture, etc.
  106026.  . A complete implementation of the Kermit file transfer protocol, including
  106027.    all the most advanced features for highest performance, the new recovery
  106028.    capability, as well as auto-uplodad and -download.
  106029.  . A powerful and portable script programming language.
  106030.  . A large repertoire of character-set translations.
  106031.  . Dialing and services directories.
  106032.  . Easy access to external protocols (e.g. P.EXE for X/Y/Zmodem).
  106033.  
  106034. And lots of OS/2-specific features, including:
  106035.  
  106036.  . Advanced user-customizable mouse operations.
  106037.  . Full compatibility with the OS/2 PM Clipboard.
  106038.  . Use of OS/2 System Sounds during command and terminal modes.
  106039.  . Work Place Shell integration through program objects.
  106040.  . Alternative REXX macro programming extensions.
  106041.  . Full support for HPFS and Extended Attributes during file transfers.
  106042.  . SLIPTERM compatibility.
  106043.  . Integration with IBM WebExplorer.
  106044.  . The ability to transfer entire directory trees from one OS/2
  106045.    system to another, with all file attributes preserved.
  106046.  . Multiple threads for efficient task scheduling and low CPU load.
  106047.  . Fast semaphores for intraprocess communication.
  106048.    
  106049. With its wide range of features and communication methods, OS/2 C-Kermit
  106050. is ideally suited to OS/2 users who:
  106051.  
  106052.  . Want to communicate with a diverse assortment of hosts and services.
  106053.  . Want to use the same application for serial and network connections,
  106054.    e.g. for home and office use.
  106055.  . Want a better TELNET (with rollback, key mapping, colors, scripting).
  106056.  . Want a TELNET that can also transfer files.
  106057.  . Want to communicate in languages other than English.
  106058.  . Want to write script programs that are portable to many platforms.
  106059.  
  106060. Space does not permit listing all the features of previous versions of
  106061. OS/2 C-Kermit, but if you want to know more, feel free to visit our Web
  106062. site starting at URL:
  106063.  
  106064.   http://www.columbia.edu/kermit/os2.html
  106065.  
  106066. C-Kermit Version 5A(191) is a brand-new 32-bit release for OS/2 2.00
  106067. and later, including Warp.  It adds the following major new features:
  106068.  
  106069.  . Dramatic speed improvements
  106070.  . Sizeable terminal screens.
  106071.  . New and improved mouse functions.
  106072.  . Improved TELNET client functions.
  106073.  . Incoming TCP/IP connections.
  106074.  . SLIP dialing.
  106075.  . Cyrillic (Russian) terminal emulation.
  106076.  . Soft fonts for Hebrew, Cyrillic, and East European terminal emulation.
  106077.  
  106078. And many lesser ones.  In more detail:
  106079.  
  106080. SPEED IMPROVEMENTS
  106081.  
  106082. CONNECT mode -- terminal emulation -- is now incredibly snappy on both
  106083. serial and network connections, in both window and fullscreen sessions.
  106084.  
  106085. C-Kermit 5A(191) processes incoming data in parallel with screen updating.
  106086. Furthermore, the screen is now updated far more efficiently than before.
  106087. To give an idea of the speed improvement, we used a ripple-test benchmark
  106088. that scrolls 1000 80-column lines of text, obtaining the following display
  106089. timings for various TELNET clients attached to a 10 Mb/sec Ethernet
  106090. network running on the same PC in a fullscreen session:
  106091.  
  106092.   C-Kermit 5A(190)    24 sec
  106093.   IBM Telnet          22 sec  (TCP/IP 1.2.1)
  106094.   MS-DOS Kermit       12 sec  (v3.14 under DOS, not under OS/2)
  106095.   C-Kermit 5A(191)     5 sec
  106096.  
  106097. In an OS/2 window, the same test takes only 7 seconds, compared to 55
  106098. seconds in the previous release -- about an 800% improvement.
  106099.  
  106100. The new display management model has also been used to accomplish several
  106101. other astounding feats:
  106102.  
  106103.  . Terminal sessions remain active behind popup help screens.
  106104.  . Incoming material is processed even when screen is rolled back.
  106105.  . Copy-and-paste can span multiple screens (more about this below).
  106106.  
  106107. Meanwhile, serial port handling is now far more efficient, putting less load
  106108. on the CPU, allowing serial-port intput/output to take place at high speeds
  106109. without seriously impacting the rest of the system.
  106110.  
  106111. SIZEABLE TERMINAL SCREENS
  106112.  
  106113. You asked for VT100 132-column mode, now you've got it and a lot more too.
  106114.  
  106115. In Warp window sessions, C-Kermit now supports any combination of screen
  106116. height and width, up to 255 columns and 254 rows with a maximum screen
  106117. area of 8192 characters.
  106118.  
  106119. In fullscreen sessions the terminal screen can now use 40, 80, or 132
  106120. columns and 24, 42, 49, or 59 rows.  Not all combinations are supported by
  106121. all video hardware.  Warp is not required.
  106122.  
  106123. Host-directed screen-width switching in VT100, VT102, and VT220 emulation
  106124. is now implemented for 80-column and 132-column modes when the video
  106125. adapter supports it.  Screen dimensions are automatically reported to the
  106126. host on TELNET connections if the TELNET server supports (and uses) the
  106127. "NAWS" option.
  106128.  
  106129. SOFT FONTS
  106130.  
  106131. C-Kermit 5A knows a lot of character sets and translates between any
  106132. pair of them.  But in OS/2, we have another problem: how to see the right
  106133. characters on the screen.  For example, in version 5A(190) we added
  106134. support for Hebrew terminal emulation, which works very nicely if you
  106135. happen to have a Hebrew version of OS/2 (which you can only get in
  106136. Israel), but is useless otherwise -- e.g. to Hebrew and Yiddish scholars
  106137. in the USA, because, until now there was no way to get a Hebrew code page
  106138. onto a US version of OS/2.
  106139.  
  106140. The new version of OS/2 C-Kermit comes with the following soft fonts that
  106141. you can load in a fullscreen session, for use in the terminal window:
  106142.  
  106143.   CP437 - Original PC code page
  106144.   CP850 - "Multilingual" (West Europe) code page
  106145.   CP852 - East Europe Roman Alphabet code page (for Czech, Polish, etc)
  106146.   CP862 - Hebrew code page
  106147.   CP866 - Cyrillic (Russian, Belorussian, and Ukrainian) code page
  106148.  
  106149. So now, no matter what OS/2 National Language version you have, you can
  106150. use OS/2 C-Kermit to conduct terminal sessions in at least the following
  106151. languages:
  106152.  
  106153.   Albanian, Belorussian, Bulgarian, Croatian, Czech, Danish, Dutch,
  106154.   English, Faeroese, Finnish, French, German, Hebrew, Hungarian,
  106155.   Icelandic, Irish, Italian, Ladino, Latin, Macedonian, Norwegian, Polish,
  106156.   Portuguese, Romanian, Russian, Serbian, Slovak, Slovene, Spanish,
  106157.   Swedish, Swiss, Ukrainian, and Yiddish.
  106158.  
  106159. Thanks to Joseph (Yossi (Yogi)) Gil at the Technion in Haifa, Israel, for
  106160. furnishing these public-domain fonts.
  106161.  
  106162. CYRILLIC TERMINAL EMULATION
  106163.  
  106164. OK, we added a Cyrillic font, so now you can read those Russian newsgroups
  106165. and Web pages.  But if you don't have a Russian (or Ukrainian, or
  106166. Belorussian) keyboard, how do you TYPE Russian characters?  The new
  106167. C-Kermit release adds a Russian keyboard mode that includes:
  106168.  
  106169.  . The Microsoft Russian DOS keyboard layout.
  106170.  . Hot-key switching between Russian and English modes.
  106171.  . Automatic translation to the host character-set (KOI, ISO, etc).
  106172.  
  106173. This is in addition to the keyboard methods that were already available
  106174. in earlier releases:
  106175.  
  106176.  . A Compose key for Latin-1-like character sets (for Western European
  106177.    languages like Italian, Portuguese, Norwegian, German, French, etc).
  106178.  
  106179.  . A Hebrew keyboard mode for Hebrew and Yiddish.
  106180.  
  106181. THE MOUSE AND MARK MODE
  106182.  
  106183. Copy-and-paste capability, as well as mouse-directed terminal cursor
  106184. steering, were introduced in the previous release.  In version 5A(191):
  106185.  
  106186.  . Text selection can now span the entire virtual screen,
  106187.    scrollback buffer included.
  106188.  . You can reassign these functions to different mouse events.
  106189.  . You can assign them to keys.
  106190.  . You can assign keyboard verbs, macros, or text to mouse events.
  106191.  . Copy-and-paste works consistently between C-Kermit and other apps.
  106192.  
  106193. To get a quick idea of the power of the new "mark mode": after installing
  106194. the new version, starting it up, and accumulating a bunch of screens in
  106195. the rollback buffer:
  106196.  
  106197.  . Hold down the left mouse button.
  106198.  . Drag the mouse towards the top of screen, watch text being selected.
  106199.  . Now drag it PAST the top of the screen -- watch what happens.
  106200.  . Push the Arrow, Page Up/Down, or Home/End keys while dragging.
  106201.  
  106202. Any text that you select this way can be copied to the PM clipboard,
  106203. printed on your printer, copied to a file, or pasted directly into your
  106204. terminal session.
  106205.  
  106206. TCP/IP IMPROVEMENTS
  106207.  
  106208. TELNET connections are about 500% faster than before.  Several TELNET
  106209. protocol problems were fixed, most notably the ones relating to
  106210. "firewalls".  Connections are now attempted to multiple IP addresses when
  106211. provided by the name server, until success is achieved.  TELNET NAWS
  106212. (Negotiate About Window Size) capability has been added.
  106213.  
  106214. Incoming TCP/IP connections are now accepted -- you can TELNET to OS/2
  106215. C-Kermit on a pre-arranged socket and have a "chat" session or execute
  106216. Kermit server functions.
  106217.  
  106218. OS/2 C-Kermit can now dial your Warp IAK SLIP connections for you, using
  106219. a special technique to "borrow" the serial port from the SLIP driver.
  106220. This gives you a lot more flexibility than you get with SLIPTERM.
  106221.  
  106222. OS/2 C-Kermit gives you all the convenience features of a serial
  106223. communications program integrated with its own internal TELNET protocol
  106224. implementation.  If you do a lot of TELNET'ing to diverse services,
  106225. especially on non-TELNET ports, you'll begin to appreciate what this
  106226. means.  If you want it spelled out in more detail, see the APPENDIX at
  106227. the end of this announcement :-)
  106228.  
  106229. OTHER CHANGES
  106230.  
  106231.  ...include:
  106232.  
  106233.  . Improved context-sensitive help screens, status lines, and messages.
  106234.  . More key combinations are recognized for SET KEY.
  106235.  . System Sounds can now be used to differentiate "Information",
  106236.    "Warning", and "Error" events.
  106237.  . REMOTE RENAME and REMOTE COPY (both ends) added.   
  106238.  . New and improved hypertext Updates documentation.
  106239.  . Various other new commands, bug fixes, cleanups, etc.
  106240.  
  106241. DOCUMENTATION
  106242.  
  106243. OS/2 C-Kermit 5A(191) is comprehensively and professionally documented in
  106244. the book, "Using C-Kermit", supplemented by the hypertext CKERMIT.INF
  106245. file, which covers recent additions.  Ordering information for the book is
  106246. included in the CKERMIT.INF file, which may be accessed from the C-Kermit>
  106247. prompt with the UPDATES command.
  106248.  
  106249. WHERE TO GET IT
  106250.  
  106251. OS/2 C-Kermit 5A(191) Beta may be obtained (and should ONLY be obtained)
  106252. From kermit.columbia.edu via anonymous ftp, directory kermit/test/os2test,
  106253. file cko191.zip.  Transfer it in binary mode (every step of the way),
  106254. unzip it on your OS/2 system into a spare directory, then run the INSTALL
  106255. script.  For safety, don't install the Beta version over your previous
  106256. OS/2 C-Kermit version -- read the directions on your screen carefully.
  106257. After installation, you should copy your CKERMOD.INI, CKERMIT.KDD, and
  106258. CKERMIT.KSD files from your regular CKERMIT directory to the new one.
  106259.  
  106260. The cko191.zip file should not be copied to other FTP sites.  It is likely
  106261. to change frequently during the Beta testing period, and we don't want
  106262. outdated copies circulating.  Check the ZIP file every so often to see if
  106263. it has been updated, or consult the Web entry at URL:
  106264.  
  106265.   http://www.kermit.columbia.edu/kermit/cko191.html
  106266.  
  106267. Please report bugs (in the software or the documentation) by email to:
  106268.  
  106269.   kermit@columbia.edu
  106270.  
  106271. NOTE: 5A(191) is an OS/2-only release of C-Kermit.
  106272.  
  106273. Thanks to Jeff Altman for 99% of the work that went into this new release.
  106274.  
  106275. APPENDIX: TELNET AND SERIAL COMMUNICATIONS SOFTWARE
  106276.  
  106277. There is a widespread misconception among PC users that a "virtual modem"
  106278. or TELNET redirector such as COMTCP, VMODEM, COMt (for Windows), or
  106279. TNGLASS (for DOS) plus your favorite serial communications package creates
  106280. the perfect TELNET client.
  106281.  
  106282. Your serial communication package MIGHT enable you to connect to your host
  106283. this way, but if it works right throughout your session, it's pure luck.
  106284. Numerous items -- echoing, screen size, terminal type, and other
  106285. parameters -- need to be negotiated and sometimes changed dynamically
  106286. throughout the session, depending on the service and the server.
  106287.  
  106288. A serial communications program is not designed to handle this type of
  106289. work.  So the virtual modem software must handle the TELNET protocol
  106290. parameter negotiations on behalf of the communication software.  So far,
  106291. so good.  The problem is that when things change, the virtual modem
  106292. software has no way of telling the communications software, and similarly,
  106293. when the user changes things in the communications software, the virtual
  106294. modem doesn't find out about it and can't tell the TELNET server.
  106295.  
  106296. To complicate matters further, the TELNET Network Virtual Terminal (NVT)
  106297. definition does not work like the ASCII terminal that your serial
  106298. communications software is emulating.  Certain characters must be handled
  106299. specially, including carriage return, linefeed, and the "all-ones"
  106300. character, hex FF.  Furthermore, special items like the BREAK signal must
  106301. be handled by special TELNET protocol messages.
  106302.  
  106303. So when using serial communications software to accomplish a TELNET
  106304. connection over a virtual modem, it is very likely to have all sorts of
  106305. problems, including:
  106306.  
  106307.  . Terminal-type and/or screen-size mismatch.
  106308.  
  106309.  . Faulty echoing: characters can fail to echo when you type them, or
  106310.    might echo twice.  "Password silencing" might not work.
  106311.  
  106312.  . You might get overprinting or a "stairstep" effect as the host sends
  106313.    lines to your terminal screen.
  106314.  
  106315.  . Carriage return (Enter) might have no effect at all when you type it.
  106316.  
  106317.  . The session might suddenly hang because a special character has not
  106318.    been properly escaped during terminal emulation or file transfer.
  106319.  
  106320.  . BREAK, required by some hosts and applications, can't be sent.
  106321.  
  106322.  . When things go wrong, you have no effective debugging tools at your
  106323.    disposal, and even when you can diagnose the problems you often have no
  106324.    way to fix them.
  106325.  
  106326. THE MORAL:  If you want a fully-functional and dependable TELNET session,
  106327. use a real TELNET client.  If you want to use the same software for both
  106328. serial and TELNET connections, try C-Kermit.
  106329.  
  106330. (End)
  106331.  
  106332. From news@columbia.edu Tue Mar 21 19:24:09 1995
  106333. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10022
  106334.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 21 Mar 1995 15:33:05 -0500
  106335. Received: by apakabar.cc.columbia.edu id AA13030
  106336.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 21 Mar 1995 15:33:01 -0500
  106337. Path: news.columbia.edu!panix!news.mathworks.com!news.duke.edu!news-feed-1.peachnet.edu!gatech!swrinde!pipex!sunic!sunic.sunet.se!nic.tip.net!news.bahnhof.se!news.bahnhof.se!not-for-mail
  106338. From: marvi@bahnhof.se (Markus Hdrnvi)
  106339. Newsgroups: comp.protocols.kermit.misc
  106340. Subject: Ckermit (OS/2) logging phone-costs?
  106341. Date: 21 Mar 1995 19:24:09 -0000
  106342. Organization: Bahnhof Internet Access
  106343. Lines: 10
  106344. Message-Id: <3kn94p$a5p@sunny.bahnhof.se>
  106345. Nntp-Posting-Host: sunny.bahnhof.se
  106346. X-Newsreader: TIN [version 1.2 PL2]
  106347. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  106348.  
  106349. I'm not asking if Ckermit can do it (I can't figure out something it 
  106350. can't do), but how do I tell Ckermit to do it? Has someone tried this? 
  106351. Would it be best do do some script inside Ckermit or should I try to make 
  106352. a small rexx-program to dig out the information in the logfiles?
  106353.  
  106354. If you already know how to do it, post the script!
  106355.  
  106356. //thanks!
  106357. Markus
  106358.  
  106359.  
  106360. From news@columbia.edu Mon Mar 20 21:45:22 1995
  106361. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16592
  106362.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 21 Mar 1995 17:13:45 -0500
  106363. Received: by apakabar.cc.columbia.edu id AA24903
  106364.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 21 Mar 1995 17:13:42 -0500
  106365. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news.sprintlink.net!news.primenet.com!mix.com!zippy
  106366. From: billy@mix.com
  106367. Newsgroups: comp.protocols.kermit.misc
  106368. Subject: Re: PDP-11 to PC transfer trouble
  106369. Date: 20 Mar 1995 21:45:22 GMT
  106370. Organization: Billy's Place
  106371. Lines: 22
  106372. Distribution: inet
  106373. Message-Id: <3kkt1i$aii@news.primenet.com>
  106374. References: <3kke33$2l6@cronkite.ocis.temple.edu>
  106375. Nntp-Posting-Host: usr1.primenet.com
  106376. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  106377.  
  106378. Andrew Wing <agwing@astro.ocis.temple.edu> writes:
  106379.  
  106380. > symptoms: When I transfer the text files in TEXT mode, they all transfer OK
  106381. > *except* the one with 795 byte lines.  The transfer starts, five packets
  106382. > go by and then the process stops abruptly with no error reported.  It
  106383. > appears that Kermit is having trouble negotiating a packet size since it
  106384. > never 'settles down' to its standard 90 something size in the status screen.
  106385. > Kermit insists that the transfer is "complete" and I end up with a blank
  106386. > file on the PC.
  106387.  
  106388. Log files would be helpful here.  For K11, you'd -
  106389.  
  106390.   Kermit-11> LOGFILE test.log
  106391.   Kermit-11> SET DEBUG PACKET
  106392.   ..do the transfer, let it die..
  106393.   Kermit-11> SET DEUG OFF
  106394.  
  106395. One problem I'm aware of involves an out-of-range length byte
  106396. from K11 - you may have to SET DEBUG RAW to be able to see this.
  106397. Although, altering the packet length should have 'fixed' that..
  106398.  
  106399. Billy Y..
  106400.  
  106401. From news@columbia.edu Wed Mar 22 07:41:27 1995
  106402. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21806
  106403.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 22 Mar 1995 04:42:21 -0500
  106404. Received: by apakabar.cc.columbia.edu id AA15505
  106405.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 22 Mar 1995 04:42:19 -0500
  106406. Newsgroups: comp.protocols.kermit.misc
  106407. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news.cac.psu.edu!news.pop.psu.edu!hudson.lm.com!godot.cc.duq.edu!newsfeed.pitt.edu!uunet!in1.uu.net!news.erinet.com!netcom.com!6803924.896355483681.nntp.com!!primenet.com!netcom.com!crl.com!uunet.net!crl.com!netcom.com!ix.netcom.com!crl.com!mit.edu!duke.edu!psi.com!indirect.com!onramp.com!ix.netcom.com!crl.com!arizona.edu!utexas.edu! 
  106408. From: 6803924.896355483681@columbia.edu(Tellafriend)
  106409. Subject: Absorb Some Knowledge of Water
  106410. Message-Id: <6803924.896355483681@tellafriend.net>
  106411. Sender: kidston@netcom3.netcom.com
  106412. Nntp-Posting-Host: 6803924.896355483681.nntp.com
  106413. Organization: Tellafriend
  106414. Distribution: na
  106415. Date: Wed, 22 Mar 1995 07:41:27 GMT
  106416. Lines: 107
  106417. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  106418.  
  106419.  
  106420.                 Me again !!
  106421.                 Whisper and
  106422.                tell a friend about
  106423.                  water.
  106424.  
  106425. Point of information:    I don't care how busy you think you are! Take time to
  106426.             soak up some knowledge about the water that
  106427.             touches your life.
  106428.  
  106429. Subject:        Soft water  (U.S. & Canada only please)
  106430.  
  106431. Send:            $49.95
  106432.  
  106433. Receive:        A calibrated water sample bottle, fill, seal
  106434.             and return to my lab.
  106435.  
  106436. Receive:        A short water usage document.
  106437.  
  106438. Receive:        Quick reading FAQ and answers about the water 
  106439.             that touches your life.
  106440.  
  106441. Receive:        After you return the sample of water and the
  106442.             document you will receive an analysis and
  106443.             recommendation. 
  106444.  
  106445. Receive:        A free gift of true love.  It's literally a road 
  106446.             map to a personal emotional comfort level obtained 
  106447.             by few.  I absolutely guarantee it. 
  106448.  
  106449. Who am I:         TAF(Tellafriend) is an organization whose purpose
  106450.              is to alert a friend of quality services available.
  106451.              All services have been tested extensively and 
  106452.              come with an absolute money back guarantee. 
  106453.  
  106454. My promise:         If you use my service you will tell a friend "what
  106455.             a great service."
  106456.  
  106457. Mass posting:        Absolutely necessary.  I apologize - flame me if you
  106458.             like and I will explain rationale.
  106459.  
  106460. Because:        I am bringing service awareness via internet vs 
  106461.             outdated avenues such as newspaper, radio and soon 
  106462.             to be television.  I am able to save netters a
  106463.             minimum of 30% right off the top.  And because of
  106464.             the volume, I am able to offer free special gifts
  106465.             in addition to the discounts.
  106466.  
  106467. Discount 5%:        If you order within 5 days please take an 
  106468.             additional 5% off the already pocket change price 
  106469.             of $49.95.
  106470.  
  106471. Additional
  106472. discount 5%:        If you order by snail mail to help prevent 
  106473.             data overload. Thanks.
  106474.  
  106475.  
  106476. Make check
  106477. payable to:        TAF
  106478. Address:        19201 Rd 15, Pioneer, OH 43554
  106479. My fax:            419 737 2364
  106480. My phone:        419 737 2352
  106481.  
  106482. Order blank:        Name: Last              First
  106483.  
  106484. UPSable address:
  106485.  
  106486.  
  106487. City                        State            Zip         
  106488.  
  106489. Phone
  106490.  
  106491. Voice mail
  106492.  
  106493. Fax
  106494.  
  106495. Email
  106496.  
  106497. Visa            MC            AMX
  106498.  
  106499. Card number
  106500.  
  106501. Signature
  106502.  
  106503. Expiration date
  106504.  
  106505. check
  106506.  
  106507. Money Order
  106508.  
  106509. COD
  106510.  
  106511. Shipping:        Included except for COD
  106512.  
  106513. Thank you in advance for your faith in me.
  106514.  
  106515. Sincerely, the president of your fan club.
  106516.  
  106517.  
  106518. Bob
  106519.  
  106520.  
  106521. P.S. Orders have overwhelmed mail box. Please download and use 
  106522. snail mail to prevent data loss and watch for our home page coming soon.
  106523.  
  106524. Thanks Tellafriend
  106525.  
  106526.  
  106527. From news@columbia.edu Wed Mar 22 09:48:17 1995
  106528. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23483
  106529.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 22 Mar 1995 05:39:02 -0500
  106530. Received: by apakabar.cc.columbia.edu id AA19378
  106531.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 22 Mar 1995 05:39:00 -0500
  106532. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!gatech!udel!news.mathworks.com!panix!tinman.dev.prodigy.com!6803924.896355483681.nntp.com!cyberspam!user
  106533. Control: cancel <6803924.896355483681@tellafriend.net>
  106534. Newsgroups: comp.protocols.kermit.misc
  106535. From: 6803924.896355483681@columbia.edu(Tellafriend)
  106536. Subject: cmsg cancel <6803924.896355483681@tellafriend.net>
  106537. Date: 22 Mar 1995 09:48:17 GMT
  106538. Message-Id: <cancel.6803924.896355483681@tellafriend.net>
  106539. Organization: uoyzf
  106540. Nntp-Posting-Host: 6803924.896355483681.nntp.com
  106541. Sender: kidston@netcom3.netcom.com
  106542. Lines: 2
  106543. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  106544.  
  106545. Spam doesn't go down any easier with water...  
  106546.  
  106547.  
  106548. From news@columbia.edu Wed Mar 22 21:00:37 1995
  106549. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19839
  106550.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 22 Mar 1995 20:29:51 -0500
  106551. Received: by apakabar.cc.columbia.edu id AA23025
  106552.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 22 Mar 1995 20:29:48 -0500
  106553. Path: news.columbia.edu!sol.ctr.columbia.edu!spool.mu.edu!uwm.edu!news.alpha.net!news.mathworks.com!uunet!newsflash.concordia.ca!nstn.ns.ca!ac.dal.ca!ctsang
  106554. Newsgroups: comp.protocols.kermit.misc
  106555. Subject: thank you
  106556. Message-Id: <1995Mar22.170038.36194@ac.dal.ca>
  106557. From: ctsang@is.dal.ca (Chui Fung Tsang)
  106558. Date: 22 Mar 95 17:00:37 -0400
  106559. Nntp-Posting-Host: is.dal.ca
  106560. X-Newsreader: TIN [version 1.2 PL2]
  106561. Lines: 36
  106562. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  106563.  
  106564. From ctsang@is.dal.ca Wed Mar 22 12:25:41 1995
  106565. Date: Wed, 22 Mar 1995 12:25:41 -0400 (AST)
  106566. From: Chui Fung Tsang <ctsang@is.dal.ca>
  106567. Subject: Survey question
  106568. To: Chui Fung Tsang <ctsang@is.dal.ca>
  106569. Message-ID: <Pine.3.89.9503221232.D160190-0100000@is.dal.ca>
  106570. MIME-Version: 1.0
  106571. Content-Type: TEXT/PLAIN; charset=US-ASCII
  106572. Status: RO
  106573. X-Status: 
  106574.  
  106575. Hi, I would like to thank those who responded to 
  106576. my survey.
  106577.  
  106578. Some of u may wonder why I posted the survey in some
  106579. of the news groups which may not seem appropriate. 
  106580. The reason I did that was because I would like to
  106581. get answers from people of diverse backgrounds and
  106582. interests.
  106583.  
  106584. If I did inappropriately posted the survey in certain
  106585. newsgroups, I would like to apologize.
  106586.  
  106587. Thank you also for the people who give me some real
  106588. good advices too.
  106589.  
  106590. I'll post the result of the survey in 2 weeks.
  106591.  
  106592. Thank you all.
  106593.  
  106594.  
  106595. Olivia
  106596.  
  106597.  
  106598.  
  106599.  
  106600.  
  106601. From news@columbia.edu Thu Mar 23 16:36:38 1995
  106602. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23147
  106603.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 23 Mar 1995 16:13:23 -0500
  106604. Received: by apakabar.cc.columbia.edu id AA04402
  106605.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 23 Mar 1995 16:13:21 -0500
  106606. Newsgroups: comp.protocols.kermit.misc
  106607. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news.sprintlink.net!psgrain!agora!agora.rdrop.com!lcoady
  106608. From: lcoady@agora.rdrop.com (Lucas Coady)
  106609. Subject: Looking for IBM-PC Kermit v3.01
  106610. X-Newsreader: TIN [version 1.2 PL2]
  106611. Sender: news@agora.rdrop.com (USENET News)
  106612. Nntp-Posting-Host: agora.rdrop.com
  106613. Organization: RainDrop Laboratories
  106614. Message-Id: <D5wJH3.7B6@agora.rdrop.com>
  106615. Date: Thu, 23 Mar 1995 16:36:38 GMT
  106616. Lines: 5
  106617. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  106618.  
  106619. Does anyone know where I can find a copy of the MS-Kermit v3.01 for 
  106620. IBM-PC source?
  106621.  
  106622. Luke
  106623.  
  106624.  
  106625. From news@columbia.edu Thu Mar 23 23:01:02 1995
  106626. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01972
  106627.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 23 Mar 1995 18:36:41 -0500
  106628. Received: by apakabar.cc.columbia.edu id AA18392
  106629.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 23 Mar 1995 18:36:39 -0500
  106630. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!swrinde!pirates.cs.swt.edu!astros.cs.swt.edu!tm
  106631. From: tm@astros.cs.swt.edu (Tom F McCabe)
  106632. Newsgroups: comp.protocols.kermit.misc
  106633. Subject: os2 version - works over ethernet ?
  106634. Date: 23 Mar 1995 23:01:02 GMT
  106635. Organization: Computer Science Department, Southwest Texas State University
  106636. Lines: 17
  106637. Message-Id: <3ksuje$fmd@pirates.cs.swt.edu>
  106638. Nntp-Posting-Host: astros.cs.swt.edu
  106639. X-Newsreader: TIN [version 1.2 PL2]
  106640. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  106641.  
  106642.  
  106643.  
  106644. I can't find the answer to this in any faqs and
  106645. or announcements.  Can I use the new os2 kermit
  106646. version to connect via telnet (or ftp or kermit
  106647. file transfers) over a ethernet line instead of
  106648. a serial port?
  106649.  
  106650. I see that telnet is mentioned in the announcemnets
  106651. but I can't tell if it's restricted to slip/ppp
  106652. lines.
  106653.  
  106654. thanks for any info,
  106655. tom mccabe
  106656. tm@astros.cs.swt.edu
  106657.  
  106658.  
  106659.  
  106660. From news@columbia.edu Fri Mar 24 00:01:34 1995
  106661. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03194
  106662.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 23 Mar 1995 19:01:39 -0500
  106663. Received: by apakabar.cc.columbia.edu id AA20562
  106664.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 23 Mar 1995 19:01:38 -0500
  106665. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  106666. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  106667. Newsgroups: comp.protocols.kermit.misc
  106668. Subject: Re: os2 version - works over ethernet ?
  106669. Date: 24 Mar 1995 00:01:34 GMT
  106670. Organization: Columbia University
  106671. Lines: 27
  106672. Message-Id: <3kt24v$k2c@apakabar.cc.columbia.edu>
  106673. References: <3ksuje$fmd@pirates.cs.swt.edu>
  106674. Nntp-Posting-Host: watsun.cc.columbia.edu
  106675. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  106676.  
  106677. In article <3ksuje$fmd@pirates.cs.swt.edu>,
  106678. Tom F McCabe <tm@astros.cs.swt.edu> wrote:
  106679. >I can't find the answer to this in any faqs and
  106680. >or announcements.  Can I use the new os2 kermit
  106681. >version to connect via telnet (or ftp or kermit
  106682. >file transfers) over a ethernet line instead of
  106683. >a serial port?
  106684. >
  106685. Yes.  It works over TCP/IP -- IBM, FTP Software,
  106686. and various other varieties -- independent of the
  106687. underlying communication medium.
  106688.  
  106689. >I see that telnet is mentioned in the announcemnets
  106690. >but I can't tell if it's restricted to slip/ppp
  106691. >lines.
  106692. >
  106693. It is not restricted in any way, except that you must
  106694. already have a TCP/IP product installed that supports
  106695. the connection method you want to use.
  106696.  
  106697. - Frank
  106698.  
  106699. x
  106700. x
  106701. x
  106702. x
  106703.  
  106704.  
  106705. From news@columbia.edu Thu Mar 23 23:51:23 1995
  106706. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05227
  106707.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 23 Mar 1995 19:37:44 -0500
  106708. Received: by apakabar.cc.columbia.edu id AA23671
  106709.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 23 Mar 1995 19:37:42 -0500
  106710. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!gatech!swrinde!pipex!sunic!sunic.sunet.se!news.uni-c.dk!dkuug!usenet
  106711. From: jnh@pip.dknet.dk (John Normann Hansen)
  106712. Newsgroups: comp.protocols.kermit.misc
  106713. Subject: WfW & Kermit & Token Ring
  106714. Date: 23 Mar 1995 23:51:23 GMT
  106715. Organization: Dolberg Data A/S
  106716. Lines: 13
  106717. Message-Id: <3kt1hr$6s8@news.dknet.dk>
  106718. Nntp-Posting-Host: p726.pip.dknet.dk
  106719. X-Newsreader: WinVN 0.92.6+
  106720. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  106721.  
  106722.  
  106723. I'm trying to get Kermit to work under WfW on a token ring network.
  106724.  
  106725. I'm using the nine steps to heaven, following the setup.doc from kermit 314. 
  106726.  
  106727. All it does i hang the computer when trying to load the dis_pkt9.dos. So I tried it on
  106728. a ethernet network an it works great.
  106729.  
  106730. The adapter is a IBM tokenring and I'm using the ibmtok.dos ndis driver.
  106731.  
  106732. Any help will be appreciated.
  106733.  
  106734. PS Does anyone know of any BAPI driver that runs with the TCP32 form Microsoft.
  106735.  
  106736. From news@columbia.edu Fri Mar 24 02:40:03 1995
  106737. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18545
  106738.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 24 Mar 1995 06:54:06 -0500
  106739. Received: by apakabar.cc.columbia.edu id AA16749
  106740.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 24 Mar 1995 06:54:05 -0500
  106741. Path: news.columbia.edu!panix!news.mathworks.com!hookup!ames!olivea!nntp-hub.barrnet.net!news.igc.apc.org!cdp!scott
  106742. From: Scott Weikart <scott@igc.apc.org>
  106743. Newsgroups: comp.protocols.kermit.misc
  106744. Subject: 14,400 bps DTE rate with Windows 3
  106745. Message-Id: <APC&1'0'8a49eaa4'a03@igc.apc.org>
  106746. Date: Thu, 23 Mar 1995 18:40:03 -0800 (PST)
  106747. X-Gateway: notes@igc.apc.org
  106748. Lines: 15
  106749. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  106750.  
  106751. A programmer friend tells me that you can programmatically specify a DTE rate
  106752. of 14,400 bps for a COM port under Windows 3.1.  And one of our users just set
  106753. 14,000 as the DTE rate in a .ini file that we use to configure Trumpet
  106754. Winsock, and found that he got fewer framing errors compared to 19,200 (16450
  106755. UART).
  106756.  
  106757. I had thought that COM port UARTs on AT machines didn't support 14,400 bps;
  106758. and the MS-Kermit book never mentions it (although the C-Kermit book mentions
  106759. it as a DTE rate that might be supported).  Will some or all modems support a
  106760. DTE rate of 14,400 bps?  If not, what does Windows actually do with a request
  106761. for a COM port rate of 14,400 bps?  And does this requesed rate provide faster
  106762. throughput than 9,600 bps but fewer framing errors then 19,200 bps (and if so,
  106763. how)?
  106764.  
  106765. -scott
  106766.  
  106767. From news@columbia.edu Fri Mar 24 15:19:53 1995
  106768. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14962
  106769.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 24 Mar 1995 10:20:14 -0500
  106770. Received: by apakabar.cc.columbia.edu id AA03291
  106771.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 24 Mar 1995 10:20:06 -0500
  106772. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  106773. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  106774. Newsgroups: comp.protocols.kermit.misc
  106775. Subject: Re: 14,400 bps DTE rate with Windows 3
  106776. Date: 24 Mar 1995 15:19:53 GMT
  106777. Organization: Columbia University
  106778. Lines: 23
  106779. Message-Id: <3kunup$36g@apakabar.cc.columbia.edu>
  106780. References: <APC&1'0'8a49eaa4'a03@igc.apc.org>
  106781. Nntp-Posting-Host: watsun.cc.columbia.edu
  106782. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  106783.  
  106784. In article <APC&1'0'8a49eaa4'a03@igc.apc.org>,
  106785. Scott Weikart  <scott@igc.apc.org> wrote:
  106786. >I had thought that COM port UARTs on AT machines didn't support 14,400 bps;
  106787. >
  106788. UARTs support any baud rate you can dream up.
  106789.  
  106790. >and the MS-Kermit book never mentions it (although the C-Kermit book mentions
  106791. >it as a DTE rate that might be supported).
  106792. >
  106793. 14400 bps was never needed until V.32bis appeared.  Then it was added to
  106794. MS-DOS Kermit.  Just type "set speed ?" to see a list of supported speeds.
  106795.  
  106796. >Will some or all modems support a DTE rate of 14,400 bps?
  106797. >
  106798. Any modem V.32bis or higher should support it.
  106799.  
  106800. >And does this requesed rate provide faster throughput than 9,600 bps but
  106801. >fewer framing errors then 19,200 bps (and if so, how)?
  106802. >
  106803. This depends entirely on your UART chip and your PC configuration and
  106804. software.
  106805.  
  106806. - Frank
  106807.  
  106808. From news@columbia.edu Wed Mar 22 15:58:22 1995
  106809. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02981
  106810.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 24 Mar 1995 15:12:45 -0500
  106811. Received: by apakabar.cc.columbia.edu id AA01600
  106812.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 24 Mar 1995 15:12:42 -0500
  106813. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!torn!penage.cs.laurentian.ca!nickel.laurentian.ca!mark
  106814. From: mark@nickel.laurentian.ca (MARK LAFONTAINE)
  106815. Newsgroups: comp.protocols.kermit.misc
  106816. Subject: VAX to PC french chars. tranfer probs.
  106817. Date: 22 Mar 95 10:58:22 -0500
  106818. Organization: Laurentian University
  106819. Lines: 41
  106820. Message-Id: <1995Mar22.105822@nickel.laurentian.ca>
  106821. Nntp-Posting-Host: nickel.laurentian.ca
  106822. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  106823.  
  106824.  
  106825. Greetings Kermit Gurus,
  106826.  
  106827.     I work at a bilingual university that supports both french and english 
  106828. computing. We need to transfer files to and from our VAXes through C-Kermit that
  106829. contain accented french characters. Below is the routine we have to go through 
  106830. in order to transfer a file from the PC to the VAX using AUTORECEIVE from the
  106831. C-Kermit prompt. The file is transferred successfully with french characters
  106832. intact. If we try to AUTOSEND the same file from VAX to PC the french 
  106833. characters do not transfer properly. Are there any SET parameters that have to
  106834. be changed in order to do the AUTOSEND of french characters?
  106835.  
  106836.     We are using C-Kermit 5A(190), 4 Oct 94 for Open/VMS and MS-Kermit 
  106837. version 3.13 for IBM.
  106838.  
  106839. Our routine was:
  106840.  
  106841.     - log into the VAX
  106842.  
  106843.     - Type CKERMIT from $ prompt
  106844.       At the C-KERMIT prompt> Set file character CP866-Cyrillic
  106845.                                 Set transfer character Cyrillic-ISO
  106846.  
  106847.       <ALT>-X (to get to MS-Kermit)
  106848.  
  106849.     - At the MS-KERMIT prompt>Set transfer character cyrillic
  106850.                               Set file character CP865
  106851.                               C (to reconnect to C-Kermit)
  106852.  
  106853.     - C-KERMIT>AUTORECEIVE   filename
  106854.  
  106855.  
  106856.     This is working to receive files with french accents from the PC to
  106857. the VAX, but it is not working to AUTOSEND files from the VAX to the PC.
  106858.  
  106859.     Thanks for any help in this matter.
  106860.  
  106861.  
  106862. Mark Lafontaine
  106863. Laurentian University Computer Services
  106864. Sudbury, Ontario, Canada
  106865.  
  106866. From news@columbia.edu Sat Mar 25 00:13:30 1995
  106867. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19841
  106868.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 24 Mar 1995 19:17:01 -0500
  106869. Received: by apakabar.cc.columbia.edu id AA23468
  106870.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 24 Mar 1995 19:16:59 -0500
  106871. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news2.near.net!news.delphi.com!larry182
  106872. From: larry182@delphi.com (Larry Reister)
  106873. Newsgroups: comp.protocols.kermit.misc
  106874. Subject: Looking for IBM-PC Kermit v3.01
  106875. Date: 25 Mar 1995 00:13:30 GMT
  106876. Organization: Delphi Internet Services Corporation
  106877. Lines: 5
  106878. Message-Id: <9503241854591.The_Win-D.larry182@delphi.com>
  106879. Nntp-Posting-Host: bos1b.delphi.com
  106880. X-To: Larry Reister <larry182@delphi.com>
  106881. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  106882.  
  106883. Luke,
  106884. I sent a note to watsun.cc.columbia.edu,asking for information on getting
  106885. Kermit software.He gave me information on how to order "Using MS-DOS
  106886. KERMIT",for $36.95,and a copy of MS-DOS KERMIT 3.14 came with it.Try a note to 
  106887. Watson.
  106888.  
  106889. From news@columbia.edu Fri Mar 24 23:36:50 1995
  106890. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25754
  106891.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 24 Mar 1995 21:56:18 -0500
  106892. Received: by apakabar.cc.columbia.edu id AA04070
  106893.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 24 Mar 1995 21:56:17 -0500
  106894. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!usc!elroy.jpl.nasa.gov!netline-fddi.jpl.nasa.gov!nntp-server.caltech.edu!yankee!cld
  106895. From: cld@yankee.caltech.edu (Cheryl L. Southard)
  106896. Newsgroups: comp.protocols.kermit.misc
  106897. Subject: c-kermit, OpenVMS V6.1, and a terminal server
  106898. Date: 24 Mar 1995 23:36:50 GMT
  106899. Organization: Caltech Astronomy Department
  106900. Lines: 49
  106901. Message-Id: <3kvl2i$lrf@gap.cco.caltech.edu>
  106902. Nntp-Posting-Host: yankee.caltech.edu
  106903. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  106904.  
  106905. Hi All,
  106906.  
  106907. Perhaps someone can help me debug my problem with c-kermit, OpenVMS V6.1,
  106908. and my terminal server.  When using this setup on the remote "server" side,
  106909. kermit only works around 70% of the time.  The other 30%, we get massive
  106910. amounts of retries, and if we're lucky maybe a few packets will get through.
  106911. This problem is consistant to a small set of PC's and Macintoshes that
  106912. dial into our Alpha running c-kermit, and VMS.
  106913.  
  106914. THIS doesn't work 30%
  106915. (PC or MAC)  <---telephone---> (terminal server)(Alpha running VMS V6.1)
  106916.  
  106917. I don't think the problem lies in the local PC's or Macintoshes.  We can use
  106918. the PC's and Macintoshes to successfully transfer files from Sun SPARCstations.
  106919. We can also use these PC's and MACs to connect through the terminal servers,
  106920. then through the Sun's, to this particulal OpenVMS V6.1, and then kermit
  106921. will work.
  106922.  
  106923. THIS ALWAYS works
  106924. (PC or MAC) <--tele---> (terminal server) (sun) (Alpha running VMS V6.1)
  106925.  
  106926. Also, we've copied the kermit software (including kermit.ini) from a
  106927. WORKING PC to a NON-WORKING PC, and this did not solve the problem.
  106928.  
  106929. Also, we can use a LAT server instead of the terminal server, and this
  106930. fixes the problem. i.e.
  106931. (PC or MAC) <--tele---> (LAT server) (Alpha running VMS V6.1)
  106932.  
  106933. I've used the precompiled version of kermit, and also tried
  106934. compiling it myself.
  106935.  
  106936. Does anyone have any cluse on things I can try?
  106937.  
  106938. I've tried setting TTY_TYPAHDSZ and TTY_ALTYPAHD to 2064.  I verified
  106939. that         PQL_MBYTLM is < 2300 + MAXBUF, 
  106940. and that     MAXBUF > 2064, 
  106941. and that     VIRTUALPAGECNT > 50000
  106942. and that    BIOLM > 20
  106943. and that     BYTLM > 8192 
  106944.  
  106945. info:
  106946.     C-Kermit 5A (190)
  106947.     OpenVMS V6.1 on a DECstation 3000 model 600
  106948.     Equinox ELG48 terminal server
  106949.  
  106950. Thanks,
  106951.  
  106952. Cheryl Southard
  106953. cld@astro.caltech.edu
  106954.  
  106955. From news@columbia.edu Sat Mar 25 05:17:17 1995
  106956. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04770
  106957.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 25 Mar 1995 01:06:47 -0500
  106958. Received: by apakabar.cc.columbia.edu id AA16188
  106959.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 25 Mar 1995 01:06:46 -0500
  106960. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!gatech!newsfeed.pitt.edu!news
  106961. From: mmrst7+@pitt.edu (John Meyer)
  106962. Newsgroups: comp.protocols.kermit.misc
  106963. Subject: Loking for kermit for windows version higher than 0.75
  106964. Date: 25 Mar 1995 05:17:17 GMT
  106965. Organization: PITT
  106966. Lines: 9
  106967. Message-Id: <3l090t$e1s@usenet.srv.cis.pitt.edu>
  106968. Nntp-Posting-Host: ehdup-f-12.rmt.net.pitt.edu
  106969. Mime-Version: 1.0
  106970. X-Newsreader: WinVN 0.93.14
  106971. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  106972.  
  106973. Hi, I'm looking for a good kermit for winsows program. I've already tried 
  106974. version 0.75, which is around 3 year old program. Is there any newer 
  106975. version available in shareware? I'll appreciate any info pointing me to 
  106976. an ftp site.
  106977.  
  106978. Thanks a lot in advance.
  106979.  
  106980. -M 
  106981.  
  106982.  
  106983. From news@columbia.edu Sat Mar 25 06:23:54 1995
  106984. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05583
  106985.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 25 Mar 1995 01:24:01 -0500
  106986. Received: by apakabar.cc.columbia.edu id AA17128
  106987.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 25 Mar 1995 01:23:58 -0500
  106988. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  106989. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  106990. Newsgroups: comp.protocols.kermit.misc,comp.os.os2.apps,comp.os.os2.networking.tcp-ip,bit.listserv.os2-l,comp.dcom.modems
  106991. Subject: Re: OS/2 C-Kermit 5A(191) Beta Available for Testing
  106992. Date: 25 Mar 1995 06:23:54 GMT
  106993. Organization: Columbia University
  106994. Lines: 45
  106995. Message-Id: <3l0ctq$gn6@apakabar.cc.columbia.edu>
  106996. References: <3kmpo4$8nn@apakabar.cc.columbia.edu>
  106997. Nntp-Posting-Host: watsun.cc.columbia.edu
  106998. Keywords: OS/2, C-Kermit
  106999. Xref: news.columbia.edu comp.protocols.kermit.misc:2330 comp.os.os2.apps:73674 comp.os.os2.networking.tcp-ip:22379 bit.listserv.os2-l:28703 comp.dcom.modems:85744
  107000. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  107001.  
  107002. Due to popular demand in by early Beta testers the Rollback handling has
  107003. been significantly altered as of Beta.04.  A description of the changes
  107004. is listed below.  All users are urged to test the new Rollback modes and
  107005. return feedback to kermit@columbia.edu.
  107006.  
  107007. C-Kermit 5a(191) Betas may be retrieved via anonymous ftp from
  107008.  
  107009.     kermit.columbia.edu  /kermit/os2test/cko191.zip
  107010.  
  107011. Or from the Web at
  107012.  
  107013.     http://www.columbia.edu/kermit/cko191.html
  107014.  
  107015. ---------------------------------------------------------------------------
  107016.  
  107017. C-Kermit 5a(190) and earlier had a command SET TERMINAL ROLL { ON, OFF }.
  107018. This command was named after ability to have the terminal screen continue
  107019. to roll from the end of the buffer when new data was received.
  107020.  
  107021. As changes to the terminal emulator have been made this functionality has
  107022. appeared to be a bit outdated.  What was once a nice way of preventing the
  107023. screen from jumping to the end of the buffer while looking at something 
  107024. from the past has itself become a serious nuisance.
  107025.  
  107026. Therefore, effective Beta.04 SET TERMINAL ROLL has been replaced by
  107027. SET TERMINAL ROLL-MODE { INSERT, OVERWRITE }.
  107028.  
  107029. In 5a(191) this is nothing that prevents you from interacting with the host
  107030. while viewing the scrollback buffer.  The only question is where do you
  107031. want new data from the host to be placed.  In INSERT mode, the data will be
  107032. placed at the end of the buffer just as if you weren't viewing the scrollback
  107033. buffer at all.
  107034.  
  107035. In OVERWRITE mode, the data will overwrite the current screen of the 
  107036. scrollback buffer.  Just like the old SET TERMINAL ROLL OFF used to do.
  107037.  
  107038. In fact, ROLL OFF maps directly to ROLL-MODE OVERWRITE and ROLL ON maps 
  107039. to ROLL-MODE INSERT.
  107040.  
  107041. The new default setting is ROLL-MODE INSERT instead of ROLL OFF.
  107042.  
  107043. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  107044. "C-Kermit: available on more platforms than any other communications software."
  107045. "Kermit FTP: sending files whenever and wherever they are needed."
  107046.   OS/2 version 5A(190): ftp://kermit.columbia.edu/kermit/archives/cko190.zip 
  107047.  
  107048. From news@columbia.edu Sat Mar 25 05:20:40 1995
  107049. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07326
  107050.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 25 Mar 1995 02:10:43 -0500
  107051. Received: by apakabar.cc.columbia.edu id AA18878
  107052.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 25 Mar 1995 02:10:41 -0500
  107053. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!usc!ccnet.com!usenet
  107054. From: dasilva@ccnet.com
  107055. Newsgroups: comp.protocols.kermit.misc
  107056. Subject: Enabling Mouse selection in Ckermit OS/2
  107057. Date: 25 Mar 1995 05:20:40 GMT
  107058. Organization: Silva Consulting Solutions
  107059. Lines: 7
  107060. Distribution: world
  107061. Message-Id: <3l0978$mja@ccnet.ccnet.com>
  107062. Reply-To: dasilva@ccnet.com
  107063. Nntp-Posting-Host: dasilva.ccnet.com
  107064. X-Newsreader: IBM NewsReader/2 v1.03
  107065. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  107066.  
  107067. I am using beta of v 191, and can't figure out how to enable mouse
  107068. text selection for cut-paste-scroll. I have the printed manual, but must be
  107069. missing something. Can someone point the way? Thanks
  107070.  
  107071. David Silva - Silva Consulting Solutions - 510-527-6831
  107072.        finger dasilva@ccnet.com for information
  107073.  
  107074.  
  107075. From news@columbia.edu Fri Mar 24 22:05:07 1995
  107076. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23860
  107077.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 25 Mar 1995 09:53:20 -0500
  107078. Received: by apakabar.cc.columbia.edu id AA20088
  107079.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 25 Mar 1995 09:53:18 -0500
  107080. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news.sprintlink.net!bethe.hartwick.edu!wisanr
  107081. From: wisanr@hartwick.edu (Dick Wisan)
  107082. Newsgroups: comp.protocols.kermit.misc
  107083. Subject: Keyboard Verbs: What do they send?
  107084. Message-Id: <1995Mar24.170507.2799@hartwick.edu>
  107085. Date: 24 Mar 95 17:05:07 -0500
  107086. Organization: Hartwick College
  107087. Lines: 11
  107088. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  107089.  
  107090. I'd like to know what some of those MS-DOS Keyboard Macros actually 
  107091. send.  In particular, I'd like to know what \Kupscn \Kdnscn \KdecPrev
  107092. and \KdecNext do.  I understand the effects they produce, but what
  107093. are the bytes/characters they send over the line?
  107094.  
  107095. Or is this a State Secret?
  107096.  
  107097. -- 
  107098. R. N. (Dick) Wisan  - Email: internet WISANR@hartwick.edu
  107099.                     - Snail: 37 Clinton Street, Oneonta NY 13820, U.S.A.
  107100.                     - Just your opinion, please, ma'am: No fax.
  107101.  
  107102. From news@columbia.edu Sat Mar 25 03:17:01 1995
  107103. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27807
  107104.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 25 Mar 1995 11:42:18 -0500
  107105. Received: by apakabar.cc.columbia.edu id AA27385
  107106.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 25 Mar 1995 11:42:16 -0500
  107107. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  107108. From: jrd@cc.usu.edu (Joe Doupnik)
  107109. Newsgroups: comp.protocols.kermit.misc
  107110. Subject: Re: Keyboard Verbs: What do they send?
  107111. Message-Id: <1995Mar25.091701.45631@cc.usu.edu>
  107112. Date: 25 Mar 95 09:17:01 MDT
  107113. References: <1995Mar24.170507.2799@hartwick.edu>
  107114. Organization: Utah State University
  107115. Lines: 11
  107116. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  107117.  
  107118. In article <1995Mar24.170507.2799@hartwick.edu>, wisanr@hartwick.edu (Dick Wisan) writes:
  107119. > I'd like to know what some of those MS-DOS Keyboard Macros actually 
  107120. > send.  In particular, I'd like to know what \Kupscn \Kdnscn \KdecPrev
  107121. > and \KdecNext do.  I understand the effects they produce, but what
  107122. > are the bytes/characters they send over the line?
  107123. >  
  107124. > Or is this a State Secret?
  107125. -----------
  107126.     Please see the user's manual or grab file msvibm.vt from directory
  107127. kermit/a on kermit.columbia.edu.
  107128.     Joe D.
  107129.  
  107130. From news@columbia.edu Sat Mar 25 16:56:36 1995
  107131. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28359
  107132.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 25 Mar 1995 11:56:39 -0500
  107133. Received: by apakabar.cc.columbia.edu id AA28488
  107134.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 25 Mar 1995 11:56:37 -0500
  107135. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  107136. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  107137. Newsgroups: comp.protocols.kermit.misc
  107138. Subject: Re: Enabling Mouse selection in Ckermit OS/2
  107139. Date: 25 Mar 1995 16:56:36 GMT
  107140. Organization: Columbia University
  107141. Lines: 31
  107142. Message-Id: <3l1i04$rq6@apakabar.cc.columbia.edu>
  107143. References: <3l0978$mja@ccnet.ccnet.com>
  107144. Nntp-Posting-Host: watsun.cc.columbia.edu
  107145. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  107146.  
  107147. In article <3l0978$mja@ccnet.ccnet.com>,  <dasilva@ccnet.com> wrote:
  107148. >I am using beta of v 191, and can't figure out how to enable mouse
  107149. >text selection for cut-paste-scroll. I have the printed manual, but must be
  107150. >missing something. Can someone point the way? Thanks
  107151. >
  107152. >David Silva - Silva Consulting Solutions - 510-527-6831
  107153. >       finger dasilva@ccnet.com for information
  107154. >
  107155.  
  107156.  
  107157. The first version of OS/2 C-Kermit to have mouse support was 5a(190).  
  107158. This version required the user to SET TERMINAL MOUSE ON.
  107159.  
  107160. 5a(191) has much more extensive support for the mouse than 5a(190).  In 
  107161. addition to the ability to perform cursor  positioning and copy and
  107162. paste to the clipboard from within C-Kermit, 191 now allows you to 
  107163. assign arbitary macros, Kverbs, and mouse specific actions to specific 
  107164. combinations of SHIFT, CTRL, and ALT and CLICK, DOUBLE-CLICK and DRAG 
  107165. events.
  107166.  
  107167. Mouse support is enabled by default in 5a(191).
  107168.  
  107169. for information on how to use Mouse support please read the CKERMIt.INF 
  107170. file.  "Using the MOuse".
  107171.  
  107172. You can also type UPDATES MOUSE at the C-Kermit prompt.
  107173.  
  107174. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  107175. "C-Kermit: available on more platforms than any other communications software."
  107176. "Kermit FTP: sending files whenever and wherever they are needed."
  107177.   OS/2 version 5A(190): ftp://kermit.columbia.edu/kermit/archives/cko190.zip 
  107178.  
  107179. From news@columbia.edu Sat Mar 25 23:30:53 1995
  107180. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13680
  107181.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 25 Mar 1995 18:44:20 -0500
  107182. Received: by apakabar.cc.columbia.edu id AA25719
  107183.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 25 Mar 1995 18:44:18 -0500
  107184. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!vixen.cso.uiuc.edu!uwm.edu!msunews!news
  107185. From: gary.schrock@ssc.msu.edu (Gary Schrock)
  107186. Newsgroups: comp.protocols.kermit.misc,comp.os.os2.apps,comp.os.os2.networking.tcp-ip,bit.listserv.os2-l,comp.dcom.modems
  107187. Subject: Re: OS/2 C-Kermit 5A(191) Beta Available for Testing
  107188. Date: Sat, 25 Mar 95 23:30:53 GMT
  107189. Organization: Michigan State University
  107190. Lines: 12
  107191. Message-Id: <3l291u$1arq@msunews.cl.msu.edu>
  107192. References: <3kmpo4$8nn@apakabar.cc.columbia.edu> <3l0ctq$gn6@apakabar.cc.columbia.edu>
  107193. Nntp-Posting-Host: psy219.psy.msu.edu
  107194. Keywords: OS/2, C-Kermit
  107195. X-Newsreader: News Xpress Version 1.0 Beta #3
  107196. Xref: news.columbia.edu comp.protocols.kermit.misc:2335 comp.os.os2.apps:73780 comp.os.os2.networking.tcp-ip:22456 bit.listserv.os2-l:28746 comp.dcom.modems:85839
  107197. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  107198.  
  107199. In article <3l0ctq$gn6@apakabar.cc.columbia.edu>,
  107200.    jaltman@watsun.cc.columbia.edu (Jeffrey Altman) wrote:
  107201. >Due to popular demand in by early Beta testers the Rollback handling has
  107202. >been significantly altered as of Beta.04.  A description of the changes
  107203. >is listed below.  All users are urged to test the new Rollback modes and
  107204. >return feedback to kermit@columbia.edu.
  107205.  
  107206. A definite thanks from here.  The new behaviour is significantly more 
  107207. intuitive.  Seems to be working great here.
  107208.  
  107209. Gary Schrock
  107210. gary.schrock@ssc.msu.edu
  107211.  
  107212. From news@columbia.edu Tue Mar 21 19:32:23 1995
  107213. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25253
  107214.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 25 Mar 1995 23:45:15 -0500
  107215. Received: by apakabar.cc.columbia.edu id AA14132
  107216.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 25 Mar 1995 23:45:13 -0500
  107217. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!howland.reston.ans.net!Germany.EU.net!Munich.Germany.EU.net!ibm.de!aixssc.uk.ibm.com!watnews.watson.ibm.com!news.manassas.ibm.com!zoso
  107218. From: zoso@postoffice.manassas.ibm.com (Randy D Anderson)
  107219. Newsgroups: comp.protocols.kermit.misc
  107220. Subject: Re: Kermit-CMS File Transfers
  107221. Date: 21 Mar 1995 19:32:23 GMT
  107222. Organization: Loral Federal Systems - Manassas, VA
  107223. Lines: 18
  107224. Distribution: world
  107225. Message-Id: <3kn9k7$mce@news.manassas.ibm.com>
  107226. References: <3k45hm$m7r@news.manassas.ibm.com> <3kc5k5$9ml@apakabar.cc.columbia.edu> <3kcs8s$a2q@apakabar.cc.columbia.edu>
  107227. Reply-To: zoso@lfs.loral.com
  107228. Nntp-Posting-Host: cc5.manassas.ibm.com
  107229. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  107230.  
  107231. Thanks for the pointers to Kermit-370 4.3.1 and the 'APC' command;
  107232. but how is it used?  Is it possible to start Kermit-370, then type
  107233. one word that will execute a sequence of Kermit commands and then
  107234. return (just as the 'pcget' macro in C-Kermit?)  The 'ik0aux.cmd'
  107235. sample code says the EXEC there can be executed from inside Kermit,
  107236. but how?
  107237.  
  107238. The 'APC' command seems to talk to the remote MS-Kermit, but there
  107239. is no VM-specific info on practical usage (it's not in the HELPCMS
  107240. file.)
  107241.  
  107242.  
  107243.  
  107244. -- 
  107245. Randy Anderson               
  107246. zoso@lfs.loral.com         "I'm sorry, sir - we don't have medium fries.  
  107247. Loral Federal Systems       We only have small, large, and super-size."
  107248. Manassas, VA                                       - McDonald's employee
  107249.  
  107250. From news@columbia.edu Sun Mar 26 18:26:57 1995
  107251. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26451
  107252.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 26 Mar 1995 13:44:06 -0500
  107253. Received: by apakabar.cc.columbia.edu id AA03692
  107254.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 26 Mar 1995 13:44:05 -0500
  107255. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news.sprintlink.net!EU.net!chsun!decus!t_howald
  107256. From: t_howald@decus.ch (T_HOWALD@DECUS.CH)
  107257. Newsgroups: comp.protocols.kermit.misc
  107258. Subject: VMS C-Kermit
  107259. Message-Id: <1995Mar26.192657.103@decus>
  107260. Date: 26 Mar 95 19:26:57 +0100
  107261. Organization: DECUS (Switzerland)
  107262. Lines: 33
  107263. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  107264.  
  107265.  
  107266.  
  107267. Hi Kermit Gurus
  107268. I tried on our MicroVax 3600,8 users 8Mb Memory running VMS 4.7 to get a better
  107269. use of C-Kermit 5A(190). Epecially the "Freezing" monitor was annoying. So I
  107270. modyfied SYS$SYSTEM:MODPARAMS.DAT as told in the instructions and shown below. 
  107271.  
  107272. SCSSYSTEMID=0        ! System ID for the CI
  107273. SCSNODE=""        ! System node name for CI
  107274. VAXCLUSTER=0 
  107275. MIN_TTY_TYPAHDSZ =  2064      ! For  C-Kermit
  107276. MIN_TTY_ALTYPAHD =  2064      ! For  C-Kermit
  107277. MIN_MAXBUF= 12000             ! For  C-Kermit
  107278.  
  107279. After that I did @sys$update:autogen savparams setparams.So far no problems
  107280. and Kermit performs better but I ended up with a smaller pagefile and swapfile:
  107281.  
  107282. PAGEFILE.SYS;2        40000/40000   26-MAR-1995 11:43 <-------NEW!
  107283. PAGEFILE.SYS;1        50000/50000   15-JUN-1987 12:40 <-------ORIGINAL
  107284. SWAPFILE.SYS;2        28500/28500   26-MAR-1995 11:43 <-------NEW!
  107285. SWAPFILE.SYS;1        36000/36000   15-JUN-1987 12:40 <-------ORIGINAL 
  107286.  
  107287. My worries are how will this affect the system ? Will the system eventually
  107288. crash or slow down to the speed of a PC XT ? Should I lower MIN_MAXBUF ?
  107289.  
  107290. Any hints will be appreciated.       Tom
  107291.                                      
  107292.  
  107293. ------------------------------------------------------------------------------
  107294. Thomas F. Howald  /   It's difficult to soar with    / Phone: +41 65 25 25 29
  107295. Otto Howald AG,  / eagles when you work with turkeys/  CompuServe 100115,2076
  107296. Engestrasse 13, 4500 Solothurn, Switzerland            t_howald@decus.ch
  107297. ******************************************************************************
  107298.  
  107299. From news@columbia.edu Sun Mar 26 07:37:18 1995
  107300. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04639
  107301.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 26 Mar 1995 17:31:34 -0500
  107302. Received: by apakabar.cc.columbia.edu id AA20254
  107303.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 26 Mar 1995 17:31:32 -0500
  107304. Path: news.columbia.edu!panix!news.mathworks.com!news.alpha.net!uwm.edu!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  107305. From: jrd@cc.usu.edu (Joe Doupnik)
  107306. Newsgroups: comp.protocols.kermit.misc
  107307. Subject: Re: VMS C-Kermit
  107308. Message-Id: <1995Mar26.133718.45682@cc.usu.edu>
  107309. Date: 26 Mar 95 13:37:18 MDT
  107310. References: <1995Mar26.192657.103@decus>
  107311. Organization: Utah State University
  107312. Lines: 32
  107313. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  107314.  
  107315. In article <1995Mar26.192657.103@decus>, t_howald@decus.ch (T_HOWALD@DECUS.CH) writes:
  107316. > Hi Kermit Gurus
  107317. > I tried on our MicroVax 3600,8 users 8Mb Memory running VMS 4.7 to get a better
  107318. > use of C-Kermit 5A(190). Epecially the "Freezing" monitor was annoying. So I
  107319. > modyfied SYS$SYSTEM:MODPARAMS.DAT as told in the instructions and shown below. 
  107320. > SCSSYSTEMID=0        ! System ID for the CI
  107321. > SCSNODE=""        ! System node name for CI
  107322. > VAXCLUSTER=0 
  107323. > MIN_TTY_TYPAHDSZ =  2064      ! For  C-Kermit
  107324. > MIN_TTY_ALTYPAHD =  2064      ! For  C-Kermit
  107325. > MIN_MAXBUF= 12000             ! For  C-Kermit
  107326. > After that I did @sys$update:autogen savparams setparams.So far no problems
  107327. > and Kermit performs better but I ended up with a smaller pagefile and swapfile:
  107328. > PAGEFILE.SYS;2        40000/40000   26-MAR-1995 11:43 <-------NEW!
  107329. > PAGEFILE.SYS;1        50000/50000   15-JUN-1987 12:40 <-------ORIGINAL
  107330. > SWAPFILE.SYS;2        28500/28500   26-MAR-1995 11:43 <-------NEW!
  107331. > SWAPFILE.SYS;1        36000/36000   15-JUN-1987 12:40 <-------ORIGINAL 
  107332. > My worries are how will this affect the system ? Will the system eventually
  107333. > crash or slow down to the speed of a PC XT ? Should I lower MIN_MAXBUF ?
  107334. > Any hints will be appreciated.       Tom
  107335. ----------
  107336.     Page and swap file sizes are from autogen, the sensing of system
  107337. usage over time. It's the item you answer YES to when @sys$system:shutdown-ing
  107338. the machine. Seven years is a long time between system tuning activites.
  107339.     Joe D.
  107340.  
  107341. From news@columbia.edu Sun Mar 26 22:33:29 1995
  107342. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06641
  107343.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 26 Mar 1995 18:18:05 -0500
  107344. Received: by apakabar.cc.columbia.edu id AA23443
  107345.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 26 Mar 1995 18:17:59 -0500
  107346. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news.sprintlink.net!hookup!newshost.marcam.com!uunet!dziuxsolim.rutgers.edu!pilot.njin.net!not-for-mail
  107347. From: jmgreen@pilot.njin.net (Jim Green)
  107348. Newsgroups: comp.protocols.kermit.misc
  107349. Subject: PCMag Comm Article
  107350. Date: 26 Mar 1995 17:33:29 -0500
  107351. Organization: Rutgers University
  107352. Lines: 51
  107353. Distribution: world
  107354. Message-Id: <3l4q3p$11h@pilot.njin.net>
  107355. Nntp-Posting-Host: pilot.njin.net
  107356. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  107357.  
  107358.  
  107359.  
  107360. Folks:
  107361.  
  107362. On p 211 of the 14Mar93 issue of PCMag the data seem to show that 
  107363.  
  107364. several comm programs performed better than the the theoretical 
  107365.  
  107366. limit for a compressed file:  SmartComm uploads the test 500k .bmp
  107367. file 
  107368.  
  107369. in 38sec; that is over 13kcps!!!  HyperAccess did it presumably 
  107370.  
  107371. w/o sliding windows in 3:35, which amounts to 2326cps.  Qmodem _with_
  107372.  
  107373. sliding windows transfered at 3246cps!!!  
  107374.  
  107375.  
  107376.  
  107377. What is going on here?  MS-Kermit can't do this!
  107378.  
  107379. Is this data valid?????
  107380.  
  107381.  
  107382.  
  107383. Do any of these comm programs use an implementation of current
  107384. MS-Kermit?
  107385.  
  107386.  
  107387.  
  107388. PCMag shows that the following use sliding windows:
  107389.  
  107390. CrossTalkFW, WinCommPro, DynaComm, ProCommFW, QmodemProFW, SmartcomFW
  107391.  
  107392.  
  107393.  
  107394. Why am I footsing around with the painful process of trying
  107395.  
  107396. to make MS-Kermit work, when the above is available -- and besides our
  107397.  
  107398. users have no trouble with the current Zmodem-90 at these speeds.
  107399.  
  107400.  
  107401.  
  107402. Comments?????
  107403.  
  107404.  
  107405.  
  107406. Jim Green ............ jmgreen@cc.snow.edu
  107407.  
  107408. Sorry for the double space -- I still can't deal with this mailer
  107409.  
  107410. From news@columbia.edu Sun Mar 26 11:04:13 1995
  107411. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14816
  107412.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 26 Mar 1995 22:14:37 -0500
  107413. Received: by apakabar.cc.columbia.edu id AA09945
  107414.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 26 Mar 1995 22:14:36 -0500
  107415. Path: news.columbia.edu!panix!news.mathworks.com!udel!news.sprintlink.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  107416. From: jrd@cc.usu.edu (Joe Doupnik)
  107417. Newsgroups: comp.protocols.kermit.misc
  107418. Subject: Re: PCMag Comm Article
  107419. Message-Id: <1995Mar26.170413.45693@cc.usu.edu>
  107420. Date: 26 Mar 95 17:04:13 MDT
  107421. References: <3l4q3p$11h@pilot.njin.net>
  107422. Distribution: world
  107423. Organization: Utah State University
  107424. Lines: 25
  107425. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  107426.  
  107427. In article <3l4q3p$11h@pilot.njin.net>, jmgreen@pilot.njin.net (Jim Green) writes:
  107428. > On p 211 of the 14Mar93 issue of PCMag the data seem to show that 
  107429. > several comm programs performed better than the the theoretical 
  107430. > limit for a compressed file:  SmartComm uploads the test 500k .bmp
  107431. > file 
  107432. > in 38sec; that is over 13kcps!!!  HyperAccess did it presumably 
  107433. > w/o sliding windows in 3:35, which amounts to 2326cps.  Qmodem _with_
  107434. > sliding windows transfered at 3246cps!!!  
  107435. > What is going on here?  MS-Kermit can't do this!
  107436. >> Is this data valid?????
  107437. > Do any of these comm programs use an implementation of current
  107438. > MS-Kermit?
  107439. > PCMag shows that the following use sliding windows:
  107440. > CrossTalkFW, WinCommPro, DynaComm, ProCommFW, QmodemProFW, SmartcomFW
  107441. > Why am I footsing around with the painful process of trying
  107442. > to make MS-Kermit work, when the above is available -- and besides our
  107443. > users have no trouble with the current Zmodem-90 at these speeds.
  107444. ------------
  107445.     While I don't have the article the numbers do strongly suggest
  107446. playing with file compression, and only secondarily with protocols. Any
  107447. time you see "exceeded theoretical limits" you can be sure the wrong theory
  107448. is being applied, and that deductions cannot follow. Until you get the story
  107449. straightened out I suggest you let matters rest.
  107450.     Joe D.
  107451.  
  107452. From news@columbia.edu Mon Mar 27 04:08:26 1995
  107453. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18892
  107454.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 26 Mar 1995 23:48:13 -0500
  107455. Received: by apakabar.cc.columbia.edu id AA14179
  107456.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 26 Mar 1995 23:48:11 -0500
  107457. Newsgroups: comp.protocols.kermit.misc
  107458. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!agate!tcsi.tcs.com!uunet!sangam!cmie!ajayshah
  107459. From: ajayshah@cmie.ernet.in (Ajay Shah)
  107460. Subject: File transfer efficiency question with v.34 modems
  107461. Message-Id: <D62zI2.5KE@cmie.ernet.in>
  107462. Organization: Centre for Monitoring Indian Economy, Bombay
  107463. X-Newsreader: NN version 6.5.0 #1
  107464. Date: Mon, 27 Mar 1995 04:08:26 GMT
  107465. Lines: 50
  107466. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  107467.  
  107468. I recently plugged in two v.34 modems and was able to consistently
  107469. get connected at 28800 bps.  Both dialout and dialin were from 
  107470. the same Linux notebook :-)  Call out on com2 and receive the call
  107471. on com1.
  107472.  
  107473. This is unscientific, but if logged in at the shell prompt things
  107474. looked nice -- i.e. the line didn't appear bursty.
  107475.  
  107476. I then started using kermit to transfer files.  The symptoms I saw
  107477. were like this.  For a burst of around 10s, both modems would furiously
  107478. work (and kermit would show ....).  Then there would be a LOOOONG
  107479. pause while nothing was going on.  Then again a burst of furious activity.
  107480. And so on.
  107481.  
  107482. The pauses served to clobber the effective transfer rates.  I did 25
  107483. tests. One session where the TX light appeared to never stop chugging
  107484. had me get binary compressed file transfer at 1991 cps (which is still
  107485. far below 2880 cps).  Other sessions did much worse.
  107486.  
  107487. Is there something about kermit that one can use to improve this?  My
  107488. kermrc is enclosed at EOF.  This was using 2k packets, the performance
  107489. with 1k packets was much worse.  Another kermitism I'm not able to solve
  107490. relates to packet size: when I say 2048 byte packets, he uses 1806 byte
  107491. packets.  He refuses to (say) use 4k byte packets.
  107492.  
  107493. Thanks,
  107494.  
  107495.         -ans.
  107496.  
  107497. set parity none
  107498. set file collision overwrite
  107499. set attributes off
  107500.  
  107501. set speed 38400
  107502. set flow-control rts/cts
  107503.  
  107504. set file type binary
  107505. set file names literal
  107506. set file display fullscreen
  107507.  
  107508. set window-size 5
  107509. set receive packet-length 2048
  107510. set send packet-length 2048
  107511. set block 3
  107512. set buffers 150000 150000
  107513. -- 
  107514. -------------------------
  107515. Ajay Shah, Centre for Monitoring Indian Economy, Bombay
  107516. ajayshah@cmie.ernet.in       (9-7 GMT+5:30) http://www.cmie.ernet.in/~ajayshah
  107517. <*(:-? - wizard who doesn't know the answer.      Finger me for pgp public key
  107518.  
  107519. From news@columbia.edu Mon Mar 27 12:21:32 1995
  107520. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16910
  107521.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 27 Mar 1995 08:48:06 -0500
  107522. Received: by apakabar.cc.columbia.edu id AA16802
  107523.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 27 Mar 1995 08:48:04 -0500
  107524. Newsgroups: comp.lang.tcl,comp.protocols.kermit.misc
  107525. Path: news.columbia.edu!panix!news.mathworks.com!news.ultranet.com!news.sprintlink.net!news.cloud9.net!worm.inch.com!uunet!sangam!cmie!ajayshah
  107526. From: ajayshah@cmie.ernet.in (Ajay Shah)
  107527. Subject: Help me mix expect and kermit?
  107528. Message-Id: <D63MBw.GKG@cmie.ernet.in>
  107529. Organization: Centre for Monitoring Indian Economy, Bombay
  107530. X-Newsreader: NN version 6.5.0 #1
  107531. Date: Mon, 27 Mar 1995 12:21:32 GMT
  107532. Lines: 19
  107533. Xref: news.columbia.edu comp.lang.tcl:26847 comp.protocols.kermit.misc:2343
  107534. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  107535.  
  107536. I'm trying to automate kermit using expect and many things are
  107537. behaving strangely.
  107538.  
  107539. Is there something perverse about kermit in this respect?  As
  107540. long as I do not say "connect" expect and kermit mix perfectly.
  107541. The moment I say connect things get hairy.
  107542.  
  107543. If you have a expect program, or words of wisdom on this front,
  107544. I would love to hear from you.  I'm running expect on a Austin
  107545. 486 notebook running linux.
  107546.  
  107547. Thanks,
  107548.  
  107549.         -ans.
  107550. -- 
  107551. -------------------------
  107552. Ajay Shah, Centre for Monitoring Indian Economy, Bombay
  107553. ajayshah@cmie.ernet.in       (9-7 GMT+5:30) http://www.cmie.ernet.in/~ajayshah
  107554. <*(:-? - wizard who doesn't know the answer.      Finger me for pgp public key
  107555.  
  107556. From news@columbia.edu Mon Mar 27 14:06:21 1995
  107557. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18443
  107558.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 27 Mar 1995 09:06:30 -0500
  107559. Received: by apakabar.cc.columbia.edu id AA17969
  107560.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 27 Mar 1995 09:06:28 -0500
  107561. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  107562. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  107563. Newsgroups: comp.protocols.kermit.misc
  107564. Subject: Re: VAX to PC french chars. tranfer probs.
  107565. Date: 27 Mar 1995 14:06:21 GMT
  107566. Organization: Columbia University
  107567. Lines: 40
  107568. Message-Id: <3l6got$hhc@apakabar.cc.columbia.edu>
  107569. References: <1995Mar22.105822@nickel.laurentian.ca>
  107570. Nntp-Posting-Host: watsun.cc.columbia.edu
  107571. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  107572.  
  107573. In article <1995Mar22.105822@nickel.laurentian.ca>,
  107574. MARK LAFONTAINE <mark@nickel.laurentian.ca> wrote
  107575. >We are using C-Kermit 5A(190), 4 Oct 94 for Open/VMS and MS-Kermit 
  107576. >version 3.13 for IBM.
  107577. >
  107578. >    - Type CKERMIT from [VAX] $ prompt
  107579. >      At the C-KERMIT prompt> Set file character CP866-Cyrillic
  107580. >                                Set transfer character Cyrillic-ISO
  107581. >      <ALT>-X (to get to MS-Kermit)
  107582. >    - At the MS-KERMIT prompt>Set transfer character cyrillic
  107583. >                              Set file character CP865
  107584. >                              C (to reconnect to C-Kermit)
  107585. >    - C-KERMIT>AUTORECEIVE   filename
  107586. >
  107587. >This is working to receive files with french accents from the PC to
  107588. >the VAX, but it is not working to AUTOSEND files from the VAX to the PC.
  107589. >
  107590. Of course it is not working.  The Cyrillic character sets do not contain
  107591. Roman letters with accents.  Cyrillic is used for Russian, Ukrainian,
  107592. Belorussian, etc.
  107593.  
  107594. Also, I sincerely doubt that you would be using *any* code page on the
  107595. VAX.
  107596.  
  107597. I think that what you really want to do, as is explained thoroughly in
  107598. both "Using C-Kermit" and "Using MS-DOS Kermit" (and its French edition,
  107599. "Kermit MS-DOS Mode d'Emploi"), is:
  107600.  
  107601. VAX:
  107602.   set transfer char latin1
  107603.   set file char latin1 ; or dec-multinational
  107604.  
  107605. PC:
  107606.   set transfer char latin1
  107607.   set file char cp850 ; or cp863
  107608.   
  107609. CP850 is the IBM "Multilingual" code page.  CP863 is the Canadian French
  107610. code page.
  107611.  
  107612. - Frank
  107613.  
  107614. From news@columbia.edu Thu Mar 23 18:25:58 1995
  107615. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18541
  107616.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 27 Mar 1995 09:07:30 -0500
  107617. Received: by apakabar.cc.columbia.edu id AA18028
  107618.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 27 Mar 1995 09:07:29 -0500
  107619. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!howland.reston.ans.net!pipex!hursley.ibm.com!aixssc.uk.ibm.com!watnews.watson.ibm.com!mhvnews.kgn.ibm.com!news
  107620. From: rjrodrig@vnet.ibm.com
  107621. Newsgroups: comp.protocols.kermit.misc
  107622. Subject: MSKermit under Warp
  107623. Date: 23 Mar 1995 18:25:58 GMT
  107624. Organization: ISSC Pougheepsie New York
  107625. Lines: 7
  107626. Distribution: usa
  107627. Message-Id: <3ksefm$et4@mhvnews.kgn.ibm.com>
  107628. Reply-To: rjrodrig@kgnvmc.kgn.ibm.com
  107629. Nntp-Posting-Host: loctools.pok.ibm.com
  107630. X-Newsreader: IBM NewsReader/2 v1.04
  107631. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  107632.  
  107633. Is there anything special needed to allow MSKERMIT for DOS to run in
  107634. a DOS window under OS/2 Warp 3.9? It works fine in full-screen mode and
  107635. it previously worked in a window with OS/2 2.10, but it hangs when I
  107636. tried it with Warp using the recommended DOS settings.
  107637.  
  107638. Robert Rodriguez
  107639.  
  107640.  
  107641. From news@columbia.edu Mon Mar 27 14:13:58 1995
  107642. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19013
  107643.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 27 Mar 1995 09:14:12 -0500
  107644. Received: by apakabar.cc.columbia.edu id AA18536
  107645.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 27 Mar 1995 09:14:06 -0500
  107646. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  107647. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  107648. Newsgroups: comp.protocols.kermit.misc
  107649. Subject: Re: c-kermit, OpenVMS V6.1, and a terminal server
  107650. Date: 27 Mar 1995 14:13:58 GMT
  107651. Organization: Columbia University
  107652. Lines: 89
  107653. Message-Id: <3l6h76$i2j@apakabar.cc.columbia.edu>
  107654. References: <3kvl2i$lrf@gap.cco.caltech.edu>
  107655. Nntp-Posting-Host: watsun.cc.columbia.edu
  107656. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  107657.  
  107658. In article <3kvl2i$lrf@gap.cco.caltech.edu>,
  107659. Cheryl L. Southard <cld@yankee.caltech.edu> wrote:
  107660. >Perhaps someone can help me debug my problem with c-kermit, OpenVMS V6.1,
  107661. >and my terminal server.  When using this setup on the remote "server" side,
  107662. >kermit only works around 70% of the time.  The other 30%, we get massive
  107663. >amounts of retries, and if we're lucky maybe a few packets will get through.
  107664. >This problem is consistant to a small set of PC's and Macintoshes that
  107665. >dial into our Alpha running c-kermit, and VMS.
  107666. >
  107667. >THIS doesn't work 30%
  107668. >(PC or MAC)  <---telephone---> (terminal server)(Alpha running VMS V6.1)
  107669. >
  107670. >I don't think the problem lies in the local PC's or Macintoshes.  We can use
  107671. >the PC's and Macintoshes to successfully transfer files from Sun
  107672. >SPARCstations.  We can also use these PC's and MACs to connect through the
  107673. >terminal servers, then through the Sun's, to this particulal OpenVMS V6.1,
  107674. >and then kermit will work.
  107675. >
  107676. >THIS ALWAYS works
  107677. >(PC or MAC) <--tele---> (terminal server) (sun) (Alpha running VMS V6.1)
  107678. >
  107679. >Also, we've copied the kermit software (including kermit.ini) from a
  107680. >WORKING PC to a NON-WORKING PC, and this did not solve the problem.
  107681. >
  107682. >Also, we can use a LAT server instead of the terminal server, and this
  107683. >fixes the problem. i.e.
  107684. >(PC or MAC) <--tele---> (LAT server) (Alpha running VMS V6.1)
  107685. >
  107686. >I've used the precompiled version of kermit, and also tried
  107687. >compiling it myself.
  107688. >
  107689. >Does anyone have any cluse on things I can try?
  107690. >
  107691. >I've tried setting TTY_TYPAHDSZ and TTY_ALTYPAHD to 2064.  I verified
  107692. >that         PQL_MBYTLM is < 2300 + MAXBUF, 
  107693. >and that     MAXBUF > 2064, 
  107694. >and that     VIRTUALPAGECNT > 50000
  107695. >and that    BIOLM > 20
  107696. >and that     BYTLM > 8192 
  107697. >
  107698. >info:
  107699. >    C-Kermit 5A (190)
  107700. >    OpenVMS V6.1 on a DECstation 3000 model 600
  107701. >    Equinox ELG48 terminal server
  107702. >
  107703.  
  107704. An excellent report -- you've covered all the bases.  I know this is not
  107705. very helpful, but the evidence seems to point the finger at the connection
  107706. between the terminal server and VMS.  Presumably this is a TCP/IP
  107707. connection, since you say the problem doesn't happen with LAT.  My guess
  107708. would be that the terminal server and the Alpha are negotiating some kind
  107709. of "handshaking" that is not working, and the only cure for this is to
  107710. dig into the terminal server's configuration.
  107711.  
  107712. There are a couple other possibilities, though.
  107713.  
  107714. First, play with VMS C-Kermit's SET FLOW command.  If it is set at NONE,
  107715. try XON/XOFF.  Or vice versa.  The workings of this command in VMS over
  107716. various connection types is somewhat mysterious.
  107717.  
  107718. Second, make sure that VMS knows the actual connection speed.  For
  107719. example, if the user is coming in at 2400 bps, but VMS SHOW TERMINAL says
  107720. the speed is 19200, this might result in premature timeouts during file
  107721. transfer.
  107722.  
  107723. - Frank
  107724. x
  107725. x
  107726. x
  107727. x
  107728. x
  107729. x
  107730. x
  107731. x
  107732. x
  107733. x
  107734. x
  107735. x
  107736. x
  107737. x
  107738. x
  107739. x
  107740. x
  107741. x
  107742. x
  107743. x
  107744. x
  107745.  
  107746.  
  107747.  
  107748. From news@columbia.edu Mon Mar 27 14:17:45 1995
  107749. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19620
  107750.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 27 Mar 1995 09:18:05 -0500
  107751. Received: by apakabar.cc.columbia.edu id AA19069
  107752.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 27 Mar 1995 09:18:03 -0500
  107753. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  107754. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  107755. Newsgroups: comp.protocols.kermit.misc
  107756. Subject: Re: Loking for kermit for windows version higher than 0.75
  107757. Date: 27 Mar 1995 14:17:45 GMT
  107758. Organization: Columbia University
  107759. Lines: 25
  107760. Message-Id: <3l6he9$iiv@apakabar.cc.columbia.edu>
  107761. References: <3l090t$e1s@usenet.srv.cis.pitt.edu>
  107762. Nntp-Posting-Host: watsun.cc.columbia.edu
  107763. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  107764.  
  107765. In article <3l090t$e1s@usenet.srv.cis.pitt.edu>,
  107766. John Meyer <mmrst7+@pitt.edu> wrote:
  107767. >Hi, I'm looking for a good kermit for winsows program. I've already tried 
  107768. >version 0.75, which is around 3 year old program. Is there any newer 
  107769. >version available in shareware? I'll appreciate any info pointing me to 
  107770. >an ftp site.
  107771. >
  107772. The only Kermit program that we recommend and support for Windows is
  107773. MS-DOS Kermit.  Current version 3.14.
  107774.  
  107775.   Anonymous ftp to kermit.columbia.edu,
  107776.   directory kermit/archives,
  107777.   binary mode,
  107778.   file msvibm.zip.
  107779.  
  107780. If you had a previous version of MS-DOS Kermit, and you
  107781. want to install the new version over it, first make safe copies of
  107782. your MSCUSTOM.INI and DIALUPS.TXT files, as well as any other
  107783. file you might have modified.
  107784.  
  107785. Then unzip (with PKUNZIP or equivalent) using the "-d" switch to
  107786. preserve the directory structure.  Then read the top-level READ.ME
  107787. file for further installation instructions.
  107788.  
  107789. - Frank
  107790.  
  107791. From news@columbia.edu Sun Mar 26 19:34:15 1995
  107792. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20100
  107793.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 27 Mar 1995 09:23:43 -0500
  107794. Received: by apakabar.cc.columbia.edu id AA19649
  107795.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 27 Mar 1995 09:23:25 -0500
  107796. Path: news.columbia.edu!news.cs.columbia.edu!news.nyc.pipeline.com!uunet!wizard.pn.com!dns.crocker.com!news.sprintlink.net!bethe.hartwick.edu!wisanr
  107797. From: wisanr@hartwick.edu (Dick Wisan)
  107798. Newsgroups: comp.protocols.kermit.misc
  107799. Subject: Re: Keyboard Verbs: What do they send?
  107800. Message-Id: <1995Mar26.143415.2804@hartwick.edu>
  107801. Date: 26 Mar 95 14:34:15 -0500
  107802. References: <1995Mar24.170507.2799@hartwick.edu> <1995Mar25.091701.45631@cc.usu.edu>
  107803. Organization: Hartwick College
  107804. Lines: 33
  107805. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  107806.  
  107807. In article <1995Mar25.091701.45631@cc.usu.edu>, jrd@cc.usu.edu (Joe Doupnik) 
  107808. writes:
  107809. > In article <1995Mar24.170507.2799@hartwick.edu>, wisanr@hartwick.edu 
  107810. (Dick Wisan) writes:
  107811. >> I'd like to know what some of those MS-DOS Keyboard Macros actually 
  107812. >> send.  In particular, I'd like to know what \Kupscn \Kdnscn \KdecPrev
  107813. >> and \KdecNext do.  I understand the effects they produce, but what
  107814. >> are the bytes/characters they send over the line?
  107815. >>  
  107816. >> Or is this a State Secret?
  107817. > -----------
  107818. >     Please see the user's manual or grab file msvibm.vt from directory
  107819. > kermit/a on kermit.columbia.edu.
  107820. >     Joe D.
  107821.  
  107822. No.  The manual and msvibm.vt show what effect those verbs produce and
  107823. what keys they're bound to.  They don't show what bytes the keys actually
  107824. send.  
  107825.  
  107826. I've discovered, for example, that the DEC "DO" key can be simulated by
  107827. sending Esc OS, \27OS in a Kermit macro.  This gets the effect of the
  107828. key verb \Kdecdo.  I have been unable to work out and I would like to 
  107829. know what the \Kupscn \Kdnscn \KdecPrev and \KdecNext keys send that
  107830. produces the effects described in the manual and in msvibm.vt.
  107831.  
  107832. I'm assuming, of course, that each keystroke sends a specific sequence
  107833. of bytes, the same sequence every time it's pressed.  Is that assumption, 
  107834. perhaps, wrong?
  107835.  
  107836. -- 
  107837. R. N. (Dick) Wisan  - Email: internet WISANR@hartwick.edu
  107838.                     - Snail: 37 Clinton Street, Oneonta NY 13820, U.S.A.
  107839.                     - Just your opinion, please, ma'am: No fax.
  107840.  
  107841. From news@columbia.edu Mon Mar 27 14:29:15 1995
  107842. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20629
  107843.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 27 Mar 1995 09:29:25 -0500
  107844. Received: by apakabar.cc.columbia.edu id AA20318
  107845.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 27 Mar 1995 09:29:22 -0500
  107846. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  107847. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  107848. Newsgroups: comp.protocols.kermit.misc
  107849. Subject: Re: Keyboard Verbs: What do they send?
  107850. Date: 27 Mar 1995 14:29:15 GMT
  107851. Organization: Columbia University
  107852. Lines: 16
  107853. Message-Id: <3l6i3r$jqm@apakabar.cc.columbia.edu>
  107854. References: <1995Mar24.170507.2799@hartwick.edu> <1995Mar25.091701.45631@cc.usu.edu> <1995Mar26.143415.2804@hartwick.edu>
  107855. Nntp-Posting-Host: watsun.cc.columbia.edu
  107856. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  107857.  
  107858. In article <1995Mar26.143415.2804@hartwick.edu>,
  107859. Dick Wisan <wisanr@hartwick.edu> wrote:
  107860. >...
  107861. >I've discovered, for example, that the DEC "DO" key can be simulated by
  107862. >sending Esc OS, \27OS in a Kermit macro.  This gets the effect of the
  107863. >key verb \Kdecdo.  I have been unable to work out and I would like to 
  107864. >know what the \Kupscn \Kdnscn \KdecPrev and \KdecNext keys send that
  107865. >produces the effects described in the manual and in msvibm.vt.
  107866. >
  107867. Some \Kverbs, such as the \Kdec... ones, send the escape sequences that are
  107868. THOROUGHLY DOCUMENTED in the manual.  Others, such as \Kupscrn and \Kdnscn
  107869. perform actions that are (thoroughly documented in the manual and are) local
  107870. to MS-DOS Kermit -- in other words, they don't send any characers.
  107871.  
  107872. - Frank
  107873. x
  107874.  
  107875. From news@columbia.edu Mon Mar 27 14:44:51 1995
  107876. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22009
  107877.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 27 Mar 1995 09:45:14 -0500
  107878. Received: by apakabar.cc.columbia.edu id AA22014
  107879.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 27 Mar 1995 09:45:13 -0500
  107880. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  107881. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  107882. Newsgroups: comp.protocols.kermit.misc
  107883. Subject: Re: PCMag Comm Article
  107884. Date: 27 Mar 1995 14:44:51 GMT
  107885. Organization: Columbia University
  107886. Lines: 29
  107887. Message-Id: <3l6j13$ldm@apakabar.cc.columbia.edu>
  107888. References: <3l4q3p$11h@pilot.njin.net>
  107889. Nntp-Posting-Host: watsun.cc.columbia.edu
  107890. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  107891.  
  107892. In article <3l4q3p$11h@pilot.njin.net>,
  107893. Jim Green <jmgreen@pilot.njin.net> wrote:
  107894.  
  107895. >On p 211 of the 14Mar93 issue of PCMag the data seem to show that several
  107896. >comm programs performed better than the the theoretical limit for a
  107897. >compressed file: SmartComm uploads the test 500k .bmp file in 38sec; that
  107898. >is over 13kcps!!!  HyperAccess did it presumably w/o sliding windows in
  107899. >3:35, which amounts to 2326cps.  Qmodem _with_ sliding windows transfered
  107900. >at 3246cps!!!  What is going on here?  MS-Kermit can't do this!
  107901. >
  107902. It can't?
  107903.  
  107904. >Is this data valid?????
  107905. >
  107906. I don't have the PC Magazine issue handy, but you say it's a "500k .bmp"
  107907. file.  That must be a "Bitmap" file -- i.e. uncompressed screen rasters,
  107908. so naturally they get compressed by the modems' built-in data compression
  107909. feature -- V.42bis or whatever -- resulting in the high transfer rates.
  107910.  
  107911. Kermit would do just as well or better.  What's more, if you used Kermit
  107912. to transfer the SAME file through a pair of modems that did NOT do data
  107913. compression, Kermit would still get about the same data rate, whereas the
  107914. other would probably drop down to about 1600 cps.
  107915.  
  107916. >Do any of these comm programs use an implementation of current MS-Kermit?
  107917. >
  107918. No.
  107919.  
  107920. - Frank
  107921.  
  107922. From news@columbia.edu Mon Mar 27 14:47:18 1995
  107923. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22167
  107924.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 27 Mar 1995 09:47:21 -0500
  107925. Received: by apakabar.cc.columbia.edu id AA22256
  107926.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 27 Mar 1995 09:47:20 -0500
  107927. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  107928. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  107929. Newsgroups: comp.protocols.kermit.misc
  107930. Subject: Re: File transfer efficiency question with v.34 modems
  107931. Date: 27 Mar 1995 14:47:18 GMT
  107932. Organization: Columbia University
  107933. Lines: 25
  107934. Message-Id: <3l6j5m$ln9@apakabar.cc.columbia.edu>
  107935. References: <D62zI2.5KE@cmie.ernet.in>
  107936. Nntp-Posting-Host: watsun.cc.columbia.edu
  107937. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  107938.  
  107939. In article <D62zI2.5KE@cmie.ernet.in>,
  107940. Ajay Shah <ajayshah@cmie.ernet.in> wrote:
  107941. >I recently plugged in two v.34 modems and was able to consistently
  107942. >get connected at 28800 bps.  Both dialout and dialin were from 
  107943. >the same Linux notebook :-)  Call out on com2 and receive the call
  107944. >on com1.
  107945. >...
  107946. >I then started using kermit to transfer files.  The symptoms I saw
  107947. >were like this.  For a burst of around 10s, both modems would furiously
  107948. >work (and kermit would show ....).  Then there would be a LOOOONG
  107949. >pause while nothing was going on.  Then again a burst of furious activity.
  107950. >And so on.
  107951. >
  107952. Why don't you try the same experiment between two different PCs?
  107953.  
  107954. That would rule out such things as interrupt conflicts, driver and
  107955. scheduler peculiarities, and so on.
  107956.  
  107957. - Frank
  107958. x
  107959. x
  107960. x
  107961. x
  107962. x
  107963. x
  107964.  
  107965. From news@columbia.edu Mon Mar 27 16:43:20 1995
  107966. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00308
  107967.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 27 Mar 1995 11:43:26 -0500
  107968. Received: by apakabar.cc.columbia.edu id AA03788
  107969.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 27 Mar 1995 11:43:24 -0500
  107970. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  107971. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  107972. Newsgroups: comp.protocols.kermit.misc
  107973. Subject: Re: MSKermit under Warp
  107974. Date: 27 Mar 1995 16:43:20 GMT
  107975. Organization: Columbia University
  107976. Lines: 25
  107977. Distribution: usa
  107978. Message-Id: <3l6pv8$3m9@apakabar.cc.columbia.edu>
  107979. References: <3ksefm$et4@mhvnews.kgn.ibm.com>
  107980. Nntp-Posting-Host: watsun.cc.columbia.edu
  107981. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  107982.  
  107983. In article <3ksefm$et4@mhvnews.kgn.ibm.com>,
  107984.  <rjrodrig@kgnvmc.kgn.ibm.com> wrote:
  107985. >Is there anything special needed to allow MSKERMIT for DOS to run in
  107986. >a DOS window under OS/2 Warp 3.9? It works fine in full-screen mode and
  107987. >it previously worked in a window with OS/2 2.10, but it hangs when I
  107988. >tried it with Warp using the recommended DOS settings.
  107989. >
  107990. >Robert Rodriguez
  107991. >
  107992. We would need more information to be able to help you.
  107993.  
  107994. What are you attempting to do. 
  107995. At what point does it hang?
  107996.  
  107997. I have been using MS-DOS Kermit 3.14 successfully under WARP for several months.
  107998. Without any problems other than those one woudl
  107999. expect from trying to run a timing sensitive DOS application
  108000. in a multi-tasking operating system.
  108001.  
  108002.  
  108003.  
  108004. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  108005. "C-Kermit: available on more platforms than any other communications software."
  108006. "Kermit FTP: sending files whenever and wherever they are needed."
  108007.   OS/2 version 5A(190): ftp://kermit.columbia.edu/kermit/archives/cko190.zip 
  108008.  
  108009. From news@columbia.edu Mon Mar 27 02:51:51 1995
  108010. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03408
  108011.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 27 Mar 1995 12:20:56 -0500
  108012. Received: by apakabar.cc.columbia.edu id AA07884
  108013.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 27 Mar 1995 12:20:53 -0500
  108014. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  108015. From: jrd@cc.usu.edu (Joe Doupnik)
  108016. Newsgroups: comp.protocols.kermit.misc
  108017. Subject: Re: Keyboard Verbs: What do they send?
  108018. Message-Id: <1995Mar27.085151.45728@cc.usu.edu>
  108019. Date: 27 Mar 95 08:51:51 MDT
  108020. References: <1995Mar24.170507.2799@hartwick.edu> <1995Mar25.091701.45631@cc.usu.edu> <1995Mar26.143415.2804@hartwick.edu>
  108021. Organization: Utah State University
  108022. Lines: 193
  108023. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  108024.  
  108025. In article <1995Mar26.143415.2804@hartwick.edu>, wisanr@hartwick.edu (Dick Wisan) writes:
  108026. > In article <1995Mar25.091701.45631@cc.usu.edu>, jrd@cc.usu.edu (Joe Doupnik) 
  108027. > writes:
  108028. >> In article <1995Mar24.170507.2799@hartwick.edu>, wisanr@hartwick.edu 
  108029. > (Dick Wisan) writes:
  108030. >>> I'd like to know what some of those MS-DOS Keyboard Macros actually 
  108031. >>> send.  In particular, I'd like to know what \Kupscn \Kdnscn \KdecPrev
  108032. >>> and \KdecNext do.  I understand the effects they produce, but what
  108033. >>> are the bytes/characters they send over the line?
  108034. >>>  
  108035. >>> Or is this a State Secret?
  108036. >> -----------
  108037. >>     Please see the user's manual or grab file msvibm.vt from directory
  108038. >> kermit/a on kermit.columbia.edu.
  108039. >>     Joe D.
  108040. > No.  The manual and msvibm.vt show what effect those verbs produce and
  108041. > what keys they're bound to.  They don't show what bytes the keys actually
  108042. > send.  
  108043. > I've discovered, for example, that the DEC "DO" key can be simulated by
  108044. > sending Esc OS, \27OS in a Kermit macro.  This gets the effect of the
  108045. > key verb \Kdecdo.  I have been unable to work out and I would like to 
  108046. > know what the \Kupscn \Kdnscn \KdecPrev and \KdecNext keys send that
  108047. > produces the effects described in the manual and in msvibm.vt.
  108048. > I'm assuming, of course, that each keystroke sends a specific sequence
  108049. > of bytes, the same sequence every time it's pressed.  Is that assumption, 
  108050. > perhaps, wrong?
  108051. ---------------
  108052.     Ok, I'll spell it out for you. From my working copy of file msvibm.vt:
  108053.  
  108054.             (begin cutout)
  108055.  
  108056. Below, the acronyms CSI and SS3 stand for 8-bit control codes in an 8-bit
  108057. environment or for their 7-bit equivalents "ESC [" and "ESC O", respectively.
  108058. Command SET TERMINAL CONTROL {8-BIT | 7-BIT}, and an equivalent command from
  108059. the host, determines the usage for output text; use of parity forces 7-bit
  108060. mode.  CSI is decimal 155, SS3 is decimal 143.  Similarly, DCS is decimal 144
  108061. or ESC P and ST is decimal 156 or ESC \.  APC is decimal 159 or ESC _.
  108062. ---------------------------------------------------------------------------
  108063. Codes sent by DEC and Heath arrow keys
  108064. Key        Verb    IBM    VT320/VT102 mode    VT52/H19 mode
  108065.             key    Cursor    Application    Cursor or Application
  108066.  
  108067. up        uparr    up    CSI A    SS3 A        ESC A
  108068. down        dnarr    down    CSI B    SS3 B        ESC B
  108069. right        rtarr    right    CSI C    SS3 C        ESC C
  108070. left        lfarr    left    CSI D    SS3 D        ESC D
  108071.  
  108072. Codes sent by DEC editing keys, not preassigned to keys.
  108073. Key        Verb        VT320 mode        VT102/VT52/H19 mode
  108074.  
  108075. Find        decFind        CSI 1 ~            these keys
  108076. Insert Here    decInsert    CSI 2 ~             send nothing
  108077. Remove        decRemove    CSI 3 ~
  108078. Select        decSelect    CSI 4 ~
  108079. Prev Screen    decPrev        CSI 5 ~
  108080. Next Screen    decNext        CSI 6 ~            ~ is ASCII chart 7/14
  108081.  
  108082. Codes sent by DEC Numeric Keypad
  108083. Key        Verb    IBM    ANSI VT320/VT102 mode    VT52/H19 mode
  108084.             key    Numeric    Application    Numeric    Application
  108085.  
  108086. PF1/HF7/Blue   Gold,pf1 F1    SS3 P    SS3 P        ESC P    ESC P
  108087. PF2/HF8/Red     pf2    F2    SS3 Q    SS3 Q        ESC Q    ESC Q
  108088. PF3/HF9/Grey    pf3    F3    SS3 R    SS3 R        ESC R    ESC R
  108089. PF4/HF1         pf4    F4    SS3 S    SS3 S        ESC S    ESC S
  108090. 0        kp0    SF7    0    SS3 p        0    ESC ? p
  108091. 1        kp1    SF3    1    SS3 q        1    ESC ? q
  108092. 2        kp2    SF4    2    SS3 r        2    ESC ? r
  108093. 3        kp3    SF5    3    SS3 s        3    ESC ? s
  108094. 4        kp4    F9    4    SS3 t        4    ESC ? t
  108095. 5        kp5    F10    5    SS3 u        5    ESC ? u
  108096. 6        kp6    SF1    6    SS3 v        6    ESC ? v
  108097. 7        kp7    F5    7    SS3 w        7    ESC ? w
  108098. 8        kp8    F6    8    SS3 x        8    ESC ? x
  108099. 9        kp9    F7    9    SS3 y        9    ESC ? y
  108100. comma (,)    kpcoma    SF2    ,    SS3 l        ,    ESC ? l
  108101. minus (-)    kpminus    F8    -    SS3 m        -    ESC ? m
  108102. period (.)    kpdot    SF8    .    SS3 n        .    ESC ? n
  108103. Enter        kpenter    SF6    CR or    SS3 M        CR or    ESC ? M
  108104.                 CR LF    (newline on)    CR LF
  108105.  (SFn means hold down Shift key while pressing Function key n.)
  108106.  
  108107. Codes sent by DEC LK201 keyboard function keys, not preassigned to PC keys
  108108. Key name    Verb        VT320 mode        VT102/VT52/H19 mode
  108109.  
  108110. Hold Screen            nothing            nothing
  108111. Print Screen            nothing            nothing
  108112. Set-Up                nothing            nothing
  108113. F4                nothing            nothing
  108114. F5 (Break)            nothing            nothing
  108115. F6        decF6        CSI 17 ~        nothing
  108116. F7        decF7        CSI 18 ~        nothing
  108117. F8        decF8        CSI 19 ~        nothing
  108118. F9        decF9        CSI 20 ~        nothing
  108119. F10        decF10        CSI 21 ~        nothing
  108120. F11 (ESC)    decF11        CSI 23 ~        ESC
  108121. F12 (BS)    decF12        CSI 24 ~        BS
  108122. F13 (LF)    decF13        CSI 25 ~        LF
  108123. F14        decF14        CSI 26 ~        nothing
  108124. Help        decHelp        CSI 28 ~        nothing
  108125. Do        decDo        CSI 29 ~        nothing
  108126. F17        decF17        CSI 31 ~        nothing
  108127. F18        decF18        CSI 32 ~        nothing
  108128. F19        decF19        CSI 33 ~        nothing
  108129. F20        decF20        CSI 34 ~        nothing
  108130.  
  108131. Note: F6 - F20 are DEC "User Definable Keys" which means their output can be
  108132. redefined by the host (not by the terminal owner).  See below for method.
  108133.  
  108134. An often confusing item is knowing the mode of the auxillary keypad: numeric
  108135. or application.  Digital Equipment Corporation designed the terminal to change
  108136. modes only under command from the remote computer and not at all from the
  108137. keyboard.  So the startup state is numeric/cursor mode, and reception of
  108138. escape sequences "ESC [ ? 1 h" or "l" changes the mode.  Kermit verbs for the
  108139. keypad and cursor keys generate the correct escape sequences appropriate to
  108140. the current mode and terminal type.
  108141.  
  108142. A best attempt is made to safely test for the 101/102 key Enhanced keyboard
  108143. and use it if present.  If it is present then the keyboard translator
  108144. separates the individual arrow keys from those on the numeric keypad and also
  108145. separates the asterisk and forward slash keys on the keypad from those on the
  108146. regular typewriter keyboard.  These special Enhanced keyboard keys are
  108147. reported as scan codes with 4096 added to the base scan code.
  108148.  
  108149.  OTHER IBM KEYS OPERATIONAL IN CONNECT MODE:
  108150.  
  108151.  IBM key         IBM Verb      Action
  108152.  
  108153.  Keypad Del                    Send ASCII Del code (rubout) \127
  108154.  Backspace (<-)                Send ASCII Del code (rubout) \127  (BS is \8)
  108155.  Keypad -        MODELINE      Toggle mode line on/off (only if Mode Line is
  108156.                                enabled and not used by the host).
  108157.  Alt -           TERMTYPE      Toggle between text and Tek terminal types.
  108158.  Alt =           RESET         Clear screen and reset terminal emulator to
  108159.                                starting (setup) state.
  108160.  Alt b           BREAK         Send a BREAK signal
  108161.  Alt h           HELP          Show drop down help menu (detailed below)
  108162.  Alt s           STATUS        Show settings
  108163.  Alt x           EXIT          Exit Connect mode, back to Kermit prompt
  108164.  
  108165.  Home            HOMSCN        Roll screen up (text down) to beginning of
  108166.                                 storage.
  108167.  End             ENDSCN        Roll screen down (text up) to end of storage.
  108168.  PgUp            UPSCN         Roll screen up (back, earlier) one screen.
  108169.  PgDn            DNSCN         Roll screen down (forward, later) one screen.
  108170.  Ctrl-PgUp       UPONE         Roll screen up one line.
  108171.  Ctrl-PdDn       DNONE         Roll screen down one line.
  108172.  
  108173.  Control-PrtSc   PRTSCN        Toggle  on/off copying of received text to
  108174.                                printer, "PRN" shows on far right of mode
  108175.                                line when activated.
  108176.  
  108177.  Control-End     DUMP          Dump image of screen to a disk file or device.
  108178.                                Default filename is KERMIT.SCN in the current
  108179.                                directory. Use command SET DUMP to change the
  108180.                                filename.  Screen images are appended to the
  108181.                                file, separated by formfeeds. Graphics screens
  108182.                    go to files TEKPLT<digit digit>.TIF.
  108183.  
  108184.  Shift-PrtSc     Standard DOS Print-screen, dump screen image to printer.
  108185.  
  108186.  unassigned      HOLDSCRN      DEC style Holdscreen, same as typing Control-S.
  108187.  
  108188.  ALT-n         NEXTSESSION   Change to next terminal session, only if using
  108189.                     Kermit's internal TCP/IP protocol stack.
  108190.  
  108191.  ALT-z       NETHOLD       Place Network connections "on hold". This means
  108192.                     interrupt the normal PC to host connection and
  108193.                    invoke the external network control program
  108194.                    interface for session management. Works with
  108195.                    3Com(BAPI), Novell(NASI), UB-Net1, etc but not
  108196.                    with Kermit's internal TCP/IP protocol stack.
  108197.  
  108198.  unassigned     RTONE        scroll screen right one column
  108199.  unassigned     RTPAGE        scroll screen right by 20 columns
  108200.  unassigned     LFONE        scroll screen left by one column
  108201.  unassigned     LFPAGE        scroll screen left by 20 columns
  108202.  
  108203. "Alt -" means hold down Alt and type minus on the upper key rank.  This
  108204. switches among the various kinds of emulation but does not change most
  108205. operating parameters of the emulator. Follow a new selection with ALT = (verb
  108206. RESET) to reset the emulator to the current type.
  108207.  
  108208.             (end of cutout)
  108209.  
  108210.     Here we see that not all keys create traffic to the remote host.
  108211. Upscn etc are local video manipulators only; the host hears nothing about
  108212. them. The DEC DO key is precisely defined above, and it isn't even close
  108213. to ESC O S.
  108214.         Joe D.
  108215.  
  108216. From news@columbia.edu Mon Mar 27 12:56:23 1995
  108217. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17594
  108218.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 27 Mar 1995 15:54:49 -0500
  108219. Received: by apakabar.cc.columbia.edu id AA01072
  108220.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 27 Mar 1995 15:54:46 -0500
  108221. Path: news.columbia.edu!news.cs.columbia.edu!news.nyc.pipeline.com!newsjunkie.ans.net!howland.reston.ans.net!EU.net!Austria.EU.net!nntp.magwien.gv.at!nntp.advge.magwien.gv.at!usenet
  108222. From: SAC@advge.magwien.gv.at (Heinz Sack)
  108223. Newsgroups: comp.protocols.kermit.misc
  108224. Subject: Re: Source code in C for Ms-Kermit
  108225. Date: 27 Mar 1995 12:56:23 GMT
  108226. Organization: MD-ADV/Ge
  108227. Lines: 20
  108228. Message-Id: <3l6cln$2rn@hesnet.advge.magwien.gv.at>
  108229. References: <3kidvd$k76@toads.pgh.pa.us>
  108230. Nntp-Posting-Host: 141.203.60.213
  108231. Mime-Version: 1.0
  108232. X-Newsreader: WinVN 0.93.14
  108233. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  108234.  
  108235. In article <3kidvd$k76@toads.pgh.pa.us>, isiew@lis.pitt.edu says...
  108236. >
  108237. >Hi, has anyone out there written a MS-KERMIT version in C. If so, where 
  108238. can
  108239. >I find it with drivers and documentation. The ftp site at Columbia U 
  108240. only
  108241. >holds the assembly version. Thanks
  108242. >
  108243. >--
  108244. >-------------------------------
  108245. >- Ivan Siew
  108246. >isiew@lis.pitt.edu
  108247. >http://info.pitt.edu/~ihsst/
  108248.  
  108249. I am also very interested in the source code for a terminal emulation (VT 
  108250. 100 or better). I need it for special purposes to comunicate between VAX 
  108251. and PC programms. If you get any Information, please contact me.
  108252.  
  108253. Thank's for all - Heinz Sack
  108254.  
  108255.  
  108256. From news@columbia.edu Mon Mar 27 15:42:17 1995
  108257. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12392
  108258.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 27 Mar 1995 22:32:46 -0500
  108259. Received: by apakabar.cc.columbia.edu id AA08528
  108260.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 27 Mar 1995 22:32:42 -0500
  108261. Path: news.columbia.edu!panix!news.mathworks.com!solaris.cc.vt.edu!news.duke.edu!godot.cc.duq.edu!ddsw1!usenet
  108262. From: benkrug@mcs.com (Benjamin Krug)
  108263. Newsgroups: comp.protocols.kermit.misc
  108264. Subject: help : server script
  108265. Date: 27 Mar 1995 15:42:17 GMT
  108266. Organization: MCSNet
  108267. Lines: 25
  108268. Message-Id: <3l6mcp$gr6@News1.mcs.com>
  108269. Nntp-Posting-Host: fnbctech.pr.mcs.net
  108270. X-Newsreader: WinVN 0.90.5
  108271. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  108272.  
  108273. Hi, I'd appreciate any help I can get on this.
  108274.  
  108275. I have a C-Kermit (5A) script which dials out from my Sun
  108276. (Sparc1000, Solaris 2.3), logs into an internet provider,
  108277. invokes C-Kermit there, starts up server, escapes back to
  108278. my local session, and then...
  108279.  
  108280. I ask it to get a file ("output get readme.txt"), but it
  108281. doesn't.  It just seems to stop here.
  108282.  
  108283. At first I was looking for input, but then removed that,
  108284. and simply did a "pause 20" after my command to escape
  108285. back to the local kermit session.
  108286.  
  108287. Everything works fine up to this, but then I'm just left
  108288. there, in local kermit with a remote server session.
  108289.  
  108290. Any help?  Suggestions?  Tips?  (I can't find anything
  108291. to solve this in "Using C-Kermit.)
  108292.  
  108293. Thanks a lot,
  108294.  
  108295. Ben Krug
  108296. benkrug@mcs.com
  108297.  
  108298.  
  108299. From news@columbia.edu Tue Mar 28 14:18:32 1995
  108300. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09601
  108301.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 28 Mar 1995 09:18:39 -0500
  108302. Received: by apakabar.cc.columbia.edu id AA27883
  108303.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 28 Mar 1995 09:18:36 -0500
  108304. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  108305. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  108306. Newsgroups: comp.protocols.kermit.misc
  108307. Subject: Re: help : server script
  108308. Date: 28 Mar 1995 14:18:32 GMT
  108309. Organization: Columbia University
  108310. Lines: 33
  108311. Message-Id: <3l95ro$r77@apakabar.cc.columbia.edu>
  108312. References: <3l6mcp$gr6@news1.mcs.com>
  108313. Nntp-Posting-Host: watsun.cc.columbia.edu
  108314. Cc: 
  108315.  
  108316. In article <3l6mcp$gr6@news1.mcs.com>, Benjamin Krug <benkrug@mcs.com> wrote:
  108317. >Hi, I'd appreciate any help I can get on this.
  108318. >
  108319. >I have a C-Kermit (5A) script which dials out from my Sun
  108320. >(Sparc1000, Solaris 2.3), logs into an internet provider,
  108321. >invokes C-Kermit there, starts up server, escapes back to
  108322. >my local session, and then...
  108323. >
  108324. >I ask it to get a file ("output get readme.txt"), but it
  108325. >doesn't.  It just seems to stop here.
  108326. >
  108327. The command would be "get readme.txt", not "output get readme.txt".
  108328.  
  108329. Your OUTPUT command makes it send the string "get readme.txt" to
  108330. the Kermit server, but:
  108331.  
  108332.  . The Kermit server is no longer in command mode.
  108333.  . Even if it were, you have omitted the trailing carriage return.
  108334.  . The GET command is given to the client, not to the server.
  108335.  
  108336. So nothing happens.
  108337.  
  108338. In general, a script program just contains the commands you would
  108339. type interactively, except it never CONNECTs or "escapes back".
  108340.  
  108341. Instead, everything that you would type during CONNECT mode is sent
  108342. to the remote host or service with OUTPUT commands.  Carriage
  108343. returns and other control characters must be included explicitly, as
  108344. in "output help\13".  And everything you read with your eyes is read
  108345. by Kermit using INPUT commands.  And every time you have to pause in
  108346. real life, you put in a PAUSE command.
  108347.  
  108348. - Frank
  108349.  
  108350. From news@columbia.edu Tue Mar 28 14:20:37 1995
  108351. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14751
  108352.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 28 Mar 1995 10:28:41 -0500
  108353. Received: by apakabar.cc.columbia.edu id AA04663
  108354.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 28 Mar 1995 10:28:39 -0500
  108355. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news.sprintlink.net!netnet2.netnet.net!awinc.com!usenet
  108356. From: randys@awinc.com (Randal N. Streilein)
  108357. Newsgroups: comp.protocols.kermit.misc
  108358. Subject: Notice: Howto InfoNet
  108359. Date: Tue, 28 Mar 1995 06:20:37 -0800 (PST)
  108360. Organization: SHEP Communications
  108361. Lines: 34
  108362. Message-Id: <3l95np$3jj@kelowna.awinc.com>
  108363. Reply-To: Randal.N.Streilein@columbia.edu
  108364. Nntp-Posting-Host: pme016.awinc.com
  108365. X-Newsreader: Forte Free Agent v0.38
  108366. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  108367.  
  108368.  
  108369.                    HOW-TO AUTHORS
  108370.  
  108371. Made all the money you want yet? Ready to make some more? I thought
  108372. so!  I've taken the next step with my own organizing tips booklet and
  108373. my other publications and want to invite you to come along for the
  108374. ride!!  Organizing Solutions, Inc., in partnership with Streilein
  108375. House of Electronic Publications has created a presence on the
  108376. Internet in the form of a 'home page' called the "How-To 
  108377. InfoNet.  A home page is electronic files that store all KlNDS of
  108378. Information. 
  108379.   What this means is that people read a menu of documents (later we'll
  108380. be adding other products) available at our home page site. For a fee,
  108381. the user can download the information onto their own computer once
  108382. they provide their credit card information.  No production or
  108383. fulfillment is required by you! We expect to add other products like
  108384. audio tapes,video tapes and CD-ROMs in the near future.  YOU receive
  108385. quarterly royalty checks from us for each copy of your publication
  108386. that's been downloaded. It doesn't get any easier than that, does it?
  108387.  
  108388. To request additional information and a publishing agreement, e-mail
  108389. us your fax number or e-mail address and we'll get it out to you right
  108390. away. Also, let us know what questions you have.
  108391.  
  108392. Our launch date on this expansion is April 15 (great date, isn't it?).
  108393. We'll probably do another edition in June, so jump in now. Looking
  108394. forward to hearing from you soon.
  108395.  
  108396. Abundantly yours,
  108397.  
  108398. Paulette Ensign
  108399.  
  108400.  
  108401.  
  108402.  
  108403. From news@columbia.edu Tue Mar 28 17:23:26 1995
  108404. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24051
  108405.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 28 Mar 1995 12:41:54 -0500
  108406. Received: by apakabar.cc.columbia.edu id AA18050
  108407.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 28 Mar 1995 12:41:47 -0500
  108408. Path: news.columbia.edu!watsun.cc.columbia.edu!pepmnt
  108409. From: pepmnt@watsun.cc.columbia.edu (John Chandler)
  108410. Newsgroups: comp.protocols.kermit.misc
  108411. Subject: Re: Kermit-CMS File Transfers
  108412. Date: 28 Mar 1995 17:23:26 GMT
  108413. Organization: Columbia University
  108414. Lines: 22
  108415. Message-Id: <3l9gme$fs2@apakabar.cc.columbia.edu>
  108416. References: <3k45hm$m7r@news.manassas.ibm.com> <3kc5k5$9ml@apakabar.cc.columbia.edu> <3kcs8s$a2q@apakabar.cc.columbia.edu> <3kn9k7$mce@news.manassas.ibm.com>
  108417. Nntp-Posting-Host: watsun.cc.columbia.edu
  108418. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  108419.  
  108420. In article <3kn9k7$mce@news.manassas.ibm.com>,
  108421. Randy D Anderson <zoso@lfs.loral.com> wrote:
  108422. >Thanks for the pointers to Kermit-370 4.3.1 and the 'APC' command;
  108423. >but how is it used?
  108424.  
  108425. Perhaps paradoxically, the primary documentation for the APC subcommand
  108426. lies at the other end -- all the mainframe Kermit does is pass the
  108427. command string along for execution to the other Kermit, so the syntax
  108428. checking is done remotely.
  108429.  
  108430. >  Is it possible to start Kermit-370, then type
  108431. >one word that will execute a sequence of Kermit commands and then
  108432. >return (just as the 'pcget' macro in C-Kermit?)  The 'ik0aux.cmd'
  108433. >sample code says the EXEC there can be executed from inside Kermit,
  108434. >but how?
  108435.  
  108436. The EXEC's in that file are ordinary CMS EXEC's.  No more, no less.
  108437. They are executed from within Kermit the same as any other CMS command.
  108438. See the CMS Kermit user's guide (it's free!), particularly the sections
  108439. on EXEC operation and the SET SYSCMD subcommand.
  108440.  
  108441.                     John
  108442.  
  108443. From news@columbia.edu Mon Mar 27 19:21:34 1995
  108444. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07425
  108445.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 29 Mar 1995 02:54:03 -0500
  108446. Received: by apakabar.cc.columbia.edu id AA20547
  108447.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 29 Mar 1995 02:54:00 -0500
  108448. Path: news.columbia.edu!news.cs.columbia.edu!news.nyc.pipeline.com!newsjunkie.ans.net!howland.reston.ans.net!math.ohio-state.edu!magnus.acs.ohio-state.edu!csn!csnnews!usenet
  108449. From: Richard Aleksandr <rgalek@csn.net>
  108450. Newsgroups: comp.protocols.kermit.misc
  108451. Subject: SCO Unix kermit problems
  108452. Date: 27 Mar 1995 19:21:34 GMT
  108453. Organization: Colorado Supernet
  108454. Lines: 20
  108455. Message-Id: <3l737u$pk2@news-2.csn.net>
  108456. Nntp-Posting-Host: 199.117.4.4
  108457. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  108458.  
  108459. Hi Folks,
  108460.  
  108461. I am running kermit on my SCO PC, attempting to connect via direct
  108462. serial line to an HP running HP-UX 9.1 (.01?). I set the line and
  108463. speed (/dev/tty1a, 38400) but when I attempt to 'connect' I almost
  108464. immediately get the response 'Communcations disconnect' and then
  108465. '(back at localhostname)'
  108466.  
  108467. I have no idea, nor am I able to figure out, how to get more 
  108468. information on why I can't connect. Is there a verbose mode? Perm-
  108469. missions on /dev/tty1a are wide open. I can connect as a remote 
  108470. terminal from DOS using Procomm Plus so I know the line is o.k.
  108471.  
  108472. Help!
  108473.  
  108474. Thanks very much,
  108475.  
  108476. Richard
  108477.  
  108478.  
  108479.  
  108480. From news@columbia.edu Sun Mar 28 04:37:52 1995
  108481. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10943
  108482.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 29 Mar 1995 04:32:14 -0500
  108483. Received: by apakabar.cc.columbia.edu id AA23792
  108484.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 29 Mar 1995 04:32:12 -0500
  108485. Path: news.columbia.edu!news.cs.columbia.edu!news.nyc.pipeline.com!news.intercon.com!panix!news.mathworks.com!udel!gatech!howland.reston.ans.net!news.cac.psu.edu!news.pop.psu.edu!hudson.lm.com!godot.cc.duq.edu!ddsw1!not-for-mail
  108486. From: les@MCS.COM (Leslie Mikesell)
  108487. Newsgroups: comp.lang.tcl,comp.protocols.kermit.misc
  108488. Subject: Re: Help me mix expect and kermit?
  108489. Date: 27 Mar 1995 22:37:52 -0600
  108490. Organization: /usr/lib/news/organi[sz]ation
  108491. Lines: 20
  108492. Message-Id: <3l83r0$h3i@Mercury.mcs.com>
  108493. References: <D63MBw.GKG@cmie.ernet.in>
  108494. Nntp-Posting-Host: mercury.mcs.com
  108495. Xref: news.columbia.edu comp.lang.tcl:26884 comp.protocols.kermit.misc:2361
  108496. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  108497.  
  108498. In article <D63MBw.GKG@cmie.ernet.in>,
  108499. Ajay Shah <ajayshah@cmie.ernet.in> wrote:
  108500. >I'm trying to automate kermit using expect and many things are
  108501. >behaving strangely.
  108502. >
  108503. >Is there something perverse about kermit in this respect?  As
  108504. >long as I do not say "connect" expect and kermit mix perfectly.
  108505. >The moment I say connect things get hairy.
  108506. >
  108507. >If you have a expect program, or words of wisdom on this front,
  108508. >I would love to hear from you.  I'm running expect on a Austin
  108509. >486 notebook running linux.
  108510.  
  108511. What do you need to do that you can't automate with kermit's own
  108512. scripting?  I've been so perverse as to use kermit with a loopback
  108513. telnet connection to automate things on the local host that need
  108514. a pty instead of using expect.
  108515.  
  108516. Les Mikesell
  108517.   les@mcs.com
  108518.  
  108519. From news@columbia.edu Sun Mar 28 04:40:03 1995
  108520. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10950
  108521.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 29 Mar 1995 04:32:21 -0500
  108522. Received: by apakabar.cc.columbia.edu id AA23804
  108523.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 29 Mar 1995 04:32:20 -0500
  108524. Path: news.columbia.edu!news.cs.columbia.edu!news.nyc.pipeline.com!news.intercon.com!panix!news.mathworks.com!udel!gatech!newsfeed.pitt.edu!godot.cc.duq.edu!ddsw1!not-for-mail
  108525. From: les@MCS.COM (Leslie Mikesell)
  108526. Newsgroups: comp.protocols.kermit.misc
  108527. Subject: Re: help : server script
  108528. Date: 27 Mar 1995 22:40:03 -0600
  108529. Organization: /usr/lib/news/organi[sz]ation
  108530. Lines: 17
  108531. Message-Id: <3l83v3$h89@Mercury.mcs.com>
  108532. References: <3l6mcp$gr6@news1.mcs.com>
  108533. Nntp-Posting-Host: mercury.mcs.com
  108534. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  108535.  
  108536. In article <3l6mcp$gr6@news1.mcs.com>, Benjamin Krug <benkrug@mcs.com> wrote:
  108537. >Hi, I'd appreciate any help I can get on this.
  108538. >
  108539. >I have a C-Kermit (5A) script which dials out from my Sun
  108540. >(Sparc1000, Solaris 2.3), logs into an internet provider,
  108541. >invokes C-Kermit there, starts up server, escapes back to
  108542. >my local session, and then...
  108543. >
  108544. >I ask it to get a file ("output get readme.txt"), but it
  108545. >doesn't.  It just seems to stop here.
  108546.  
  108547. You don't say "output get ..." when the other end is in server mode
  108548. you just say "get ..." to your end and it automatically tells the
  108549. server what you want.
  108550.  
  108551. Les Mikesell
  108552.   les@mcs.com
  108553.  
  108554. From news@columbia.edu Wed Mar 29 16:21:30 1995
  108555. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00151
  108556.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 29 Mar 1995 11:21:38 -0500
  108557. Received: by apakabar.cc.columbia.edu id AA10978
  108558.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 29 Mar 1995 11:21:34 -0500
  108559. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  108560. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  108561. Newsgroups: comp.protocols.kermit.misc
  108562. Subject: Re: SCO Unix kermit problems
  108563. Date: 29 Mar 1995 16:21:30 GMT
  108564. Organization: Columbia University
  108565. Lines: 21
  108566. Message-Id: <3lc1ea$amu@apakabar.cc.columbia.edu>
  108567. References: <3l737u$pk2@news-2.csn.net>
  108568. Nntp-Posting-Host: watsun.cc.columbia.edu
  108569. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  108570.  
  108571. In article <3l737u$pk2@news-2.csn.net>,
  108572. Richard Aleksandr  <rgalek@csn.net> wrote:
  108573. >I am running kermit on my SCO PC, attempting to connect via direct
  108574. >serial line to an HP running HP-UX 9.1 (.01?). I set the line and
  108575. >speed (/dev/tty1a, 38400) but when I attempt to 'connect' I almost
  108576. >immediately get the response 'Communcations disconnect' and then
  108577. >'(back at localhostname)'
  108578. >
  108579. >I have no idea, nor am I able to figure out, how to get more 
  108580. >information on why I can't connect.
  108581. >
  108582. Try "show communications" or "show modem".  It will probably tell
  108583. you that the Carrier-Detect (CD) signal is off.  The underlying
  108584. device driver normally wants it to be on in order to communicate.
  108585.  
  108586. Solution: tell C-Kermit to "set carrier off", meaning: don't require
  108587. carrier.  If that doesn't do it, see Chapter 3 of "Using C-Kermit",
  108588. especially the section on direct serial connections.  If that still
  108589. doesn't do it, get back to me with more details.
  108590.  
  108591. - Frank
  108592.  
  108593. From news@columbia.edu Wed Mar 29 01:22:11 1995
  108594. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07519
  108595.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 29 Mar 1995 13:24:55 -0500
  108596. Received: by apakabar.cc.columbia.edu id AA06762
  108597.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 29 Mar 1995 13:24:51 -0500
  108598. Path: news.columbia.edu!sol.ctr.columbia.edu!proto.ida.org!bah.com!uunet!news.mathworks.com!news2.near.net!cat.cis.Brown.EDU!news
  108599. From: hiroi@pggipl.geo.brown.edu   (Takahiro Hiroi)
  108600. Newsgroups: comp.protocols.kermit.misc,comp.os.os2.apps,comp.os.os2.networking.tcp-ip,bit.listserv.os2-l,comp.dcom.modems
  108601. Subject: Re: OS/2 C-Kermit 5A(191) Beta Available for Testing
  108602. Date: 29 Mar 1995 01:22:11 GMT
  108603. Organization: Brown University
  108604. Lines: 49
  108605. Message-Id: <3laco3$9ei@cat.cis.Brown.EDU>
  108606. References: <3kmpo4$8nn@apakabar.cc.columbia.edu> <3l0ctq$gn6@apakabar.cc.columbia.edu>
  108607. Reply-To: hiroi@relab1.geo.brown.edu
  108608. Nntp-Posting-Host: tonto-slip5.cis.brown.edu
  108609. X-Newsreader: IBM NewsReader/2 v1.03
  108610. Xref: news.columbia.edu comp.protocols.kermit.misc:2364 comp.os.os2.apps:74180 comp.os.os2.networking.tcp-ip:22730 bit.listserv.os2-l:28850 comp.dcom.modems:86297
  108611. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  108612.  
  108613. In <3l0ctq$gn6@apakabar.cc.columbia.edu>, jaltman@watsun.cc.columbia.edu (Jeffrey Altman) writes:
  108614. >Due to popular demand in by early Beta testers the Rollback handling has
  108615. >been significantly altered as of Beta.04.  A description of the changes
  108616. >is listed below.  All users are urged to test the new Rollback modes and
  108617. >return feedback to kermit@columbia.edu.
  108618. >
  108619. >C-Kermit 5a(191) Betas may be retrieved via anonymous ftp from
  108620. >
  108621. >    kermit.columbia.edu  /kermit/os2test/cko191.zip
  108622. >
  108623. >Or from the Web at
  108624. >
  108625. >    http://www.columbia.edu/kermit/cko191.html
  108626. >
  108627. >---------------------------------------------------------------------------
  108628. >
  108629. >C-Kermit 5a(190) and earlier had a command SET TERMINAL ROLL { ON, OFF }.
  108630. >This command was named after ability to have the terminal screen continue
  108631. >to roll from the end of the buffer when new data was received.
  108632. >
  108633. >As changes to the terminal emulator have been made this functionality has
  108634. >appeared to be a bit outdated.  What was once a nice way of preventing the
  108635. >screen from jumping to the end of the buffer while looking at something 
  108636. >from the past has itself become a serious nuisance.
  108637. >
  108638. >Therefore, effective Beta.04 SET TERMINAL ROLL has been replaced by
  108639. >SET TERMINAL ROLL-MODE { INSERT, OVERWRITE }.
  108640. >
  108641. >In 5a(191) this is nothing that prevents you from interacting with the host
  108642. >while viewing the scrollback buffer.  The only question is where do you
  108643. >want new data from the host to be placed.  In INSERT mode, the data will be
  108644. >placed at the end of the buffer just as if you weren't viewing the scrollback
  108645. >buffer at all.
  108646. >
  108647. >In OVERWRITE mode, the data will overwrite the current screen of the 
  108648. >scrollback buffer.  Just like the old SET TERMINAL ROLL OFF used to do.
  108649. >
  108650. >In fact, ROLL OFF maps directly to ROLL-MODE OVERWRITE and ROLL ON maps 
  108651. >to ROLL-MODE INSERT.
  108652. >
  108653. >The new default setting is ROLL-MODE INSERT instead of ROLL OFF.
  108654. >
  108655. >Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  108656. >"C-Kermit: available on more platforms than any other communications software."
  108657. >"Kermit FTP: sending files whenever and wherever they are needed."
  108658. >  OS/2 version 5A(190): ftp://kermit.columbia.edu/kermit/archives/cko190.zip 
  108659.  
  108660. I tried.  VT220 didn't work properly.  It is amazing that such a popular emulation
  108661. has a bug.
  108662.  
  108663. From news@columbia.edu Wed Mar 29 21:54:12 1995
  108664. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24957
  108665.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 29 Mar 1995 16:54:23 -0500
  108666. Received: by apakabar.cc.columbia.edu id AA00767
  108667.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 29 Mar 1995 16:54:20 -0500
  108668. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  108669. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  108670. Newsgroups: comp.protocols.kermit.misc,comp.os.os2.apps,comp.os.os2.networking.tcp-ip,bit.listserv.os2-l,comp.dcom.modems
  108671. Subject: Re: OS/2 C-Kermit 5A(191) Beta Available for Testing
  108672. Date: 29 Mar 1995 21:54:12 GMT
  108673. Organization: Columbia University
  108674. Lines: 18
  108675. Message-Id: <3lcku4$ns@apakabar.cc.columbia.edu>
  108676. References: <3kmpo4$8nn@apakabar.cc.columbia.edu> <3l0ctq$gn6@apakabar.cc.columbia.edu> <3laco3$9ei@cat.cis.brown.edu>
  108677. Nntp-Posting-Host: watsun.cc.columbia.edu
  108678. Xref: news.columbia.edu comp.protocols.kermit.misc:2365 comp.os.os2.apps:74205 comp.os.os2.networking.tcp-ip:22748 bit.listserv.os2-l:28857 comp.dcom.modems:86310
  108679. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  108680.  
  108681. In article <3laco3$9ei@cat.cis.brown.edu>,
  108682. Takahiro Hiroi <hiroi@relab1.geo.brown.edu> wrote:
  108683. >I tried.  VT220 didn't work properly.  It is amazing that such a popular
  108684. >emulation has a bug.
  108685. >
  108686. If you have found a bug in Beta Test software, why don't you report
  108687. it directly to the developers.  That is what beta tests are for.
  108688.  
  108689. Use e-mail, not netnews, which gets send to millions of computers all
  108690. over the world, at considerable cost.  The address for reporting bugs
  108691. is:
  108692.  
  108693.   kermit@columbia.edu
  108694.  
  108695. Please be specific.  Exactly what does not work?  And did you consult
  108696. the documentation first?
  108697.  
  108698. - Frank
  108699.  
  108700. From news@columbia.edu Wed Mar 29 15:31:04 1995
  108701. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00197
  108702.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 29 Mar 1995 18:13:25 -0500
  108703. Received: by apakabar.cc.columbia.edu id AA11963
  108704.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 29 Mar 1995 18:13:23 -0500
  108705. Newsgroups: comp.protocols.kermit.misc,comp.os.os2.apps,comp.os.os2.networking.tcp-ip,bit.listserv.os2-l,comp.dcom.modems
  108706. Path: news.columbia.edu!sol.ctr.columbia.edu!proto.ida.org!bah.com!uunet!news.mathworks.com!news2.near.net!epsilon!usenet
  108707. From: ahd@epsilon.com  (Drew Derbyshire)
  108708. Subject: Re: OS/2 C-Kermit 5A(191) Beta Available for Testing
  108709. Message-Id: <D67KFs.4I1@epsilon.com>
  108710. Sender: usenet@epsilon.com
  108711. Nntp-Posting-Host: cassandra.quantum.epsilon.com
  108712. Reply-To: ahd@epsilon.com (Drew Derbyshire)
  108713. Organization: HPC Division, Epsilon Data Management, Burlington, MA 01803
  108714. X-Newsreader: IBM NewsReader/2 v1.09
  108715. References: <3kmpo4$8nn@apakabar.cc.columbia.edu> <3l0ctq$gn6@apakabar.cc.columbia.edu> <3laco3$9ei@cat.cis.Brown.EDU>
  108716. Date: Wed, 29 Mar 1995 15:31:04 GMT
  108717. Lines: 18
  108718. Xref: news.columbia.edu comp.protocols.kermit.misc:2366 comp.os.os2.apps:74215 comp.os.os2.networking.tcp-ip:22757 bit.listserv.os2-l:28859 comp.dcom.modems:86324
  108719. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  108720.  
  108721.          [Much deleted about features of new OS/2 Kermit beta from
  108722.           kermit.columbai.edu]
  108723.  
  108724. In <3laco3$9ei@cat.cis.Brown.EDU>, hiroi@pggipl.geo.brown.edu   (Takahiro Hiroi) writes:
  108725. >I tried.  VT220 didn't work properly.  It is amazing that such a popular emulation
  108726. >has a bug.
  108727.  
  108728. First off, send mail directly to jaltman@kermit.columbia.edu.  His
  108729. news feed suffers from the time lag from hell.
  108730.  
  108731. Second, saying WHAT VT220 emulation error while talking to what platform
  108732. would be useful.  There is no way to fix the problem, or even determine
  108733. it exists, from the above description.
  108734.  
  108735.  
  108736. Drew Derbyshire
  108737. Internet:       ahd@epsilon.com
  108738.  
  108739.  
  108740. From news@columbia.edu Wed Mar 29 23:38:41 1995
  108741. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04238
  108742.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 29 Mar 1995 19:30:23 -0500
  108743. Received: by apakabar.cc.columbia.edu id AA15505
  108744.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 29 Mar 1995 19:30:21 -0500
  108745. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!math.ohio-state.edu!uwm.edu!fnnews.fnal.gov!nntp-server.caltech.edu!yankee!cld
  108746. From: cld@yankee.caltech.edu (Cheryl L. Southard)
  108747. Newsgroups: comp.protocols.kermit.misc
  108748. Subject: Re: c-kermit, OpenVMS V6.1, and a terminal server
  108749. Date: 29 Mar 1995 23:38:41 GMT
  108750. Organization: Caltech Astronomy Department
  108751. Lines: 36
  108752. Message-Id: <3lcr21$9ad@gap.cco.caltech.edu>
  108753. References: <3kvl2i$lrf@gap.cco.caltech.edu> <3l6h76$i2j@apakabar.cc.columbia.edu>
  108754. Nntp-Posting-Host: yankee.caltech.edu
  108755. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  108756.  
  108757. In article <3l6h76$i2j@apakabar.cc.columbia.edu>,
  108758. Frank da Cruz <fdc@watsun.cc.columbia.edu> wrote:
  108759. >An excellent report -- you've covered all the bases.  I know this is not
  108760. >very helpful, but the evidence seems to point the finger at the connection
  108761. >between the terminal server and VMS.  Presumably this is a TCP/IP
  108762. >connection, since you say the problem doesn't happen with LAT.  My guess
  108763. >would be that the terminal server and the Alpha are negotiating some kind
  108764. >of "handshaking" that is not working, and the only cure for this is to
  108765. >dig into the terminal server's configuration.
  108766. >
  108767. >There are a couple other possibilities, though.
  108768. >
  108769. >First, play with VMS C-Kermit's SET FLOW command.  If it is set at NONE,
  108770. >try XON/XOFF.  Or vice versa.  The workings of this command in VMS over
  108771. >various connection types is somewhat mysterious.
  108772. >
  108773. >Second, make sure that VMS knows the actual connection speed.  For
  108774. >example, if the user is coming in at 2400 bps, but VMS SHOW TERMINAL says
  108775. >the speed is 19200, this might result in premature timeouts during file
  108776. >transfer.
  108777. >
  108778. >- Frank
  108779.  
  108780. Well, neither the "set flow" command or the "sho terminal" stuff fixed the
  108781. problem.  The problem was solved, however, by upgrading my terminal server
  108782. software.
  108783.  
  108784. Here's the details on the terminal server:
  108785. Equinox PBX with ELG 48 card
  108786. The software on the ELG 48 card WAS at V2.30.
  108787. Upgrading the ELG 48 card to V2.33 fixes the problem.
  108788.  
  108789. Thanks for the help,
  108790.  
  108791. Cheryl
  108792.  
  108793.  
  108794. From news@columbia.edu Tue Mar 28 17:03:56 1995
  108795. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05917
  108796.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 29 Mar 1995 20:00:23 -0500
  108797. Received: by apakabar.cc.columbia.edu id AA25732
  108798.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 29 Mar 1995 20:00:21 -0500
  108799. Path: news.columbia.edu!sol.ctr.columbia.edu!ucsnews!newshub.sdsu.edu!nic-nac.CSU.net!newsserver.sdsc.edu!news.cerf.net!nntp-server.caltech.edu!netline-fddi.jpl.nasa.gov!news.byu.edu!news.mtholyoke.edu!news.umass.edu!caen!kuhub.cc.ukans.edu!falcon.cc.ukans.edu!ktakusa
  108800. Newsgroups: comp.protocols.kermit.misc
  108801. Subject: Clobbering the Last Line
  108802. Message-Id: <1995Mar28.230356.88847@kuhub.cc.ukans.edu>
  108803. From: ktakusa@falcon.cc.ukans.edu (Ken T. Takusagawa)
  108804. Date: 28 Mar 95 23:03:56 CST
  108805. Nntp-Posting-Host: falcon.cc.ukans.edu
  108806. X-Newsreader: TIN [version 1.2 PL2]
  108807. Lines: 30
  108808. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  108809.  
  108810. Hi Kermit wizards,
  108811.  
  108812.     I am a new user to kermit and have three questions:
  108813.  
  108814. 1.  How can I keep the last line of my screen from being clobbered
  108815. whenever I use the UNIX "more" command?
  108816.  
  108817. 2.  How can I get kermit to take advantage of the data compression
  108818. ability the box says it has?
  108819.    I have a 2400 baud modem;  I have tried SET SPEED 4800 or more,
  108820. but the modem refuses to respond. . . It does not give me an "OK"
  108821. after the AT command.
  108822.  
  108823. 3.  How can I improve my file transmission rate?
  108824.     As I transfer binary gzipped files:
  108825.     -   When I SET RECEIVE PACKET 800 (on my PC) the transmission 
  108826. works kinda OK
  108827.        (but only 71% efficiency -- Is this normal?)
  108828.     -   When I SET RECE PACKET 2000 the packet size fluctuates as
  108829. as the file is transmitted, and efficiency drops to 30%
  108830.     - When I SET RECEIVE PACKET 3000 or above, the transmission does
  108831. not work, it quits after "Too many retries."
  108832.  
  108833. Background:  MS-Kermit 3.14, Zoom faxmodem 2400
  108834.              C-Kermit 5a(188) Dec OSF/1 1.0
  108835.  
  108836. Thank you very much for help.
  108837.  
  108838. Ken Takusagawa
  108839. ktakusa@falcon.cc.ukans.edu
  108840.  
  108841. From news@columbia.edu Wed Mar 29 20:40:32 1995
  108842. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13024
  108843.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 29 Mar 1995 22:51:41 -0500
  108844. Received: by apakabar.cc.columbia.edu id AA08091
  108845.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 29 Mar 1995 22:51:39 -0500
  108846. Newsgroups: comp.protocols.kermit.misc
  108847. Path: news.columbia.edu!sol.ctr.columbia.edu!math.ohio-state.edu!howland.reston.ans.net!ix.netcom.com!netcom.com!englandr
  108848. From: englandr@netcom.com (William and Alice Englander)
  108849. Subject: Looking for C-Kermit 5A HPUX binary
  108850. Message-Id: <englandrD67yrK.HBv@netcom.com>
  108851. Organization: William and Alice Englander
  108852. Date: Wed, 29 Mar 1995 20:40:32 GMT
  108853. Lines: 19
  108854. Sender: englandr@netcom5.netcom.com
  108855. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  108856.  
  108857. Hello -
  108858.  
  108859. Is the binary available for C-Kermit 5A for HPUX (HP9000/857)?
  108860.  
  108861. C-Kermit 4E came with our system, but I'd like to use some of the
  108862. newer features.  I understand that the source is available, but 
  108863. I'm not well enough versed in C, etc. to know what to do with it.  
  108864. Also, we just have the C compiler that came with the system, not 
  108865. the ANSI one.
  108866.  
  108867. We'd be happy to pay for it if there's a charge.  Thanks for your
  108868. help!
  108869.  
  108870. Bill
  108871. -- 
  108872.  
  108873.     William and Alice Englander 
  108874.     englandr@netcom.com
  108875.  
  108876.  
  108877.  
  108878. From news@columbia.edu Wed Mar 29 22:43:47 1995
  108879. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20462
  108880.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 30 Mar 1995 01:00:19 -0500
  108881. Received: by apakabar.cc.columbia.edu id AA27145
  108882.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 30 Mar 1995 01:00:17 -0500
  108883. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!Germany.EU.net!ruhr.de!reswi!postmaster
  108884. From: ralf@reswi.en.open.de (Ralf E. Stranzenbach)
  108885. Newsgroups: comp.protocols.kermit.misc
  108886. Subject: PUT returns "illegal" SUCCESS
  108887. Date: 29 Mar 1995 22:43:47 GMT
  108888. Organization: News Server fuer en.open.de
  108889. Lines: 33
  108890. Distribution: world
  108891. Message-Id: <RALF.95Mar30004351@jodokus.en.open.de>
  108892. Nntp-Posting-Host: jodokus.en.open.de
  108893. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  108894.  
  108895.  
  108896. Hi,
  108897.  
  108898. i've done a s mple kermit script that does a "put" to transfer some
  108899. data files between two systems. But unluckily the PUT command returns
  108900. SUCCESS even if the other side's servers decides to discard the file
  108901. (set file collision discard).
  108902.  
  108903. How can i decide if kermit has really successfully completed the
  108904. transmisson?
  108905.  
  108906. A second (minor) problem. "BYE" and "FINISH" do return FAILURE even if
  108907. they've worked perfectly well.
  108908.  
  108909. My logout script looks like
  108910.     finish
  108911.     xif failure { -
  108912.       finish, -
  108913.       if failure finish -
  108914.     }
  108915.  
  108916. This works, but needs a loooooong time to complete.
  108917.  
  108918.     - ralf
  108919.  
  108920. -- 
  108921. Ralf E. Stranzenbach  <ralf@reswi.ruhr.de>
  108922.     at Home:    +49 2302 / 96200-3
  108923.     at Work:    +49 231 / 75892-15
  108924.  
  108925. "Ich bin auch mit gebrauchtem Denken zufrieden!"
  108926.                                         - Charlie Brown
  108927.  
  108928.  
  108929. From news@columbia.edu Wed Mar 29 03:57:16 1995
  108930. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29224
  108931.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 30 Mar 1995 05:23:03 -0500
  108932. Received: by apakabar.cc.columbia.edu id AA06532
  108933.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 30 Mar 1995 05:23:02 -0500
  108934. Path: news.columbia.edu!news.cs.columbia.edu!news.nyc.pipeline.com!newsjunkie.ans.net!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  108935. From: jrd@cc.usu.edu (Joe Doupnik)
  108936. Newsgroups: comp.protocols.kermit.misc
  108937. Subject: Re: script and automatic learning
  108938. Message-Id: <1995Mar29.095716.45989@cc.usu.edu>
  108939. Date: 29 Mar 95 09:57:16 MDT
  108940. References: <JOSEF.95Mar29134858@ltssun1>
  108941. Distribution: world
  108942. Organization: Utah State University
  108943. Lines: 19
  108944. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  108945.  
  108946. In article <JOSEF.95Mar29134858@ltssun1>, josef@ltssun1 (Josef Bigun) writes:
  108947. > I wonder if it is possible to prepare a
  108948. > script file automatically by letting
  108949. > kermit watch your actions? 
  108950. > Alternatively, is there a way to mark
  108951. > automaticaly what one types in when 
  108952. > connected to a remote host? When I log
  108953. > the session to a file, it does record everything but
  108954. > there is no way to know what has been produced by me,
  108955. > so that I can use this information, say in an emacs macro,
  108956. > to prepare a script file. I use c-kermit 5A.
  108957. -----------
  108958.     No, there isn't. Such utilities capture raw keystrokes, down
  108959. below DOS and the BIOS on DOS machines, don't even dream of this on
  108960. non-DOS machines, and stuff them into a file. Clever, and sometimes
  108961. useful. The recommended drill is to log a session, then write a short
  108962. script based upon the observed dialogue. 
  108963.     Joe D.
  108964.  
  108965. From news@columbia.edu Thu Mar 30 08:35:16 1995
  108966. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26567
  108967.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 30 Mar 1995 07:35:07 -0500
  108968. Received: by apakabar.cc.columbia.edu id AA25992
  108969.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 30 Mar 1995 07:35:04 -0500
  108970. Newsgroups: comp.protocols.kermit.misc
  108971. Path: news.columbia.edu!panix!news.mathworks.com!news.alpha.net!uwm.edu!vixen.cso.uiuc.edu!howland.reston.ans.net!pipex!warwick!bsmail!ian
  108972. From: ian@bris.ac.uk (Ian Craddock)
  108973. Subject: Kermit freezes (help!)
  108974. Message-Id: <D68vus.DuA@info.bris.ac.uk>
  108975. Sender: usenet@ncs.bris.ac.uk (Usenet news owner)
  108976. Nntp-Posting-Host: adder.ccr.bris.ac.uk
  108977. Organization: University of Bristol, England
  108978. X-Newsreader: TIN [version 1.2 PL2]
  108979. Date: Thu, 30 Mar 1995 08:35:16 GMT
  108980. Lines: 28
  108981. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  108982.  
  108983. Hi,
  108984. I've been using the latest version of ms-kermit on my PC to connect
  108985. to a remote (unix) system. I run Kermit via a .pif file from
  108986. Windows 3.1 (on a 486 PC). I have an USR Sportster 14400 int. modem.
  108987.  
  108988. In general I have no trouble connecting and once the
  108989. connection is running it is extremely reliable, however about
  108990. one time out of ten I run kermit, dial up the remote system, a
  108991. connection is established but the welcome message from the
  108992. remote system just _stops_ part way through.
  108993.  
  108994. When this happens I can't type anything in the terminal window
  108995. and I can still hear modem data if I pick the phone up. I can
  108996. give the hangup command from the kermit prompt and that works
  108997. ok, but I still cant get the modem to respond if I go back to
  108998. the terminal screen. If I quit kermit and start it again the
  108999. problem usually remains (and kermit often tells me it can't
  109000. verify the port). The only solution seems to be to quit and
  109001. restart Windows.
  109002.  
  109003. Since the problem is a bit sporadic I haven't been able to work
  109004. out whats going on but its really starting to annoy me! 
  109005. I'd be very grateful if anyone can offer any opinions/advice
  109006. on what the problem might be!
  109007.  
  109008. Thanks,
  109009. Ian.
  109010. ian.craddock@bristol.ac.uk
  109011.  
  109012. From news@columbia.edu Tue Mar 28 21:29:08 1995
  109013. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09771
  109014.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 30 Mar 1995 09:18:39 -0500
  109015. Received: by apakabar.cc.columbia.edu id AA04098
  109016.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 30 Mar 1995 09:18:36 -0500
  109017. Path: news.columbia.edu!news.cs.columbia.edu!news.boxhill.com!news.sprintlink.net!howland.reston.ans.net!news2.near.net!satisfied.apocalypse.org!news.mathworks.com!news.duke.edu!news-server.ncren.net!mars.gtcc.cc.nc.us!aje
  109018. From: aje@mars.gtcc.cc.nc.us (Andrew J. Esposito)
  109019. Newsgroups: comp.protocols.kermit.misc
  109020. Subject: kermit in limited memory environment?
  109021. Date: 28 Mar 1995 21:29:08 GMT
  109022. Organization: MCNC / NC-REN
  109023. Lines: 20
  109024. Message-Id: <3l9v34$7qq@inxs.ncren.net>
  109025. Nntp-Posting-Host: mars.gtcc.cc.nc.us
  109026. X-Newsreader: TIN [version 1.2 PL2]
  109027. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  109028.  
  109029. Please don't laugh.  We have a few PC's sitting around with 256K of RAM.
  109030. DOS takes up 54K, which leaves me with 202K.  Kermit needs 220K (pg. 10,
  109031. MS-DOS KERMIT by C.M. Gianone).  Now in this nifty little book it says
  109032. that KERMIT will run on more or less memory -- but nowhere does it
  109033. explain how this is accomplished.
  109034.  
  109035. Work has spent thousands already on their HP server (good support, but
  109036. they really need it -- quirky OS) and my "chalange" is to come up with
  109037. "miracle" solutions at "K-Mart" prices.
  109038.  
  109039. Ugh.
  109040.  
  109041. Any help will be greatly appreciated.  Thanks in advance.
  109042. --
  109043. Andrew Joesph Esposito
  109044. Systems Administrator
  109045. Western Carolina Forklift Inc.
  109046. voice: (910) 668-0959
  109047. fax:   (910) 668-3833
  109048.  
  109049.  
  109050. From news@columbia.edu Thu Mar 30 14:28:43 1995
  109051. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10310
  109052.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 30 Mar 1995 09:28:53 -0500
  109053. Received: by apakabar.cc.columbia.edu id AA05001
  109054.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 30 Mar 1995 09:28:52 -0500
  109055. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  109056. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  109057. Newsgroups: comp.protocols.kermit.misc
  109058. Subject: Re: kermit in limited memory environment?
  109059. Date: 30 Mar 1995 14:28:43 GMT
  109060. Organization: Columbia University
  109061. Lines: 44
  109062. Message-Id: <3lef6r$4s1@apakabar.cc.columbia.edu>
  109063. References: <3l9v34$7qq@inxs.ncren.net>
  109064. Nntp-Posting-Host: watsun.cc.columbia.edu
  109065. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  109066.  
  109067. In article <3l9v34$7qq@inxs.ncren.net>,
  109068. Andrew J. Esposito <aje@mars.gtcc.cc.nc.us> wrote:
  109069. >Please don't laugh.  We have a few PC's sitting around with 256K of RAM.
  109070. >DOS takes up 54K, which leaves me with 202K.  Kermit needs 220K (pg. 10,
  109071. >MS-DOS KERMIT by C.M. Gianone).  Now in this nifty little book it says
  109072. >that KERMIT will run on more or less memory -- but nowhere does it
  109073. >explain how this is accomplished.
  109074. >
  109075. MS-DOS Kermit 3.14 comes in a special "medium" edition for small systems.
  109076. The small size is accomplished by removing the network support and the
  109077. graphics terminal emulation.  On its own -- i.e. without a lot of macros
  109078. defined and screen rollback buffers allocated (hint hint) it occupies
  109079. about 200K of memory, give or take 5K -- so you might be able to squeeze
  109080. it in.
  109081.  
  109082.   Anonymous ftp to kermit.columbia.edu,
  109083.   directory kermit/archives,
  109084.   binary mode,
  109085.   file msvibm.zip.
  109086.  
  109087. If you had a previous version of MS-DOS Kermit, and you
  109088. want to install the new version over it, first make safe copies of
  109089. your MSCUSTOM.INI and DIALUPS.TXT files, as well as any other
  109090. file you might have modified.
  109091.  
  109092. Then unzip (with PKUNZIP or equivalent) using the "-d" switch to
  109093. preserve the directory structure.  Then read the top-level READ.ME
  109094. file for further installation instructions.
  109095.  
  109096. The program you want to try is KERMITE.EXE (not KERMIT.EXE).
  109097. You might need to run it without the standard MSKERMIT.INI file,
  109098. which defines a bunch of macros, which add memory:
  109099.  
  109100.   kermite -f nul
  109101.  
  109102. and you might also need to set the KERMIT environment variable to
  109103. disable rollback:
  109104.  
  109105.   SET KERMIT=ROLLBACK 0
  109106.  
  109107. If it's still too big, we can probably dig up an old pre-3.0
  109108. version that would fit.
  109109.  
  109110. - Frank
  109111.  
  109112. From news@columbia.edu Thu Mar 30 14:43:46 1995
  109113. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11206
  109114.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 30 Mar 1995 09:43:57 -0500
  109115. Received: by apakabar.cc.columbia.edu id AA07419
  109116.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 30 Mar 1995 09:43:55 -0500
  109117. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  109118. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  109119. Newsgroups: comp.protocols.kermit.misc
  109120. Subject: Re: Clobbering the Last Line
  109121. Date: 30 Mar 1995 14:43:46 GMT
  109122. Organization: Columbia University
  109123. Lines: 27
  109124. Message-Id: <3leg32$75i@apakabar.cc.columbia.edu>
  109125. References: <1995Mar28.230356.88847@kuhub.cc.ukans.edu>
  109126. Nntp-Posting-Host: watsun.cc.columbia.edu
  109127. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  109128.  
  109129. In article <1995Mar28.230356.88847@kuhub.cc.ukans.edu>,
  109130. Ken T. Takusagawa <ktakusa@falcon.cc.ukans.edu> wrote:
  109131. >1.  How can I keep the last line of my screen from being clobbered
  109132. >whenever I use the UNIX "more" command?
  109133. >
  109134. By making your UNIX screen size agree with Kermit's screen size.
  109135. By default, both are 24 and everything works right.  If you are using
  109136. some other screen size on the PC, try telling UNIX to:
  109137.  
  109138.   `eval resize`
  109139.  
  109140. >2.  How can I get kermit to take advantage of the data compression
  109141. >ability the box says it has?
  109142. >   I have a 2400 baud modem;  I have tried SET SPEED 4800 or more,
  109143. >but the modem refuses to respond. . . It does not give me an "OK"
  109144. >after the AT command.
  109145. >
  109146. Use the high-speed modem dialing script appropriate to your modem.
  109147. It will enable data compression, error correction, speed matching,
  109148. and RTS/CTS flow control.
  109149.  
  109150. >3.  How can I improve my file transmission rate?
  109151. >
  109152. Read our FAQ.  Anonymous ftp to kermit.columbia.edu, directory
  109153. kermit, file faq.txt.
  109154.  
  109155. - Frank
  109156.  
  109157. From news@columbia.edu Thu Mar 30 14:49:39 1995
  109158. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11629
  109159.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 30 Mar 1995 09:49:48 -0500
  109160. Received: by apakabar.cc.columbia.edu id AA08693
  109161.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 30 Mar 1995 09:49:45 -0500
  109162. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  109163. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  109164. Newsgroups: comp.protocols.kermit.misc
  109165. Subject: Re: Looking for C-Kermit 5A HPUX binary
  109166. Date: 30 Mar 1995 14:49:39 GMT
  109167. Organization: Columbia University
  109168. Lines: 28
  109169. Message-Id: <3lege3$8fb@apakabar.cc.columbia.edu>
  109170. References: <englandrD67yrK.HBv@netcom.com>
  109171. Nntp-Posting-Host: watsun.cc.columbia.edu
  109172. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  109173.  
  109174. In article <englandrD67yrK.HBv@netcom.com>,
  109175. William and Alice Englander <englandr@netcom.com> wrote:
  109176. >Is the binary available for C-Kermit 5A for HPUX (HP9000/857)?
  109177. >
  109178. No.  We have one for the model 700.  If somebody wants to send in
  109179. one for the 800, let me know.
  109180.  
  109181. >C-Kermit 4E came with our system, but I'd like to use some of the
  109182. >newer features.  I understand that the source is available, but 
  109183. >I'm not well enough versed in C, etc. to know what to do with it.  
  109184. >Also, we just have the C compiler that came with the system, not 
  109185. >the ANSI one.
  109186. >
  109187. You don't need to know C to build C-Kermit.
  109188.  
  109189. anonymous ftp to kermit.columbia edu, directory kermit/archives,
  109190. binary mode, file cku190.tar.Z (or .gz for gunzip).  Uncompress,
  109191. untar, and then:
  109192.  
  109193.   make hpux90
  109194.  
  109195. (assuming you are running HP-UX 9-point-something) which should
  109196. produce an executable called "wermit".  Try it out and if it's OK,
  109197. install it as "kermit" in the desired location, such as
  109198. /usr/local/bin.  Read the ckuins.doc file for additional
  109199. installation instructions.
  109200.  
  109201. - Frank
  109202.  
  109203. From news@columbia.edu Thu Mar 30 14:58:14 1995
  109204. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12451
  109205.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 30 Mar 1995 09:58:31 -0500
  109206. Received: by apakabar.cc.columbia.edu id AA10123
  109207.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 30 Mar 1995 09:58:24 -0500
  109208. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  109209. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  109210. Newsgroups: comp.protocols.kermit.misc
  109211. Subject: Re: PUT returns "illegal" SUCCESS
  109212. Date: 30 Mar 1995 14:58:14 GMT
  109213. Organization: Columbia University
  109214. Lines: 20
  109215. Message-Id: <3legu6$9rn@apakabar.cc.columbia.edu>
  109216. References: <RALF.95Mar30004351@jodokus.en.open.de>
  109217. Nntp-Posting-Host: watsun.cc.columbia.edu
  109218. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  109219.  
  109220. In article <RALF.95Mar30004351@jodokus.en.open.de>,
  109221. Ralf E. Stranzenbach <ralf@reswi.en.open.de> wrote:
  109222. >i've done a s mple kermit script that does a "put" to transfer some
  109223. >data files between two systems. But unluckily the PUT command returns
  109224. >SUCCESS even if the other side's servers decides to discard the file
  109225. >(set file collision discard).
  109226. >
  109227. This should have been fixed in version 5A(190).
  109228.  
  109229. >A second (minor) problem. "BYE" and "FINISH" do return FAILURE even if
  109230. >they've worked perfectly well.
  109231. >
  109232. It doesn't happen here, at least not with version 5A(190).
  109233.  
  109234. Please try the current version.  If you still have these problems,
  109235. send email to kermit@columbia.edu.
  109236.  
  109237. - Frank
  109238.  
  109239. x
  109240.  
  109241. From news@columbia.edu Thu Mar 30 15:05:15 1995
  109242. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13313
  109243.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 30 Mar 1995 10:05:29 -0500
  109244. Received: by apakabar.cc.columbia.edu id AA10720
  109245.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 30 Mar 1995 10:05:24 -0500
  109246. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  109247. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  109248. Newsgroups: comp.protocols.kermit.misc
  109249. Subject: Re: Kermit freezes (help!)
  109250. Date: 30 Mar 1995 15:05:15 GMT
  109251. Organization: Columbia University
  109252. Lines: 26
  109253. Message-Id: <3lehbb$aei@apakabar.cc.columbia.edu>
  109254. References: <D68vus.DuA@info.bris.ac.uk>
  109255. Nntp-Posting-Host: watsun.cc.columbia.edu
  109256. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  109257.  
  109258. In article <D68vus.DuA@info.bris.ac.uk>, Ian Craddock <ian@bris.ac.uk> wrote:
  109259. >I've been using the latest version of ms-kermit on my PC to connect
  109260. >to a remote (unix) system. I run Kermit via a .pif file from
  109261. >Windows 3.1 (on a 486 PC). I have an USR Sportster 14400 int. modem.
  109262. >In general I have no trouble connecting and once the
  109263. >connection is running it is extremely reliable, however about
  109264. >one time out of ten I run kermit, dial up the remote system, a
  109265. >connection is established but the welcome message from the
  109266. >remote system just _stops_ part way through.
  109267. >
  109268. It's next to impossible to diagnose problems like this from afar, but
  109269. the most likely cause is something to do with interrupts:
  109270.  
  109271.  . Two devices are using the same interrupt
  109272.  . Some software besides Kermit is catching the same interrupt
  109273.  . Spurious interrupts are being generated by a flaky device
  109274.  
  109275. Another likely cause is a buggy modem or motherboard.  Internal modems
  109276. almost always spell trouble.
  109277.  
  109278. Another likely cause is your Windows configuration -- COM port definitions,
  109279. memory management, etc etc.
  109280.  
  109281. Read all of the hints in your KERMIT.BWR file, particularly section 6.
  109282.  
  109283. - Frank
  109284.  
  109285. From news@columbia.edu Wed Mar 29 18:36:22 1995
  109286. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29147
  109287.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 30 Mar 1995 23:05:59 -0500
  109288. Received: by apakabar.cc.columbia.edu id AA23339
  109289.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 30 Mar 1995 23:05:57 -0500
  109290. Newsgroups: comp.protocols.kermit.misc
  109291. Path: news.columbia.edu!news.cs.columbia.edu!news.nyc.pipeline.com!news.intercon.com!panix!news.mathworks.com!news.duke.edu!news-feed-1.peachnet.edu!gatech!howland.reston.ans.net!spool.mu.edu!torn!nott!cunews!boris!rmallett
  109292. From: rmallett@boris.ccs.carleton.ca (Rick Mallett)
  109293. Subject: How to disable C-Kermit CLI
  109294. Message-Id: <D67t0M.A49@cunews.carleton.ca>
  109295. Sender: news@cunews.carleton.ca (News Administrator)
  109296. Organization: Carleton University
  109297. X-Newsreader: TIN [version 1.2 PL0]
  109298. Date: Wed, 29 Mar 1995 18:36:22 GMT
  109299. Lines: 53
  109300. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  109301.  
  109302. I'm using kermit for file upload/download in conjunction with a Unix
  109303. restricted shell text-based menu interface that should prevent all
  109304. direct access to Unix shell commands. Files are uploaded/downloaded
  109305. by way of expect scripts where the invokation is as follows:
  109306.  
  109307.   set s [system $kermit $flag -y /vol/local/chat/kermrc -C "\"pcsend $source $target, quit\""]
  109308.  
  109309. and 
  109310.  
  109311.    set s [system $kermit $flag -y /vol/local/chat/kermrc -C 'pcget $tempname $target, quit']
  109312.  
  109313. This seems to work OK except that I found the other day that users can escape
  109314. to the kermit prompt by typing several CTRL-C's during the upload operation.
  109315. At that point they can browse rthe system and perform other operations that
  109316. I do not want them to be able to do. Fortunately, we had taken other measures
  109317. to prevent users from spawning a shell, so overall system security has not yet
  109318. been compromised. 
  109319.  
  109320. The question is this. How do I prevent the users from reaching the `C-Kermit>'
  109321. prompt. I tried compiling with KFLAGS=-DNOICP, but got the following 
  109322.  
  109323.  
  109324. gcc  -o wermit ckcmai.o ckutio.o \
  109325.         ckufio.o ckcfns.o ckcfn2.o ckcfn3.o \
  109326.         ckuxla.o ckcpro.o ckucmd.o ckuus2.o \
  109327.         ckuus3.o ckuus4.o ckuus5.o ckuus6.o \
  109328.         ckuus7.o ckuusx.o ckuusy.o ckuusr.o \
  109329.         ckucon.o ckudia.o ckuscr.o ckcnet.o -lcurses -ltermcap
  109330. ld: Undefined symbol 
  109331.    _gettcs 
  109332. collect: ld returned 2 exit status
  109333. *** Error code 1
  109334. make: Fatal error: Command failed for target `wermit'
  109335. Current working directory /vol/local/kermit-5A-190/src
  109336. *** Error code 1
  109337. make: Fatal error: Command failed for target `sunos41gcc'
  109338.  
  109339.  
  109340. I did a `make clean' ahead of time so I'm guessing that no-one in the
  109341. Unix world has bothered trying this option. Even if I solve this problem,
  109342. I kind of suspect that it won't work as expected since the `-C whatever'
  109343. command probably needs the command line interpreter. Is there another
  109344. compilation flag that will give me the result I want.
  109345.  
  109346. BTW: I'm running kermit-5A-190 under SunOS4.1.3 and using gcc-2-4-5 for
  109347. compilartion.
  109348.  
  109349. ----------------------------------------------------------------------
  109350. Rick Mallett
  109351. Carleton University
  109352.  
  109353. Email address: rmallett@ccs.carleton.ca
  109354. ----------------------------------------------------------------------
  109355.  
  109356. From news@columbia.edu Wed Mar 29 11:48:58 1995
  109357. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14794
  109358.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 31 Mar 1995 05:08:16 -0500
  109359. Received: by apakabar.cc.columbia.edu id AA07256
  109360.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 31 Mar 1995 05:08:15 -0500
  109361. Path: news.columbia.edu!news.cs.columbia.edu!news.boxhill.com!news.sprintlink.net!howland.reston.ans.net!math.ohio-state.edu!jussieu.fr!univ-lyon1.fr!swidir.switch.ch!epflnews!epflnews.epfl.ch!josef
  109362. From: josef%ltssun1@apakabar.cc.columbia.edu (Josef Bigun)
  109363. Newsgroups: comp.protocols.kermit.misc
  109364. Subject: script and automatic learning
  109365. Date: 29 Mar 1995 11:48:58 GMT
  109366. Organization: Ecole Polytechnique Federale de Lausanne
  109367. Lines: 30
  109368. Distribution: world
  109369. Message-Id: <JOSEF.95Mar29134858@ltssun1>
  109370. Nntp-Posting-Host: ltssun1.epfl.ch
  109371. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  109372.  
  109373. I wonder if it is possible to prepare a
  109374. script file automatically by letting
  109375. kermit watch your actions? 
  109376.  
  109377. Alternatively, is there a way to mark
  109378. automaticaly what one types in when 
  109379. connected to a remote host? When I log
  109380. the session to a file, it does record everything but
  109381. there is no way to know what has been produced by me,
  109382. so that I can use this information, say in an emacs macro,
  109383. to prepare a script file. I use c-kermit 5A.
  109384.  
  109385.  
  109386.  
  109387. Thanks
  109388.  
  109389.  
  109390.  
  109391.  
  109392. --
  109393. =.=.=.=.=.=.=.=.=.=.=.=.=.=.=.=.=.=.=.=.=.=.=.=.=.=.=.=.=.=.=.=.
  109394. Dr. Josef Bigun
  109395. Swiss Federal Institute of Technology
  109396.  
  109397. e-mail: Josef.Bigun@epfl.ch
  109398. Tel: +41 21 693 2796
  109399. Fax: +41 21 693 7600 
  109400. Mail Address:      EPFL; DE-LTS; CH-1015 Lausanne;    Switzerland
  109401. www : http://ltswww.epfl.ch/
  109402. =.=.=.=.=.=.=.=.=.=.=.=.=.=.=.=.=.=.=.=.=.=.=.=.=.=.=.=.=.=.=.=.
  109403.  
  109404. From news@columbia.edu Fri Mar 31 07:39:02 1995
  109405. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16310
  109406.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 31 Mar 1995 07:39:02 -0500
  109407. Received: by apakabar.cc.columbia.edu id AA28175
  109408.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 31 Mar 1995 07:39:00 -0500
  109409. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!pipex!sunic!sunic.sunet.se!news.funet.fi!news.joensuu.fi!norssi9.joensuu.fi!norssiyalu
  109410. From: norssiyalu@joyl.joensuu.fi
  109411. Newsgroups: comp.protocols.kermit.misc
  109412. Subject: Looking tcp/ip-protocol
  109413. Date: Thu, 30 Mar 1995 16:45:17
  109414. Organization: University of Joensuu
  109415. Lines: 8
  109416. Message-Id: <norssiyalu.32.0010C1B3@joyl.joensuu.fi>
  109417. Nntp-Posting-Host: norssi9.joensuu.fi
  109418. X-Newsreader: Trumpet for Windows [Version 1.0 Rev A]
  109419. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  109420.  
  109421. I am looking for Kermit for Windows, that use TCP/IP-protocol. I am also 
  109422. intresting any other emulator, which can show Scandinavian letters.
  109423.  
  109424. Thanks a lot in advance
  109425.  
  109426. Anja
  109427.  
  109428.  
  109429.  
  109430. From news@columbia.edu Fri Mar 31 14:02:39 1995
  109431. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25240
  109432.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 31 Mar 1995 09:03:04 -0500
  109433. Received: by apakabar.cc.columbia.edu id AA23496
  109434.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 31 Mar 1995 09:03:00 -0500
  109435. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  109436. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  109437. Newsgroups: comp.protocols.kermit.misc
  109438. Subject: Re: How to disable C-Kermit CLI
  109439. Date: 31 Mar 1995 14:02:39 GMT
  109440. Organization: Columbia University
  109441. Lines: 37
  109442. Message-Id: <3lh21v$mni@apakabar.cc.columbia.edu>
  109443. References: <D67t0M.A49@cunews.carleton.ca>
  109444. Nntp-Posting-Host: watsun.cc.columbia.edu
  109445. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  109446.  
  109447. In article <D67t0M.A49@cunews.carleton.ca>,
  109448. Rick Mallett <rmallett@boris.carleton.ca> wrote:
  109449.  
  109450. : I'm using kermit for file upload/download in conjunction with a Unix
  109451. : restricted shell text-based menu interface that should prevent all
  109452. : direct access to Unix shell commands. Files are uploaded/downloaded by
  109453. : way of expect scripts where the invokation is as follows:
  109454. :  ...
  109455. : This seems to work OK except that I found the other day that users can
  109456. : escape to the kermit prompt by typing several CTRL-C's during the upload
  109457. : operation.
  109458. : ...
  109459. : The question is this. How do I prevent the users from reaching the
  109460. : `C-Kermit>' prompt. I tried compiling with KFLAGS=-DNOICP, but got the
  109461. : following:
  109462. : ld: Undefined symbol 
  109463. :    _gettcs 
  109464. That would be a bug -- I'll fix it.
  109465.  
  109466. : I did a `make clean' ahead of time so I'm guessing that no-one in the
  109467. : Unix world has bothered trying this option. Even if I solve this
  109468. : problem, I kind of suspect that it won't work as expected since the `-C
  109469. : whatever' command probably needs the command line interpreter.
  109470. That's correct.
  109471.  
  109472. : Is there another compilation flag that will give me the result I want.
  109473. Try -DNOPUSH.  This should prevent any type of shell access from the
  109474. C-Kermit prompt.  Or try -DNOCTRLC.  This should make Ctrl-C (SIGINT)
  109475. exit the program rather than returning to the prompt.
  109476.  
  109477. Read about them in ckccfg.doc.
  109478.  
  109479. - Frank
  109480.  
  109481. From news@columbia.edu Fri Mar 31 14:08:08 1995
  109482. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25504
  109483.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 31 Mar 1995 09:08:20 -0500
  109484. Received: by apakabar.cc.columbia.edu id AA26413
  109485.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 31 Mar 1995 09:08:18 -0500
  109486. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  109487. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  109488. Newsgroups: comp.protocols.kermit.misc
  109489. Subject: Re: Looking tcp/ip-protocol
  109490. Date: 31 Mar 1995 14:08:08 GMT
  109491. Organization: Columbia University
  109492. Lines: 61
  109493. Message-Id: <3lh2c8$pnj@apakabar.cc.columbia.edu>
  109494. References: <norssiyalu.32.0010C1B3@joyl.joensuu.fi>
  109495. Nntp-Posting-Host: watsun.cc.columbia.edu
  109496. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  109497.  
  109498. In article <norssiyalu.32.0010C1B3@joyl.joensuu.fi>,
  109499.  <norssiyalu@joyl.joensuu.fi> wrote:
  109500. >I am looking for Kermit for Windows, that use TCP/IP-protocol. I am also 
  109501. >intresting any other emulator, which can show Scandinavian letters.
  109502. >
  109503. MS-DOS Kermit 3.14 does all of this.  It has a built-in TCP/IP stack that
  109504. works in Windows over packet drivers, and it supports display of Finnish
  109505. text during terminal emulation when the host is using the 7-bit Finnish
  109506. ISO 646 character set, or 8-bit ISO 8859-1 Latin Alphabet 1, or any of about
  109507. a dozen proprietary character sets.  Furthermore, it also converts the
  109508. special characters of Finnish (and many other languages) between the host
  109509. character-set and your IBM PC code page as part of text file transfer.
  109510. Read Chapter 13, International Character Sets, of the manual, "Using MS-DOS
  109511. Kermit" for complete details.
  109512.  
  109513.   Anonymous ftp to kermit.columbia.edu,
  109514.   directory kermit/archives,
  109515.   binary mode,
  109516.   file msvibm.zip.
  109517.  
  109518. If you had a previous version of MS-DOS Kermit, and you
  109519. want to install the new version over it, first make safe copies of
  109520. your MSCUSTOM.INI and DIALUPS.TXT files, as well as any other
  109521. file you might have modified.
  109522.  
  109523. Then unzip (with PKUNZIP or equivalent) using the "-d" switch to
  109524. preserve the directory structure.  Then read the top-level READ.ME
  109525. file for further installation instructions.
  109526.  
  109527. For complete, step-by-step instructions on using MS-DOS Kermit, please
  109528. purchase the manual:
  109529.  
  109530.   Christine M. Gianone, "Using MS-DOS Kermit", Second Edition, Digital
  109531.   Press / Butterworth-Heinemann, Woburn, MA, 1992, 345 pages, ISBN
  109532.   1-55558-082-3.  Packaged with version 3.13 of MS-DOS Kermit for the
  109533.   IBM PC, PS/2, and compatibles on a 3.5-inch diskette.
  109534.  
  109535.   US single-copy price: $36.95; quantity discounts available.  Available
  109536.   in computer bookstores or directly from:
  109537.  
  109538.     Kermit Development and Distribution
  109539.     Columbia University Academic Information Systems
  109540.     612 West 115th Street
  109541.     New York, NY  10025  USA
  109542.     Telephone: (USA) 212 854-3703
  109543.  
  109544.   Domestic and overseas orders accepted.  Price: $36.95 (US, Canada, and
  109545.   Mexico), $47 elsewhere.  Orders may be paid by MasterCard or Visa, or
  109546.   prepaid by check in US dollars.  Add $35 bank fee for checks not drawn
  109547.   on a US bank.  Price includes shipping.  Do not include sales tax.
  109548.  
  109549.   You can also order by phone from the publisher, Digital Press /
  109550.   Butterworth-Heinemann, with MasterCard, Visa, or American Express:
  109551.  
  109552.     +1 800 366-2665 (Woburn, Massachusetts office for USA and Canada)
  109553.     +1 800 665-1148 (Logan Bros, Winnepeg, Manitoba office for Canada)
  109554.     +44 993 58521   (Rushden, England office for Europe)
  109555.     +61 2 372-5511  (Chatswood, NSW office for Australia & New Zealand)
  109556.     +65 220-3684    (Singapore office for Asia)
  109557.  
  109558. - Frank
  109559.  
  109560. From news@columbia.edu Thu Mar 30 01:34:46 1995
  109561. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27554
  109562.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 31 Mar 1995 09:40:20 -0500
  109563. Received: by apakabar.cc.columbia.edu id AA09087
  109564.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 31 Mar 1995 09:40:16 -0500
  109565. Path: news.columbia.edu!news.cs.columbia.edu!news.nyc.pipeline.com!newsjunkie.ans.net!howland.reston.ans.net!news.sprintlink.net!uunet!in1.uu.net!fonorola!infoshare!passport.ca!peter
  109566. From: peter@passport.ca (Peter Renzland)
  109567. Newsgroups: comp.protocols.kermit.misc
  109568. Subject: Trivial login script fails -- help
  109569. Date: 30 Mar 1995 01:34:46 GMT
  109570. Organization: Passport Online
  109571. Lines: 26
  109572. Message-Id: <3ld1rm$5qb@vatican.passport.ca>
  109573. Nntp-Posting-Host: diplomatic.passport.ca
  109574. X-Newsreader: NN version 6.5.0 #2 (NOV)
  109575. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  109576.  
  109577. ...
  109578. input 20 login:
  109579. output peter\13
  109580. input 10 sword
  109581. output xyzzy\13
  109582. ...
  109583.  
  109584. I see the login prompt, then the script says "peter",
  109585. then _nothing_ (the script swallows the Password: prompt)
  109586.  
  109587. Then the script times out, sends the password, and *now* I see
  109588. the Pasword: prompt.
  109589.  
  109590.  
  109591. MS Kermit 3.14 PL 3
  109592. SCO UNIX
  109593.  
  109594. Oh, this works fine on a Sun (Solaris 2.4)
  109595.  
  109596. Thanks for any help ....
  109597.  
  109598.  
  109599. -- 
  109600. Peter Renzland  Peter@Passport.Ca  416 323-1300  Je danse donc je suis  EntP
  109601. Toronto  Traditional Social  Dance Calendar:   finger/mail dance@passport.ca
  109602.                            http://www.passport.ca/~dance
  109603.  
  109604. From news@columbia.edu Fri Mar 31 17:26:20 1995
  109605. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09789
  109606.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 31 Mar 1995 12:26:31 -0500
  109607. Received: by apakabar.cc.columbia.edu id AA05024
  109608.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 31 Mar 1995 12:26:26 -0500
  109609. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  109610. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  109611. Newsgroups: comp.protocols.kermit.misc
  109612. Subject: Re: Trivial login script fails -- help
  109613. Date: 31 Mar 1995 17:26:20 GMT
  109614. Organization: Columbia University
  109615. Lines: 28
  109616. Message-Id: <3lhdvs$4sh@apakabar.cc.columbia.edu>
  109617. References: <3ld1rm$5qb@vatican.passport.ca>
  109618. Nntp-Posting-Host: watsun.cc.columbia.edu
  109619. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  109620.  
  109621. In article <3ld1rm$5qb@vatican.passport.ca>,
  109622. Peter Renzland <peter@passport.ca> wrote:
  109623. >...
  109624. >input 20 login:
  109625. >output peter\13
  109626. >input 10 sword
  109627. >output xyzzy\13
  109628. >...
  109629. >
  109630. >I see the login prompt, then the script says "peter",
  109631. >then _nothing_ (the script swallows the Password: prompt)
  109632. >
  109633. Try doing it like this:
  109634.  
  109635. input 20 {login: }
  109636. if fail stop 1 No login prompt
  109637. output peter\13
  109638. input 10 {Password: }
  109639. if fail stop 1 No Password prompt
  109640. pause 1
  109641. output xyzzy\13
  109642.  
  109643. It's always good to have error handling.  The other change is to 
  109644. INPUT the *entire* prompt.  UNIX login does not permit typeahead, and
  109645. it is likely that your script started sending the password too soon.
  109646. (The "pause 1" might not be necessary, but better safe than sorry.)
  109647.  
  109648. - Frank
  109649.  
  109650. From news@columbia.edu Thu Mar 30 05:04:57 1995
  109651. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12885
  109652.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 31 Mar 1995 12:51:31 -0500
  109653. Received: by apakabar.cc.columbia.edu id AA07795
  109654.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 31 Mar 1995 12:51:29 -0500
  109655. Path: news.columbia.edu!news.cs.columbia.edu!news.nyc.pipeline.com!news.intercon.com!panix!news.mathworks.com!news.alpha.net!uwm.edu!cs.utexas.edu!swrinde!emory!news-feed-1.peachnet.edu!news.gasou.edu!gsu!kjb
  109656. From: kjb%gsu@apakabar.cc.columbia.edu (Keith Barrs)
  109657. Newsgroups: comp.protocols.kermit.misc
  109658. Subject: frame size?
  109659. Date: 30 Mar 1995 05:04:57 GMT
  109660. Organization: Georgia Southern University 
  109661. Lines: 2
  109662. Message-Id: <3lde5p$lt4@informer.cc.GaSoU.EDU>
  109663. Nntp-Posting-Host: gsu.cs.gasou.edu
  109664. X-Newsreader: TIN [version 1.2 PL0]
  109665. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  109666.  
  109667. looking for kermit protocol for the macintosh
  109668.  
  109669.  
  109670. From news@columbia.edu Fri Mar 31 19:15:21 1995
  109671. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28847
  109672.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 31 Mar 1995 16:21:16 -0500
  109673. Received: by apakabar.cc.columbia.edu id AA28660
  109674.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 31 Mar 1995 16:21:14 -0500
  109675. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!spool.mu.edu!usenet.eel.ufl.edu!news.mathworks.com!uunet!fonorola!infoshare!passport.ca!peter
  109676. From: peter@passport.ca (Peter Renzland)
  109677. Newsgroups: comp.protocols.kermit.misc
  109678. Subject: MS KERMIT as host?  with password?
  109679. Date: 31 Mar 1995 19:15:21 GMT
  109680. Organization: Passport Online
  109681. Lines: 17
  109682. Message-Id: <3lhkc9$m8h@vatican.passport.ca>
  109683. Nntp-Posting-Host: diplomatic.passport.ca
  109684. X-Newsreader: NN version 6.5.0 #2 (NOV)
  109685. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  109686.  
  109687. O.K.  I have both editions of Using MS DOS Kermit.  
  109688. set server login USERNAME PASSWORD
  109689. server
  109690.  
  109691. should work, right?
  109692.  
  109693. but when i call from a Unix host i don't get any indication that
  109694. a username and pasword is required.  i just can't get anywhere.
  109695.  
  109696. works without security.  (i.e. if i leave out the first line above)
  109697.  
  109698.  
  109699. should it work?  (i.e. is it implemented in msdos kermit?)
  109700. and from which ckermit version on?  thanks.
  109701.  
  109702. -- 
  109703. Peter
  109704.  
  109705. From news@columbia.edu Tue Mar 28 16:09:45 1995
  109706. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09975
  109707.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 31 Mar 1995 19:33:02 -0500
  109708. Received: by apakabar.cc.columbia.edu id AA14515
  109709.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 31 Mar 1995 19:32:57 -0500
  109710. Date: 28 Mar 1995 16:09:45 GMT
  109711. Path: news.columbia.edu!panix!news.mathworks.com!news.alpha.net!uwm.edu!spool.mu.edu!howland.reston.ans.net!cs.utexas.edu!news.tamu.edu!news.utdallas.edu!corpgate!bcarh8ac.bnr.ca!cyberspam!not-for-mail
  109712. From: randys@awinc.com (Randal N. Streilein)
  109713. Newsgroups: comp.protocols.kermit.misc
  109714. Message-Id: <cancel.3l95np$3jj@kelowna.awinc.com>
  109715. Control: cancel <3l95np$3jj@kelowna.awinc.com>
  109716. Subject: cmsg cancel <3l95np$3jj@kelowna.awinc.com>
  109717. Approved: clewis@ferret.ocunix.on.ca
  109718. Lines: 1
  109719. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  109720.  
  109721. Spam cancelled by clewis@ferret.ocunix.on.ca
  109722.  
  109723. From news@columbia.edu Fri Mar 31 11:14:19 1995
  109724. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12708
  109725.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 31 Mar 1995 20:20:41 -0500
  109726. Received: by apakabar.cc.columbia.edu id AA17776
  109727.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 31 Mar 1995 20:20:39 -0500
  109728. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  109729. From: jrd@cc.usu.edu (Joe Doupnik)
  109730. Newsgroups: comp.protocols.kermit.misc
  109731. Subject: Re: Looking tcp/ip-protocol
  109732. Message-Id: <1995Mar31.171419.46228@cc.usu.edu>
  109733. Date: 31 Mar 95 17:14:19 MDT
  109734. References: <norssiyalu.32.0010C1B3@joyl.joensuu.fi>
  109735. Organization: Utah State University
  109736. Lines: 8
  109737. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  109738.  
  109739. In article <norssiyalu.32.0010C1B3@joyl.joensuu.fi>, norssiyalu@joyl.joensuu.fi writes:
  109740. > I am looking for Kermit for Windows, that use TCP/IP-protocol. I am also 
  109741. > intresting any other emulator, which can show Scandinavian letters.
  109742. -----------
  109743.     You have it. MS-DOS Kermit v3.14. It runs fine in Windows, has
  109744. it's own internal TCP/IP stack, does all but Norse glyphs. It's a DOS
  109745. program with Windows-smarts.
  109746.     Joe D.
  109747.  
  109748. From news@columbia.edu Sat Apr  1 01:39:00 1995
  109749. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13638
  109750.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 31 Mar 1995 20:37:41 -0500
  109751. Received: by apakabar.cc.columbia.edu id AA18831
  109752.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 31 Mar 1995 20:37:40 -0500
  109753. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!pipex!sunic!sunic.sunet.se!newsfeed.tip.net!news.bahnhof.se!news.bahnhof.se!not-for-mail
  109754. From: marvi@bahnhof.se (Markus Hdrnvi)
  109755. Newsgroups: comp.protocols.kermit.misc
  109756. Subject: starting SLIP from Ckermit (OS/2 beta)
  109757. Date: 1 Apr 1995 02:39:00 +0100
  109758. Organization: Bahnhof Internet Access
  109759. Lines: 6
  109760. Message-Id: <3liark$asl@sunny.bahnhof.se>
  109761. Nntp-Posting-Host: sunny.bahnhof.se
  109762. X-Newsreader: TIN [version 1.2 PL2]
  109763. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  109764.  
  109765. Is anyone using this feature in the new 191 beta release yet?
  109766. I would like to se an example-script if you have one.
  109767.  
  109768. //thanks in advance!
  109769. Markus
  109770.  
  109771.  
  109772. From news@columbia.edu Sat Apr  1 17:07:23 1995
  109773. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22578
  109774.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 1 Apr 1995 12:25:52 -0500
  109775. Received: by apakabar.cc.columbia.edu id AA21815
  109776.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 1 Apr 1995 12:25:21 -0500
  109777. Path: news.columbia.edu!panix!news.mathworks.com!news.alpha.net!uwm.edu!lll-winken.llnl.gov!enews.sgi.com!decwrl!purdue!mozo.cc.purdue.edu!nettle.ecn.purdue.edu!laird
  109778. From: laird@nettle.ecn.purdue.edu (Kyler Laird)
  109779. Newsgroups: comp.protocols.kermit.misc
  109780. Subject: Re: starting SLIP from Ckermit (OS/2 beta)
  109781. Date: 1 Apr 1995 17:07:23 GMT
  109782. Organization: Purdue University
  109783. Lines: 125
  109784. Message-Id: <3lk18b$dih@mozo.cc.purdue.edu>
  109785. References: <3liark$asl@sunny.bahnhof.se>
  109786. Nntp-Posting-Host: nettle.ecn.purdue.edu
  109787. X-Newsreader: NN version 6.5.0 (NOV)
  109788. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  109789.  
  109790. >Is anyone using this feature in the new 191 beta release yet?
  109791. >I would like to se an example-script if you have one.
  109792.  
  109793. ------
  109794.  
  109795. ; PUCC_SLIP.KRM
  109796. ; Use this script to SL/IP into PUCC from OS/2 Warp
  109797. ;    using C-Kermit 5A(191)
  109798.  
  109799. ;--------------------
  109800. ;variable definitions
  109801. ;--------------------
  109802.  
  109803. ;serial port number
  109804. def \%o 1
  109805.  
  109806. ;machine name
  109807. ;def \%m coastal.ecn.purdue.edu
  109808. def \%m nettle.ecn.purdue.edu
  109809.  
  109810. ;machine address (use "tia -address" to find out)
  109811. ;def \%a 128.46.161.160
  109812. def \%a 128.46.161.85
  109813.  
  109814. ;login
  109815. def \%l laird
  109816.  
  109817. ;password
  109818. def \%p secret
  109819.  
  109820. ;shell prompt
  109821. def \%r %
  109822.  
  109823. ;---------------------------------
  109824.  
  109825. ;set to bogus line so that SLIP.EXE can start
  109826. set line com0
  109827.  
  109828. ;start SLIP.EXE
  109829. !start "SL/IP into PUCC" /n /min slip -com\%o -ifconfig 192.0.2.1 \%a +defaultroute -p2 -rtscts
  109830.  
  109831. ;wait for SL/IP connection to initialize
  109832. !slipwait
  109833.  
  109834. ;"share" port with SLIP.EXE
  109835. set line slipcom\%o
  109836.  
  109837. set speed 57600
  109838.  
  109839. ;call PUCC
  109840. :DIAL
  109841.  
  109842. dial 496-1440
  109843. if error goto DIAL
  109844.  
  109845. ;get initial prompt
  109846. output \013
  109847. input 5 username>
  109848. if error goto DIAL
  109849.  
  109850. ;send bogus userid 'cause it doesn't matter
  109851. output os2user\013
  109852.  
  109853. ;get annex prompt
  109854. input 10 >
  109855. if error goto DIAL
  109856.  
  109857. ;telnet to machine
  109858. output telnet \%m\013
  109859.  
  109860. ;perform login sequence
  109861. unixlogin \%l \%p \%r
  109862. if error goto DIAL
  109863.  
  109864. ;output BREAK to get back to annex prompt
  109865. output \b
  109866.  
  109867. ;get annex prompt
  109868. input 5 >
  109869. if error goto DIAL
  109870.  
  109871. ;get a clean connection
  109872. output set session passall\013
  109873.  
  109874. ;get annex prompt
  109875. input 5 >
  109876. if error goto DIAL
  109877.  
  109878. ;return to telnet session
  109879. output fg\013
  109880.  
  109881. ;get another shell prompt
  109882. output \013
  109883. input 5 \%r
  109884. if error goto DIAL
  109885.  
  109886. ;turn off messages and start TIA
  109887. output mesg n;tia\013
  109888.  
  109889. ;get TIA acknowledgement
  109890. input 10 eady
  109891. if error goto DIAL
  109892.  
  109893. ;release shared serial port by setting to bogus port
  109894. set line com0
  109895.  
  109896. ;*Note that you could just put "quit" here.
  109897. ; The SL/IP stuff is all going on in another session.
  109898. ; The following is just because I usually want to run
  109899. ;    telnet.
  109900.  
  109901. ; You could also add lines like
  109902. ;!start EXPLORE.EXE
  109903. ;     so that TCP/IP applications (like Web Explorer) will
  109904. ;     automatically start after connection.
  109905.  
  109906. ;connect to machine via TCP/IP (telnet)
  109907. net tcp/ip \%m
  109908.  
  109909. ;login to machine (again)
  109910. unixlogin \%l \%p \%r
  109911.  
  109912. ;present terminal emulation screen
  109913. connect
  109914.  
  109915.  
  109916. From news@columbia.edu Sat Apr  1 19:28:41 1995
  109917. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29531
  109918.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 1 Apr 1995 14:28:49 -0500
  109919. Received: by apakabar.cc.columbia.edu id AA00953
  109920.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 1 Apr 1995 14:28:48 -0500
  109921. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  109922. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  109923. Newsgroups: comp.protocols.kermit.misc
  109924. Subject: Re: Looking tcp/ip-protocol
  109925. Date: 1 Apr 1995 19:28:41 GMT
  109926. Organization: Columbia University
  109927. Lines: 27
  109928. Message-Id: <3lk9h9$tj@apakabar.cc.columbia.edu>
  109929. References: <norssiyalu.32.0010C1B3@joyl.joensuu.fi> <1995Mar31.171419.46228@cc.usu.edu>
  109930. Nntp-Posting-Host: watsun.cc.columbia.edu
  109931. Cc: 
  109932.  
  109933. In article <1995Mar31.171419.46228@cc.usu.edu>,
  109934. Joe Doupnik <jrd@cc.usu.edu> wrote:
  109935. >In article <norssiyalu.32.0010C1B3@joyl.joensuu.fi>,
  109936. >norssiyalu@joyl.joensuu.fi writes:
  109937. >> I am looking for Kermit for Windows, that use TCP/IP-protocol. I am also 
  109938. >> intresting any other emulator, which can show Scandinavian letters.
  109939. >-----------
  109940. >You have it. MS-DOS Kermit v3.14. It runs fine in Windows, has
  109941. >it's own internal TCP/IP stack, does all but Norse glyphs.
  109942. >                                         ^^^
  109943. Oops, I think Joe meant "does all Norse glyphs" -- all the accented Roman
  109944. letters, plus Thorn and Eth for Iceland(*) (and Old Norse).  We had Thorn
  109945. in Old and Middle English too, as anyone who ever had to read "Sir Gawain
  109946. and the Green Knight" in the original will attest.
  109947.  
  109948. Kermit does not, however, as yet handle Runes, but I am pleased to announce
  109949. that a computer encoding for the Futhark has been developed and as soon as
  109950. somebody makes a code page (or PC font) for it, Kermit will be ready :-)
  109951.  
  109952. OK, so it's April 1st and you think I'm kidding?  Point your Web browser
  109953. at URL:
  109954.  
  109955.   http://www.columbia.edu/kermit/runes.html
  109956.  
  109957. - Frank
  109958.  
  109959. (*) Disclaimer: Iceland does not consider itself part of Scandinavia.
  109960.  
  109961. From news@columbia.edu Fri Mar 31 16:44:06 1995
  109962. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06180
  109963.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 1 Apr 1995 16:44:39 -0500
  109964. Received: by apakabar.cc.columbia.edu id AA09670
  109965.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 1 Apr 1995 16:44:36 -0500
  109966. Path: news.columbia.edu!spcuna!uunet!news.mathworks.com!news.alpha.net!uwm.edu!spool.mu.edu!howland.reston.ans.net!news.sprintlink.net!mhv.net!csbh!scvikevich
  109967. From: scvikevich@mhv.net ()
  109968. Newsgroups: comp.protocols.kermit.misc
  109969. Subject: Bad Press ??
  109970. Date: 31 Mar 1995 16:44:06 GMT
  109971. Organization: MHVNet, the Mid Hudson Valley's Internet connection
  109972. Lines: 36
  109973. Message-Id: <3lhbgm$e8i@over.mhv.net>
  109974. Nntp-Posting-Host: csbh.mhv.net
  109975. Summary: bad press
  109976. Keywords: kermit, zmodem
  109977. X-Newsreader: TIN [version 1.2 PL2]
  109978. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  109979.  
  109980. May be Columbia U. should sue these publications for misrepresentation.
  109981. here are examples: published in "net.speak" (Hayden Books), 1994
  109982. author: Tom Fahey, ISBN: 1-56830-095-6
  109983.  
  109984.     Kermit - A terminal emulation Program and file transfer protocol
  109985.              developed at Columbia University. Kermit is the slowest
  109986.              file transfer protocol, but useful when sending 7-bit
  109987.              characters. (Naturally, despite its lackluster transfer
  109988.              speed--or perhaps because of it--Kermit is a favorite
  109989.              of many educational institutions. Its status as freeware
  109990.              has also endeared it to thrifty educators everywhere.)
  109991.              Yes, it's named in honor of Sesame Street's Kermit the
  109992.              Frog.
  109993.  
  109994.     ZMODEM - The latest and fastest file transfer protocol. ZMODEM
  109995.              recovers from transmission errors more effectively than
  109996.              the other popular protocols. In addition because ZMODEM
  109997.              operates in batch mode, you can download or upload several
  109998.              several files at a time. Finally, if a transmission is
  109999.              inerrupted halfway during a file transfer, you can log
  110000.              and pick up the file transfer where it was cut off, only
  110001.              downloading the "last" half. With other protocols, an
  110002.              interruption means downloading the entire file again.
  110003.  
  110004.    I would be curious to hear responses from the kermit user
  110005.    community.
  110006.  
  110007.    Serge
  110008.  ...........................................................................
  110009.  . Serge Cvikevich     e-mail: scvikevich@mhv.net    TEL/FAX: 914-463-3035 .
  110010.  .                                                                         .
  110011.  .              Microanalysis Hardware & Software Support                  .
  110012.  .                        47 Clover Hill Drive                             .
  110013.  .                     Poughkeepsie, NY 12603-3201                         .
  110014.  ...........................................................................
  110015.  
  110016.  
  110017. From news@columbia.edu Sat Apr  1 23:20:31 1995
  110018. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18405
  110019.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 1 Apr 1995 22:10:32 -0500
  110020. Received: by apakabar.cc.columbia.edu id AA29543
  110021.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 1 Apr 1995 22:10:28 -0500
  110022. Path: news.columbia.edu!panix!news.mathworks.com!hookup!lll-winken.llnl.gov!uwm.edu!math.ohio-state.edu!howland.reston.ans.net!newsjunkie.ans.net!news0.cybernetics.net!usenet
  110023. From: mbaucom@cybernetics.net (Milton A. Baucom)
  110024. Newsgroups: comp.protocols.kermit.misc
  110025. Subject: Getting result code from external command?
  110026. Date: Sat, 01 Apr 1995 18:20:31 -0500 (EST)
  110027. Organization: Cybernetx, Inc.
  110028. Lines: 10
  110029. Message-Id: <3lkn74$inq@news0.cybernetics.net>
  110030. Nntp-Posting-Host: catfish.cybernetics.net
  110031. X-Newsreader: Forte Free Agent v0.38
  110032. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  110033.  
  110034. In Kermit 5A(190), how do I test the return code of an external command?
  110035. i.e.  If I shell out to execute some script, I'd like to be able to see if
  110036. it worked and send some sort of message...
  110037.  
  110038. Thanks
  110039. MAB
  110040.  
  110041. ----------------------------------------------------------------------------
  110042. Milton A. Baucom - WA4NES                          | mbaucom@cybernetics.net
  110043.  
  110044.  
  110045. From news@columbia.edu Fri Mar 31 16:07:15 1995
  110046. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05888
  110047.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Apr 1995 05:32:51 -0400
  110048. Received: by apakabar.cc.columbia.edu id AA17058
  110049.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Apr 1995 05:32:49 -0400
  110050. Path: news.columbia.edu!sol.ctr.columbia.edu!ucsnews!newshub.sdsu.edu!nic-nac.CSU.net!usc!howland.reston.ans.net!EU.net!Belgium.EU.net!god.bel.alcatel.be!btmp2h!mupp
  110051. From: mupp@btmp2h.be (Manindar Uppal SH37 9612)
  110052. Newsgroups: comp.protocols.kermit.misc
  110053. Subject: Kermit FAQ ?
  110054. Date: 31 Mar 1995 16:07:15 GMT
  110055. Organization: Alcatel Bell Telephone, Antwerpen, Belgium
  110056. Lines: 6
  110057. Message-Id: <1995Mar31.180447@btmp2h.be>
  110058. Reply-To: mupp@btmp2h.be (Manindar Uppal SH37 9612)
  110059. Nntp-Posting-Host: btmp2h.sh.bel.alcatel.be
  110060. Keywords: Kermit
  110061. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  110062.  
  110063.  
  110064. Can anyone direct me to a kermit FAQ ?
  110065.  
  110066. TIA.
  110067.  
  110068.     M.Uppal
  110069.  
  110070. From news@columbia.edu Sat Apr  1 20:10:24 1995
  110071. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06256
  110072.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Apr 1995 05:48:03 -0400
  110073. Received: by apakabar.cc.columbia.edu id AA17431
  110074.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Apr 1995 05:48:02 -0400
  110075. Path: news.columbia.edu!panix!news.mathworks.com!news.alpha.net!uwm.edu!vixen.cso.uiuc.edu!howland.reston.ans.net!Germany.EU.net!nntp.gmd.de!nntp.darmstadt.gmd.de!news.th-darmstadt.de!fauern!cs.tu-berlin.de!byteshif
  110076. From: byteshif@cs.tu-berlin.de (byteshifter)
  110077. Newsgroups: comp.protocols.kermit.misc
  110078. Subject: how to prevent kermit from converting filenames ?
  110079. Date: 01 Apr 1995 20:10:24 GMT
  110080. Organization: TU Berlin Fachbereich Informatik
  110081. Lines: 14
  110082. Message-Id: <3lk8f2$cul@news.cs.tu-berlin.de>
  110083. Nntp-Posting-Host: onyx.cs.tu-berlin.de
  110084. Mime-Version: 1.0
  110085. Content-Type: text/plain; charset=iso-8859-1
  110086. Content-Transfer-Encoding: 8bit
  110087. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  110088.  
  110089.  
  110090. when I transfer .emacs it's converted to x.emacs, filenames with more
  110091. than one point in the name got the other points subtituted into x's
  110092. how can I convince kermit to keep to filename ?
  110093. -- 
  110094.  
  110095. ------------------------------------------------------------------------------
  110096. Michael Agbaglo           | 
  110097. byteshif@cs.tu-berlin.de   |      (this field intentionally left blank)
  110098. -- 
  110099.  
  110100. ------------------------------------------------------------------------------
  110101. Michael Agbaglo           | 
  110102. byteshif@cs.tu-berlin.de   |      (this field intentionally left blank)
  110103.  
  110104. From news@columbia.edu Tue Mar 28 13:34:40 1995
  110105. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06462
  110106.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Apr 1995 05:56:14 -0400
  110107. Received: by apakabar.cc.columbia.edu id AA17740
  110108.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Apr 1995 05:56:11 -0400
  110109. Path: news.columbia.edu!panix!news.mathworks.com!news.duke.edu!convex!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  110110. From: jrd@cc.usu.edu (Joe Doupnik)
  110111. Newsgroups: comp.protocols.kermit.misc
  110112. Subject: Re: kermit in limited memory environment?
  110113. Message-Id: <1995Mar28.193440.45947@cc.usu.edu>
  110114. Date: 28 Mar 95 19:34:40 MDT
  110115. References: <3l9v34$7qq@inxs.ncren.net>
  110116. Organization: Utah State University
  110117. Lines: 33
  110118. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  110119.  
  110120. In article <3l9v34$7qq@inxs.ncren.net>, aje@mars.gtcc.cc.nc.us (Andrew J. Esposito) writes:
  110121. > Please don't laugh.  We have a few PC's sitting around with 256K of RAM.
  110122. > DOS takes up 54K, which leaves me with 202K.  Kermit needs 220K (pg. 10,
  110123. > MS-DOS KERMIT by C.M. Gianone).  Now in this nifty little book it says
  110124. > that KERMIT will run on more or less memory -- but nowhere does it
  110125. > explain how this is accomplished.
  110126. > Work has spent thousands already on their HP server (good support, but
  110127. > they really need it -- quirky OS) and my "chalange" is to come up with
  110128. > "miracle" solutions at "K-Mart" prices.
  110129. > Ugh.
  110130. > Any help will be greatly appreciated.  Thanks in advance.
  110131. > --
  110132. > Andrew Joesph Esposito
  110133. > Systems Administrator
  110134. > Western Carolina Forklift Inc.
  110135. > voice: (910) 668-0959
  110136. > fax:   (910) 668-3833
  110137. ---------------
  110138.     Programs invariably grow larger with time, some spectacularly so,
  110139. alas. MS-DOS Kermit is no exception to the rule but not to the second part.
  110140. Depending on your needs version 3.14 is offered in three sizes: regular full
  110141. featured, medium-sized MSK which removes TCP/IP and other networking support 
  110142. and graphics, and BBS sized MSK Lite. The last also omits terminal emulation 
  110143. and is a file mover rather than that plus terminal emulation.
  110144.     I suspect the medium size might be a good choice since the XT's 
  110145. likely have no networking.
  110146.     Please do inspect these variations for the best match at your site.
  110147. Anonymous ftp to kermit.columbia.edu, cd kermit/bin, binary file msvibm.zip
  110148. has them all. 
  110149.     Joe D.
  110150.  
  110151. From news@columbia.edu Sun Apr  2 12:48:04 1995
  110152. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12818
  110153.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Apr 1995 08:48:11 -0400
  110154. Received: by apakabar.cc.columbia.edu id AA10079
  110155.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Apr 1995 08:48:09 -0400
  110156. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  110157. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  110158. Newsgroups: comp.protocols.kermit.misc
  110159. Subject: Re: how to prevent kermit from converting filenames ?
  110160. Date: 2 Apr 1995 12:48:04 GMT
  110161. Organization: Columbia University
  110162. Lines: 13
  110163. Message-Id: <3lm6e4$9qp@apakabar.cc.columbia.edu>
  110164. References: <3lk8f2$cul@news.cs.tu-berlin.de>
  110165. Nntp-Posting-Host: watsun.cc.columbia.edu
  110166. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  110167.  
  110168. In article <3lk8f2$cul@news.cs.tu-berlin.de>,
  110169. byteshifter <byteshif@cs.tu-berlin.de> wrote:
  110170. >
  110171. >when I transfer .emacs it's converted to x.emacs, filenames with more
  110172. >than one point in the name got the other points subtituted into x's
  110173. >how can I convince kermit to keep to filename ?
  110174.  
  110175. In C-Kermit the command is SET FILENAME LITERAL.
  110176.  
  110177. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  110178. "C-Kermit: available on more platforms than any other communications software."
  110179. "Kermit FTP: sending files whenever and wherever they are needed."
  110180.   OS/2 version 5A(190): ftp://kermit.columbia.edu/kermit/archives/cko190.zip 
  110181.  
  110182. From news@columbia.edu Sun Apr  2 18:29:58 1995
  110183. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26178
  110184.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Apr 1995 14:30:18 -0400
  110185. Received: by apakabar.cc.columbia.edu id AA04288
  110186.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Apr 1995 14:30:13 -0400
  110187. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  110188. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  110189. Newsgroups: comp.protocols.kermit.misc
  110190. Subject: Re: Kermit FAQ ?
  110191. Date: 2 Apr 1995 18:29:58 GMT
  110192. Organization: Columbia University
  110193. Lines: 9
  110194. Message-Id: <3lmqf6$453@apakabar.cc.columbia.edu>
  110195. References: <1995Mar31.180447@btmp2h.be>
  110196. Nntp-Posting-Host: watsun.cc.columbia.edu
  110197. Keywords: Kermit
  110198. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  110199.  
  110200. In article <1995Mar31.180447@btmp2h.be>,
  110201. Manindar Uppal SH37 9612 <mupp@btmp2h.be> wrote:
  110202. >Can anyone direct me to a kermit FAQ ?
  110203. >
  110204. ftp: host kermit.columbia.edu, directory kermit, file faq.txt
  110205.  
  110206. Web: http://www.columbia.edu/kermit/, then go to "Further information".
  110207.  
  110208. - Frank
  110209.  
  110210. From news@columbia.edu Sun Apr  2 18:31:39 1995
  110211. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26274
  110212.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Apr 1995 14:31:49 -0400
  110213. Received: by apakabar.cc.columbia.edu id AA04387
  110214.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Apr 1995 14:31:44 -0400
  110215. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  110216. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  110217. Newsgroups: comp.protocols.kermit.misc
  110218. Subject: Re: how to prevent kermit from converting filenames ?
  110219. Date: 2 Apr 1995 18:31:39 GMT
  110220. Organization: Columbia University
  110221. Lines: 9
  110222. Message-Id: <3lmqib$48u@apakabar.cc.columbia.edu>
  110223. References: <3lk8f2$cul@news.cs.tu-berlin.de>
  110224. Nntp-Posting-Host: watsun.cc.columbia.edu
  110225. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  110226.  
  110227. In article <3lk8f2$cul@news.cs.tu-berlin.de>,
  110228. byteshifter <byteshif@cs.tu-berlin.de> wrote:
  110229. :when I transfer .emacs it's converted to x.emacs, filenames with more
  110230. :than one point in the name got the other points subtituted into x's
  110231. :how can I convince kermit to keep to filename ?
  110232. :
  110233. SET FILE NAMES LITERAL
  110234.  
  110235. - Frank
  110236.  
  110237. From news@columbia.edu Sun Apr  2 18:35:24 1995
  110238. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26469
  110239.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Apr 1995 14:35:29 -0400
  110240. Received: by apakabar.cc.columbia.edu id AA04648
  110241.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Apr 1995 14:35:28 -0400
  110242. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  110243. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  110244. Newsgroups: comp.protocols.kermit.misc
  110245. Subject: Re: Getting result code from external command?
  110246. Date: 2 Apr 1995 18:35:24 GMT
  110247. Organization: Columbia University
  110248. Lines: 12
  110249. Message-Id: <3lmqpc$4h3@apakabar.cc.columbia.edu>
  110250. References: <3lkn74$inq@news0.cybernetics.net>
  110251. Nntp-Posting-Host: watsun.cc.columbia.edu
  110252. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  110253.  
  110254. In article <3lkn74$inq@news0.cybernetics.net>,
  110255. Milton A. Baucom <mbaucom@cybernetics.net> wrote:
  110256. >In Kermit 5A(190), how do I test the return code of an external command?
  110257. >i.e.  If I shell out to execute some script, I'd like to be able to see if
  110258. >it worked and send some sort of message...
  110259. >
  110260. This does not work in version 5A(190) and earlier.  This feature will be
  110261. added to the next release.
  110262.  
  110263. - Frank
  110264. x
  110265. x
  110266.  
  110267. From news@columbia.edu Sun Apr  2 20:44:36 1995
  110268. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01767
  110269.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Apr 1995 16:44:41 -0400
  110270. Received: by apakabar.cc.columbia.edu id AA13879
  110271.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Apr 1995 16:44:40 -0400
  110272. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  110273. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  110274. Newsgroups: comp.protocols.kermit.misc
  110275. Subject: Re: MS KERMIT as host?  with password?
  110276. Date: 2 Apr 1995 20:44:36 GMT
  110277. Organization: Columbia University
  110278. Lines: 33
  110279. Message-Id: <3ln2bk$dhj@apakabar.cc.columbia.edu>
  110280. References: <3lhkc9$m8h@vatican.passport.ca>
  110281. Nntp-Posting-Host: watsun.cc.columbia.edu
  110282. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  110283.  
  110284. In article <3lhkc9$m8h@vatican.passport.ca>,
  110285. Peter Renzland <peter@passport.ca> wrote:
  110286. >O.K.  I have both editions of Using MS DOS Kermit.  
  110287. >set server login USERNAME PASSWORD
  110288. >server
  110289. >
  110290. >should work, right?
  110291. >
  110292. Yes, and it does.
  110293.  
  110294. >but when i call from a Unix host i don't get any indication that
  110295. >a username and pasword is required.  i just can't get anywhere.
  110296. >
  110297. Using the current versions of MS-DOS Kermit -- 3.14 -- and
  110298. UNIX C-Kermit -- 5A(190) -- everything works as advertised, and
  110299. I'm pretty sure this is also true of earlier versions.  Tell
  110300. MS-DOS Kermit to:
  110301.  
  110302.   set server login USERNAME PASSWORD
  110303.   server
  110304.  
  110305. (as you did) and then if you send any commands to it from the UNIX
  110306. C-Kermit client without logging in first, it sends back a message
  110307. saying "REMOTE LOGIN is required".  Then if you tell the C-Kermit
  110308. client to:
  110309.  
  110310.   remote login USERNAME PASSWORD
  110311.  
  110312. MS-DOS Kermit sends back a message saying "Kermit-MS Server ready",
  110313. and then accepts REMOTE, SEND, GET, FINISH, etc, commands if they have
  110314. not been DISABLE'd.
  110315.  
  110316. - Frank
  110317.  
  110318. From news@columbia.edu Wed Mar 29 07:52:28 1995
  110319. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04597
  110320.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Apr 1995 17:56:02 -0400
  110321. Received: by apakabar.cc.columbia.edu id AA19473
  110322.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Apr 1995 17:55:59 -0400
  110323. Newsgroups: comp.protocols.kermit.misc
  110324. From: Mike@childsoc.demon.co.uk (Michael Bernardi)
  110325. Path: news.columbia.edu!panix!news.mathworks.com!news2.near.net!howland.reston.ans.net!news.sprintlink.net!peernews.demon.co.uk!childsoc.demon.co.uk!Mike
  110326. Subject: Capture macro
  110327. Organization: The Children's Society
  110328. Reply-To: Michael Bernardi <Mike@childsoc.demon.co.uk>
  110329. X-Newsreader: Demon Internet Simple News v1.29
  110330. Lines: 13
  110331. X-Posting-Host: childsoc.demon.co.uk
  110332. Date: Wed, 29 Mar 1995 07:52:28 +0000
  110333. Message-Id: <796463548snz@childsoc.demon.co.uk>
  110334. Sender: usenet@demon.co.uk
  110335. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  110336.  
  110337. Has anyone written a macro which will capture on screen text, to a file,
  110338. without ESCape sequences. Invoked by pressing a key combination (eg Alt+C)
  110339. you get PROMPTED for a file name, which you can then type. Alternatively
  110340. you can be GIVEN a default name which can be edited.
  110341.  
  110342. I'm not even sure if this is possible using MS-Kermit. I think I have
  110343. managed to getthis to work for a default filename. BUT I can't get user
  110344. imput to change this.
  110345. Mike
  110346. -- 
  110347.  Michael Bernardi        mike@childsoc.demon.co.uk (Internet) | Making lives
  110348.  The Children's Society, Edward Rudolf House, Margery Street, | worth living
  110349.  London, WC1X 0JL, UK    Voice: +44 171 837 4299     Charity Reg. No. 221124
  110350.  
  110351. From news@columbia.edu Sun Apr  2 23:28:11 1995
  110352. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08780
  110353.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Apr 1995 19:28:23 -0400
  110354. Received: by apakabar.cc.columbia.edu id AA26641
  110355.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Apr 1995 19:28:15 -0400
  110356. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  110357. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  110358. Newsgroups: comp.protocols.kermit.misc
  110359. Subject: Re: Capture macro
  110360. Date: 2 Apr 1995 23:28:11 GMT
  110361. Organization: Columbia University
  110362. Lines: 51
  110363. Message-Id: <3lnbub$q0d@apakabar.cc.columbia.edu>
  110364. References: <796463548snz@childsoc.demon.co.uk>
  110365. Nntp-Posting-Host: watsun.cc.columbia.edu
  110366. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  110367.  
  110368. In article <796463548snz@childsoc.demon.co.uk>,
  110369. Michael Bernardi <Mike@childsoc.demon.co.uk> wrote:
  110370. >Has anyone written a macro which will capture on screen text, to a file,
  110371. >without ESCape sequences. Invoked by pressing a key combination (eg Alt+C)
  110372. >you get PROMPTED for a file name, which you can then type. Alternatively
  110373. >you can be GIVEN a default name which can be edited.
  110374. >
  110375. >I'm not even sure if this is possible using MS-Kermit. I think I have
  110376. >managed to getthis to work for a default filename. BUT I can't get user
  110377. >imput to change this.
  110378. >
  110379. The screen is dumped to a file using the \Kdump verb.  This copies the
  110380. on-screen text (without highlighting, colors, etc) to a plain-text file.  No
  110381. escape sequences.  The default file is KERMIT.SCN in the current directory.
  110382. If it already exists it is appended to.  The \Kdump verb is assigned to
  110383. Ctrl-End by default, and you can move it around with SET KEY.  The screen-dump
  110384. file can be changed with SET DUMP.  This is all in the manual.
  110385.  
  110386. You want a "hot key" that prompts the user for a filename to save the
  110387. screen text to.  Well, we can write a macro to do this, and then assign it
  110388. to the desired key, along with the \Kdump verb.  First let's write the macro.
  110389.  
  110390. define getdumpfile echo SCREEN DUMP REQUESTED,-
  110391.   :loop,-
  110392.   ask \%9 {File to dump to: },-
  110393.   if not def \%9 goto loop,-
  110394.   if exist \%9 goto done,-
  110395.   open write \%9,-
  110396.   if success goto ok,-
  110397.   echo Error: \%9 can't be created,-
  110398.   goto loop,-
  110399.   :ok,-
  110400.   close write,-
  110401.   delete \%9,-  
  110402.   :done,-
  110403.   set dump \%9,-
  110404.   connect
  110405.  
  110406. This macro not only prompts for the filename, but also checks whether the
  110407. named file can actually be used; if not it goes back and reprompts.
  110408.  
  110409. Now to assign the whole process to (say) Alt-C (Alt-Shift-C), do:
  110410.  
  110411.   set key \2862 {\{Kgetdumpfile}\{Kdump}}
  110412.  
  110413. (The arrangement of braces and slashes is a bit mysterious, but is documented
  110414. in the KERMIT.BWR file.)
  110415.  
  110416. Embellish or simplify as desired.
  110417.  
  110418. - Frank
  110419.  
  110420. From news@columbia.edu Mon Apr  3 17:41:51 1995
  110421. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06059
  110422.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 3 Apr 1995 15:17:31 -0400
  110423. Received: by apakabar.cc.columbia.edu id AA00495
  110424.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 3 Apr 1995 15:17:27 -0400
  110425. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news.sprintlink.net!EU.net!goya!tid.tid.es!tid.tid.es!not-for-mail
  110426. From: leon@tid.tid.es (Jose Leon Gonzalez Alvarez)
  110427. Newsgroups: comp.lang.tcl,comp.protocols.kermit.misc
  110428. Subject: Re: Help me mix expect and kermit?
  110429. Followup-To: comp.lang.tcl,comp.protocols.kermit.misc
  110430. Date: 3 Apr 1995 19:41:51 +0200
  110431. Organization: Telefonica I+D
  110432. Lines: 42
  110433. Message-Id: <3lpc0v$qit@tid.tid.es>
  110434. References: <D63MBw.GKG@cmie.ernet.in>
  110435. Nntp-Posting-Host: tid.tid.es
  110436. X-Newsreader: TIN [version 1.2 PL2]
  110437. Xref: news.columbia.edu comp.lang.tcl:27128 comp.protocols.kermit.misc:2404
  110438. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  110439.  
  110440. Ajay Shah (ajayshah@cmie.ernet.in) wrote:
  110441. : I'm trying to automate kermit using expect and many things are
  110442. : behaving strangely.
  110443.  
  110444. : Is there something perverse about kermit in this respect?  As
  110445. : long as I do not say "connect" expect and kermit mix perfectly.
  110446. : The moment I say connect things get hairy.
  110447.  
  110448. : If you have a expect program, or words of wisdom on this front,
  110449. : I would love to hear from you.  I'm running expect on a Austin
  110450. : 486 notebook running linux.
  110451.  
  110452. : Thanks,
  110453.  
  110454. :         -ans.
  110455. : -- 
  110456. : -------------------------
  110457. : Ajay Shah, Centre for Monitoring Indian Economy, Bombay
  110458. : ajayshah@cmie.ernet.in       (9-7 GMT+5:30) http://www.cmie.ernet.in/~ajayshah
  110459. : <*(:-? - wizard who doesn't know the answer.      Finger me for pgp public key
  110460.  
  110461.     Hi,
  110462.  
  110463.     I am using expect to operate a kermit connection and things go smoothly
  110464. to me. I have a HP workstation running HP-UX 9.0. Do you have kermit controlling
  110465. a modem line? That's what I have and most of my problems where related to the
  110466. "Hayes-controlled" setup of the modem.
  110467.  
  110468.         Best regards,
  110469.  
  110470.         Leon
  110471.  
  110472.  
  110473. _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
  110474. .....   888         888888                        Leon Gonzalez Alvarez
  110475. .....   888         88888888    TELEFONICA        c/ Emilio Vargas, 6
  110476. .....   888    8    888   888  INVESTIGACION      28043 Madrid (SPAIN)
  110477. ooooo   888  88888  888   888       Y             Phone:  +34 1 337 4729
  110478. ooooo   888    8    88888888    DESARROLLO        Fax:    +34 1 337 4352
  110479. ooooo   888         888888                        E-mail: leon@tid.es
  110480. _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
  110481.  
  110482.  
  110483. From news@columbia.edu Mon Apr  3 20:13:22 1995
  110484. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16813
  110485.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 3 Apr 1995 17:42:10 -0400
  110486. Received: by apakabar.cc.columbia.edu id AA15392
  110487.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 3 Apr 1995 17:42:08 -0400
  110488. Path: news.columbia.edu!panix!zip.eecs.umich.edu!newsxfer.itd.umich.edu!agate!howland.reston.ans.net!cs.utexas.edu!bcm!news.msfc.nasa.gov!news.larc.nasa.gov!lerc.nasa.gov!purdue!haven.umd.edu!nova.umuc.edu!nova!rockwell
  110489. From: rockwell@nova.umuc.edu (Raul Deluth Miller)
  110490. Newsgroups: comp.protocols.kermit.misc
  110491. Subject: macros and wild cards (feature request)
  110492. Date: 3 Apr 1995 16:13:22 -0400
  110493. Organization: University of Maryland University College
  110494. Lines: 20
  110495. Sender: rockwell@nova.umuc.edu
  110496. Distribution: world
  110497. Message-Id: <ROCKWELL.95Apr3161321@nova.umd.edu>
  110498. Nntp-Posting-Host: nova.umuc.edu
  110499. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  110500.  
  110501. I've spent a lot of time and energy on using kermit as a reliable file
  110502. mover.  Typically, this boils down to sending a file and deleting it
  110503. after it's been successfully transfered.
  110504.  
  110505. What I originally wanted to be able to do was something like get * but
  110506. with a macro instead of get.
  110507.  
  110508. I think it would be very useful to be able to use implicit looping
  110509. over file names selected by a wild card pattern.  It would probably be
  110510. useful to factor this into two steps: gathering the names should
  110511. probably be a different step from the implicit looping.
  110512.  
  110513. [Right now, I do os specific things to build a kermit script then
  110514. execute it...]
  110515.  
  110516. Personally, I have no immediate need for this feature, but I suspect
  110517. it would make my life simpler next time around.
  110518.  
  110519. -- 
  110520. Raul D. Miller
  110521.  
  110522. From news@columbia.edu Mon Apr  3 22:22:23 1995
  110523. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19129
  110524.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 3 Apr 1995 18:22:33 -0400
  110525. Received: by apakabar.cc.columbia.edu id AA19303
  110526.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 3 Apr 1995 18:22:31 -0400
  110527. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  110528. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  110529. Newsgroups: comp.protocols.kermit.misc
  110530. Subject: Re: macros and wild cards (feature request)
  110531. Date: 3 Apr 1995 22:22:23 GMT
  110532. Organization: Columbia University
  110533. Lines: 30
  110534. Message-Id: <3lpsev$iqm@apakabar.cc.columbia.edu>
  110535. References: <ROCKWELL.95Apr3161321@nova.umd.edu>
  110536. Nntp-Posting-Host: watsun.cc.columbia.edu
  110537. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  110538.  
  110539. In article <ROCKWELL.95Apr3161321@nova.umd.edu>,
  110540. Raul Deluth Miller <rockwell@nova.umd.edu> wrote:
  110541. >I've spent a lot of time and energy on using kermit as a reliable file
  110542. >mover.  Typically, this boils down to sending a file and deleting it
  110543. >after it's been successfully transfered.
  110544. >
  110545. Future releases of Kermit will have a MOVE command that will do this.
  110546. In fact, the latest OS/2 C-Kermit 5A(191) Beta edit has this feature,
  110547. but so far no other Kermit programs do.
  110548.  
  110549. >What I originally wanted to be able to do was something like get * but
  110550. >with a macro instead of get.
  110551. >
  110552. I could give you a better answer if I knew which version of Kermit
  110553. you were talking about.  MS-DOS Kermit?  C-Kermit?
  110554.  
  110555. >I think it would be very useful to be able to use implicit looping
  110556. >over file names selected by a wild card pattern.
  110557. >
  110558. We have this in C-Kermit.  We don't have it in MS-DOS Kermit.
  110559.  
  110560. >It would probably be
  110561. >useful to factor this into two steps: gathering the names should
  110562. >probably be a different step from the implicit looping.
  110563. >
  110564. In C-Kermit, you use \ffiles(wildcard) and the fnextfile() to get each
  110565. filename, and assign it to an array member.  See the example in
  110566. ckcker.bwr (search for "ffiles").
  110567.  
  110568. - Frank
  110569.  
  110570. From news@columbia.edu Tue Apr  4 05:36:36 1995
  110571. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10378
  110572.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Apr 1995 01:36:49 -0400
  110573. Received: by apakabar.cc.columbia.edu id AA23814
  110574.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Apr 1995 01:36:46 -0400
  110575. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  110576. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  110577. Newsgroups: comp.protocols.kermit.misc
  110578. Subject: Re: starting SLIP from Ckermit (OS/2 beta)
  110579. Date: 4 Apr 1995 05:36:36 GMT
  110580. Organization: Columbia University
  110581. Lines: 125
  110582. Message-Id: <3lqlt5$n7v@apakabar.cc.columbia.edu>
  110583. References: <3liark$asl@sunny.bahnhof.se> <3lk18b$dih@mozo.cc.purdue.edu>
  110584. Nntp-Posting-Host: watsun.cc.columbia.edu
  110585. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  110586.  
  110587. Kyler Laird <laird@nettle.ecn.purdue.edu> wrote:
  110588.  
  110589. I hope you don't mind my hacking, but I thought I could add one or two ideas.
  110590.  
  110591. >; PUCC_SLIP.KRM
  110592. >; Use this script to SL/IP into PUCC from OS/2 Warp
  110593. >;    using C-Kermit 5A(191)
  110594. >
  110595. >;--------------------
  110596. >;variable definitions
  110597. >;--------------------
  110598. >
  110599. >;serial port number
  110600. >def \%o 1
  110601. >
  110602. >;machine name
  110603. >;def \%m coastal.ecn.purdue.edu
  110604. >def \%m nettle.ecn.purdue.edu
  110605. >
  110606. >;machine address (use "tia -address" to find out)
  110607. >;def \%a 128.46.161.160
  110608. >def \%a 128.46.161.85
  110609. >
  110610. >;login
  110611. >def \%l laird
  110612. >
  110613. >;password
  110614. >def \%p secret
  110615. >
  110616. >;shell prompt
  110617. >def \%r %
  110618. >
  110619. >;---------------------------------
  110620. >
  110621. >;set to bogus line so that SLIP.EXE can start
  110622. >set line com0
  110623.  
  110624. You could also say SET NETWORK TCP/IP or anything else that changes the port
  110625. from the one that SLIP.EXE is defined to use.
  110626.  
  110627. >
  110628. >;start SLIP.EXE
  110629. >!start "SL/IP into PUCC" /n /min slip -com\%o -ifconfig 192.0.2.1 \%a +defaultroute -p2 -rtscts
  110630. >
  110631.  
  110632. I'm not sure that the -comN variable is needed if you have a properly 
  110633. configured SLIP.CFG file.
  110634.  
  110635. >;wait for SL/IP connection to initialize
  110636. >!slipwait
  110637. >
  110638. >set line slipcom\%o
  110639.  
  110640. This could have been done without SLIPWAIT by using the following C-Kermit 
  110641. code:
  110642.  
  110643. :waiting
  110644. set port slipcom\%o
  110645. xif failure { pause 1, goto waiting }
  110646.  
  110647. >set speed 57600
  110648. >
  110649. >;call PUCC
  110650.  
  110651. I would replace this whole dialing section with a Services Directory 
  110652. entry.
  110653. >
  110654. >;release shared serial port by setting to bogus port
  110655. >set line com0
  110656.  
  110657. I like to use the same port just so I know that the SLIP Driver was released.
  110658.  
  110659. set port com\%o
  110660.  
  110661. This will fail after the SLIP Driver is released.
  110662.  
  110663. If you didn't know the address at dial in time, but instead were told it
  110664. during the login statement, you would need to parse the incoming data for
  110665. the IP address and then make appropriate calls to ifconfig.exe and possibly
  110666. update the RESOLVE file at this point.
  110667.  
  110668. >
  110669. >;*Note that you could just put "quit" here.
  110670. >; The SL/IP stuff is all going on in another session.
  110671. >; The following is just because I usually want to run
  110672. >;    telnet.
  110673. >
  110674. >; You could also add lines like
  110675. >;!start EXPLORE.EXE
  110676. >;     so that TCP/IP applications (like Web Explorer) will
  110677. >;     automatically start after connection.
  110678. >
  110679. Good points.
  110680.  
  110681. >;connect to machine via TCP/IP (telnet)
  110682. >net tcp/ip \%m
  110683. >
  110684. >;login to machine (again)
  110685. >unixlogin \%l \%p \%r
  110686. >
  110687. Again, this is perfect for a Service Directory entry.
  110688.  
  110689. >;present terminal emulation screen
  110690. >connect
  110691. >
  110692.  
  110693.  
  110694.  
  110695.  
  110696.  
  110697.  
  110698.  
  110699.  
  110700.  
  110701.  
  110702.  
  110703.  
  110704.  
  110705.  
  110706.  
  110707.  
  110708. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  110709. "C-Kermit: available on more platforms than any other communications software."
  110710. "Kermit FTP: sending files whenever and wherever they are needed."
  110711.   OS/2 version 5A(190): ftp://kermit.columbia.edu/kermit/archives/cko190.zip 
  110712.  
  110713. From news@columbia.edu Tue Apr  4 16:55:48 1995
  110714. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00593
  110715.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Apr 1995 16:44:47 -0400
  110716. Received: by apakabar.cc.columbia.edu id AA10062
  110717.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Apr 1995 16:44:44 -0400
  110718. Newsgroups: comp.protocols.kermit.misc
  110719. Path: news.columbia.edu!panix!news.mathworks.com!news.ultranet.com!news.sprintlink.net!cs.utexas.edu!utnut!nott!cunews!boris!rmallett
  110720. From: rmallett@boris.ccs.carleton.ca (Rick Mallett)
  110721. Subject: Re: How to disable C-Kermit CLI
  110722. X-Nntp-Posting-Host: boris.carleton.ca
  110723. Message-Id: <D6IsD0.5M3@cunews.carleton.ca>
  110724. Sender: news@cunews.carleton.ca (News Administrator)
  110725. Organization: Carleton University
  110726. X-Newsreader: TIN [version 1.2 PL0]
  110727. References: <D67t0M.A49@cunews.carleton.ca> <3lh21v$mni@apakabar.cc.columbia.edu>
  110728. Date: Tue, 4 Apr 1995 16:55:48 GMT
  110729. Lines: 44
  110730. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  110731.  
  110732. Frank da Cruz (fdc@watsun.cc.columbia.edu) wrote:
  110733. > In article <D67t0M.A49@cunews.carleton.ca>,
  110734. > Rick Mallett <rmallett@boris.carleton.ca> wrote:
  110735.  
  110736. > : I'm using kermit for file upload/download in conjunction with a Unix
  110737. > : restricted shell text-based menu interface that should prevent all
  110738. > : direct access to Unix shell commands. Files are uploaded/downloaded by
  110739. > : way of expect scripts where the invokation is as follows:
  110740. > :  ...
  110741. > : This seems to work OK except that I found the other day that users can
  110742. > : escape to the kermit prompt by typing several CTRL-C's during the upload
  110743. > : operation.
  110744. > : ...
  110745.  
  110746. [portion deleted]
  110747.  
  110748. > : Is there another compilation flag that will give me the result I want.
  110749. > : 
  110750. > Try -DNOPUSH.  This should prevent any type of shell access from the
  110751. > C-Kermit prompt.  Or try -DNOCTRLC.  This should make Ctrl-C (SIGINT)
  110752. > exit the program rather than returning to the prompt.
  110753.  
  110754. I tried using both -DNOCTRLC and -DNOPUSH but that didn't work. I had already
  110755. eliminated shell access by other means but I still need to stop users from
  110756. getting to a c-kermit prompt and browsing the system at that point. Here is
  110757. the make line I issued (after a make clean of course).
  110758.  
  110759.    make sunos41gcc "KFLAGS=-DNOCTRLC -DNOPUSH"
  110760.  
  110761. I was still able to type CTRL-C and reach the C-kermit prompt after
  110762. issuing a line similar to the following:
  110763.  
  110764.    kermit -C 'pcget file, quit'
  110765.  
  110766.  
  110767. Any other suggestions would be appreciated.
  110768.  
  110769.  
  110770. ----------------------------------------------------------------------
  110771. Rick Mallett
  110772. Carleton University
  110773.  
  110774. Email address: rmallett@ccs.carleton.ca
  110775. ----------------------------------------------------------------------
  110776.  
  110777. From news@columbia.edu Tue Apr  4 23:44:23 1995
  110778. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15329
  110779.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Apr 1995 19:44:31 -0400
  110780. Received: by apakabar.cc.columbia.edu id AA27083
  110781.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Apr 1995 19:44:30 -0400
  110782. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  110783. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  110784. Newsgroups: comp.protocols.kermit.misc
  110785. Subject: Re: How to disable C-Kermit CLI
  110786. Date: 4 Apr 1995 23:44:23 GMT
  110787. Organization: Columbia University
  110788. Lines: 18
  110789. Message-Id: <3lslkn$qe8@apakabar.cc.columbia.edu>
  110790. References: <D67t0M.A49@cunews.carleton.ca> <3lh21v$mni@apakabar.cc.columbia.edu> <D6IsD0.5M3@cunews.carleton.ca>
  110791. Nntp-Posting-Host: watsun.cc.columbia.edu
  110792. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  110793.  
  110794. In article <D6IsD0.5M3@cunews.carleton.ca>,
  110795. Rick Mallett <rmallett@boris.carleton.ca> wrote:
  110796. : I tried using both -DNOCTRLC and -DNOPUSH but that didn't work. I had already
  110797. : eliminated shell access by other means but I still need to stop users from
  110798. : getting to a c-kermit prompt and browsing the system at that point. Here is
  110799. : the make line I issued (after a make clean of course).
  110800. :    make sunos41gcc "KFLAGS=-DNOCTRLC -DNOPUSH"
  110801. : I was still able to type CTRL-C and reach the C-kermit prompt after
  110802. : issuing a line similar to the following:
  110803. Oops, sorry, I meant -DNOCCTRAP.
  110804.  
  110805. If there are still holes that you need to plug, please email me directly
  110806. (cuts down on newsfeed delay).
  110807.  
  110808. - Frank
  110809.  
  110810. From news@columbia.edu Tue Apr  4 23:00:54 1995
  110811. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21098
  110812.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Apr 1995 21:42:20 -0400
  110813. Received: by apakabar.cc.columbia.edu id AA06880
  110814.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Apr 1995 21:42:19 -0400
  110815. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!spool.mu.edu!mnemosyne.cs.du.edu!nyx10.cs.du.edu!not-for-mail
  110816. From: gweisz@nyx10.cs.du.edu (Gideon Weisz)
  110817. Newsgroups: comp.protocols.kermit.misc
  110818. Subject: mac hebrew support?
  110819. Date: 4 Apr 1995 17:00:54 -0600
  110820. Organization: Nyx, Public Access Unix @ U. of Denver Math/CS dept.
  110821. Lines: 6
  110822. Message-Id: <3lsj36$ovb@nyx10.cs.du.edu>
  110823. Nntp-Posting-Host: nyx10.cs.du.edu
  110824. X-Newsreader: TIN [version 1.2 PL2]
  110825. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  110826.  
  110827. is there a mac kermit with hebrew support?
  110828. (and if so how easy is it for novices to use)
  110829. i know nothing about macs, but in a listserv that i subscribe to,
  110830. there seems to be the germ of a discussion about whether hebrew
  110831. e-mail (and thus a hebrew alphabet list) is practical now...
  110832. thanks, gideon
  110833.  
  110834. From news@columbia.edu Tue Apr  4 08:15:33 1995
  110835. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21139
  110836.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Apr 1995 21:43:31 -0400
  110837. Received: by apakabar.cc.columbia.edu id AA06917
  110838.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Apr 1995 21:43:30 -0400
  110839. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!Germany.EU.net!zib-berlin.de!cs.tu-berlin.de!fauern!gs.dfn.de!zam103!min007.min!rolf
  110840. From: rolf@minvax.min.kfa-juelich.de (rolf skowronek)
  110841. Newsgroups: comp.protocols.kermit.misc
  110842. Subject: Re: Bad Press ??
  110843. Message-Id: <2096@zam103.zam.kfa-juelich.de>
  110844. Date: 4 Apr 95 08:15:33 GMT
  110845. References: <3lhbgm$e8i@over.mhv.net>
  110846. Sender: news@zam103.zam.kfa-juelich.de
  110847. Reply-To: R.Skowronek@KFA-Juelich.de
  110848. Organization: KFA-Juelich
  110849. Lines: 50
  110850. Nntp-Posting-Host: min007
  110851. X-Newsreader: TIN [version 1.2 PL2]
  110852. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  110853.  
  110854. scvikevich@mhv.net wrote:
  110855. : May be Columbia U. should sue these publications for misrepresentation.
  110856. : here are examples: published in "net.speak" (Hayden Books), 1994
  110857. : author: Tom Fahey, ISBN: 1-56830-095-6
  110858.  
  110859. :     Kermit - A terminal emulation Program and file transfer protocol
  110860. :              developed at Columbia University. Kermit is the slowest
  110861. :              file transfer protocol, but useful when sending 7-bit
  110862. :              characters. (Naturally, despite its lackluster transfer
  110863. :              speed--or perhaps because of it--Kermit is a favorite
  110864. :              of many educational institutions. Its status as freeware
  110865. :              has also endeared it to thrifty educators everywhere.)
  110866. :              Yes, it's named in honor of Sesame Street's Kermit the
  110867. :              Frog.
  110868.  
  110869. :     ZMODEM - The latest and fastest file transfer protocol. ZMODEM
  110870. :              recovers from transmission errors more effectively than
  110871. :              the other popular protocols. In addition because ZMODEM
  110872. :              operates in batch mode, you can download or upload several
  110873. :              several files at a time. Finally, if a transmission is
  110874. :              inerrupted halfway during a file transfer, you can log
  110875. :              and pick up the file transfer where it was cut off, only
  110876. :              downloading the "last" half. With other protocols, an
  110877. :              interruption means downloading the entire file again.
  110878.  
  110879. :    I would be curious to hear responses from the kermit user
  110880. :    community.
  110881.  
  110882. :    Serge
  110883.  
  110884. A couple of weeks ago a fetched the latest versions of Kermit for VAX and
  110885. for PCs from Columbia. Frank da Cruz had been posting some hints on the
  110886. various parameters to experiment with (block length, window slots, etc.),
  110887. which turned out to be really valuable. With a VS3100 on the one end, a
  110888. PC on the other connected by a 14400 compressing modem on a terminal server
  110889. I had transfer rates of 1610 chars/sec on precompressed binaries.
  110890. I am not convinced I've got the optimal setting bacause I did not experiment
  110891. a lot - just followed Franks hints. When I connect to a local BBS using
  110892. Zmodem, I dont't get any higher transfer rates either.
  110893. But Kermit is not only a protocol - its a good terminal with many other
  110894. facilities. I never had the need to continue an interrupted transfer yet
  110895. but I am convinced Kermit will handle this condition well also.
  110896. I have been using Kermit for many years and it turned out to be coping with
  110897. practically every possible hardware configuration. My believe is if Kermit
  110898. won't run - nothing else will.
  110899.  
  110900. Rolf
  110901.  
  110902. --
  110903.                     e-mail: r.skowronek@kfa-juelich.de
  110904.  
  110905. From news@columbia.edu Tue Apr  4 17:21:57 1995
  110906. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09587
  110907.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 5 Apr 1995 04:19:37 -0400
  110908. Received: by apakabar.cc.columbia.edu id AA00946
  110909.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 5 Apr 1995 04:19:35 -0400
  110910. Path: news.columbia.edu!news.cs.columbia.edu!news.boxhill.com!news.sprintlink.net!howland.reston.ans.net!news.cac.psu.edu!news.pop.psu.edu!hudson.lm.com!godot.cc.duq.edu!news.duke.edu!eff!news.umbc.edu!haven.umd.edu!nova.umuc.edu!nova!rockwell
  110911. From: rockwell@nova.umuc.edu (Raul Deluth Miller)
  110912. Newsgroups: comp.protocols.kermit.misc
  110913. Subject: Re: macros and wild cards (feature request)
  110914. Date: 4 Apr 1995 13:21:57 -0400
  110915. Organization: University of Maryland University College
  110916. Lines: 20
  110917. Sender: rockwell@nova.umuc.edu
  110918. Message-Id: <ROCKWELL.95Apr4132155@nova.umd.edu>
  110919. References: <ROCKWELL.95Apr3161321@nova.umd.edu> <3lpsev$iqm@apakabar.cc.columbia.edu>
  110920. Nntp-Posting-Host: nova.umuc.edu
  110921. In-Reply-To: fdc@watsun.cc.columbia.edu's message of 3 Apr 1995 22:22:23 GMT
  110922. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  110923.  
  110924. Frank da Cruz:
  110925.    I could give you a better answer if I knew which version of Kermit
  110926.    you were talking about.  MS-DOS Kermit?  C-Kermit?
  110927.  
  110928. I use C-Kermit, MS-DOS Kermit, and CMS-Kermit.  Kermit is my preferred
  110929. mechanism for getting files [in and] out of CMS.
  110930.  
  110931.    In C-Kermit, you use \ffiles(wildcard) and the fnextfile() to get
  110932.    each filename, and assign it to an array member.  See the example
  110933.    in ckcker.bwr (search for "ffiles").
  110934.  
  110935. Thanks, next time I have to tackle this kind of problem I'll look for
  110936. this feature.
  110937.  
  110938. [P.S. it would also be nice to have an analogue to \ffiles() which
  110939. would get the list of files from a remote kermit server, put or send
  110940. command.]
  110941.  
  110942. -- 
  110943. Raul D. Miller
  110944.  
  110945. From news@columbia.edu Tue Apr  4 04:20:19 1995
  110946. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19934
  110947.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 5 Apr 1995 08:49:09 -0400
  110948. Received: by apakabar.cc.columbia.edu id AA25389
  110949.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 5 Apr 1995 08:49:05 -0400
  110950. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news.cac.psu.edu!psuvm!hdk
  110951. Organization: Penn State University
  110952. Date: Tue, 4 Apr 1995 08:20:19 EDT
  110953. From: H. D. Knoble <HDK@psuvm.psu.edu>
  110954. Message-Id: <95094.082019HDK@psuvm.psu.edu>
  110955. Newsgroups: comp.protocols.kermit.misc
  110956. Subject: Re: Capture macro
  110957. References: <796463548snz@childsoc.demon.co.uk>
  110958.  <3lnbub$q0d@apakabar.cc.columbia.edu>
  110959. Lines: 20
  110960. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  110961.  
  110962. To CAPTURE VTxxx session (segments) to a file (E.g., VTXXX.LOG),
  110963. without the VTxxx escape sequences imbedded, "take" the following
  110964. MS-Kermit 3.14 script segment (thanks to Joe D.):
  110965.  
  110966. ; Log session without Esc codes. Hot key toggle is Ctrl-PrintScreen.
  110967. define WarnApnd  Echo Note: Existing Session Log file VTXXX.LOG will, -
  110968.                  Echo be appended until it's renamed or erased.\10, -
  110969.                  run PAUSE
  110970. assign \%u \Fsize(VTXXX.LOG) ; 'set printer' does not like null files.
  110971. if equal \%u 0 RUN ERASE VTXXX.LOG ; So erase any zero byte log file.
  110972. if exist VTXXX.LOG Do WarnApnd ; Notify about appending if necessary.
  110973. set printer VTXXX.LOG ;  ASCII session logging will be to VTXXX.LOG.
  110974.  
  110975.  
  110976. Then after this script has been run, to toggle session logging to
  110977. this file on/off, simply press Ctrl-PrintScreen. The resulting
  110978. file, VTXXX.LOG in this example, when closed (or MS-Kermit exited)
  110979. will contain an ASCII session log (excluding full-screens - E.g.,
  110980. VMS EDT screens) without Esc sequences; so (unlike unlike a file
  110981. produced with 'log session') this ASCII session log cannot be REPLAYed
  110982. of course.
  110983.  
  110984. From news@columbia.edu Mon Apr  3 04:06:15 1995
  110985. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22689
  110986.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 5 Apr 1995 09:46:37 -0400
  110987. Received: by apakabar.cc.columbia.edu id AA01714
  110988.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 5 Apr 1995 09:46:37 -0400
  110989. Path: news.columbia.edu!sol.ctr.columbia.edu!news.msfc.nasa.gov!news.larc.nasa.gov!lll-winken.llnl.gov!uwm.edu!cs.utexas.edu!news.sprintlink.net!news.clark.net!rahul.net!a2i!dold.a2i!dold
  110990. From: Clarence Dold <dold@rahul.net>
  110991. Newsgroups: comp.protocols.kermit.misc
  110992. Subject: Re: how to prevent kermit from converting filenames ?
  110993. Date: 3 Apr 1995 04:06:15 GMT
  110994. Organization: a2i network
  110995. Lines: 21
  110996. Message-Id: <3lns7n$3a2@hustle.rahul.net>
  110997. References: <3lk8f2$cul@news.cs.tu-berlin.de>
  110998. Nntp-Posting-Host: foxtrot.rahul.net
  110999. Nntp-Posting-User: dold
  111000. X-Newsreader: TIN [version 1.2 PL2]
  111001. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  111002.  
  111003. byteshifter (byteshif@cs.tu-berlin.de) wrote:
  111004.  
  111005. : when I transfer .emacs it's converted to x.emacs, filenames with more
  111006. : than one point in the name got the other points subtituted into x's
  111007.  
  111008. SET FILE NAMES LITERAL
  111009.  
  111010. in your .kermrc will do what you want, but also has some effect on
  111011. path names, so that if you try to transfer /etc/passwd, you have to make
  111012. sure that you specify an output name as well as the input name.
  111013.  
  111014. And of course, if you transfer files to some system that doesn't know what
  111015. to do with the filenames that you have under a smarter OS, it won't work.
  111016.  
  111017. Transferring to/from a variety of systems, I find it easiest to leave the
  111018. Kermit default as is, and rename the files later.
  111019.  
  111020. -- 
  111021. ---
  111022. Clarence A Dold - dold@rahul.net
  111023.                 - Pope Valley & Napa CA.
  111024.  
  111025. From news@columbia.edu Wed Apr  5 14:50:18 1995
  111026. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27655
  111027.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 5 Apr 1995 10:50:25 -0400
  111028. Received: by apakabar.cc.columbia.edu id AA08069
  111029.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 5 Apr 1995 10:50:22 -0400
  111030. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  111031. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  111032. Newsgroups: comp.protocols.kermit.misc
  111033. Subject: Re: macros and wild cards (feature request)
  111034. Date: 5 Apr 1995 14:50:18 GMT
  111035. Organization: Columbia University
  111036. Lines: 37
  111037. Message-Id: <3luana$7s0@apakabar.cc.columbia.edu>
  111038. References: <ROCKWELL.95Apr3161321@nova.umd.edu> <3lpsev$iqm@apakabar.cc.columbia.edu> <ROCKWELL.95Apr4132155@nova.umd.edu>
  111039. Nntp-Posting-Host: watsun.cc.columbia.edu
  111040. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  111041.  
  111042. In article <ROCKWELL.95Apr4132155@nova.umd.edu>,
  111043. Raul Deluth Miller <rockwell@nova.umd.edu> wrote:
  111044. : Frank da Cruz:
  111045. :    I could give you a better answer if I knew which version of Kermit
  111046. :    you were talking about.  MS-DOS Kermit?  C-Kermit?
  111047. : I use C-Kermit, MS-DOS Kermit, and CMS-Kermit.  Kermit is my preferred
  111048. : mechanism for getting files [in and] out of CMS.
  111049. Terrific.  \\ffiles() works in C-Kermit and MS-DOS Kermit, but not in
  111050. CMS Kermit.  There is probably some other way to do this in CMS Kermit
  111051. with REXX or EXEC.
  111052.  
  111053. :    In C-Kermit, you use \ffiles(wildcard) and the fnextfile() to get
  111054. :    each filename, and assign it to an array member.  See the example
  111055. :    in ckcker.bwr (search for "ffiles").
  111056. : Thanks, next time I have to tackle this kind of problem I'll look for
  111057. : this feature.
  111058. : [P.S. it would also be nice to have an analogue to \ffiles() which
  111059. : would get the list of files from a remote kermit server, put or send
  111060. : command.]
  111061. Kind of like what the ftp client and server do.  Good idea.  We'll add
  111062. it to the list for future releases.
  111063.  
  111064. For now, assuming the server is running on UNIX, you can simulate this with
  111065. something like:
  111066.  
  111067.   remote host echo oofa.* > /tmp/x
  111068.   get /tmp/x
  111069.  
  111070. and then use OPEN READ, READ, CLOSE READ to read the filenames into an
  111071. array.  Replace the above two lines with the equivalents for VMS, CMS, etc.
  111072.  
  111073. - Frank
  111074.  
  111075. From news@columbia.edu Wed Apr  5 14:54:51 1995
  111076. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27878
  111077.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 5 Apr 1995 10:54:59 -0400
  111078. Received: by apakabar.cc.columbia.edu id AA08353
  111079.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 5 Apr 1995 10:54:58 -0400
  111080. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  111081. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  111082. Newsgroups: comp.protocols.kermit.misc
  111083. Subject: Re: mac hebrew support?
  111084. Date: 5 Apr 1995 14:54:51 GMT
  111085. Organization: Columbia University
  111086. Lines: 22
  111087. Message-Id: <3luavr$84t@apakabar.cc.columbia.edu>
  111088. References: <3lsj36$ovb@nyx10.cs.du.edu>
  111089. Nntp-Posting-Host: watsun.cc.columbia.edu
  111090. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  111091.  
  111092. In article <3lsj36$ovb@nyx10.cs.du.edu>,
  111093. Gideon Weisz <gweisz@nyx10.cs.du.edu> wrote:
  111094. >is there a mac kermit with hebrew support?
  111095. >
  111096. I never heard of one.
  111097.  
  111098. >(and if so how easy is it for novices to use)
  111099. >i know nothing about macs, but in a listserv that i subscribe to,
  111100. >there seems to be the germ of a discussion about whether hebrew
  111101. >e-mail (and thus a hebrew alphabet list) is practical now...
  111102. >
  111103. It's totally practical with MS-DOS Kermit or OS/2 C-Kermit, both
  111104. of which fully support Hebrew terminal emulation.
  111105.  
  111106. Unfortunately, Mac Kermit was orphaned years ago.  We don't have
  111107. access to the services of any qualified Macintosh programmers for
  111108. further development (and bug-fixing) work.
  111109.  
  111110. New volunteers (or cash grants to fund a development position)
  111111. would be most welcome.
  111112.  
  111113. - Frank
  111114.  
  111115. From news@columbia.edu Tue Apr  4 22:57:25 1995
  111116. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01366
  111117.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 5 Apr 1995 19:28:20 -0400
  111118. Received: by apakabar.cc.columbia.edu id AA28047
  111119.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 5 Apr 1995 19:28:19 -0400
  111120. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!math.ohio-state.edu!uwm.edu!news.alpha.net!news.mathworks.com!uunet!in1.uu.net!news.inhouse.compuserve.com!news.production.compuserve.com!news
  111121. From: Rob kings <100443.2263@CompuServe.COM>
  111122. Newsgroups: comp.protocols.kermit.misc
  111123. Subject: aborting kermit
  111124. Date: 4 Apr 1995 22:57:25 GMT
  111125. Organization: Renal Networks
  111126. Lines: 22
  111127. Message-Id: <3lsisl$mmj$1@mhadf.production.compuserve.com>
  111128. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  111129.  
  111130. Can somebody help.
  111131.  
  111132. I'm using an visual Basic VBX (PDQComm from crescent) to talk 
  111133. from a PC to a number of hosts (PDP11/VAX/RS6000) and using 
  111134. kermit on the host to transfer files. However if I try to cancel 
  111135. the transfer the host machine just keeps on sending.
  111136.  
  111137. What character sequence must I issue from my VB code to make the 
  111138. host 'shut up'.
  111139.  
  111140. I had thought that this sort of thing would be covered by the 
  111141. crescent documentation/support (since they advertise support for 
  111142. kermit protocol) but it isn't.
  111143.  
  111144. Can somebody help (preferably by e-mail as it's more accessable) 
  111145. as I'm getting rather desperate.
  111146.  
  111147. Ta
  111148. Rob Kings
  111149.  
  111150. -- 
  111151. If you can't laugh at it, what good is it?
  111152.  
  111153. From news@columbia.edu Fri Mar 31 20:51:00 1995
  111154. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10674
  111155.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 5 Apr 1995 22:31:21 -0400
  111156. Received: by apakabar.cc.columbia.edu id AA12666
  111157.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 5 Apr 1995 22:31:19 -0400
  111158. Path: news.columbia.edu!panix!news.mathworks.com!uunet!in1.uu.net!usc!ccnet.com!usenet
  111159. From: dasilva@ccnet.com
  111160. Newsgroups: comp.protocols.kermit.misc
  111161. Subject: Input / Output in Scripts?
  111162. Date: 31 Mar 1995 20:51:00 GMT
  111163. Organization: Silva Consulting Solutions
  111164. Lines: 19
  111165. Distribution: world
  111166. Message-Id: <3lhpvk$nb8@ccnet.ccnet.com>
  111167. Reply-To: dasilva@ccnet.com
  111168. Nntp-Posting-Host: dasilva.ccnet.com
  111169. X-Newsreader: IBM NewsReader/2 v1.03
  111170. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  111171.  
  111172. I've got the manual in front of me, and I am trying to learn scripting. I have
  111173. the following script to telnet to my provider:
  111174.  
  111175. log session
  111176. set input echo on
  111177. set terminal type vt100
  111178. telnet my.isp.com
  111179. input 5 login:
  111180. output myname\13
  111181. input 5 Password
  111182. output mypassword\13
  111183.  
  111184. The telnet session opens, login: appears and the script just waits.
  111185. I can manually login, but the script never sees the input. What am I missing?
  111186. Thanks
  111187.  
  111188. David Silva - Silva Consulting Solutions - 510-527-6831
  111189.        finger dasilva@ccnet.com for information
  111190.  
  111191.  
  111192. From news@columbia.edu Thu Apr  6 04:43:06 1995
  111193. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16798
  111194.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 6 Apr 1995 00:43:12 -0400
  111195. Received: by apakabar.cc.columbia.edu id AA22421
  111196.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 6 Apr 1995 00:43:11 -0400
  111197. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  111198. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  111199. Newsgroups: comp.protocols.kermit.misc
  111200. Subject: Re: Input / Output in Scripts?
  111201. Date: 6 Apr 1995 04:43:06 GMT
  111202. Organization: Columbia University
  111203. Lines: 16
  111204. Message-Id: <3lvrgq$lsi@apakabar.cc.columbia.edu>
  111205. References: <3lhpvk$nb8@ccnet.ccnet.com>
  111206. Nntp-Posting-Host: watsun.cc.columbia.edu
  111207. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  111208.  
  111209. In article <3lhpvk$nb8@ccnet.ccnet.com>,  <dasilva@ccnet.com> wrote:
  111210. Try this:
  111211. >
  111212. >log session
  111213. >set input echo on
  111214. >set terminal type vt100
  111215. set net tcp/ip
  111216. set host my.isp.com
  111217. >input 5 login:
  111218. >output myname\13
  111219. >input 5 Password
  111220. >output mypassword\13
  111221. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  111222. "C-Kermit: available on more platforms than any other communications software."
  111223. "Kermit FTP: sending files whenever and wherever they are needed."
  111224.   OS/2 version 5A(190): ftp://kermit.columbia.edu/kermit/archives/cko190.zip 
  111225.  
  111226. From news@columbia.edu Wed Apr  5 22:37:26 1995
  111227. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19612
  111228.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 6 Apr 1995 01:33:26 -0400
  111229. Received: by apakabar.cc.columbia.edu id AA25226
  111230.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 6 Apr 1995 01:33:25 -0400
  111231. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news.sprintlink.net!cs.utexas.edu!math.ohio-state.edu!news.acns.nwu.edu!uicvm.uic.edu!pcliff
  111232. Message-Id: <19950405.225622.346792.NETNEWS@UICVM.UIC.EDU>
  111233. Nntp-Posting-Host: tigger.cc.uic.edu
  111234. Date: Wed, 5 Apr 1995 22:37:26 +0000
  111235. Newsgroups: comp.protocols.kermit.misc
  111236. Subject: "Can't open output file"
  111237. Organization: University of Illinois at Chicago - ADN Computer Center
  111238. From: pcliff@tigger.cc.uic.edu (Paul Clifford)
  111239. Lines: 6
  111240. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  111241.  
  111242. When using linux kermit (local) and c-kermit (remote), I get the
  111243. message "Can't open output file" when attempting to download a
  111244. file to my local machine. I used to be able to download successfully,
  111245. but now the transfer always aborts with the above message. I may have
  111246. changed some settings, but can't figure out which.
  111247.  
  111248. Any suggestions would be appreciated.
  111249.  
  111250. From news@columbia.edu Thu Apr  6 14:39:21 1995
  111251. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12657
  111252.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 6 Apr 1995 10:39:24 -0400
  111253. Received: by apakabar.cc.columbia.edu id AA08582
  111254.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 6 Apr 1995 10:39:23 -0400
  111255. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  111256. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  111257. Newsgroups: comp.protocols.kermit.misc
  111258. Subject: Re: "Can't open output file"
  111259. Date: 6 Apr 1995 14:39:21 GMT
  111260. Organization: Columbia University
  111261. Lines: 30
  111262. Message-Id: <3m0uep$8c4@apakabar.cc.columbia.edu>
  111263. References: <19950405.225622.346792.NETNEWS@uicvm.uic.edu>
  111264. Nntp-Posting-Host: watsun.cc.columbia.edu
  111265. Cc: 
  111266.  
  111267. In article <19950405.225622.346792.NETNEWS@uicvm.uic.edu>,
  111268. Paul Clifford <pcliff@tigger.cc.uic.edu> wrote:
  111269. >When using linux kermit (local) and c-kermit (remote), I get the
  111270. >message "Can't open output file" when attempting to download a
  111271. >file to my local machine. I used to be able to download successfully,
  111272. >but now the transfer always aborts with the above message. I may have
  111273. >changed some settings, but can't figure out which.
  111274. >
  111275. This means that a file was coming in, Kermit got the name of the file
  111276. from the incoming file header packet, transformed the name (or not)
  111277. according to your SET FILE NAMES setting, got the attributes from the
  111278. attribute packet, and then tried to create a new file with the given name,
  111279. in either the current directory or, if you had SET RECEIVE PATHNAMES ON
  111280. and SET FILENAMES LITERAL, in whatever directory was included in the
  111281. incoming filename...  and then failed for some reason.  Normally the reason
  111282. is printed using perror(), like: write access denied, disk full, or something
  111283. like that.
  111284.  
  111285. To rule out all of the above, run Kermit with its default FILE NAMES and
  111286. RECEIVE PATHNAMES settings (namely, CONVERTED and OFF, respectively), and
  111287. make sure your current directory is writeable and your disk or partition is
  111288. not full.
  111289.  
  111290. If you still have a problem, then the next question would be: did you install
  111291. Kermit setuid or setgid?  If so, did you follow the instructions carefully
  111292. for doing this?
  111293.  
  111294. If you still can't figure out what's wrong, email me directly.
  111295.  
  111296. - Frank <fdc@columbia.edu>
  111297.  
  111298. From news@columbia.edu Thu Apr  6 21:26:57 1995
  111299. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09151
  111300.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 6 Apr 1995 18:01:57 -0400
  111301. Received: by apakabar.cc.columbia.edu id AA23835
  111302.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 6 Apr 1995 18:01:50 -0400
  111303. Path: news.columbia.edu!panix!news.mathworks.com!zombie.ncsc.mil!news.duke.edu!godot.cc.duq.edu!ddsw1!sparkle!pwolfe
  111304. From: pwolfe@mcs.com (Patrick Wolfe)
  111305. Newsgroups: comp.protocols.kermit.misc
  111306. Subject: Re: C-kermit on Linux problem
  111307. Date: 6 Apr 1995 21:26:57 GMT
  111308. Organization: Out Of, Inc.
  111309. Lines: 17
  111310. Message-Id: <3m1mb1$619@News1.mcs.com>
  111311. References: <tstevensD6L8Hs.259@netcom.com>
  111312. Nntp-Posting-Host: pwolfe.pr.mcs.net
  111313. X-Newsreader: TIN [version 1.2 PL2]
  111314. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  111315.  
  111316. Edward Stevens (tstevens@netcom.com) wrote:
  111317.  
  111318. :     I keep getting a 'can't initialize modem' complaint after C-kermit
  111319. : times out after the dial command. My modem is hooked to com2 on dos and I
  111320. : am trying to use the 1.89 ? version for Linux. I have 'set line' to
  111321. : /dev/tty2, /dev/ttys2 and my Hayes compatible seems to respond (flash)
  111322. : ok, but the dial command times out with the 'can't initialize' message.
  111323. : Any hints ? Thanks.
  111324.  
  111325. I also get this every time I have just disconnected from a host and
  111326. want to dial out somewhere else.  I've found that if I connect, let the
  111327. "NO CARRIER" message get displayed, and drop back to the kermit prompt,
  111328. I can then dial out again.
  111329.  
  111330. --
  111331.  
  111332.     Patrick Wolfe (pwolfe@mcs.net)
  111333.  
  111334. From news@columbia.edu Thu Apr  6 07:44:28 1995
  111335. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09339
  111336.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 6 Apr 1995 18:05:07 -0400
  111337. Received: by apakabar.cc.columbia.edu id AA24254
  111338.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 6 Apr 1995 18:05:06 -0400
  111339. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  111340. From: jrd@cc.usu.edu (Joe Doupnik)
  111341. Newsgroups: comp.protocols.kermit.misc
  111342. Subject: Re: kermit over ethernet in dos ?
  111343. Message-Id: <1995Apr6.134428.46690@cc.usu.edu>
  111344. Date: 6 Apr 95 13:44:28 MDT
  111345. References: <3lvavp$tca@pirates.cs.swt.edu>
  111346. Organization: Utah State University
  111347. Lines: 34
  111348. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  111349.  
  111350. In article <3lvavp$tca@pirates.cs.swt.edu>, tm@astros.cs.swt.edu (Tom F McCabe) writes:
  111351. > I recently downloaded the new kermit 3.14 and 
  111352. > successfully run it over Novell's LANWP
  111353. > tcpip.exe and telapi.exe.   However, in reading
  111354. > the documentation in seems to imply that you don't
  111355. > need the tcpip.exe or telapi.exe to run ckermit;
  111356. > that is it implies that the equivalent functions
  111357. > are in ckermit 3.14.  Is that correct?
  111358. > When I try the following:
  111359. >     1. Put all the appropriate definitions in
  111360. >         my mscustom.ini - such as domain,
  111361. >         subnetmasks, etc.
  111362. >     2. Load the lsl and ethernet driver (exp16odi)
  111363. >     3. run kermit 3.14
  111364. >     4. In ckermit type:  set port tcp/ip nyssa.swt.edu
  111365. >                          connect
  111366. >        I get the error:
  111367. >         Cannot access ip type packets
  111368. >         Unable to initialize tcp/ip system, quitting
  111369. > Am I doing something obvious that's wrong?  Do i need to
  111370. > initialize other stuff?  
  111371. ----------
  111372.     First off, it's not C Kermit that you are running but a separate
  111373. product, MS-DOS Kermit.
  111374.     As the documentation explains, MSK has its own internal TCP/IP
  111375. stack, and it can be used as a pure ODI client (same as IPXODI or LWP/DOS).
  111376. You need to create a proper NET.CFG file for ODI, and the Kermit docs give
  111377. plenty of examples (don't be creative in NET.CFG, please). My guess is you
  111378. skipped dealing with NET.CFG.
  111379.     Joe D.
  111380.  
  111381. From news@columbia.edu Thu Apr  6 21:16:45 1995
  111382. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11051
  111383.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 6 Apr 1995 18:37:53 -0400
  111384. Received: by apakabar.cc.columbia.edu id AA27328
  111385.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 6 Apr 1995 18:37:46 -0400
  111386. Path: news.columbia.edu!panix!news.mathworks.com!uunet!in1.uu.net!news1.digital.com!nntp-hub2.barrnet.net!nntp-ucb.barrnet.net!jeeves.usfca.edu!noc.usfca.edu!noc.usfca.edu!zykin
  111387. From: zykin@noc.usfca.edu (David Zykin)
  111388. Newsgroups: comp.protocols.kermit.misc
  111389. Subject: How to get to modem on terminal server?
  111390. Date: 6 Apr 1995 21:16:45 GMT
  111391. Organization: University of San Francisco
  111392. Lines: 18
  111393. Message-Id: <3m1lnt$gne@noc.usfca.edu>
  111394. Nntp-Posting-Host: noc.usfca.edu
  111395. X-Newsreader: TIN [version 1.2 PL2]
  111396. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  111397.  
  111398. Can anyone tell me how to do this:
  111399.  
  111400. I need to set default to a directory on my VMS system, start ckermit, and 
  111401. grab MODEM1 on a terminal server named DEC1, then use the modem on that 
  111402. terminal server to dial out. I can't seem to find a way to get to the 
  111403. modem. I tried SET LINE MODEM1, and I get "no such device available".
  111404.  
  111405. Well okay, so it can't see the modem hanging off the server... what do I 
  111406. have to tell ckermit to get it to see the modem?
  111407.  
  111408. --
  111409.       |\_/|                    .-------------------------------------------.
  111410.       | @ @    Like... Woof!   |    Dave Zykin (zykin@noc.usfca.edu)       |
  111411.       |   <>              _    |                                           |
  111412.       |  _/\------____ ((| |)) | : A dog may bark all night, but his legs  |
  111413.       |               `--' |   |         will not grow longer.             |
  111414.   ____|_       ___|   |___.'   |                                           |
  111415.  /_/_____/____/_______|        `-------------------------------------------'
  111416.  
  111417. From news@columbia.edu Wed Apr  5 21:26:12 1995
  111418. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18561
  111419.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 6 Apr 1995 21:14:32 -0400
  111420. Received: by apakabar.cc.columbia.edu id AA10005
  111421.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 6 Apr 1995 21:14:31 -0400
  111422. Path: news.columbia.edu!news.cs.columbia.edu!news.nyc.pipeline.com!newsjunkie.ans.net!howland.reston.ans.net!spool.mu.edu!umn.edu!newsstand.tc.umn.edu!maroon.tc.umn.edu!crhertel
  111423. From: crhertel@maroon.tc.umn.edu (Christopher R Hertel)
  111424. Newsgroups: comp.protocols.kermit.misc
  111425. Subject: Script: (newbie) How to I echo & capture received data?
  111426. Date: 5 Apr 1995 21:26:12 GMT
  111427. Organization: University of Minnesota
  111428. Lines: 19
  111429. Message-Id: <3lv1tk$cha@epx.cis.umn.edu>
  111430. Nntp-Posting-Host: maroon.tc.umn.edu
  111431. Summary: Dialing into service.  Need to echo back.
  111432. Keywords: script kermit echo
  111433. X-Newsreader: TIN [version 1.2 PL2]
  111434. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  111435.  
  111436. Inquiry:
  111437.   I am new to Kermit, but I think that it can do what I'm trying to have 
  111438. done.
  111439.  
  111440. I want to be able to dial out to a service which, upon connection, will 
  111441. simply spume information back at me at 1200 baud.  I need to capture 
  111442. about 2000 bytes of that information *and* I need to echo the information 
  111443. back *as I receive it*.
  111444.  
  111445. So, as the data arrives at my end I need to copy it to a file *and* echo 
  111446. it back.  Oh, and I have to watch for certain characters, too (so that I 
  111447. know when to stop receiving and hang up the line).
  111448.  
  111449. Any info on how to... would be appreciated.
  111450.  
  111451. I look forward to any replies.
  111452.  
  111453. Chris Hertel
  111454. crh@ubiqx.mn.org
  111455.  
  111456. From news@columbia.edu Thu Apr  6 13:03:43 1995
  111457. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20390
  111458.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 6 Apr 1995 22:01:18 -0400
  111459. Received: by apakabar.cc.columbia.edu id AA14378
  111460.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 6 Apr 1995 22:01:16 -0400
  111461. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  111462. From: jrd@cc.usu.edu (Joe Doupnik)
  111463. Newsgroups: comp.protocols.kermit.misc
  111464. Subject: Re: resize (Re: Clobbering the Last Line)
  111465. Message-Id: <1995Apr6.190343.46739@cc.usu.edu>
  111466. Date: 6 Apr 95 19:03:43 MDT
  111467. References: <1995Mar28.230356.88847@kuhub.cc.ukans.edu> <3leg32$75i@apakabar.cc.columbia.edu> <3m0fa8$53k@kronos.fmi.fi>
  111468. Organization: Utah State University
  111469. Lines: 28
  111470. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  111471.  
  111472. In article <3m0fa8$53k@kronos.fmi.fi>, hurtta@dionysos.fmi.fi (Kari E. Hurtta) writes:
  111473. > fdc@watsun.cc.columbia.edu (Frank da Cruz) writes:
  111474. > ;In article <1995Mar28.230356.88847@kuhub.cc.ukans.edu>,
  111475. > ;Ken T. Takusagawa <ktakusa@falcon.cc.ukans.edu> wrote:
  111476. > ;>1.  How can I keep the last line of my screen from being clobbered
  111477. > ;>whenever I use the UNIX "more" command?
  111478. > ;>
  111479. > ;By making your UNIX screen size agree with Kermit's screen size.
  111480. > ;By default, both are 24 and everything works right.  If you are using
  111481. > ;some other screen size on the PC, try telling UNIX to:
  111482. > ;  `eval resize`
  111483. > By to way. This didn't work correctly with MS-DOS KERMIT VERSION 3.14.
  111484. > (It works correctly with earlier Kermit version). Is this corrected?
  111485. > (I mentioned this somewhere in January 1995, but I missed possible answers.
  111486. >  This news server works quite unreliable.)
  111487. > --
  111488. > - Kari E. Hurtta                             /  Eldmd on monimutkaista
  111489. >   Kari.Hurtta@FMI.FI                 puh. (90) 1929 658
  111490. >   {hurtta,root,Postmaster}@dionysos.FMI.FI
  111491. -------------
  111492.     I'm not quite sure what the "this" is in "this didn't work correctly"
  111493. above. Works fine here to Unix machinery and VAXen etc. Perhaps you'd care
  111494. to repeat the observations after checking the characteristics of your Unix
  111495. host.
  111496.     Joe D.
  111497.  
  111498. From news@columbia.edu Thu Apr  6 00:39:28 1995
  111499. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25517
  111500.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 6 Apr 1995 23:59:37 -0400
  111501. Received: by apakabar.cc.columbia.edu id AA23265
  111502.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 6 Apr 1995 23:59:36 -0400
  111503. Newsgroups: comp.protocols.kermit.misc
  111504. Path: news.columbia.edu!news.cs.columbia.edu!news.nyc.pipeline.com!newsjunkie.ans.net!howland.reston.ans.net!ix.netcom.com!netcom.com!tstevens
  111505. From: tstevens@netcom.com (Edward Stevens)
  111506. Subject: C-kermit on Linux problem
  111507. Message-Id: <tstevensD6L8Hs.259@netcom.com>
  111508. Organization: NETCOM On-line Communication Services (408 261-4700 guest)
  111509. Date: Thu, 6 Apr 1995 00:39:28 GMT
  111510. Lines: 14
  111511. Sender: tstevens@netcom10.netcom.com
  111512. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  111513.  
  111514.  
  111515.     I keep getting a 'can't initialize modem' complaint after C-kermit
  111516. times out after the dial command. My modem is hooked to com2 on dos and I
  111517. am trying to use the 1.89 ? version for Linux. I have 'set line' to
  111518. /dev/tty2, /dev/ttys2 and my Hayes compatible seems to respond (flash)
  111519. ok, but the dial command times out with the 'can't initialize' message.
  111520. Any hints ? Thanks.
  111521.  
  111522. Ted
  111523. -- 
  111524. >>>>>                  ZumaSoft (TEL) V/F 310/457-6263          <<<<<
  111525. <<<<<     OO Analysis & Design, Enterprise Modeling, Training   >>>>>
  111526. >>>>>                        tstevens@netcom.com                <<<<<
  111527. <<<<<     'Thank you for your wine, California' - Mick Jagger   >>>>>
  111528.  
  111529. From news@columbia.edu Fri Apr  7 03:36:33 1995
  111530. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06153
  111531.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 7 Apr 1995 03:48:46 -0400
  111532. Received: by apakabar.cc.columbia.edu id AA04976
  111533.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 7 Apr 1995 03:48:45 -0400
  111534. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news.cac.psu.edu!news.tc.cornell.edu!travelers.mail.cornell.edu!newstand.syr.edu!netnews
  111535. From: vefatica@syr.edu (Vincent Fatica)
  111536. Newsgroups: comp.protocols.kermit.misc
  111537. Subject: Re: C-kermit on Linux problem
  111538. Date: Fri, 07 Apr 1995 03:36:33 GMT
  111539. Organization: Syracuse University
  111540. Lines: 35
  111541. Message-Id: <3m2ch6$4id@newstand.syr.edu>
  111542. References: <tstevensD6L8Hs.259@netcom.com>
  111543. Reply-To: vefatica@syr.edu
  111544. Nntp-Posting-Host: sudial-145.syr.edu
  111545. X-Newsreader: Forte Free Agent v0.46
  111546. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  111547.  
  111548. tstevens@netcom.com (Edward Stevens) wrote:
  111549.  
  111550.  
  111551. >    I keep getting a 'can't initialize modem' complaint after C-kermit
  111552. >times out after the dial command. My modem is hooked to com2 on dos and I
  111553. >am trying to use the 1.89 ? version for Linux. I have 'set line' to
  111554. >/dev/tty2, /dev/ttys2 and my Hayes compatible seems to respond (flash)
  111555. >ok, but the dial command times out with the 'can't initialize' message.
  111556. >Any hints ? Thanks.
  111557.  
  111558. Ted,
  111559.  
  111560. The dial-out devices in Linux are called /dev/cua0 ... 3 (for COM1 ... 4). 
  111561. [/dev/ttyS0 ... S3 are the dial-in devices (physically the same).]
  111562.  
  111563. Also, if the port you're using (sounds like COM3) does not have the default
  111564. address and IRQ, then a "setserial" command should be used in one of the
  111565. start-up files (/etc/rc.d/rc.local is good) to provide the necessary
  111566. information.
  111567.  
  111568. And too, if it's really COM3 (cua2 or S2) you're dealing with, and it does
  111569. have the default IRQ, then it's using an IRQ also used by COM1 (or maybe
  111570. it's COM2) and there may be a conflict. See "man setserial"; the syntax is
  111571. straightforward.
  111572.  
  111573. I hope it helps.
  111574.  
  111575.  - Vince
  111576.  
  111577. *************************************
  111578.    Vincent Fatica
  111579.    Syracuse University Mathematics
  111580.    vefatica@syr.edu
  111581. *************************************
  111582.  
  111583.  
  111584. From news@columbia.edu Fri Apr  7 02:26:50 1995
  111585. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07115
  111586.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 7 Apr 1995 04:13:22 -0400
  111587. Received: by apakabar.cc.columbia.edu id AA05671
  111588.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 7 Apr 1995 04:13:21 -0400
  111589. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news.sprintlink.net!cs.utexas.edu!news.swt.edu!pirates.cs.swt.edu!astros.cs.swt.edu!tm
  111590. From: tm@astros.cs.swt.edu (Tom F McCabe)
  111591. Newsgroups: comp.protocols.kermit.misc
  111592. Subject: Re: kermit over ethernet in dos ?
  111593. Date: 7 Apr 1995 02:26:50 GMT
  111594. Organization: Computer Science Department, Southwest Texas State University
  111595. Lines: 47
  111596. Message-Id: <3m27ta$hqr@pirates.cs.swt.edu>
  111597. References: <3lvavp$tca@pirates.cs.swt.edu> <1995Apr6.134428.46690@cc.usu.edu>
  111598. Nntp-Posting-Host: astros.cs.swt.edu
  111599. X-Newsreader: TIN [version 1.2 PL2]
  111600. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  111601.  
  111602. Joe Doupnik (jrd@cc.usu.edu) wrote:
  111603. : In article <3lvavp$tca@pirates.cs.swt.edu>, tm@astros.cs.swt.edu (Tom F McCabe) writes:
  111604. : > 
  111605. : > I recently downloaded the new kermit 3.14 and 
  111606. : > successfully run it over Novell's LANWP
  111607. : > tcpip.exe and telapi.exe.   However, in reading
  111608. : > the documentation in seems to imply that you don't
  111609. : > need the tcpip.exe or telapi.exe to run ckermit;
  111610. : > that is it implies that the equivalent functions
  111611. : > are in ckermit 3.14.  Is that correct?
  111612. : > 
  111613. : > When I try the following:
  111614. : >     1. Put all the appropriate definitions in
  111615. : >         my mscustom.ini - such as domain,
  111616. : >         subnetmasks, etc.
  111617. : >     2. Load the lsl and ethernet driver (exp16odi)
  111618. : >     3. run kermit 3.14
  111619. : >     4. In ckermit type:  set port tcp/ip nyssa.swt.edu
  111620. : >                          connect
  111621. : >        I get the error:
  111622. : >         Cannot access ip type packets
  111623. : >         Unable to initialize tcp/ip system, quitting
  111624. : > 
  111625. : > Am I doing something obvious that's wrong?  Do i need to
  111626. : > initialize other stuff?  
  111627. : > 
  111628. : ----------
  111629. :     First off, it's not C Kermit that you are running but a separate
  111630. : product, MS-DOS Kermit.
  111631. :     As the documentation explains, MSK has its own internal TCP/IP
  111632. : stack, and it can be used as a pure ODI client (same as IPXODI or LWP/DOS).
  111633. : You need to create a proper NET.CFG file for ODI, and the Kermit docs give
  111634. : plenty of examples (don't be creative in NET.CFG, please). My guess is you
  111635. : skipped dealing with NET.CFG.
  111636. :     Joe D.
  111637.  
  111638.  
  111639. Yes that was the problem all right.  I had put the stuff in net.cfg
  111640. but I had two net.cfgs and either ms kermit wasn't finding it or
  111641. was getting the wrong one.  Thanks for all who responded.
  111642.  
  111643. BTW this is the best newsgroup I have seen for the 'experts' responding.
  111644. You are to be congratulated and thanked.
  111645.  
  111646. tom mccabe
  111647. tm@astros.cs.swt.edu
  111648.  
  111649.  
  111650. From news@columbia.edu Thu Apr  6 06:47:46 1995
  111651. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07831
  111652.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 7 Apr 1995 04:31:49 -0400
  111653. Received: by apakabar.cc.columbia.edu id AA06401
  111654.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 7 Apr 1995 04:31:48 -0400
  111655. Path: news.columbia.edu!news.cs.columbia.edu!news.nyc.pipeline.com!newsjunkie.ans.net!howland.reston.ans.net!vixen.cso.uiuc.edu!newsrelay.iastate.edu!newsxfer.itd.umich.edu!jobone!ukma!mik.uky.edu!jpsum00
  111656. From: Joey Sum <jpsum00@mik.uky.edu>
  111657. Newsgroups: comp.protocols.kermit.misc
  111658. Subject: How about kermite/2?
  111659. Date: 6 Apr 95 06:47:46 GMT
  111660. Organization: University of Kentucky, Dept. of Math Sciences
  111661. Lines: 10
  111662. Message-Id: <jpsum00.797150866@mik.uky.edu>
  111663. Nntp-Posting-Host: nx43.mik.uky.edu
  111664. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  111665.  
  111666. Hi,
  111667.      I run Kermit/2.  After helping a friend setup MS-Kermit, I noticed 
  111668. that the DOS version comes with a Kermite and Kerlite versions, for 
  111669. people who have no need of TCP/IP support and terminal support, 
  111670. respectively.  I was wondering if such things could be included in the 
  111671. next release of C-Kermit/2?
  111672.  
  111673. Thanks,
  111674. Joey
  111675.  
  111676.  
  111677. From news@columbia.edu Wed Apr  5 00:39:54 1995
  111678. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09010
  111679.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 7 Apr 1995 05:14:44 -0400
  111680. Received: by apakabar.cc.columbia.edu id AA07398
  111681.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 7 Apr 1995 05:14:43 -0400
  111682. Newsgroups: comp.protocols.kermit.misc
  111683. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news.moneng.mei.com!uwm.edu!news.alpha.net!news.mathworks.com!uunet!in1.uu.net!newsflash.concordia.ca!news.mcgill.ca!clouso.crim.ca!sunqbc.risq.net!hobbit.ireq.hydro.qc.ca!ratel
  111684. From: ratel@ireq-ccfm.hydro.qc.ca (Gilles Ratel 8720)
  111685. Subject: switch:  "tektronix mode" <-> "vt100 mode" ?
  111686. Message-Id: <D6JDuI.A8x@ireq.hydro.qc.ca>
  111687. Sender: news@ireq.hydro.qc.ca (Netnews Admin)
  111688. Reply-To: ratel@ireq-ccfm.hydro.qc.ca
  111689. Organization: Institut de recherche d'Hydro-Quebec, Varennes, Canada
  111690. Date: Wed, 5 Apr 1995 00:39:54 GMT
  111691. Lines: 10
  111692. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  111693.  
  111694.  
  111695.   With Kermit for DOS, 
  111696.  
  111697.     How do you do change "tektronix mode" -> "vt100 mode"
  111698.  
  111699.       {what key  for togle "textronix" <-> "vt100"}
  111700.  
  111701. Thanks,
  111702.  
  111703. Gilles Ratel
  111704.  
  111705. From news@columbia.edu Fri Apr  7 04:13:58 1995
  111706. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09137
  111707.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 7 Apr 1995 05:18:05 -0400
  111708. Received: by apakabar.cc.columbia.edu id AA07685
  111709.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 7 Apr 1995 05:18:03 -0400
  111710. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news.cac.psu.edu!news.tc.cornell.edu!travelers.mail.cornell.edu!newstand.syr.edu!netnews
  111711. From: vefatica@syr.edu (Vincent Fatica)
  111712. Newsgroups: comp.protocols.kermit.misc
  111713. Subject: Re: C-kermit on Linux problem
  111714. Date: Fri, 07 Apr 1995 04:13:58 GMT
  111715. Organization: Syracuse University
  111716. Lines: 27
  111717. Message-Id: <3m2ena$4uc@newstand.syr.edu>
  111718. References: <tstevensD6L8Hs.259@netcom.com> <3m2ch6$4id@newstand.syr.edu>
  111719. Reply-To: vefatica@syr.edu
  111720. Nntp-Posting-Host: sudial-145.syr.edu
  111721. X-Newsreader: Forte Free Agent v0.46
  111722. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  111723.  
  111724. vefatica@syr.edu (Vincent Fatica) wrote:
  111725.  
  111726. ... some stuff, but he had missed the fact that Ted said the modem was on
  111727. DOS's COM2.
  111728.  
  111729. If that's the case, Ted, you want to "set line /dev/cua1".
  111730.  
  111731. /dev/cua0=COM1, /dev/cua1=COM2, et c.
  111732.  
  111733. You probably won't need the setserial command since it's likely that
  111734. /dev/cua1 is using the normal address and IRQ.
  111735.  
  111736. FYI, the devices /dev/ttyS0, /dev/ttyS1, et c. are also COM1, COM2, et c.
  111737. They're for incoming calls; say you wanted your modem to answer the phone
  111738. and have the caller be offered a login prompt ... then you'd run a "getty"
  111739. on one of the /dev/ttyS1 and tell the modem to answer.
  111740.  
  111741. Sorry I wasn't so precise the first time.
  111742.  
  111743.  - Vince
  111744.  
  111745. *************************************
  111746.    Vincent Fatica
  111747.    Syracuse University Mathematics
  111748.    vefatica@syr.edu
  111749. *************************************
  111750.  
  111751.  
  111752. From news@columbia.edu Fri Apr  7 11:44:43 1995
  111753. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29002
  111754.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 7 Apr 1995 07:44:48 -0400
  111755. Received: by apakabar.cc.columbia.edu id AA27343
  111756.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 7 Apr 1995 07:44:46 -0400
  111757. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  111758. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  111759. Newsgroups: comp.protocols.kermit.misc
  111760. Subject: Re: How about kermite/2?
  111761. Date: 7 Apr 1995 11:44:43 GMT
  111762. Organization: Columbia University
  111763. Lines: 26
  111764. Message-Id: <3m38jb$qmc@apakabar.cc.columbia.edu>
  111765. References: <jpsum00.797150866@mik.uky.edu>
  111766. Nntp-Posting-Host: watsun.cc.columbia.edu
  111767. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  111768.  
  111769. In article <jpsum00.797150866@mik.uky.edu>,
  111770. Joey Sum  <jpsum00@mik.uky.edu> wrote:
  111771. >Hi,
  111772. >     I run Kermit/2.  After helping a friend setup MS-Kermit, I noticed 
  111773. >that the DOS version comes with a Kermite and Kerlite versions, for 
  111774. >people who have no need of TCP/IP support and terminal support, 
  111775. >respectively.  I was wondering if such things could be included in the 
  111776. >next release of C-Kermit/2?
  111777.  
  111778. The real question is: "under OS/2 what do you gain by creating a vareity
  111779. of version?"  The answer is not much.
  111780.  
  111781. The reason for the different version of MS-DOS Kermit is the DOS 640k
  111782. memory limit.  Under OS/2, this is not an issue.  Executable code which
  111783. is never used is never loaded.
  111784.  
  111785. OS/2 C-Kermit already does have much of its TCP/IP is separate DLLs.
  111786. One DLL for each TCP/IP product supported.  These DLLs are optional.
  111787.  
  111788. The savings of some disk space alone is not a good enough reason to have 
  111789. to support multiple versions.
  111790.  
  111791. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  111792. "C-Kermit: available on more platforms than any other communications software."
  111793. "Kermit FTP: sending files whenever and wherever they are needed."
  111794.   OS/2 version 5A(190): ftp://kermit.columbia.edu/kermit/archives/cko190.zip 
  111795.  
  111796. From news@columbia.edu Fri Apr  7 13:51:23 1995
  111797. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21145
  111798.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 7 Apr 1995 09:51:31 -0400
  111799. Received: by apakabar.cc.columbia.edu id AA07710
  111800.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 7 Apr 1995 09:51:29 -0400
  111801. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  111802. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  111803. Newsgroups: comp.protocols.kermit.misc
  111804. Subject: Re: switch:  "tektronix mode" <-> "vt100 mode" ?
  111805. Date: 7 Apr 1995 13:51:23 GMT
  111806. Organization: Columbia University
  111807. Lines: 24
  111808. Message-Id: <3m3g0r$7gi@apakabar.cc.columbia.edu>
  111809. References: <D6JDuI.A8x@ireq.hydro.qc.ca>
  111810. Nntp-Posting-Host: watsun.cc.columbia.edu
  111811. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  111812.  
  111813. In article <D6JDuI.A8x@ireq.hydro.qc.ca>,
  111814. Gilles Ratel 8720 <ratel@ireq-ccfm.hydro.qc.ca> wrote:
  111815. >  With Kermit for DOS, 
  111816. >    How do you do change "tektronix mode" -> "vt100 mode"
  111817. >      {what key  for togle "textronix" <-> "vt100"}
  111818. >
  111819. As explained on page 100 of the French-language manual:
  111820.  
  111821.   Christine M. Gianone, "Kermit MS-DOS mode d'emploi", Heinz Schiefer
  111822.   & Cie., Versailles (1993), 406 pages, ISBN 2-901143-20-2.
  111823.  
  111824. and on page 85 of the English edition:
  111825.  
  111826.   Christine M. Gianone, "Using MS-DOS Kermit", Second Edition, Digital
  111827.   Press / Butterworth-Heinemann, Woburn, MA, 1992, 345 pages, ISBN
  111828.   1-55558-082-3.
  111829.  
  111830. the key is Alt-minus.  That is, hold down the Alt key and press the top-
  111831. rank minus key (the one that is between 0 and equals sign).  This switches
  111832. between graphics mode and text mode.
  111833.  
  111834. NOTE: The French edition is also available from Columbia University.
  111835.  
  111836. - Frank
  111837.  
  111838. From news@columbia.edu Fri Apr  7 13:58:29 1995
  111839. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21514
  111840.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 7 Apr 1995 09:58:37 -0400
  111841. Received: by apakabar.cc.columbia.edu id AA08207
  111842.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 7 Apr 1995 09:58:35 -0400
  111843. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  111844. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  111845. Newsgroups: comp.protocols.kermit.misc
  111846. Subject: Re: Script: (newbie) How to I echo & capture received data?
  111847. Date: 7 Apr 1995 13:58:29 GMT
  111848. Organization: Columbia University
  111849. Lines: 23
  111850. Message-Id: <3m3ge5$80b@apakabar.cc.columbia.edu>
  111851. References: <3lv1tk$cha@epx.cis.umn.edu>
  111852. Nntp-Posting-Host: watsun.cc.columbia.edu
  111853. Keywords: script kermit echo
  111854. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  111855.  
  111856. In article <3lv1tk$cha@epx.cis.umn.edu>,
  111857. Christopher R Hertel <crhertel@maroon.tc.umn.edu> wrote:
  111858. : I am new to Kermit, but I think that it can do what I'm trying to have 
  111859. : done.
  111860. Which Kermit program are you talking about?  Since there are so many of
  111861. them, it is always a good idea to say which one.
  111862.  
  111863. : I want to be able to dial out to a service which, upon connection, will 
  111864. : simply spume information back at me at 1200 baud.  I need to capture 
  111865. : about 2000 bytes of that information *and* I need to echo the information 
  111866. : back *as I receive it*.
  111867. : So, as the data arrives at my end I need to copy it to a file *and* echo 
  111868. : it back.  Oh, and I have to watch for certain characters, too (so that I 
  111869. : know when to stop receiving and hang up the line).
  111870. Please pick up a copy of the appropriate manual, "Using MS-DOS Kermit" or
  111871. "Using C-Kermit".  Read the chapters on script programming, especially the
  111872. INPUT, OUTPUT, and LOG SESSION commands.  These will show you exactly what
  111873. to do.
  111874.  
  111875. - Frank
  111876.  
  111877. From news@columbia.edu Thu Apr  6 12:58:44 1995
  111878. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22969
  111879.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 7 Apr 1995 10:24:41 -0400
  111880. Received: by apakabar.cc.columbia.edu id AA10614
  111881.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 7 Apr 1995 10:24:39 -0400
  111882. Newsgroups: comp.protocols.kermit.misc
  111883. Path: news.columbia.edu!news.cs.columbia.edu!news.nyc.pipeline.com!newsjunkie.ans.net!howland.reston.ans.net!swrinde!emory!news-feed-1.peachnet.edu!concert!mercury!hkennedy
  111884. From: hkennedy@mercury.ncat.edu
  111885. Subject: Set Key and LInux ckermit
  111886. Message-Id: <1995Apr6.125844.22119@mercury.ncat.edu>
  111887. Organization: North Carolina Agricultural and Technical State University
  111888. Date: Thu, 6 Apr 1995 12:58:44 GMT
  111889. Lines: 12
  111890. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  111891.  
  111892. HI,
  111893.  
  111894.  
  111895. I tried setting the function keys with linux ckermit, but all the function
  111896. keys return two codes \27\xx. What happens is that set key won't take the
  111897. function keys. Is there a work around this situation?
  111898.  
  111899. Thanks,
  111900.  
  111901. Helen
  111902. hkennedy@ncat.edu
  111903.  
  111904.  
  111905. From news@columbia.edu Fri Apr  7 16:54:47 1995
  111906. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03657
  111907.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 7 Apr 1995 12:54:56 -0400
  111908. Received: by apakabar.cc.columbia.edu id AA24100
  111909.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 7 Apr 1995 12:54:54 -0400
  111910. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  111911. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  111912. Newsgroups: comp.protocols.kermit.misc
  111913. Subject: Re: Set Key and LInux ckermit
  111914. Date: 7 Apr 1995 16:54:47 GMT
  111915. Organization: Columbia University
  111916. Lines: 11
  111917. Message-Id: <3m3qon$ngv@apakabar.cc.columbia.edu>
  111918. References: <1995Apr6.125844.22119@mercury.ncat.edu>
  111919. Nntp-Posting-Host: watsun.cc.columbia.edu
  111920. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  111921.  
  111922. In article <1995Apr6.125844.22119@mercury.ncat.edu>,
  111923.  <hkennedy@mercury.ncat.edu> wrote:
  111924. >I tried setting the function keys with linux ckermit, but all the function
  111925. >keys return two codes \27\xx. What happens is that set key won't take the
  111926. >function keys. Is there a work around this situation?
  111927. >
  111928. UNIX (including Linux) C-Kermit does not have direct access to BIOS-level
  111929. scan codes.  So if you want to map F keys and other non-character keys,
  111930. you have to do it outside of Kermit.
  111931.  
  111932. - Frank
  111933.  
  111934. From news@columbia.edu Thu Apr  6 04:49:11 1995
  111935. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11894
  111936.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 8 Apr 1995 01:59:31 -0400
  111937. Received: by apakabar.cc.columbia.edu id AA24825
  111938.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 8 Apr 1995 01:59:29 -0400
  111939. Newsgroups: comp.protocols.kermit.misc
  111940. Path: news.columbia.edu!panix!news.mathworks.com!news.ultranet.com!news.sprintlink.net!howland.reston.ans.net!math.ohio-state.edu!uwm.edu!uwvax!newssinet!news.u-tokyo.ac.jp!wnoc-tyo-news!news.join.ad.jp!aoba!akiu!sakunami!zws0!owani!ono
  111941. From: ono@cc.hirosaki-u.ac.jp (Takeshi Onoda)
  111942. Subject: Help fj.kermit from silly guys.
  111943. Sender: ono@owani.cc.hirosaki-u.ac.jp (Takeshi Onoda)
  111944. Message-Id: <1995Apr6.044911.10695@owani.cc.hirosaki-u.ac.jp>
  111945. Date: Thu, 6 Apr 1995 04:49:11 GMT
  111946. Lines: 232
  111947. Organization: Information Processing Center, Hirosaki Univ., Japan
  111948. X-Newsreader: mnews [version 1.17] 1994-01/27(Thu)
  111949. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  111950.  
  111951. Hello. I am posting from Japan, and using computers 
  111952. with the programs which support the `kermit' protocol 
  111953. and Japanese Language. 
  111954.  
  111955. We kermit users in Japan have the newsgroup named fj.kermit 
  111956. which looks like this newsgroup in Japan. `fj' means `From 
  111957. Japan', so many articles are written by Japanese language 
  111958. (a Japanese font needs two or more bytes of code) that you 
  111959. can read them with some software which can disp Japanese fonts. 
  111960.  
  111961. About a month ago, some guys started to post silly messages 
  111962. to this newsgroup. We thought that they were mistaking this for 
  111963. the Kermit in the Sesami Street at first, so write them that. 
  111964. But they were not. They have been posting more and more silly 
  111965. and/or sexcial messages, laughing at us because our articles 
  111966. are written by Japanese which they can't read and understand. 
  111967. They ignoring our cautions. We Japanese kermit users are lost 
  111968. in thought. Please somebody stop their act. Do you know what 
  111969. we shall do? Thanks.
  111970.  
  111971. The guys's e-mail adress are 
  111972.      Lemonhead <karpiak@ux5.cso.uiuc.edu>
  111973.      kermella@aol.com (KERMELLA)
  111974.      Magnolia Thunderpussy <dgrubaug@ux5.cso.uiuc.edu>
  111975.      Jesus Christ <dgrubaug@ux5.cso.uiuc.edu>
  111976. and following are some examples of their messages. 
  111977.  
  111978. ------Ex.1----from here------from here--------------
  111979. Path: owani!zws0!akiu!katahira!wapiko!fukagawa!monju!wnoc-tyo-news!wnoc-sfc-news!venus.sun.com!cs.utexas.edu!howland.reston.ans.net!newsjunkie.ans.net!newstf01.news.aol.com!newsbf02.news.aol.com!not-for-mail
  111980. From: kermella@aol.com (KERMELLA)
  111981. Newsgroups: fj.kermit
  111982. Subject: Kermit the frog Sesame Street News
  111983. Date: 4 Apr 1995 16:09:25 -0400
  111984. Organization: America Online, Inc. (1-800-827-6364)
  111985. Lines: 3
  111986. Sender: root@newsbf02.news.aol.com
  111987. Message-ID: <3ls91l$3c9@newsbf02.news.aol.com>
  111988. Reply-To: kermella@aol.com (KERMELLA)
  111989. NNTP-Posting-Host: newsbf02.mail.aol.com
  111990.  
  111991. Kermit the frog reporting for the internet. Computer nerds have taken over
  111992. my very own newsgroup. No longer do my fans speak of my beautiful green
  111993. body, they talk about foreign computing. HELP
  111994.  
  111995. ------Ex.2----from here------from here--------------
  111996. Path: owani!zws0!akiu!wnoc-snd-ss2!wnoc-sfc-news!venus.sun.com!cs.utexas.edu!howland.reston.ans.net!vixen.cso.uiuc.edu!ux5.cso.uiuc.edu!karpiak
  111997. From: Lemonhead <karpiak@ux5.cso.uiuc.edu>
  111998. Newsgroups: fj.kermit
  111999. Subject: Re: Kermit the frog Sesame Street News
  112000. Date: Tue, 4 Apr 1995 15:43:23 -0500
  112001. Organization: University of Illinois at Urbana
  112002. Lines: 23
  112003. Message-ID: <Pine.Sola.3.91.950404154240.2043D-100000@ux5.cso.uiuc.edu>
  112004. References: <3ls91l$3c9@newsbf02.news.aol.com>
  112005. NNTP-Posting-Host: ux5.cso.uiuc.edu
  112006. Mime-Version: 1.0
  112007. Content-Type: TEXT/PLAIN; charset=US-ASCII
  112008. In-Reply-To: <3ls91l$3c9@newsbf02.news.aol.com> 
  112009.  
  112010. On 4 Apr 1995, KERMELLA wrote:
  112011.  
  112012. > Kermit the frog reporting for the internet. Computer nerds have taken over
  112013. > my very own newsgroup. No longer do my fans speak of my beautiful green
  112014. > body, they talk about foreign computing. HELP
  112015. just ignore them Kerm, if they don't stop soon will sic Ms Piggy on em  
  112016. HIIIIIIIIIYAAAAAAAAAAAAAAAAAAAAAAAAA!!!!!!!!!!!!!!
  112017.  
  112018.  
  112019. --
  112020. {{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{}}}}}}}}}}}}}}}}}}}}}}}}
  112021. {You don't have to be rich to be my girl          : Kevin Karpiak         }
  112022. {You don't have to be cool to rule my world       : University of Illinois}
  112023. {Ain't no particular sign I'm more compatible with:  at Champaign-Urbana  }
  112024. {I just want you extra time                       :                       }
  112025. {And your kiss                                    : karpiak@uiuc.edu      } 
  112026. {        - Best Sung by: Tom Jones         : lemonhead@bastard.org }
  112027. {{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{}}}}}}}}}}}}}}}}}}}}}}}}
  112028.              KEEP AWAY!!! That is no way to use the vagina!
  112029.                     - Tim Cline
  112030.  
  112031. ------Ex.3----from here------from here--------------
  112032. Path: owani!zws0!akiu!katahira!wapiko!fukagawa!wnoc-tyo-news!wnoc-sfc-news!venus.sun.com!cs.utexas.edu!howland.reston.ans.net!vixen.cso.uiuc.edu!ux5.cso.uiuc.edu!karpiak
  112033. From: Lemonhead <karpiak@ux5.cso.uiuc.edu>
  112034. Newsgroups: fj.kermit
  112035. Subject: Re: Kermit the frog Sesame Street News
  112036. Date: Wed, 5 Apr 1995 02:14:59 -0500
  112037. Organization: University of Illinois at Urbana
  112038. Lines: 28
  112039. Message-ID: <Pine.Sola.3.91.950405021222.20559G-100000@ux5.cso.uiuc.edu>
  112040. References: <3ls91l$3c9@newsbf02.news.aol.com> <3lss5p$7pj@exa.onlab.ntt.jp>
  112041. NNTP-Posting-Host: ux5.cso.uiuc.edu
  112042. Mime-Version: 1.0
  112043. Content-Type: TEXT/PLAIN; charset=US-ASCII
  112044. In-Reply-To: <3lss5p$7pj@exa.onlab.ntt.jp> 
  112045.  
  112046. >  >> Kermit the frog reporting for the internet. Computer nerds have taken over
  112047. >  >> my very own newsgroup. No longer do my fans speak of my beautiful green
  112048. >  >> body, they talk about foreign computing. HELP
  112049. > Why don't you post to:
  112050. >     comp.protocols.kermit.announce
  112051. >     comp.protocols.kermit.misc
  112052. > More people can hear your report than fj.kermit.:-p
  112053. becuase those groups are obviously about computers and stuff, silly: 
  112054. COMP.protocols.etc, etc, etc
  112055.  
  112056. This is OBVIOUSLY about frog jelly: FJ.kermit
  112057.  
  112058. I think I need to repost the FAQ
  112059.  
  112060.  
  112061. --
  112062. {{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{}}}}}}}}}}}}}}}}}}}}}}}}
  112063. {You don't have to be rich to be my girl          : Kevin Karpiak         }
  112064. {You don't have to be cool to rule my world       : University of Illinois}
  112065. {Ain't no particular sign I'm more compatible with:  at Champaign-Urbana  }
  112066. {I just want you extra time                       :                       }
  112067. {And your kiss                                    : karpiak@uiuc.edu      } 
  112068. {        - Best Sung by: Tom Jones         : lemonhead@bastard.org }
  112069. {{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{}}}}}}}}}}}}}}}}}}}}}}}}
  112070.              KEEP AWAY!!! That is no way to use the vagina!
  112071.                     - Tim Cline
  112072.  
  112073. ------Ex.4----from here------from here--------------
  112074. Path: owani!zws0!akiu!katahira!wapiko!fukagawa!wnoc-tyo-news!wnoc-sfc-news!venus.sun.com!cs.utexas.edu!howland.reston.ans.net!vixen.cso.uiuc.edu!ux5.cso.uiuc.edu!karpiak
  112075. From: Lemonhead <karpiak@ux5.cso.uiuc.edu>
  112076. Newsgroups: fj.kermit
  112077. Subject: fj.kermit FAQ Posting ver. 1.1
  112078. Date: Wed, 5 Apr 1995 02:28:31 -0500
  112079. Organization: University of Illinois at Urbana
  112080. Lines: 92
  112081. Message-ID: <Pine.Sola.3.91.950405022329.28763A-100000@ux5.cso.uiuc.edu>
  112082. NNTP-Posting-Host: ux5.cso.uiuc.edu
  112083. Mime-Version: 1.0
  112084. Content-Type: TEXT/PLAIN; charset=US-ASCII
  112085.  
  112086.  
  112087.  
  112088. FAQ FOR FJ.KERMIT
  112089.  
  112090. 1. What does fj.kermit stand for?
  112091. fj.kermit stands for FrogJelly.Kermit, not- I reapeat- NOT "From Japan" 
  112092. as some frog h-hating detractors would have you believe.
  112093.  
  112094. 2. What is the purpose of this group?
  112095. to talk about frogjelly and kermit
  112096.  
  112097. 3. What's with these pesky people who insist that this newsgroup is 
  112098. supposed to be about some goddamn new-fangled Japanese program thinggy?
  112099. They're on crack
  112100.  
  112101. 4. Where can I get me a supply of that crack?
  112102. It's in the water system of Illinois
  112103.  
  112104. 5. What happens when you put the largest piece of Cap'n Crunch known to 
  112105. mankind in a testube of water, let it sit there until it decays into 
  112106. dirt, and then put a nice purty flower in said tube?
  112107. I don't know.
  112108.  
  112109. 6. Who the hell is this Mujibar Smedjkal?
  112110. He is the well-dressed styrofoam boy that lives on our bathroom light.  
  112111. He watches me while I shower and it excites me.  He also is conducting 
  112112. the Cap'n Experiment.
  112113.  
  112114. 7. Who put the "bop" in the "bop shoo wop shooo wop?"
  112115. Mujibar
  112116.  
  112117. 8. Who is the loudest person in the world?
  112118. Me.
  112119.  
  112120. 9. I have a roomfull of empty pizza boxes, what can I do with them?
  112121. Give them to me.
  112122.  
  112123. 10. What exactly is "free stuff?"
  112124. Anything you can grab, especially "slippery when wet" signs in Spanish.
  112125.  
  112126. 11. What's the best breakfast food ever?
  112127. Bacon, lots and lots of bacon.
  112128.  
  112129. 12. If you can fool the mamma, and you can fool the papa, who can you 
  112130. still not fool?
  112131. "The mirror baby" -Dick Vitale
  112132.  
  112133. 13. How many people actually read this group?
  112134. If you are reading this, one.  I can't read.
  112135.  
  112136. 14. What is the most effective put-down ever?
  112137. "Your Momma", you can't come back from that.
  112138.  
  112139. 15. What's your favorite line of Zulu poetry, Kevin?
  112140. "I saw a great man who kissed me on all of my thousand cheeks, and I knew 
  112141. then that I would know him forever."
  112142.  
  112143. 16.  If George Washington and Abraham Lincoln where to get into an 
  112144. all-out fight, who would win?
  112145. Lincoln, no contest.  George was a sickly old man who was so weak he 
  112146. couldn't even keep his teeth in, while Abe was a rugged and scrappy 
  112147. lumberjack/pioneer who could build a log cabin with his bare hands.  Abe 
  112148. also has the reach advantage.
  112149.  
  112150. 17. Who is Yoda?
  112151. A film star and our maid.
  112152.  
  112153. 18. I can't seem to understand what the hell this group is about.
  112154. That's not a question, so I don't have to produce an answer.
  112155.  
  112156. 19. If God were a musician, who would he be?
  112157. Bob Mould
  112158.  
  112159. 20. What is the official language of this newsgroup?
  112160. Red-blooded American English, and if you don't like it- Dave has a 
  112161. shotgun and a very large knife that might convince you.  America also has 
  112162. the Bomb and Japan doesn't :p
  112163.  
  112164. 21. How many questions are gonna be in this damn FAQ?
  112165. Umm, tis is good, I'm tired of typing.
  112166. --
  112167. {{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{}}}}}}}}}}}}}}}}}}}}}}}}
  112168. {You don't have to be rich to be my girl          : Kevin Karpiak         }
  112169. {You don't have to be cool to rule my world       : University of Illinois}
  112170. {Ain't no particular sign I'm more compatible with:  at Champaign-Urbana  }
  112171. {I just want you extra time                       :                       }
  112172. {And your kiss                                    : karpiak@uiuc.edu      } 
  112173. {        - Best Sung by: Tom Jones         : lemonhead@bastard.org }
  112174. {{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{}}}}}}}}}}}}}}}}}}}}}}}}
  112175.  
  112176. ----------Ex.s end--------Ex.s end---------
  112177.  
  112178. --
  112179. ONODA Takeshi : The Seismological Laboratory, Hirosaki University
  112180.  
  112181. From news@columbia.edu Thu Apr  6 05:40:56 1995
  112182. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11899
  112183.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 8 Apr 1995 01:59:49 -0400
  112184. Received: by apakabar.cc.columbia.edu id AA24836
  112185.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 8 Apr 1995 01:59:48 -0400
  112186. Newsgroups: comp.protocols.kermit.misc
  112187. Path: news.columbia.edu!panix!news.mathworks.com!news.ultranet.com!news.sprintlink.net!howland.reston.ans.net!math.ohio-state.edu!uwm.edu!uwvax!newssinet!news.u-tokyo.ac.jp!wnoc-tyo-news!news.join.ad.jp!aoba!akiu!sakunami!zws0!owani!ono
  112188. From: ono@cc.hirosaki-u.ac.jp (Takeshi Onoda)
  112189. Subject: Re: Help fj.kermit from silly guys.
  112190. Sender: ono@owani.cc.hirosaki-u.ac.jp (Takeshi Onoda)
  112191. Message-Id: <1995Apr6.054056.11558@owani.cc.hirosaki-u.ac.jp>
  112192. Date: Thu, 6 Apr 1995 05:40:56 GMT
  112193. Lines: 116
  112194. References: <1995Apr6.044911.10695@owani.cc.hirosaki-u.ac.jp>
  112195. Organization: Information Processing Center, Hirosaki Univ., Japan
  112196. X-Newsreader: mnews [version 1.17] 1994-01/27(Thu)
  112197. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  112198.  
  112199. There is new example of messages from one of those guys.
  112200. Plese note that Ex.6 contains Japanese code inside. 
  112201.  
  112202. -----Ex.5-----from here-----from here--------
  112203. Path: owani!zws0!sakunami!katahira!wapiko!fukagawa!wnoc-tyo-news!wnoc-sfc-news!venus.sun.com!cs.utexas.edu!howland.reston.ans.net!vixen.cso.uiuc.edu!ux5.cso.uiuc.edu!karpiak
  112204. From: Lemonhead <karpiak@ux5.cso.uiuc.edu>
  112205. Newsgroups: fj.kermit
  112206. Subject: Re: Kermit the frog Sesame Street News
  112207. Date: Wed, 5 Apr 1995 21:38:08 -0500
  112208. Organization: University of Illinois at Urbana
  112209. Lines: 42
  112210. Message-ID: <Pine.Sola.3.91.950405213535.17776B-100000@ux5.cso.uiuc.edu>
  112211. References: <3ls91l$3c9@newsbf02.news.aol.com>
  112212.     <3lss5p$7pj@exa.onlab.ntt.jp>
  112213.     <Pine.Sola.3.91.950405021222.20559G-100000@ux5.cso.uiuc.edu>
  112214.     <3ltsql$8en@exa.onlab.ntt.jp> <3ltt59$8en@exa.onlab.ntt.jp>
  112215. NNTP-Posting-Host: ux5.cso.uiuc.edu
  112216. Mime-Version: 1.0
  112217. Content-Type: TEXT/PLAIN; charset=US-ASCII
  112218. In-Reply-To: <3ltt59$8en@exa.onlab.ntt.jp> 
  112219.  
  112220. >  |becuase those groups are obviously about computers and stuff, silly: 
  112221. >  |COMP.protocols.etc, etc, etc
  112222. >  |
  112223. >  |This is OBVIOUSLY about frog jelly: FJ.kermit
  112224. > No. 
  112225. That's the best come-back you have?  "No" ???
  112226.  
  112227.  
  112228. > Newsgroups begin with FJ.* means news articles From Japan.
  112229. > Many other newsgroups which includes many articles from 
  112230. > japan are delivered to the newsgroups under FJ category.
  112231. >   fj.kermit is one of the newsgroup under FJ category 
  112232. > which is intended to discuss about the `kermit' program 
  112233. > used among computers.
  112234. > # Not the name of frog, you love.:-)
  112235. says you.  I've got a FAQ backing me, buddy boy.
  112236.  
  112237.  
  112238. >  |I think I need to repost the FAQ
  112239. > I think that you'd better change your newsgroup to 
  112240. > ALT.FJ.kermit, ALT.FJ.kermit.the.frog or some.
  112241. I think YOU better change you group to anal.japanese.computer.geeks
  112242.  
  112243.  
  112244.  
  112245.  
  112246.  
  112247. --
  112248. {{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{}}}}}}}}}}}}}}}}}}}}}}}}
  112249. {You don't have to be rich to be my girl          : Kevin Karpiak         }
  112250. {You don't have to be cool to rule my world       : University of Illinois}
  112251. {Ain't no particular sign I'm more compatible with:  at Champaign-Urbana  }
  112252. {I just want you extra time                       :                       }
  112253. {And your kiss                                    : karpiak@uiuc.edu      } 
  112254. {        - Best Sung by: Tom Jones         : lemonhead@bastard.org }
  112255. {{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{}}}}}}}}}}}}}}}}}}}}}}}}
  112256.              KEEP AWAY!!! That is no way to use the vagina!
  112257.                     - Tim Cline
  112258.  
  112259. -----Ex.6-----from here-----from here--------
  112260. Path: owani!zws0!sakunami!katahira!wapiko!fukagawa!wnoc-tyo-news!wnoc-sfc-news!venus.sun.com!cs.utexas.edu!howland.reston.ans.net!vixen.cso.uiuc.edu!ux5.cso.uiuc.edu!karpiak
  112261. From: Lemonhead <karpiak@ux5.cso.uiuc.edu>
  112262. Newsgroups: fj.kermit
  112263. Subject: Re: Kermit the frog Sesame Street News
  112264. Date: Wed, 5 Apr 1995 21:41:00 -0500
  112265. Organization: University of Illinois at Urbana
  112266. Lines: 33
  112267. Message-ID: <Pine.Sola.3.91.950405213841.17776C-100000@ux5.cso.uiuc.edu>
  112268. References: <3ls91l$3c9@newsbf02.news.aol.com>
  112269.  <KJM.95Apr5123458@Sunflower.yonka.ngy.mhi.co.jp>
  112270.  <3ltd50$ds3@t-server.t.u-tokyo.ac.jp> <KJM.95Apr6091505@Sunflower.yonka.ngy.mhi.co.jp>
  112271. NNTP-Posting-Host: ux5.cso.uiuc.edu
  112272. Mime-Version: 1.0
  112273. Content-Type: TEXT/PLAIN; charset=US-ASCII
  112274. In-Reply-To: <KJM.95Apr6091505@Sunflower.yonka.ngy.mhi.co.jp> 
  112275.  
  112276. On 6 Apr 1995, KOJIMA Hajime/=?ISO-2022-JP?B?GyRCPi5FZ0glGyhC?= wrote:
  112277.  
  112278. > <3ltd50$ds3@t-server.t.u-tokyo.ac.jp> $B$N5-;v$K$*$$$F(B
  112279. > tss@a.u-tokyo.ac.jp (SASABE Tetsuro) $B$5$s$O=q$-$^$7$?(B:
  112280. > | In article <KJM.95Apr5123458@Sunflower.yonka.ngy.mhi.co.jp>
  112281. > |     kjm@yonka.ngy.mhi.co.jp (KOJIMA
  112282. > |  Hajime/=?ISO-2022-JP?B?GyRCPi5FZ0glGyhC?=) writes:
  112283. > |
  112284. > || $B!!$d$C$Q!"(Bfj.kermit $B$O(B fj.protocols.kermit $B$H$+(B fj.net.protocols.kermit 
  112285. > || $B$H$+!"$=$&$$$&L>A0$KJQ$($?$[$&$,!"$h$$$N$G$O$J$$$G$7$g$&$+!)(B
  112286. > |
  112287. > |   $B;W$$IU$-$G$9$,!"0l;~E*$K(B moderated $B$K$9$k$H$$$&$N$O$I$&$G$7$g$&$+!#(B
  112288.  
  112289. I don't know what this is about cuz it's in that Pig Latin/Voodoo Hex 
  112290. language, but I DO know that whoever wrote it was talking about 
  112291. moderating this group or something.  I tell you there IS a moderator for 
  112292. this group and it's Kermit D. Frog, with a big jar of frogjelly in his 
  112293. hand about to spread it on his toast- yes TOAST
  112294.  
  112295.  
  112296. --
  112297. {{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{}}}}}}}}}}}}}}}}}}}}}}}}
  112298. {You don't have to be rich to be my girl          : Kevin Karpiak         }
  112299. {You don't have to be cool to rule my world       : University of Illinois}
  112300. {Ain't no particular sign I'm more compatible with:  at Champaign-Urbana  }
  112301. {I just want you extra time                       :                       }
  112302. {And your kiss                                    : karpiak@uiuc.edu      } 
  112303. {        - Best Sung by: Tom Jones         : lemonhead@bastard.org }
  112304. {{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{}}}}}}}}}}}}}}}}}}}}}}}}
  112305.              KEEP AWAY!!! That is no way to use the vagina!
  112306.                     - Tim Cline
  112307. ----------Ex.s end---------Ex.s end----------
  112308.  
  112309. --
  112310. ONODA Takeshi : The Seismological Laboratory, Hirosaki University
  112311.  
  112312. From news@columbia.edu Sat Apr  8 03:51:24 1995
  112313. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02720
  112314.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 8 Apr 1995 12:05:45 -0400
  112315. Received: by apakabar.cc.columbia.edu id AA08434
  112316.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 8 Apr 1995 12:05:43 -0400
  112317. Path: news.columbia.edu!panix!news.mathworks.com!news.ultranet.com!news.sprintlink.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  112318. From: jrd@cc.usu.edu (Joe Doupnik)
  112319. Newsgroups: comp.protocols.kermit.misc
  112320. Subject: Re: Can send but not receive?
  112321. Message-Id: <1995Apr8.095124.46913@cc.usu.edu>
  112322. Date: 8 Apr 95 09:51:24 MDT
  112323. References: <1995Apr7.121826.6495@vmsmail.gov.bc.ca>
  112324. Organization: Utah State University
  112325. Lines: 22
  112326. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  112327.  
  112328. In article <1995Apr7.121826.6495@vmsmail.gov.bc.ca>, sbrant@vmsmail.gov.bc.ca writes:
  112329. > Hi,
  112330. > I'm trying to set set up a file transfer script using DynaComm
  112331. > from FutureSoft and C-Kermit on VAX/VMS and am having problems
  112332. > receiving.
  112333. > I can send files in either binary or text format to the VAX
  112334. > with no problems.  However, when I try to receive, the transfer
  112335. > ends almost immediately.
  112336. > I have also tried using Kermit-32 on the VAX with exactly the
  112337. > same results.  The transfer to VAX worked fined, but the
  112338. > transfer back from the VAX failed immediately.
  112339. ----------
  112340.     I've not heard of DynaComm and thus have no idea of what it
  112341. does. But the symptoms are that it objects to the file transfer to
  112342. it. The standard diagnosis method is to log packets (LOG PACKET
  112343. command) on each side so technical people can see who said what to
  112344. whom. In the end, I think you will need to talk with the FutureSoft
  112345. people about their program. 
  112346.     Joe D.
  112347.  
  112348. p to kermit.columbia.edu, cd kermit/bin, get BINARY
  112349. file msvibm.zip. In there we discuss SLIP, and we also provide a SLIP Packet
  112350. Driver.
  112351.     There is no TN3270 emulation at this time in MSK.
  112352.     Joe D.
  112353.  
  112354. From news@columbia.edu Thu Apr  6 11:42:24 1995
  112355. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08130
  112356.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 8 Apr 1995 14:36:00 -0400
  112357. Received: by apakabar.cc.columbia.edu id AA18658
  112358.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 8 Apr 1995 14:35:58 -0400
  112359. Newsgroups: comp.protocols.kermit.misc
  112360. From: Mike@childsoc.demon.co.uk (Michael Bernardi)
  112361. Path: news.columbia.edu!news.cs.columbia.edu!news.nyc.pipeline.com!newsjunkie.ans.net!howland.reston.ans.net!pipex!peernews.demon.co.uk!childsoc.demon.co.uk!Mike
  112362. Subject: MS-Kermit 3.14/ Token Ring/ ODI
  112363. Organization: The Children's Society
  112364. Reply-To: Michael Bernardi <Mike@childsoc.demon.co.uk>
  112365. X-Newsreader: Demon Internet Simple News v1.29
  112366. Lines: 14
  112367. X-Posting-Host: childsoc.demon.co.uk
  112368. Date: Thu, 6 Apr 1995 11:42:24 +0000
  112369. Message-Id: <797168544snz@childsoc.demon.co.uk>
  112370. Sender: usenet@demon.co.uk
  112371. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  112372.  
  112373. Has ANYONE managed to get MSK314 to work with ODI drivers running over a
  112374. Token Ring network? In particular genuine IBM cards (TOKEN.COM).
  112375.  
  112376. In the early BETA versions this worked fine, but since I got the final
  112377. release the program ceases to connect :-(. I'd appreciate a look at copies
  112378. of working NET.CFGs if possible.
  112379.  
  112380. NB if the ODITRPKT shim is loaded THEN MSK314 works fine. But I wan to run
  112381. it in native ODI mode.
  112382. Mike
  112383. -- 
  112384.  Michael Bernardi        mike@childsoc.demon.co.uk (Internet) | Making lives
  112385.  The Children's Society, Edward Rudolf House, Margery Street, | worth living
  112386.  London, WC1X 0JL, UK    Voice: +44 171 837 4299     Charity Reg. No. 221124
  112387.  
  112388. From news@columbia.edu Fri Apr  7 14:01:00 1995
  112389. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10207
  112390.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 8 Apr 1995 15:39:16 -0400
  112391. Received: by apakabar.cc.columbia.edu id AA23101
  112392.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 8 Apr 1995 15:39:14 -0400
  112393. Path: news.columbia.edu!news.cs.columbia.edu!news.nyc.pipeline.com!newsjunkie.ans.net!howland.reston.ans.net!news.sprintlink.net!uunet!hearst.acc.Virginia.EDU!gems.vcu.edu!agnew
  112394. From: agnew@gems.vcu.edu (Brainwave Surfer)
  112395. Newsgroups: comp.protocols.kermit.misc
  112396. Subject: Re: How to get to modem on terminal server?
  112397. Message-Id: <1995Apr7.100100.741@gems.vcu.edu>
  112398. Date: 7 Apr 95 10:01:00 -0400
  112399. References: <3m1lnt$gne@noc.usfca.edu>
  112400. Organization: Medical College of Virginia
  112401. Lines: 24
  112402. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  112403.  
  112404. In article <3m1lnt$gne@noc.usfca.edu>, zykin@noc.usfca.edu (David Zykin) writes:
  112405. > Well okay, so it can't see the modem hanging off the server... what do I 
  112406. > have to tell ckermit to get it to see the modem?
  112407. your sysadmin has to declare the modem1 on the decserver as a lat service,
  112408. and gife you access to it... it's in the doccos somewhere. see the dialout
  112409. com file sniplet in the decserver's load image directory.  need more, mail me.
  112410.  
  112411. > --
  112412. >       |\_/|                    .-------------------------------------------.
  112413. >       | @ @    Like... Woof!   |    Dave Zykin (zykin@noc.usfca.edu)       |
  112414. >       |   <>              _    |                                           |
  112415. >       |  _/\------____ ((| |)) | : A dog may bark all night, but his legs  |
  112416. >       |               `--' |   |         will not grow longer.             |
  112417. >   ____|_       ___|   |___.'   |                                           |
  112418. >  /_/_____/____/_______|        `-------------------------------------------'
  112419.  
  112420. i love that sig.  
  112421.  
  112422.          /^^^\   \ /   Jim Agnew         | AGNEW@RUBY.VCU.EDU  (Internet)
  112423.         /      >  ||   Neurosurgery,     | AGNEW@VCUVAX        (Bitnet)
  112424.    /\_/     '   \  /   MCV-VCU           | This disc will self destruct in
  112425.  /________________>    Richmond, VA, USA | five seconds.  Good luck, Jim..."
  112426.  
  112427.  
  112428. From news@columbia.edu Sat Apr  8 16:40:26 1995
  112429. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10429
  112430.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 8 Apr 1995 15:47:46 -0400
  112431. Received: by apakabar.cc.columbia.edu id AA23558
  112432.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 8 Apr 1995 15:47:45 -0400
  112433. Path: news.columbia.edu!panix!news.mathworks.com!hookup!news.Direct.CA!scipio.cyberstore.ca!vanbc.wimsey.com!news.mindlink.net!news.bc.net!torn!hermes.acs.ryerson.ca!jupiter!aaab
  112434. From: aaab@jupiter.scs.Ryerson.CA (Al Aab - CNED/W94)
  112435. Newsgroups: comp.protocols.kermit.misc
  112436. Subject: Re: Capture macro
  112437. Date: 8 Apr 1995 16:40:26 GMT
  112438. Organization: S
  112439. Lines: 1
  112440. Message-Id: <3m6e9q$10in@hermes.acs.ryerson.ca>
  112441. References: <796463548snz@childsoc.demon.co.uk> <3lnbub$q0d@apakabar.cc.columbia.edu>
  112442. Nntp-Posting-Host: jupiter.scs.ryerson.ca
  112443. X-Newsreader: TIN [version 1.2 PL2]
  112444. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  112445.  
  112446. where can I download the manual ?
  112447.  
  112448. From news@columbia.edu Sat Apr  8 16:45:10 1995
  112449. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10434
  112450.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 8 Apr 1995 15:47:57 -0400
  112451. Received: by apakabar.cc.columbia.edu id AA23568
  112452.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 8 Apr 1995 15:47:56 -0400
  112453. Path: news.columbia.edu!panix!news.mathworks.com!hookup!news.Direct.CA!scipio.cyberstore.ca!vanbc.wimsey.com!news.mindlink.net!news.bc.net!torn!hermes.acs.ryerson.ca!jupiter!aaab
  112454. From: aaab@jupiter.scs.Ryerson.CA (Al Aab - CNED/W94)
  112455. Newsgroups: comp.protocols.kermit.misc
  112456. Subject: .         logon macros
  112457. Date: 8 Apr 1995 16:45:10 GMT
  112458. Organization: S
  112459. Lines: 6
  112460. Message-Id: <3m6eim$10in@hermes.acs.ryerson.ca>
  112461. Nntp-Posting-Host: jupiter.scs.ryerson.ca
  112462. X-Newsreader: TIN [version 1.2 PL2]
  112463. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  112464.  
  112465.  
  112466. I am a newbie.
  112467.  
  112468. How can I get the manual/FAQ/etc ?
  112469. How to automate logons (to several hosts) ?
  112470. Other protocols (x,y,z,ansi) available from kermit ?
  112471.  
  112472. From news@columbia.edu Sat Apr  8 09:33:44 1995
  112473. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16010
  112474.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 8 Apr 1995 18:34:12 -0400
  112475. Received: by apakabar.cc.columbia.edu id AA05629
  112476.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 8 Apr 1995 18:34:10 -0400
  112477. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  112478. From: jrd@cc.usu.edu (Joe Doupnik)
  112479. Newsgroups: comp.protocols.kermit.misc
  112480. Subject: Re: Multiple terminals under LAN WorkPlace??
  112481. Message-Id: <1995Apr8.153344.46943@cc.usu.edu>
  112482. Date: 8 Apr 95 15:33:44 MDT
  112483. References: <3m5jf5$rsa@gateway.dircsa.org.au>
  112484. Organization: Utah State University
  112485. Lines: 20
  112486. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  112487.  
  112488. In article <3m5jf5$rsa@gateway.dircsa.org.au>, arthur@gateway.dircsa.org.au (Arthur Marsh) writes:
  112489. > Over the last several months I've been trying to figure out a good
  112490. > solution for remote and LAN based multi-session terminals to a Unix
  112491. > machine (and also a connected TBBS bulletin board).
  112492. > This may sound like a comp.sys.novell/comp.os.netware.connectivity query,
  112493. > but Kermit is mentioned in both the following questions:
  112494. > On the LAN side, can MS-Kermit support more than one session under DOS/Windows
  112495. > and the Novell TCP/IP transport (e.g. SET PORT TELAPI)?
  112496.     Yes, of course. Note that Novell's TSU transitory helper simulates
  112497. COM ports. Just choose another COM port and use SET PORT BIOSx in Kermit.
  112498.  
  112499. > On the remote access side, can LAN Workplace (either DOS/Windows or OS/2)
  112500. > provide an environment for supporting multiple Kermit sessions over a PPP
  112501. > link?
  112502.     Huh? What's the bottom end have to do with Telnet? PPP could care
  112503. less about what's in an IP packet; it's just moved to the other end of the
  112504. wire.
  112505.     Joe D.
  112506.  
  112507. From news@columbia.edu Fri Apr  7 01:04:08 1995
  112508. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18018
  112509.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 8 Apr 1995 19:35:53 -0400
  112510. Received: by apakabar.cc.columbia.edu id AA09557
  112511.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 8 Apr 1995 19:35:51 -0400
  112512. Path: news.columbia.edu!news.cs.columbia.edu!news.nyc.pipeline.com!newsjunkie.ans.net!europa.chnt.gtegsc.com!cantaloupe.srv.cs.cmu.edu!das-news2.harvard.edu!news2.near.net!satisfied.apocalypse.org!news.mathworks.com!uunet!in1.uu.net!winternet.com!interactive.net!usenet
  112513. From: jvs@interactive.net (Joe)
  112514. Newsgroups: comp.protocols.kermit.misc
  112515. Subject: Help using Kermit via dial up SLIP to telnet TN3270
  112516. Date: 7 Apr 1995 01:04:08 GMT
  112517. Organization: Your Organization
  112518. Lines: 7
  112519. Message-Id: <3m2328$g6f@ns1.interactive.net>
  112520. Nntp-Posting-Host: user154.interactive.net
  112521. X-Newsreader: WinVN 0.92.6+
  112522. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  112523.  
  112524. I am using Kermit to dial directly by phone and emulate a vt320 and it works fine on the
  112525. university VM system. However, I would like to use telnet. I have a dial
  112526. up slip account and I use Trumpet winsock. Is it possible to use Kermit to control the screen and
  112527. the keyboard while using a SLIP? I have the telnet address of the university computer but regular
  112528. telnet does not work, they say you need TN3270. I figured Kermit might be able to work and emulate
  112529. a TN3270. First, is it possible and do I need other software? Second, how do I do it? I tried and it keeps
  112530. asking me for a "packet driver" but I am not running an ethernet card, I am using a modem. Thanks.
  112531.  
  112532. From news@columbia.edu Sun Apr  9 12:11:15 1995
  112533. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19127
  112534.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 9 Apr 1995 08:49:17 -0400
  112535. Received: by apakabar.cc.columbia.edu id AA02963
  112536.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 9 Apr 1995 08:49:16 -0400
  112537. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!math.ohio-state.edu!uwm.edu!msunews!harbinger.cc.monash.edu.au!yoyo.aarnet.edu.au!goliath.camtech.com.au!gateway.dircsa.org.au!gateway.dircsa.org.au!not-for-mail
  112538. From: arthur@gateway.dircsa.org.au (Arthur Marsh)
  112539. Newsgroups: comp.protocols.kermit.misc
  112540. Subject: Re: Input / Output in Scripts?
  112541. Date: 9 Apr 1995 21:41:15 +0930
  112542. Organization: DIRCSA - Disability Information and Resource Centre
  112543. Lines: 38
  112544. Distribution: world
  112545. Message-Id: <3m8it3$cbe@gateway.dircsa.org.au>
  112546. References: <3lhpvk$nb8@ccnet.ccnet.com>
  112547. Nntp-Posting-Host: gateway.dircsa.org.au
  112548. X-Newsreader: TIN [version 1.1 PL8]
  112549. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  112550.  
  112551. dasilva@ccnet.com wrote:
  112552. : I've got the manual in front of me, and I am trying to learn scripting. I have
  112553. : the following script to telnet to my provider:
  112554.  
  112555. : log session
  112556. : set input echo on
  112557. : set terminal type vt100
  112558. : telnet my.isp.com
  112559.  
  112560. replace this with
  112561.  
  112562. set port tcp/ip my.isp.com
  112563.  
  112564. : input 5 login:
  112565. : output myname\13
  112566. : input 5 Password
  112567. : output mypassword\13
  112568.  
  112569. Add a 
  112570.  
  112571. connect
  112572.  
  112573. if desired at this stage.
  112574.  
  112575. telnet my.isp.com 
  112576.  
  112577. is equivalent to:
  112578.  
  112579. set port tcp/ip my.isp.com
  112580. connect
  112581.  
  112582. which puts you directly into interactive mode, and the script that follows
  112583. doesn't get executed until the telnet session gets closed. 
  112584.  
  112585. -- 
  112586. Arthur Marsh, telephone +61-8-370-2365, fax +61-8-370-2133, +61-8-223-5082 
  112587.               arthur@gateway.dircsa.org.au
  112588. .endofsig
  112589.  
  112590. From news@columbia.edu Sun Apr  9 12:24:58 1995
  112591. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19307
  112592.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 9 Apr 1995 08:56:10 -0400
  112593. Received: by apakabar.cc.columbia.edu id AA03289
  112594.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 9 Apr 1995 08:56:09 -0400
  112595. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!news.moneng.mei.com!uwm.edu!msunews!harbinger.cc.monash.edu.au!yoyo.aarnet.edu.au!goliath.camtech.com.au!gateway.dircsa.org.au!gateway.dircsa.org.au!not-for-mail
  112596. From: arthur@gateway.dircsa.org.au (Arthur Marsh)
  112597. Newsgroups: comp.protocols.kermit.misc
  112598. Subject: Re: Help Needed With TCP/IP
  112599. Date: 9 Apr 1995 21:54:58 +0930
  112600. Organization: DIRCSA - Disability Information and Resource Centre
  112601. Lines: 36
  112602. Message-Id: <3m8jmq$cdn@gateway.dircsa.org.au>
  112603. References: <3m53f6$ot@raffles.technet.sg>
  112604. Nntp-Posting-Host: gateway.dircsa.org.au
  112605. X-Newsreader: TIN [version 1.1 PL8]
  112606. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  112607.  
  112608. Robert Ong (onglc@technet.sg) wrote:
  112609.  
  112610. : Can I install kermit in my PC (which is connected as a Netware client 
  112611. : in our office network), and run kermit to log into our Unix computer
  112612. : as an ASCII/dumb terminal?
  112613.  
  112614. : I presume that I need a TCP/IP driver in my PC.  Does kermit come
  112615. : with a TCP/IP driver which will allow me to telnet over to our
  112616. : Unix computer?  Does anyone know if there is a freeware TCP/IP
  112617. : driver that does the same thing?
  112618.  
  112619. There are 2 ways you can do this with MS-Kermit and Novell's Client Kit:
  112620.  
  112621. 1)
  112622.  
  112623. Run an ODI driver, and define a Protocol Kermit that uses a Frame Type 
  112624. Ethernet_II as described in the docs for MS-Kermit. (I can supply a couple 
  112625. of examples when I'm back at work, so email me if you want them).
  112626.  
  112627. 2)
  112628.  
  112629. Run Novell's TCP/IP transport (TCPIP.EXE) and do a SET PORT TELAPI host, where
  112630. host is the name or IP address of the Unix machine.
  112631.  
  112632. ftp.novell.com has updates for the Netware clients which are worth considering
  112633. if your Netware client software isn't current.
  112634.  
  112635. If your Unix host is running Novell's Unixware or other Unix supporting 
  112636. Novell'sNVT/NVT2, you can also load the client NVT.EXE TSR and use MS-Kermit
  112637. with a SET PORT BIOS1, but you lose some memory and/or functionality compared 
  112638. with the 2 previously mentioned methods.
  112639.  
  112640. -- 
  112641. Arthur Marsh, telephone +61-8-370-2365, fax +61-8-370-2133, +61-8-223-5082 
  112642.               arthur@gateway.dircsa.org.au
  112643. .endofsig
  112644.  
  112645. From news@columbia.edu Sun Apr  9 14:41:40 1995
  112646. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21683
  112647.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 9 Apr 1995 10:19:45 -0400
  112648. Received: by apakabar.cc.columbia.edu id AA07327
  112649.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 9 Apr 1995 10:19:43 -0400
  112650. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.bluesky.net!news.sprintlink.net!pipex!sunic!sunic.sunet.se!newsfeed.tip.net!news.bahnhof.se!news.bahnhof.se!not-for-mail
  112651. From: marvi@bahnhof.se (Markus Hdrnvi)
  112652. Newsgroups: comp.protocols.kermit.misc
  112653. Subject: Re: starting SLIP from Ckermit (OS/2 beta)
  112654. Date: 9 Apr 1995 15:41:40 +0100
  112655. Organization: Bahnhof Internet Access
  112656. Lines: 25
  112657. Message-Id: <3m8rn4$6go@sunny.bahnhof.se>
  112658. References: <3liark$asl@sunny.bahnhof.se> <3lk18b$dih@mozo.cc.purdue.edu> <3lqlt5$n7v@apakabar.cc.columbia.edu>
  112659. Nntp-Posting-Host: sunny.bahnhof.se
  112660. X-Newsreader: TIN [version 1.2 PL2]
  112661. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  112662.  
  112663. Can this be used with PPP.EXE as well?
  112664.  
  112665. My system just upgraded from TIA to PPP.
  112666.  
  112667. //Markus
  112668.  
  112669.  
  112670.  
  112671.  
  112672.  
  112673.  
  112674.  
  112675.  
  112676.  
  112677.  
  112678.  
  112679.  
  112680.  
  112681.  
  112682.  
  112683.  
  112684. : Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  112685. : "C-Kermit: available on more platforms than any other communications software."
  112686. : "Kermit FTP: sending files whenever and wherever they are needed."
  112687. :   OS/2 version 5A(190): ftp://kermit.columbia.edu/kermit/archives/cko190.zip 
  112688.  
  112689. From news@columbia.edu Sun Apr  9 02:59:02 1995
  112690. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23322
  112691.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 9 Apr 1995 11:07:44 -0400
  112692. Received: by apakabar.cc.columbia.edu id AA09717
  112693.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 9 Apr 1995 11:07:42 -0400
  112694. Path: news.columbia.edu!panix!news.mathworks.com!usenet.eel.ufl.edu!news.ultranet.com!news.sprintlink.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  112695. From: jrd@cc.usu.edu (Joe Doupnik)
  112696. Newsgroups: comp.protocols.kermit.misc
  112697. Subject: Re: Help Needed With TCP/IP
  112698. Message-Id: <1995Apr9.085902.46973@cc.usu.edu>
  112699. Date: 9 Apr 95 08:59:02 MDT
  112700. References: <3m53f6$ot@raffles.technet.sg>
  112701. Organization: Utah State University
  112702. Lines: 28
  112703. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  112704.  
  112705. In article <3m53f6$ot@raffles.technet.sg>, onglc@technet.sg (Robert Ong) writes:
  112706. > Hi,
  112707. > Can I install kermit in my PC (which is connected as a Netware client 
  112708. > in our office network), and run kermit to log into our Unix computer
  112709. > as an ASCII/dumb terminal?
  112710. > I presume that I need a TCP/IP driver in my PC.  Does kermit come
  112711. > with a TCP/IP driver which will allow me to telnet over to our
  112712. > Unix computer?  Does anyone know if there is a freeware TCP/IP
  112713. > driver that does the same thing?
  112714. -----------
  112715.     MS-DOS Kermit has an internal TCP/IP protocol stack. A "driver"
  112716. is normally a handler of a piece of hardware or similar, rather than a
  112717. large complex protocol stack. 
  112718.     As Arthur Marsh points out in a previous reply, MSK can use its
  112719. internal TCP/IP stack and it can run over the top of TCP/IP stacks from
  112720. other vendors: Novell, FTP Inc, Beame and Whiteside. 
  112721.     There's no need to be a truely stupid ASCII terminal in this
  112722. situation. Use the sophisticated terminal emulation capabilities of MSK
  112723. and have your Unix machine exploit it's terminfo/termcap. The results
  112724. are worth it. VT320 is recommended, fall back to VT220 if the Unix machine
  112725. does not know about VT320's.
  112726.     Please do review the documentation accompanying the MSK release
  112727. because we try to explain many of these things there. Quick start kit is
  112728. binary file kermit/bin/msvibm.zip on kermit.columbia.edu.
  112729.     Joe D.
  112730.  
  112731. From news@columbia.edu Sun Apr  9 17:14:06 1995
  112732. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27902
  112733.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 9 Apr 1995 13:37:38 -0400
  112734. Received: by apakabar.cc.columbia.edu id AA18989
  112735.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 9 Apr 1995 13:37:37 -0400
  112736. Newsgroups: comp.protocols.kermit.misc
  112737. Path: news.columbia.edu!panix!news.mathworks.com!solaris.cc.vt.edu!news.alpha.net!uwm.edu!spool.mu.edu!howland.reston.ans.net!ix.netcom.com!netcom.com!jhurwit
  112738. From: jhurwit@netcom.com (Jeffrey Hurwit)
  112739. Subject: MSK 3.14 PL3 - "Locking in" a character set?
  112740. Message-Id: <jhurwitD6s2JI.Fu6@netcom.com>
  112741. Organization: Organization?  What organization?
  112742. X-Newsreader: TIN [version 1.2 PL1]
  112743. Date: Sun, 9 Apr 1995 17:14:06 GMT
  112744. Lines: 13
  112745. Sender: jhurwit@netcom9.netcom.com
  112746. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  112747.  
  112748. I am having serious line noise problems, and I don't have an error
  112749. correcting modem.  While I realize that I need to solve this problem
  112750. eventually, it's causing a secondary problem with terminal emulation
  112751. that it would be helpful to solve sooner: There seems to be some
  112752. character(s) that, when MS-Kermit (in terminal mode) receives it/them,
  112753. it causes Kermit to begin displaying in Greek characters.  The screen
  112754. still writes from left to right, but now in Greek letters.  It occurs
  112755. so frequently that I've had to add a macro to 'set term char latin1'
  112756. and assign it to a key.  Is there a way to disable this, so that the
  112757. character set is not changed no matter what Kermit receives?  Thanks in
  112758. advance,
  112759.  
  112760.                                         Jeff
  112761.  
  112762. From news@columbia.edu Sun Apr  9 19:23:58 1995
  112763. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04786
  112764.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 9 Apr 1995 16:58:16 -0400
  112765. Received: by apakabar.cc.columbia.edu id AA03082
  112766.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 9 Apr 1995 16:58:15 -0400
  112767. Path: news.columbia.edu!panix!news.mathworks.com!udel!news.sprintlink.net!howland.reston.ans.net!torn!ccshst05.cs.uoguelph.ca!ccshst01.cs.uoguelph.ca!lloo
  112768. From: lloo@uoguelph.ca (Leon Loo)
  112769. Newsgroups: comp.protocols.kermit.misc
  112770. Subject: Detecting CD via Script
  112771. Date: 9 Apr 1995 19:23:58 GMT
  112772. Organization: University of Guelph
  112773. Lines: 14
  112774. Message-Id: <3m9c8e$c48@ccshst05.cs.uoguelph.ca>
  112775. Nntp-Posting-Host: ccshst01.cs.uoguelph.ca
  112776. X-Newsreader: TIN [version 1.2 PL2]
  112777. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  112778.  
  112779. I was wondering if there is anyway of detecting the status of the phone line
  112780. while in a kermit script?  I'm going to a host periodically hangs up.
  112781. I've look through the manual but have not been able to find something which
  112782. would let me do this.
  112783.  
  112784. I'm using MSKermit version 3.13 patch level 0.
  112785.  
  112786. Any help would be appriciated.
  112787.  
  112788. Leon Loo
  112789. Systems Analysis
  112790. University of Guelph
  112791. lloo@uoguelph.ca
  112792.     
  112793.  
  112794. From news@columbia.edu Sun Apr  9 21:56:23 1995
  112795. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08010
  112796.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 9 Apr 1995 18:28:08 -0400
  112797. Received: by apakabar.cc.columbia.edu id AA09750
  112798.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 9 Apr 1995 18:28:07 -0400
  112799. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!swrinde!pirates.cs.swt.edu!astros.cs.swt.edu!tm
  112800. From: tm@astros.cs.swt.edu (Tom F McCabe)
  112801. Newsgroups: comp.protocols.kermit.misc
  112802. Subject: Problem with Get/Send over tcp/ip
  112803. Date: 9 Apr 1995 21:56:23 GMT
  112804. Organization: Computer Science Department, Southwest Texas State University
  112805. Lines: 31
  112806. Message-Id: <3m9l67$ans@pirates.cs.swt.edu>
  112807. Nntp-Posting-Host: astros.cs.swt.edu
  112808. X-Newsreader: TIN [version 1.2 PL2]
  112809. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  112810.  
  112811.  
  112812. I'm able to use ms-kermit to connect to our alpha
  112813. which is running c-Kermit 5a(190) Beta .  Ms-kermit
  112814. terminal emulation works fine -  the problem is when 
  112815. I try to get/send files.
  112816.  
  112817. If I leave the lines:
  112818.     set port tcp/ip nyssa.swt.edu
  112819.     connect
  112820. in my mscustom.ini file
  112821. then I connect to nyssa just fine, run c-kermit on
  112822. the alpha and type server to the alpha. All is ok. 
  112823. But when I try to then do a send/get no packets are
  112824. and the send/get eventually times out.
  112825.  
  112826. However, if I take these lines out of the mscustom.ini
  112827. and type them as commands to ms-kermit after I
  112828. start it up, the send/gets  work just fine. Can anyone
  112829. tell me what's going on here.  I would just as soon
  112830. leave these lines in my mscustom.ini if I can.
  112831.  
  112832. A second problem:  When I try to use either the
  112833. finish or bye command from ms-kermit to exit
  112834. from the alpha after I've started the server there,
  112835. nothing happens and when I quit ms-kermit there
  112836. is ALWAYS a hanging communication line to my alpha.
  112837. Any known problems here or is it just me?
  112838.  
  112839. tom mccabe
  112840. tm@astros.cs.swt.edu
  112841.  
  112842.  
  112843. From news@columbia.edu Sun Apr  9 16:37:39 1995
  112844. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12855
  112845.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 9 Apr 1995 20:50:18 -0400
  112846. Received: by apakabar.cc.columbia.edu id AA20028
  112847.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 9 Apr 1995 20:50:17 -0400
  112848. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.bluesky.net!news.sprintlink.net!howland.reston.ans.net!math.ohio-state.edu!usc!ccnet.com!usenet
  112849. From: dasilva@ccnet.com
  112850. Newsgroups: comp.protocols.kermit.misc
  112851. Subject: Re: Input / Output in Scripts?
  112852. Date: 9 Apr 1995 16:37:39 GMT
  112853. Organization: Silva Consulting Solutions
  112854. Lines: 9
  112855. Distribution: world
  112856. Message-Id: <3m92gj$mi1@ccnet.ccnet.com>
  112857. References: <3lhpvk$nb8@ccnet.ccnet.com> <3m8it3$cbe@gateway.dircsa.org.au>
  112858. Reply-To: dasilva@ccnet.com
  112859. Nntp-Posting-Host: dasilva.ccnet.com
  112860. X-Newsreader: IBM NewsReader/2 v1.03
  112861. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  112862.  
  112863. In <3m8it3$cbe@gateway.dircsa.org.au>, arthur@gateway.dircsa.org.au (Arthur Marsh) writes:
  112864. >which puts you directly into interactive mode, and the script that follows
  112865. >doesn't get executed until the telnet session gets closed. 
  112866.  
  112867. Thanks Arthur - this last bit of info was what I seemed to miss in the manual.
  112868.  
  112869. David Silva - Silva Consulting Solutions - 510-527-6831
  112870.        finger dasilva@ccnet.com for information
  112871.  
  112872.  
  112873. From news@columbia.edu Sun Apr  9 13:02:07 1995
  112874. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19198
  112875.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 9 Apr 1995 23:46:29 -0400
  112876. Received: by apakabar.cc.columbia.edu id AA02952
  112877.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 9 Apr 1995 23:46:27 -0400
  112878. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  112879. From: jrd@cc.usu.edu (Joe Doupnik)
  112880. Newsgroups: comp.protocols.kermit.misc
  112881. Subject: Re: Problem with Get/Send over tcp/ip
  112882. Message-Id: <1995Apr9.190207.47027@cc.usu.edu>
  112883. Date: 9 Apr 95 19:02:07 MDT
  112884. References: <3m9l67$ans@pirates.cs.swt.edu>
  112885. Organization: Utah State University
  112886. Lines: 50
  112887. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  112888.  
  112889. In article <3m9l67$ans@pirates.cs.swt.edu>, tm@astros.cs.swt.edu (Tom F McCabe) writes:
  112890. > I'm able to use ms-kermit to connect to our alpha
  112891. > which is running c-Kermit 5a(190) Beta .  Ms-kermit
  112892. > terminal emulation works fine -  the problem is when 
  112893. > I try to get/send files.
  112894. > If I leave the lines:
  112895. >     set port tcp/ip nyssa.swt.edu
  112896. >     connect
  112897. > in my mscustom.ini file
  112898.     One really ought not do a CONNECT in the startup file
  112899. because that invokes the TCP/IP session right away, leaving
  112900. no time to do local setup busywork. The session will timeout
  112901. if you don't login/password at that point.
  112902.  
  112903. > then I connect to nyssa just fine, run c-kermit on
  112904. > the alpha and type server to the alpha. All is ok. 
  112905. > But when I try to then do a send/get no packets are
  112906. > and the send/get eventually times out.
  112907.  
  112908.     This works perfectly, so we can guess there is more
  112909. going on at your desktop than what you describe. Once C Kermit
  112910. is in SERVER mode press ALT-X on your PC, then issue the send/get
  112911. commands. Make sure no other macros or script commands have
  112912. intervened to change the comms channel to a serial port. Do
  112913. a SHOW COM before get/send to verify matters. I'll bet you 
  112914. have a SET PORT in there somewhere after the Connect.
  112915.  
  112916. > However, if I take these lines out of the mscustom.ini
  112917. > and type them as commands to ms-kermit after I
  112918. > start it up, the send/gets  work just fine. Can anyone
  112919. > tell me what's going on here.  I would just as soon
  112920. > leave these lines in my mscustom.ini if I can.
  112921. > A second problem:  When I try to use either the
  112922. > finish or bye command from ms-kermit to exit
  112923. > from the alpha after I've started the server there,
  112924. > nothing happens and when I quit ms-kermit there
  112925. > is ALWAYS a hanging communication line to my alpha.
  112926. > Any known problems here or is it just me?
  112927.     Works fine. But.... If your Alpha is running
  112928. VMS Virtual Terminals (VT types) then they normally 
  112929. don't sense the end of a session and quit; they persist 
  112930. and persist with C Kermit still running. Best to remove
  112931. the VT support as a pain.
  112932.     FINISH does not close down connections, but BYE
  112933. does. VMS VT's don't respond well when the application
  112934. (C Kermit in this case) tries to shut down the link.
  112935.     Joe D.
  112936.  
  112937. From news@columbia.edu Mon Apr 10 05:38:42 1995
  112938. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25290
  112939.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 10 Apr 1995 01:38:48 -0400
  112940. Received: by apakabar.cc.columbia.edu id AA09621
  112941.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 10 Apr 1995 01:38:47 -0400
  112942. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  112943. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  112944. Newsgroups: comp.protocols.kermit.misc
  112945. Subject: Re: starting SLIP from Ckermit (OS/2 beta)
  112946. Date: 10 Apr 1995 05:38:42 GMT
  112947. Organization: Columbia University
  112948. Lines: 14
  112949. Message-Id: <3mag92$9cg@apakabar.cc.columbia.edu>
  112950. References: <3liark$asl@sunny.bahnhof.se> <3lk18b$dih@mozo.cc.purdue.edu> <3lqlt5$n7v@apakabar.cc.columbia.edu> <3m8rn4$6go@sunny.bahnhof.se>
  112951. Nntp-Posting-Host: watsun.cc.columbia.edu
  112952. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  112953.  
  112954. In article <3m8rn4$6go@sunny.bahnhof.se>,
  112955. Markus Hdrnvi <marvi@bahnhof.se> wrote:
  112956. >Can this be used with PPP.EXE as well?
  112957. >
  112958. >My system just upgraded from TIA to PPP.
  112959. >
  112960.  
  112961. Sorry, but No. PPP is implemented directly in the IBM Dialer.  
  112962. There is no external interface that I am aware of.
  112963.  
  112964. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  112965. "C-Kermit: available on more platforms than any other communications software."
  112966. "Kermit FTP: sending files whenever and wherever they are needed."
  112967.   OS/2 version 5A(190): ftp://kermit.columbia.edu/kermit/archives/cko190.zip 
  112968.  
  112969. From news@columbia.edu Wed Apr  5 22:24:44 1995
  112970. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25817
  112971.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 10 Apr 1995 01:56:50 -0400
  112972. Received: by apakabar.cc.columbia.edu id AA10323
  112973.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 10 Apr 1995 01:56:48 -0400
  112974. Newsgroups: comp.protocols.kermit.misc
  112975. Path: news.columbia.edu!panix!news.mathworks.com!news.ultranet.com!news.sprintlink.net!howland.reston.ans.net!ix.netcom.com!netcom.com!lachman
  112976. From: lachman@netcom.com (Hans Lachman)
  112977. Subject: Modem diagnostic program?
  112978. Message-Id: <lachmanD6L298.Gy3@netcom.com>
  112979. Organization: Netcom, Silicon Valley
  112980. Distribution: na
  112981. Date: Wed, 5 Apr 1995 22:24:44 GMT
  112982. Lines: 13
  112983. Sender: lachman@netcom2.netcom.com
  112984. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  112985.  
  112986. Is there a program that will perform simple diagnostics on a modem?
  112987. Like, tell you if it's hooked up and if it's accepting AT commands?
  112988.  
  112989. I'm trying to advise a someone on getting a modem working.  They
  112990. installed the modem and are using an older version of Kermit
  112991. that is known to work.  They had it working before, to the extent
  112992. that the modem was accepting and echoing AT commands, but now
  112993. they can't even get that much to work.  Something must be different,
  112994. and I don't know whether it's the modem or Kermit.  I'd like to
  112995. verify that the modem is usable before trying anything further
  112996. with Kermit.  Is there a way I can verify this?
  112997.  
  112998. Hans Lachman  <lachman@netcom.com>
  112999.  
  113000. From news@columbia.edu Mon Apr 10 03:15:29 1995
  113001. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26166
  113002.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 10 Apr 1995 02:06:59 -0400
  113003. Received: by apakabar.cc.columbia.edu id AA10738
  113004.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 10 Apr 1995 02:06:57 -0400
  113005. Path: news.columbia.edu!panix!bloom-beacon.mit.edu!spool.mu.edu!agate!library.ucla.edu!csulb.edu!csus.edu!saclink1.csus.edu!sac87574
  113006. From: sac87574@saclink1.csus.edu (Scott Hanson)
  113007. Newsgroups: comp.protocols.kermit.misc
  113008. Subject: too slow!
  113009. Date: 10 Apr 1995 03:15:29 GMT
  113010. Organization: California State University Sacramento
  113011. Lines: 5
  113012. Message-Id: <3ma7sh$h83@news.csus.edu>
  113013. Nntp-Posting-Host: sac87574%@saclink1.csus.edu
  113014. X-Newsreader: TIN [version 1.2 PL2]
  113015. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  113016.  
  113017. It could be my ignorance talking, but kermit is the only file transfer my 
  113018. server has..I've tried raising packet size, opening more windows, and 
  113019. basically everything I can think of without guidance to speed things 
  113020. up..Why would anyone want to use this program?  A 100,000 byte program 
  113021. can take 10 minutes?  It's ridiculous!
  113022.  
  113023. From news@columbia.edu Sun Apr  9 06:15:53 1995
  113024. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26273
  113025.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 10 Apr 1995 02:10:43 -0400
  113026. Received: by apakabar.cc.columbia.edu id AA10870
  113027.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 10 Apr 1995 02:10:41 -0400
  113028. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.bluesky.net!news.sprintlink.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  113029. From: jrd@cc.usu.edu (Joe Doupnik)
  113030. Newsgroups: comp.protocols.kermit.misc
  113031. Subject: Re: MSK 3.14 PL3 - "Locking in" a character set?
  113032. Message-Id: <1995Apr9.121553.46985@cc.usu.edu>
  113033. Date: 9 Apr 95 12:15:53 MDT
  113034. References: <jhurwitD6s2JI.Fu6@netcom.com>
  113035. Organization: Utah State University
  113036. Lines: 25
  113037. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  113038.  
  113039. In article <jhurwitD6s2JI.Fu6@netcom.com>, jhurwit@netcom.com (Jeffrey Hurwit) writes:
  113040. > I am having serious line noise problems, and I don't have an error
  113041. > correcting modem.  While I realize that I need to solve this problem
  113042. > eventually, it's causing a secondary problem with terminal emulation
  113043. > that it would be helpful to solve sooner: There seems to be some
  113044. > character(s) that, when MS-Kermit (in terminal mode) receives it/them,
  113045. > it causes Kermit to begin displaying in Greek characters.  The screen
  113046. > still writes from left to right, but now in Greek letters.  It occurs
  113047. > so frequently that I've had to add a macro to 'set term char latin1'
  113048. > and assign it to a key.  Is there a way to disable this, so that the
  113049. > character set is not changed no matter what Kermit receives?  Thanks in
  113050. > advance,
  113051. >                                         Jeff
  113052. -------
  113053.     It's not Greek greek but rather IBM PC Code Page greek. That is,
  113054. the high bit set stuff. The likely cause is reception of SI and SO
  113055. control codes (^O, ^N) which cause a shift of character sets ("real" 
  113056. VTxxx's do exactly the same). Pressing the \ktermreset key, ALT equals, 
  113057. will put things back together again.
  113058.     The only sure cure is to get rid of the corrupted bytes coming
  113059. in from the wire. A temp workaround is putting ASCII in character set
  113060. working buffer G1 (to/from which the ^O/^N guys are toggling) via command
  113061. SET TERM CHAR ASCII G1.
  113062.     Joe D.
  113063.  
  113064. From news@columbia.edu Thu Apr  6 00:00:57 1995
  113065. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28749
  113066.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 10 Apr 1995 03:34:49 -0400
  113067. Received: by apakabar.cc.columbia.edu id AA14010
  113068.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 10 Apr 1995 03:34:48 -0400
  113069. Path: news.columbia.edu!panix!news.mathworks.com!news2.near.net!howland.reston.ans.net!swrinde!pirates.cs.swt.edu!astros.cs.swt.edu!tm
  113070. From: tm@astros.cs.swt.edu (Tom F McCabe)
  113071. Newsgroups: comp.protocols.kermit.misc
  113072. Subject: kermit over ethernet in dos ?
  113073. Date: 6 Apr 1995 00:00:57 GMT
  113074. Organization: Computer Science Department, Southwest Texas State University
  113075. Lines: 29
  113076. Message-Id: <3lvavp$tca@pirates.cs.swt.edu>
  113077. Nntp-Posting-Host: astros.cs.swt.edu
  113078. X-Newsreader: TIN [version 1.2 PL2]
  113079. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  113080.  
  113081.  
  113082. I recently downloaded the new kermit 3.14 and 
  113083. successfully run it over Novell's LANWP
  113084. tcpip.exe and telapi.exe.   However, in reading
  113085. the documentation in seems to imply that you don't
  113086. need the tcpip.exe or telapi.exe to run ckermit;
  113087. that is it implies that the equivalent functions
  113088. are in ckermit 3.14.  Is that correct?
  113089.  
  113090. When I try the following:
  113091.     1. Put all the appropriate definitions in
  113092.         my mscustom.ini - such as domain,
  113093.         subnetmasks, etc.
  113094.     2. Load the lsl and ethernet driver (exp16odi)
  113095.     3. run kermit 3.14
  113096.     4. In ckermit type:  set port tcp/ip nyssa.swt.edu
  113097.                          connect
  113098.        I get the error:
  113099.         Cannot access ip type packets
  113100.         Unable to initialize tcp/ip system, quitting
  113101.  
  113102. Am I doing something obvious that's wrong?  Do i need to
  113103. initialize other stuff?  
  113104.  
  113105. Any help will be appreciated?
  113106.  
  113107. tom mccabe
  113108. tm@astros.cs.swt.edu
  113109.  
  113110.  
  113111. From news@columbia.edu Mon Apr 10 11:32:06 1995
  113112. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22960
  113113.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 10 Apr 1995 11:47:49 -0400
  113114. Received: by apakabar.cc.columbia.edu id AA29694
  113115.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 10 Apr 1995 11:47:48 -0400
  113116. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!swrinde!pipex!sunic!sunic.sunet.se!news.funet.fi!news.cs.tut.fi!t130313
  113117. From: t130313@cs.tut.fi (Tolonen Pasi)
  113118. Newsgroups: comp.protocols.kermit.misc
  113119. Subject: C-Kermit(190) & Aix 3.2.5 (RS/6000)...
  113120. Date: 10 Apr 1995 11:32:06 GMT
  113121. Organization: Tampere University of Technology
  113122. Lines: 16
  113123. Distribution: world
  113124. Message-Id: <3mb4vm$dtt@peippo.cs.tut.fi>
  113125. Nntp-Posting-Host: kaarne.cs.tut.fi
  113126. Nntp-Posting-User: t130313
  113127. Originator: t130313@kaarne.cs.tut.fi
  113128. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  113129.  
  113130. sometimes does funny things - Kermit process doesn't allow itself 
  113131. to be killed, it just stays in "exiting" state. This situation
  113132. can only be resolved by shutting the RS/6000 down. And it sure is
  113133. not the most elegant way to kill processess when you have dozens
  113134. of users logged in.
  113135.  
  113136. Anyone knows why this happens or how to prevent it?
  113137.  
  113138.  
  113139. Regards,
  113140.  
  113141. Pasi
  113142.  
  113143. -- 
  113144.  Pasi Tolonen           Systems Manager        Analyste Oy / Finland  
  113145.  tel.+358-31-2133544    fax.+358-31-2227701    Email: Pasi.Tolonen@cs.tut.fi 
  113146.  
  113147. From news@columbia.edu Mon Apr 10 03:37:38 1995
  113148. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27509
  113149.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 10 Apr 1995 12:51:23 -0400
  113150. Received: by apakabar.cc.columbia.edu id AA07103
  113151.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 10 Apr 1995 12:51:22 -0400
  113152. Path: news.columbia.edu!panix!news.mathworks.com!news.bluesky.net!news.sprintlink.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  113153. From: jrd@cc.usu.edu (Joe Doupnik)
  113154. Newsgroups: comp.protocols.kermit.misc
  113155. Subject: Re: too slow!
  113156. Message-Id: <1995Apr10.093738.47069@cc.usu.edu>
  113157. Date: 10 Apr 95 09:37:38 MDT
  113158. References: <3ma7sh$h83@news.csus.edu>
  113159. Organization: Utah State University
  113160. Lines: 11
  113161. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  113162.  
  113163. In article <3ma7sh$h83@news.csus.edu>, sac87574@saclink1.csus.edu (Scott Hanson) writes:
  113164. > It could be my ignorance talking, but kermit is the only file transfer my 
  113165. > server has..I've tried raising packet size, opening more windows, and 
  113166. > basically everything I can think of without guidance to speed things 
  113167. > up..Why would anyone want to use this program?  A 100,000 byte program 
  113168. > can take 10 minutes?  It's ridiculous!
  113169. ----------
  113170.     Nice grumble, but what can we say to help? For openers, what
  113171. programs (and versions) are being run on each end, what's the comms
  113172. link like, and all those nasty detail things.
  113173.     Joe D.
  113174.  
  113175. From news@columbia.edu Mon Apr 10 03:40:40 1995
  113176. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27514
  113177.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 10 Apr 1995 12:51:26 -0400
  113178. Received: by apakabar.cc.columbia.edu id AA07107
  113179.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 10 Apr 1995 12:51:24 -0400
  113180. Path: news.columbia.edu!panix!news.mathworks.com!news.bluesky.net!news.sprintlink.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  113181. From: jrd@cc.usu.edu (Joe Doupnik)
  113182. Newsgroups: comp.protocols.kermit.misc
  113183. Subject: Re: kermit over ethernet in dos ?
  113184. Message-Id: <1995Apr10.094040.47071@cc.usu.edu>
  113185. Date: 10 Apr 95 09:40:40 MDT
  113186. References: <3lvavp$tca@pirates.cs.swt.edu> <3mbdb4$pa8@gateway.dircsa.org.au>
  113187. Organization: Utah State University
  113188. Lines: 21
  113189. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  113190.  
  113191. In article <3mbdb4$pa8@gateway.dircsa.org.au>, arthur@gateway.dircsa.org.au (Arthur Marsh) writes:
  113192. > Tom F McCabe (tm@astros.cs.swt.edu) wrote:
  113193. > : I recently downloaded the new kermit 3.14 and 
  113194. > : successfully run it over Novell's LANWP
  113195. > : tcpip.exe and telapi.exe.   However, in reading
  113196. > : the documentation in seems to imply that you don't
  113197. > : need the tcpip.exe or telapi.exe to run ckermit;
  113198. > : that is it implies that the equivalent functions
  113199. > : are in ckermit 3.14.  Is that correct?
  113200. > You've just about answered one of my questions.
  113201. > I gather that telapi.exe is in LAN WorkPlace, but 
  113202. > not included with the TCP/IP transport that comes
  113203. > with the Netware Client Kit for DOS/Windows?
  113204. ---------
  113205.     Sad but true. TELAPI and TSU are included only in the full
  113206. product and not in the Client Kit. Novell management made that decision
  113207. for reasons not explained to the customer base.
  113208.     Joe D.
  113209.  
  113210. From news@columbia.edu Mon Apr 10 16:58:04 1995
  113211. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11644
  113212.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 10 Apr 1995 16:12:51 -0400
  113213. Received: by apakabar.cc.columbia.edu id AA01066
  113214.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 10 Apr 1995 16:12:49 -0400
  113215. Path: news.columbia.edu!panix!news.mathworks.com!news.duke.edu!godot.cc.duq.edu!newsfeed.pitt.edu!dsinc!netnews.upenn.edu!cronkite.ocis.temple.edu!astro.ocis.temple.edu!jprice
  113216. From: jprice@astro.ocis.temple.edu (John Price)
  113217. Newsgroups: comp.protocols.kermit.misc
  113218. Subject: Re: too slow!
  113219. Date: 10 Apr 1995 16:58:04 GMT
  113220. Organization: Temple University, Academic Computer Services
  113221. Lines: 13
  113222. Message-Id: <3mbo2s$b58@cronkite.ocis.temple.edu>
  113223. References: <3ma7sh$h83@news.csus.edu>
  113224. Nntp-Posting-Host: astro.ocis.temple.edu
  113225. X-Newsreader: TIN [version 1.2 PL2]
  113226. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  113227.  
  113228. Scott Hanson (sac87574@saclink1.csus.edu) wrote:
  113229. : It could be my ignorance talking, but kermit is the only file transfer my 
  113230. : server has..I've tried raising packet size, opening more windows, and 
  113231. : basically everything I can think of without guidance to speed things 
  113232. : up..Why would anyone want to use this program?  A 100,000 byte program 
  113233. : can take 10 minutes?  It's ridiculous!
  113234.  
  113235. Sometimes it's the only choice. For our IBM mainframes here, for 
  113236. instance. They have a "one way at a time" communications interface. That 
  113237. means Z-modem can't deal with it. 
  113238.  
  113239. John Price
  113240.  
  113241.  
  113242. From news@columbia.edu Mon Apr 10 21:38:57 1995
  113243. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18337
  113244.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 10 Apr 1995 17:39:19 -0400
  113245. Received: by apakabar.cc.columbia.edu id AA11935
  113246.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 10 Apr 1995 17:39:15 -0400
  113247. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  113248. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  113249. Newsgroups: comp.protocols.kermit.misc
  113250. Subject: Re: Modem diagnostic program?
  113251. Date: 10 Apr 1995 21:38:57 GMT
  113252. Organization: Columbia University
  113253. Lines: 27
  113254. Distribution: na
  113255. Message-Id: <3mc8hh$bjp@apakabar.cc.columbia.edu>
  113256. References: <lachmanD6L298.Gy3@netcom.com>
  113257. Nntp-Posting-Host: watsun.cc.columbia.edu
  113258. Cc: 
  113259.  
  113260. In article <lachmanD6L298.Gy3@netcom.com>,
  113261. Hans Lachman <lachman@netcom.com> wrote:
  113262. >Is there a program that will perform simple diagnostics on a modem?
  113263. >Like, tell you if it's hooked up and if it's accepting AT commands?
  113264. >
  113265. >I'm trying to advise a someone on getting a modem working.  They
  113266. >installed the modem and are using an older version of Kermit
  113267. >that is known to work.  They had it working before, to the extent
  113268. >that the modem was accepting and echoing AT commands, but now
  113269. >they can't even get that much to work.  Something must be different,
  113270. >and I don't know whether it's the modem or Kermit.  I'd like to
  113271. >verify that the modem is usable before trying anything further
  113272. >with Kermit.  Is there a way I can verify this?
  113273. >
  113274. If the modem is hooked up and working, and Kermit is configured
  113275. corrected to use it, you should be able to CONNECT to the modem,
  113276. type AT and then press the Enter key, and see the AT letters echo,
  113277. and see the response from the modem, either "OK" or "0" depending
  113278. on its response mode -- assuming the modem has not been configured
  113279. to no-echo, no-response mode.
  113280.  
  113281. From the MS-Kermit> prompt, you can type "show communications" to
  113282. see all of Kermit's communications-related settings (comm port,
  113283. speed, etc) and the status of the modem signals, which are the
  113284. essential clues.
  113285.  
  113286. - Frank
  113287.  
  113288. From news@columbia.edu Mon Apr 10 21:52:44 1995
  113289. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19294
  113290.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 10 Apr 1995 17:52:51 -0400
  113291. Received: by apakabar.cc.columbia.edu id AA13451
  113292.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 10 Apr 1995 17:52:49 -0400
  113293. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  113294. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  113295. Newsgroups: comp.protocols.kermit.misc
  113296. Subject: Re: Detecting CD via Script
  113297. Date: 10 Apr 1995 21:52:44 GMT
  113298. Organization: Columbia University
  113299. Lines: 12
  113300. Message-Id: <3mc9bc$d44@apakabar.cc.columbia.edu>
  113301. References: <3m9c8e$c48@ccshst05.cs.uoguelph.ca>
  113302. Nntp-Posting-Host: watsun.cc.columbia.edu
  113303. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  113304.  
  113305. In article <3m9c8e$c48@ccshst05.cs.uoguelph.ca>,
  113306. Leon Loo <lloo@uoguelph.ca> wrote:
  113307. >I was wondering if there is anyway of detecting the status of the phone line
  113308. >while in a kermit script?  I'm going to a host periodically hangs up.
  113309. >
  113310. The command is:
  113311.  
  113312.   wait <secs> CD
  113313.  
  113314. - Frank
  113315.  
  113316.  
  113317.  
  113318. From news@columbia.edu Mon Apr 10 18:24:44 1995
  113319. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20400
  113320.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 10 Apr 1995 18:11:04 -0400
  113321. Received: by apakabar.cc.columbia.edu id AA15598
  113322.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 10 Apr 1995 18:10:29 -0400
  113323. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!gatech!udel!news.mathworks.com!news.duke.edu!godot.cc.duq.edu!newsfeed.pitt.edu!dsinc!netnews.upenn.edu!cronkite.ocis.temple.edu!astro.ocis.temple.edu!jprice
  113324. From: jprice@astro.ocis.temple.edu (John Price)
  113325. Newsgroups: comp.protocols.kermit.misc
  113326. Subject: Tuning Kermit
  113327. Date: 10 Apr 1995 18:24:44 GMT
  113328. Organization: Temple University, Academic Computer Services
  113329. Lines: 12
  113330. Message-Id: <3mbt5c$epg@cronkite.ocis.temple.edu>
  113331. Nntp-Posting-Host: astro.ocis.temple.edu
  113332. X-Newsreader: TIN [version 1.2 PL2]
  113333. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  113334.  
  113335. We're using kermit to do file transfers from an IBM 3090 through a Cisco 
  113336. terminal server. After reading the faq, I noticed that Cisco might have 
  113337. problems with tn3270 emulation, so I tried logging in to a unix machine 
  113338. (system V release 3 I believe) and using it's tn3270. I get the same 
  113339. throughput, at about 90 char length packets (oscilates between 89 and 90). 
  113340.  
  113341. When I set packet lengths above 100, i get lockup. I suspect that our 
  113342. tn3270 has a maximum packet lenght around 100, which would mean 90 is about 
  113343. all we could do. Any hints?
  113344.  
  113345. John Price
  113346. Temple University NOC
  113347.  
  113348. From news@columbia.edu Mon Apr 10 18:04:14 1995
  113349. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21764
  113350.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 10 Apr 1995 18:40:11 -0400
  113351. Received: by apakabar.cc.columbia.edu id AA18703
  113352.   (5.6