home *** CD-ROM | disk | FTP | other *** search
/ ftp.wwiv.com / ftp.wwiv.com.zip / ftp.wwiv.com / pub / PPPBCKP / PPP15B26.ZIP / CHANGES.DOC next >
Text File  |  1997-05-04  |  14KB  |  316 lines

  1. Beta-26
  2.  
  3.     - Fixed bug which caused binary groups to get sent into the bit bucket
  4. during retrieval.  Self-inflicted wound in Beta-25 with addition of alpha
  5. subtypes.
  6.  
  7.     - Changed CONTACT.NET update to a new method.  CONTACT.NET is now
  8. updated for each system for whom the program prepares a packet.  In this
  9. manner, it now reflects what gets sent to each system uniquely.
  10.  
  11.     - Tweaked the routines which read/write WATTCP.CFG.  This should get rid
  12. of any problems associated with that, including creating 0 byte files and
  13. inability to create WATTCP.CFG at runtime.
  14.  
  15.     - Forced a newline at the beginning of each newsgroup article.  This
  16. ensures that the text of a message doesn't begin on the same line as the
  17. RE:.
  18.  
  19. Beta-25
  20.  
  21.     - I didn't get all the changes/enhancements into this beta which I'd
  22. hoped.  There are a great deal of functional changes below, and the todo
  23. list is a bit smaller, but there's still work before the release of
  24. version 2.  Please report any problems you find.
  25.  
  26.     - First stab at "AUTHINFO" directive used by NNTP to validate username
  27. and password.  I could find no governing RFC, so a lot of this is in the
  28. blind until I can set up an NNTP host which supports it.  If your news host
  29. requires a Userid and Password for login (such as GTE), add the following to
  30. the [NEWS] section of NET.INI:
  31.  
  32.         NEWSNAME = <username>
  33.         NEWSPASS = <password>
  34.  
  35. The initial feedback is that this function is working properly, but it may need
  36. fine-tuning.
  37.  
  38.     - The trailing '.' on each Internet email message is now bypassed in email
  39. retrieval, so it won't be displayed to users viewing it on the BBS.
  40.  
  41.     - Nailed down the stacked "RE: RE: RE:" found in newsgroup responses.
  42.  
  43.     - Added "Continued in next message..." as the final line in newsgroup posts
  44. which exceed 32K (and become split into multiple parts) and "Continued from
  45. previous message..." on trailing parts.
  46.  
  47.     - Fixed the news and mail time/byte entries in NET.LOG, so each is
  48. maintained uniquely now.  If you use ONECALL in NET.INI, you will get two
  49. entries (one for @32767 and the other for the system you called), each with
  50. its own bytes and time.
  51.  
  52.     - Added definable maximum cross-posts before newsgroup article is skipped.
  53. New entry to NET.INI in [NEWS] section reads:
  54.  
  55.         XPOSTS = nn
  56.  
  57. where 'nn' is a number between 1 and 99.  (Setting this to '1' will reject any
  58. message crossposted to another newsgroup.)
  59.  
  60.     - Added support for the PPPURGE utility which cleans up the SENT directory
  61. externally.  By adding "PURGE=N" to the [GENERAL] section in NET.INI, you can
  62. bypass packet cleanup during normal network routines.  You must then add
  63. "PPPURGE <days>" to your external event batch file to kill SENT files.
  64.  
  65.     - Tweaked internal stack size which seems to stabilize problems resulting
  66. from line noise (modem), lost connections during transfers, etc.  Need more
  67. feedback on reliability of these changes, so we don't introduce new bugs!
  68.  
  69.     - Overrides net validation for newsgroup posts received from the Internet,
  70. but leaves normal validation intact for other methods.  This is useful for
  71. anyone who gates newsgroups with netval, as it lets the Internet stuff flow
  72. through unimpeded but still validates BBS-originating posts.
  73.  
  74.     - Added internal support for the FWDNAME and FWDDOM parameters from
  75. NET.INI.  If defined in the [GENERAL] section, these will be used for the
  76. headers of email and newsgroup posts.  This is helpful for anyone using a
  77. forwarding service, such as bigfoot.com, as their BBS mail host.
  78.  
  79.     - Fixed a problem in the UUDECODE routines where the output file was
  80. not being deleted if an error was detected during processing.  This would
  81. cause the partial file to be processed by the remaining NETWORK routines,
  82. which could result in crashes.
  83.  
  84.     - Added support for individual ADDRESS.* files.  ADDRESS.1 and up are
  85. maintained by the GC's.  ADDRESS.0 is a local file, which can be used to
  86. limit callouts to particular systems.  To force a normal (modem) callout to a
  87. system, create ADDRESS.0 in the following format:
  88.  
  89.         @node -      (the minus sign indicates use direct call)
  90.  
  91.     - Added another check for returned packets.  If the packet "from:"
  92. name matches the name and domain defined in the INI file, the packet is
  93. assumed to be a returned packet as well.  Apparently not all ISP's use the
  94. standard "mailer-daemon" approach for identifying returned packets.
  95.  
  96.     - Changed the sleep() call in NETWORK.EXE to a delay() call used when
  97. the socket is being established.  Some systems appear to hang using the
  98. sleep() call.
  99.  
  100.     - Added the KLOSV146.ZIP file to the archive.  These are the latest PPP
  101. drivers from KLOS, patched to remove the Windows detection code.
  102.  
  103.     - Added support for alpha subtypes in NEWS.C (defined in NEWS.RC).
  104.  
  105.     - Fixed routines to clean up after a file is received via Internet mail.
  106. Copies are no longer saved in CHECKNET and SPOOL.
  107.  
  108.     - Added PURGE option to [GENERAL] area, intended to be used with new
  109. PURGE.EXE utility.  PURGE.EXE will clean out your SENT directory as part of
  110. the external event (and not when the program runs).  Set PURGE=N in NET.INI,
  111. then add PURGE.EXE to your external batch file.
  112.  
  113.     - Added support for '_' in CALLOUT.NET to indicate non-Internet system.
  114.  
  115.     - Added support for user-definable anti-spam originating address.  If
  116. 'SPAMCONTROL=Y' is defined in NET.INI, you can also add:
  117.  
  118.         SPAMADDRESS=whoever@whatever.address
  119.  
  120. If SPAMADDRESS is not explicitly defined, the anti-spam address now reads:
  121.  
  122.         realname@dont.spam.me.real.address (Username)
  123.  
  124.     - Cosmetic modification to NET.LOG entry when nothing is sent.  Adds a
  125. comma (,) to conform to the normal network software method.
  126.  
  127.     - Now auto-trims NEWS.LOG, keeping a maximum of 800 lines (about three
  128. days worth) of NEWS entries.  Trim is accomplished at the last full session
  129. entry (a complete news session) at or above the 800 line mark.
  130.  
  131.     - Supports random signature files for newsgroups and email.  Naming format
  132. for the signature files is:
  133.  
  134.         I<subtype>.Txx
  135.  
  136. where 'xx' is a number between 0 and 99.  For example, to create random
  137. tags for subtype "12345", create files "I12345.T01", "I12345.T02", etc.  If
  138. no random tags are found, "I12345.TAG" will be used, as before.
  139.  
  140.     - Now properly removes BBS tagline indicators (the ^Dx prefix for each
  141. line in a BBS or personal tagline).  Note that these will be preserved, in
  142. addition to the I*.T* signature files.
  143.  
  144. Beta-24
  145.  
  146.     - Added hook to EXP to call after network packets/mail are received, so
  147. any Internet mail is processed immediately after receipt.
  148.  
  149.     - Count transfers (sending/receiving packets) in 512 byte increments vice
  150. 1K now... cosmetic.
  151.  
  152.     - Encoding and transfer of packets is now kept on a single line vice
  153. scrolling down the screen... again, cosmetic.
  154.  
  155.     - Tweaked import() routine in EXP to narrow down scrambled headers
  156. reported by some systems.
  157.  
  158.     - Added total files/bytes detail to display after successful packet
  159. transfers.
  160.  
  161.     - Added SSMs to be sent to the #1 account upon receipt of archive
  162. files or bad packets moved into CHECKNET.
  163.  
  164.     - Added file-sharing, timeslicing routines to EXP.
  165.  
  166.     - Added board-specific tagline file support.  File should be in the
  167. BBS DATA\ directory and be named I<subtype>.TAG, for example on subtype
  168. 10001 file would be I10001.TAG.
  169.  
  170.     - Fixed logic when an invalid newsgroup is requested and server returns
  171. 501 response.  It now skips the group and removes the invalid group name from
  172. NEWS.RC automatically.
  173.  
  174.     - INSTALL.C/EXE is in here now.  It needs some work before broader
  175. release, though.
  176.  
  177. Beta-23
  178.  
  179.     - Messed up parsing logic in EXP when comparing against name fields with
  180. an underscore replacing the space.  Fixed, I hope.
  181.  
  182.     - Various tweaks to socket code.  I hope these address the problems some
  183. folks have been having with the modem falling asleep.
  184.  
  185.     - Included POP.DBG in this archive to show dialog between you and your
  186. servers and help in the debugging process.  Copy POP.DBG to POP.EXE before
  187. installing.
  188.  
  189. Beta-22
  190.  
  191.     - Implements controls for Waterloo TCP socket inactivity across modules,
  192. SOCK_DELAY and SOCK_INACTIVE.  By default, these are set to 30 and 60 seconds,
  193. respectively.  They may be defined in NET.INI, as follows:
  194.  
  195. ; Time from sending an IP packet to response from DNS.
  196. SOCK_DELAY = 30
  197. ; Max time without socket activity.
  198. SOCK_INACTIVE = 60
  199.  
  200.     - The sockets are now malloc() on the far heap again (as Goose properly
  201. had them before).  I thought this may have been the culprit in the lost
  202. activity timer.  When I fixed the item above, it actually crashes the client
  203. when trying to free them from the near heap!
  204.  
  205.     - Removes WWIV heart color codes from titles and originator names.
  206.  
  207.     - Implemented ONECALL=Y/N in NET.INI to retrieve messages and newsgroups
  208. on a single call.
  209.  
  210.     - Added timeslicing routines in POP and NEWS.  Would appreciate feedback
  211. from anyone using "activity meters" to see if this helped anything, although
  212. I suspect I have to use a different buffered I/O routine aside from fprintf()
  213. to accomplish anything.
  214.  
  215. Beta-21
  216.  
  217.     - Urgent fix for dial-out problems to modem users.  Beta-20 was showing
  218. "must specify phone number" because of the way I was constructing the
  219. commandline.
  220.  
  221.     - Various other tweaks/enhancements which will be detailed better in the
  222. next beta.  (It's late!)
  223.  
  224. Beta-20
  225.  
  226.     - Urgent fix for a problem in news retrieval where it wasn't finding the
  227. NEWS.RC, I hope!
  228.  
  229.     - NET.INI addition:
  230.  
  231. ; Will retrieve mail and newsgroups on single call
  232. ONECALL = Y
  233.  
  234. Beta-19
  235.  
  236. Additions to NET.INI (for now, grab Quixotic Quest's FAQ for a full NET.INI
  237. and meanings).  Under [NEWS] tag, add:
  238.  
  239. ; If defined, puts a bogus originating address on newsgroup posts.
  240. SPAMCONTROL = Y
  241. ; If defined, uses file as a signature file to all newsgroup posts.
  242. SIGNATURE = D:\WWIV\GFILES\INTERNET.TAG
  243.  
  244. Various code changes:
  245.  
  246.     - POP now receives messages to an INBOUND directory under the network data
  247. directory instead of syscfgovr.tempdir.  This will help in case of lost
  248. connections... received packets will remain in the INBOUND area until cleaned
  249. out by other routines (UU, etc.)
  250.  
  251.     - Waterloo wasn't returning from the macro for sock_err:.  Tweaked quite a
  252. bit, including allocating the tcp sockets on the near heap (again!).  I wish
  253. we could return(x) from sock_err: but return values vary among different
  254. functions... consistency is something for a future release.  If this doesn't
  255. clear things up, we can exit(x) from the macro and allow the OS to do its own
  256. cleanup for file handles, memory and such.
  257.  
  258.     - parse_ini() in network.c wasn't toupper() on s[0] properly, so lower
  259. case 'y' and 'n' parameters weren't being honored.
  260.  
  261.     - Places ^D0R before header lines on received email.  These lines are
  262. suppressed on display to user on the BBS, but may be extracted to provide
  263. routing info.  Required changes both to POP and EXP, in order to detect/skip
  264. ^D0R when comparing strings.
  265.  
  266.     - Uses underscore between multiple parts of user name on exported mail
  267. (e.g. The_Great_White_Whale).  For backward compatibility, it matches both
  268. space and underscore when comparing against user list.
  269.  
  270.     - Detects bounced mail by comparing originating address (from: line)
  271. against known mail-bouncers, including "Mailer-Daemon", "Administrator", etc.
  272. Bounced packets are named as BAD*.UUE and will remain in INBOUND for review,
  273. as they're skipped during UU decode routines.  To recycle a packet, rename it
  274. from BAD*.UUE to PKT*.UUE.
  275.  
  276.     - Displays 20 characters of packet originator while receiving (purely
  277. cosmetic).  Tracked that for the above item, so figured we'd display it.
  278.  
  279.     - "SPAMCONTROL=Y" in NET.INI [NEWS] tag uses a bogus originating address
  280. ("nowhere@no.net") to prevent email scoopers from finding a good address.
  281. Also when defined, the "Reply-To:" field is omitted but a correct return
  282. address is prepended as text to the body of message.
  283.  
  284.     - Supports a "signature" file defined in NET.INI [NEWS] tag, as described
  285. above.  Format is: "SIGNATURE = [path/filename]".  Contents are read into
  286. outbound mail during export, so length is unlimited.  If it finds ANSI, it'll
  287. choke!  If a SIGNAURE is not defined or the file doesn't exist, it uses the
  288. previous "Origin: * blah" tagline.
  289.  
  290.     - If mh.toUserName is "ALL" (ie. a first post on topic), skips the
  291. "Responding to: ALL" in body of message... seemed redundant.
  292.  
  293.     - NEWS now skips the following messages during retrieval:
  294.  
  295.       - messages cross-posted to more than 10 newsgroups on the assumption
  296.         that they're spammed across multiple groups.  The figure 10 is an
  297.         arbitrary but hard-coded for now into NEWS.
  298.  
  299.       - any message cross-posted to another group defined earlier in NEWS.RC,
  300.         e.g. if you define comp.games and comp.games.adventure in NEWS.RC, it
  301.         will skip messages on comp.games.adventure which were cross-posted to
  302.         comp.games.
  303.  
  304.       - any message which originated from your system as indicated by the
  305.         "Organization:" field appended during export.
  306.  
  307.     - NEWS now allows you to hit <space> to skip to the next group defined in
  308. NEWS.RC.  It doesn't "catch-up" lastread pointers for the skipped group, but
  309. simply writes the current message pointer to NEWS.RC for your next run.  If
  310. there's reason for a "catch-up" key, let's discuss it.
  311.  
  312. There are probably others, but you'll find them as you go.
  313.  
  314. Frank
  315.  
  316.