home *** CD-ROM | disk | FTP | other *** search
/ ftp.wwiv.com / ftp.wwiv.com.zip / ftp.wwiv.com / pub / PPPBCKP / SRC15B44.ZIP / CHANGES.DOC next >
Text File  |  1997-10-02  |  28KB  |  646 lines

  1. Beta-44
  2.  
  3.     - Returned to standard stack size (4K) in all modules.  These tweaks
  4. appear to have addressed only tertiary problems.  Reduced runtime memory
  5. requirements by about 20K.
  6.  
  7.     - Went back to basics on POP, starting with the core code of B-32 and
  8. progressing through the more recent changes.  Tweaked fallthroughs on socket
  9. errors.  Found an area where an attempt to close an open file would causing
  10. sharing violations.
  11.  
  12.     - Fixed a problem which incorrectly identified a quoted response to mail
  13. as BAD*.UUE (because it found the original "From:" line from the originating
  14. system).  It will now only perform a "bad" match that if the "From:" line is
  15. part of the new header.
  16.  
  17.     - Fixed a situation which has existed since the project began!  ALLMAIL
  18. wasn't honoring "ALLMAIL=N" if it detected the message as any type of UUE.
  19. This caused graphics files, archives and other UUEs to be retrieved, despite
  20. the ALLMAIL setting.  Thanks to Robert Kish for pointing this out (and anyone
  21. who may have in the past, although I didn't catch it!)
  22.  
  23.     - Corrected a problem which generated hard locks on NEWS retrieval (again
  24. in the sock_err handling! :(
  25.  
  26.     - Returned to linear display of sent/received messages, so now all
  27. transfers appear on a single line (for viewing at runtime).
  28.  
  29.     - Removed *lots* of unnecessary static data from NEWS (which is what
  30. allowed the return to default stack size!)  Now carrying the same mail socket
  31. allocation globally through routines, as opposed to one static allocation.
  32.  
  33.     - Killed the cstat() routine.  This returned the article-ID for any given
  34. article, but we weren't using that anywhere.  (I also suspect this is what
  35. caused the NEWS retrieval to randomly skip to the last message in the group!)
  36.  
  37. Beta-43
  38.  
  39.     - Squashed a nasty bug in POP which would cause SMTP to hang.  While I
  40. was in there, I tweaked the "sock_err:" label (the fallthrough for Waterloo
  41. problems), and it now appears to be more responsive now to errors.
  42.  
  43.     - Squashed a bug in the export() routine which caused a hard lock when
  44. certain types of messages were exported.  While I was in there, I tweaked
  45. handling of pipe codes and soft returns.
  46.  
  47. Beta-42
  48.  
  49.     - Changed the Path: field for newsgroups to use the FWDNAME and FWDDOM
  50. parameters if specified in NET.INI.
  51.  
  52.     - Removed closes to non-open files in the UU routines.
  53.  
  54.     - Added support for the "X-Sender:" parameter when EXP parses mailing
  55. list headers.
  56.  
  57.     - Re-fixed the problem where outgoing messages would be considered
  58. duplicates because the Message-ID field was the same as another message.
  59.  
  60.     - Made a change to the header detection logic to fix a problem where
  61. message text would sometimes be marked as hidden lines.
  62.  
  63.     - Removed the EXP limit of 14 mails processed at a time.  The problem of
  64. "too much mail" or "duplicate posts" was fixed in the previous beta.
  65.  
  66.     - Removed the code that tried to unload PPP.EXE if it returned an error
  67. code of "not loaded".
  68.  
  69.     - Fixed a longstanding problem with NEWS routine chead() which caused a
  70. premature "End of new messages" while scanning newsgroups.
  71.  
  72. Beta-41
  73.  
  74.     - Fixed problem in UU which caused received archive files (ARC-*.UUE) to
  75. remain in INBOUND.  (EXP decoded them repeatedly as SOME.MSG, SOME.001, etc.)
  76.  
  77.     - Rewrote max posts on sub lookup routine to solve problem with incorrect
  78. article number returned during news retrieval (which often caused only last
  79. message to be retrieved).
  80.  
  81.     - Allocated memory for POP and SMTP sockets on far heap (to match the
  82. method used in NEWS, which has been working successfully!)  Hopefully, this
  83. fixed the problem which caused POP to find no mail on host (when, in fact,
  84. there was mail waiting).
  85.  
  86.     - Added a second call to resolve SMTP host via DNS (mainly to compensate
  87. for slow nameservers).  This should reduce the occurrence of the "SMTP Socket
  88. failure" errors during outbound mail delivery.
  89.  
  90.     - Updated contact information in header to my new ix.netcom.com address.
  91. (This actually happened in B-39 or B-40, but wasn't noted in CHANGES.DOC!)
  92.  
  93. Beta-40
  94.  
  95.     - Returned to some known good values for stack (B-32 and B-34).
  96.  
  97.     - Cleaned up excess variables in various modules.
  98.  
  99.     - Fixed [Spacebar] group skip during news retrieval so it responds when
  100. someplace else than message retrieval.
  101.  
  102.     - Fixed a couple bad read-write opens for CONFIG.DAT -- shouldn't have
  103. been doing that.
  104.  
  105. Beta-39
  106.  
  107.     - Added a "Path" field to outbound articles.  This will now be used to
  108. track whether articles originated locally (and are skipped during retrieval),
  109. instead of the "Organization" field in previous versions.  This was required
  110. because some news servers assign their own Organization field.
  111.  
  112.     - Strips pipecodes and heart colors from newsgroup articles during
  113. export process (including titles, which got lost a few betas ago!)
  114.  
  115.     - Compiled with stack checking, hopefully to narrow down the problems
  116. associated with low stack.  If you receive any warnings, please advise me.
  117.  
  118.     - Fixed a problem which caused "441 Duplicate Article" responses for
  119. newsgroup posts (resulting from exported articles during the same second).
  120.  
  121. Beta-38
  122.  
  123.     - Played with the _stklen a bit more to tweak varying requirements among
  124. several systems reporting problems with B-36/37.
  125.  
  126. Beta-37
  127.  
  128.     - Distributed wrong NETWORK.EXE with Beta-36!
  129.  
  130. Beta-36
  131.  
  132.     - Changed stack length declarations in the main and support modules to see
  133. if that fixes symptoms of no stack, i.e. lockups after NEWS runs, etc.
  134.  
  135.     - Repositioned the file pointer close routines in UU so all files were
  136. closed prior to copying/moving/deleting (to fix reported sharing violations).
  137.  
  138. Beta-35
  139.  
  140.     - Supports outbound mailing lists (i.e. hosted lists).  Create a file
  141. M<subtype>.NET for the list of recipients (subscribers) to your list.
  142.  
  143.     - Handles CONTACT.NET update without allocating memory on the heap, which
  144. caused insufficient memory errors in Beta-33/34 on several systems.
  145.  
  146.     - Now is case-insensitve while matching the mailing list owner fields
  147. (in NET.INI) for mailing lists you belong to.
  148.  
  149.     - Uses the actual date from articles and mail, if one is found.
  150.  
  151.     - Replaces soft returns (from QWK packets) with normal returns.
  152.  
  153. Beta-34
  154.  
  155.     - Hopefully, a fix for memory allocation routines on CONTACT.NET update
  156. by allocating/deallocating memory each time CONTACT.PPP (the pointer files to
  157. your Internet connections) is created.
  158.  
  159.     - Changed the method for outbound packet naming, eliminating the one
  160. second delay between encoding each packet.  That should run appreciably
  161. faster now.
  162.  
  163.     - Stuck in support for the "Sender:" parameter when EXP parses mailing
  164. list headers (requested by Eileen Stone).  This is Goose's realm, but it
  165. seemed like an easy change! :)
  166.  
  167. Beta-33
  168.  
  169.     - Removed the @###.FILEnet from the default tagline, as some sysops are
  170. using the PPP Project Software without actually being a member of FILEnet.
  171.  
  172.     - Fixed a problem where messages that had a line starting with the word
  173. "begin" would be incorrectly identified as network packets.
  174.  
  175.     - Changed the connect time code so that all Internet based systems will
  176. have their last time of connect reset after a successful SMTP/POP session.
  177. The time of connect of any direct dial systems is not affected.
  178.  
  179.     - Fixed the code so that it will properly use the ADDRESS.# files
  180. rather than ADDRESS.NET.  Also fixed the problem with the - sign in ADDRESS.0
  181. to indicate a direct dial connection not working.
  182.  
  183.     - Put the return path back into the logic for the name matching routines
  184. for the maillist to sub logic.  Some listservers use one and some use the
  185. other.
  186.  
  187.     - Changed the success and failure levels for the PPP modules so that
  188. Ctrl-C will return a fail result, rather than a pass.  This keeps outgoing
  189. packets from being improperly deleted.
  190.  
  191.     - <Space> now aborts transfer of the current message during an SMTP
  192. session.  This allows you to bypass a message on the current run, while
  193. saving it for transfer later.
  194.  
  195.     - Changed some of the text display, during transfers and (lesser seen)
  196. error result messages.
  197.  
  198. Beta-32
  199.  
  200.     - Email messages containing the encoded WINMAIL.DAT or WINMAIL.MSG files
  201. will not be erroneously identified as UUE files.  The WINMAIL encoded lines
  202. are also marked with the ^D0R header to prevent display on the BBS.
  203.  
  204.     - Changed the name matching routines for mailling lists (again) to fix a
  205. problem introduced in beta 30 which made the name match routines always fail.
  206.  
  207.     - Made some changes to the logic for creating the WATTCP.CFG file to
  208. try to prevent the "Can't create WATTCP.CFG" problem.
  209.  
  210.     - Removed POP.DBG.  Now uses "MOREINFO" flag in NET.INI to provide debug
  211. (extended dialog) information with POP/SMTP hosts.
  212.  
  213. Beta-31
  214.  
  215.     - Recompiled under BC4 to address the "Can't create WATTCP.CFG" problem.
  216.  
  217. Beta-30
  218.  
  219.     - Fixed a problem where the memory for mailling lists was improperly
  220. allocated or freed.
  221.  
  222.     - The code now ignores the Return-Path line in messages.  This would
  223. sometimes cause the return address to get assigned incorrectly.
  224.  
  225.     - Fixed a problem where the message Name is *after* host would be
  226. displayed when the < > surrounded the id but no user name was included.
  227.  
  228.     - Fixed a problem where Beta-29 which left the INSTANCE.DAT file open.
  229.  
  230.     - The "N*.NET is missing" warning message was removed, since it won't
  231. exist if @32767 is set up as the host rather than a subscriber.
  232.  
  233.     - Fixed a problem in the display of the sub type when message were
  234. received to a maillist sub.
  235.  
  236. Beta-29
  237.  
  238.     - Changed the multitasker detection logic so that Windows 95 and OS/2
  239. will be reported correctly, even if NETBIOS support is also enabled.
  240.  
  241.     - Fixed a problem where the newsgroup pointer could be incorrectly set if
  242. <Esc> or <Space> was pressed to abort newsgroup retrieval.
  243.  
  244.     - Newsgroups are no longer deleted from NEWS.RC when an unrecoverable
  245. error occurs.  Instead, an SSM is sent to the sysop account, so that the
  246. appropriate action can be done.
  247.  
  248.     - Fixed a problem in NEWS where the crossposted or returned messages
  249. were not being deleted for the first group listed in NEWS.RC.
  250.  
  251.     - Fixed a problem that would be created by messages with long subject
  252. lines or recipient name.
  253.  
  254.     - EXP now reports if the *subtype (asterisk before subtype) is missing in
  255. the mailling list section of NET.INI.
  256.  
  257.     - Fixed a problem which resulted in mailling list messages not ending
  258. up on the subboard if the "reply-to" address format included any additional
  259. information han the Internet mailing address.
  260.  
  261.     - Fixed a problem where Internet mail would not get sent out on the
  262. current connect if no network packets were pending.
  263.  
  264. Beta-28
  265.  
  266.     - Added the first cut at support for putting Internet Mailing Lists to a
  267. subboard.  To do this, you need to add a section to the NET.INI file as
  268. shown.  The email name should be the name that the emails are posted from,
  269. the subtype can be alpha or numeric (don't forget to make the N*.NET file).
  270.  
  271. ;
  272. ; Mailing List Section - used to define internet mailing lists that are to
  273. ; be retrieved into a message base rather than EMAIL.
  274. ;
  275. [MAILLIST]
  276. ; email_name   subtype    (NOTE: Asterisk (*) is required!)
  277. my_listserv@domain.com *1000
  278.  
  279.     - Changed the open mode for the WATTCP.CFG configuration file, to fix the
  280. problem some systems see with the software trying to read this file before it
  281. has been rewritten by the TCPWAT program.
  282.  
  283.     - Makes sure any received packets are renamed before the NETWORK routines
  284. are called, so all received packets are processed after the current call.
  285.  
  286.     - Changed the return address for messages which are received with the
  287. format "User Name <id@site>" to the more standard "id@site (User Name)"
  288. format.  This keeps replies from hosing the SMTP server and getting the
  289. SMTP socket connect failed error message (at least for this case).
  290.  
  291.     - Fixed a problem where posts that were sent out on a newsgroup would be
  292. reposted when the message was received back from the newsserver.
  293.  
  294.     - Allows Internet-based subs to be set up with @32767 as the host rather
  295. than a subscriber.  This allows Network Validation for outgoing posts, but
  296. prevents the subs from being networked to other BBS's.
  297.  
  298.     - Added support for XPOSTS=0, which turns off cross-post detection
  299. for newsgroups.
  300.  
  301.     - Changed the originator on network packets to be the real account name
  302. rather than the forwarding service name, to allow for the correct
  303. identification of bounced packets.
  304.  
  305.     - Changed the NEWS log file logic that seemed to sometimes cause crashes
  306. while retrieving newsgroups.
  307.  
  308. Beta-27
  309.  
  310.     - Increased _stklen variable in the hope it addresses problems from some
  311. systems running out of stack space during runtime.
  312.  
  313.     - Supports Waterloo TCP/IP "INACTIVE" vice "SOCK_INACTIVE" in WATTCP.CFG,
  314. which should properly respond to lost carrier, poor IP connections, etc.
  315.  
  316.     - The CLEANUP option in NET.INI now will execute FLINK and LINKER only,
  317. instead of spawning NETWORK1/2 for normal BBS cleanup.  Some systems were
  318. running out of memory during this process, and it was redundant of the BBS.
  319.  
  320.     - Makes two passes in MQUEUE on each run to assist those whose provider
  321. didn't settle handshaking immediately after connect.
  322.  
  323.     - Reads in alpha subtypes from NEWS.RC in upper case now to prevent
  324. problems in finding subtypes on the BBS.
  325.  
  326.     - Honors the <TAB> character in received newsgroup articles.  This was
  327. causing some text to be skewed (originating from mail readers which didn't
  328. substitute space).  Also properly terminates the received strings, so the
  329. spurious characters at the end-of-line on newsgroups should be fixed.
  330.  
  331. Beta-26
  332.  
  333.     - Fixed bug which caused binary groups to get sent into the bit bucket
  334. during retrieval.  Self-inflicted wound in Beta-25 with addition of alpha
  335. subtypes.
  336.  
  337.     - Changed CONTACT.NET update to a new method.  CONTACT.NET is now
  338. updated for each system for whom the program prepares a packet.  In this
  339. manner, it now reflects what gets sent to each system uniquely.
  340.  
  341.     - Tweaked the routines which read/write WATTCP.CFG.  This should get rid
  342. of any problems associated with that, including creating 0 byte files and
  343. inability to create WATTCP.CFG at runtime.
  344.  
  345.     - Forced a newline at the beginning of each newsgroup article.  This
  346. ensures that the text of a message doesn't begin on the same line as the
  347. RE:.
  348.  
  349. Beta-25
  350.  
  351.     - I didn't get all the changes/enhancements into this beta which I'd
  352. hoped.  There are a great deal of functional changes below, and the todo
  353. list is a bit smaller, but there's still work before the release of
  354. version 2.  Please report any problems you find.
  355.  
  356.     - First stab at "AUTHINFO" directive used by NNTP to validate username
  357. and password.  I could find no governing RFC, so a lot of this is in the
  358. blind until I can set up an NNTP host which supports it.  If your news host
  359. requires a Userid and Password for login (such as GTE), add the following to
  360. the [NEWS] section of NET.INI:
  361.  
  362.         NEWSNAME = <username>
  363.         NEWSPASS = <password>
  364.  
  365. The initial feedback is that this function is working properly, but it may need
  366. fine-tuning.
  367.  
  368.     - The trailing '.' on each Internet email message is now bypassed in email
  369. retrieval, so it won't be displayed to users viewing it on the BBS.
  370.  
  371.     - Nailed down the stacked "RE: RE: RE:" found in newsgroup responses.
  372.  
  373.     - Added "Continued in next message..." as the final line in newsgroup posts
  374. which exceed 32K (and become split into multiple parts) and "Continued from
  375. previous message..." on trailing parts.
  376.  
  377.     - Fixed the news and mail time/byte entries in NET.LOG, so each is
  378. maintained uniquely now.  If you use ONECALL in NET.INI, you will get two
  379. entries (one for @32767 and the other for the system you called), each with
  380. its own bytes and time.
  381.  
  382.     - Added definable maximum cross-posts before newsgroup article is skipped.
  383. New entry to NET.INI in [NEWS] section reads:
  384.  
  385.         XPOSTS = nn
  386.  
  387. where 'nn' is a number between 1 and 99.  (Setting this to '1' will reject any
  388. message crossposted to another newsgroup.)
  389.  
  390.     - Added support for the PPPURGE utility which cleans up the SENT directory
  391. externally.  By adding "PURGE=N" to the [GENERAL] section in NET.INI, you can
  392. bypass packet cleanup during normal network routines.  You must then add
  393. "PPPURGE <days>" to your external event batch file to kill SENT files.
  394.  
  395.     - Tweaked internal stack size which seems to stabilize problems resulting
  396. from line noise (modem), lost connections during transfers, etc.  Need more
  397. feedback on reliability of these changes, so we don't introduce new bugs!
  398.  
  399.     - Overrides net validation for newsgroup posts received from the Internet,
  400. but leaves normal validation intact for other methods.  This is useful for
  401. anyone who gates newsgroups with netval, as it lets the Internet stuff flow
  402. through unimpeded but still validates BBS-originating posts.
  403.  
  404.     - Added internal support for the FWDNAME and FWDDOM parameters from
  405. NET.INI.  If defined in the [GENERAL] section, these will be used for the
  406. headers of email and newsgroup posts.  This is helpful for anyone using a
  407. forwarding service, such as bigfoot.com, as their BBS mail host.
  408.  
  409.     - Fixed a problem in the UUDECODE routines where the output file was
  410. not being deleted if an error was detected during processing.  This would
  411. cause the partial file to be processed by the remaining NETWORK routines,
  412. which could result in crashes.
  413.  
  414.     - Added support for individual ADDRESS.* files.  ADDRESS.1 and up are
  415. maintained by the GC's.  ADDRESS.0 is a local file, which can be used to
  416. limit callouts to particular systems.  To force a normal (modem) callout to a
  417. system, create ADDRESS.0 in the following format:
  418.  
  419.         @node -      (the minus sign indicates use direct call)
  420.  
  421.     - Added another check for returned packets.  If the packet "from:"
  422. name matches the name and domain defined in the INI file, the packet is
  423. assumed to be a returned packet as well.  Apparently not all ISP's use the
  424. standard "mailer-daemon" approach for identifying returned packets.
  425.  
  426.     - Changed the sleep() call in NETWORK.EXE to a delay() call used when
  427. the socket is being established.  Some systems appear to hang using the
  428. sleep() call.
  429.  
  430.     - Added the KLOSV146.ZIP file to the archive.  These are the latest PPP
  431. drivers from KLOS, patched to remove the Windows detection code.
  432.  
  433.     - Added support for alpha subtypes in NEWS.C (defined in NEWS.RC).
  434.  
  435.     - Fixed routines to clean up after a file is received via Internet mail.
  436. Copies are no longer saved in CHECKNET and SPOOL.
  437.  
  438.     - Added PURGE option to [GENERAL] area, intended to be used with new
  439. PURGE.EXE utility.  PURGE.EXE will clean out your SENT directory as part of
  440. the external event (and not when the program runs).  Set PURGE=N in NET.INI,
  441. then add PURGE.EXE to your external batch file.
  442.  
  443.     - Added support for '_' in CALLOUT.NET to indicate non-Internet system.
  444.  
  445.     - Added support for user-definable anti-spam originating address.  If
  446. 'SPAMCONTROL=Y' is defined in NET.INI, you can also add:
  447.  
  448.         SPAMADDRESS=whoever@whatever.address
  449.  
  450. If SPAMADDRESS is not explicitly defined, the anti-spam address now reads:
  451.  
  452.         realname@dont.spam.me.real.address (Username)
  453.  
  454.     - Cosmetic modification to NET.LOG entry when nothing is sent.  Adds a
  455. comma (,) to conform to the normal network software method.
  456.  
  457.     - Now auto-trims NEWS.LOG, keeping a maximum of 800 lines (about three
  458. days worth) of NEWS entries.  Trim is accomplished at the last full session
  459. entry (a complete news session) at or above the 800 line mark.
  460.  
  461.     - Supports random signature files for newsgroups and email.  Naming format
  462. for the signature files is:
  463.  
  464.         I<subtype>.Txx
  465.  
  466. where 'xx' is a number between 0 and 99.  For example, to create random
  467. tags for subtype "12345", create files "I12345.T01", "I12345.T02", etc.  If
  468. no random tags are found, "I12345.TAG" will be used, as before.
  469.  
  470.     - Now properly removes BBS tagline indicators (the ^Dx prefix for each
  471. line in a BBS or personal tagline).  Note that these will be preserved, in
  472. addition to the I*.T* signature files.
  473.  
  474. Beta-24
  475.  
  476.     - Added hook to EXP to call after network packets/mail are received, so
  477. any Internet mail is processed immediately after receipt.
  478.  
  479.     - Count transfers (sending/receiving packets) in 512 byte increments vice
  480. 1K now... cosmetic.
  481.  
  482.     - Encoding and transfer of packets is now kept on a single line vice
  483. scrolling down the screen... again, cosmetic.
  484.  
  485.     - Tweaked import() routine in EXP to narrow down scrambled headers
  486. reported by some systems.
  487.  
  488.     - Added total files/bytes detail to display after successful packet
  489. transfers.
  490.  
  491.     - Added SSMs to be sent to the #1 account upon receipt of archive
  492. files or bad packets moved into CHECKNET.
  493.  
  494.     - Added file-sharing, timeslicing routines to EXP.
  495.  
  496.     - Added board-specific tagline file support.  File should be in the
  497. BBS DATA\ directory and be named I<subtype>.TAG, for example on subtype
  498. 10001 file would be I10001.TAG.
  499.  
  500.     - Fixed logic when an invalid newsgroup is requested and server returns
  501. 501 response.  It now skips the group and removes the invalid group name from
  502. NEWS.RC automatically.
  503.  
  504.     - INSTALL.C/EXE is in here now.  It needs some work before broader
  505. release, though.
  506.  
  507. Beta-23
  508.  
  509.     - Messed up parsing logic in EXP when comparing against name fields with
  510. an underscore replacing the space.  Fixed, I hope.
  511.  
  512.     - Various tweaks to socket code.  I hope these address the problems some
  513. folks have been having with the modem falling asleep.
  514.  
  515.     - Included POP.DBG in this archive to show dialog between you and your
  516. servers and help in the debugging process.  Copy POP.DBG to POP.EXE before
  517. installing.
  518.  
  519. Beta-22
  520.  
  521.     - Implements controls for Waterloo TCP socket inactivity across modules,
  522. SOCK_DELAY and SOCK_INACTIVE.  By default, these are set to 30 and 60 seconds,
  523. respectively.  They may be defined in NET.INI, as follows:
  524.  
  525. ; Time from sending an IP packet to response from DNS.
  526. SOCK_DELAY = 30
  527. ; Max time without socket activity.
  528. SOCK_INACTIVE = 60
  529.  
  530.     - The sockets are now malloc() on the far heap again (as Goose properly
  531. had them before).  I thought this may have been the culprit in the lost
  532. activity timer.  When I fixed the item above, it actually crashes the client
  533. when trying to free them from the near heap!
  534.  
  535.     - Removes WWIV heart color codes from titles and originator names.
  536.  
  537.     - Implemented ONECALL=Y/N in NET.INI to retrieve messages and newsgroups
  538. on a single call.
  539.  
  540.     - Added timeslicing routines in POP and NEWS.  Would appreciate feedback
  541. from anyone using "activity meters" to see if this helped anything, although
  542. I suspect I have to use a different buffered I/O routine aside from fprintf()
  543. to accomplish anything.
  544.  
  545. Beta-21
  546.  
  547.     - Urgent fix for dial-out problems to modem users.  Beta-20 was showing
  548. "must specify phone number" because of the way I was constructing the
  549. commandline.
  550.  
  551.     - Various other tweaks/enhancements which will be detailed better in the
  552. next beta.  (It's late!)
  553.  
  554. Beta-20
  555.  
  556.     - Urgent fix for a problem in news retrieval where it wasn't finding the
  557. NEWS.RC, I hope!
  558.  
  559.     - NET.INI addition:
  560.  
  561. ; Will retrieve mail and newsgroups on single call
  562. ONECALL = Y
  563.  
  564. Beta-19
  565.  
  566. Additions to NET.INI (for now, grab Quixotic Quest's FAQ for a full NET.INI
  567. and meanings).  Under [NEWS] tag, add:
  568.  
  569. ; If defined, puts a bogus originating address on newsgroup posts.
  570. SPAMCONTROL = Y
  571. ; If defined, uses file as a signature file to all newsgroup posts.
  572. SIGNATURE = D:\WWIV\GFILES\INTERNET.TAG
  573.  
  574. Various code changes:
  575.  
  576.     - POP now receives messages to an INBOUND directory under the network data
  577. directory instead of syscfgovr.tempdir.  This will help in case of lost
  578. connections... received packets will remain in the INBOUND area until cleaned
  579. out by other routines (UU, etc.)
  580.  
  581.     - Waterloo wasn't returning from the macro for sock_err:.  Tweaked quite a
  582. bit, including allocating the tcp sockets on the near heap (again!).  I wish
  583. we could return(x) from sock_err: but return values vary among different
  584. functions... consistency is something for a future release.  If this doesn't
  585. clear things up, we can exit(x) from the macro and allow the OS to do its own
  586. cleanup for file handles, memory and such.
  587.  
  588.     - parse_ini() in network.c wasn't toupper() on s[0] properly, so lower
  589. case 'y' and 'n' parameters weren't being honored.
  590.  
  591.     - Places ^D0R before header lines on received email.  These lines are
  592. suppressed on display to user on the BBS, but may be extracted to provide
  593. routing info.  Required changes both to POP and EXP, in order to detect/skip
  594. ^D0R when comparing strings.
  595.  
  596.     - Uses underscore between multiple parts of user name on exported mail
  597. (e.g. The_Great_White_Whale).  For backward compatibility, it matches both
  598. space and underscore when comparing against user list.
  599.  
  600.     - Detects bounced mail by comparing originating address (from: line)
  601. against known mail-bouncers, including "Mailer-Daemon", "Administrator", etc.
  602. Bounced packets are named as BAD*.UUE and will remain in INBOUND for review,
  603. as they're skipped during UU decode routines.  To recycle a packet, rename it
  604. from BAD*.UUE to PKT*.UUE.
  605.  
  606.     - Displays 20 characters of packet originator while receiving (purely
  607. cosmetic).  Tracked that for the above item, so figured we'd display it.
  608.  
  609.     - "SPAMCONTROL=Y" in NET.INI [NEWS] tag uses a bogus originating address
  610. ("nowhere@no.net") to prevent email scoopers from finding a good address.
  611. Also when defined, the "Reply-To:" field is omitted but a correct return
  612. address is prepended as text to the body of message.
  613.  
  614.     - Supports a "signature" file defined in NET.INI [NEWS] tag, as described
  615. above.  Format is: "SIGNATURE = [path/filename]".  Contents are read into
  616. outbound mail during export, so length is unlimited.  If it finds ANSI, it'll
  617. choke!  If a SIGNAURE is not defined or the file doesn't exist, it uses the
  618. previous "Origin: * blah" tagline.
  619.  
  620.     - If mh.toUserName is "ALL" (ie. a first post on topic), skips the
  621. "Responding to: ALL" in body of message... seemed redundant.
  622.  
  623.     - NEWS now skips the following messages during retrieval:
  624.  
  625.       - messages cross-posted to more than 10 newsgroups on the assumption
  626.         that they're spammed across multiple groups.  The figure 10 is an
  627.         arbitrary but hard-coded for now into NEWS.
  628.  
  629.       - any message cross-posted to another group defined earlier in NEWS.RC,
  630.         e.g. if you define comp.games and comp.games.adventure in NEWS.RC, it
  631.         will skip messages on comp.games.adventure which were cross-posted to
  632.         comp.games.
  633.  
  634.       - any message which originated from your system as indicated by the
  635.         "Organization:" field appended during export.
  636.  
  637.     - NEWS now allows you to hit <space> to skip to the next group defined in
  638. NEWS.RC.  It doesn't "catch-up" lastread pointers for the skipped group, but
  639. simply writes the current message pointer to NEWS.RC for your next run.  If
  640. there's reason for a "catch-up" key, let's discuss it.
  641.  
  642. There are probably others, but you'll find them as you go.
  643.  
  644. Frank
  645.  
  646.