home *** CD-ROM | disk | FTP | other *** search
/ ftp.wwiv.com / ftp.wwiv.com.zip / ftp.wwiv.com / pub / PPPBCKP / SRC / SRC15B55.ZIP / CHANGES.DOC next >
Text File  |  1997-10-24  |  43KB  |  970 lines

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