home *** CD-ROM | disk | FTP | other *** search
/ ftp.wwiv.com / ftp.wwiv.com.zip / ftp.wwiv.com / pub / PPPBCKP / SRC / SRC20A01.ZIP / CHANGES.DOC next >
Text File  |  1999-06-27  |  93KB  |  2,086 lines

  1. 2.0 Alpha-1
  2.  
  3.     - Changed the POP TOP parameter to look at only the first 40 lines of a
  4. message to determine the content (net packet, user mail, etc.)  The 100 line
  5. parameter increased retrieval time considerably, but very rarely found its
  6. trigger words beyond the first 20-40.
  7.  
  8.     - Executables now compiled with header files from WWIV v4.30.  This causes
  9. no backward compatibility issues and is more just to keep everything current.
  10.  
  11.     - Distribution archive now includes a PING and NSLOOKUP utility compiled
  12. with the packet driver to facilitate testing.
  13.  
  14.     - More SSM reporting for events, such as invalid attempts to post to a
  15. mailing list, messages stuck in the SPOOL directory, etc.
  16.  
  17.     - Added support for SMTP relay failure (SMTP 550) when transfer fails due
  18. to third-party (anti-spam) blocking by SMTPHOST server.  The rejection is
  19. detected and the message is skipped.
  20.  
  21.     - Tweaked subscriber code in EXP to enable better detection of Internet
  22. addresses during duplicate subscribe/unsubscribe requests.  Closed an open
  23. file pointer could have caused unpredictable behavior.
  24.  
  25.     - Changed the from address for users posting to subscribed mailing lists
  26. to match the default for the BBS.  If the user has an address defined in
  27. ACCT.INI, it is added as the user's reply-to address, but the actual from
  28. address remains the BBS default.  This prevents a listserver from rejecting
  29. messages because the name in the from address is not listed as a subscriber.
  30.  
  31.     - Fixed a problem which caused a duplicated "To: Multiple Recipients..."
  32. line on hosted mailing list messages.
  33.  
  34.     - Made a change that should fix the problem of the PPP Project not working
  35. properly on networks that use only ADDRESS.NET and not ADDRESS.[group] files.
  36.  
  37.     - Fixed the logging of the sent and received byte count.
  38.  
  39.     - Added a check for zero-length files in the incoming directory.  Received
  40. zero-length messages (due to session abort/timeout) are now removed when found.
  41.  
  42.     - Added a POPDOMAIN parameter, which can be used if your ISP provides
  43. domain-based email address or you have a service that provides this (such as
  44. freeservers.com or the filenet.wwiv.net server).  Mail addressed as
  45. "user_name@yourbbs.domain.com" is sent to a single POP account in this mode.
  46. This makes it easier to address mail to BBS users, since it doesn't require
  47. the extended "User Name <yourbbs@domain.com>" format.
  48.  
  49.     - Added a RETRIES parameter to NET.INI.  If defined, the dialer will make
  50. up to ten attempts before giving up dialing your ISP.  This is useful if your
  51. ISP is busy or your modem has trouble connecting to the ISP.
  52.  
  53. - The following are added to NET.INI, all in the [GENERAL] section:
  54.  
  55. ;
  56. ; Retries when dialing. If set, will try to connect up to 10 times if
  57. ; connection is not successful (busy, etc).
  58. RETRIES = 5
  59. ;
  60. ; POP account domain name, if used.  This should only be enabled if all mail
  61. ; sent to the domain goes to a single mailbox defined by the POPNAME/POPHOST
  62. ; variables. The user addresses then become user_name@popdom.com.
  63. ;POPDOMAIN = n123.filenet.wwiv.net
  64. ;
  65. ; Whether outbound Internet mail should use the user number or name when
  66. ; domain-based addressing is used, e.g. "u123@n456.filenet.wwiv.net" or
  67. ; "your_name@n456.filenet.wwiv.net".
  68. ;DOMAIN_USERNUM = Y
  69.  
  70. - The following are source code mods for WWIV v4.3 (Beta) to support the new
  71. POPDOMAIN parameter.  These will be added to the next beta.
  72.  
  73.   - In VARS.H, define the pop_domain and domain_usernum variables:
  74.  
  75.                ppp_name[81], ppp_domain[81], ppp_real, user_ppp_addr[81],
  76.                pop_domain[81], attach_dir[81];             // change
  77.  
  78.            preloaded, nsp, list_option, thread_subs, newline, returning,
  79.            bquote, equote, quoting, wfcdrv, use_x00, domain_usernum; // change
  80.  
  81.   - In XINIT.C, read_networks(), add the following code to set the pop_domain
  82.     variable:
  83.  
  84.   ppp_name[0] = 0;
  85.   ppp_domain[0] = 0;
  86.   pop_domain[0] = 0;                                       // add
  87.   ppp_real = 0;
  88.   domain_usernum = 0;                                      // add
  89.  
  90.   if ((fp = fsh_open("NET.INI", "rt")) != NULL) {
  91.     while (!feof(fp)) {
  92.       fgets(s, 80, fp);
  93.       s[strlen(s) - 1] = 0;
  94.       stripspace(s);
  95.       if ((!strnicmp(s, "DOMAIN=", 7)) && (!ppp_domain[0]))
  96.         strcpy(ppp_domain, &(s[7]));
  97.       else if ((!strnicmp(s, "POPNAME=", 8)) && (!ppp_name[0]))
  98.         strcpy(ppp_name, &(s[8]));
  99.       else if (!strnicmp(s, "FWDDOM=", 7))
  100.         strcpy(ppp_domain, &(s[7]));
  101.       else if (!strnicmp(s, "FWDNAME=", 8))
  102.         strcpy(ppp_name, &(s[8]));
  103.       else if (!strnicmp(s, "POPDOMAIN=", 10))             // add
  104.         strcpy(pop_domain, &(s[10]));                      // add
  105.       else if ((!strnicmp(s, "DOMAIN_USERNUM=", 15)) &&    // add
  106.             ((s[15] == 'Y') || (s[15] == 'y')))            // add
  107.         domain_usernum = 1;                                // add
  108.       else if ((!strnicmp(s, "REALNAME=", 9)) &&
  109.             ((s[9] == 'Y') || (s[9] == 'y')))
  110.         ppp_real = 1;
  111.     }
  112.  
  113.   - Then in BBSOVL1.C, get_user_ppp_addr(), add the following to the bottom
  114.     of the function if the user does not have an ACCT.INI address defined:
  115.  
  116.     fclose(fp);
  117.   }
  118.   if ((!found) && (*pop_domain)) {                           // add
  119.     if (domain_usernum)                                      // add
  120.       sprintf(user_ppp_addr, "u%d@%s", usernum, pop_domain); // add
  121.     else {                                                   // add
  122.       strcpy(s, thisuser.name);                              // add
  123.       for (i = 0; i < strlen(s); i++)                        // add
  124.         if (s[i] == ' ')                                     // add
  125.           s[i] = '_';                                        // add
  126.       strlwr(s);                                             // add
  127.       sprintf(user_ppp_addr, "%s@%s", s, pop_domain);        // add
  128.     }                                                        // add
  129.   }                                                          // add
  130. }
  131.  
  132. Beta-99
  133.  
  134.     - Extended the length of POP TOP to 100 lines identify bounced net packets
  135. with long headers added during the bounced mail session.
  136.  
  137.     - Added MDaemon to the list of "bounced" message originators to account
  138. for MDaemon's originating address convention.
  139.  
  140.     - Suppressed error message during SENT\ message creation when outbound
  141. posts were destined for newsgroups (not email).
  142.  
  143.     - Changed originating domain/hostname to reflect "filenet.wwiv.net" from
  144. (previously "filenet.ml.org").
  145.  
  146.     - Changed multitasker detection routines to detect OS/2 Warp, Windows 98
  147. and others more accurately.
  148.  
  149.     - Fixed a character string length problem when parsing NODEPASS in NET.INI.
  150. Didn't seem to affect anything, but thanks to Ninja for pointing it out.
  151.  
  152. Beta-98
  153.  
  154.     - Now cleans up the M<subtype>.TMP files created when adding/removing
  155. mailing list subscribers.
  156.  
  157.     - Recompiled with BC31 to clear up CONTACT.NET update problems.
  158.  
  159.     - Removed file-sharing code from PPPUTIL.  Added during troubleshooing in
  160. Beta-95, but problem turned out otherwise.  Never needed them, so removing the
  161. overhead.
  162.  
  163. Beta-97
  164.  
  165.     - Relaxed the comparison for matching the subscriber file on mailing lists.
  166. A match against the originator's reduced address ("user@somewhere.com") will
  167. also match the subscriber.
  168.  
  169.     - Fixed bug where requests for mailing lists (Subscribe LISTS) weren't
  170. removed after processing... been there forever, but just surfaced because of
  171. revised list validation processing.
  172.  
  173.     - Fixed bug where posts for a subscribed (not hosted) mailing list were
  174. being rejected as invalid.
  175.  
  176. Beta-96
  177.  
  178.     - Added a feature to save outbound copies of sent user mail in the SENT
  179. directory (up to 9,999 messages).  No copies of outbound posts are saved.
  180.  
  181.     - Fixed something I broke in B-95 so it now picks up all inbound messages
  182. from SPOOL on a single run, rather than waiting for the next processing.
  183.  
  184.     - Fixed the NOLISTNAMES=Y switch I also broke in B-95 (by bypassing screen
  185. output and, in doing so, not determining whether that switch was set!)
  186.  
  187.     - Fixed the check sender against mailing list subscribers so it now will
  188. reject posts from non-subscribers (stored as INBOUND\CHK*.MSG).
  189.  
  190. Beta-95
  191.  
  192.     - Added a check for duplicate newsgroup looping during the creation of the
  193. NEWSRC file.  Apparently, something out there doesn't send the normal, RFC
  194. type of end of transaction signals, so this catches that.
  195.  
  196.     - Fixed the mailing list tagline phenomenom, thanks to Weatherman.  The
  197. loop was retaining the alphasubtype variable after first processing a mailing
  198. list message and applying that to all subsequent messages in the run.
  199.  
  200.     - First stab at a "gas gauge" type of progress meter for outbound SMTP
  201. using Zu's code.  It's not perfectly linear, but it should provide a good idea
  202. of total transfer times and progress.
  203.  
  204.     - For Eileen Stone:  I think I have the chunk-ing code working properly, so
  205. posts to a mailing list should be imported properly now!  We may need to tweak
  206. the MIME detection settings as we progress, though.
  207.  
  208. Beta-94
  209.  
  210.     - Compiled under BC45 to eliminate the stack issues identified by "Unable
  211. to update CONTACT.NET!" and other warnings.
  212.  
  213.     - Added a secondary loop exit to the saveactive() routine to see if that
  214. fixes reported problem with infinite looping after newsgroup list received.
  215.  
  216.     - Ensured the default tagline file is used in each iteration of the export
  217. loop to address problems going from special tagline files during runtime.
  218.  
  219. Beta-93
  220.  
  221.     - Fixed a typo on a filename that may have caused things to fail in some
  222. multi-net configurations.
  223.  
  224.     - Bug fixes to WATTCP PCTCP.C should address some SMTP sending problems.
  225.  
  226.     - Now deletes duplicate packets on the server rather than downloading to
  227. INBOUND\DUP*.*.  This was the original intent of the duplicate check, after
  228. the routines had a chance to prove themselves!
  229.  
  230.     - NTIME now exits entirely if a time server connection fails.  This
  231. precludes the potential for bogus date values being set to the system clock.
  232.  
  233.     - Fixed bugs with failed/aborted SMTP transfers causing sharing violations
  234. and such.  The file pointer check was backwards, the target directory was wrong
  235. ("BAD" versus "FAILED") AND the unlink() directive was incorrectly nested!
  236.  
  237.     - Added a string conditioning call to received newsgroup names during
  238. NEWSRC creation to see if that addresses Crimson's problem.
  239.  
  240.     - Added some returns to the NEWS logging output to clarify output.
  241.  
  242. Beta-92
  243.  
  244.     - New: Added PRIMENET flag to [NETWORK] block in NET.INI.  When defined,
  245. POP sessions are initiated only on the defined network.  For example:
  246.  
  247.         PRIMENET = FILEnet
  248.  
  249. will allow POP retrieval only when calling FILEnet nodes.  This is to prevent
  250. DEAD.NET packets with systems using older versions.
  251.  
  252.     - Fix: "Subject:" keyword on digest mailing lists was missing.
  253.  
  254.     - Fix: "Multiple recipients of list xxxx" recipient was duplicated on
  255. outbound mailing lists.
  256.  
  257.     - Fix:  Signature files should now work properly and support alphanumeric
  258. subtypes (not just numeric).
  259.  
  260.     - Fix: 'QUIET' mode in [NEWS] now suppresses most screen output.
  261.  
  262.     - New:  Checks for Internet Rex Fidonet flag in "X-Mailer" header and
  263. leaves these messages in SPOOL\ directory (processed by external programs).
  264.  
  265. Beta-91
  266.  
  267.     - Recompiled with Borland C++ v3.1 versus v4.52, yielding approximately
  268. 25K more runtime memory.  This may help on low memory situations, such as
  269. under Win95.
  270.  
  271.     - Added QUIET=Y/N switch to the [NEWS] block.  This is the beginning of a
  272. streamlined interface for news retrieval.  My particular use at this time is
  273. for a "stealth" mode during retrieval, where subjects are not displayed.
  274.  
  275.     - Added "digest" mode to hosted mailing lists.  By adding DIGEST=Y under
  276. the [MAILLIST] tag in NET.INI, all posts from a day will be collected and sent
  277. as a single message the following day.
  278.  
  279.     - Added support for FIW (or, possibly, other Fido-type Internet engines).
  280. FIWPKT.TXT in the FILENET\ directory must contain the subject strings you wish
  281. to find and skip.  FIW messages will be left as FIW*.* in FILENET\INBOUND.
  282.  
  283. Beta-90
  284.  
  285.     - Changed support address to edare@home.com... will be dropping the Netcom
  286. account here sooner or later in favor of the @Home cablemodem!
  287.  
  288.     - Now works properly for networks using only a single ADDRESS.NET (versus
  289. ADDRESS.<group> as used in FILEnet, which will still work normally).
  290.  
  291.     - Untested code to support multiple networks.  The net name is prepended
  292. to the packet and checked during decode.  If matched to a different network,
  293. the P*.NET packets are created in the appropriate network directory.
  294.  
  295.     - Now moves failed SMTP transfers to MQUEUE\FAILED\<filename> to eliminate
  296. repeated transfer attempts.  SMTP errors 550, 551, 552, 553 and 554 are moved,
  297. which should satisfy most addressing errors (and not lost carrier, etc.)
  298.  
  299.     - Added support for a non-transparent proxy (such as under Wingate).  POP
  300. account builds as "user#realhost@proxyhost".  Only needed when the address is
  301. different with the proxy.  Transparent proxies are defined normally.
  302.  
  303.     - Moved some NET.INI parsing directly into POP, as the commandline grew to
  304. an excessive length with all the additional options.  This removed any backward
  305. compatibility for mismatched POP and NETWORK executables.
  306.  
  307.     - Reworked time-slicing and multi-tasker detection code using more compact
  308. routines (and it seems to work better).
  309.  
  310.     - Added a check for the from address against the subscriber list before
  311. allowing a post to a hosted mailing list.  Posts that originate from a user
  312. that is not in the subscriber list will end up in files called CHK-xxx.MSG.
  313.  
  314.     - Added the "from" address as a compare for determining is posts are
  315. from a subscribed mailing list.
  316.  
  317.     - Increased the length of the POP name and password variables from 20
  318. characters to 40.
  319.  
  320.     - Fixed a problem where messages would end up on the wrong sub if the
  321. system hosted more than one mailing list from a separate POP account
  322.  
  323.     - Fixed a message that would appear for an ill-formatted return address
  324. that could cause the program to crash.
  325.  
  326.     - Added MIME identification for all outgoing messages as either UUE for
  327. network packets, or plain text for all others.  Some ISPs or mail readers would
  328. not process messages without this MIME header.
  329.  
  330.     - POP now deletes messages that are partially downloaded then aborted
  331. (for example, in the case of a timeout).  This keeps bad packets (with a
  332. missing 'end') from showing up in checknet, or ending up in the postmaster
  333. account.
  334.  
  335.     - Time of last connect is now updated only after a successful connect,
  336. rather than when pending packets are encoded for a system.
  337.  
  338.     - Changed the compile to use the '-r-' directive only for the programs
  339. which use the WATTCP libraries (POP, NEWS and NTIME).
  340.  
  341. Beta-89
  342.  
  343.     - Repositioned a sock_tick() call after the last line of an SMTP transfer,
  344. hopefully addressing recent ISP changes which prohibit fragmented packets.
  345.  
  346.     - Made allowance for MIME-type messages which are really plain text using
  347. RFC-1521 standards, e.g. Content-Type of "text/plain", "text/enriched", etc.
  348. This will allow 32K+ messages from MSIE/Mozilla to be imported as sub posts.
  349.  
  350.     - Recompiled under BC31 using the '-r-' compiler parameter (supress
  351. register variables) as recommended by the WATTCP author.
  352.  
  353.     - Now recycles invalid subscriber requests to mailing lists as normal mail
  354. into the BBS, rather than leaving them as INBOUND\SUB*.BAD.
  355.  
  356.     - Fixed a bug which would cause the 'newsrc' listing to be retrieved as a
  357. regular newsgroup instead of incrementing the group number.
  358.  
  359.     - Added "NOWATTCP" to NET.INI.  If NOWATTCP=Y, the existing WATTCP.CFG
  360. configuration file is left intact.  The default is 'N', which means it will be
  361. rewritten on each run.
  362.  
  363.     - Fixed a bug for autorequesting mailing lists with "Subscribe LISTS" and
  364. added some additional error checking to subscribe/unsubscribe requests to
  365. valid filenames, etc.
  366.  
  367. Beta-88
  368.  
  369.     - No functional/cosmetic changes.  Recompiled with different makefile
  370. compiler options to see if they address the "Unable to access NET.LOG" errors.
  371.  
  372. Beta-87
  373.  
  374.     - Added a new check for bounced messages to include the "postmaster" at
  375. AT&T Worldnet.  This should address the recent change to their mail program
  376. which bounces messages but makes them appear as new.
  377.  
  378.     - Made a change to the way POP.EXE does its argument parsing to try to
  379. get rid of the crashing or "skipping mailbox check" problems that cropped up
  380. when the ACCT.INI processing was added.
  381.  
  382.     - More changes were done to the From: logic to make sure that outbound
  383. messages are addressed properly.
  384.  
  385.     - Added more checking for subscribed mailing lists.  Will now properly
  386. detect the owner of mailing lists that have a text description after the
  387. From: field and the actual owner address on the following line.
  388.  
  389.     - EXP now uses the message-id to identify messages that have been
  390. returned from mailing lists, so that they don't appear on the sub when they
  391. are sent back out from the listserv host.
  392.  
  393.     - Added support for unique pop accounts for hosted mailing lists.  The
  394. entries in ACCT.INI are similar to those for a user.  For example, for a
  395. HUMOR user list with an account name of wwiv-humor@usa.net, the entries would
  396. be:
  397.  
  398. ACCT-HUMOR = wwiv-humor@pop.netaddress.com password
  399. LIST-HUMOR = wwiv-humor@usa.net
  400.  
  401.     - Cosmetic changes to TERMIN.COM to integrate better with the MOREINFO=N
  402. display.
  403.  
  404.     - Removed redundant call to compact message ID database after each POP host
  405. when checking multiple mailboxes.
  406.  
  407.     - Expanded commandline parsing for do_spawn() routine.  This was to
  408. accommodate lengthened commandlines on POP which may have been lost during the
  409. spawn process.
  410.  
  411. Beta-86
  412.  
  413.     - Added PPPD.ZIP as an alternative to KlosPPP.  This driver seems to be
  414. more stable and also supports PAP/CHAP authentication.  Extract PPPD.ZIP to
  415. the BBS main directory and run PPPDCFG to configure your scripts.  Then add
  416. the following to NET.INI in the [GENERAL] section:
  417.  
  418.         DRIVER = PPPD
  419.  
  420.     - Fixed broken PURGE routine which hadn't worked since I moved the function
  421. into PPPUTIL with Beta-82 or so!
  422.  
  423.     - Fixed a bug where the "From:" header field was skipped when a post was
  424. originated by a user with an address defined in ACCT.INI.
  425.  
  426. Beta-85
  427.  
  428.     - Added support to suppress mailing list recipients from the distribution
  429. list.  Add the following to NET.INI, under the existing MOREINFO parameter:
  430.  
  431.         NOLISTNAMES = Y
  432.  
  433. When set, the recipient address received by all mailing list participants is
  434.  
  435.         To: "Multiple Recipients of Mailing List XXXXX" <yourname@domain.com>
  436.  
  437. where 'XXXXX' is the name of the mailing list and your account is within the
  438. focus for name and domain.
  439.  
  440.     - Fixed bug where it creates outbound messages to a mailing list when no
  441. entries exist in M<subtype>.NET.  The message is now suppressed if no one is
  442. subscribing to the list.
  443.  
  444.     - Added support for //BOARDEDIT "Anony" setting.  If the sub is set to use
  445. "Real Name" or "Alias", the corresponding value from the USER.LST is used.  If
  446. set to "Forced" (forced anonymous), the message is created:
  447.  
  448.         From: "Anonymous" <user@wwivbbs.org>
  449.  
  450. and all obvious markings to identify the user or system are removed.  (Note:
  451. This is *not* a foolproof way to avoid identification -- there are many other
  452. values with which one can identify your newsgroup posts!)
  453.  
  454.     - Removed the routine which creates/modifies WATTCP.CFG from the NETWORKP
  455. executable.  NETWORKP now assumes your WATTCP.CFG is accurate (i.e. contains
  456. correct DNS, IP address, etc.).
  457.  
  458.     - Fixed realname/alias toggle when sending outbound messages (broken in
  459. B-83+ when the ACCT.INI processing routine was added).
  460.  
  461.     - Moved all passes for POP checks (standard NET.INI configuration, accounts
  462. contained in ACCT.INI and the filenet.ml.org server) into POP, so just a single
  463. call occurs inside NETWORK.
  464.  
  465. Beta-84
  466.  
  467.     - Compiled under BC3.  I'll use BC45 as an internal yardstick.  If it runs
  468. under BC45, it should run under a BC3-compile (which yields more memory).
  469.  
  470.     - Fixed logic on mail list subscriber response which removed the user from
  471. the list but sent a response saying they had been subscribed (versus removed).
  472.  
  473.     - Fixed the display of the detected operating system under OS/2 Warp.  Had
  474. played with something there at one point and forgot to fix it before release!
  475.  
  476.     - Fixed a wierd quirk where commandline arguments weren't getting nulled
  477. before another external program was spawned.
  478.  
  479. Beta-83
  480.  
  481.     - Fixed so that outgoing newsgroup posts from users with a defined USERx
  482. account (in ACCT.INI) have a reply-to address from the defined account, rather
  483. than the BBS account.  Users may now post in newsgroups with their own address.
  484.  
  485.     - Tweaked the POP checking code to nail down bugs reported when checking
  486. mailboxes under Win95.
  487.  
  488. Beta-82
  489.  
  490.     - Rewrote SMTP transfers in a much smarter way.  Now maintains a positive
  491. control of the process from a main calling routine, so it can detect and
  492. respond to lost carrier or other SMTP failure conditions properly (even if the
  493. Klos drivers try to keep things open with retries).  It may sometimes take a
  494. couple minutes, but it won't lock up and eventually cycles back to where it
  495. belongs.
  496.  
  497.     - Invalid subscriber requests (those addressed to an invalid list name) are
  498. now saved as SUB*.BAD in the INBOUND directory.  This will allow you to fix the
  499. problem, rename it to SUB*.UUE and process it normally.
  500.  
  501.     - Added a new flag to NET.INI to trigger updating the NEWSRC file each
  502. news connection.  By default, this is turned off.  If you wish to receive new
  503. newsgroups each call, add:
  504.  
  505.         NEWSRC_UPD = Y
  506.  
  507. to the [NEWS] portion of NET.INI.
  508.  
  509. Beta-81
  510.  
  511.     - Fixed a problem which caused POP to crash immediately after loading, if
  512. there was no mail to send.  This was because the WATT.LIB (for Waterloo socket
  513. library) was compiled with BC3 versus BC45, and it only manifested itself under
  514. Windows 95... probably to do with obsolete functions like _creat() and _open().
  515. Strangeness!
  516.  
  517. Beta-80
  518.  
  519.     - Happy New Year!
  520.  
  521.     - Fairly radical changes, including a return to BC 4.52 for compile.  Now
  522. includes PPPUTIL.EXE which must be placed in the BBS main directory.  This file
  523. contains "utility" functions used by the program which didn't need to be in the
  524. NETWORK.EXE, including log trimming, purging, etc.
  525.  
  526.     - Moved all the new ACCT/USER features into POP (where they belonged in the
  527. first place!)  This freed up heap in NETWORK, which was getting overloaded.
  528.  
  529.     - Rewrote the WATTCP.CFG creation routines so it honors non-standard
  530. gateways and variable-length subnetting, which PPPWAT pulls directly from the
  531. PPP session layer.  This should allow it to run under very odd circumstances.
  532.  
  533.     - Fixed a bug in NEWS which caused it to think '1' was less than '12' when
  534. determining the month in updating NEWSRC.  Would've only noticed on New Year's
  535. Day, naturally! :)
  536.  
  537. Beta-79
  538.  
  539.     - Fixed a typo in UU which caused the program not to find the extended
  540. description file (*.EXT) associated with a directory.
  541.  
  542.     - Reworked the SMTP transfer routines to control looping and aborted
  543. transfers a bit better.  It should now abort and exit cleanly upon loss of
  544. carrier or forced aborted transfers.
  545.  
  546.     - Eliminated duplicate message check, FDL and other non-sysop routines for
  547. BBS user-specific (ACCT) mail.  This ensures the user gets everything destined
  548. for him, even if the sysop also receives it.  User-based hosted mailing lists
  549. are still supported, however.
  550.  
  551.     - Rewrote user account check routine.  To check additional mailboxes now,
  552. create a file named ACCT.INI in the FILEnet directory.  The format of this file
  553. is the same as before, i.e.
  554.  
  555.         ACCTx = userid@pophost password
  556.         USERx = userid@domain
  557.         USERy = another@somewhere
  558.         USERz = jdoe@another
  559.  
  560.     - Fixed a problem with autosubscription to hosted mailing lists where the
  561. CR/LF was removed from each entry whenever someone subscribed or was removed
  562. from the list.
  563.  
  564.     - Changed the MAKEFILE to duplicate earlier (working) versions.  Added back
  565. some stack to NETWORK.EXE to get around problems updating CONTACT.NET/NET.LOG
  566. after program completion.
  567.  
  568. Beta-78
  569.  
  570.     - Now sends an SSM to sysop when a system subscribes to or removes themself
  571. from a hosted mailing list.
  572.  
  573.      - Added support for issuing a list of hosted mailing lists in response to
  574. a message with:
  575.  
  576.         Subject: Subscribe LISTS
  577.  
  578. A text file describing your available lists named MAILLIST.TXT must be in the
  579. GFILES directory or else an error is returned to the requestor.
  580.  
  581.     - Relocated a check for subscribe requests so it didn't rely upon finding
  582. a good name first.  This will ensure better success rate for automated requests
  583. to subscribe to hosted lists, notably when the Subject line appears after the
  584. From line (unusual, but it happens!)
  585.  
  586.     - Added support for checking multiple mailboxes.  There are actually two
  587. distinct elements to this, the POP account information (the ACCT field) and the
  588. user's reply address (the USER field).  This method will allow a BBS user to
  589. maintain an independent Internet mailbox.  Below POPPASS in NET.INI, create
  590. entries using the following example:
  591.  
  592.         ACCT7 = freid@pop.erols.com secret
  593.         USER7 = freid@erols.com
  594.         USER123 = jdoe@somewhere.com
  595.         USER456 = msmith@elsewhere.com
  596.  
  597. In this example, the program checks the mailbox "freid" on "pop.erols.com" with
  598. a password "secret" (the ACCT7 line).  Mail received from this account is sent
  599. to user #7 (ACCT7) on the BBS.  In addition, outgoing mail from users #7, #123
  600. and #456 (USER7, USER123 and USER456) will use the indicated return address as
  601. opposed to the standard, BBS return address.
  602.  
  603.     - Moved routine for chunking >32K messages so they're picked up immediately
  604. after receipt, rather than being moved to SPOOL and not found until the next
  605. callout.
  606.  
  607.     - Rewrote routine which removes high ASCII and control characters from
  608. newsgroup messages and subjects.  Previous routine was causing occasional
  609. problem overflowing character buffer (causing some wierdness).
  610.  
  611.     - Now searches the top 1,000 lines of an UNK*.MSG (standard mail) to see
  612. if it's a MIME-encoded message.  This will prevent chunking large messages
  613. into small emails if it's an encoded file.
  614.  
  615.     - Message-IDs are now added to the duplicates database only after
  616. successful receipt of the message.  This will prevent a DUP*.* packet which is
  617. really the first completed receipt.
  618.  
  619.     - Added initial hooks for global FILEnet mail server.  Account address is
  620. built upon node number, e.g. n1160@filenet.ml.org, n221@filenet.ml.org, etc.
  621. To activate, add the following to NET.INI below the existing POPPASS keyword:
  622.  
  623.         NODEPASS=<assigned account password>
  624.  
  625. We will be issuing passwords for these accounts, which are independent of other
  626. defined accounts, as the service becomes available.
  627.  
  628. Beta-77
  629.  
  630.     - Relocated a close to a file pointer and a findnext() call in smtp_sendf()
  631. to prevent looping on the same message, if rejected for any reason.  (Came to
  632. light trying to send large messages through a host which would accept them!)
  633. True failures (socket problems) will continue on a second attempt.
  634.  
  635.     - Finally (thanks for your patience, Eileen!) splits received mail larger
  636. than 32K into chunks for import.  This includes both user-to-user mail or mail
  637. destined for hosted mailing lists.  It skips messages which can be clearly
  638. identified as encoded files, i.e. UUE and Base64, on the assumption these are
  639. harder to handle when imported in chunks.  Perhaps a future enhancement will
  640. include handling (decoding) these externally.
  641.  
  642.     - Suppressed the search for username match for ListServe-type mailing lists
  643. (identified by the "To: Multiple recipients of mailing list ....") or when no
  644. username is found in the message.
  645.  
  646.     - Added routine to check for duplicate mail and packets by maintaining a
  647. database of received Message-IDs.  If the ID exists in the database, it's
  648. marked as a duplicate to preclude reprocessing.  This is useful if you have
  649. connection problems during transfers (before the mailbox is updated).  The
  650. maximum entries in the database is 1,000, and the database is compacted to 500
  651. entries when you exceed that.  Therefore, at least the most recent 500 messages
  652. will always be compared.  To make this more effective, a unique Message-ID is
  653. now included on outbound net packets, composed using the packet name.  This
  654. prevents all duplicate net packets, caused by either send or receive problems.
  655.  
  656.     - Added additional logging to all modules.  The contents of the log are
  657. still maintained in NEWS.LOG for backward compatibility.  We may change the
  658. name in a future revision, but NEWS.LOG seems to be acceptable.
  659.  
  660.     - Finally nailed down the WATTCP.CFG creation problems by using a system()
  661. call and renaming WATTCP.CFG on-the-fly.  (These iterations were necessitated
  662. by Klos' PPPWAT utility, which would let go of the file handle!)
  663.  
  664.     - Expanded NOSPAM.TXT parsing into blocks.  NOSPAM.TXT is now organized in
  665. three sections: [GLOBAL], [NEWS] and [MAIL].  This enables variable processing,
  666. depending on the source of the message, for example:
  667.  
  668.                 [GLOBAL]
  669.                 "free "
  670.                 "live "
  671.                 $$$$$
  672.                 [NEWS]
  673.                 .UUE
  674.                 .JPG
  675.                 [MAIL]
  676.                 @money
  677.                 money@
  678.  
  679. Any mail or news with keywords in [GLOBAL] is considered spam.  The [NEWS]
  680. block is used only with news articles, and the [MAIL] block is only applied to
  681. Internet mail.
  682.  
  683.     - Added some unfinished code to NEWS for display minimalists.  When
  684. complete, the display will (optionally in NET.INI) show newsgroup articles
  685. during reciept on a single line and such to minimize screen real estate.
  686.  
  687. Beta-76
  688.  
  689.     - Added error checking to ensure any outbound messages contain a somewhat
  690. valid recipient by ensuring there's a '@' and a '.' in the addressee.  If not,
  691. the program aborts the SMTP session and you must remove the offending message.
  692.  
  693.     - Added support for a .RLZ file for hosted mailing lists.  If a file exists
  694. in the FILEnet directory named R<subtype>.RLZ, the contents of this file will
  695. be sent in response a subscribe request.  If R<subtype>.RLZ does not exist, and
  696. GLOBAL.RLZ exists, that will be sent, instead.
  697.  
  698. NOTE: There is no validation checking on the contents of this file, so do *not*
  699. put ANSI or control characters in the text, as these will crash your mail host!
  700.  
  701.     - Finally set up a Win95 machine for testing!  Adjusted stack and other
  702. values to ensure good compile and operation under both Win95 and DOS.
  703.  
  704.     - Added options to binary news retrieval allowing you to "jump" forward
  705. when you're way behind.  These are:
  706.  
  707.         ']' - Jumps forward 10 articles
  708.         '}' - Jumps forward 100 articles
  709.         '+' - Takes user input for number of articles to jump
  710.  
  711. Again, these keys are only active during binary (NEWS*.UUE) retrieval.  The
  712. program already limits total articles for newsgroups brought into the BBS, so
  713. they can't exceed the sub capacity.
  714.  
  715.     - Changed logic for NOSPAM.TXT check on received mail so it only checks
  716. Internet mail (i.e. UNK-*.UUE) during processing.  This allows you to add items
  717. to NOSPAM.TXT like '.ZIP', '.UUE', etc., without affecting normal movement of
  718. net packets and FDL files.
  719.  
  720.     - Fixed retrieved NEWS subjects so they don't exceed the storage capacity
  721. on the BBS.  The program will use the first 78 bytes of the newsgroup article
  722. title.
  723.  
  724.     - Fixed condition which caused duplicate "Reply-To:" fields in newsgroup
  725. posts when SPAMCONTROL=N and @32767 was set up as the sub host.
  726.  
  727. Beta-75
  728.  
  729.     - Screwed up the ^D0R stuff again in NEWS.EXE!  Fixed this time.
  730.  
  731.     - Went back to Beta-72 stklen, which worked for the majority.  Goose's
  732. fixes in Beta-74 for the WATTCP.CFG should fix things there.
  733.  
  734.     - Tweaked the name-matching routine a bit to get better results on matches
  735. with both user names and hosted mailing lists.
  736.  
  737. Beta-74
  738.  
  739.     - Fixed bug in mailing list subscriber code which created a malformed
  740. response message to any request for an invalid mailing list.  (It also didn't
  741. delete the original SUB-*.UUE, so the problem repeatedly occurred!)
  742.  
  743.     - Changed the create_wattcp_cfg routines to try to get rid of the unable
  744. to open WATTCP.CFG errors.
  745.  
  746.     - Messages posted to newsgroups and mail lists now use the sub real name
  747. setting, rather than the NET.INI REALNAME setting.  The REALNAME setting is now
  748. used only for email.
  749.  
  750.     - Fixed bug which displayed the additional information lines in newsgroup
  751. articles.  (Should have been prefaced with ^D0R for network routing!)
  752.  
  753.     - Several bug fixes by Goose to outbound article/mailing list header
  754. creation inside EXP.
  755.  
  756. Beta-73
  757.  
  758.     - Added autosubscribe to hosted mailing lists.  If the subject of a message
  759. is either "Subscribe LIST" or "Unsubscribe LIST" (case insensitive), the user
  760. will is added/removed from M<LIST>.NET, and a response is generated advising
  761. them of the action taken.
  762.  
  763. NOTE 1: The M<LIST>.NET must exist, even if it's empty.  If that file isn't
  764. there, the requesting system is told that it's an invalid mailing list.  This
  765. saves the trouble of parsing SUBS.XTR to see if the mailing list is valid.
  766.  
  767. NOTE 2: The program does not support mailing lists with a single character for
  768. a subtype.  This is to prevent a malicious attempt to write undesirable data to
  769. the M1.NET through M9.NET macro files supported by CALLOUT.NET.
  770.  
  771.     - Cast disk space variables as float to show large hard drive (greater than
  772. 2GB) accurately.
  773.  
  774.     - Now displays the originator of standard Internet mail messages, instead
  775. of "non-network packet" during receipt.
  776.  
  777.     - Added "Group: <groupname>" field in message headers received in binaries,
  778. for use by PBNews in sorting into proper directories.
  779.  
  780.     - Added "References", "Message-ID" and "Reply-To" fields to received
  781. newsgroup articles, suppressed with ^D0 network routing lines.  These can be
  782. used to facilitate threading and other features, with the appropriate BBS
  783. source code mod.
  784.  
  785. Beta-72
  786.  
  787.     - The fread() technique didn't work.  SMTP mandates that lines beginning
  788. with a period be doubled to prevent confusion with an end-of-message marker.
  789. It proved too difficult to parse the entire buffer to make these adjustments.
  790. Fundamentally, this version returns to B-68 techniques!
  791.  
  792. Beta-71
  793.  
  794.     - Ooooops... new fread() technique for block reading outbound SMTP wasn't
  795. supposed to double periods *unless* a single period was the first character of
  796. a new line.  Fixed.
  797.  
  798. Beta-70
  799.  
  800.     - Oops!  B-69 didn't treat the leading period in some messages properly.
  801. Although it wouldn't crash, it probably corrupted the UUE on the receiving end.
  802.  
  803. Beta-69
  804.  
  805.     - Fix in SMTP transfer routine which could have crashed system when the
  806. first line of the output message was a period.
  807.  
  808.     - Fairly radical changes in SMTP transfer routines to use a faster and more
  809. reliable method.  Reads outbound messages in 1K blocks vice line-oriented.
  810. Stops/restarts the socket allocation for every message.
  811.  
  812.     - Removed support for bcc (blind carbon copy) in outbound messages.  Never
  813. used anything which directly supported this, anyway.
  814.  
  815. Beta-68
  816.  
  817.     - Cosmetic change when receiving FDL files.  The display will now show the
  818. filename being received instead of ARC-xxx.UUE.
  819.  
  820.     - Rewrote routine to create WATTCP.CFG to use buffered file I/O (and to
  821. prevent "Unable to create WATTCP.CFG" errors in the future).
  822.  
  823.     - Reworked logic on SMTP send loop so socket is opened and closed between
  824. each message relay.  Added a couple of routines to detect and respond to socket
  825. errors during the SMTP transfer process.
  826.  
  827.     - Changed From/Reply-To fields in outbound headers to enclose extended user
  828. information in a comment, e.g. "Frank Reid" <edare@ix.netcom.com>. Previously,
  829. no quotes delimited the comment, and this may have confused some mail readers
  830. when composing a response.
  831.  
  832. Beta-67
  833.  
  834.     - Fixed discrepancy on hosted mailing lists which caused outbound messages
  835. from remote WWIV-type systems to be created without a valid focus, e.g.
  836. "From: John Doe" vice "From: John Doe <user@site.com>".  (This crashed most
  837. mail relay programs!)
  838.  
  839.     - Returned to BC++ v4.52 compiler to stabilize problems experienced by many
  840. since downgrading to BC++ v3.1 back with Beta-51 or so.  This uses a bit more
  841. memory (about 20K) but seems to generate a more stable executable.
  842.  
  843. Beta-66
  844.  
  845.     - Added stack checking code to see how much of it is really being used.
  846. The current values closely reflect the program's real stack requirements.  Any
  847. discrepancies reflect other, less apparent program requirements.
  848.  
  849.     - Repositioned the write_groups() call in the sock_err label so it didn't
  850. close all files before attempting it.
  851.  
  852.     - Changed the mailing list code to pull the optional text (used to identify
  853. ListServe type messages) independently of the routine for subtype.
  854.  
  855. Beta-65
  856.  
  857.     - No changes except in the compile options.
  858.  
  859. Beta-64
  860.  
  861.     - Changed SAMPLE.INI to point to the National Institute of Standards time
  862. server at "time.nist.gov".  (Thanks, Papa Bear!)  This should provide reliable
  863. time for those using NTIME to set the clock.
  864.  
  865.     - Added some error checking to the clock() routine which tracks length of
  866. NEWS connection.  This should eliminate negative values from appearing within
  867. NET.LOG (and from corrupting CONTACT.NET/PPP).
  868.  
  869.     - Changed CONTACT.NET update to cap maximum bytes for @32767 connections to
  870. 9,999K (10MB).  This is a limitation of the network software, including NET.LOG
  871. entry.  This makes it friendlier with external programs, including LastNet.
  872.  
  873.     - Added a "Lines: xxx" field to articles retrieved from binary newsgroups
  874. (NEWS*.UUE in SPOOL).  This will facilitate additional features in PBNews, a
  875. utility which reads the NEWS*.UUE files and decodes the original binaries.
  876.  
  877.     - Rewrote POP STAT and LIST commands to eliminate the getnumbers() routine,
  878. as passing the pointer among routines may have been causing problems retrieving
  879. messages from the mailbox.
  880.  
  881.     - Added capability to comment newsgroups within NEWS.RC.  Add a ';' to the
  882. beginning of any line containing the group to skip.  This will allow you to
  883. preserve group information but bypass downloading on every NEWS run.
  884.  
  885.     - Went back to known working stack values in all modules.  Still trying to
  886. determine what values provide universal satisfaction, but these now seem more
  887. OS-dependent.  We shall see...
  888.  
  889. Beta-63
  890.  
  891.     - Changed routine which sends "RCPT TO" field to SMTP host not to fail
  892. entirely upon a bad address (such as missing path to root DNS!)  This should
  893. make it more tolerant of normal Internet outages.
  894.  
  895.     - Fixed a problem where the SMTP port wasn't being closed properly after
  896. all outgoing packets were sent.
  897.  
  898.     - Standardized the reply-to addresses to all be of the format:
  899.  
  900.       User Name <address@site>
  901.  
  902.     - Fixed a problem that would cause NEWS.EXE to crash when receiving NEWSRC
  903. updates in which the group name was too long.
  904.  
  905.     - Changed the file open routine in UU.EXE to get rid of the occassional
  906. net packet that would be sent with a header and no body.
  907.  
  908.     - Fixed a problem with subscribed mailing lists where the incorrect
  909. from address would be shown in the header.
  910.  
  911.     - Fixed a problem in hosted mailing lists where the From: address on the
  912. outgoing message would be a combination of the BBS's Internet address and the
  913. original user's Internet address.
  914.  
  915.     - Fixed a problem in hosted mailling lists where some of the routing line
  916. information would end not be properly stripped from messages sent to the list.
  917.  
  918. Beta-62
  919.  
  920.     - SMTP transfers are now accomplished in a single call to POP.  Previously,
  921. POP was called repeatedly for each message.  This change appreciably improves
  922. SMTP transfer speed (and the ability to control errors, including ICMP errors
  923. returned by Waterloo sockets).
  924.  
  925.     - Recipient addresses are now parsed within a valid focus for transfer to
  926. the MTA (Sendmail/QMail/etc.) on the RCPT TO line.  Additional information on
  927. the recipient line is retained in the header, but no attempt is made to send
  928. that within the focus.  This will ensure compatibility with all MTA versions.
  929.  
  930.     - Added support for quoted strings in NOSPAM.TXT, so "free " is treated as
  931. distinct, with embedded whitespace, so it would match "free video" but not
  932. "freeport".  Without quotes, any leading or trailing whitespace is removed.
  933.  
  934.     - Added support for List-Processor mailing lists which address mail as
  935.  
  936.            "To: Multiple recipients of list <LISTNAME or address>".
  937.  
  938. To use this method, add a distinct text element from the "To:" line after the
  939. normal list definition in NET.INI, for example:
  940.  
  941.         [MAILLIST]
  942.         wx-talk@listproc.org *SUBTYPE "WX-TALK"
  943.  
  944.     - Revised the NNTP post article routine to match that used in POP for SMTP
  945. transfers.  This should eliminate the stalled transfers when posting to a
  946. newsgroup.
  947.  
  948.     - Fixed a quirk in NET.LOG update which caused misaligned columns if a call
  949. exceeded 100 minutes (which isn't unusual on NEWS sessions).
  950.  
  951.     - Now includes NETWORKP.EXE in the distribution archive.  This version does
  952. not load or unload the Klos drivers, but assumes you have an existing Ethernet-
  953. class packet driver (for cablemodem, dedication connections, etc.)  Need some
  954. feedback on this to tailor it (until I get my own cablemodem here!)  Rename to
  955. NETWORK.EXE instead.
  956.  
  957.     - Fixed a bug in NEWS which caused problems if the first listed group was
  958. a binary (subtype '0' in NEWS.RC), resulting in the subsequent, non-binary
  959. group not to have a valid packet name.
  960.  
  961.     - Now updates the last messages read pointers when NEWS aborts due to a
  962. session error, such as a timeout.
  963.  
  964.     - Now creates a new packet (P0-*) upon selecting a new group to ensure it
  965. doesn't lose messages if a connection is lost during that process.
  966.  
  967.     - Fixed broken CONTACT.NET update routine.  Will now update //PENDING, even
  968. if no packets were sent to "real" FILEnet systems.
  969.  
  970. Beta-61
  971.  
  972.     - Moved a brace in UU.EXE which should allow it to find the correct FDL
  973. type (from either FDLFTS.CFG or the directoryrec.dirtype) when uploading FDL-
  974. hatched files received via Internet mail.
  975.  
  976.     - Added a loop which aborts SMTP session after five consecutive failures.
  977. This will ensure that SMTP transfers aren't tried repeatedly when some other
  978. problem is affecting the link.
  979.  
  980.     - Tweaked the postnews() routine with additional error checking and such
  981. in the hope to eliminate stalling problems experienced on some systems.
  982.  
  983.     - Recompiled the Waterloo TCP/IP library with compiler options identical to
  984. those for main modules.
  985.  
  986.     - Kludged in a quick fix for outbound mail exported from a hosted mailing
  987. list which I hope will fix the "Gate #y@zzzz not yet supported" problem when
  988. mail is received from other network systems.
  989.  
  990. Beta-60
  991.  
  992.     - Added a <Tab> option during NEWS retrieval which catches up on the
  993. current newsgroup (by setting the last read message pointer to equal the
  994. current last message in the group).
  995.  
  996.     - Eileen Stone bagged a mail specimen for me which contained more than 650
  997. character lines (well beyond how I had cast this string).  It was, basically,
  998. an entire paragraph without returns.  You'd think the spammers would have, at
  999. least, the decency to comply with the RFC!  This should address such messages.
  1000.  
  1001.     - Fixed a quirk which caused NOSPAM.TXT to be skipped if BINXPOST was also
  1002. enabled in NET.INI.  The spam check is now performed even on binary newsgroups.
  1003.  
  1004.     - Will now parse NOSPAM.TXT against incoming messages (Internet mail) in
  1005. addition to newsgroup posts.  Messages which match NOSPAM.TXT will be left in
  1006. INBOUND as SPM-*.UUE.  A more robust engine, e.g. separately definable spam
  1007. lists for mail and news, will be forthcoming.
  1008.  
  1009.     - Refined the SMTP transfer loop to ensure it flowed properly (and gave the
  1010. correct output when no mail was sent).  I've been able to power up and down the
  1011. modem here and have the program respond appropriately.  Your results may vary!
  1012.  
  1013.     - Changed to unbuffered file I/O routines in NEWS savebody() process.  This
  1014. will circumvent any problems associated with multiple open files, particularly
  1015. when log entries, spam checks and message pointers are all occurring during the
  1016. NEWS retrieval session.
  1017.  
  1018.     - Moved several repetitive strings into a global array in NETWORK in order
  1019. to reduce the DGROUP.
  1020.  
  1021.     - Now appends the originating user name after any defined REPLYTO= field
  1022. in NET.INI.  This will allow news readers to reply more easily to an originator
  1023. of a message posted on the system, even with SPAM control in place.
  1024.  
  1025. Beta-59
  1026.  
  1027.     - Bad POP.EXE in B-58!  Wasn't responding to lost carrier.
  1028.  
  1029.     - Reworked multiple SMTP transfer routine.
  1030.  
  1031.     - Removed duplicate strings in NETWORK.EXE.
  1032.  
  1033.     - Added a moderate stack back into NETWORK.EXE to address failed update
  1034. for CONTACT.NET errors.
  1035.  
  1036. Beta-58
  1037.  
  1038.     - Fixed binary crosspost check, thanks to Papa Bear.  It wasn't counting
  1039. the number of letters in BINXPOST right -- basic math skills lacking here!
  1040.  
  1041.     - Streamlined code for successive SMTP transfers by removing a redundant
  1042. loop (again, with Papa Bear's help).
  1043.  
  1044.     - Killed tcp_tick() calls throughout POP and NEWS.  I never trusted these.
  1045. Although they're touted as capable of tracking socket failures, I've found it
  1046. actually keeps the socket alive after it's clearly failed (e.g. NO CARRIER!)
  1047.  
  1048.     - Returned to the stack sizes which worked consistently in B-53.  This will
  1049. eliminate any CONTACT.NET errors which popped up for some systems since then.
  1050. Seems to be solid here, but Weatherman will break it!  :)
  1051.  
  1052.     - Rewrote the stripcolors() routine in EXP so it now properly removes all
  1053. colors, and the numerals associated with them, and all high ASCII.
  1054.  
  1055. Beta-57
  1056.  
  1057.     - Removed the NETWORK1/2/3 clean-up routines.  There isn't consistently
  1058. enough memory to run these within a DOS spawn, and the "Out of memory" errors
  1059. in NETDATx.LOG correspond directly to lost packets.  The feature's not worth
  1060. the potential dangers (lost packets!)
  1061.  
  1062.     - Added a check to ensure that the NOSPAM.TXT keywords are longer than
  1063. three characters.  This will prevent spurious things, such as a returns or
  1064. spaces from triggering a TRUE result on the routine.
  1065.  
  1066.     - Removed the tcp_tick() calls from NEWS.  These could cause a crash if the
  1067. socket is not in place.
  1068.  
  1069. Beta-56
  1070.  
  1071.     - Dropped the NETWORK stklen back to 6K as this most certainly was causing
  1072. the failure to update CONTACT.NET problem on some systems.  Redesigned spawn
  1073. routine not to allocate as much memory for the commandline arguments passed,
  1074. which should lessen the stack requirements.  (We know the maximum number of
  1075. commandline arguments passed to the spawn routine in advance, so there was no
  1076. need to allocate a character array for 50 possible arguments!)
  1077.  
  1078.     - Hooked in calls to NETWORK1/2/3 to clean up pending packets completely
  1079. before and after runtime.  The reduced overhead on the spawn routine should
  1080. allow this to process without any problems.
  1081.  
  1082.     - Major revelation!  After looking closely at RFC 821, I realized I was
  1083. misinterpreting the SMTP "MAIL" directive as inherently intertwined with the
  1084. header "From:" field.  This is not the case -- the header is sent separately
  1085. and does not need to reflect the "MAIL" directive used in the SMTP session.
  1086. POP will now use a simple focus "Mail From:<mybbs@mydomain.com>" during SMTP
  1087. send, while preserving any extended user information on the message From:
  1088. header line.  Outbound mail now appears as:
  1089.  
  1090.                 From: User Name <mybbs@mydomain.com>
  1091.  
  1092. This should significantly improve the ability of most mail readers to respond
  1093. to a message originated on the BBS (and increase the possibility that the
  1094. response will go to the right mailbox!)  It also eliminates SMTP problems
  1095. caused by forcing the extended user information into the "MAIL" directive.
  1096.  
  1097.     - Added a properize() routine to the outbound mail name, so it appears as
  1098. it should, e.g. "Old MacDonald", "Mary Jones-Smith", etc.
  1099.  
  1100.     - Added a SPAM filter for news retrieval.  Create NOSPAM.TXT in the FILEnet
  1101. directory with keywords to be compared (case-insensitive) against the subject
  1102. and originator of each newsgroup article during retrieval.  NOSPAM.TXT should
  1103. have one entry per line, e.g.
  1104.  
  1105. fast cash
  1106. phone sex
  1107. toni@spaclab.net
  1108. 6t9.com
  1109. $$$$
  1110.  
  1111. If there's a match, the message is skipped during retrieval.  The delay in
  1112. parsing even a 100 line NOSPAM.TXT is insignificant compared to the time saved
  1113. by not retrieving the spam!  (In other words, the comparison is pretty quick!)
  1114. The check is bypassed if BINXPOST=Y in NET.INI or if NOSPAM.TXT does not exist
  1115. in the FILEnet directory.
  1116.  
  1117. Beta-55
  1118.  
  1119.     - Eliminated stack overflow checking from makefile compile options which
  1120. should speed up code execution (and reduce the size of executables somewhat).
  1121.  
  1122.     - Allocated a sockets structure in NTIME to prevent corruption across the
  1123. heap (which may have caused lockups when the socket couldn't be created).
  1124.  
  1125.     - Changed POP to recognize FDL-type email, even if ALLMAIL=N.  Basically,
  1126. if "FDL Type:" is found in the top portion of a message, it's assumed to be an
  1127. file hatched via FDL, and it will be retrieved normally.
  1128.  
  1129.     - Changed disk space check to a Win95-friendly routine provided by Papa
  1130. Bear (which allowed me to recast variables as long, vice double as was used in
  1131. Wayne's disk-check routine!)
  1132.  
  1133.     - Increased stklen in POP (6K vice the 4K default) to address the problem
  1134. with some systems hanging on file transfers.
  1135.  
  1136.     - Changed to tcp_tick(NULL) vice tcp_tick(Mail_Socket *).  This was changed
  1137. between B-53 and B-54 and may have been the cause of lockups during SMTP send.
  1138.  
  1139.     - Fixed failed checks for a modified directory structures.  Dawg pointed
  1140. out that I was closing the DIRS.DAT file handle before I got the length!
  1141.  
  1142.     - Changed to far calls for memory allocation for copyfile() and NET.LOG
  1143. update routines.  This is what I would've preferred all along, but stack and
  1144. other errors kept chasing me back to the standard allocation calls.
  1145.  
  1146. Beta-54
  1147.  
  1148.     - Killed redundant code in the CONTACT.NET update routine.  This should fix
  1149. the unpredictable results for total time/bytes in //PENDING output.
  1150.  
  1151.     - Removed a one-second delay after each message was received via POP.  This
  1152. was added just before B-53 and may have generated problems where POP hung when
  1153. retrieving messages.
  1154.  
  1155.     - Cleaned up zero byte packets created during news retrieval before these
  1156. are renamed to valid pending network packets.  This will preclude the network
  1157. software from finding/processing them.
  1158.  
  1159.     - Fixed EXP routine which was stripping spaces from the REPLYTO address in
  1160. NET.INI.
  1161.  
  1162.     - Spam-proofed the Message-ID field in newsgroup posts.  Previously, this
  1163. required field had been composed using the real account name and domain.  It
  1164. now uses the account name and WWIV-BBS.
  1165.  
  1166.     - Added BINXPOST=Y/N to NET.INI.  When <Yes>, it bypasses the check for max
  1167. crossposts on binary newsgroups (must have 'binaries' in name).  This allows
  1168. you to spool all messages from binary groups, regardless of crossposting.
  1169.  
  1170.     - Fixed overwriting display of "Expired Article." and other skipped posts
  1171. during news retrieval.
  1172.  
  1173.     - Added a tcp_tick() call in postnews() where it could potentially die
  1174. waiting for a response from the news host after posting.  (This won't speed up
  1175. the server's response, but it will allow the program to exit gracefully!)
  1176.  
  1177. Beta-53
  1178.  
  1179.     - Fixed a quirk which caused NEWSRC to be retrieved entirely on subsequent
  1180. runs on a new month or a forced update.
  1181.  
  1182.     - Changed display of expired and skipped articles to remain on a single
  1183. line during retrieval.
  1184.  
  1185.     - Recast newsgroup count variable from a short to long integer.  For ISPs
  1186. with more than 32,767 newsgroups (!), this caused the display to corrupt while
  1187. retrieving a NEWSRC listing.
  1188.  
  1189.     - Figured out the CONTACT.NET update problem (finally!).  Somehow, in B-42,
  1190. the structure for net_networks_rec had a far pointer declaration removed for
  1191. two variables which control that relationship.  Yeesh...
  1192.  
  1193.     - Recompiled under Borland C++ v3.1... have now got TC3/BC3/BC4 installed
  1194. for a broad selection!
  1195.  
  1196. Beta-52
  1197.  
  1198.     - Recompiled with Turbo C++ v3.0 instead of Borland C++ v4.52 which
  1199. returned a significant amount of memory (25K) to the program.  Some of that
  1200. was immediately used to increase NETWORK's stklen to 15K (in the hope that
  1201. it preserves enough space to update CONTACT.NET for everyone!)
  1202.  
  1203.     - #defined a macro for min() in UU.C in order to use .cpp mode with
  1204. compilers earlier than BC4.
  1205.  
  1206.     - Added self-maintaining routine to update NEWSRC with each news callout.
  1207. A full NEWSRC listing is retrieved the first of each month, and updates are
  1208. retrieved daily.
  1209.  
  1210. Beta-51
  1211.  
  1212.     - Returned to previous method of enclosing recipient information entirely
  1213. within the focus during SMTP relay, e.g.
  1214.  
  1215.                 To:<user@whatever.domain (User Information)>
  1216.  
  1217. The changes in B-50 didn't resolve the QMail imcompatibility problem.  Adding
  1218. USERMAIL=N to NET.INI bypasses extended user information and should allow it
  1219. to cooperate with QMail.  (Alternately, use 138.145.3.3 for SMTP relay!)
  1220.  
  1221.     - Now deletes "441 Duplicate messages" during postings.  You should never
  1222. see these, except when the NEWS times out during posting, in which case the
  1223. duplicate message is genuine, i.e. the first message did get posted.
  1224.  
  1225.     - Nailed the culprit causign NEWS lockups!  I wasn't allocating enough
  1226. room for a buffer when extracting information from the header, particularly
  1227. the "Newsgroups:" and "Path:" fields.  This was most evident on binary groups
  1228. with lots of crossposts.  When the buffer overflowed, it crashed!
  1229.  
  1230.     - Changed source modules to .cpp extension to force stricter bounds check
  1231. and typecasting.  Got rid of POP.H and #defined what we need explicitly within
  1232. the POP and NEWS modules, including Mail_Socket structures.
  1233.  
  1234.     - Changed most conditional routines within NEWS to switch() statements in
  1235. order to track/detect socket errors more accurately and quickly.  It seems to
  1236. respond flawlessly here now! :)
  1237.  
  1238.     - Chased my tail for a few days figuring out why the certain NEWS routines
  1239. appeared to be called improperly (and overwrote memory areas allocated for
  1240. other things, including the sockets!)  Turned out a global string variable was
  1241. oversized at 4096 bytes (on the static heap!)  RFC 977 provides a maximum of
  1242. 512 bytes for returned strings in NNTP, so that's how we're now cast.
  1243.  
  1244.     - Added checks to ensure the socket was alive in NEWS and POP using the
  1245. Waterloo tcp_tick() routine.  Hopefully, this obviates extended periods where
  1246. the server falls asleep!  Ensure "INACTIVE" and "SOCK_DELAY" in NET.INI aren't
  1247. excessive.  (INACTIVE=60 and SOCK_DELAY=30 are appropriate.)
  1248.  
  1249.     - Returned makefile options used in B-39 to see if that solves problems on
  1250. some systems with memory allocation routines, e.g. allocating for sockets.  One
  1251. of the flags was for a standard stack frame.  I think this should fix the case
  1252. where the POP mailbox wasn't checked unless there was outbound SMTP.
  1253.  
  1254.     - Revamped the BAD*.UUE check for mail originating locally, so it accepts
  1255. mail in which the original message had been quoted and the original "From:"
  1256. line appeared in text.  (Some mail systems, like cc:Mail, quote with just a
  1257. separator line, leaving the original "From: you@where" in tact.)  It now looks
  1258. only in the header for a match to determine if it's BAD*.
  1259.  
  1260.     - Added a definable Reply-To: field in NET.INI.  If defined, this address
  1261. (up to 80 characters) will be used in the text of newsgroup posts.  It can be
  1262. something like:
  1263.  
  1264. REPLYTO = edare{at}ix{dot}netcom{dot}com (change before responding!)
  1265.  
  1266.     - Fix from Zu Digital revamps NEWSNAME/NEWSPASS logic.  His local POP for
  1267. Mindspring required authentication when the socket was initially opened, so the
  1268. NEWSNAME and NEWSPASS are now presented at time of connection.  If your host
  1269. does *not* require authentication, you *must* comment out the NEWSNAME and
  1270. NEWSPASS lines in NET.INI, otherwise you'll get authentication errors!
  1271.  
  1272.     - Tweaked the socket error label completely in NEWS, so it does a clean
  1273. exit when timeouts and session errors occur.
  1274.  
  1275.     - Changed the use of the "abort" variable while saving the text body in
  1276. NEWS articles so it didn't chop off the message (stop writing it) after a
  1277. [Space] or [Esc] command was issued.  The message now gets completed and
  1278. processed normally as the last message read in that group.
  1279.  
  1280.     - Added a time synchronization routine (NTIME.EXE) which sets your DOS
  1281. clock using a time server.  If you are unsure of your time server, use the one
  1282. in the example below.  If the TIMEHOST is not defined in NET.INI or NTIME.EXE
  1283. isn't in the BBS main directory, this routine will be skipped.  Add the
  1284. following to NET.INI, below the SMTPHOST definition:
  1285.  
  1286.         TIMEHOST = ns.nctsw.navy.mil
  1287.  
  1288.     - Enhanced directory checking when receiving file so it places non-FDL
  1289. files in the defined NOREQUEST_DIR in FDLFTS.CFG.  (If FDLFTS.CFG isn't there
  1290. or the flag isn't defined, it will go to Sysop directory.)  Also, fixed a
  1291. place where it wouldn't have found FDLFTS.CFG under normal circumstances.
  1292.  
  1293.     - Saw a first today -- a 0 octet (no size!) message was queued in my POP
  1294. mailbox.  This returned a '0' to the calling routine (which uses the size), so
  1295. I added code to delete it, close and update the mailbox when this happens.
  1296.  
  1297.     - Revised NEWS packet naming method to pass a complete filename to the
  1298. routine which saves the message body.  In this manner, nothing in memory should
  1299. corrupt the contents.  Added a "wait_closed()" upon error just in case.
  1300.  
  1301.     - Shortened up some oversized global variables in NETWORK to keep stack
  1302. requirements below the default 4K.
  1303.  
  1304.     - Changed the display on total mailbox size to conform to the same display
  1305. as sent SMTP messages, i.e. "(nnK)" vice "(nnnnn bytes)".
  1306.  
  1307.     - Removed a spurious "Maximum posts -" output string when retrieving binary
  1308. groups.  (The max articles check in //BOARDEDIT is bypassed on binaries!)
  1309.  
  1310.     - Standardized/prettied up some displays when sending/receiving POP/SMTP
  1311. messages.
  1312.  
  1313. Beta-50
  1314.  
  1315.     - Added a USERMAIL=Y/N option to NET.INI (see SAMPLE.INI).  This option
  1316. bypasses the creation of an extended address form, i.e. the (USERNAME) which
  1317. follows the user@domain in the originator field.
  1318.  
  1319.     - Changed the way RCPT TO passes recipient addresses during SMTP to conform
  1320. to RFC, as I now understand it.  The MTA portion now relays outbound messages
  1321. with any extended information outside of the wrapper, e.g.
  1322. "RCPT TO:<user@whatever.domain> (extended_user_info)".
  1323.  
  1324.     - Incorporated Goose's fixes to stop NEWS crashing by waiting until the
  1325. socket is closed before exiting.  Without this wait, there was still junk
  1326. coming in the socket, even after the program exited!
  1327.  
  1328.     - Another Goose fix to address PPPSTATE error #255, by waiting two seconds
  1329. to allow the PPP TSR to load and exit before running PPPSTATE, eliminating the
  1330. possibility that PPPSTATE erroneously found no memory available.
  1331.  
  1332.     - In UU, added a routine to ensure the directory path for uploads to
  1333. Sysop directory were explicit, e.g. "C:\WWIV\DLOADS\SYSOP" vice "DLOADS\SYSOP"
  1334. (which is allowable on the BBS, but dangerous in external file operations!)
  1335.  
  1336.     - Eliminated an attempt to "QUIT" the POP session when encountering an
  1337. error at initial connection.  (This meant the path was bad or the host was
  1338. unavailable, therefore the "QUIT" command is unanswered, anyway!)
  1339.  
  1340.     - Added a QUIT directive during POP sessions where there is a clear fail
  1341. returned to the client, e.g. bad mailbox or password, etc.  This is a nicety
  1342. for our ISPs, so we always "clean up" after our POP session.
  1343.  
  1344.     - Now creates a backup of NEWS.RC at runtime as NEWS.BAK (in the FILEnet
  1345. directory).  This was requested as a means of ensuring last read message
  1346. pointers don't get trashed/lost as easily.
  1347.  
  1348.     - Modified the logic in an aborted NEWS sessions so the host would clear
  1349. remaining buffers before returning to the calling routine, i.e. to empty the
  1350. contents of any inbound stream so no junk got carried back!
  1351.  
  1352.     - Removed spurious "as UNK*.UUE" display when Internet mail is received
  1353. and moved from the INBOUND to SPOOL directories.
  1354.  
  1355.     - Another Goose fix to prevent terminating an already null string in the
  1356. treat() routine inside NEWS (causing the "attempt to access memory area already
  1357. in use" error under some operating systems).
  1358.  
  1359. Beta-49
  1360.  
  1361.     - Oops... had a 50/50 shot and picked wrong!  Have now standardized memory
  1362. allocation using malloc() calls vice farmalloc() calls, as was the case in B-39
  1363. (which appears to have worked properly in retrieving mail!)
  1364.  
  1365.     - Again, changed the way the net_data variable is handled throughout NEWS.
  1366. Last attempt caused more problems than it solved!  :(
  1367.  
  1368. Beta-48
  1369.  
  1370.     - Standardized memory allocation for the sockets in all modules.  This
  1371. should address the problem of not picking up mail unless there's outbound
  1372. mail to send.
  1373.  
  1374.     - Nailed down the variable overrun in NEWS causing abnormal exit after a
  1375. line of garbage, i.e. "Can't create temporary packet <garbage>\INPUT1.MSG".
  1376. The contents of a global variable ("net_data" which points to the network
  1377. data directory) were getting trashed!
  1378.  
  1379.     - Redid NET.LOG update routine.  No longer reads entire existing file,
  1380. line-by-line, but rather allocates the file as a memory block and writes the
  1381. block after the additional entry is added to the top.  Measurably faster.
  1382.  
  1383.     - Added additional error checking to copy/move operations to prevent lost
  1384. files.  Now ensures the directoryrec is unmodified before reading/uploading
  1385. received files.  If modified directoryrec, e.g. filepoints, the files are kept
  1386. in CHECKNET, as before.
  1387.  
  1388.     - Removed the unnecessary "Path:" field in email.  (This is used solely
  1389. for Usenet posts in determining whether an article originated on the local
  1390. system and should, thus, be skipped during retrieval.)
  1391.  
  1392.     - Added an "X-Reply-To:" field for hosted mailing lists to assist in
  1393. allowing responses to the list from mailers which don't support the extended
  1394. parentheses addressing.  The field is formatted using the originator, domain
  1395. and mail list subtype, e.g. "MAILTYPE <user@whatever.domain>".
  1396.  
  1397. Beta-47
  1398.  
  1399.     - Fixed lost cursor after exiting news.
  1400.  
  1401.     - Recast strings in NEWS to 1024 bytes vice 512 and cast the temporary
  1402. packet name as static, hopefully to prevent the overrun on some subjects
  1403. (which bled into the temporary packet name!)
  1404.  
  1405.     - Added support for a secondary DNS.  Add "SDNS=<IP address>" under the
  1406. current DNS (primary) tag in NET.INI.
  1407.  
  1408.     - Went back to standard malloc() calls for allocating memory for the
  1409. sockets.  I had mismatched these in POP in B-46.
  1410.  
  1411.     - Added an explicit call to close the input file before proceeding in UU.
  1412. This should eliminate any sharing violations, such as across a LAN.
  1413.  
  1414. Beta-46
  1415.  
  1416.    - Tweaked much more and built in lots of error checking into POP and NEWS,
  1417. particularly.  Think we've got all potential lockups fixed.
  1418.  
  1419.    - Changed returned values in NEWS to standard, i.e. 0 or less for error
  1420. and a positive integer for success.  This allowed me to standardize the
  1421. sock_err routine for more accurate responses to socket problems.
  1422.  
  1423.    - Added internal FDL processing to UU.EXE.  For FDL feeds received via
  1424. Internet mail, UU now puts them directly into the BBS (rather than using
  1425. DE555.EXE) to keep the description and FDL type together with the file.
  1426.  
  1427.     - Added a "SLAVE" directive to NEWS before any transactions.  On some
  1428. NNTP servers, the SLAVE command is used to give priority treatment to a
  1429. connection, on the premise it's a "slave server" rather than a user.
  1430.  
  1431. Beta-45
  1432.  
  1433.     - B-44 was a lemon!  I distributed the wrong executables with the archive,
  1434. and immediately after I found problems in error handling!  These caused nearly
  1435. certain death crashes!
  1436.  
  1437.     - Fine-tuned error handling again.  (Found a condition which returned a
  1438. (null) SMTP reply, which gave me something to work with!  This version really
  1439. does respond to errors!
  1440.  
  1441. Beta-44
  1442.  
  1443.     - Returned to standard stack size (4K) in all modules.  These tweaks
  1444. appear to have addressed only tertiary problems.  Reduced runtime memory
  1445. requirements by about 20K.
  1446.  
  1447.     - Went back to basics on POP, starting with the core code of B-32 and
  1448. progressing through the more recent changes.  Tweaked fallthroughs on socket
  1449. errors.  Found an area where an attempt to close an open file would causing
  1450. sharing violations.
  1451.  
  1452.     - Fixed a problem which incorrectly identified a quoted response to mail
  1453. as BAD*.UUE (because it found the original "From:" line from the originating
  1454. system).  It will now only perform a "bad" match that if the "From:" line is
  1455. part of the new header.
  1456.  
  1457.     - Fixed a situation which has existed since the project began!  ALLMAIL
  1458. wasn't honoring "ALLMAIL=N" if it detected the message as any type of UUE.
  1459. This caused graphics files, archives and other UUEs to be retrieved, despite
  1460. the ALLMAIL setting.  Thanks to Robert Kish for pointing this out (and anyone
  1461. who may have in the past, although I didn't catch it!)
  1462.  
  1463.     - Corrected a problem which generated hard locks on NEWS retrieval (again
  1464. in the sock_err handling! :(
  1465.  
  1466.     - Returned to linear display of sent/received messages, so now all
  1467. transfers appear on a single line (for viewing at runtime).
  1468.  
  1469.     - Removed *lots* of unnecessary static data from NEWS (which is what
  1470. allowed the return to default stack size!)  Now carrying the same mail socket
  1471. allocation globally through routines, as opposed to one static allocation.
  1472.  
  1473.     - Killed the cstat() routine.  This returned the article-ID for any given
  1474. article, but we weren't using that anywhere.  (I also suspect this is what
  1475. caused the NEWS retrieval to randomly skip to the last message in the group!)
  1476.  
  1477. Beta-43
  1478.  
  1479.     - Squashed a nasty bug in POP which would cause SMTP to hang.  While I
  1480. was in there, I tweaked the "sock_err:" label (the fallthrough for Waterloo
  1481. problems), and it now appears to be more responsive now to errors.
  1482.  
  1483.     - Squashed a bug in the export() routine which caused a hard lock when
  1484. certain types of messages were exported.  While I was in there, I tweaked
  1485. handling of pipe codes and soft returns.
  1486.  
  1487. Beta-42
  1488.  
  1489.     - Changed the Path: field for newsgroups to use the FWDNAME and FWDDOM
  1490. parameters if specified in NET.INI.
  1491.  
  1492.     - Removed closes to non-open files in the UU routines.
  1493.  
  1494.     - Added support for the "X-Sender:" parameter when EXP parses mailing
  1495. list headers.
  1496.  
  1497.     - Re-fixed the problem where outgoing messages would be considered
  1498. duplicates because the Message-ID field was the same as another message.
  1499.  
  1500.     - Made a change to the header detection logic to fix a problem where
  1501. message text would sometimes be marked as hidden lines.
  1502.  
  1503.     - Removed the EXP limit of 14 mails processed at a time.  The problem of
  1504. "too much mail" or "duplicate posts" was fixed in the previous beta.
  1505.  
  1506.     - Removed the code that tried to unload PPP.EXE if it returned an error
  1507. code of "not loaded".
  1508.  
  1509.     - Fixed a longstanding problem with NEWS routine chead() which caused a
  1510. premature "End of new messages" while scanning newsgroups.
  1511.  
  1512. Beta-41
  1513.  
  1514.     - Fixed problem in UU which caused received archive files (ARC-*.UUE) to
  1515. remain in INBOUND.  (EXP decoded them repeatedly as SOME.MSG, SOME.001, etc.)
  1516.  
  1517.     - Rewrote max posts on sub lookup routine to solve problem with incorrect
  1518. article number returned during news retrieval (which often caused only last
  1519. message to be retrieved).
  1520.  
  1521.     - Allocated memory for POP and SMTP sockets on far heap (to match the
  1522. method used in NEWS, which has been working successfully!)  Hopefully, this
  1523. fixed the problem which caused POP to find no mail on host (when, in fact,
  1524. there was mail waiting).
  1525.  
  1526.     - Added a second call to resolve SMTP host via DNS (mainly to compensate
  1527. for slow nameservers).  This should reduce the occurrence of the "SMTP Socket
  1528. failure" errors during outbound mail delivery.
  1529.  
  1530.     - Updated contact information in header to my new ix.netcom.com address.
  1531. (This actually happened in B-39 or B-40, but wasn't noted in CHANGES.DOC!)
  1532.  
  1533. Beta-40
  1534.  
  1535.     - Returned to some known good values for stack (B-32 and B-34).
  1536.  
  1537.     - Cleaned up excess variables in various modules.
  1538.  
  1539.     - Fixed [Spacebar] group skip during news retrieval so it responds when
  1540. someplace else than message retrieval.
  1541.  
  1542.     - Fixed a couple bad read-write opens for CONFIG.DAT -- shouldn't have
  1543. been doing that.
  1544.  
  1545. Beta-39
  1546.  
  1547.     - Added a "Path" field to outbound articles.  This will now be used to
  1548. track whether articles originated locally (and are skipped during retrieval),
  1549. instead of the "Organization" field in previous versions.  This was required
  1550. because some news servers assign their own Organization field.
  1551.  
  1552.     - Strips pipecodes and heart colors from newsgroup articles during
  1553. export process (including titles, which got lost a few betas ago!)
  1554.  
  1555.     - Compiled with stack checking, hopefully to narrow down the problems
  1556. associated with low stack.  If you receive any warnings, please advise me.
  1557.  
  1558.     - Fixed a problem which caused "441 Duplicate Article" responses for
  1559. newsgroup posts (resulting from exported articles during the same second).
  1560.  
  1561. Beta-38
  1562.  
  1563.     - Played with the _stklen a bit more to tweak varying requirements among
  1564. several systems reporting problems with B-36/37.
  1565.  
  1566. Beta-37
  1567.  
  1568.     - Distributed wrong NETWORK.EXE with Beta-36!
  1569.  
  1570. Beta-36
  1571.  
  1572.     - Changed stack length declarations in the main and support modules to see
  1573. if that fixes symptoms of no stack, i.e. lockups after NEWS runs, etc.
  1574.  
  1575.     - Repositioned the file pointer close routines in UU so all files were
  1576. closed prior to copying/moving/deleting (to fix reported sharing violations).
  1577.  
  1578. Beta-35
  1579.  
  1580.     - Supports outbound mailing lists (i.e. hosted lists).  Create a file
  1581. M<subtype>.NET for the list of recipients (subscribers) to your list.
  1582.  
  1583.     - Handles CONTACT.NET update without allocating memory on the heap, which
  1584. caused insufficient memory errors in Beta-33/34 on several systems.
  1585.  
  1586.     - Now is case-insensitve while matching the mailing list owner fields
  1587. (in NET.INI) for mailing lists you belong to.
  1588.  
  1589.     - Uses the actual date from articles and mail, if one is found.
  1590.  
  1591.     - Replaces soft returns (from QWK packets) with normal returns.
  1592.  
  1593. Beta-34
  1594.  
  1595.     - Hopefully, a fix for memory allocation routines on CONTACT.NET update
  1596. by allocating/deallocating memory each time CONTACT.PPP (the pointer files to
  1597. your Internet connections) is created.
  1598.  
  1599.     - Changed the method for outbound packet naming, eliminating the one
  1600. second delay between encoding each packet.  That should run appreciably
  1601. faster now.
  1602.  
  1603.     - Stuck in support for the "Sender:" parameter when EXP parses mailing
  1604. list headers (requested by Eileen Stone).  This is Goose's realm, but it
  1605. seemed like an easy change! :)
  1606.  
  1607. Beta-33
  1608.  
  1609.     - Removed the @###.FILEnet from the default tagline, as some sysops are
  1610. using the PPP Project Software without actually being a member of FILEnet.
  1611.  
  1612.     - Fixed a problem where messages that had a line starting with the word
  1613. "begin" would be incorrectly identified as network packets.
  1614.  
  1615.     - Changed the connect time code so that all Internet based systems will
  1616. have their last time of connect reset after a successful SMTP/POP session.
  1617. The time of connect of any direct dial systems is not affected.
  1618.  
  1619.     - Fixed the code so that it will properly use the ADDRESS.# files
  1620. rather than ADDRESS.NET.  Also fixed the problem with the - sign in ADDRESS.0
  1621. to indicate a direct dial connection not working.
  1622.  
  1623.     - Put the return path back into the logic for the name matching routines
  1624. for the maillist to sub logic.  Some listservers use one and some use the
  1625. other.
  1626.  
  1627.     - Changed the success and failure levels for the PPP modules so that
  1628. Ctrl-C will return a fail result, rather than a pass.  This keeps outgoing
  1629. packets from being improperly deleted.
  1630.  
  1631.     - <Space> now aborts transfer of the current message during an SMTP
  1632. session.  This allows you to bypass a message on the current run, while
  1633. saving it for transfer later.
  1634.  
  1635.     - Changed some of the text display, during transfers and (lesser seen)
  1636. error result messages.
  1637.  
  1638. Beta-32
  1639.  
  1640.     - Email messages containing the encoded WINMAIL.DAT or WINMAIL.MSG files
  1641. will not be erroneously identified as UUE files.  The WINMAIL encoded lines
  1642. are also marked with the ^D0R header to prevent display on the BBS.
  1643.  
  1644.     - Changed the name matching routines for mailling lists (again) to fix a
  1645. problem introduced in beta 30 which made the name match routines always fail.
  1646.  
  1647.     - Made some changes to the logic for creating the WATTCP.CFG file to
  1648. try to prevent the "Can't create WATTCP.CFG" problem.
  1649.  
  1650.     - Removed POP.DBG.  Now uses "MOREINFO" flag in NET.INI to provide debug
  1651. (extended dialog) information with POP/SMTP hosts.
  1652.  
  1653. Beta-31
  1654.  
  1655.     - Recompiled under BC4 to address the "Can't create WATTCP.CFG" problem.
  1656.  
  1657. Beta-30
  1658.  
  1659.     - Fixed a problem where the memory for mailling lists was improperly
  1660. allocated or freed.
  1661.  
  1662.     - The code now ignores the Return-Path line in messages.  This would
  1663. sometimes cause the return address to get assigned incorrectly.
  1664.  
  1665.     - Fixed a problem where the message Name is *after* host would be
  1666. displayed when the < > surrounded the id but no user name was included.
  1667.  
  1668.     - Fixed a problem where Beta-29 which left the INSTANCE.DAT file open.
  1669.  
  1670.     - The "N*.NET is missing" warning message was removed, since it won't
  1671. exist if @32767 is set up as the host rather than a subscriber.
  1672.  
  1673.     - Fixed a problem in the display of the sub type when message were
  1674. received to a maillist sub.
  1675.  
  1676. Beta-29
  1677.  
  1678.     - Changed the multitasker detection logic so that Windows 95 and OS/2
  1679. will be reported correctly, even if NETBIOS support is also enabled.
  1680.  
  1681.     - Fixed a problem where the newsgroup pointer could be incorrectly set if
  1682. <Esc> or <Space> was pressed to abort newsgroup retrieval.
  1683.  
  1684.     - Newsgroups are no longer deleted from NEWS.RC when an unrecoverable
  1685. error occurs.  Instead, an SSM is sent to the sysop account, so that the
  1686. appropriate action can be done.
  1687.  
  1688.     - Fixed a problem in NEWS where the crossposted or returned messages
  1689. were not being deleted for the first group listed in NEWS.RC.
  1690.  
  1691.     - Fixed a problem that would be created by messages with long subject
  1692. lines or recipient name.
  1693.  
  1694.     - EXP now reports if the *subtype (asterisk before subtype) is missing in
  1695. the mailling list section of NET.INI.
  1696.  
  1697.     - Fixed a problem which resulted in mailling list messages not ending
  1698. up on the subboard if the "reply-to" address format included any additional
  1699. information han the Internet mailing address.
  1700.  
  1701.     - Fixed a problem where Internet mail would not get sent out on the
  1702. current connect if no network packets were pending.
  1703.  
  1704. Beta-28
  1705.  
  1706.     - Added the first cut at support for putting Internet Mailing Lists to a
  1707. subboard.  To do this, you need to add a section to the NET.INI file as
  1708. shown.  The email name should be the name that the emails are posted from,
  1709. the subtype can be alpha or numeric (don't forget to make the N*.NET file).
  1710.  
  1711. ;
  1712. ; Mailing List Section - used to define internet mailing lists that are to
  1713. ; be retrieved into a message base rather than EMAIL.
  1714. ;
  1715. [MAILLIST]
  1716. ; email_name   subtype    (NOTE: Asterisk (*) is required!)
  1717. my_listserv@domain.com *1000
  1718.  
  1719.     - Changed the open mode for the WATTCP.CFG configuration file, to fix the
  1720. problem some systems see with the software trying to read this file before it
  1721. has been rewritten by the TCPWAT program.
  1722.  
  1723.     - Makes sure any received packets are renamed before the NETWORK routines
  1724. are called, so all received packets are processed after the current call.
  1725.  
  1726.     - Changed the return address for messages which are received with the
  1727. format "User Name <id@site>" to the more standard "id@site (User Name)"
  1728. format.  This keeps replies from hosing the SMTP server and getting the
  1729. SMTP socket connect failed error message (at least for this case).
  1730.  
  1731.     - Fixed a problem where posts that were sent out on a newsgroup would be
  1732. reposted when the message was received back from the newsserver.
  1733.  
  1734.     - Allows Internet-based subs to be set up with @32767 as the host rather
  1735. than a subscriber.  This allows Network Validation for outgoing posts, but
  1736. prevents the subs from being networked to other BBS's.
  1737.  
  1738.     - Added support for XPOSTS=0, which turns off cross-post detection
  1739. for newsgroups.
  1740.  
  1741.     - Changed the originator on network packets to be the real account name
  1742. rather than the forwarding service name, to allow for the correct
  1743. identification of bounced packets.
  1744.  
  1745.     - Changed the NEWS log file logic that seemed to sometimes cause crashes
  1746. while retrieving newsgroups.
  1747.  
  1748. Beta-27
  1749.  
  1750.     - Increased _stklen variable in the hope it addresses problems from some
  1751. systems running out of stack space during runtime.
  1752.  
  1753.     - Supports Waterloo TCP/IP "INACTIVE" vice "SOCK_INACTIVE" in WATTCP.CFG,
  1754. which should properly respond to lost carrier, poor IP connections, etc.
  1755.  
  1756.     - The CLEANUP option in NET.INI now will execute FLINK and LINKER only,
  1757. instead of spawning NETWORK1/2 for normal BBS cleanup.  Some systems were
  1758. running out of memory during this process, and it was redundant of the BBS.
  1759.  
  1760.     - Makes two passes in MQUEUE on each run to assist those whose provider
  1761. didn't settle handshaking immediately after connect.
  1762.  
  1763.     - Reads in alpha subtypes from NEWS.RC in upper case now to prevent
  1764. problems in finding subtypes on the BBS.
  1765.  
  1766.     - Honors the <TAB> character in received newsgroup articles.  This was
  1767. causing some text to be skewed (originating from mail readers which didn't
  1768. substitute space).  Also properly terminates the received strings, so the
  1769. spurious characters at the end-of-line on newsgroups should be fixed.
  1770.  
  1771. Beta-26
  1772.  
  1773.     - Fixed bug which caused binary groups to get sent into the bit bucket
  1774. during retrieval.  Self-inflicted wound in Beta-25 with addition of alpha
  1775. subtypes.
  1776.  
  1777.     - Changed CONTACT.NET update to a new method.  CONTACT.NET is now
  1778. updated for each system for whom the program prepares a packet.  In this
  1779. manner, it now reflects what gets sent to each system uniquely.
  1780.  
  1781.     - Tweaked the routines which read/write WATTCP.CFG.  This should get rid
  1782. of any problems associated with that, including creating 0 byte files and
  1783. inability to create WATTCP.CFG at runtime.
  1784.  
  1785.     - Forced a newline at the beginning of each newsgroup article.  This
  1786. ensures that the text of a message doesn't begin on the same line as the
  1787. RE:.
  1788.  
  1789. Beta-25
  1790.  
  1791.     - I didn't get all the changes/enhancements into this beta which I'd
  1792. hoped.  There are a great deal of functional changes below, and the todo
  1793. list is a bit smaller, but there's still work before the release of
  1794. version 2.  Please report any problems you find.
  1795.  
  1796.     - First stab at "AUTHINFO" directive used by NNTP to validate username
  1797. and password.  I could find no governing RFC, so a lot of this is in the
  1798. blind until I can set up an NNTP host which supports it.  If your news host
  1799. requires a Userid and Password for login (such as GTE), add the following to
  1800. the [NEWS] section of NET.INI:
  1801.  
  1802.         NEWSNAME = <username>
  1803.         NEWSPASS = <password>
  1804.  
  1805. The initial feedback is that this function is working properly, but it may need
  1806. fine-tuning.
  1807.  
  1808.     - The trailing '.' on each Internet email message is now bypassed in email
  1809. retrieval, so it won't be displayed to users viewing it on the BBS.
  1810.  
  1811.     - Nailed down the stacked "RE: RE: RE:" found in newsgroup responses.
  1812.  
  1813.     - Added "Continued in next message..." as the final line in newsgroup posts
  1814. which exceed 32K (and become split into multiple parts) and "Continued from
  1815. previous message..." on trailing parts.
  1816.  
  1817.     - Fixed the news and mail time/byte entries in NET.LOG, so each is
  1818. maintained uniquely now.  If you use ONECALL in NET.INI, you will get two
  1819. entries (one for @32767 and the other for the system you called), each with
  1820. its own bytes and time.
  1821.  
  1822.     - Added definable maximum cross-posts before newsgroup article is skipped.
  1823. New entry to NET.INI in [NEWS] section reads:
  1824.  
  1825.         XPOSTS = nn
  1826.  
  1827. where 'nn' is a number between 1 and 99.  (Setting this to '1' will reject any
  1828. message crossposted to another newsgroup.)
  1829.  
  1830.     - Added support for the PPPURGE utility which cleans up the SENT directory
  1831. externally.  By adding "PURGE=N" to the [GENERAL] section in NET.INI, you can
  1832. bypass packet cleanup during normal network routines.  You must then add
  1833. "PPPURGE <days>" to your external event batch file to kill SENT files.
  1834.  
  1835.     - Tweaked internal stack size which seems to stabilize problems resulting
  1836. from line noise (modem), lost connections during transfers, etc.  Need more
  1837. feedback on reliability of these changes, so we don't introduce new bugs!
  1838.  
  1839.     - Overrides net validation for newsgroup posts received from the Internet,
  1840. but leaves normal validation intact for other methods.  This is useful for
  1841. anyone who gates newsgroups with netval, as it lets the Internet stuff flow
  1842. through unimpeded but still validates BBS-originating posts.
  1843.  
  1844.     - Added internal support for the FWDNAME and FWDDOM parameters from
  1845. NET.INI.  If defined in the [GENERAL] section, these will be used for the
  1846. headers of email and newsgroup posts.  This is helpful for anyone using a
  1847. forwarding service, such as bigfoot.com, as their BBS mail host.
  1848.  
  1849.     - Fixed a problem in the UUDECODE routines where the output file was
  1850. not being deleted if an error was detected during processing.  This would
  1851. cause the partial file to be processed by the remaining NETWORK routines,
  1852. which could result in crashes.
  1853.  
  1854.     - Added support for individual ADDRESS.* files.  ADDRESS.1 and up are
  1855. maintained by the GC's.  ADDRESS.0 is a local file, which can be used to
  1856. limit callouts to particular systems.  To force a normal (modem) callout to a
  1857. system, create ADDRESS.0 in the following format:
  1858.  
  1859.         @node -      (the minus sign indicates use direct call)
  1860.  
  1861.     - Added another check for returned packets.  If the packet "from:"
  1862. name matches the name and domain defined in the INI file, the packet is
  1863. assumed to be a returned packet as well.  Apparently not all ISP's use the
  1864. standard "mailer-daemon" approach for identifying returned packets.
  1865.  
  1866.     - Changed the sleep() call in NETWORK.EXE to a delay() call used when
  1867. the socket is being established.  Some systems appear to hang using the
  1868. sleep() call.
  1869.  
  1870.     - Added the KLOSV146.ZIP file to the archive.  These are the latest PPP
  1871. drivers from KLOS, patched to remove the Windows detection code.
  1872.  
  1873.     - Added support for alpha subtypes in NEWS.C (defined in NEWS.RC).
  1874.  
  1875.     - Fixed routines to clean up after a file is received via Internet mail.
  1876. Copies are no longer saved in CHECKNET and SPOOL.
  1877.  
  1878.     - Added PURGE option to [GENERAL] area, intended to be used with new
  1879. PURGE.EXE utility.  PURGE.EXE will clean out your SENT directory as part of
  1880. the external event (and not when the program runs).  Set PURGE=N in NET.INI,
  1881. then add PURGE.EXE to your external batch file.
  1882.  
  1883.     - Added support for '_' in CALLOUT.NET to indicate non-Internet system.
  1884.  
  1885.     - Added support for user-definable anti-spam originating address.  If
  1886. 'SPAMCONTROL=Y' is defined in NET.INI, you can also add:
  1887.  
  1888.         SPAMADDRESS=whoever@whatever.address
  1889.  
  1890. If SPAMADDRESS is not explicitly defined, the anti-spam address now reads:
  1891.  
  1892.         realname@dont.spam.me.real.address (Username)
  1893.  
  1894.     - Cosmetic modification to NET.LOG entry when nothing is sent.  Adds a
  1895. comma (,) to conform to the normal network software method.
  1896.  
  1897.     - Now auto-trims NEWS.LOG, keeping a maximum of 800 lines (about three
  1898. days worth) of NEWS entries.  Trim is accomplished at the last full session
  1899. entry (a complete news session) at or above the 800 line mark.
  1900.  
  1901.     - Supports random signature files for newsgroups and email.  Naming format
  1902. for the signature files is:
  1903.  
  1904.         I<subtype>.Txx
  1905.  
  1906. where 'xx' is a number between 0 and 99.  For example, to create random
  1907. tags for subtype "12345", create files "I12345.T01", "I12345.T02", etc.  If
  1908. no random tags are found, "I12345.TAG" will be used, as before.
  1909.  
  1910.     - Now properly removes BBS tagline indicators (the ^Dx prefix for each
  1911. line in a BBS or personal tagline).  Note that these will be preserved, in
  1912. addition to the I*.T* signature files.
  1913.  
  1914. Beta-24
  1915.  
  1916.     - Added hook to EXP to call after network packets/mail are received, so
  1917. any Internet mail is processed immediately after receipt.
  1918.  
  1919.     - Count transfers (sending/receiving packets) in 512 byte increments vice
  1920. 1K now... cosmetic.
  1921.  
  1922.     - Encoding and transfer of packets is now kept on a single line vice
  1923. scrolling down the screen... again, cosmetic.
  1924.  
  1925.     - Tweaked import() routine in EXP to narrow down scrambled headers
  1926. reported by some systems.
  1927.  
  1928.     - Added total files/bytes detail to display after successful packet
  1929. transfers.
  1930.  
  1931.     - Added SSMs to be sent to the #1 account upon receipt of archive
  1932. files or bad packets moved into CHECKNET.
  1933.  
  1934.     - Added file-sharing, timeslicing routines to EXP.
  1935.  
  1936.     - Added board-specific tagline file support.  File should be in the
  1937. BBS DATA\ directory and be named I<subtype>.TAG, for example on subtype
  1938. 10001 file would be I10001.TAG.
  1939.  
  1940.     - Fixed logic when an invalid newsgroup is requested and server returns
  1941. 501 response.  It now skips the group and removes the invalid group name from
  1942. NEWS.RC automatically.
  1943.  
  1944.     - INSTALL.C/EXE is in here now.  It needs some work before broader
  1945. release, though.
  1946.  
  1947. Beta-23
  1948.  
  1949.     - Messed up parsing logic in EXP when comparing against name fields with
  1950. an underscore replacing the space.  Fixed, I hope.
  1951.  
  1952.     - Various tweaks to socket code.  I hope these address the problems some
  1953. folks have been having with the modem falling asleep.
  1954.  
  1955.     - Included POP.DBG in this archive to show dialog between you and your
  1956. servers and help in the debugging process.  Copy POP.DBG to POP.EXE before
  1957. installing.
  1958.  
  1959. Beta-22
  1960.  
  1961.     - Implements controls for Waterloo TCP socket inactivity across modules,
  1962. SOCK_DELAY and SOCK_INACTIVE.  By default, these are set to 30 and 60 seconds,
  1963. respectively.  They may be defined in NET.INI, as follows:
  1964.  
  1965. ; Time from sending an IP packet to response from DNS.
  1966. SOCK_DELAY = 30
  1967. ; Max time without socket activity.
  1968. SOCK_INACTIVE = 60
  1969.  
  1970.     - The sockets are now malloc() on the far heap again (as Goose properly
  1971. had them before).  I thought this may have been the culprit in the lost
  1972. activity timer.  When I fixed the item above, it actually crashes the client
  1973. when trying to free them from the near heap!
  1974.  
  1975.     - Removes WWIV heart color codes from titles and originator names.
  1976.  
  1977.     - Implemented ONECALL=Y/N in NET.INI to retrieve messages and newsgroups
  1978. on a single call.
  1979.  
  1980.     - Added timeslicing routines in POP and NEWS.  Would appreciate feedback
  1981. from anyone using "activity meters" to see if this helped anything, although
  1982. I suspect I have to use a different buffered I/O routine aside from fprintf()
  1983. to accomplish anything.
  1984.  
  1985. Beta-21
  1986.  
  1987.     - Urgent fix for dial-out problems to modem users.  Beta-20 was showing
  1988. "must specify phone number" because of the way I was constructing the
  1989. commandline.
  1990.  
  1991.     - Various other tweaks/enhancements which will be detailed better in the
  1992. next beta.  (It's late!)
  1993.  
  1994. Beta-20
  1995.  
  1996.     - Urgent fix for a problem in news retrieval where it wasn't finding the
  1997. NEWS.RC, I hope!
  1998.  
  1999.     - NET.INI addition:
  2000.  
  2001. ; Will retrieve mail and newsgroups on single call
  2002. ONECALL = Y
  2003.  
  2004. Beta-19
  2005.  
  2006. Additions to NET.INI (for now, grab Quixotic Quest's FAQ for a full NET.INI
  2007. and meanings).  Under [NEWS] tag, add:
  2008.  
  2009. ; If defined, puts a bogus originating address on newsgroup posts.
  2010. SPAMCONTROL = Y
  2011. ; If defined, uses file as a signature file to all newsgroup posts.
  2012. SIGNATURE = D:\WWIV\GFILES\INTERNET.TAG
  2013.  
  2014. Various code changes:
  2015.  
  2016.     - POP now receives messages to an INBOUND directory under the network data
  2017. directory instead of syscfgovr.tempdir.  This will help in case of lost
  2018. connections... received packets will remain in the INBOUND area until cleaned
  2019. out by other routines (UU, etc.)
  2020.  
  2021.     - Waterloo wasn't returning from the macro for sock_err:.  Tweaked quite a
  2022. bit, including allocating the tcp sockets on the near heap (again!).  I wish
  2023. we could return(x) from sock_err: but return values vary among different
  2024. functions... consistency is something for a future release.  If this doesn't
  2025. clear things up, we can exit(x) from the macro and allow the OS to do its own
  2026. cleanup for file handles, memory and such.
  2027.  
  2028.     - parse_ini() in network.c wasn't toupper() on s[0] properly, so lower
  2029. case 'y' and 'n' parameters weren't being honored.
  2030.  
  2031.     - Places ^D0R before header lines on received email.  These lines are
  2032. suppressed on display to user on the BBS, but may be extracted to provide
  2033. routing info.  Required changes both to POP and EXP, in order to detect/skip
  2034. ^D0R when comparing strings.
  2035.  
  2036.     - Uses underscore between multiple parts of user name on exported mail
  2037. (e.g. The_Great_White_Whale).  For backward compatibility, it matches both
  2038. space and underscore when comparing against user list.
  2039.  
  2040.     - Detects bounced mail by comparing originating address (from: line)
  2041. against known mail-bouncers, including "Mailer-Daemon", "Administrator", etc.
  2042. Bounced packets are named as BAD*.UUE and will remain in INBOUND for review,
  2043. as they're skipped during UU decode routines.  To recycle a packet, rename it
  2044. from BAD*.UUE to PKT*.UUE.
  2045.  
  2046.     - Displays 20 characters of packet originator while receiving (purely
  2047. cosmetic).  Tracked that for the above item, so figured we'd display it.
  2048.  
  2049.     - "SPAMCONTROL=Y" in NET.INI [NEWS] tag uses a bogus originating address
  2050. ("nowhere@no.net") to prevent email scoopers from finding a good address.
  2051. Also when defined, the "Reply-To:" field is omitted but a correct return
  2052. address is prepended as text to the body of message.
  2053.  
  2054.     - Supports a "signature" file defined in NET.INI [NEWS] tag, as described
  2055. above.  Format is: "SIGNATURE = [path/filename]".  Contents are read into
  2056. outbound mail during export, so length is unlimited.  If it finds ANSI, it'll
  2057. choke!  If a SIGNAURE is not defined or the file doesn't exist, it uses the
  2058. previous "Origin: * blah" tagline.
  2059.  
  2060.     - If mh.toUserName is "ALL" (ie. a first post on topic), skips the
  2061. "Responding to: ALL" in body of message... seemed redundant.
  2062.  
  2063.     - NEWS now skips the following messages during retrieval:
  2064.  
  2065.       - messages cross-posted to more than 10 newsgroups on the assumption
  2066.         that they're spammed across multiple groups.  The figure 10 is an
  2067.         arbitrary but hard-coded for now into NEWS.
  2068.  
  2069.       - any message cross-posted to another group defined earlier in NEWS.RC,
  2070.         e.g. if you define comp.games and comp.games.adventure in NEWS.RC, it
  2071.         will skip messages on comp.games.adventure which were cross-posted to
  2072.         comp.games.
  2073.  
  2074.       - any message which originated from your system as indicated by the
  2075.         "Organization:" field appended during export.
  2076.  
  2077.     - NEWS now allows you to hit <space> to skip to the next group defined in
  2078. NEWS.RC.  It doesn't "catch-up" lastread pointers for the skipped group, but
  2079. simply writes the current message pointer to NEWS.RC for your next run.  If
  2080. there's reason for a "catch-up" key, let's discuss it.
  2081.  
  2082. There are probably others, but you'll find them as you go.
  2083.  
  2084. Frank
  2085.  
  2086.