home *** CD-ROM | disk | FTP | other *** search
/ ftp.wwiv.com / ftp.wwiv.com.zip / ftp.wwiv.com / pub / PPPBCKP / SRC / SRC15B59.ZIP / CHANGES.DOC next >
Text File  |  1997-10-26  |  47KB  |  1,062 lines

  1. Beta-59
  2.  
  3.     - Bad POP.EXE in B-58!  Wasn't responding to lost carrier.
  4.  
  5.     - Reworked multiple SMTP transfer routine.
  6.  
  7.     - Removed duplicate strings in NETWORK.EXE.
  8.  
  9.     - Added a moderate stack back into NETWORK.EXE to address failed update
  10. for CONTACT.NET errors.
  11.  
  12. Beta-58
  13.  
  14.     - Fixed binary crosspost check, thanks to Papa Bear.  It wasn't counting
  15. the number of letters in BINXPOST right -- basic math skills lacking here!
  16.  
  17.     - Streamlined code for successive SMTP transfers by removing a redundant
  18. loop (again, with Papa Bear's help).
  19.  
  20.     - Killed tcp_tick() calls throughout POP and NEWS.  I never trusted these.
  21. Although they're touted as capable of tracking socket failures, I've found it
  22. actually keeps the socket alive after it's clearly failed (e.g. NO CARRIER!)
  23.  
  24.     - Returned to the stack sizes which worked consistently in B-53.  This will
  25. eliminate any CONTACT.NET errors which popped up for some systems since then.
  26. Seems to be solid here, but Weatherman will break it!  :)
  27.  
  28.     - Rewrote the stripcolors() routine in EXP so it now properly removes all
  29. colors, and the numerals associated with them, and all high ASCII.
  30.  
  31. Beta-57
  32.  
  33.     - Removed the NETWORK1/2/3 clean-up routines.  There isn't consistently
  34. enough memory to run these within a DOS spawn, and the "Out of memory" errors
  35. in NETDATx.LOG correspond directly to lost packets.  The feature's not worth
  36. the potential dangers (lost packets!)
  37.  
  38.     - Added a check to ensure that the NOSPAM.TXT keywords are longer than
  39. three characters.  This will prevent spurious things, such as a returns or
  40. spaces from triggering a TRUE result on the routine.
  41.  
  42.     - Removed the tcp_tick() calls from NEWS.  These could cause a crash if the
  43. socket is not in place.
  44.  
  45. Beta-56
  46.  
  47.     - Dropped the NETWORK stklen back to 6K as this most certainly was causing
  48. the failure to update CONTACT.NET problem on some systems.  Redesigned spawn
  49. routine not to allocate as much memory for the commandline arguments passed,
  50. which should lessen the stack requirements.  (We know the maximum number of
  51. commandline arguments passed to the spawn routine in advance, so there was no
  52. need to allocate a character array for 50 possible arguments!)
  53.  
  54.     - Hooked in calls to NETWORK1/2/3 to clean up pending packets completely
  55. before and after runtime.  The reduced overhead on the spawn routine should
  56. allow this to process without any problems.
  57.  
  58.     - Major revelation!  After looking closely at RFC 821, I realized I was
  59. misinterpreting the SMTP "MAIL" directive as inherently intertwined with the
  60. header "From:" field.  This is not the case -- the header is sent separately
  61. and does not need to reflect the "MAIL" directive used in the SMTP session.
  62. POP will now use a simple focus "Mail From:<mybbs@mydomain.com>" during SMTP
  63. send, while preserving any extended user information on the message From:
  64. header line.  Outbound mail now appears as:
  65.  
  66.                 From: User Name <mybbs@mydomain.com>
  67.  
  68. This should significantly improve the ability of most mail readers to respond
  69. to a message originated on the BBS (and increase the possibility that the
  70. response will go to the right mailbox!)  It also eliminates SMTP problems
  71. caused by forcing the extended user information into the "MAIL" directive.
  72.  
  73.     - Added a properize() routine to the outbound mail name, so it appears as
  74. it should, e.g. "Old MacDonald", "Mary Jones-Smith", etc.
  75.  
  76.     - Added a SPAM filter for news retrieval.  Create NOSPAM.TXT in the FILEnet
  77. directory with keywords to be compared (case-insensitive) against the subject
  78. and originator of each newsgroup article during retrieval.  NOSPAM.TXT should
  79. have one entry per line, e.g.
  80.  
  81. fast cash
  82. phone sex
  83. toni@spaclab.net
  84. 6t9.com
  85. $$$$
  86.  
  87. If there's a match, the message is skipped during retrieval.  The delay in
  88. parsing even a 100 line NOSPAM.TXT is insignificant compared to the time saved
  89. by not retrieving the spam!  (In other words, the comparison is pretty quick!)
  90. The check is bypassed if BINXPOST=Y in NET.INI or if NOSPAM.TXT does not exist
  91. in the FILEnet directory.
  92.  
  93. Beta-55
  94.  
  95.     - Eliminated stack overflow checking from makefile compile options which
  96. should speed up code execution (and reduce the size of executables somewhat).
  97.  
  98.     - Allocated a sockets structure in NTIME to prevent corruption across the
  99. heap (which may have caused lockups when the socket couldn't be created).
  100.  
  101.     - Changed POP to recognize FDL-type email, even if ALLMAIL=N.  Basically,
  102. if "FDL Type:" is found in the top portion of a message, it's assumed to be an
  103. file hatched via FDL, and it will be retrieved normally.
  104.  
  105.     - Changed disk space check to a Win95-friendly routine provided by Papa
  106. Bear (which allowed me to recast variables as long, vice double as was used in
  107. Wayne's disk-check routine!)
  108.  
  109.     - Increased stklen in POP (6K vice the 4K default) to address the problem
  110. with some systems hanging on file transfers.
  111.  
  112.     - Changed to tcp_tick(NULL) vice tcp_tick(Mail_Socket *).  This was changed
  113. between B-53 and B-54 and may have been the cause of lockups during SMTP send.
  114.  
  115.     - Fixed failed checks for a modified directory structures.  Dawg pointed
  116. out that I was closing the DIRS.DAT file handle before I got the length!
  117.  
  118.     - Changed to far calls for memory allocation for copyfile() and NET.LOG
  119. update routines.  This is what I would've preferred all along, but stack and
  120. other errors kept chasing me back to the standard allocation calls.
  121.  
  122. Beta-54
  123.  
  124.     - Killed redundant code in the CONTACT.NET update routine.  This should fix
  125. the unpredictable results for total time/bytes in //PENDING output.
  126.  
  127.     - Removed a one-second delay after each message was received via POP.  This
  128. was added just before B-53 and may have generated problems where POP hung when
  129. retrieving messages.
  130.  
  131.     - Cleaned up zero byte packets created during news retrieval before these
  132. are renamed to valid pending network packets.  This will preclude the network
  133. software from finding/processing them.
  134.  
  135.     - Fixed EXP routine which was stripping spaces from the REPLYTO address in
  136. NET.INI.
  137.  
  138.     - Spam-proofed the Message-ID field in newsgroup posts.  Previously, this
  139. required field had been composed using the real account name and domain.  It
  140. now uses the account name and WWIV-BBS.
  141.  
  142.     - Added BINXPOST=Y/N to NET.INI.  When <Yes>, it bypasses the check for max
  143. crossposts on binary newsgroups (must have 'binaries' in name).  This allows
  144. you to spool all messages from binary groups, regardless of crossposting.
  145.  
  146.     - Fixed overwriting display of "Expired Article." and other skipped posts
  147. during news retrieval.
  148.  
  149.     - Added a tcp_tick() call in postnews() where it could potentially die
  150. waiting for a response from the news host after posting.  (This won't speed up
  151. the server's response, but it will allow the program to exit gracefully!)
  152.  
  153. Beta-53
  154.  
  155.     - Fixed a quirk which caused NEWSRC to be retrieved entirely on subsequent
  156. runs on a new month or a forced update.
  157.  
  158.     - Changed display of expired and skipped articles to remain on a single
  159. line during retrieval.
  160.  
  161.     - Recast newsgroup count variable from a short to long integer.  For ISPs
  162. with more than 32,767 newsgroups (!), this caused the display to corrupt while
  163. retrieving a NEWSRC listing.
  164.  
  165.     - Figured out the CONTACT.NET update problem (finally!).  Somehow, in B-42,
  166. the structure for net_networks_rec had a far pointer declaration removed for
  167. two variables which control that relationship.  Yeesh...
  168.  
  169.     - Recompiled under Borland C++ v3.1... have now got TC3/BC3/BC4 installed
  170. for a broad selection!
  171.  
  172. Beta-52
  173.  
  174.     - Recompiled with Turbo C++ v3.0 instead of Borland C++ v4.52 which
  175. returned a significant amount of memory (25K) to the program.  Some of that
  176. was immediately used to increase NETWORK's stklen to 15K (in the hope that
  177. it preserves enough space to update CONTACT.NET for everyone!)
  178.  
  179.     - #defined a macro for min() in UU.C in order to use .cpp mode with
  180. compilers earlier than BC4.
  181.  
  182.     - Added self-maintaining routine to update NEWSRC with each news callout.
  183. A full NEWSRC listing is retrieved the first of each month, and updates are
  184. retrieved daily.
  185.  
  186. Beta-51
  187.  
  188.     - Returned to previous method of enclosing recipient information entirely
  189. within the focus during SMTP relay, e.g.
  190.  
  191.                 To:<user@whatever.domain (User Information)>
  192.  
  193. The changes in B-50 didn't resolve the QMail imcompatibility problem.  Adding
  194. USERMAIL=N to NET.INI bypasses extended user information and should allow it
  195. to cooperate with QMail.  (Alternately, use 138.145.3.3 for SMTP relay!)
  196.  
  197.     - Now deletes "441 Duplicate messages" during postings.  You should never
  198. see these, except when the NEWS times out during posting, in which case the
  199. duplicate message is genuine, i.e. the first message did get posted.
  200.  
  201.     - Nailed the culprit causign NEWS lockups!  I wasn't allocating enough
  202. room for a buffer when extracting information from the header, particularly
  203. the "Newsgroups:" and "Path:" fields.  This was most evident on binary groups
  204. with lots of crossposts.  When the buffer overflowed, it crashed!
  205.  
  206.     - Changed source modules to .cpp extension to force stricter bounds check
  207. and typecasting.  Got rid of POP.H and #defined what we need explicitly within
  208. the POP and NEWS modules, including Mail_Socket structures.
  209.  
  210.     - Changed most conditional routines within NEWS to switch() statements in
  211. order to track/detect socket errors more accurately and quickly.  It seems to
  212. respond flawlessly here now! :)
  213.  
  214.     - Chased my tail for a few days figuring out why the certain NEWS routines
  215. appeared to be called improperly (and overwrote memory areas allocated for
  216. other things, including the sockets!)  Turned out a global string variable was
  217. oversized at 4096 bytes (on the static heap!)  RFC 977 provides a maximum of
  218. 512 bytes for returned strings in NNTP, so that's how we're now cast.
  219.  
  220.     - Added checks to ensure the socket was alive in NEWS and POP using the
  221. Waterloo tcp_tick() routine.  Hopefully, this obviates extended periods where
  222. the server falls asleep!  Ensure "INACTIVE" and "SOCK_DELAY" in NET.INI aren't
  223. excessive.  (INACTIVE=60 and SOCK_DELAY=30 are appropriate.)
  224.  
  225.     - Returned makefile options used in B-39 to see if that solves problems on
  226. some systems with memory allocation routines, e.g. allocating for sockets.  One
  227. of the flags was for a standard stack frame.  I think this should fix the case
  228. where the POP mailbox wasn't checked unless there was outbound SMTP.
  229.  
  230.     - Revamped the BAD*.UUE check for mail originating locally, so it accepts
  231. mail in which the original message had been quoted and the original "From:"
  232. line appeared in text.  (Some mail systems, like cc:Mail, quote with just a
  233. separator line, leaving the original "From: you@where" in tact.)  It now looks
  234. only in the header for a match to determine if it's BAD*.
  235.  
  236.     - Added a definable Reply-To: field in NET.INI.  If defined, this address
  237. (up to 80 characters) will be used in the text of newsgroup posts.  It can be
  238. something like:
  239.  
  240. REPLYTO = edare{at}ix{dot}netcom{dot}com (change before responding!)
  241.  
  242.     - Fix from Zu Digital revamps NEWSNAME/NEWSPASS logic.  His local POP for
  243. Mindspring required authentication when the socket was initially opened, so the
  244. NEWSNAME and NEWSPASS are now presented at time of connection.  If your host
  245. does *not* require authentication, you *must* comment out the NEWSNAME and
  246. NEWSPASS lines in NET.INI, otherwise you'll get authentication errors!
  247.  
  248.     - Tweaked the socket error label completely in NEWS, so it does a clean
  249. exit when timeouts and session errors occur.
  250.  
  251.     - Changed the use of the "abort" variable while saving the text body in
  252. NEWS articles so it didn't chop off the message (stop writing it) after a
  253. [Space] or [Esc] command was issued.  The message now gets completed and
  254. processed normally as the last message read in that group.
  255.  
  256.     - Added a time synchronization routine (NTIME.EXE) which sets your DOS
  257. clock using a time server.  If you are unsure of your time server, use the one
  258. in the example below.  If the TIMEHOST is not defined in NET.INI or NTIME.EXE
  259. isn't in the BBS main directory, this routine will be skipped.  Add the
  260. following to NET.INI, below the SMTPHOST definition:
  261.  
  262.         TIMEHOST = ns.nctsw.navy.mil
  263.  
  264.     - Enhanced directory checking when receiving file so it places non-FDL
  265. files in the defined NOREQUEST_DIR in FDLFTS.CFG.  (If FDLFTS.CFG isn't there
  266. or the flag isn't defined, it will go to Sysop directory.)  Also, fixed a
  267. place where it wouldn't have found FDLFTS.CFG under normal circumstances.
  268.  
  269.     - Saw a first today -- a 0 octet (no size!) message was queued in my POP
  270. mailbox.  This returned a '0' to the calling routine (which uses the size), so
  271. I added code to delete it, close and update the mailbox when this happens.
  272.  
  273.     - Revised NEWS packet naming method to pass a complete filename to the
  274. routine which saves the message body.  In this manner, nothing in memory should
  275. corrupt the contents.  Added a "wait_closed()" upon error just in case.
  276.  
  277.     - Shortened up some oversized global variables in NETWORK to keep stack
  278. requirements below the default 4K.
  279.  
  280.     - Changed the display on total mailbox size to conform to the same display
  281. as sent SMTP messages, i.e. "(nnK)" vice "(nnnnn bytes)".
  282.  
  283.     - Removed a spurious "Maximum posts -" output string when retrieving binary
  284. groups.  (The max articles check in //BOARDEDIT is bypassed on binaries!)
  285.  
  286.     - Standardized/prettied up some displays when sending/receiving POP/SMTP
  287. messages.
  288.  
  289. Beta-50
  290.  
  291.     - Added a USERMAIL=Y/N option to NET.INI (see SAMPLE.INI).  This option
  292. bypasses the creation of an extended address form, i.e. the (USERNAME) which
  293. follows the user@domain in the originator field.
  294.  
  295.     - Changed the way RCPT TO passes recipient addresses during SMTP to conform
  296. to RFC, as I now understand it.  The MTA portion now relays outbound messages
  297. with any extended information outside of the wrapper, e.g.
  298. "RCPT TO:<user@whatever.domain> (extended_user_info)".
  299.  
  300.     - Incorporated Goose's fixes to stop NEWS crashing by waiting until the
  301. socket is closed before exiting.  Without this wait, there was still junk
  302. coming in the socket, even after the program exited!
  303.  
  304.     - Another Goose fix to address PPPSTATE error #255, by waiting two seconds
  305. to allow the PPP TSR to load and exit before running PPPSTATE, eliminating the
  306. possibility that PPPSTATE erroneously found no memory available.
  307.  
  308.     - In UU, added a routine to ensure the directory path for uploads to
  309. Sysop directory were explicit, e.g. "C:\WWIV\DLOADS\SYSOP" vice "DLOADS\SYSOP"
  310. (which is allowable on the BBS, but dangerous in external file operations!)
  311.  
  312.     - Eliminated an attempt to "QUIT" the POP session when encountering an
  313. error at initial connection.  (This meant the path was bad or the host was
  314. unavailable, therefore the "QUIT" command is unanswered, anyway!)
  315.  
  316.     - Added a QUIT directive during POP sessions where there is a clear fail
  317. returned to the client, e.g. bad mailbox or password, etc.  This is a nicety
  318. for our ISPs, so we always "clean up" after our POP session.
  319.  
  320.     - Now creates a backup of NEWS.RC at runtime as NEWS.BAK (in the FILEnet
  321. directory).  This was requested as a means of ensuring last read message
  322. pointers don't get trashed/lost as easily.
  323.  
  324.     - Modified the logic in an aborted NEWS sessions so the host would clear
  325. remaining buffers before returning to the calling routine, i.e. to empty the
  326. contents of any inbound stream so no junk got carried back!
  327.  
  328.     - Removed spurious "as UNK*.UUE" display when Internet mail is received
  329. and moved from the INBOUND to SPOOL directories.
  330.  
  331.     - Another Goose fix to prevent terminating an already null string in the
  332. treat() routine inside NEWS (causing the "attempt to access memory area already
  333. in use" error under some operating systems).
  334.  
  335. Beta-49
  336.  
  337.     - Oops... had a 50/50 shot and picked wrong!  Have now standardized memory
  338. allocation using malloc() calls vice farmalloc() calls, as was the case in B-39
  339. (which appears to have worked properly in retrieving mail!)
  340.  
  341.     - Again, changed the way the net_data variable is handled throughout NEWS.
  342. Last attempt caused more problems than it solved!  :(
  343.  
  344. Beta-48
  345.  
  346.     - Standardized memory allocation for the sockets in all modules.  This
  347. should address the problem of not picking up mail unless there's outbound
  348. mail to send.
  349.  
  350.     - Nailed down the variable overrun in NEWS causing abnormal exit after a
  351. line of garbage, i.e. "Can't create temporary packet <garbage>\INPUT1.MSG".
  352. The contents of a global variable ("net_data" which points to the network
  353. data directory) were getting trashed!
  354.  
  355.     - Redid NET.LOG update routine.  No longer reads entire existing file,
  356. line-by-line, but rather allocates the file as a memory block and writes the
  357. block after the additional entry is added to the top.  Measurably faster.
  358.  
  359.     - Added additional error checking to copy/move operations to prevent lost
  360. files.  Now ensures the directoryrec is unmodified before reading/uploading
  361. received files.  If modified directoryrec, e.g. filepoints, the files are kept
  362. in CHECKNET, as before.
  363.  
  364.     - Removed the unnecessary "Path:" field in email.  (This is used solely
  365. for Usenet posts in determining whether an article originated on the local
  366. system and should, thus, be skipped during retrieval.)
  367.  
  368.     - Added an "X-Reply-To:" field for hosted mailing lists to assist in
  369. allowing responses to the list from mailers which don't support the extended
  370. parentheses addressing.  The field is formatted using the originator, domain
  371. and mail list subtype, e.g. "MAILTYPE <user@whatever.domain>".
  372.  
  373. Beta-47
  374.  
  375.     - Fixed lost cursor after exiting news.
  376.  
  377.     - Recast strings in NEWS to 1024 bytes vice 512 and cast the temporary
  378. packet name as static, hopefully to prevent the overrun on some subjects
  379. (which bled into the temporary packet name!)
  380.  
  381.     - Added support for a secondary DNS.  Add "SDNS=<IP address>" under the
  382. current DNS (primary) tag in NET.INI.
  383.  
  384.     - Went back to standard malloc() calls for allocating memory for the
  385. sockets.  I had mismatched these in POP in B-46.
  386.  
  387.     - Added an explicit call to close the input file before proceeding in UU.
  388. This should eliminate any sharing violations, such as across a LAN.
  389.  
  390. Beta-46
  391.  
  392.    - Tweaked much more and built in lots of error checking into POP and NEWS,
  393. particularly.  Think we've got all potential lockups fixed.
  394.  
  395.    - Changed returned values in NEWS to standard, i.e. 0 or less for error
  396. and a positive integer for success.  This allowed me to standardize the
  397. sock_err routine for more accurate responses to socket problems.
  398.  
  399.    - Added internal FDL processing to UU.EXE.  For FDL feeds received via
  400. Internet mail, UU now puts them directly into the BBS (rather than using
  401. DE555.EXE) to keep the description and FDL type together with the file.
  402.  
  403.     - Added a "SLAVE" directive to NEWS before any transactions.  On some
  404. NNTP servers, the SLAVE command is used to give priority treatment to a
  405. connection, on the premise it's a "slave server" rather than a user.
  406.  
  407. Beta-45
  408.  
  409.     - B-44 was a lemon!  I distributed the wrong executables with the archive,
  410. and immediately after I found problems in error handling!  These caused nearly
  411. certain death crashes!
  412.  
  413.     - Fine-tuned error handling again.  (Found a condition which returned a
  414. (null) SMTP reply, which gave me something to work with!  This version really
  415. does respond to errors!
  416.  
  417. Beta-44
  418.  
  419.     - Returned to standard stack size (4K) in all modules.  These tweaks
  420. appear to have addressed only tertiary problems.  Reduced runtime memory
  421. requirements by about 20K.
  422.  
  423.     - Went back to basics on POP, starting with the core code of B-32 and
  424. progressing through the more recent changes.  Tweaked fallthroughs on socket
  425. errors.  Found an area where an attempt to close an open file would causing
  426. sharing violations.
  427.  
  428.     - Fixed a problem which incorrectly identified a quoted response to mail
  429. as BAD*.UUE (because it found the original "From:" line from the originating
  430. system).  It will now only perform a "bad" match that if the "From:" line is
  431. part of the new header.
  432.  
  433.     - Fixed a situation which has existed since the project began!  ALLMAIL
  434. wasn't honoring "ALLMAIL=N" if it detected the message as any type of UUE.
  435. This caused graphics files, archives and other UUEs to be retrieved, despite
  436. the ALLMAIL setting.  Thanks to Robert Kish for pointing this out (and anyone
  437. who may have in the past, although I didn't catch it!)
  438.  
  439.     - Corrected a problem which generated hard locks on NEWS retrieval (again
  440. in the sock_err handling! :(
  441.  
  442.     - Returned to linear display of sent/received messages, so now all
  443. transfers appear on a single line (for viewing at runtime).
  444.  
  445.     - Removed *lots* of unnecessary static data from NEWS (which is what
  446. allowed the return to default stack size!)  Now carrying the same mail socket
  447. allocation globally through routines, as opposed to one static allocation.
  448.  
  449.     - Killed the cstat() routine.  This returned the article-ID for any given
  450. article, but we weren't using that anywhere.  (I also suspect this is what
  451. caused the NEWS retrieval to randomly skip to the last message in the group!)
  452.  
  453. Beta-43
  454.  
  455.     - Squashed a nasty bug in POP which would cause SMTP to hang.  While I
  456. was in there, I tweaked the "sock_err:" label (the fallthrough for Waterloo
  457. problems), and it now appears to be more responsive now to errors.
  458.  
  459.     - Squashed a bug in the export() routine which caused a hard lock when
  460. certain types of messages were exported.  While I was in there, I tweaked
  461. handling of pipe codes and soft returns.
  462.  
  463. Beta-42
  464.  
  465.     - Changed the Path: field for newsgroups to use the FWDNAME and FWDDOM
  466. parameters if specified in NET.INI.
  467.  
  468.     - Removed closes to non-open files in the UU routines.
  469.  
  470.     - Added support for the "X-Sender:" parameter when EXP parses mailing
  471. list headers.
  472.  
  473.     - Re-fixed the problem where outgoing messages would be considered
  474. duplicates because the Message-ID field was the same as another message.
  475.  
  476.     - Made a change to the header detection logic to fix a problem where
  477. message text would sometimes be marked as hidden lines.
  478.  
  479.     - Removed the EXP limit of 14 mails processed at a time.  The problem of
  480. "too much mail" or "duplicate posts" was fixed in the previous beta.
  481.  
  482.     - Removed the code that tried to unload PPP.EXE if it returned an error
  483. code of "not loaded".
  484.  
  485.     - Fixed a longstanding problem with NEWS routine chead() which caused a
  486. premature "End of new messages" while scanning newsgroups.
  487.  
  488. Beta-41
  489.  
  490.     - Fixed problem in UU which caused received archive files (ARC-*.UUE) to
  491. remain in INBOUND.  (EXP decoded them repeatedly as SOME.MSG, SOME.001, etc.)
  492.  
  493.     - Rewrote max posts on sub lookup routine to solve problem with incorrect
  494. article number returned during news retrieval (which often caused only last
  495. message to be retrieved).
  496.  
  497.     - Allocated memory for POP and SMTP sockets on far heap (to match the
  498. method used in NEWS, which has been working successfully!)  Hopefully, this
  499. fixed the problem which caused POP to find no mail on host (when, in fact,
  500. there was mail waiting).
  501.  
  502.     - Added a second call to resolve SMTP host via DNS (mainly to compensate
  503. for slow nameservers).  This should reduce the occurrence of the "SMTP Socket
  504. failure" errors during outbound mail delivery.
  505.  
  506.     - Updated contact information in header to my new ix.netcom.com address.
  507. (This actually happened in B-39 or B-40, but wasn't noted in CHANGES.DOC!)
  508.  
  509. Beta-40
  510.  
  511.     - Returned to some known good values for stack (B-32 and B-34).
  512.  
  513.     - Cleaned up excess variables in various modules.
  514.  
  515.     - Fixed [Spacebar] group skip during news retrieval so it responds when
  516. someplace else than message retrieval.
  517.  
  518.     - Fixed a couple bad read-write opens for CONFIG.DAT -- shouldn't have
  519. been doing that.
  520.  
  521. Beta-39
  522.  
  523.     - Added a "Path" field to outbound articles.  This will now be used to
  524. track whether articles originated locally (and are skipped during retrieval),
  525. instead of the "Organization" field in previous versions.  This was required
  526. because some news servers assign their own Organization field.
  527.  
  528.     - Strips pipecodes and heart colors from newsgroup articles during
  529. export process (including titles, which got lost a few betas ago!)
  530.  
  531.     - Compiled with stack checking, hopefully to narrow down the problems
  532. associated with low stack.  If you receive any warnings, please advise me.
  533.  
  534.     - Fixed a problem which caused "441 Duplicate Article" responses for
  535. newsgroup posts (resulting from exported articles during the same second).
  536.  
  537. Beta-38
  538.  
  539.     - Played with the _stklen a bit more to tweak varying requirements among
  540. several systems reporting problems with B-36/37.
  541.  
  542. Beta-37
  543.  
  544.     - Distributed wrong NETWORK.EXE with Beta-36!
  545.  
  546. Beta-36
  547.  
  548.     - Changed stack length declarations in the main and support modules to see
  549. if that fixes symptoms of no stack, i.e. lockups after NEWS runs, etc.
  550.  
  551.     - Repositioned the file pointer close routines in UU so all files were
  552. closed prior to copying/moving/deleting (to fix reported sharing violations).
  553.  
  554. Beta-35
  555.  
  556.     - Supports outbound mailing lists (i.e. hosted lists).  Create a file
  557. M<subtype>.NET for the list of recipients (subscribers) to your list.
  558.  
  559.     - Handles CONTACT.NET update without allocating memory on the heap, which
  560. caused insufficient memory errors in Beta-33/34 on several systems.
  561.  
  562.     - Now is case-insensitve while matching the mailing list owner fields
  563. (in NET.INI) for mailing lists you belong to.
  564.  
  565.     - Uses the actual date from articles and mail, if one is found.
  566.  
  567.     - Replaces soft returns (from QWK packets) with normal returns.
  568.  
  569. Beta-34
  570.  
  571.     - Hopefully, a fix for memory allocation routines on CONTACT.NET update
  572. by allocating/deallocating memory each time CONTACT.PPP (the pointer files to
  573. your Internet connections) is created.
  574.  
  575.     - Changed the method for outbound packet naming, eliminating the one
  576. second delay between encoding each packet.  That should run appreciably
  577. faster now.
  578.  
  579.     - Stuck in support for the "Sender:" parameter when EXP parses mailing
  580. list headers (requested by Eileen Stone).  This is Goose's realm, but it
  581. seemed like an easy change! :)
  582.  
  583. Beta-33
  584.  
  585.     - Removed the @###.FILEnet from the default tagline, as some sysops are
  586. using the PPP Project Software without actually being a member of FILEnet.
  587.  
  588.     - Fixed a problem where messages that had a line starting with the word
  589. "begin" would be incorrectly identified as network packets.
  590.  
  591.     - Changed the connect time code so that all Internet based systems will
  592. have their last time of connect reset after a successful SMTP/POP session.
  593. The time of connect of any direct dial systems is not affected.
  594.  
  595.     - Fixed the code so that it will properly use the ADDRESS.# files
  596. rather than ADDRESS.NET.  Also fixed the problem with the - sign in ADDRESS.0
  597. to indicate a direct dial connection not working.
  598.  
  599.     - Put the return path back into the logic for the name matching routines
  600. for the maillist to sub logic.  Some listservers use one and some use the
  601. other.
  602.  
  603.     - Changed the success and failure levels for the PPP modules so that
  604. Ctrl-C will return a fail result, rather than a pass.  This keeps outgoing
  605. packets from being improperly deleted.
  606.  
  607.     - <Space> now aborts transfer of the current message during an SMTP
  608. session.  This allows you to bypass a message on the current run, while
  609. saving it for transfer later.
  610.  
  611.     - Changed some of the text display, during transfers and (lesser seen)
  612. error result messages.
  613.  
  614. Beta-32
  615.  
  616.     - Email messages containing the encoded WINMAIL.DAT or WINMAIL.MSG files
  617. will not be erroneously identified as UUE files.  The WINMAIL encoded lines
  618. are also marked with the ^D0R header to prevent display on the BBS.
  619.  
  620.     - Changed the name matching routines for mailling lists (again) to fix a
  621. problem introduced in beta 30 which made the name match routines always fail.
  622.  
  623.     - Made some changes to the logic for creating the WATTCP.CFG file to
  624. try to prevent the "Can't create WATTCP.CFG" problem.
  625.  
  626.     - Removed POP.DBG.  Now uses "MOREINFO" flag in NET.INI to provide debug
  627. (extended dialog) information with POP/SMTP hosts.
  628.  
  629. Beta-31
  630.  
  631.     - Recompiled under BC4 to address the "Can't create WATTCP.CFG" problem.
  632.  
  633. Beta-30
  634.  
  635.     - Fixed a problem where the memory for mailling lists was improperly
  636. allocated or freed.
  637.  
  638.     - The code now ignores the Return-Path line in messages.  This would
  639. sometimes cause the return address to get assigned incorrectly.
  640.  
  641.     - Fixed a problem where the message Name is *after* host would be
  642. displayed when the < > surrounded the id but no user name was included.
  643.  
  644.     - Fixed a problem where Beta-29 which left the INSTANCE.DAT file open.
  645.  
  646.     - The "N*.NET is missing" warning message was removed, since it won't
  647. exist if @32767 is set up as the host rather than a subscriber.
  648.  
  649.     - Fixed a problem in the display of the sub type when message were
  650. received to a maillist sub.
  651.  
  652. Beta-29
  653.  
  654.     - Changed the multitasker detection logic so that Windows 95 and OS/2
  655. will be reported correctly, even if NETBIOS support is also enabled.
  656.  
  657.     - Fixed a problem where the newsgroup pointer could be incorrectly set if
  658. <Esc> or <Space> was pressed to abort newsgroup retrieval.
  659.  
  660.     - Newsgroups are no longer deleted from NEWS.RC when an unrecoverable
  661. error occurs.  Instead, an SSM is sent to the sysop account, so that the
  662. appropriate action can be done.
  663.  
  664.     - Fixed a problem in NEWS where the crossposted or returned messages
  665. were not being deleted for the first group listed in NEWS.RC.
  666.  
  667.     - Fixed a problem that would be created by messages with long subject
  668. lines or recipient name.
  669.  
  670.     - EXP now reports if the *subtype (asterisk before subtype) is missing in
  671. the mailling list section of NET.INI.
  672.  
  673.     - Fixed a problem which resulted in mailling list messages not ending
  674. up on the subboard if the "reply-to" address format included any additional
  675. information han the Internet mailing address.
  676.  
  677.     - Fixed a problem where Internet mail would not get sent out on the
  678. current connect if no network packets were pending.
  679.  
  680. Beta-28
  681.  
  682.     - Added the first cut at support for putting Internet Mailing Lists to a
  683. subboard.  To do this, you need to add a section to the NET.INI file as
  684. shown.  The email name should be the name that the emails are posted from,
  685. the subtype can be alpha or numeric (don't forget to make the N*.NET file).
  686.  
  687. ;
  688. ; Mailing List Section - used to define internet mailing lists that are to
  689. ; be retrieved into a message base rather than EMAIL.
  690. ;
  691. [MAILLIST]
  692. ; email_name   subtype    (NOTE: Asterisk (*) is required!)
  693. my_listserv@domain.com *1000
  694.  
  695.     - Changed the open mode for the WATTCP.CFG configuration file, to fix the
  696. problem some systems see with the software trying to read this file before it
  697. has been rewritten by the TCPWAT program.
  698.  
  699.     - Makes sure any received packets are renamed before the NETWORK routines
  700. are called, so all received packets are processed after the current call.
  701.  
  702.     - Changed the return address for messages which are received with the
  703. format "User Name <id@site>" to the more standard "id@site (User Name)"
  704. format.  This keeps replies from hosing the SMTP server and getting the
  705. SMTP socket connect failed error message (at least for this case).
  706.  
  707.     - Fixed a problem where posts that were sent out on a newsgroup would be
  708. reposted when the message was received back from the newsserver.
  709.  
  710.     - Allows Internet-based subs to be set up with @32767 as the host rather
  711. than a subscriber.  This allows Network Validation for outgoing posts, but
  712. prevents the subs from being networked to other BBS's.
  713.  
  714.     - Added support for XPOSTS=0, which turns off cross-post detection
  715. for newsgroups.
  716.  
  717.     - Changed the originator on network packets to be the real account name
  718. rather than the forwarding service name, to allow for the correct
  719. identification of bounced packets.
  720.  
  721.     - Changed the NEWS log file logic that seemed to sometimes cause crashes
  722. while retrieving newsgroups.
  723.  
  724. Beta-27
  725.  
  726.     - Increased _stklen variable in the hope it addresses problems from some
  727. systems running out of stack space during runtime.
  728.  
  729.     - Supports Waterloo TCP/IP "INACTIVE" vice "SOCK_INACTIVE" in WATTCP.CFG,
  730. which should properly respond to lost carrier, poor IP connections, etc.
  731.  
  732.     - The CLEANUP option in NET.INI now will execute FLINK and LINKER only,
  733. instead of spawning NETWORK1/2 for normal BBS cleanup.  Some systems were
  734. running out of memory during this process, and it was redundant of the BBS.
  735.  
  736.     - Makes two passes in MQUEUE on each run to assist those whose provider
  737. didn't settle handshaking immediately after connect.
  738.  
  739.     - Reads in alpha subtypes from NEWS.RC in upper case now to prevent
  740. problems in finding subtypes on the BBS.
  741.  
  742.     - Honors the <TAB> character in received newsgroup articles.  This was
  743. causing some text to be skewed (originating from mail readers which didn't
  744. substitute space).  Also properly terminates the received strings, so the
  745. spurious characters at the end-of-line on newsgroups should be fixed.
  746.  
  747. Beta-26
  748.  
  749.     - Fixed bug which caused binary groups to get sent into the bit bucket
  750. during retrieval.  Self-inflicted wound in Beta-25 with addition of alpha
  751. subtypes.
  752.  
  753.     - Changed CONTACT.NET update to a new method.  CONTACT.NET is now
  754. updated for each system for whom the program prepares a packet.  In this
  755. manner, it now reflects what gets sent to each system uniquely.
  756.  
  757.     - Tweaked the routines which read/write WATTCP.CFG.  This should get rid
  758. of any problems associated with that, including creating 0 byte files and
  759. inability to create WATTCP.CFG at runtime.
  760.  
  761.     - Forced a newline at the beginning of each newsgroup article.  This
  762. ensures that the text of a message doesn't begin on the same line as the
  763. RE:.
  764.  
  765. Beta-25
  766.  
  767.     - I didn't get all the changes/enhancements into this beta which I'd
  768. hoped.  There are a great deal of functional changes below, and the todo
  769. list is a bit smaller, but there's still work before the release of
  770. version 2.  Please report any problems you find.
  771.  
  772.     - First stab at "AUTHINFO" directive used by NNTP to validate username
  773. and password.  I could find no governing RFC, so a lot of this is in the
  774. blind until I can set up an NNTP host which supports it.  If your news host
  775. requires a Userid and Password for login (such as GTE), add the following to
  776. the [NEWS] section of NET.INI:
  777.  
  778.         NEWSNAME = <username>
  779.         NEWSPASS = <password>
  780.  
  781. The initial feedback is that this function is working properly, but it may need
  782. fine-tuning.
  783.  
  784.     - The trailing '.' on each Internet email message is now bypassed in email
  785. retrieval, so it won't be displayed to users viewing it on the BBS.
  786.  
  787.     - Nailed down the stacked "RE: RE: RE:" found in newsgroup responses.
  788.  
  789.     - Added "Continued in next message..." as the final line in newsgroup posts
  790. which exceed 32K (and become split into multiple parts) and "Continued from
  791. previous message..." on trailing parts.
  792.  
  793.     - Fixed the news and mail time/byte entries in NET.LOG, so each is
  794. maintained uniquely now.  If you use ONECALL in NET.INI, you will get two
  795. entries (one for @32767 and the other for the system you called), each with
  796. its own bytes and time.
  797.  
  798.     - Added definable maximum cross-posts before newsgroup article is skipped.
  799. New entry to NET.INI in [NEWS] section reads:
  800.  
  801.         XPOSTS = nn
  802.  
  803. where 'nn' is a number between 1 and 99.  (Setting this to '1' will reject any
  804. message crossposted to another newsgroup.)
  805.  
  806.     - Added support for the PPPURGE utility which cleans up the SENT directory
  807. externally.  By adding "PURGE=N" to the [GENERAL] section in NET.INI, you can
  808. bypass packet cleanup during normal network routines.  You must then add
  809. "PPPURGE <days>" to your external event batch file to kill SENT files.
  810.  
  811.     - Tweaked internal stack size which seems to stabilize problems resulting
  812. from line noise (modem), lost connections during transfers, etc.  Need more
  813. feedback on reliability of these changes, so we don't introduce new bugs!
  814.  
  815.     - Overrides net validation for newsgroup posts received from the Internet,
  816. but leaves normal validation intact for other methods.  This is useful for
  817. anyone who gates newsgroups with netval, as it lets the Internet stuff flow
  818. through unimpeded but still validates BBS-originating posts.
  819.  
  820.     - Added internal support for the FWDNAME and FWDDOM parameters from
  821. NET.INI.  If defined in the [GENERAL] section, these will be used for the
  822. headers of email and newsgroup posts.  This is helpful for anyone using a
  823. forwarding service, such as bigfoot.com, as their BBS mail host.
  824.  
  825.     - Fixed a problem in the UUDECODE routines where the output file was
  826. not being deleted if an error was detected during processing.  This would
  827. cause the partial file to be processed by the remaining NETWORK routines,
  828. which could result in crashes.
  829.  
  830.     - Added support for individual ADDRESS.* files.  ADDRESS.1 and up are
  831. maintained by the GC's.  ADDRESS.0 is a local file, which can be used to
  832. limit callouts to particular systems.  To force a normal (modem) callout to a
  833. system, create ADDRESS.0 in the following format:
  834.  
  835.         @node -      (the minus sign indicates use direct call)
  836.  
  837.     - Added another check for returned packets.  If the packet "from:"
  838. name matches the name and domain defined in the INI file, the packet is
  839. assumed to be a returned packet as well.  Apparently not all ISP's use the
  840. standard "mailer-daemon" approach for identifying returned packets.
  841.  
  842.     - Changed the sleep() call in NETWORK.EXE to a delay() call used when
  843. the socket is being established.  Some systems appear to hang using the
  844. sleep() call.
  845.  
  846.     - Added the KLOSV146.ZIP file to the archive.  These are the latest PPP
  847. drivers from KLOS, patched to remove the Windows detection code.
  848.  
  849.     - Added support for alpha subtypes in NEWS.C (defined in NEWS.RC).
  850.  
  851.     - Fixed routines to clean up after a file is received via Internet mail.
  852. Copies are no longer saved in CHECKNET and SPOOL.
  853.  
  854.     - Added PURGE option to [GENERAL] area, intended to be used with new
  855. PURGE.EXE utility.  PURGE.EXE will clean out your SENT directory as part of
  856. the external event (and not when the program runs).  Set PURGE=N in NET.INI,
  857. then add PURGE.EXE to your external batch file.
  858.  
  859.     - Added support for '_' in CALLOUT.NET to indicate non-Internet system.
  860.  
  861.     - Added support for user-definable anti-spam originating address.  If
  862. 'SPAMCONTROL=Y' is defined in NET.INI, you can also add:
  863.  
  864.         SPAMADDRESS=whoever@whatever.address
  865.  
  866. If SPAMADDRESS is not explicitly defined, the anti-spam address now reads:
  867.  
  868.         realname@dont.spam.me.real.address (Username)
  869.  
  870.     - Cosmetic modification to NET.LOG entry when nothing is sent.  Adds a
  871. comma (,) to conform to the normal network software method.
  872.  
  873.     - Now auto-trims NEWS.LOG, keeping a maximum of 800 lines (about three
  874. days worth) of NEWS entries.  Trim is accomplished at the last full session
  875. entry (a complete news session) at or above the 800 line mark.
  876.  
  877.     - Supports random signature files for newsgroups and email.  Naming format
  878. for the signature files is:
  879.  
  880.         I<subtype>.Txx
  881.  
  882. where 'xx' is a number between 0 and 99.  For example, to create random
  883. tags for subtype "12345", create files "I12345.T01", "I12345.T02", etc.  If
  884. no random tags are found, "I12345.TAG" will be used, as before.
  885.  
  886.     - Now properly removes BBS tagline indicators (the ^Dx prefix for each
  887. line in a BBS or personal tagline).  Note that these will be preserved, in
  888. addition to the I*.T* signature files.
  889.  
  890. Beta-24
  891.  
  892.     - Added hook to EXP to call after network packets/mail are received, so
  893. any Internet mail is processed immediately after receipt.
  894.  
  895.     - Count transfers (sending/receiving packets) in 512 byte increments vice
  896. 1K now... cosmetic.
  897.  
  898.     - Encoding and transfer of packets is now kept on a single line vice
  899. scrolling down the screen... again, cosmetic.
  900.  
  901.     - Tweaked import() routine in EXP to narrow down scrambled headers
  902. reported by some systems.
  903.  
  904.     - Added total files/bytes detail to display after successful packet
  905. transfers.
  906.  
  907.     - Added SSMs to be sent to the #1 account upon receipt of archive
  908. files or bad packets moved into CHECKNET.
  909.  
  910.     - Added file-sharing, timeslicing routines to EXP.
  911.  
  912.     - Added board-specific tagline file support.  File should be in the
  913. BBS DATA\ directory and be named I<subtype>.TAG, for example on subtype
  914. 10001 file would be I10001.TAG.
  915.  
  916.     - Fixed logic when an invalid newsgroup is requested and server returns
  917. 501 response.  It now skips the group and removes the invalid group name from
  918. NEWS.RC automatically.
  919.  
  920.     - INSTALL.C/EXE is in here now.  It needs some work before broader
  921. release, though.
  922.  
  923. Beta-23
  924.  
  925.     - Messed up parsing logic in EXP when comparing against name fields with
  926. an underscore replacing the space.  Fixed, I hope.
  927.  
  928.     - Various tweaks to socket code.  I hope these address the problems some
  929. folks have been having with the modem falling asleep.
  930.  
  931.     - Included POP.DBG in this archive to show dialog between you and your
  932. servers and help in the debugging process.  Copy POP.DBG to POP.EXE before
  933. installing.
  934.  
  935. Beta-22
  936.  
  937.     - Implements controls for Waterloo TCP socket inactivity across modules,
  938. SOCK_DELAY and SOCK_INACTIVE.  By default, these are set to 30 and 60 seconds,
  939. respectively.  They may be defined in NET.INI, as follows:
  940.  
  941. ; Time from sending an IP packet to response from DNS.
  942. SOCK_DELAY = 30
  943. ; Max time without socket activity.
  944. SOCK_INACTIVE = 60
  945.  
  946.     - The sockets are now malloc() on the far heap again (as Goose properly
  947. had them before).  I thought this may have been the culprit in the lost
  948. activity timer.  When I fixed the item above, it actually crashes the client
  949. when trying to free them from the near heap!
  950.  
  951.     - Removes WWIV heart color codes from titles and originator names.
  952.  
  953.     - Implemented ONECALL=Y/N in NET.INI to retrieve messages and newsgroups
  954. on a single call.
  955.  
  956.     - Added timeslicing routines in POP and NEWS.  Would appreciate feedback
  957. from anyone using "activity meters" to see if this helped anything, although
  958. I suspect I have to use a different buffered I/O routine aside from fprintf()
  959. to accomplish anything.
  960.  
  961. Beta-21
  962.  
  963.     - Urgent fix for dial-out problems to modem users.  Beta-20 was showing
  964. "must specify phone number" because of the way I was constructing the
  965. commandline.
  966.  
  967.     - Various other tweaks/enhancements which will be detailed better in the
  968. next beta.  (It's late!)
  969.  
  970. Beta-20
  971.  
  972.     - Urgent fix for a problem in news retrieval where it wasn't finding the
  973. NEWS.RC, I hope!
  974.  
  975.     - NET.INI addition:
  976.  
  977. ; Will retrieve mail and newsgroups on single call
  978. ONECALL = Y
  979.  
  980. Beta-19
  981.  
  982. Additions to NET.INI (for now, grab Quixotic Quest's FAQ for a full NET.INI
  983. and meanings).  Under [NEWS] tag, add:
  984.  
  985. ; If defined, puts a bogus originating address on newsgroup posts.
  986. SPAMCONTROL = Y
  987. ; If defined, uses file as a signature file to all newsgroup posts.
  988. SIGNATURE = D:\WWIV\GFILES\INTERNET.TAG
  989.  
  990. Various code changes:
  991.  
  992.     - POP now receives messages to an INBOUND directory under the network data
  993. directory instead of syscfgovr.tempdir.  This will help in case of lost
  994. connections... received packets will remain in the INBOUND area until cleaned
  995. out by other routines (UU, etc.)
  996.  
  997.     - Waterloo wasn't returning from the macro for sock_err:.  Tweaked quite a
  998. bit, including allocating the tcp sockets on the near heap (again!).  I wish
  999. we could return(x) from sock_err: but return values vary among different
  1000. functions... consistency is something for a future release.  If this doesn't
  1001. clear things up, we can exit(x) from the macro and allow the OS to do its own
  1002. cleanup for file handles, memory and such.
  1003.  
  1004.     - parse_ini() in network.c wasn't toupper() on s[0] properly, so lower
  1005. case 'y' and 'n' parameters weren't being honored.
  1006.  
  1007.     - Places ^D0R before header lines on received email.  These lines are
  1008. suppressed on display to user on the BBS, but may be extracted to provide
  1009. routing info.  Required changes both to POP and EXP, in order to detect/skip
  1010. ^D0R when comparing strings.
  1011.  
  1012.     - Uses underscore between multiple parts of user name on exported mail
  1013. (e.g. The_Great_White_Whale).  For backward compatibility, it matches both
  1014. space and underscore when comparing against user list.
  1015.  
  1016.     - Detects bounced mail by comparing originating address (from: line)
  1017. against known mail-bouncers, including "Mailer-Daemon", "Administrator", etc.
  1018. Bounced packets are named as BAD*.UUE and will remain in INBOUND for review,
  1019. as they're skipped during UU decode routines.  To recycle a packet, rename it
  1020. from BAD*.UUE to PKT*.UUE.
  1021.  
  1022.     - Displays 20 characters of packet originator while receiving (purely
  1023. cosmetic).  Tracked that for the above item, so figured we'd display it.
  1024.  
  1025.     - "SPAMCONTROL=Y" in NET.INI [NEWS] tag uses a bogus originating address
  1026. ("nowhere@no.net") to prevent email scoopers from finding a good address.
  1027. Also when defined, the "Reply-To:" field is omitted but a correct return
  1028. address is prepended as text to the body of message.
  1029.  
  1030.     - Supports a "signature" file defined in NET.INI [NEWS] tag, as described
  1031. above.  Format is: "SIGNATURE = [path/filename]".  Contents are read into
  1032. outbound mail during export, so length is unlimited.  If it finds ANSI, it'll
  1033. choke!  If a SIGNAURE is not defined or the file doesn't exist, it uses the
  1034. previous "Origin: * blah" tagline.
  1035.  
  1036.     - If mh.toUserName is "ALL" (ie. a first post on topic), skips the
  1037. "Responding to: ALL" in body of message... seemed redundant.
  1038.  
  1039.     - NEWS now skips the following messages during retrieval:
  1040.  
  1041.       - messages cross-posted to more than 10 newsgroups on the assumption
  1042.         that they're spammed across multiple groups.  The figure 10 is an
  1043.         arbitrary but hard-coded for now into NEWS.
  1044.  
  1045.       - any message cross-posted to another group defined earlier in NEWS.RC,
  1046.         e.g. if you define comp.games and comp.games.adventure in NEWS.RC, it
  1047.         will skip messages on comp.games.adventure which were cross-posted to
  1048.         comp.games.
  1049.  
  1050.       - any message which originated from your system as indicated by the
  1051.         "Organization:" field appended during export.
  1052.  
  1053.     - NEWS now allows you to hit <space> to skip to the next group defined in
  1054. NEWS.RC.  It doesn't "catch-up" lastread pointers for the skipped group, but
  1055. simply writes the current message pointer to NEWS.RC for your next run.  If
  1056. there's reason for a "catch-up" key, let's discuss it.
  1057.  
  1058. There are probably others, but you'll find them as you go.
  1059.  
  1060. Frank
  1061.  
  1062.