home *** CD-ROM | disk | FTP | other *** search
/ ftp.wwiv.com / ftp.wwiv.com.zip / ftp.wwiv.com / pub / PPPBCKP / SRC / SRC15B51.ZIP / CHANGES.DOC next >
Text File  |  1997-10-18  |  39KB  |  877 lines

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