X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=ChangeLog;h=f4dfb1a57899ddd265cb2c23298f3cbbe4e15c32;hp=deb61630aff337f8138127b2ed54bb35f9b1f89f;hb=7593f8f93951b6ca853a72bdbcd0a34dc741bc52;hpb=975a1ff048a6f10f88225c4f06b22c898ede62c4 diff --git a/ChangeLog b/ChangeLog index deb6163..f4dfb1a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,88 @@ +Tue Mar 14 01:14:13 2000 Dan Harkless + + * Applied, after some finessing, + Simon Burge 's --with-smtpservers patch: + + Here's a patch that allows you to add + + --with-smtpservers= + + to the ./configure command line to set the "servers: " line in + etc/mts.conf. Around here, we use "mailhost" so that all + machines in the current domain just talk to a central machine + and nothing else runs an MTA. Now, I can use + + --with-smtpservers=mailhost + + instead of having to remember to fix this by hand (and often + forgetting to do so!). + + * Inspired by Simon's patch, added an --enable-masquerade option + to configure. It will set the "masquerade:" line of mts.conf. + You may specify a subset of the three types of masquerading, like + --enable-masquerade="draft_from mmailid", or leave off explicit + arguments to enable all three types. + + * Alphabetized the --enable and --with options in configure.in and + INSTALL and added documentation of the two new options to the latter. + + * Added new dependency for mts.conf: Makefile. If this isn't + done, then when you reconfigure nmh with new values for + --enable-masquerade or --with-smtpservers, you'll fail to get an + updated copy of mts.conf. + +Mon Mar 13 21:32:00 2000 Dan Harkless + + * Applied Sullivan N. Beck 's mhshow-suffix patch: + + With the patch below, you can add lines like: + + mhshow-suffix-application/msword: .doc + mhshow-suffix-application/PostScript: .ps + + to the mhn.defaults file to append the given suffix to a + scratch file. This allows applications which require a + certain suffix to run properly. + + * Removed -force_html from lynx entry in mhn.defaults.sh (I + believe older versions of lynx lack that option) and added + "mhshow-suffix-text/html: .html". + + * Modified username_extension masquerading to only use the + extended address on generated [Resent-]From: lines and SMTP + envelope From:. With Neil's original implementation, nmh's global + idea of the username was changed, which would result in inc lying + and saying you had no new mail because it was looking for a + mailbox called, for instance, "dan-nmh" (where username was "dan" + and $USERNAME_EXTENSION was "-nmh"). + + * Applied Simon Burge 's dtime.c patch: + + There's a wrap-around problem that affects the implementation + of Zeller's congruence in dtime.c. This causes the day-of-week + calculations to fail for dates after Feb 29, 2000 (probably up + until some year far in the future). + +Mon Mar 06 12:20:20 2000 Dan Harkless + + * Applied Neil W Rickert 's msh.c patch: + + I finally tracked down the problem in msh that was causing + errors whenever I tried to examine a 'mmdf' style mailbox. + + It turns out that not enough memory was being allocated with + calloc(), causing memory pointers to be overwritten and + corrupted. + +Fri Mar 03 16:07:33 2000 Dan Harkless + + * Changed the new "plussed_user" option to mts.conf's + "masquerade:" to "username_extension" after getting feedback from + qmail users, who use '-' as a separator rather than '+'. Removed + checking of $USERPLUS variable. Now check $USERNAME_EXTENSION, + which needs to include the appropriate separator for your MTA + ('-', '+', or whatever) as its first character. + Thu Mar 02 23:04:30 2000 Dan Harkless * Added a new "boolean" type to mh.h and TRUE and FALSE constants.