home *** CD-ROM | disk | FTP | other *** search
/ ftp.wwiv.com / ftp.wwiv.com.zip / ftp.wwiv.com / pub / PPPBCKP / PPP15B22.ZIP / CHANGES.DOC next >
Text File  |  1997-03-30  |  5KB  |  128 lines

  1. Beta-22
  2.  
  3.     - Implements controls for Waterloo TCP socket inactivity across modules,
  4. SOCK_DELAY and SOCK_INACTIVE.  By default, these are set to 30 and 60 seconds,
  5. respectively.  They may be defined in NET.INI, as follows:
  6.  
  7. ; Time from sending an IP packet to response from DNS.
  8. SOCK_DELAY = 30
  9. ; Max time without socket activity.
  10. SOCK_INACTIVE = 60
  11.  
  12.     - The sockets are now malloc() on the far heap again (as Goose properly
  13. had them before).  I thought this may have been the culprit in the lost
  14. activity timer.  When I fixed the item above, it actually crashes the client
  15. when trying to free them from the near heap!
  16.  
  17.     - Removes WWIV heart color codes from titles and originator names.
  18.  
  19.     - Implemented ONECALL=Y/N in NET.INI to retrieve messages and newsgroups
  20. on a single call.
  21.  
  22.     - Added timeslicing routines in POP and NEWS.  Would appreciate feedback
  23. from anyone using "activity meters" to see if this helped anything, although
  24. I suspect I have to use a different buffered I/O routine aside from fprintf()
  25. to accomplish anything.
  26.  
  27. Beta-21
  28.  
  29.     - Urgent fix for dial-out problems to modem users.  Beta-20 was showing
  30. "must specify phone number" because of the way I was constructing the
  31. commandline.
  32.  
  33.     - Various other tweaks/enhancements which will be detailed better in the
  34. next beta.  (It's late!)
  35.  
  36. Beta-20
  37.  
  38.     - Urgent fix for a problem in news retrieval where it wasn't finding the
  39. NEWS.RC, I hope!
  40.  
  41.     - NET.INI addition:
  42.  
  43. ; Will retrieve mail and newsgroups on single call
  44. ONECALL = Y
  45.  
  46. Beta-19
  47.  
  48. Additions to NET.INI (for now, grab Quixotic Quest's FAQ for a full NET.INI
  49. and meanings).  Under [NEWS] tag, add:
  50.  
  51. ; If defined, puts a bogus originating address on newsgroup posts.
  52. SPAMCONTROL = Y
  53. ; If defined, uses file as a signature file to all newsgroup posts.
  54. SIGNATURE = D:\WWIV\GFILES\INTERNET.TAG
  55.  
  56. Various code changes:
  57.  
  58.     - POP now receives messages to an INBOUND directory under the network data
  59. directory instead of syscfgovr.tempdir.  This will help in case of lost
  60. connections... received packets will remain in the INBOUND area until cleaned
  61. out by other routines (UU, etc.)
  62.  
  63.     - Waterloo wasn't returning from the macro for sock_err:.  Tweaked quite a
  64. bit, including allocating the tcp sockets on the near heap (again!).  I wish
  65. we could return(x) from sock_err: but return values vary among different
  66. functions... consistency is something for a future release.  If this doesn't
  67. clear things up, we can exit(x) from the macro and allow the OS to do its own
  68. cleanup for file handles, memory and such.
  69.  
  70.     - parse_ini() in network.c wasn't toupper() on s[0] properly, so lower
  71. case 'y' and 'n' parameters weren't being honored.
  72.  
  73.     - Places ^D0R before header lines on received email.  These lines are
  74. suppressed on display to user on the BBS, but may be extracted to provide
  75. routing info.  Required changes both to POP and EXP, in order to detect/skip
  76. ^D0R when comparing strings.
  77.  
  78.     - Uses underscore between multiple parts of user name on exported mail
  79. (e.g. The_Great_White_Whale).  For backward compatibility, it matches both
  80. space and underscore when comparing against user list.
  81.  
  82.     - Detects bounced mail by comparing originating address (from: line)
  83. against known mail-bouncers, including "Mailer-Daemon", "Administrator", etc.
  84. Bounced packets are named as BAD*.UUE and will remain in INBOUND for review,
  85. as they're skipped during UU decode routines.  To recycle a packet, rename it
  86. from BAD*.UUE to PKT*.UUE.
  87.  
  88.     - Displays 20 characters of packet originator while receiving (purely
  89. cosmetic).  Tracked that for the above item, so figured we'd display it.
  90.  
  91.     - "SPAMCONTROL=Y" in NET.INI [NEWS] tag uses a bogus originating address
  92. ("nowhere@no.net") to prevent email scoopers from finding a good address.
  93. Also when defined, the "Reply-To:" field is omitted but a correct return
  94. address is prepended as text to the body of message.
  95.  
  96.     - Supports a "signature" file defined in NET.INI [NEWS] tag, as described
  97. above.  Format is: "SIGNATURE = [path/filename]".  Contents are read into
  98. outbound mail during export, so length is unlimited.  If it finds ANSI, it'll
  99. choke!  If a SIGNAURE is not defined or the file doesn't exist, it uses the
  100. previous "Origin: * blah" tagline.
  101.  
  102.     - If mh.toUserName is "ALL" (ie. a first post on topic), skips the
  103. "Responding to: ALL" in body of message... seemed redundant.
  104.  
  105.     - NEWS now skips the following messages during retrieval:
  106.  
  107.       - messages cross-posted to more than 10 newsgroups on the assumption
  108.         that they're spammed across multiple groups.  The figure 10 is an
  109.         arbitrary but hard-coded for now into NEWS.
  110.  
  111.       - any message cross-posted to another group defined earlier in NEWS.RC,
  112.         e.g. if you define comp.games and comp.games.adventure in NEWS.RC, it
  113.         will skip messages on comp.games.adventure which were cross-posted to
  114.         comp.games.
  115.  
  116.       - any message which originated from your system as indicated by the
  117.         "Organization:" field appended during export.
  118.  
  119.     - NEWS now allows you to hit <space> to skip to the next group defined in
  120. NEWS.RC.  It doesn't "catch-up" lastread pointers for the skipped group, but
  121. simply writes the current message pointer to NEWS.RC for your next run.  If
  122. there's reason for a "catch-up" key, let's discuss it.
  123.  
  124. There are probably others, but you'll find them as you go.
  125.  
  126. Frank
  127.  
  128.