Home » Archimedes archive » Acorn User » AU 1995-05.adf » !Internet_StarterPak » !TCPIP/TCPIP_Doc/History/New_200e
!TCPIP/TCPIP_Doc/History/New_200e
This website contains an archive of files for the Acorn Electron, BBC Micro, Acorn Archimedes, Commodore 16 and Commodore 64 computers, which Dominic Ford has rescued from his private collection of floppy disks and cassettes.
Some of these files were originally commercial releases in the 1980s and 1990s, but they are now widely available online. I assume that copyright over them is no longer being asserted. If you own the copyright and would like files to be removed, please contact me.
Tape/disk: | Home » Archimedes archive » Acorn User » AU 1995-05.adf » !Internet_StarterPak |
Filename: | !TCPIP/TCPIP_Doc/History/New_200e |
Read OK: | ✔ |
File size: | 13CA bytes |
Load address: | 0000 |
Exec address: | 0000 |
File contents
Fixes (2.00e) ============= Whats Fixed? ============ NNTP Long line problem ---------------------- NNTP bug reported in d.i.s.archimedes. Characters lost from long lines. Now fixed. Experimentation with test messages seems to indicate that either the Demon news server or post machine have a general line length limit of 500 or so characters. From the NNTP server source, it appears that header lines can be upto 1024 characters long. I have ammended !TCPIP NNTP client to be able to cope with 1024 characters header lines. Windows re-opening ------------------ Closed windows can sometimes re-open when new text is written to them causing the cursor to move. This only applies when Cursor follow is enabled. Now fixed. Save Selection -------------- Save selection via the saveas dbox leaves a shaded option icon visible. It shouldn't. Now fixed. FTP hash -------- FTP hash command now replies with the ftp prompt. FTP server type --------------- The FTP server in !TCPIP now replies to mode changes commands (A,I etc) with Image type OK or Ascii type OK as appropriate. Changes ======= FTP prompt ---------- When a transfer is in progress, the "ftp> " prompt changes to "ftp- ". Also a prompt appears upon completion being determined at this end. The purpose of this change is to make chat scripts easier to use in that batch fetch can be done by scanning for "ftp> " upon completion of any operation. If in use, you find an that a prompt doesn't appear as/when expected, please advise. The following is an example of an extended FTP command file to login to Demon's FTP server and retrieve a set of files, and then exit. -----8<---- CUT HERE ----8<----- ftp ftp.demon.co.uk \ \ "name: " "anonymous\r\n" "assword: " "username@hostname.demon.co.uk\r\n" "ftp> " "bin\r\n" "ftp> " "hash 1\r\n" "ftp> " "get /pub/archimedes/developers/0README.TXT\r\n" "ftp> " "get /pub/archimedes/developers/tcpip2info\r\n" "ftp> " "quit\r\n" -----8<---- CUT HERE ----8<----- username should be replace by your own user name, hostname should be replace by your own host name. Command box ----------- Command box at top of windows has had its buffer increased to 1024 characters to better cope with longer command line chat scripts. General TCPIP command processing was, in an earlier V2 release, changed to allow upto 32 separate tokens to be be used in a command rather than the original 10 and should still cope with this new buffer length. To make extended command with chat scripts easier to prepare in !Edit or !Zap etc, newlines in a text file dragged into the command box are replaced with spaces. If the resulting file plus contents of box exceed 1021 characters, a beep is heard, but no error is given. Control characters other than '\n' ie normal end of line in !Edit may terminate command extraction from an imported text file. Small NNTP, SMTP and POP windows -------------------------------- These small windows were introduced in version 2.00d as an experiment for comment following comments made on versions 2.00a-2.00c. Further comments received on these small windows have led to a further change that should more or less solve the dialemma. These windows will now have their normal (80 x 24) maximum size by default, but will be opened at a reduced size, enabling them to be toggled to full size by the user. In the future, it is likely that the default work area extent of these windows will be linked to the trace level in use. In addition, the terminal size switches ('X<n>' and "Y<n>") have been renamed as "XE<n>" and "YE<n>" and two additional switches for setting the default visible workarea have been added as "XV<n>" and "YV<n>". Note that the wimp operation equivelent of these new switches is to adjust the visible size of a window in the normal manner, thus no dialogue box will be provided. In order to gain dynamically from this, the SMTP/NNTP/POP KICK commands will be extended to be able to accept terminal control switches in a future release if not in the 2.00e release. Telnet, FTP and Finger allready accept these switches. Current session --------------- Starting a telnet, ftp or finger session makes it the current session, allowing command files to be able to start a telnet session and follow with a record/upload command etc. A new command, "Terminal" has been added which allows terminal control commands to be applied to the current session. This includes chat strings, however, a new chat sequence will immediately over-ride a previous registered sequence. This will be ammend at some time. Terminal <switches> applies given switches to the current session's window. Terminal * <switches> applies given switches to the command window. SMTP NNTP and POP ----------------- As mentioned above for NNTP, SMTP and POP have also have had their line buffers increased to 1024 characters. The main effect of this change is to allow NNTP, SMTP and POP to correctly parse long header lines. Longer buffers don't actually have any effect upon body text which should be acceptable in any line length.
00000000 46 69 78 65 73 20 28 32 2e 30 30 65 29 0a 3d 3d |Fixes (2.00e).==| 00000010 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 0a 0a 57 68 61 |===========..Wha| 00000020 74 73 20 46 69 78 65 64 3f 0a 3d 3d 3d 3d 3d 3d |ts Fixed?.======| 00000030 3d 3d 3d 3d 3d 3d 0a 0a 4e 4e 54 50 20 4c 6f 6e |======..NNTP Lon| 00000040 67 20 6c 69 6e 65 20 70 72 6f 62 6c 65 6d 0a 2d |g line problem.-| 00000050 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d |----------------| 00000060 2d 2d 2d 2d 2d 0a 4e 4e 54 50 20 62 75 67 20 72 |-----.NNTP bug r| 00000070 65 70 6f 72 74 65 64 20 69 6e 20 64 2e 69 2e 73 |eported in d.i.s| 00000080 2e 61 72 63 68 69 6d 65 64 65 73 2e 20 43 68 61 |.archimedes. Cha| 00000090 72 61 63 74 65 72 73 20 6c 6f 73 74 20 66 72 6f |racters lost fro| 000000a0 6d 20 6c 6f 6e 67 20 6c 69 6e 65 73 2e 0a 4e 6f |m long lines..No| 000000b0 77 20 66 69 78 65 64 2e 0a 0a 45 78 70 65 72 69 |w fixed...Experi| 000000c0 6d 65 6e 74 61 74 69 6f 6e 20 77 69 74 68 20 74 |mentation with t| 000000d0 65 73 74 20 6d 65 73 73 61 67 65 73 20 73 65 65 |est messages see| 000000e0 6d 73 20 74 6f 20 69 6e 64 69 63 61 74 65 20 74 |ms to indicate t| 000000f0 68 61 74 20 65 69 74 68 65 72 20 74 68 65 0a 44 |hat either the.D| 00000100 65 6d 6f 6e 20 6e 65 77 73 20 73 65 72 76 65 72 |emon news server| 00000110 20 6f 72 20 70 6f 73 74 20 6d 61 63 68 69 6e 65 | or post machine| 00000120 20 68 61 76 65 20 61 20 67 65 6e 65 72 61 6c 20 | have a general | 00000130 6c 69 6e 65 20 6c 65 6e 67 74 68 20 6c 69 6d 69 |line length limi| 00000140 74 20 6f 66 0a 35 30 30 20 6f 72 20 73 6f 20 63 |t of.500 or so c| 00000150 68 61 72 61 63 74 65 72 73 2e 0a 0a 46 72 6f 6d |haracters...From| 00000160 20 74 68 65 20 4e 4e 54 50 20 73 65 72 76 65 72 | the NNTP server| 00000170 20 73 6f 75 72 63 65 2c 20 69 74 20 61 70 70 65 | source, it appe| 00000180 61 72 73 20 74 68 61 74 20 68 65 61 64 65 72 20 |ars that header | 00000190 6c 69 6e 65 73 20 63 61 6e 20 62 65 20 75 70 74 |lines can be upt| 000001a0 6f 0a 31 30 32 34 20 63 68 61 72 61 63 74 65 72 |o.1024 character| 000001b0 73 20 6c 6f 6e 67 2e 20 49 20 68 61 76 65 20 61 |s long. I have a| 000001c0 6d 6d 65 6e 64 65 64 20 21 54 43 50 49 50 20 4e |mmended !TCPIP N| 000001d0 4e 54 50 20 63 6c 69 65 6e 74 20 74 6f 20 62 65 |NTP client to be| 000001e0 20 61 62 6c 65 20 74 6f 0a 63 6f 70 65 20 77 69 | able to.cope wi| 000001f0 74 68 20 31 30 32 34 20 63 68 61 72 61 63 74 65 |th 1024 characte| 00000200 72 73 20 68 65 61 64 65 72 20 6c 69 6e 65 73 2e |rs header lines.| 00000210 0a 0a 0a 57 69 6e 64 6f 77 73 20 72 65 2d 6f 70 |...Windows re-op| 00000220 65 6e 69 6e 67 0a 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d |ening.----------| 00000230 2d 2d 2d 2d 2d 2d 2d 2d 0a 43 6c 6f 73 65 64 20 |--------.Closed | 00000240 77 69 6e 64 6f 77 73 20 63 61 6e 20 73 6f 6d 65 |windows can some| 00000250 74 69 6d 65 73 20 72 65 2d 6f 70 65 6e 20 77 68 |times re-open wh| 00000260 65 6e 20 6e 65 77 20 74 65 78 74 20 69 73 20 77 |en new text is w| 00000270 72 69 74 74 65 6e 20 74 6f 20 74 68 65 6d 0a 63 |ritten to them.c| 00000280 61 75 73 69 6e 67 20 74 68 65 20 63 75 72 73 6f |ausing the curso| 00000290 72 20 74 6f 20 6d 6f 76 65 2e 20 54 68 69 73 20 |r to move. This | 000002a0 6f 6e 6c 79 20 61 70 70 6c 69 65 73 20 77 68 65 |only applies whe| 000002b0 6e 20 43 75 72 73 6f 72 20 66 6f 6c 6c 6f 77 20 |n Cursor follow | 000002c0 69 73 0a 65 6e 61 62 6c 65 64 2e 0a 0a 4e 6f 77 |is.enabled...Now| 000002d0 20 66 69 78 65 64 2e 0a 0a 0a 53 61 76 65 20 53 | fixed....Save S| 000002e0 65 6c 65 63 74 69 6f 6e 0a 2d 2d 2d 2d 2d 2d 2d |election.-------| 000002f0 2d 2d 2d 2d 2d 2d 2d 0a 53 61 76 65 20 73 65 6c |-------.Save sel| 00000300 65 63 74 69 6f 6e 20 76 69 61 20 74 68 65 20 73 |ection via the s| 00000310 61 76 65 61 73 20 64 62 6f 78 20 6c 65 61 76 65 |aveas dbox leave| 00000320 73 20 61 20 73 68 61 64 65 64 20 6f 70 74 69 6f |s a shaded optio| 00000330 6e 20 69 63 6f 6e 20 76 69 73 69 62 6c 65 2e 0a |n icon visible..| 00000340 49 74 20 73 68 6f 75 6c 64 6e 27 74 2e 0a 0a 4e |It shouldn't...N| 00000350 6f 77 20 66 69 78 65 64 2e 0a 0a 0a 46 54 50 20 |ow fixed....FTP | 00000360 68 61 73 68 0a 2d 2d 2d 2d 2d 2d 2d 2d 0a 46 54 |hash.--------.FT| 00000370 50 20 68 61 73 68 20 63 6f 6d 6d 61 6e 64 20 6e |P hash command n| 00000380 6f 77 20 72 65 70 6c 69 65 73 20 77 69 74 68 20 |ow replies with | 00000390 74 68 65 20 66 74 70 20 70 72 6f 6d 70 74 2e 0a |the ftp prompt..| 000003a0 0a 0a 46 54 50 20 73 65 72 76 65 72 20 74 79 70 |..FTP server typ| 000003b0 65 0a 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d |e.--------------| 000003c0 2d 0a 54 68 65 20 46 54 50 20 73 65 72 76 65 72 |-.The FTP server| 000003d0 20 69 6e 20 21 54 43 50 49 50 20 6e 6f 77 20 72 | in !TCPIP now r| 000003e0 65 70 6c 69 65 73 20 74 6f 20 6d 6f 64 65 20 63 |eplies to mode c| 000003f0 68 61 6e 67 65 73 20 63 6f 6d 6d 61 6e 64 73 20 |hanges commands | 00000400 28 41 2c 49 20 65 74 63 29 0a 77 69 74 68 20 49 |(A,I etc).with I| 00000410 6d 61 67 65 20 74 79 70 65 20 4f 4b 20 6f 72 20 |mage type OK or | 00000420 41 73 63 69 69 20 74 79 70 65 20 4f 4b 20 61 73 |Ascii type OK as| 00000430 20 61 70 70 72 6f 70 72 69 61 74 65 2e 0a 0a 0a | appropriate....| 00000440 0a 43 68 61 6e 67 65 73 0a 3d 3d 3d 3d 3d 3d 3d |.Changes.=======| 00000450 0a 0a 46 54 50 20 70 72 6f 6d 70 74 0a 2d 2d 2d |..FTP prompt.---| 00000460 2d 2d 2d 2d 2d 2d 2d 0a 57 68 65 6e 20 61 20 74 |-------.When a t| 00000470 72 61 6e 73 66 65 72 20 69 73 20 69 6e 20 70 72 |ransfer is in pr| 00000480 6f 67 72 65 73 73 2c 20 74 68 65 20 22 66 74 70 |ogress, the "ftp| 00000490 3e 20 22 20 70 72 6f 6d 70 74 20 63 68 61 6e 67 |> " prompt chang| 000004a0 65 73 20 74 6f 20 22 66 74 70 2d 20 22 2e 0a 41 |es to "ftp- "..A| 000004b0 6c 73 6f 20 61 20 70 72 6f 6d 70 74 20 61 70 70 |lso a prompt app| 000004c0 65 61 72 73 20 75 70 6f 6e 20 63 6f 6d 70 6c 65 |ears upon comple| 000004d0 74 69 6f 6e 20 62 65 69 6e 67 20 64 65 74 65 72 |tion being deter| 000004e0 6d 69 6e 65 64 20 61 74 20 74 68 69 73 20 65 6e |mined at this en| 000004f0 64 2e 0a 0a 54 68 65 20 70 75 72 70 6f 73 65 20 |d...The purpose | 00000500 6f 66 20 74 68 69 73 20 63 68 61 6e 67 65 20 69 |of this change i| 00000510 73 20 74 6f 20 6d 61 6b 65 20 63 68 61 74 20 73 |s to make chat s| 00000520 63 72 69 70 74 73 20 65 61 73 69 65 72 20 74 6f |cripts easier to| 00000530 20 75 73 65 20 69 6e 20 74 68 61 74 0a 62 61 74 | use in that.bat| 00000540 63 68 20 66 65 74 63 68 20 63 61 6e 20 62 65 20 |ch fetch can be | 00000550 64 6f 6e 65 20 62 79 20 73 63 61 6e 6e 69 6e 67 |done by scanning| 00000560 20 66 6f 72 20 22 66 74 70 3e 20 22 20 75 70 6f | for "ftp> " upo| 00000570 6e 20 63 6f 6d 70 6c 65 74 69 6f 6e 20 6f 66 20 |n completion of | 00000580 61 6e 79 0a 6f 70 65 72 61 74 69 6f 6e 2e 0a 0a |any.operation...| 00000590 49 66 20 69 6e 20 75 73 65 2c 20 79 6f 75 20 66 |If in use, you f| 000005a0 69 6e 64 20 61 6e 20 74 68 61 74 20 61 20 70 72 |ind an that a pr| 000005b0 6f 6d 70 74 20 64 6f 65 73 6e 27 74 20 61 70 70 |ompt doesn't app| 000005c0 65 61 72 20 61 73 2f 77 68 65 6e 20 65 78 70 65 |ear as/when expe| 000005d0 63 74 65 64 2c 0a 70 6c 65 61 73 65 20 61 64 76 |cted,.please adv| 000005e0 69 73 65 2e 0a 0a 54 68 65 20 66 6f 6c 6c 6f 77 |ise...The follow| 000005f0 69 6e 67 20 69 73 20 61 6e 20 65 78 61 6d 70 6c |ing is an exampl| 00000600 65 20 6f 66 20 61 6e 20 65 78 74 65 6e 64 65 64 |e of an extended| 00000610 20 46 54 50 20 63 6f 6d 6d 61 6e 64 20 66 69 6c | FTP command fil| 00000620 65 20 74 6f 20 6c 6f 67 69 6e 20 74 6f 0a 44 65 |e to login to.De| 00000630 6d 6f 6e 27 73 20 46 54 50 20 73 65 72 76 65 72 |mon's FTP server| 00000640 20 61 6e 64 20 72 65 74 72 69 65 76 65 20 61 20 | and retrieve a | 00000650 73 65 74 20 6f 66 20 66 69 6c 65 73 2c 20 61 6e |set of files, an| 00000660 64 20 74 68 65 6e 20 65 78 69 74 2e 0a 0a 20 2d |d then exit... -| 00000670 2d 2d 2d 2d 38 3c 2d 2d 2d 2d 20 43 55 54 20 48 |----8<---- CUT H| 00000680 45 52 45 20 2d 2d 2d 2d 38 3c 2d 2d 2d 2d 2d 0a |ERE ----8<-----.| 00000690 66 74 70 20 66 74 70 2e 64 65 6d 6f 6e 2e 63 6f |ftp ftp.demon.co| 000006a0 2e 75 6b 20 5c 20 5c 0a 22 6e 61 6d 65 3a 20 22 |.uk \ \."name: "| 000006b0 20 22 61 6e 6f 6e 79 6d 6f 75 73 5c 72 5c 6e 22 | "anonymous\r\n"| 000006c0 0a 22 61 73 73 77 6f 72 64 3a 20 22 20 22 75 73 |."assword: " "us| 000006d0 65 72 6e 61 6d 65 40 68 6f 73 74 6e 61 6d 65 2e |ername@hostname.| 000006e0 64 65 6d 6f 6e 2e 63 6f 2e 75 6b 5c 72 5c 6e 22 |demon.co.uk\r\n"| 000006f0 0a 22 66 74 70 3e 20 22 20 22 62 69 6e 5c 72 5c |."ftp> " "bin\r\| 00000700 6e 22 0a 22 66 74 70 3e 20 22 20 22 68 61 73 68 |n"."ftp> " "hash| 00000710 20 31 5c 72 5c 6e 22 0a 22 66 74 70 3e 20 22 20 | 1\r\n"."ftp> " | 00000720 22 67 65 74 20 2f 70 75 62 2f 61 72 63 68 69 6d |"get /pub/archim| 00000730 65 64 65 73 2f 64 65 76 65 6c 6f 70 65 72 73 2f |edes/developers/| 00000740 30 52 45 41 44 4d 45 2e 54 58 54 5c 72 5c 6e 22 |0README.TXT\r\n"| 00000750 0a 22 66 74 70 3e 20 22 20 22 67 65 74 20 2f 70 |."ftp> " "get /p| 00000760 75 62 2f 61 72 63 68 69 6d 65 64 65 73 2f 64 65 |ub/archimedes/de| 00000770 76 65 6c 6f 70 65 72 73 2f 74 63 70 69 70 32 69 |velopers/tcpip2i| 00000780 6e 66 6f 5c 72 5c 6e 22 0a 22 66 74 70 3e 20 22 |nfo\r\n"."ftp> "| 00000790 20 22 71 75 69 74 5c 72 5c 6e 22 0a 20 2d 2d 2d | "quit\r\n". ---| 000007a0 2d 2d 38 3c 2d 2d 2d 2d 20 43 55 54 20 48 45 52 |--8<---- CUT HER| 000007b0 45 20 2d 2d 2d 2d 38 3c 2d 2d 2d 2d 2d 0a 0a 75 |E ----8<-----..u| 000007c0 73 65 72 6e 61 6d 65 20 73 68 6f 75 6c 64 20 62 |sername should b| 000007d0 65 20 72 65 70 6c 61 63 65 20 62 79 20 79 6f 75 |e replace by you| 000007e0 72 20 6f 77 6e 20 75 73 65 72 20 6e 61 6d 65 2c |r own user name,| 000007f0 0a 68 6f 73 74 6e 61 6d 65 20 73 68 6f 75 6c 64 |.hostname should| 00000800 20 62 65 20 72 65 70 6c 61 63 65 20 62 79 20 79 | be replace by y| 00000810 6f 75 72 20 6f 77 6e 20 68 6f 73 74 20 6e 61 6d |our own host nam| 00000820 65 2e 0a 0a 0a 0a 43 6f 6d 6d 61 6e 64 20 62 6f |e.....Command bo| 00000830 78 0a 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 0a 43 6f |x.-----------.Co| 00000840 6d 6d 61 6e 64 20 62 6f 78 20 61 74 20 74 6f 70 |mmand box at top| 00000850 20 6f 66 20 77 69 6e 64 6f 77 73 20 68 61 73 20 | of windows has | 00000860 68 61 64 20 69 74 73 20 62 75 66 66 65 72 20 69 |had its buffer i| 00000870 6e 63 72 65 61 73 65 64 20 74 6f 20 31 30 32 34 |ncreased to 1024| 00000880 0a 63 68 61 72 61 63 74 65 72 73 20 74 6f 20 62 |.characters to b| 00000890 65 74 74 65 72 20 63 6f 70 65 20 77 69 74 68 20 |etter cope with | 000008a0 6c 6f 6e 67 65 72 20 63 6f 6d 6d 61 6e 64 20 6c |longer command l| 000008b0 69 6e 65 20 63 68 61 74 20 73 63 72 69 70 74 73 |ine chat scripts| 000008c0 2e 0a 0a 47 65 6e 65 72 61 6c 20 54 43 50 49 50 |...General TCPIP| 000008d0 20 63 6f 6d 6d 61 6e 64 20 70 72 6f 63 65 73 73 | command process| 000008e0 69 6e 67 20 77 61 73 2c 20 69 6e 20 61 6e 20 65 |ing was, in an e| 000008f0 61 72 6c 69 65 72 20 56 32 20 72 65 6c 65 61 73 |arlier V2 releas| 00000900 65 2c 20 63 68 61 6e 67 65 64 0a 74 6f 20 61 6c |e, changed.to al| 00000910 6c 6f 77 20 75 70 74 6f 20 33 32 20 73 65 70 61 |low upto 32 sepa| 00000920 72 61 74 65 20 74 6f 6b 65 6e 73 20 74 6f 20 62 |rate tokens to b| 00000930 65 20 62 65 20 75 73 65 64 20 69 6e 20 61 20 63 |e be used in a c| 00000940 6f 6d 6d 61 6e 64 20 72 61 74 68 65 72 20 74 68 |ommand rather th| 00000950 61 6e 0a 74 68 65 20 6f 72 69 67 69 6e 61 6c 20 |an.the original | 00000960 31 30 20 61 6e 64 20 73 68 6f 75 6c 64 20 73 74 |10 and should st| 00000970 69 6c 6c 20 63 6f 70 65 20 77 69 74 68 20 74 68 |ill cope with th| 00000980 69 73 20 6e 65 77 20 62 75 66 66 65 72 20 6c 65 |is new buffer le| 00000990 6e 67 74 68 2e 0a 0a 54 6f 20 6d 61 6b 65 20 65 |ngth...To make e| 000009a0 78 74 65 6e 64 65 64 20 63 6f 6d 6d 61 6e 64 20 |xtended command | 000009b0 77 69 74 68 20 63 68 61 74 20 73 63 72 69 70 74 |with chat script| 000009c0 73 20 65 61 73 69 65 72 20 74 6f 20 70 72 65 70 |s easier to prep| 000009d0 61 72 65 20 69 6e 20 21 45 64 69 74 20 6f 72 0a |are in !Edit or.| 000009e0 21 5a 61 70 20 65 74 63 2c 20 6e 65 77 6c 69 6e |!Zap etc, newlin| 000009f0 65 73 20 69 6e 20 61 20 74 65 78 74 20 66 69 6c |es in a text fil| 00000a00 65 20 64 72 61 67 67 65 64 20 69 6e 74 6f 20 74 |e dragged into t| 00000a10 68 65 20 63 6f 6d 6d 61 6e 64 20 62 6f 78 20 61 |he command box a| 00000a20 72 65 0a 72 65 70 6c 61 63 65 64 20 77 69 74 68 |re.replaced with| 00000a30 20 73 70 61 63 65 73 2e 0a 0a 49 66 20 74 68 65 | spaces...If the| 00000a40 20 72 65 73 75 6c 74 69 6e 67 20 66 69 6c 65 20 | resulting file | 00000a50 70 6c 75 73 20 63 6f 6e 74 65 6e 74 73 20 6f 66 |plus contents of| 00000a60 20 62 6f 78 20 65 78 63 65 65 64 20 31 30 32 31 | box exceed 1021| 00000a70 20 63 68 61 72 61 63 74 65 72 73 2c 20 61 0a 62 | characters, a.b| 00000a80 65 65 70 20 69 73 20 68 65 61 72 64 2c 20 62 75 |eep is heard, bu| 00000a90 74 20 6e 6f 20 65 72 72 6f 72 20 69 73 20 67 69 |t no error is gi| 00000aa0 76 65 6e 2e 0a 0a 43 6f 6e 74 72 6f 6c 20 63 68 |ven...Control ch| 00000ab0 61 72 61 63 74 65 72 73 20 6f 74 68 65 72 20 74 |aracters other t| 00000ac0 68 61 6e 20 27 5c 6e 27 20 69 65 20 6e 6f 72 6d |han '\n' ie norm| 00000ad0 61 6c 20 65 6e 64 20 6f 66 20 6c 69 6e 65 20 69 |al end of line i| 00000ae0 6e 20 21 45 64 69 74 20 6d 61 79 0a 74 65 72 6d |n !Edit may.term| 00000af0 69 6e 61 74 65 20 63 6f 6d 6d 61 6e 64 20 65 78 |inate command ex| 00000b00 74 72 61 63 74 69 6f 6e 20 66 72 6f 6d 20 61 6e |traction from an| 00000b10 20 69 6d 70 6f 72 74 65 64 20 74 65 78 74 20 66 | imported text f| 00000b20 69 6c 65 2e 0a 0a 0a 0a 53 6d 61 6c 6c 20 4e 4e |ile.....Small NN| 00000b30 54 50 2c 20 53 4d 54 50 20 61 6e 64 20 50 4f 50 |TP, SMTP and POP| 00000b40 20 77 69 6e 64 6f 77 73 0a 2d 2d 2d 2d 2d 2d 2d | windows.-------| 00000b50 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d |----------------| 00000b60 2d 2d 2d 2d 2d 2d 2d 2d 2d 0a 54 68 65 73 65 20 |---------.These | 00000b70 73 6d 61 6c 6c 20 77 69 6e 64 6f 77 73 20 77 65 |small windows we| 00000b80 72 65 20 69 6e 74 72 6f 64 75 63 65 64 20 69 6e |re introduced in| 00000b90 20 76 65 72 73 69 6f 6e 20 32 2e 30 30 64 20 61 | version 2.00d a| 00000ba0 73 20 61 6e 20 65 78 70 65 72 69 6d 65 6e 74 0a |s an experiment.| 00000bb0 66 6f 72 20 63 6f 6d 6d 65 6e 74 20 66 6f 6c 6c |for comment foll| 00000bc0 6f 77 69 6e 67 20 63 6f 6d 6d 65 6e 74 73 20 6d |owing comments m| 00000bd0 61 64 65 20 6f 6e 20 76 65 72 73 69 6f 6e 73 20 |ade on versions | 00000be0 32 2e 30 30 61 2d 32 2e 30 30 63 2e 0a 0a 46 75 |2.00a-2.00c...Fu| 00000bf0 72 74 68 65 72 20 63 6f 6d 6d 65 6e 74 73 20 72 |rther comments r| 00000c00 65 63 65 69 76 65 64 20 6f 6e 20 74 68 65 73 65 |eceived on these| 00000c10 20 73 6d 61 6c 6c 20 77 69 6e 64 6f 77 73 20 68 | small windows h| 00000c20 61 76 65 20 6c 65 64 20 74 6f 20 61 20 66 75 72 |ave led to a fur| 00000c30 74 68 65 72 0a 63 68 61 6e 67 65 20 74 68 61 74 |ther.change that| 00000c40 20 73 68 6f 75 6c 64 20 6d 6f 72 65 20 6f 72 20 | should more or | 00000c50 6c 65 73 73 20 73 6f 6c 76 65 20 74 68 65 20 64 |less solve the d| 00000c60 69 61 6c 65 6d 6d 61 2e 0a 0a 54 68 65 73 65 20 |ialemma...These | 00000c70 77 69 6e 64 6f 77 73 20 77 69 6c 6c 20 6e 6f 77 |windows will now| 00000c80 20 68 61 76 65 20 74 68 65 69 72 20 6e 6f 72 6d | have their norm| 00000c90 61 6c 20 28 38 30 20 78 20 32 34 29 20 6d 61 78 |al (80 x 24) max| 00000ca0 69 6d 75 6d 20 73 69 7a 65 20 62 79 0a 64 65 66 |imum size by.def| 00000cb0 61 75 6c 74 2c 20 62 75 74 20 77 69 6c 6c 20 62 |ault, but will b| 00000cc0 65 20 6f 70 65 6e 65 64 20 61 74 20 61 20 72 65 |e opened at a re| 00000cd0 64 75 63 65 64 20 73 69 7a 65 2c 20 65 6e 61 62 |duced size, enab| 00000ce0 6c 69 6e 67 20 74 68 65 6d 20 74 6f 20 62 65 0a |ling them to be.| 00000cf0 74 6f 67 67 6c 65 64 20 74 6f 20 66 75 6c 6c 20 |toggled to full | 00000d00 73 69 7a 65 20 62 79 20 74 68 65 20 75 73 65 72 |size by the user| 00000d10 2e 20 49 6e 20 74 68 65 20 66 75 74 75 72 65 2c |. In the future,| 00000d20 20 69 74 20 69 73 20 6c 69 6b 65 6c 79 20 74 68 | it is likely th| 00000d30 61 74 20 74 68 65 0a 64 65 66 61 75 6c 74 20 77 |at the.default w| 00000d40 6f 72 6b 20 61 72 65 61 20 65 78 74 65 6e 74 20 |ork area extent | 00000d50 6f 66 20 74 68 65 73 65 20 77 69 6e 64 6f 77 73 |of these windows| 00000d60 20 77 69 6c 6c 20 62 65 20 6c 69 6e 6b 65 64 20 | will be linked | 00000d70 74 6f 20 74 68 65 20 74 72 61 63 65 0a 6c 65 76 |to the trace.lev| 00000d80 65 6c 20 69 6e 20 75 73 65 2e 0a 0a 49 6e 20 61 |el in use...In a| 00000d90 64 64 69 74 69 6f 6e 2c 20 74 68 65 20 74 65 72 |ddition, the ter| 00000da0 6d 69 6e 61 6c 20 73 69 7a 65 20 73 77 69 74 63 |minal size switc| 00000db0 68 65 73 20 28 27 58 3c 6e 3e 27 20 61 6e 64 20 |hes ('X<n>' and | 00000dc0 22 59 3c 6e 3e 22 29 20 68 61 76 65 20 62 65 65 |"Y<n>") have bee| 00000dd0 6e 0a 72 65 6e 61 6d 65 64 20 61 73 20 22 58 45 |n.renamed as "XE| 00000de0 3c 6e 3e 22 20 61 6e 64 20 22 59 45 3c 6e 3e 22 |<n>" and "YE<n>"| 00000df0 20 61 6e 64 20 74 77 6f 20 61 64 64 69 74 69 6f | and two additio| 00000e00 6e 61 6c 20 73 77 69 74 63 68 65 73 20 66 6f 72 |nal switches for| 00000e10 20 73 65 74 74 69 6e 67 0a 74 68 65 20 64 65 66 | setting.the def| 00000e20 61 75 6c 74 20 76 69 73 69 62 6c 65 20 77 6f 72 |ault visible wor| 00000e30 6b 61 72 65 61 20 68 61 76 65 20 62 65 65 6e 20 |karea have been | 00000e40 61 64 64 65 64 20 61 73 20 22 58 56 3c 6e 3e 22 |added as "XV<n>"| 00000e50 20 61 6e 64 20 22 59 56 3c 6e 3e 22 2e 0a 0a 4e | and "YV<n>"...N| 00000e60 6f 74 65 20 74 68 61 74 20 74 68 65 20 77 69 6d |ote that the wim| 00000e70 70 20 6f 70 65 72 61 74 69 6f 6e 20 65 71 75 69 |p operation equi| 00000e80 76 65 6c 65 6e 74 20 6f 66 20 74 68 65 73 65 20 |velent of these | 00000e90 6e 65 77 20 73 77 69 74 63 68 65 73 20 69 73 20 |new switches is | 00000ea0 74 6f 0a 61 64 6a 75 73 74 20 74 68 65 20 76 69 |to.adjust the vi| 00000eb0 73 69 62 6c 65 20 73 69 7a 65 20 6f 66 20 61 20 |sible size of a | 00000ec0 77 69 6e 64 6f 77 20 69 6e 20 74 68 65 20 6e 6f |window in the no| 00000ed0 72 6d 61 6c 20 6d 61 6e 6e 65 72 2c 20 74 68 75 |rmal manner, thu| 00000ee0 73 20 6e 6f 0a 64 69 61 6c 6f 67 75 65 20 62 6f |s no.dialogue bo| 00000ef0 78 20 77 69 6c 6c 20 62 65 20 70 72 6f 76 69 64 |x will be provid| 00000f00 65 64 2e 0a 0a 49 6e 20 6f 72 64 65 72 20 74 6f |ed...In order to| 00000f10 20 67 61 69 6e 20 64 79 6e 61 6d 69 63 61 6c 6c | gain dynamicall| 00000f20 79 20 66 72 6f 6d 20 74 68 69 73 2c 20 74 68 65 |y from this, the| 00000f30 20 53 4d 54 50 2f 4e 4e 54 50 2f 50 4f 50 20 4b | SMTP/NNTP/POP K| 00000f40 49 43 4b 20 63 6f 6d 6d 61 6e 64 73 0a 77 69 6c |ICK commands.wil| 00000f50 6c 20 62 65 20 65 78 74 65 6e 64 65 64 20 74 6f |l be extended to| 00000f60 20 62 65 20 61 62 6c 65 20 74 6f 20 61 63 63 65 | be able to acce| 00000f70 70 74 20 74 65 72 6d 69 6e 61 6c 20 63 6f 6e 74 |pt terminal cont| 00000f80 72 6f 6c 20 73 77 69 74 63 68 65 73 20 69 6e 20 |rol switches in | 00000f90 61 0a 66 75 74 75 72 65 20 72 65 6c 65 61 73 65 |a.future release| 00000fa0 20 69 66 20 6e 6f 74 20 69 6e 20 74 68 65 20 32 | if not in the 2| 00000fb0 2e 30 30 65 20 72 65 6c 65 61 73 65 2e 0a 0a 54 |.00e release...T| 00000fc0 65 6c 6e 65 74 2c 20 46 54 50 20 61 6e 64 20 46 |elnet, FTP and F| 00000fd0 69 6e 67 65 72 20 61 6c 6c 72 65 61 64 79 20 61 |inger allready a| 00000fe0 63 63 65 70 74 20 74 68 65 73 65 20 73 77 69 74 |ccept these swit| 00000ff0 63 68 65 73 2e 0a 0a 0a 43 75 72 72 65 6e 74 20 |ches....Current | 00001000 73 65 73 73 69 6f 6e 0a 2d 2d 2d 2d 2d 2d 2d 2d |session.--------| 00001010 2d 2d 2d 2d 2d 2d 2d 0a 53 74 61 72 74 69 6e 67 |-------.Starting| 00001020 20 61 20 74 65 6c 6e 65 74 2c 20 66 74 70 20 6f | a telnet, ftp o| 00001030 72 20 66 69 6e 67 65 72 20 73 65 73 73 69 6f 6e |r finger session| 00001040 20 6d 61 6b 65 73 20 69 74 20 74 68 65 20 63 75 | makes it the cu| 00001050 72 72 65 6e 74 20 73 65 73 73 69 6f 6e 2c 0a 61 |rrent session,.a| 00001060 6c 6c 6f 77 69 6e 67 20 63 6f 6d 6d 61 6e 64 20 |llowing command | 00001070 66 69 6c 65 73 20 74 6f 20 62 65 20 61 62 6c 65 |files to be able| 00001080 20 74 6f 20 73 74 61 72 74 20 61 20 74 65 6c 6e | to start a teln| 00001090 65 74 20 73 65 73 73 69 6f 6e 20 61 6e 64 20 66 |et session and f| 000010a0 6f 6c 6c 6f 77 0a 77 69 74 68 20 61 20 72 65 63 |ollow.with a rec| 000010b0 6f 72 64 2f 75 70 6c 6f 61 64 20 63 6f 6d 6d 61 |ord/upload comma| 000010c0 6e 64 20 65 74 63 2e 0a 0a 41 20 6e 65 77 20 63 |nd etc...A new c| 000010d0 6f 6d 6d 61 6e 64 2c 20 22 54 65 72 6d 69 6e 61 |ommand, "Termina| 000010e0 6c 22 20 68 61 73 20 62 65 65 6e 20 61 64 64 65 |l" has been adde| 000010f0 64 20 77 68 69 63 68 20 61 6c 6c 6f 77 73 20 74 |d which allows t| 00001100 65 72 6d 69 6e 61 6c 20 63 6f 6e 74 72 6f 6c 0a |erminal control.| 00001110 63 6f 6d 6d 61 6e 64 73 20 74 6f 20 62 65 20 61 |commands to be a| 00001120 70 70 6c 69 65 64 20 74 6f 20 74 68 65 20 63 75 |pplied to the cu| 00001130 72 72 65 6e 74 20 73 65 73 73 69 6f 6e 2e 20 54 |rrent session. T| 00001140 68 69 73 20 69 6e 63 6c 75 64 65 73 20 63 68 61 |his includes cha| 00001150 74 0a 73 74 72 69 6e 67 73 2c 20 68 6f 77 65 76 |t.strings, howev| 00001160 65 72 2c 20 61 20 6e 65 77 20 63 68 61 74 20 73 |er, a new chat s| 00001170 65 71 75 65 6e 63 65 20 77 69 6c 6c 20 69 6d 6d |equence will imm| 00001180 65 64 69 61 74 65 6c 79 20 6f 76 65 72 2d 72 69 |ediately over-ri| 00001190 64 65 20 61 0a 70 72 65 76 69 6f 75 73 20 72 65 |de a.previous re| 000011a0 67 69 73 74 65 72 65 64 20 73 65 71 75 65 6e 63 |gistered sequenc| 000011b0 65 2e 20 54 68 69 73 20 77 69 6c 6c 20 62 65 20 |e. This will be | 000011c0 61 6d 6d 65 6e 64 20 61 74 20 73 6f 6d 65 20 74 |ammend at some t| 000011d0 69 6d 65 2e 0a 0a 54 65 72 6d 69 6e 61 6c 20 3c |ime...Terminal <| 000011e0 73 77 69 74 63 68 65 73 3e 20 61 70 70 6c 69 65 |switches> applie| 000011f0 73 20 67 69 76 65 6e 20 73 77 69 74 63 68 65 73 |s given switches| 00001200 20 74 6f 20 74 68 65 20 63 75 72 72 65 6e 74 20 | to the current | 00001210 73 65 73 73 69 6f 6e 27 73 20 77 69 6e 64 6f 77 |session's window| 00001220 2e 0a 54 65 72 6d 69 6e 61 6c 20 2a 20 3c 73 77 |..Terminal * <sw| 00001230 69 74 63 68 65 73 3e 20 61 70 70 6c 69 65 73 20 |itches> applies | 00001240 67 69 76 65 6e 20 73 77 69 74 63 68 65 73 20 74 |given switches t| 00001250 6f 20 74 68 65 20 63 6f 6d 6d 61 6e 64 20 77 69 |o the command wi| 00001260 6e 64 6f 77 2e 0a 0a 0a 53 4d 54 50 20 4e 4e 54 |ndow....SMTP NNT| 00001270 50 20 61 6e 64 20 50 4f 50 0a 2d 2d 2d 2d 2d 2d |P and POP.------| 00001280 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 0a 41 73 20 6d |-----------.As m| 00001290 65 6e 74 69 6f 6e 65 64 20 61 62 6f 76 65 20 66 |entioned above f| 000012a0 6f 72 20 4e 4e 54 50 2c 20 53 4d 54 50 20 61 6e |or NNTP, SMTP an| 000012b0 64 20 50 4f 50 20 68 61 76 65 20 61 6c 73 6f 20 |d POP have also | 000012c0 68 61 76 65 20 68 61 64 20 74 68 65 69 72 20 6c |have had their l| 000012d0 69 6e 65 0a 62 75 66 66 65 72 73 20 69 6e 63 72 |ine.buffers incr| 000012e0 65 61 73 65 64 20 74 6f 20 31 30 32 34 20 63 68 |eased to 1024 ch| 000012f0 61 72 61 63 74 65 72 73 2e 20 54 68 65 20 6d 61 |aracters. The ma| 00001300 69 6e 20 65 66 66 65 63 74 20 6f 66 20 74 68 69 |in effect of thi| 00001310 73 20 63 68 61 6e 67 65 20 69 73 0a 74 6f 20 61 |s change is.to a| 00001320 6c 6c 6f 77 20 4e 4e 54 50 2c 20 53 4d 54 50 20 |llow NNTP, SMTP | 00001330 61 6e 64 20 50 4f 50 20 74 6f 20 63 6f 72 72 65 |and POP to corre| 00001340 63 74 6c 79 20 70 61 72 73 65 20 6c 6f 6e 67 20 |ctly parse long | 00001350 68 65 61 64 65 72 20 6c 69 6e 65 73 2e 20 4c 6f |header lines. Lo| 00001360 6e 67 65 72 0a 62 75 66 66 65 72 73 20 64 6f 6e |nger.buffers don| 00001370 27 74 20 61 63 74 75 61 6c 6c 79 20 68 61 76 65 |'t actually have| 00001380 20 61 6e 79 20 65 66 66 65 63 74 20 75 70 6f 6e | any effect upon| 00001390 20 62 6f 64 79 20 74 65 78 74 20 77 68 69 63 68 | body text which| 000013a0 20 73 68 6f 75 6c 64 20 62 65 0a 61 63 63 65 70 | should be.accep| 000013b0 74 61 62 6c 65 20 69 6e 20 61 6e 79 20 6c 69 6e |table in any lin| 000013c0 65 20 6c 65 6e 67 74 68 2e 0a |e length..| 000013ca