home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / x / volume19 / xmail / part01 / CHANGES next >
Text File  |  1993-04-28  |  44KB  |  921 lines

  1.  
  2.                                                               February, 1992
  3.  
  4.    The following changes have been effected for Patchlevel 5 of xmail.
  5.  
  6.    ALL known segmentation violations and related mysterious crashes HAVE BEEN
  7. ELIMINATED, largely in thanks to the wonderful software tool 'purify' by the
  8. Pure Software Corporation, of Los Altos, CA.  If you haven't yet seen this
  9. excellent diagnostic tool, rush right out and get yourself a copy.  It IS the
  10. cats meow!
  11.  
  12. As part of the effort at eliminating problems with segmentation violations,
  13. several casts for XtMalloc() and XtFree() calls have been added, and I no
  14. longer free the mail connection read buffer each time it is used.  Instead I
  15. simply allow it to grow to the maximum size of a read ever performed on the
  16. mail pipe.
  17.  
  18. Like previous versions of xmail, version 1.5 depends HEAVILY on the proper
  19. installation of the application defaults file in the appropriate directory.
  20. If you fail to install the new application defaults file, xmail will run, but
  21. only in a restricted fashion, and many of the documented features will not be
  22. present.
  23.  
  24. HelpText.c    - More changes to the formatting of text in the popup window.
  25.  
  26. Imakefile    - ADDED definitions for SIGACTION, for those systems which do
  27.           not support the BSD sigvec function. ADDED the option to use
  28.           REGEXP if your system supplies regexp.h.  The default will be
  29.           to use re_comp() and re_exec() instead.  Also added a define
  30.           to use BSD_SIGNALS, for SGI and similar machines with that
  31.           requirement.
  32.  
  33. Mailwatch.c    - Added support for the 'q' keypress in the icon window to
  34.           cause xmail to terminate.  Made necessary modifications to
  35.           support the final released version of XPM 3.0 which is being
  36.           provided with the X11R5 Contrib tape distribution.
  37.  
  38. actions.c    - Added a function to extract the folder variable value once
  39.           only, in place of making multiple calls to GetMailEnv().
  40.  
  41. Message delivery can now be effected directly from the keyboard, by use of
  42. <Meta>-key translations in the applications default file.
  43.  
  44. Help for most windows can now be
  45. called up using only the middle mouse button, although text windows which would
  46. otherwise accept text pasting still require the addition of the <Shift> key as
  47. well.
  48.  
  49. ---------------------- end of changes for patchlevel 5 -----------------------
  50.  
  51.                                                              September, 1991
  52.  
  53.    The following changes have been effected for Patchlevel 4 of xmail.
  54.  
  55.   Many more bugs have been fixed, and the overall size of the resident image
  56. made even smaller, with the removal of the dependency on alloca and regex.c.
  57. I have also made changes necessary to effect operation under X11 Release 5,
  58. and linted the sources to remove as many lint complaints as is practical.
  59.  
  60. I believe with this version I have eliminated the various and sundry program
  61. crashes at unexpected times and in wierd places.  The culprit was (of course)
  62. me, and violation of the rule: Don't feed your children dynamically allocated
  63. data with a fork, as it can often cause you to choke and die.
  64.  
  65. I have made extensive changes to the way in which the editor is invoked during
  66. message composition and the manner in which the message is delivered to the
  67. sendmail daemon.  Users may now begin a message composition, and immediately
  68. continue processing available messages.  Message composition will no longer
  69. chew up cpu cycles and message delivery will no longer leave a defunct (i.e.
  70. zombie) process hanging around to consume available process slots.
  71.  
  72. Like the previous version (1.3) of xmail, this version depends heavily on the
  73. installation of the application defaults file in the appropriate directory.
  74. The declaration of SetAlias() actions for To:,Cc:, and Bcc: translations no
  75. longer require the inclusion of the call to MenuPopup().  This means any 1.3
  76. version of the application defaults file MUST be replaced with the new copy.
  77.  
  78. If you fail to install the new application defaults file, xmail will run, but
  79. only in a restricted fashion, and many of the documented features will not be
  80. present.  This is because many of the resource declarations have been moved
  81. from the source code into the defaults file.  Also with this version, the
  82. specification of colors and fonts are left to the choice of the user.  Some
  83. example declarations are included in the defaults file, but they are commented
  84. out, so as not to effect the choices made by the user.  This means if you fail
  85. to specify color requirements on a color system, xmail will come up in black
  86. and white (except for the National Semiconductor logo in the title bar %^).
  87.  
  88. HelpText.c    - Made several small changes to better format the text in the
  89.           help window popup.  Also added corrections for the latest
  90.           set of enhancements and bug fixes.
  91.  
  92. Imakefile    - Removed the definition for NO_WAIT3 as no longer necessary.
  93.           Added several compiler options, to aid xmail specification.
  94.           Define USE_DIRENT if readdir() uses <dirent.h> instead of
  95.           <sys/dir.h>.  Define X_FACE and COMPFACE if you have the
  96.           compface library installed and you want xmail to auto-
  97.           matically display the X-Face: header, if found in a message.
  98.           Define XPM if you have the Xpm version 3 library and want
  99.           support for multi-colored icons.  Define LPT if you require
  100.           att environment support for pseudo ports.  Define
  101.           MAILBOX_DIRECTORY if your mail spool is located in other than
  102.           the default /usr/spool/mail location.  (If not specified, the
  103.           default will be used.)  Define DEFAULT_VISUAL if your copy of
  104.           vi lies in some place other than /usr/ucb.  (If not specified,
  105.           /usr/ucb/vi will be the default editor.)  Define
  106.           DEFAULT_MAILER if your mail program is not the standard
  107.           /usr/ucb/Mail.  CAUTION - Operation is NOT guaranteed with
  108.           other mailers.
  109.  
  110.           Dependencies have been included for those files which need
  111.           to know if a particular compile option has been specified or
  112.           not.  The dependencies have been COMMENTED OUT, because the
  113.           imake Makefile rule would force a rebuild of the Makefile
  114.           unless you add an Imakefile dependency to the Makefile rule.
  115.           If you want the source file dependencies enabled, you need to
  116.           edit the created Makefile, and add Imakefile as the dependency
  117.           to the Makefile target, to prevent rebuilding the Makefile.
  118.  
  119. Mailwatch.c    - The mailhost variable was incorrectly referenced in tests for
  120.           a NULL value.
  121.  
  122.           Added the definition for MAXHOSTNAMELEN if it is not defined.
  123.  
  124.           Replaced the attempt to determine the mail host name using
  125.           sendmail with just the name of the current host.  This routine
  126.           was bogus at best, and the change eliminates complaints from
  127.           non-sendmail daemons that some sites are using.
  128.  
  129.           Added optional support for XPM formatted icons, if the user
  130.           has libXpm.a (and desires multi-colored icons %^).  Thanks
  131.           go to Herve Soulard <soulard@sor.inria.fr> for the suggestion
  132.           and assistance.
  133.  
  134. XMail.ad    - I have now commented out the color specifications in the
  135.           application defaults file, in order to not enforce default
  136.           colors on users who wish to use their own generic definitions.
  137.           This means that if you 1) don't uncomment these definitions
  138.           when you install the file, or 2) specify colors in your
  139.           personal default resources file, xmail will execute in black
  140.           and white on a color monitor.  I have also eliminated the
  141.           definitions of buttonFont and helpFont in this file, but have
  142.           included a definition for *Font:.  The definition for the
  143.           editorCommand resource has also been commented out, which
  144.           allows the program to utilize the default VISUAL definition
  145.           in the user's .mailrc file, unless they add a specification
  146.           for editorCommand to replace the default action.
  147.  
  148.           Added definitions for search forward and backward to the
  149.           index window translations, to allow searching for multiple
  150.           messages by author or subject.
  151.  
  152.           Removed declarations for MenuPopup action in the translations
  153.           for To:, Cc:, and Bcc: windows when executing SetAliases().
  154.  
  155. actions.c    - Change access to the "command_pattern" and "output_pattern"
  156.           variables, in keeping with the correction of the global
  157.           definitions of same.
  158.  
  159.           I found that I was mislead in my beliefs that the pipe (|)
  160.           command was universal in Berkeley mail.  Instead, it is
  161.           a unique feature of Sun's version of mail.  This version of
  162.           xmail has an alternative method of printing a message, for
  163.           those systems that are not Sun compatible.
  164.  
  165.           The main folder list is now sorted into alphabetical order.
  166.           In the loop which checks each folder file for directory-ness,
  167.           I changed the diropen() calls to use stat() instead.
  168.  
  169.           Aliases (which are also now sorted) are now placed in order
  170.           from left to right, top to bottom.
  171.  
  172.           Both SetAliases and SetFolders now call XtPopupSpringLoaded,
  173.           instead of having the MenuPopup call in their translation
  174.           tables.  Menus are now only created if the list information
  175.           truely exists.
  176.  
  177.           Added support for X11 Release 5.
  178.  
  179.           Folder button is now made insensitive while extracting the
  180.           initial folders list, to show busy state, since the InputOnly
  181.           busy cursor window does not map while the mouse button is
  182.           depressed.
  183.  
  184. callMail.c    - SYSV ioctl calls incorrectly reference an undefined variable
  185.           "tty", which should have been "slave".
  186.  
  187.           Some systems did not like the test for return value from the
  188.           ioctl calls.  The test(s) have been eliminated.
  189.  
  190.           Removed the duplicate inclusion of the <sgtty.h> file.
  191.  
  192.           Added the inclusion of signal.h, for those systems which do
  193.           not already include it as part of the inclusion of param.h.
  194.  
  195.           Loop on the attempt to establish master/slave connections in
  196.           case the first attempt(s) fail but more possibilities exist.
  197.  
  198.           Changed call arguments to callMail to eliminate mailargc as
  199.           unnecessary.
  200.  
  201. callbacks.c    - Changed the access to "command_pattern" and "output_pattern"
  202.           variables, in keeping with the correction of the global
  203.           definitions of same.
  204.  
  205.           Changed the way I handled message delivery.  Instead of
  206.           forking a process to perform the delivery, I now access the
  207.           sendmail daemon directly.  I also prepend a greater than (>)
  208.           symbol to any line of text which begins with the mail keyword
  209.           ``From '', to prevent mail from believing it is the start of
  210.           a new message.  Also fixed the case of Forwarding to include
  211.           the greater than symbol on the first line of the forwarded
  212.           message, which also begins with the word 'From '.
  213.  
  214.           Fixed the routine which strips the actual addresses from the
  215.           list of addressees (which might include full names as well)
  216.           so that the sendmail command line is as brief as possible.  I
  217.           have tested this with a wide variety of examples and line
  218.           lengths, and no longer suffer from any core dumps.  This
  219.           should resolve the problem some users have had with parsing
  220.           aliases which included full name specifications.
  221.  
  222.           Also finding that the "~[a|A]" commands are only available
  223.           in Sun's version of mail, I have implemented a mechanism to
  224.           use a .[Ss]ignature file, if no signature can be found in the
  225.           user's .mailrc file and a .[Ss]ignature file exists in their
  226.           home directory.  This method allows a user to have both a
  227.           lower case .signature as well as an uppercase .Signature file
  228.           if they so desire.
  229.  
  230.           Removed the wait3() call for the mail child when terminating
  231.           xmail.
  232.  
  233.           Removed the duplicate inclusion of the <sys/time.h> file.
  234.  
  235.           Removed the pointer declaration for the clock variable.
  236.  
  237.           Added support for tilde referenced record files.
  238.  
  239.           Changed the assumptions about .face file contents to include
  240.           not adding the information if the user is also using the
  241.           faces.sendmail script (as noted by its name in the environment
  242.           definition for sendmail), and to insert the X-Face: header
  243.           if the user's .face file does not contain it.
  244.  
  245.           Fixed a bug in the Reply routine which caused a segmentation
  246.           violation if the Return-Path: header did not contain chevrons.
  247.  
  248.           Consolidated the functions which deliver the composition mail
  249.           message to eliminate the need for global definitions of the
  250.           header strings and the occasional crash caused by the delivery
  251.           child having copies of those variables.
  252.  
  253.           Added code to ensure that all included or forwarded messages
  254.           with mail keyword 'From ' at the beginning of a line have a
  255.           preceeding greater-than symbol to eliminate false triggers.
  256.  
  257. defs.h        - Added support for R5 portability issues.
  258.  
  259. directory.c    - Sub-directory folder lists are now sorted alphabetically.
  260.  
  261.           In the loop which checked each folder file for directory-ness,
  262.           I replaced the diropen() calls with stat() calls instead.
  263.  
  264.           To avoid problems later on with XtNameToWidget, folder names
  265.           of directories which contain either a period or an asterisk
  266.           do not cause generation a sub-menu.
  267.  
  268. environs.c    - In building the aliases list, I had not taken into account
  269.           the fact that GetMailrc() returns a NULL if no aliases were
  270.           defined.
  271.           Added expansion routines to mail variable requests to
  272.           the inclusion of process environment definitions.
  273.  
  274.           Fixed a major bug in the alias parsing routines which could
  275.           not handle an alias the decoded to a full name and address
  276.           syntax as permitted by the RFC822 specifications.
  277.  
  278.           Added a call to qsort the alias list.
  279.  
  280.           Source'ing of files in the .mailrc file now received expanded
  281.           environment variable definitions in filenames.
  282.  
  283. global.h    - Added the declaration for the endEdits() signal handler.
  284.           Also removed global declarations for message header variables
  285.           which no longer require global definition, and eliminated the
  286.           declarations for waitC and xtermC cursors.
  287.  
  288. handler.c    - Fixed a bug which caused non-expert users with deleted
  289.           messages in a folder to have to complete a Confirmation
  290.           response when terminating xmail from the iconic position.
  291.           (The question was moot, as being iconic made it already
  292.           too late to ask for confirmation of the deletes.)
  293.  
  294.           Eliminated the static buffer for examining the contents of
  295.           the title bar, when trying to determine if In_System_Folder.
  296.  
  297. mail.c        - Changed the way in which I control the message composition.
  298.           The previous (1.3) method was horribly wasteful of cpu cycles,
  299.           and didn't allow the user to continue reading other mail
  300.           messages until after the editing session concluded.  The new
  301.           method ensures only one message composition at a time occurs,
  302.           and allows immediate continuation of other xmail functions.
  303.  
  304.           Added an event handler to correct bug for warping of cursor
  305.           to To: window when popping up the headers window transient.
  306.           Users whose window manager decorates transients will now see
  307.           the cursor in the To: window, instead of in the decoration.
  308.  
  309.           Eliminated the call to wait3().  It is no longer needed.
  310.  
  311.           Eliminated the full path xterm specification in the default
  312.           edit command.  This because some users choose to install X11
  313.           in a non-standard (/usr/bin/X11) location.
  314.  
  315.           Changed the way I handled fork failures, now reporting the
  316.           cause of the failure when trying to start an edit session.
  317.  
  318. parser.c    - Added code to eliminate bogus messages from the mail child,
  319.           and to turn off a possible ``cmd'' definition in the .mailrc
  320.           file, so as to be able to detect the inability to pipe a
  321.           command to the printer.
  322.  
  323.           Added an additional error message parse when trying to copy,
  324.           write, or save a file to a bogus address which returns the
  325.           message "Not a directory".
  326.  
  327.           Added notation of file saved when using the write command.
  328.  
  329.           Moved the function which marks a 'P'reserved message to the
  330.           parser routine, in case the user is not in their system
  331.           folder.
  332.  
  333.           Changed the way I determine the mail prompt string from a
  334.           static examination at first startup, to take what mail is
  335.           actually giving me when the connection is established.  This
  336.           eliminates the bug where some users declare a prompt string
  337.           which translates differently than as declared (such as prompts
  338.           with embedded quoted strings which do not include the quotes
  339.           when mail echos the prompt).
  340.  
  341.           I now clear the In_Bogus_Mail_File flag if restarting the
  342.           mail connection, so the title bar will be properly updated.
  343.  
  344. regex.c        - This file has been eliminated, in favor of using the regexp
  345.           routines.  You may safely delete this file from your sources.
  346.  
  347. utils.c        - Modified writeTo() to not include X-Face header strings in
  348.           the displayed message text, if the user sets the *No_X_Hdr
  349.           resource to True or uses the -nx command line option, and an
  350.           X-Face header is included in the incoming message.
  351.  
  352.           Replaced the previous mechanism for setting a wait cursor in
  353.           the various windows with the FAQ'd example of creating an
  354.           InputOnly window to prevent unwanted events while the program
  355.           is busy.  Also fixed the problem of having the Cursor window
  356.           Enter/LeaveNotify events force overwrite of the status info.
  357.  
  358. windows.c    - Added a definition for Control_J to remove the extra text
  359.           help window, for those workstation keyboards without a line-
  360.           feed key.
  361.  
  362. xmail.c        - Eliminated internally defined default fonts, allowing the
  363.           user to specify the fonts in their personal resource file.
  364.  
  365.           Also added the command line/resource declaration for textFont
  366.           in keeping with the definitions for buttonFont and helpFont.
  367.           All three font specifications can now be obtained from the
  368.           single generic declaration of *Font: in the resource file,
  369.           or by using the command line option ``-fn'' or ``-font''.
  370.  
  371.           I now parse command line arguments in an effort to eliminate
  372.           bogus borderwidth specifications (negative or beyond practical
  373.           limits) in an effort to keep the application from becoming
  374.           non-functional due to incorrect sizing operations.
  375.  
  376.           Increased size of mailargv vector by one to correct bug of
  377.           not specifying mail program name as argv[0].  This fixes
  378.           startup processing to not include header information because
  379.           the '-N' flag was not being recognized.
  380.  
  381. xmailregex.h    - This file is no longer required, as part of the replacement
  382.           of regex routines with regexp functionality.
  383.  
  384. xmailregexp.h    - This file replaces both xmailregex.h and regex.c as the means
  385.           for parsing both command line and output messages.
  386.  
  387. xmail.man    - Made several changes to reflect improvements for xmail 1.4.
  388.  
  389.  
  390. I'd like to thank all of the users who responded with bug fixes and suggestions
  391. for the previous (1.3) version of xmail.  The list below identifies those
  392. individuals who were first on their block to point out a failing of xmail 1.3.
  393.  
  394. John Amanatides    <amana@allegra.att.com>
  395.     Requested support for tilde defined record variables, and that aliases
  396.     be presented in sorted order.
  397.  
  398. James Carlson    <carlson@mrx.webo.dg.com>
  399.     Noted that the use of alloca calls in regex.c were highly unportable,
  400.     and that signal.h needed to be included in callMail.c for SIGKILL,
  401.     (for those sites that don't include signal.h as part of param.h).
  402.  
  403. A. G. "Tony" Cohn    <agc@dcs.leeds.ac.uk>
  404.     Encouraged me to add a sort of the folder lists, especially for the
  405.     sub-levels.
  406.  
  407. Donna Converse        <converse@expo.lcs.mit.edu>
  408.     Pointed to the correct method of utilizing XtCallActionProc to replace
  409.     the translation table declarations for MenuPopup actions.
  410.  
  411. Pierre Corriveau    <piec%bnrmtl.UUCP@Larry.McRCIM.McGill.EDU>
  412.     Pointed out the lack of proper handling of message text lines that
  413.     began with the keyword ``From ''.
  414.  
  415. Chris Crampton    <cmc@ecrc.de>
  416.     Suggested that path dependencies be removed from the xterm invocation
  417.     of the default visual editor.
  418.  
  419. Richard Griffiths    <richard@xanth.b11.ingr.com>
  420.     Suggested several corrections to the SYSV compilation as a result of
  421.     his efforts at porting xmail to the Intergraph (Clipper) workstation.
  422.  
  423. Nick Holloway    <alfie@cs.warwick.ac.uk>
  424.     Helped identify a major failure in the aliases routines that could not
  425.     handle an alias which decoded into the full name and address of the
  426.     recipient.
  427.  
  428. Thierry Leconte    <Thierry.Leconte@irisa.fr>
  429.     Suggested a change to remove the X-Face header strings from the message
  430.     text prior to displaying the message in the text window.
  431.  
  432. Casey Leedom    <casey@gauss.llnl.gov>
  433.     Suggested additional changes in the resource declarations to allow
  434.     user preferences more latitude in specifying fonts and colors.
  435.     He also noted some sites might not have a MAXHOSTNAMELEN definition,
  436.     as well as the duplicate inclusion of the time.h file.  Casey was also
  437.     the first person to provide me with the changes needed for R5.
  438.  
  439. Dj Walker-Morgan    <dj@micromuse.co.uk>
  440.     Noted that environs.c aliases() could receive a NULL pointer when
  441.     asking for the alias list.
  442.  
  443. John Nelson    <jpn@genrad.com>
  444.     Was the first to identify the inconsistent declarations for
  445.     command_pattern and output_pattern global variables.
  446.  
  447. Ian Nixon    <nixon@asic.nsc.com>
  448.     Was the first user to point out the gross waste of cpu cycles
  449.     during the editor phase of the message composition process.
  450.  
  451. Gerry Roston    <gerry@cs.cmu.edu>
  452.     Requested that support be included for .signature files, for those
  453.     sites that aren't using Sun mail.
  454.  
  455. Arvind Sabharwal    <arvind@gmr.com>
  456.     Noted the bug about the print command only working in Sun environments.
  457.  
  458. Brian V. Smith    <envbvs@epb2.lbl.gov>
  459.     Was first to note that some environments didn't like my test of the
  460.     ioctl return status.
  461.  
  462. Herve Soulard    <soulard@sor.inria.fr>
  463.     Provided code examples and the suggestion that the mailbox icons would
  464.     look better if presented in XPixmap format.
  465.  
  466. Markus Stumpf    <stumpf@dssystem1.informatik.tu-muenchen.de>
  467.     Encouraged me to remove the bogus ``sendmail -bv'' attempt to determine
  468.     the mail host identity.
  469.  
  470. ---------------------- end of changes for patchlevel 4 -----------------------
  471.  
  472.                                                                  April, 1991
  473.  
  474.    The following changes have been effected for Patchlevel 3 of xmail.
  475.  
  476.   Many, many bugs have been fixed, and the overall size of the resident image
  477. has been cut almost in half.  I also believe I have correct all memory leaks.
  478.  
  479.   Support is now provided for displaying the content of an X-Face: header, as
  480. a compile time option.  If you currently have the compface library routines
  481. provided by James Ashton, see the Imakefile and change the flags accordingly.
  482. The compface library routines are available from the Rich Burridge Archive
  483. Server, at <rb-archive-server@Aus.Sun.COM>.  Send the one word subject "Help"
  484. if you have never used this archive-server before.  These routines are
  485. also included as part of Rich Burridge's faces program, also available from
  486. that same address.
  487.  
  488.  
  489. Imakefile:    Eliminated R3 support and changed number and type of defines
  490.  
  491. HelpText.c:    Modified some text and added information messages for commands
  492.  
  493. Mailwatch.c:    Added support to display either user or mail host name in icon
  494.         Changing the icon tag also changes the application title for
  495.         window managers, for those cases when more than one copy of the
  496.         program being run.  Removed support for X11R[23].
  497.  
  498. actions.c:    Removed support for X11R3.  Changed ``Send'' completion popup
  499.         to use callbacks instead of action routines.  Eliminated need
  500.         for DoAutograph() and DoDone() action routines.  Changed routine
  501.         SelectionNumber() to use greater-than mark as reference instead
  502.         of current insertion pointer, because forward/backward-page
  503.         et.al. messed with current insertion pointer location.  Added
  504.         support for WM_DELETE_WINDOW protocol requests to DoQuit().
  505.         Added information messages for each command button.  Message
  506.         content is triggered by enter/leave notify events, ala xrn.
  507.         Cleaned up error messages to use XtError().  Consolidated
  508.         various popup positioning routines into SetXY().  Changed
  509.         SetCursor() from XtActionProc to void and moved it to utils.c
  510.  
  511. callMail.c:    Added (UNTESTED) support for non-BSD style communications.
  512.         The additional code was taken from the X11R4 sources for xterm.
  513.         Non-BSD routines are untested by the author, as I do not have
  514.         access to a System-V environment.  Eliminated hanging of the
  515.         parent (for approximately 15 seconds) on close of the slave
  516.         connection due to child terminated for lack of mail before
  517.         the parent could issue it's close statement.  Fixed the bug for
  518.         not displaying tabs in messages.
  519.  
  520. callbacks.c:    Call the alias() extraction routine recursively, to accommodate
  521.         nested user aliases.  Also pass the recipient list to sendmail
  522.         on the command line, in lieu of the ``-t'' option, to eliminate
  523.         a bug which sometimes caused sendmail to think the author of
  524.         the message was actually one of the recipients.  Add the USENIX
  525.         X-Face: header to outgoing messages, if a ``.face'' file exists
  526.         in the user's home directory.  Corrected a bug because System-V
  527.         sprintf() does not return a pointer to the buffer.  Corrected
  528.         redundant usage of XtNameToWidget() calls.  Changed occurrences
  529.         for all of index() to strchr() to eliminate bug under SunOS_4+.
  530.         Changed search for author in incoming messages to use ``From:'',
  531.         ``Return-Path:'', and finally ``From '' header fields.  Changed
  532.         control loop for confirms and ``Send'' completion popups so
  533.         that they will be displayed even if the parent is obscured.
  534.         Changed ``outfolder'' to work as documented in Mail man page.
  535.         Fixed Done routine to not create header files when aborting a
  536.         message composition.
  537.  
  538. defs.h:        Eliminated some global variables and support for X11R3.  Added
  539.         declaration for editorCommand resource, and support for those
  540.         environments which do not include a wait3() system call.
  541.  
  542. directory.c:    Changed define declaration to USE_DIRENT, because structure
  543.         dependency is not SUN_OS dependent.
  544.  
  545. environs.c:    Changed occurrences of index() to strchr().  Added support for
  546.         braced and quoted environment variables.  Added recursive
  547.         parsing of the .mailrc file for ``source''d files.  Added
  548.         recursive parsing of the aliases for addresses, carbon, and
  549.         blind copies.  Merged the extraction of aliases and set options
  550.         from the mailrc file into one routine.  This routine now also
  551.         supports continuation lines, and returns the LAST occurrence of
  552.         the targeted set option.  This last point fixes a bug where the
  553.         user declared a prompt string more than once in the mailrc
  554.         file.  Mail would use the second one, while previous version of
  555.         xmail were looking for the first and hanging indefinitely.
  556.  
  557. handler.c:    Added info_handler() to write command button window explanation
  558.         messages in the status window on enter/leave-notify events.
  559.         Fixed bug in placing marker for current message.  Changed all
  560.         occurrences of index() to strchr().  Fixed bug in index_handler
  561.         when the current message index went to zero due to a loss of
  562.         sync with the incoming text from Mail.  This would occur if the
  563.         user pressed the read next/previous message keys too rapidly.
  564.  
  565. mail.c:        Added support for the editorCommand resource, ala xrn.  This
  566.         resource allows the user to specify an ``sprintf''-able string
  567.         which defines the editor to use when composing messages.  Users
  568.         must supply two ``%s'' entry points, one for the name of the
  569.         X display connection and one for the name of the edited file.
  570.         Fallback to the previous VISUAL methodology, if editorCommand
  571.         specification does not meet requirements.  Corrected a bug
  572.         which prevented the ``Send'' popup from appearing if the parent
  573.         shell was partially or totally obscured.  Made the ``Send''
  574.         popup reusable, instead of destroying and recreating it each
  575.         time.  Accommodated people who insist on setting a wide border.
  576.  
  577. national.bm:    Resized the logo to a larger format, to better fit the titleBar.
  578.  
  579. parser.c:    Corrected a bug for those cases when the mail process would
  580.         disappear unexpectedly.  Loss of connection no longer causes
  581.         a runaway condition.  Fixed a bug in the START process which
  582.         chewed up CPU seconds when started iconic.  Restored function-
  583.         ality for the no-autoprint option, which also fixed a bug of
  584.         occasionally seeing titlebar or status info in the text window
  585.         when issuing read previous/next commands in rapid fashion.
  586.  
  587. revtable.h:    Used in un-compressing X-Face headers.
  588.  
  589. utils.c:    Added support for proportionally spaced fonts, using routine
  590.         figureWidth().  Added support for X-Face headers on in-coming
  591.         messages.  If found, the X-Face will be displayed in the upper
  592.         right-hand corner of the text window.  Modified Bell() routine
  593.         to not replace message text in status window if previous text
  594.         was for an error.
  595.  
  596. windows.c:    Moved a majority of the action translation tables to the XMail
  597.         class resource file, to allow the user more flexibility.
  598.  
  599. xmail.c:    Changed the startup procedure to not start in the system folder
  600.         if starting iconic, to prevent ``newmail'' flag from being reset
  601.         before the user has opened the icon for the first time.  Added
  602.         separate font declarations for help, text, and button fonts.
  603.         Added resources and command line options for disabling the new
  604.         info feature and for specifying the editorCommand format string.
  605.         Fixed calculations for overall shell size if user has specified
  606.         a proportional font or wide borders, to keep xmail shell within
  607.         root window boundaries.
  608.  
  609. The following persons have sent in suggestions, complaints, and/or patches
  610. which have contributed to the development of this patchlevel.  In most cases,
  611. I was able to respond directly to the submitter using the address indicated.
  612. In some cases, mail would bounce and I could not reach them with a thank-you.
  613. In any case, I wish to express my deepest gratitude to all for their interest
  614. and assistance.  If I have inadvertently managed to leave someone's name off
  615. of this list, please forgive me (and thanks again).
  616.  
  617. Alan M. Baum    <abaum@amb.cs.gmr.com>
  618.     requested the ability to recursively parse an alias during ``Send''
  619.  
  620. Dana A. Chee    <dana@thumper.bellcore.com>
  621.     one of many to request resources be moved to the application defaults
  622.  
  623. Damian Chu    <dac@doc.imperial.ac.uk>
  624.     forced me (%^) to add WM_DELETE_WINDOW protocol support  (thanks)
  625.  
  626. Ned Danieley    <ndd@sunbar.mc.duke.edu>
  627. Frank Peters    <fwp1@cc.msstate.edu>                and
  628. Thomas Oeser    <thomas%apgraph%ap542@ztivax.siemens.com>
  629.     identified problems (non-RFC822 compliance) with address parsing
  630.  
  631. Norm Jacobs    <jacobs@mot.com>
  632.     provided suggested code patches for System-V socket connections
  633.  
  634. Casey Leedom    <casey@gauss.llnl.gov>
  635.     identified bugs in the translation tables and suggested the addition
  636.     of the editorCommand resource specification
  637.     
  638. Steve Losen    <scl@virginia.edu>
  639.     identified bugs in the translation and regular expressions tables
  640.  
  641. Andrew McRae    <andrew@megadata.mega.oz.au>            and
  642. Peter Morreale    <morreale@bierstadt.scd.ucar.edu>
  643.     identified the existence of memory leaks in patchlevel 2
  644.  
  645. Frans Meulenbroeks <meulenbr@cst.philips.nl>
  646.     suggested the need to use the ``source'' command in .mailrc
  647.  
  648. Marc H. Scholl    <scholl@inf.ethz.ch>
  649.     suggested changes in the ``outfolder'' variable interpretation
  650.  
  651. Brian V. Smith    <envbvs@epb2.lbl.gov>
  652.     noted that the ``Send'' popup would not appear if the xmail parent
  653.     window (or icon) was obscured
  654.  
  655.  
  656. ---------------------- end of changes for patchlevel 3 -----------------------
  657.  
  658.                                                                 August, 1990
  659.  
  660.    The following changes have been effected for Patchlevel 2 of xmail.
  661.  
  662.  
  663. Imakefile:    Reordered R3 and R4 dependencies to allow for R4 make depend.
  664.  
  665. HelpText.c:    Corrected some text and added help for text window key actions.
  666.  
  667. Mailwatch.c:    Added option to start icon in reverse video.  Also added
  668.         option to display the username in the icon window, for those
  669.         times when xmail processes for more than one user are desired.
  670.  
  671. actions.c:    Changed Newmail action to NOT automatically remove the
  672.         current folder list when changing to the system mail folder.
  673.         'Drop Folders' is now a separate action selectable within the
  674.         Newmail command menu.  Fixed SetFolders routine to not prepend
  675.         the home directory to folder names beginning with either a
  676.         dot (.) or foreword slash (/).  Also added a COMMIT option
  677.         to change of folder (when current folder has deleted mail)
  678.         or cancel of composed message.  Commit option is tailorable
  679.         by -e (expert) flag, 'Preserve' menu selection, and/or resource
  680.         specification.  Re-edit of the current message composition is
  681.         now supported within the 'Send' popup 'Deliver' sub-menu.
  682.         Deletions in the 'Send' popup text fields will no longer force
  683.         the cursor position to the end of the line.  Additional error
  684.         messages from the mail program are also trapped.  To better
  685.         support variations in 'Berkeley' mail, 'set no' commands are
  686.         no changed to 'unset' commands.  Both forms are also parsed.
  687.         To allow pasting of selected text within the various windows,
  688.         message indexing is now indicated by a preceding greater-
  689.         than symbol (>) instead of highlighting using the selection
  690.         mechanism.
  691.  
  692. callbacks.c:    Mechanisms for delivering mail messages are now forked to a
  693.         child process if possible, instead of the previous synchronous
  694.         system calls.  Better support for file and folder recipients
  695.         to messages are also included.  Changes in folder or quitting
  696.         with a modified folder are now confirmed, unless the expert
  697.         flag has been specified.  Callbacks for re-editing message
  698.         composition and for dropping the current folders list are also
  699.         added.
  700.  
  701. confirm.c:    This is a new routine which supplys the confirmation method.
  702.  
  703. defs.h:        Changes to accommodate 'make depend' under X11R4 .vs. X11R3.
  704.         Added command line option flag: expert.
  705.  
  706. directory.c:    Modified list display to be more box like, to help prevent
  707.         the menu from running off the bottom of the screen.
  708.  
  709. environs.c:    Improved alias parsing routines to separate real people from
  710.         file and folder names as recipients of mail messages.  Also
  711.         expanded environment variables in GetMailEnv calls.
  712.  
  713. globals.h:    Added definitions for new routines and flags.
  714.  
  715. handler.c:    Removed widget privates dependencies in SystemFolder routine
  716.         by correctly calling XtGetValues for the label of the widget.
  717.  
  718. icon.mail:    Modified bitmaps for both icons to allow for placing the
  719.         username under the mailbox, when requested.
  720.  
  721. mail.c:        Added editMail routine to support re-edits of message text.
  722.  
  723. parser.c:    Added ability to export the match function to other routines
  724.         for better handling of errors from mail.  Changed 'set no'
  725.         calls to 'unset's, for support of SONY NEWS OS mail program.
  726.         Changed message index highlighting to use the greater-than
  727.         symbol (>) instead.  Revert to default mail prompt of received
  728.         during startup, for case where user's .mailrc file fails to
  729.         parse before the intended prompt can be set.
  730.  
  731. utils.c:    Changed message index selection highlighting to use symbol.
  732.  
  733. windows.c:    Added new command menu options.  Provided for cut and paste
  734.         operations in File and text windows.  Added second help
  735.         window to text area for mapping of keyboard keys to command
  736.         actions.  Added keyboard cursor motion commands to the Index
  737.         and Text windows.  Added routine to parse the icon geometry.
  738.  
  739. xmail.c:    Added support for new options: -e (expert), -iconic, and
  740.         -rv (reverse video on the icon).  Also default to no position
  741.         (0,0) for icon if not explicitly specified.
  742.  
  743. xmail.man:    Many changes to document patchlevel 2 enhancements and fixes.
  744.  
  745. xmailregex.h:    Added support for use outside of the parser routines.  Also
  746.         added additional error messages for users with problems in
  747.         their environment or .mailrc file.
  748.  
  749. XMail.ad:    Changed the color specifications in the applications defaults
  750.         from names to hex values, to provide support when the server
  751.         fails to parse color names (a rare but annoying occurrence).
  752.         Added definitions for the new command menu buttons.
  753.  
  754.  
  755. Again, I'd like to thank the contributors of suggestions and actual patches.
  756. I'd also like to thank those persons who sent in complaints and suggestions.
  757. If I somehow managed to forget some of those persons, I hope they can
  758. forgive me.
  759.  
  760. *) Jeff Dauber was first to request the ability to re-edit new messages.
  761.  
  762. *) Mark Scholl was responsible for requesting the addition of a Confirmation
  763.    option.
  764.  
  765. *) More illegal pointer combination fixes, the ParseIconGeometry() routine,
  766.    and the expansion of environment variables within the GetMailEnv() routine
  767.    were supplied by Christos Zoulas.
  768.  
  769. *) Tom Dunigan and Peter Marshall both pointed out the error of my ways in
  770.    handling RFC822 addresses, and supplied much needed help in making the
  771.    corrections.
  772.  
  773. *) Peter Marshal also initiated changes to allow a greater variety of editor
  774.    choices, including better support for the emacs invocation.  He was also
  775.    one of the first to complain about the delays during delivery of messages,
  776.    which drove the efforts to fork off those tasks.
  777.  
  778. *) David Elliott suggested the no-default icon position, the missing paste
  779.    ability in the File window, and the need to support 'unset' versus 'set no'
  780.    construct in mail.
  781.  
  782. *) Suggestions from Casey Leedom precipitated the revision of the Makefile
  783.    depends to provide better support for make depend under Sun and X11R4.
  784.  
  785. *) Questions from John Meissen prompted modifications to the way the file
  786.    handlers are modified when calling mail and forking edit children.  He also
  787.    pointed out the probability of a MAIL environment variable pointing to
  788.    the intended mail spool and made suggestions for changing the code.
  789.  
  790. ---------------------- end of changes for patchlevel 2 -----------------------
  791.  
  792.                                                                    May, 1990
  793.  
  794.    The following changes have been effected for Patchlevel 1 of xmail.
  795.  
  796.  
  797. Imakefile:    Made improvements in dependencies and SunOS defines.
  798.         Removed requirement for linkage to system math library.
  799.  
  800. HelpText.c:    Text revised and reformatted to better fit the help window
  801.  
  802. Mailwatch.c:    Corrected illegal pointer combinations and added resources
  803.         to allow the user to specify the number of times to ring the
  804.         bell when new mail has arrived.  Fixed new mail bell to ring
  805.         only if flag is not already up.
  806.  
  807. Mailwatch.h:    Eliminated warning for duplicate XtNfile definition
  808.  
  809. actions.c:    Corrected illegal pointer combinations, added support for
  810.         improved index handler and Blind carbon copies.  Also added
  811.         support for .mailrc "printmail" definition, and improved error
  812.         messages when attempting to select non-existent or undefined
  813.         mail folders.  Used integer math instead of sqrt() function to
  814.         calculate box dimensions for aliases list.
  815.  
  816. callMail.c:    Corrected attempts to write to read-only strings, and fixed
  817.         case where fork child dies for improper command arguments or
  818.         illegal or unfound image execution which tried to write error
  819.         messages to the xmail pipe instead of the terminal screen.
  820.         A dying child process now also terminates the xmail process.
  821.  
  822. callbacks.c:    Added support for external sendmail function, improved index
  823.         handler, and mail variable 'alwaysignore' which is now used
  824.         to determine header levels for reply, forward, and printed
  825.         messages.  If recipient selection fails to find a value for
  826.         the <Return_Path:> to a message, the <From:> designate is now
  827.         used, to eliminate failures to provide a <To:> addressee.
  828.         Also fixed bug in replyalls which failed to pick up names from
  829.         the original To: field when preparing addresses for the reply.
  830.  
  831. defs.h:        Changed TITLE definition to accommodate use of PATCHLEVEL.
  832.  
  833. environs.c:    Alias support has been extended to include the word 'group'
  834.         when manually extracting mail aliases from the user's .mailrc
  835.         file.  Support has also been included for continuation lines.
  836.         Mechanisms to expand the MAILRC environment variable definition
  837.         have been eliminated, so that xmail behaves more like mail.
  838.         Corrected a bug in getMailEnv to return 'True' for variables
  839.         which have no additional value, such as 'hold' or 'autoprint'.
  840.         Changed strchr() calls to index().
  841.  
  842. handler.c:    Function icon_handler() has been added to switch xmail to a
  843.         dummy mail folder whenever the application is iconified, and
  844.         to switch back to the previous folder on de-iconification.
  845.         Improved index_handler() to eliminate repaints of the index
  846.         window for every deletion or undeletion.  Also added code to
  847.         display as many new message headers as possible, to eliminate
  848.         unnecessary scrolling of the index window.
  849.  
  850. mail.c:        Changed the fputs() to a write() to help eliminate i/o hanging,
  851.         added Blind Carbon Copy support to the sendMail function, and
  852.         added XMail class resources to the xterm message entry window.
  853.         Changed strrchr() call declarations to rindex().
  854.  
  855. parser.c:    Eliminated multiple redraws of the index window during message
  856.         deletions, and corrected index message markers for 'N'ew,
  857.         'D'eleted, and undeleted mail messages.  Corrected a bug in the
  858.         delete processing to not reread entire message and corrected a
  859.         bug to erase index and text window datas if no current folder.
  860.  
  861. utils.c:    Added use of PATCHLEVEL in determining TITLE version revision
  862.         and changed calls for strchr() to index().
  863.  
  864. windows.c:    Changed name of "hold" button to "preserve", to better match
  865.         error message text when used incorrectly, eliminated making
  866.         the preserve button insensitive, to allow use of "set" menu
  867.         in any folder, added a "set" menu to the "preserve" command
  868.         button, to toggle mail variables, "alwaysignore", "autoprint",
  869.         and "hold", and corrected character processing in the file
  870.         window, to allow deletion and insertion within the line,
  871.         instead of always at the end.  Added use of PATCHLEVEL in
  872.         determining TITLE version revision
  873.  
  874. xmail.c:    added support for the -iconic command line option, corrected
  875.         resource handling for iconGeometry, and improved default font
  876.         handling for minimum dimensions of the xmail application window.
  877.         Also fixed processing of geometry specifications for the top
  878.         level window.  Update the 'what' database string to reflect
  879.         current version.
  880.  
  881.  
  882.  
  883. I would like to thank the many contributors of suggestions and actual patches.
  884. I would also like to thank those persons who sent in complaints, as they were
  885. often the predictors of the many other corrections and enhancements to xmail. 
  886.  
  887. *) Message size tests in parser.c were extended to include support for DEC
  888.    mail return on size requests, to prevent core dumps under Ultrix UWS 2.2
  889.    thanks to patches from Dirk Grunwald <grunwald@foobar.Colorado.EDU>
  890.  
  891. *) Corrections to Imakefile to eliminate the need to set SunOS dependency
  892.    flags manually were driven by suggestions from Casey Leedom
  893.    <casey@gauss.llnl.gov> and David Elliott <dce@smsc.sony.com>.
  894.  
  895. *) The regular expressions definitions in xmailregex.h were corrected as a
  896.    result of suggestions from Casey Leedom.
  897.  
  898. *) Suggestions from Casey Leedom, Mark Williams <msw@cpsc.UCalgary.CA>,
  899.    and Mark Scholl <scholl@inf.ethz.ch> helped identify a problem in the
  900.    communications links with mail.  writeMail() now uses a write instead
  901.    of fputs, and the connection parameters are set for APPEND instead of
  902.    non-blocking i/o, to eliminate run-away cpu cycles.
  903.  
  904. *) Many, many illegal pointer combination errors were identified and corrected
  905.    by Christos Zoulas <christos@guillemin.EE.cornell.edu>
  906.  
  907. *) Thanks go to Robert Viduya <robert@shangri-la.gatech.ude> for suggestions
  908.    and assistance in adding an icon handler to switch to a dummy mail folder
  909.    during iconification, to prevent collisions in mail if run from another
  910.    process while xmail is running.
  911.  
  912. *) Support for an alternate sendmail function was provided after receiving
  913.    suggestions from Jim Blythe <jsblythe%uk.co.gec-mrc@nsfnet-relay.ac.uk>
  914.  
  915. *) Blind carbon copy support and correction of several bugs were suggested
  916.    by Jeff Dauber <dauber@parns.nsc.com>
  917.  
  918. *) Support for mail variables autoprint and hold were corrected thanks to
  919.    requests from Dwayne Lee <dwayne@asic.nsc.com>
  920.  
  921.